:root {
  --paper: #f7f0df;
  --paper-soft: #fffaf0;
  --ink: #241b17;
  --muted: #74675d;
  --wine: #71291f;
  --wine-dark: #471711;
  --terracotta: #c35e38;
  --gold: #e9b83f;
  --gold-soft: #f6d981;
  --agave: #315f50;
  --line: rgba(71, 23, 17, 0.16);
  --white: #fffdf8;
  --shadow: 0 22px 70px rgba(57, 29, 20, 0.12);
  --radius: 28px;
  --serif: "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
  --sans: Avenir, "Avenir Next", Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff9ec;
  background:
    radial-gradient(circle at 78% 10%, rgba(233, 184, 63, 0.16), transparent 22%),
    linear-gradient(135deg, #521b16 0%, var(--wine) 56%, #5c241c 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
    linear-gradient(150deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
    linear-gradient(30deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
    linear-gradient(150deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
    linear-gradient(60deg, rgba(255,255,255,.7) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,.7) 75%, rgba(255,255,255,.7));
  background-position: 0 0, 0 0, 24px 42px, 24px 42px, 0 0;
  background-size: 48px 84px;
}

.nav {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 96px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.brand {
  display: grid;
  grid-template-columns: 34px auto;
  width: max-content;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  line-height: 1;
}

.brand-flower {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--gold);
  font-size: 1.7rem;
}

.brand > span:not(.brand-flower) { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; }
.brand small { margin-top: 4px; font-size: .55rem; letter-spacing: .17em; opacity: .72; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: rgba(255,249,236,.8); font-size: .83rem; font-weight: 600; text-decoration: none; }
.nav-links a:hover { color: var(--gold-soft); }
.nav > .button { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); filter: brightness(1.04); }
.button:focus-visible, input:focus-visible, .stepper button:focus-visible, a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.button-small { min-height: 42px; padding-inline: 20px; font-size: .82rem; }
.button-gold { color: #291c0b; background: var(--gold); box-shadow: 0 12px 28px rgba(25,13,8,.18); }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(380px, .73fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  min-height: 710px;
  padding-block: 72px 105px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--terracotta);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.kicker span { width: 34px; height: 1px; background: currentColor; }
.kicker-light { color: var(--gold-soft); }

.hero h1,
.section-heading h2,
.reservation-intro h2,
.closing-card h2 {
  font-family: var(--serif);
  letter-spacing: -.045em;
  line-height: .96;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(4.15rem, 7.4vw, 7.15rem);
  font-weight: 700;
}

.hero h1 em, .closing-card h2 em { color: var(--gold-soft); font-weight: 600; }
.hero-lead { max-width: 650px; margin: 30px 0 0; color: rgba(255,249,236,.78); font-size: clamp(1.03rem, 1.4vw, 1.18rem); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.text-link { color: #fff9ec; font-size: .88rem; font-weight: 700; text-decoration: none; }
.text-link span { margin-left: 8px; color: var(--gold); }

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 180px 180px 28px 28px;
  background: rgba(255,249,236,.07);
  box-shadow: 0 35px 90px rgba(31,10,8,.3);
  backdrop-filter: blur(7px);
}

.hero-card-art {
  position: relative;
  height: 305px;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: #4f1d18;
}

.hero-card-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-art figcaption,
.editorial-image figcaption,
.products-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(36,27,23,.74);
  font-size: .75rem;
  line-height: 1.25;
  backdrop-filter: blur(6px);
}

.hero-card-content { padding: 30px 34px 35px; }
.overline { margin: 0; color: currentColor; font-size: .75rem; font-weight: 700; letter-spacing: .15em; opacity: .72; text-transform: uppercase; }
.hero-card h2 { margin: 8px 0 24px; font-family: var(--serif); font-size: 2rem; line-height: 1.08; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hero-facts div { display: grid; padding-right: 8px; border-right: 1px solid rgba(255,255,255,.15); }
.hero-facts div:last-child { border-right: 0; }
.hero-facts strong { color: var(--gold-soft); font-family: var(--serif); font-size: 1.65rem; }
.hero-facts span { font-size: .75rem; line-height: 1.3; opacity: .76; }

.hero-ribbon {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  width: 100%;
  min-width: max-content;
  height: 54px;
  color: #322309;
  background: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .17em;
}

.hero-ribbon i { color: var(--wine); font-style: normal; }
.section { padding-block: 110px; }

.story-section {
  background:
    radial-gradient(circle at 92% 22%, rgba(195,94,56,.08), transparent 23%),
    var(--paper);
}

.story-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(60px, 10vw, 140px); }
.section-heading h2, .reservation-intro h2 { margin: 0; font-size: clamp(2.85rem, 5vw, 5rem); }
.story-copy { padding-top: 52px; }
.story-copy > p { color: var(--muted); }
.story-copy .lead-serif { margin: 0 0 30px; color: var(--ink); font-family: var(--serif); font-size: clamp(1.45rem, 2.3vw, 2rem); line-height: 1.3; }
.detail-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 40px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-strip div { display: grid; padding: 22px 14px; border-right: 1px solid var(--line); }
.detail-strip div:last-child { border-right: 0; }
.detail-strip div > span { color: var(--terracotta); font-size: 1.25rem; }
.detail-strip strong { margin-top: 7px; font-family: var(--serif); font-size: 1.05rem; }
.detail-strip small { color: var(--muted); font-size: .78rem; }

.origin-section { padding: 0 0 110px; background: var(--paper); }
.origin-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: clamp(48px, 8vw, 105px); }
.editorial-image { position: relative; min-height: 520px; margin: 0; overflow: hidden; border-radius: var(--radius); background: #4c291d; box-shadow: var(--shadow); }
.editorial-image img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.origin-copy h2 { margin: 0 0 26px; font-family: var(--serif); font-size: clamp(2.6rem, 4.7vw, 4.5rem); letter-spacing: -.04em; line-height: 1; }
.origin-copy > p { color: var(--muted); }
.origin-copy .lead-serif { color: var(--ink); font-family: var(--serif); font-size: 1.35rem; line-height: 1.4; }
.trust-list { display: grid; margin: 32px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.trust-list li { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.trust-list strong { color: var(--wine); font-family: var(--serif); }
.trust-list span { color: var(--muted); font-size: .9rem; }

.menu-section { color: #fffaf0; background: var(--agave); }
.menu-heading, .products-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; margin-bottom: 52px; }
.menu-heading h2 { max-width: 780px; }
.menu-heading > p { margin: 0 0 8px; color: rgba(255,250,240,.68); }
.menus { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.menu-card { position: relative; display: flex; flex-direction: column; min-width: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); background: #fffaf0; color: var(--ink); box-shadow: 0 28px 70px rgba(11,37,29,.23); }
.menu-card-header { display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 20px; padding: 30px 32px 26px; color: #fffaf0; background: var(--wine); }
.menu-traditional .menu-card-header { background: #23493e; }
.menu-number { margin: 5px 0 0; color: var(--gold-soft); font-family: var(--serif); font-size: 1rem; }
.menu-card h3 { margin: 5px 0 0; font-family: var(--serif); font-size: clamp(1.65rem, 2.7vw, 2.25rem); line-height: 1; }
.menu-price { display: grid; margin: 0; text-align: right; }
.menu-price strong { color: var(--gold-soft); font-family: var(--serif); font-size: 1.6rem; }
.menu-price span { font-size: .75rem; opacity: .74; }
.menu-card-body { display: grid; flex: 1; padding: 12px 32px 16px; }
.course { padding: 22px 0; border-bottom: 1px solid var(--line); }
.course:last-child { border-bottom: 0; }
.course > p { margin: 8px 0; font-size: .91rem; line-height: 1.48; }
.course-label { display: flex; align-items: center; gap: 12px; color: var(--terracotta); font-size: .75rem !important; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.course-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.menu-or { color: var(--muted); font-size: .75rem !important; font-weight: 700; letter-spacing: .16em; }
.compact-course { display: grid; grid-template-columns: 1fr 1fr; column-gap: 20px; }
.compact-course .course-label { align-content: start; }
.menu-cta { display: flex; align-items: center; justify-content: space-between; padding: 20px 32px; color: var(--wine); border-top: 1px solid var(--line); font-size: .82rem; font-weight: 700; text-decoration: none; }
.menu-cta:hover { background: #f6ead4; }
.menu-cta span { font-size: 1.2rem; }
.menu-featured { position: absolute; z-index: 2; top: 0; right: 22px; padding: 7px 13px; color: #2a1b08; background: var(--gold); border-radius: 0 0 10px 10px; font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.visit-section { background: #efe2ca; }
.visit-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; margin-bottom: 46px; }
.visit-heading h2 { max-width: 800px; }
.visit-heading > p { margin: 0 0 8px; color: var(--muted); }
.visit-details { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.visit-detail { position: relative; min-height: 235px; padding: 28px 24px; border: 1px solid rgba(71,23,17,.18); border-radius: 20px; background: rgba(255,253,248,.7); }
.visit-detail.is-ready { border-color: rgba(49,95,80,.4); background: rgba(255,253,248,.94); }
.detail-index { color: var(--terracotta); font-family: var(--serif); font-size: .78rem; }
.visit-detail h3 { margin: 24px 0 10px; font-family: var(--serif); font-size: 1.4rem; }
.visit-detail p { margin: 0; font-size: .92rem; line-height: 1.5; }
.visit-detail small { position: absolute; right: 24px; bottom: 22px; left: 24px; color: #8b5c15; font-size: .75rem; font-weight: 700; }
.visit-detail.is-ready small { color: var(--agave); }
.location-map { display: grid; grid-template-columns: .72fr 1.28fr; gap: 0; margin-top: 18px; overflow: hidden; border: 1px solid rgba(71,23,17,.15); border-radius: 22px; background: var(--wine); box-shadow: 0 20px 55px rgba(71,23,17,.12); }
.location-map-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 38px; color: #fffaf0; }
.location-map-copy h3 { margin: 9px 0 14px; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.65rem); line-height: 1.06; }
.location-map-copy > p:not(.overline):not(.map-note) { margin: 0; color: rgba(255,250,240,.82); font-size: .94rem; line-height: 1.58; }
.location-map-copy strong { color: var(--gold-soft); }
.map-note { margin: 18px 0 22px; color: rgba(255,250,240,.58); font-size: .78rem; line-height: 1.5; }
.map-link { display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px; border: 1px solid rgba(255,250,240,.3); border-radius: 999px; color: #fffaf0; font-size: .8rem; font-weight: 700; text-decoration: none; transition: .2s ease; }
.map-link:hover { border-color: var(--gold-soft); color: var(--gold-soft); transform: translateY(-2px); }
.map-frame { min-height: 330px; background: #d8cbbc; }
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 330px; border: 0; }
.confirmation-flow { display: grid; grid-template-columns: .72fr 1.28fr; gap: 55px; margin-top: 18px; padding: 38px; border-radius: 22px; color: #fffaf0; background: var(--wine); }
.confirmation-flow h3 { margin: 8px 0 0; font-family: var(--serif); font-size: 1.7rem; line-height: 1.2; }
.confirmation-flow ol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 0; padding: 0; list-style: none; }
.confirmation-flow li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; }
.confirmation-flow li b { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--gold-soft); font-family: var(--serif); }
.confirmation-flow li span { color: rgba(255,250,240,.72); font-size: .8rem; line-height: 1.5; }
.confirmation-flow li strong { display: block; margin-bottom: 4px; color: #fffaf0; font-family: var(--serif); font-size: 1rem; }

.reservation-section { background: var(--paper-soft); }
.reservation-wrap { display: grid; grid-template-columns: minmax(300px, .75fr) minmax(560px, 1.25fr); align-items: start; gap: clamp(50px, 8vw, 110px); }
.reservation-intro { position: sticky; top: 28px; }
.reservation-intro > p:not(.kicker):not(.privacy-note) { max-width: 500px; color: var(--muted); }
.steps { display: grid; gap: 17px; margin: 38px 0; padding: 0; list-style: none; }
.steps li { display: flex; align-items: center; gap: 15px; }
.steps li > span { display: grid; flex: 0 0 36px; height: 36px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--wine); font-family: var(--serif); }
.steps div { display: grid; }
.steps strong { font-family: var(--serif); }
.steps small { color: var(--muted); font-size: .78rem; }
.privacy-note { display: flex; gap: 10px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; line-height: 1.5; }
.privacy-note span { color: var(--agave); font-size: 1.3rem; }
.reservation-panel { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
fieldset { margin: 0 0 30px; padding: 0 0 30px; border: 0; border-bottom: 1px solid var(--line); }
legend { margin-bottom: 18px; padding: 0; font-family: var(--serif); font-size: 1.14rem; font-weight: 700; }
.input-grid, .date-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: grid; gap: 7px; color: var(--muted); font-size: .82rem; font-weight: 600; }
.field input { width: 100%; padding: 13px 14px; border: 1px solid #d8cbbc; border-radius: 12px; background: #fff; color: var(--ink); outline: none; }
.field input:focus { border-color: var(--terracotta); box-shadow: 0 0 0 4px rgba(195,94,56,.09); }
.date-option { position: relative; cursor: pointer; }
.date-option input { position: absolute; opacity: 0; }
.date-card { display: flex; align-items: center; justify-content: space-between; min-height: 72px; padding: 12px 14px; border: 1px solid #d8cbbc; border-radius: 14px; background: #fff; transition: .2s ease; }
.date-card strong { display: flex; align-items: center; gap: 9px; font-family: var(--serif); }
.date-card b { color: var(--wine); font-size: 1.7rem; }
.date-card small { color: var(--muted); font-size: .75rem; text-align: right; }
.date-option input:checked + .date-card { border-color: var(--wine); background: #fff7e9; box-shadow: 0 0 0 3px rgba(113,41,31,.08); }
.date-option input:focus-visible + .date-card { outline: 3px solid var(--gold); outline-offset: 3px; }
.date-option input:disabled + .date-card { opacity: .48; cursor: not-allowed; }
.package-select { display: grid; gap: 12px; }
.package-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 16px; border: 1px solid #ded1c1; border-radius: 14px; background: #fff; }
.package-row > div:first-child { display: grid; }
.package-row strong { font-family: var(--serif); }
.package-row small { color: var(--muted); font-size: .78rem; }
.stepper { display: flex; align-items: center; overflow: hidden; border: 1px solid #d2c0ad; border-radius: 999px; background: #fbf4e8; }
.stepper button { width: 38px; height: 38px; border: 0; color: var(--wine); background: transparent; cursor: pointer; font-size: 1.2rem; }
.stepper button:hover { background: #f0e1cf; }
.stepper output { width: 38px; text-align: center; font-weight: 700; }
.summary { margin-top: 6px; padding: 22px; border-radius: 18px; color: #fffaf0; background: var(--wine); }
.summary-heading, .summary-total, .summary-lines p { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.summary-heading { padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.18); }
.summary-heading > span { font-family: var(--serif); font-size: 1.25rem; }
.summary-heading strong { color: var(--gold-soft); font-size: .8rem; }
.summary-lines { padding-block: 10px; }
.summary-lines p { margin: 6px 0; color: rgba(255,250,240,.72); font-size: .8rem; }
.summary-lines strong { color: #fffaf0; }
.summary-total { padding-top: 15px; border-top: 1px solid rgba(255,255,255,.18); }
.summary-total span { font-family: var(--serif); }
.summary-total strong { color: var(--gold-soft); font-family: var(--serif); font-size: 1.8rem; }
.reserve-button { width: 100%; margin-top: 16px; color: #fff; background: var(--agave); border-radius: 14px; }
.reserve-button:disabled { opacity: .58; cursor: progress; transform: none; }
.form-fine { margin: 12px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.5; text-align: center; }
.message { display: none; margin-top: 14px; padding: 13px 14px; border-radius: 12px; font-size: .82rem; }
.message.ok { display: block; color: #214b3b; border: 1px solid #b8d7c9; background: #eaf5ef; }
.message.error { display: block; color: #792b21; border: 1px solid #edc0b7; background: #fff0ec; }
.message.info { display: block; color: #69500d; border: 1px solid #ead28c; background: #fff8dc; }

.products-section { background: var(--paper); }
.products-heading > p { margin: 0 0 8px; color: var(--muted); }
.products-photo { position: relative; height: min(58vw, 620px); margin: 0 0 18px; overflow: hidden; border-radius: var(--radius); background: #4f2c1d; box-shadow: var(--shadow); }
.products-photo img { width: 100%; height: 100%; object-fit: cover; }
.products { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.product-card > div { position: relative; padding: 21px 22px 24px; }
.product-card h3 { margin: 0; font-family: var(--serif); font-size: 1.35rem; }
.product-card p:not(.product-index) { margin: 4px 0 0; color: var(--muted); font-size: .82rem; }
.product-index { position: absolute; top: 18px; right: 20px; margin: 0; color: var(--terracotta); font-family: var(--serif); font-size: .72rem; }

.reviews-section { background: var(--paper-soft); }
.reviews-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; margin-bottom: 46px; }
.reviews-heading > p { color: var(--muted); }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.review-card blockquote { margin: 0 0 22px; font-family: var(--serif); font-size: 1.15rem; line-height: 1.5; }
.review-card p { margin: 0; color: var(--muted); font-size: .82rem; }

.closing-section { padding: 24px 20px 100px; background: var(--paper); }
.closing-card { overflow: hidden; padding: 80px clamp(28px, 8vw, 100px); border-radius: 36px; color: #fffaf0; background:
  radial-gradient(circle at 82% 30%, rgba(233,184,63,.24), transparent 21%),
  linear-gradient(125deg, #4d1814, var(--wine));
  box-shadow: var(--shadow);
}
.closing-card h2 { max-width: 850px; margin: 0; font-size: clamp(3.2rem, 7vw, 6.5rem); }
.closing-card > p:not(.kicker) { color: rgba(255,250,240,.72); font-size: 1.05rem; }
.closing-card .button { margin-top: 16px; }
footer { padding: 34px 0; color: rgba(255,250,240,.7); background: var(--wine-dark); font-size: .75rem; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; }
.footer-grid > p { margin: 0; }
.footer-grid > a { justify-self: end; text-decoration: none; }
.footer-brand { color: #fffaf0; }

@media (max-width: 980px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr .7fr; gap: 45px; }
  .hero h1 { font-size: clamp(4rem, 8vw, 6rem); }
  .hero-card-art { height: 240px; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts div { grid-template-columns: 40px 1fr; align-items: center; border-right: 0; }
  .origin-grid { grid-template-columns: 1fr; }
  .editorial-image, .editorial-image img { min-height: 460px; }
  .visit-details { grid-template-columns: repeat(2, 1fr); }
  .location-map { grid-template-columns: 1fr; }
  .location-map-copy { padding: 32px; }
  .confirmation-flow { grid-template-columns: 1fr; gap: 28px; }
  .reservation-wrap { grid-template-columns: 1fr; }
  .reservation-intro { position: static; }
  .reservation-intro > p:not(.kicker):not(.privacy-note) { max-width: 720px; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps li { align-items: flex-start; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 26px, 1180px); }
  .section { padding-block: 76px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-block: 68px 105px; }
  .hero h1 { font-size: clamp(4rem, 17vw, 6.2rem); }
  .hero-card { width: min(100%, 430px); justify-self: center; }
  .story-grid, .menu-heading, .visit-heading, .products-heading, .reviews-heading { grid-template-columns: 1fr; gap: 30px; }
  .story-copy { padding-top: 0; }
  .origin-section { padding-bottom: 76px; }
  .menus { grid-template-columns: 1fr; }
  .confirmation-flow ol { grid-template-columns: 1fr; }
  .products-photo { height: 68vw; min-height: 350px; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .product-card:last-child { grid-column: 1 / -1; width: calc(50% - 6px); justify-self: center; }
  .reviews { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-grid > p { display: none; }
}

@media (max-width: 540px) {
  .nav { min-height: 78px; }
  .nav > .button { min-height: 38px; padding-inline: 15px; }
  .hero-grid { padding-top: 48px; }
  .hero h1 { font-size: clamp(3.6rem, 17vw, 5.2rem); }
  .hero-lead { font-size: .96rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-card-art { height: 235px; }
  .hero-ribbon { justify-content: flex-start; padding-left: 20px; animation: ribbon 18s linear infinite; }
  .section-heading h2, .reservation-intro h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .detail-strip { grid-template-columns: 1fr; }
  .detail-strip div { grid-template-columns: 32px 1fr; column-gap: 8px; border-right: 0; border-bottom: 1px solid var(--line); }
  .detail-strip div:last-child { border-bottom: 0; }
  .detail-strip span { grid-row: 1 / 3; }
  .editorial-image, .editorial-image img { min-height: 360px; }
  .visit-details { grid-template-columns: 1fr; }
  .visit-detail { min-height: 210px; }
  .location-map-copy { padding: 28px 22px; }
  .map-frame, .map-frame iframe { min-height: 280px; }
  .confirmation-flow { padding: 28px 22px; }
  .menu-card-header { grid-template-columns: auto 1fr; padding: 26px 22px 22px; }
  .menu-price { grid-column: 2; text-align: left; }
  .menu-card-body { padding-inline: 22px; }
  .menu-cta { padding-inline: 22px; }
  .compact-course { grid-template-columns: 1fr; }
  .reservation-panel { padding: 24px 18px; }
  .input-grid, .date-options { grid-template-columns: 1fr; }
  .package-row { align-items: flex-start; }
  .summary { padding: 18px; }
  .reserve-button { min-height: 62px; padding-inline: 14px; }
  .products-photo { height: 82vw; min-height: 300px; }
  .products { grid-template-columns: 1fr; }
  .product-card, .product-card:last-child { grid-column: 1; width: 100%; }
  .closing-section { padding-inline: 13px; }
  .closing-card { border-radius: 26px; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; }
  .footer-grid > a { justify-self: center; }
}

@keyframes ribbon {
  from { transform: translateX(0); }
  to { transform: translateX(-380px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
