/* =================================================================
   MAIN  -  homepage styles (index.html)
   Richmond Station  ·  ark solutions build
   Requires: base.css
================================================================= */

body { background: var(--paper); }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ----------------------------------------------------------------
   HEADER
---------------------------------------------------------------- */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 26px 0;
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
}
header.scrolled {
  background: rgba(244,238,227,.93);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(23,18,13,.08);
}

.nav { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; flex-direction: column; line-height: 1; color: var(--paper); transition: color .5s var(--ease); }
header.scrolled .brand { color: var(--ink); }
.brand .name { font-family: var(--display); font-weight: 500; font-size: 23px; letter-spacing: .04em; }
.brand .sub  { font-family: var(--label); font-size: 9.5px; letter-spacing: .42em; text-transform: uppercase; margin-top: 5px; opacity: .8; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: var(--label); font-size: 12.5px; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 500;
  color: var(--paper); transition: color .5s var(--ease), opacity .3s;
  position: relative; opacity: .92;
}
header.scrolled .nav-links a { color: var(--ink); }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--brass);
  transition: width .4s var(--ease);
}
.nav-links a:not(.btn):hover::after { width: 100%; }

.btn {
  font-family: var(--label); font-size: 12.5px; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 600;
  padding: 13px 26px; border: 1px solid var(--brass);
  color: var(--paper); border-radius: 2px;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s;
  cursor: pointer; background: none;
}
header.scrolled .btn { color: var(--ink); border-color: var(--wine); }
.btn:hover { background: var(--wine); color: var(--paper) !important; border-color: var(--wine); }
.btn-solid { background: var(--wine); color: var(--paper) !important; border-color: var(--wine); }
.btn-solid:hover { background: var(--wine-deep); border-color: var(--wine-deep); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { width: 26px; height: 2px; background: var(--paper); transition: .4s var(--ease); }
header.scrolled .menu-toggle span { background: var(--ink); }

/* ----------------------------------------------------------------
   HERO
---------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  background: var(--wine-deep); overflow: hidden;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; background: #100b08; }
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.04);
  transition: opacity 2.2s var(--ease);
}
.hero-slide.active {
  opacity: 1; transform: scale(1.14);
  transition: opacity 2.2s var(--ease), transform 7.5s ease-out;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(23,18,13,.5) 0%, rgba(23,18,13,.2) 38%, rgba(23,18,13,.8) 100%);
}
.hero-inner { position: relative; z-index: 3; width: 100%; padding-bottom: 84px; }

.hero .eyebrow { color: var(--brass-light); margin-bottom: 30px; opacity: 0; animation: rise 1s var(--ease) .3s forwards; }
.hero h1 {
  font-family: var(--display); font-weight: 300; color: var(--paper);
  font-size: clamp(3.4rem, 9vw, 7.6rem); line-height: .96; letter-spacing: -.02em; margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--brass-light); }
.hero h1 .ln { display: block; opacity: 0; animation: rise 1.1s var(--ease) forwards; }
.hero h1 .ln:nth-child(1) { animation-delay: .42s; }
.hero h1 .ln:nth-child(2) { animation-delay: .56s; }
.hero p.lede {
  max-width: 560px; color: rgba(244,238,227,.92); font-size: 21px;
  font-weight: 300; line-height: 1.55; margin-bottom: 40px;
  opacity: 0; animation: rise 1s var(--ease) .8s forwards;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: rise 1s var(--ease) 1s forwards; }

@keyframes rise {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------------
   INFO BOARD  (hours strip at base of hero)
---------------------------------------------------------------- */
.board { position: relative; z-index: 3; background: var(--ink); color: var(--paper); border-top: 1px solid rgba(182,137,91,.4); }
.board-inner { display: flex; flex-wrap: wrap; }
.board-cell {
  flex: 1; min-width: 200px; padding: 26px 40px;
  border-right: 1px solid rgba(244,238,227,.12);
  display: flex; flex-direction: column; gap: 7px;
}
.board-cell:last-child { border-right: none; }
.board-cell .k { font-family: var(--label); font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--brass-light); }
.board-cell .v { font-family: var(--display); font-size: 20px; font-weight: 400; }
.board-cell .v small { font-size: 14px; opacity: .6; font-family: var(--body); }

section { position: relative; }

/* ----------------------------------------------------------------
   STORY
---------------------------------------------------------------- */
.story { padding: 140px 0 130px; background: var(--paper); }
.story-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: start; }

.story h2 { font-family: var(--display); font-weight: 300; font-size: clamp(2.4rem, 4.4vw, 3.7rem); line-height: 1.05; letter-spacing: -.015em; margin-bottom: 30px; }
.story h2 em { font-style: italic; color: var(--wine); }
.story .lead-quote { font-family: var(--display); font-size: 22px; font-style: italic; color: var(--ink); max-width: 430px; line-height: 1.5; }

.story-figure { margin-top: 36px; border-radius: 3px; overflow: hidden; background: var(--paper-3); }
.story-figure img { width: 100%; height: 300px; object-fit: cover; }
.story-figure figcaption { font-family: var(--label); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--brass); padding: 14px 2px 0; }

.story .body-col p { margin-bottom: 22px; color: var(--ink-soft); font-size: 18.5px; }
.story .body-col p:first-child::first-letter {
  font-family: var(--display); font-size: 4.4em; line-height: .74;
  float: left; padding: 8px 14px 0 0; color: var(--wine); font-weight: 400;
}
.sig { margin-top: 14px; font-family: var(--display); font-style: italic; font-size: 23px; }
.sig small { display: block; font-family: var(--label); font-style: normal; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--brass); margin-top: 8px; }

/* ----------------------------------------------------------------
   CHEF
---------------------------------------------------------------- */
.chef { background: var(--ink); color: var(--paper); overflow: hidden; }
.chef-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; }

.chef-img { position: relative; background: var(--wine-deep); overflow: hidden; }
.chef-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.chef-img::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, transparent 58%, rgba(23,18,13,.6));
}

.chef-txt { padding: 120px 80px; display: flex; flex-direction: column; justify-content: center; }
.chef-txt .section-eyebrow { color: var(--brass-light); }
.chef-txt .section-eyebrow::before { background: var(--brass); }
.chef-txt h2 { font-family: var(--display); font-weight: 300; font-size: clamp(2.2rem, 3.8vw, 3.4rem); line-height: 1.06; margin-bottom: 28px; letter-spacing: -.015em; }
.chef-txt h2 em { font-style: italic; color: var(--brass-light); }
.chef-txt p { color: rgba(244,238,227,.78); margin-bottom: 22px; font-weight: 300; font-size: 18px; }

.accolades { display: flex; gap: 46px; margin-top: 24px; padding-top: 34px; border-top: 1px solid rgba(182,137,91,.32); }
.accolade .n { font-family: var(--display); font-size: 38px; color: var(--brass-light); font-weight: 400; line-height: 1; }
.accolade .t { font-family: var(--label); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; margin-top: 10px; opacity: .7; line-height: 1.5; }

/* ----------------------------------------------------------------
   MENU PREVIEW
---------------------------------------------------------------- */
.menu-sec { padding: 140px 0 150px; background: var(--wine); color: var(--paper); position: relative; }
.menu-sec::before {
  content: ""; position: absolute; inset: 0; opacity: .05; pointer-events: none;
  background-image: linear-gradient(rgba(244,238,227,.6) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(244,238,227,.6) 1px, transparent 1px);
  background-size: 46px 22px;
}
.menu-head { text-align: center; max-width: 680px; margin: 0 auto 16px; position: relative; }
.menu-head .section-eyebrow { justify-content: center; color: var(--brass-light); }
.menu-head .section-eyebrow::before,
.menu-head .section-eyebrow::after { content: ""; width: 38px; height: 1px; background: var(--brass); }
.menu-head h2 { font-family: var(--display); font-weight: 300; font-size: clamp(2.4rem, 4.6vw, 3.8rem); line-height: 1.04; letter-spacing: -.015em; }
.menu-head h2 em { font-style: italic; color: var(--brass-light); }

.hosp-note { text-align: center; font-family: var(--label); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--brass-light); margin: 0 auto 50px; position: relative; }

/* ---- Chef's Tasting — featured full-width card ---- */
.chefs-feature {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: 48px 52px; margin-bottom: 16px;
  background: var(--wine-deep);
  border: 1px solid rgba(182,137,91,.45);
  border-left: 3px solid var(--brass);
  border-radius: 2px;
  color: var(--paper);
  transition: background .4s var(--ease), border-color .4s;
  flex-wrap: wrap;
}
.chefs-feature:hover { background: var(--ink); border-color: var(--brass-light); border-left-color: var(--brass-light); }
.cf-body { flex: 1; min-width: 0; }
.cf-tag { font-family: var(--label); font-size: 10.5px; letter-spacing: .28em; color: var(--brass-light); display: block; margin-bottom: 14px; }
.chefs-feature h3 { font-family: var(--display); font-weight: 300; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.05; letter-spacing: -.01em; margin-bottom: 10px; }
.chefs-feature p { color: rgba(244,238,227,.7); font-size: 17px; font-weight: 300; line-height: 1.55; max-width: 580px; }
.cf-link {
  font-family: var(--label); font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--paper); background: var(--wine-bright); border: 1px solid var(--wine-bright);
  padding: 14px 26px; border-radius: 2px; white-space: nowrap; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .35s var(--ease), border-color .35s, gap .3s;
}
.chefs-feature:hover .cf-link { background: var(--brass); border-color: var(--brass); gap: 16px; }

/* ---- PDF menu cards ---- */
.menu-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 0 0 50px;
}
.menu-card {
  background: var(--wine-deep);
  border: 1px solid rgba(182,137,91,.22);
  border-radius: 2px; padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: background .4s var(--ease), border-color .4s, transform .4s var(--ease);
  color: var(--paper);
}
.menu-card:hover { background: var(--ink); border-color: rgba(182,137,91,.55); transform: translateY(-4px); }
.mc-num { font-family: var(--label); font-size: 10px; letter-spacing: .3em; color: var(--brass-light); margin-bottom: 18px; display: block; opacity: .7; }
.menu-card h3 { font-family: var(--display); font-weight: 400; font-size: 26px; margin-bottom: 10px; line-height: 1.1; }
.menu-card p { color: rgba(244,238,227,.62); font-size: 15px; font-weight: 300; line-height: 1.55; flex: 1; margin-bottom: 26px; }
.mc-link { font-family: var(--label); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--brass-light); display: inline-flex; align-items: center; gap: 7px; transition: gap .3s, color .3s; }
.menu-card:hover .mc-link { gap: 12px; color: var(--paper); }

.menu-cta { text-align: center; margin-top: 10px; }
.menu-cta .btn { border-color: var(--brass-light); color: var(--paper); }
.menu-cta .btn:hover { background: var(--paper); color: var(--wine) !important; border-color: var(--paper); }

/* ----------------------------------------------------------------
   HOSPITALITY INCLUDED
---------------------------------------------------------------- */
.hosp { padding: 130px 0; background: var(--paper-2); text-align: center; }
.hosp .wrap { max-width: 880px; }
.hosp .section-eyebrow { justify-content: center; color: var(--wine); }
.hosp .section-eyebrow::before,
.hosp .section-eyebrow::after { content: ""; width: 38px; height: 1px; background: var(--brass); }
.hosp h2 { font-family: var(--display); font-weight: 300; font-size: clamp(2.2rem, 4.2vw, 3.4rem); line-height: 1.12; letter-spacing: -.015em; margin-bottom: 28px; }
.hosp h2 em { font-style: italic; color: var(--wine); }
.hosp p { font-size: 20px; color: var(--ink-soft); font-weight: 300; max-width: 680px; margin: 0 auto; }

/* ----------------------------------------------------------------
   EXPERIENCES / EVENTS
---------------------------------------------------------------- */
.exp { padding: 140px 0 150px; background: var(--paper); }
.exp-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 58px; flex-wrap: wrap; gap: 24px; }
.exp-head h2 { font-family: var(--display); font-weight: 300; font-size: clamp(2.2rem, 4.4vw, 3.6rem); line-height: 1.04; letter-spacing: -.015em; max-width: 620px; }
.exp-head h2 em { font-style: italic; color: var(--wine); }

.exp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.xp {
  position: relative; border: 1px solid rgba(23,18,13,.14); border-radius: 3px;
  padding: 46px 44px; overflow: hidden;
  transition: border-color .5s var(--ease), transform .5s var(--ease);
  background: var(--paper); min-height: 220px;
  display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer;
}
.xp::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--wine); transform: scaleY(0); transform-origin: bottom;
  transition: transform .55s var(--ease); z-index: 0;
}
.xp:hover { transform: translateY(-6px); }
.xp:hover::before { transform: scaleY(1); }
.xp > * { position: relative; z-index: 1; transition: color .45s var(--ease); }
.xp .num { font-family: var(--label); font-size: 11px; letter-spacing: .24em; color: var(--brass); position: absolute; top: 38px; left: 44px; }
.xp h3 { font-family: var(--display); font-weight: 400; font-size: 27px; margin-bottom: 12px; }
.xp p { color: var(--ink-soft); font-size: 16.5px; font-weight: 300; max-width: 380px; }
.xp .go { margin-top: 20px; font-family: var(--label); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--wine); display: inline-flex; align-items: center; gap: 9px; }
.xp .go span { transition: transform .4s var(--ease); }
.xp:hover h3, .xp:hover p, .xp:hover .go, .xp:hover .num { color: var(--paper); }
.xp:hover .go span { transform: translateX(6px); }

/* ----------------------------------------------------------------
   PULL QUOTE
---------------------------------------------------------------- */
.quote { padding: 150px 0; text-align: center; color: var(--paper); position: relative; overflow: hidden; background: var(--ink); }
.quote-bg { position: absolute; inset: 0; opacity: .25; }
.quote-bg img { width: 100%; height: 100%; object-fit: cover; }
.quote .wrap { position: relative; z-index: 2; max-width: 920px; }
.quote .stars { color: var(--brass-light); letter-spacing: .4em; font-size: 18px; margin-bottom: 30px; }
.quote blockquote { font-family: var(--display); font-weight: 300; font-style: italic; font-size: clamp(1.9rem, 4vw, 3.1rem); line-height: 1.22; letter-spacing: -.01em; }
.quote cite { display: block; margin-top: 34px; font-family: var(--label); font-style: normal; font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--brass-light); }

/* ----------------------------------------------------------------
   INSTAGRAM
---------------------------------------------------------------- */
.ig { padding: 130px 0 0; background: var(--paper); }
.ig-head { text-align: center; margin-bottom: 54px; }
.ig-head .section-eyebrow { justify-content: center; color: var(--wine); }
.ig-head .section-eyebrow::before,
.ig-head .section-eyebrow::after { content: ""; width: 38px; height: 1px; background: var(--brass); }
.ig-head h2 { font-family: var(--display); font-weight: 300; font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: -.01em; }
.ig-head a.handle { display: inline-block; margin-top: 14px; font-family: var(--label); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--wine); font-weight: 600; }

.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.ig-tile { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--wine-deep); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .5s; }
.ig-tile::after { content: ""; position: absolute; inset: 0; background: rgba(94,15,36,0); transition: background .4s; }
.ig-tile:hover img { transform: scale(1.07); }
.ig-tile:hover::after { background: rgba(94,15,36,.28); }

/* ----------------------------------------------------------------
   RESERVATIONS
---------------------------------------------------------------- */
.reserve { padding: 140px 0; background: var(--ink); color: var(--paper); }
.reserve-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.reserve h2 { font-family: var(--display); font-weight: 300; font-size: clamp(2.4rem, 4.6vw, 3.8rem); line-height: 1.02; letter-spacing: -.015em; margin-bottom: 24px; }
.reserve h2 em { font-style: italic; color: var(--brass-light); }
.reserve .lead { color: rgba(244,238,227,.78); font-weight: 300; font-size: 18px; max-width: 420px; margin-bottom: 30px; }
.reserve .alt { font-family: var(--label); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-light); display: flex; gap: 24px; flex-wrap: wrap; }
.reserve .alt a { color: var(--paper); }

.rform { background: rgba(244,238,227,.04); border: 1px solid rgba(182,137,91,.3); border-radius: 4px; padding: 42px 40px; }
.rform .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-family: var(--label); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 8px; }
.field input,
.field select {
  background: rgba(23,18,13,.4); border: 1px solid rgba(182,137,91,.32);
  color: var(--paper); padding: 13px 14px; font-family: var(--body);
  font-size: 16px; border-radius: 2px; transition: border-color .3s;
}
.field input:focus,
.field select:focus { outline: none; border-color: var(--brass-light); }
.field select option { background: var(--ink); }
.rform .btn-solid { width: 100%; text-align: center; margin-top: 8px; padding: 16px; background: var(--wine-bright); border-color: var(--wine-bright); }
.rform .btn-solid:hover { background: var(--wine); border-color: var(--wine); }

.rconfirm { display: none; text-align: center; padding: 30px 10px; }
.rconfirm.show { display: block; }
.rconfirm .tick { font-family: var(--display); font-size: 42px; color: var(--brass-light); }
.rconfirm h4 { font-family: var(--display); font-weight: 400; font-size: 24px; margin: 14px 0 8px; }
.rconfirm p { color: rgba(244,238,227,.7); font-weight: 300; }

/* ----------------------------------------------------------------
   VISIT / FIND US
---------------------------------------------------------------- */
.visit { padding: 140px 0 60px; background: var(--paper); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.visit h2 { font-family: var(--display); font-weight: 300; font-size: clamp(2.4rem, 4.6vw, 3.8rem); line-height: 1.02; letter-spacing: -.015em; margin-bottom: 30px; }
.visit h2 em { font-style: italic; color: var(--wine); }
.visit .addr { font-family: var(--display); font-size: 23px; line-height: 1.5; margin-bottom: 26px; }
.visit .meta { color: var(--ink-soft); margin-bottom: 14px; display: flex; gap: 12px; align-items: baseline; }
.visit .meta .label { color: var(--wine); min-width: 74px; }
.visit-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.visit-cta .btn { color: var(--ink); border-color: var(--wine); }
.visit-cta .btn:hover { color: var(--paper) !important; }

.hours { border: 1px solid rgba(23,18,13,.14); border-radius: 3px; overflow: hidden; }
.hours-head { background: var(--ink); color: var(--paper); padding: 22px 30px; display: flex; justify-content: space-between; align-items: center; }
.hours-head .label { color: var(--brass-light); }
.hours-head .dot { display: flex; align-items: center; gap: 9px; font-family: var(--label); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.hours-head .dot i { width: 8px; height: 8px; border-radius: 50%; background: #6fae6f; box-shadow: 0 0 0 3px rgba(111,174,111,.25); }
.hrow { display: flex; justify-content: space-between; padding: 16px 30px; border-bottom: 1px solid rgba(23,18,13,.08); }
.hrow:last-child { border-bottom: none; }
.hrow .d { font-family: var(--label); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.hrow .t { font-family: var(--display); font-size: 16px; text-align: right; }
.hrow .t small { display: block; color: var(--ink-soft); font-size: 13.5px; }

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
footer { background: var(--ink); color: var(--paper); padding: 90px 0 40px; margin-top: 80px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(244,238,227,.12); }
.foot-brand .name { font-family: var(--display); font-size: 34px; font-weight: 400; margin-bottom: 18px; }
.foot-brand p { color: rgba(244,238,227,.6); font-weight: 300; max-width: 340px; font-size: 16.5px; }
.foot-col h4 { font-family: var(--label); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 22px; }
.foot-col a { display: block; color: rgba(244,238,227,.78); margin-bottom: 13px; font-weight: 300; font-size: 16px; transition: color .3s, padding-left .3s; cursor: pointer; }
.foot-col a:hover { color: var(--brass-light); padding-left: 6px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 34px; flex-wrap: wrap; gap: 18px; }
.foot-bottom p { font-family: var(--label); font-size: 11px; letter-spacing: .12em; color: rgba(244,238,227,.5); }
.socials { display: flex; gap: 20px; }
.socials a { font-family: var(--label); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(244,238,227,.7); transition: color .3s; }
.socials a:hover { color: var(--brass-light); }

/* ----------------------------------------------------------------
   SCROLL REVEAL
---------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ----------------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 980px) {
  .nav-links {
    position: fixed; inset: 0; background: var(--ink);
    flex-direction: column; justify-content: center; gap: 28px;
    transform: translateX(100%); transition: transform .55s var(--ease);
  }
  .nav-links.open { transform: none; }
  .nav-links a { color: var(--paper) !important; font-size: 16px; }
  .menu-toggle { display: flex; z-index: 1100; }
  .menu-toggle.open span { background: var(--paper); }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .story-grid, .chef-grid, .visit-grid, .reserve-grid { grid-template-columns: 1fr; gap: 48px; }
  .chef-img { min-height: 60vh; }
  .chef-txt { padding: 80px 40px; }
  .exp-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-cards { grid-template-columns: repeat(2, 1fr); }
  .foot-top { grid-template-columns: 1fr; gap: 42px; }
}
/* Board: 2×2 on tablets / small desktops */
@media (max-width: 1024px) {
  .board-inner { display: grid; grid-template-columns: 1fr 1fr; }
  .board-cell { border-right: none; border-bottom: 1px solid rgba(244,238,227,.12); min-width: 0; }
  .board-cell:nth-child(odd)    { border-right: 1px solid rgba(244,238,227,.12); }
  .board-cell:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
  .hero { flex-direction: column; }
  .hero-inner { min-height: 100vh; width: 100%; display: flex; align-items: flex-end; }
  .board { width: 100%; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 24px; }
  body { font-size: 17px; }
  .hero-inner { padding-bottom: 56px; }
  /* Board: single column on phones */
  .board-inner { grid-template-columns: 1fr; }
  .board-cell:nth-child(odd)       { border-right: none; }
  .board-cell:nth-last-child(-n+2) { border-bottom: 1px solid rgba(244,238,227,.12); }
  .board-cell:last-child           { border-bottom: none; }
  .accolades { gap: 24px; flex-wrap: wrap; }
  .chef-txt { padding: 60px 24px; }
  .rform .row { grid-template-columns: 1fr; }
  .menu-cards { grid-template-columns: 1fr; }
  .chefs-feature { flex-direction: column; align-items: flex-start; padding: 32px 28px; gap: 20px; }
  .cf-link { width: 100%; justify-content: center; }
}
