/* =========================================================
   {{BUSINESS_NAME}} — warm editorial food site
   Palette: amber #D97706 · cream #FFFBF0 · warm charcoal
   Type: DM Serif Display (display) · Spectral (text)
   ========================================================= */

:root{
  --amber:      #D97706;
  --amber-deep: #B45f08;
  --amber-soft: #E8A23A;
  --cream:      #FFFBF0;
  --cream-2:    #FBF3E2;
  --ink:        #221b14;   /* warm charcoal */
  --ink-2:      #4a3f33;   /* softer body */
  --ink-3:      #8a7b69;   /* muted */
  --espresso:   #1c140d;   /* dark sections */
  --espresso-2: #2a1f15;
  --line:       rgba(34,27,20,0.12);
  --line-light: rgba(255,251,240,0.16);

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 72px);
  --r: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior: auto; } }

body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Spectral", Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
::selection{ background: var(--amber); color: #fff; }

/* ---------- shared type ---------- */
.eyebrow{
  font-family: "Spectral", serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin: 0 0 18px;
}
.eyebrow--light{ color: var(--amber-soft); }

.section-title{
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.section-lede{
  max-width: 46ch;
  margin: 22px auto 0;
  color: var(--ink-2);
  font-size: clamp(17px, 1.4vw, 20px);
  text-wrap: pretty;
}
.section-head{ margin-bottom: clamp(36px, 5vw, 64px); }
.section-head--center{ text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Spectral", serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
}
.btn--solid{
  background: var(--amber);
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(217,119,6,.6);
}
.btn--solid:hover{ background: var(--amber-deep); transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(217,119,6,.7); }
.btn--ghost{
  background: transparent;
  color: #fff;
  border-color: rgba(255,251,240,.5);
}
.btn--ghost:hover{ background: rgba(255,251,240,.12); border-color: #fff; transform: translateY(-2px); }
.btn--ghost-light{ color: var(--cream); }
.btn--block{ width: 100%; padding: 17px; }

/* =========================================================
   NAV
   ========================================================= */
.nav{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .4s var(--ease);
}
.nav__brand{
  font-family: "DM Serif Display", serif;
  font-size: clamp(20px, 2.4vw, 26px);
  color: #fff;
  letter-spacing: .01em;
  transition: color .4s var(--ease);
}
.nav__links{ display: flex; align-items: center; gap: clamp(18px, 2.6vw, 38px); }
.nav__links a{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(255,251,240,.92);
  transition: color .3s var(--ease);
  position: relative;
}
.nav__links a:not(.nav__cta)::after{
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 1.5px; background: var(--amber-soft);
  transition: width .3s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after{ width: 100%; }
.nav__cta{
  border: 1.5px solid rgba(255,251,240,.5);
  padding: 9px 20px; border-radius: 999px;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.nav__cta:hover{ background: var(--amber); border-color: var(--amber); color: #fff; }

/* scrolled state */
.nav.is-scrolled{
  background: var(--cream);
  box-shadow: 0 6px 24px -16px rgba(34,27,20,.5);
  border-bottom-color: var(--line);
}
.nav.is-scrolled .nav__inner{ padding-top: 14px; padding-bottom: 14px; }
.nav.is-scrolled .nav__brand{ color: var(--ink); }
.nav.is-scrolled .nav__links a{ color: var(--ink-2); }
.nav.is-scrolled .nav__cta{ border-color: var(--line); color: var(--ink); }
.nav.is-scrolled .nav__cta:hover{ background: var(--amber); border-color: var(--amber); color: #fff; }

.nav__toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin: -8px;
}
.nav__toggle span{
  width: 26px; height: 2px; border-radius: 2px;
  background: #fff; transition: transform .35s var(--ease), opacity .25s var(--ease), background .4s var(--ease);
}
.nav.is-scrolled .nav__toggle span{ background: var(--ink); }
.nav__toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2){ opacity: 0; }
.nav__toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad) clamp(70px, 11vh, 130px);
  overflow: hidden;
}
.hero__media{ position: absolute; inset: 0; z-index: 0; }
.hero__media img{
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 16s var(--ease) forwards;
}
@keyframes heroZoom{ from{ transform: scale(1.08); } to{ transform: scale(1); } }
.hero__scrim{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,20,13,.42) 0%, rgba(28,20,13,0) 26%),
    linear-gradient(0deg, rgba(20,14,8,.86) 0%, rgba(20,14,8,.34) 38%, rgba(20,14,8,0) 64%);
}
.hero__content{ position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero__title{
  font-family: "DM Serif Display", serif;
  color: var(--cream);
  font-size: clamp(50px, 11vw, 138px);
  line-height: .94;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
  max-width: 14ch;
  text-shadow: 0 2px 40px rgba(0,0,0,.3);
}
.hero__rating{
  display: flex; align-items: center; gap: 12px;
  color: var(--cream);
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.stars{ display: inline-flex; gap: 3px; }
.star{ width: 19px; height: 19px; fill: var(--amber-soft); }
.hero__rating-num{ font-weight: 600; font-size: 18px; }
.hero__rating-count{ color: rgba(255,251,240,.72); font-size: 16px; }
.hero__actions{ display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll{
  position: absolute; z-index: 1; right: var(--pad); bottom: clamp(70px,11vh,130px);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,251,240,.82);
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
}
.hero__scroll svg{ animation: bob 2.4s ease-in-out infinite; }
@keyframes bob{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(7px);} }
@media (max-width: 720px){ .hero__scroll{ display: none; } }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery{
  padding: clamp(72px, 11vw, 150px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.gallery__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(150px, 19vw, 250px);
  gap: clamp(10px, 1.4vw, 18px);
}
.gtile{
  position: relative;
  margin: 0; padding: 0; border: none; cursor: pointer;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--cream-2);
  grid-column: span 1; grid-row: span 1;
}
.gtile--lead{ grid-column: span 2; grid-row: span 2; }
.gtile:nth-child(4){ grid-column: span 1; grid-row: span 1; }
.gtile:nth-child(5){ grid-column: span 1; grid-row: span 1; }
.gtile img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease), filter .6s var(--ease);
}
.gtile::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,14,8,0) 55%, rgba(20,14,8,.32));
  opacity: 0; transition: opacity .5s var(--ease);
}
.gtile:hover img{ transform: scale(1.06); }
.gtile:hover::after{ opacity: 1; }
.gtile__zoom{
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,251,240,.92); color: var(--ink);
  opacity: 0; transform: translateY(8px) scale(.9);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.gtile:hover .gtile__zoom{ opacity: 1; transform: translateY(0) scale(1); }

@media (max-width: 720px){
  .gallery__grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 42vw; }
  .gtile--lead{ grid-column: span 2; grid-row: span 1; grid-auto-rows: 56vw; height: 56vw; }
}

/* =========================================================
   MENU / OFFERINGS
   ========================================================= */
.menu{
  background: var(--cream-2);
  padding: clamp(72px, 11vw, 150px) var(--pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.menu__list{
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column;
}
.dish{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: clamp(18px, 4vw, 48px);
  padding: clamp(26px, 4vw, 40px) 0;
  border-top: 1px solid var(--line);
}
.dish:last-child{ border-bottom: 1px solid var(--line); }
.dish__num{
  font-family: "DM Serif Display", serif;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--amber);
  line-height: 1;
}
.dish__name{
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.dish__desc{ margin: 0; color: var(--ink-2); max-width: 52ch; text-wrap: pretty; }
.dish__tag{
  align-self: center;
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber-deep);
  white-space: nowrap;
  padding: 6px 14px; border: 1px solid rgba(217,119,6,.32); border-radius: 999px;
}
@media (max-width: 640px){
  .dish{ grid-template-columns: auto 1fr; }
  .dish__tag{ grid-column: 2; justify-self: start; margin-top: 6px; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(72px, 11vw, 150px) var(--pad);
}
.about__media{ border-radius: var(--r); overflow: hidden; }
.about__media img{
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.about__media:hover img{ transform: scale(1.04); }
.about__desc{ color: var(--ink-2); margin: 22px 0 0; font-size: clamp(17px,1.4vw,20px); text-wrap: pretty; }
.about__quote{
  margin: 30px 0 0;
  padding-left: 24px;
  border-left: 3px solid var(--amber);
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.3;
  color: var(--ink);
}
.about__meta{ display: flex; gap: 48px; margin-top: 34px; }
.about__meta-item{ display: flex; flex-direction: column; gap: 4px; }
.about__meta-label{ font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }
.about__meta-value{ font-family: "DM Serif Display", serif; font-size: 19px; }
@media (max-width: 860px){
  .about{ grid-template-columns: 1fr; }
  .about__media{ order: -1; max-width: 460px; }
}

/* =========================================================
   HOURS / ORDERING
   ========================================================= */
.hours{
  background: var(--espresso);
  color: var(--cream);
  position: relative;
}
.hours::before{
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 100% 0%, rgba(217,119,6,.16), transparent 55%);
  pointer-events: none;
}
.hours__inner{
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) var(--pad);
  display: grid; grid-template-columns: 1fr auto 1.2fr;
  align-items: center; gap: clamp(32px, 5vw, 70px);
}
.hours__text{
  font-family: "DM Serif Display", serif;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  margin: 0;
  color: var(--cream);
  text-wrap: pretty;
}
.hours__divider{ width: 1px; align-self: stretch; background: var(--line-light); }
.hours__note{ color: rgba(255,251,240,.74); margin: 0 0 24px; max-width: 44ch; }
.hours__actions{ display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 820px){
  .hours__inner{ grid-template-columns: 1fr; }
  .hours__divider{ width: 100%; height: 1px; }
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews{
  padding: clamp(72px, 11vw, 150px) var(--pad);
  max-width: var(--maxw); margin: 0 auto;
}
.reviews__grid{
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}
.review{
  margin: 0;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(30px, 4vw, 52px);
  position: relative;
}
.review::before{
  content: "\201C";
  position: absolute; top: 6px; right: 28px;
  font-family: "DM Serif Display", serif;
  font-size: 130px; line-height: 1;
  color: rgba(217,119,6,.14);
}
.review__stars{ display: inline-flex; gap: 3px; margin-bottom: 22px; }
.review__stars .star{ width: 20px; height: 20px; fill: var(--amber); }
.review__text{
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.4;
  margin: 0 0 22px;
  color: var(--ink);
  text-wrap: pretty;
  position: relative; z-index: 1;
}
.review__author{
  font-size: 15px; font-weight: 600; letter-spacing: .04em;
  color: var(--amber-deep);
}
@media (max-width: 740px){ .reviews__grid{ grid-template-columns: 1fr; } }

/* =========================================================
   CONTACT / INQUIRY
   ========================================================= */
.contact{ position: relative; background: var(--espresso); color: var(--cream); overflow: hidden; }
.contact__media{ position: absolute; inset: 0; z-index: 0; }
.contact__media img{ width: 100%; height: 100%; object-fit: cover; opacity: .26; }
.contact__media-scrim{
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(20,14,8,.96) 38%, rgba(20,14,8,.5) 100%);
}
.contact__panel{
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(72px, 11vw, 140px) var(--pad);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.contact .section-title{ color: var(--cream); }
.contact .eyebrow{ color: var(--amber-soft); }
.contact__lede{ color: rgba(255,251,240,.78); margin: 22px 0 36px; max-width: 42ch; }
.contact__details{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.contact__details li{ display: flex; flex-direction: column; gap: 5px; padding-bottom: 22px; border-bottom: 1px solid var(--line-light); }
.contact__details li:last-child{ border-bottom: none; }
.contact__detail-label{ font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,251,240,.55); }
.contact__detail-link{ font-family: "DM Serif Display", serif; font-size: clamp(22px, 2.4vw, 28px); color: var(--cream); transition: color .3s var(--ease); width: max-content; }
.contact__detail-link:hover{ color: var(--amber-soft); }
.contact__detail-text{ font-family: "DM Serif Display", serif; font-size: clamp(19px, 2vw, 23px); color: var(--cream); }

.contact__form{
  background: var(--cream);
  color: var(--ink);
  border-radius: 8px;
  padding: clamp(26px, 3.2vw, 42px);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.6);
}
.field{ display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field--row{ flex-direction: row; gap: 16px; }
.field--row .field{ flex: 1; margin-bottom: 0; }
.field label{ font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.field input, .field select, .field textarea{
  font-family: "Spectral", serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--cream-2);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 13px 15px;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea{ resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder{ color: var(--ink-3); opacity: .7; }
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--amber);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(217,119,6,.12);
}
.contact__form-note{
  margin: 16px 0 0; text-align: center;
  color: var(--amber-deep); font-weight: 600;
  background: rgba(217,119,6,.1); border-radius: var(--r); padding: 14px;
}
@media (max-width: 860px){
  .contact__panel{ grid-template-columns: 1fr; }
}
@media (max-width: 460px){
  .field--row{ flex-direction: column; gap: 18px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer{ background: #16100a; color: rgba(255,251,240,.8); }
.footer__inner{
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(48px, 6vw, 72px) var(--pad) 36px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px; align-items: start;
}
.footer__name{ font-family: "DM Serif Display", serif; font-size: 26px; color: var(--cream); margin: 0 0 6px; }
.footer__tag{ margin: 0; font-size: 14px; letter-spacing: .08em; color: rgba(255,251,240,.55); }
.footer__nav{ display: flex; flex-direction: column; gap: 12px; }
.footer__nav a, .footer__contact a{ font-size: 15px; transition: color .3s var(--ease); width: max-content; }
.footer__nav a:hover, .footer__contact a:hover{ color: var(--amber-soft); }
.footer__contact{ display: flex; flex-direction: column; gap: 12px; }
.footer__base{
  max-width: var(--maxw); margin: 0 auto;
  padding: 22px var(--pad);
  border-top: 1px solid rgba(255,251,240,.1);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 13px; color: rgba(255,251,240,.5);
  flex-wrap: wrap;
}
.footer__rating{ color: var(--amber-soft); letter-spacing: .04em; }
@media (max-width: 720px){ .footer__inner{ grid-template-columns: 1fr; gap: 28px; } }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox{
  position: fixed; inset: 0; z-index: 100;
  background: rgba(14,9,5,.94);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 60px);
  opacity: 0; transition: opacity .4s var(--ease);
}
.lightbox[hidden]{ display: none; }
.lightbox.is-open{ opacity: 1; }
.lightbox__stage{
  margin: 0; max-width: 1100px; max-height: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.lightbox__stage img{
  max-width: 100%; max-height: 82vh; object-fit: contain;
  border-radius: var(--r);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,.8);
  transform: scale(.96); opacity: 0;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.lightbox.is-open .lightbox__stage img{ transform: scale(1); opacity: 1; }
.lightbox__caption{ color: rgba(255,251,240,.6); font-size: 13px; letter-spacing: .2em; text-transform: uppercase; }
.lightbox__close{
  position: absolute; top: 22px; right: 24px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,251,240,.1); color: var(--cream);
  border: none; cursor: pointer; display: grid; place-items: center;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.lightbox__close:hover{ background: rgba(255,251,240,.22); transform: rotate(90deg); }
.lightbox__nav{
  background: rgba(255,251,240,.08); color: var(--cream);
  border: none; cursor: pointer;
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.lightbox__nav:hover{ background: var(--amber); }
.lightbox__nav--prev{ position: absolute; left: clamp(12px,3vw,40px); top: 50%; transform: translateY(-50%); }
.lightbox__nav--next{ position: absolute; right: clamp(12px,3vw,40px); top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover{ transform: translateY(-50%) scale(1.08); }
.lightbox__nav--next:hover{ transform: translateY(-50%) scale(1.08); }
@media (max-width: 640px){
  .lightbox__nav{ width: 44px; height: 44px; }
  .lightbox__nav--prev{ left: 8px; } .lightbox__nav--next{ right: 8px; }
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in{ opacity: 1; transform: none; }
/* stagger siblings inside grids */
.gallery__grid .gtile{ transition-delay: calc(var(--i, 0) * 80ms); }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
  .hero__media img{ animation: none; }
  .hero__scroll svg{ animation: none; }
}

/* nav mobile menu */
@media (max-width: 880px){
  .nav__toggle{ display: flex; }
  .nav__links{
    position: fixed; inset: 0 0 auto 0; top: 0;
    flex-direction: column; align-items: flex-start; gap: 6px;
    background: var(--cream);
    padding: 96px var(--pad) 36px;
    transform: translateY(-100%);
    transition: transform .5s var(--ease);
    box-shadow: 0 20px 50px -20px rgba(34,27,20,.5);
    border-bottom: 1px solid var(--line);
  }
  .nav__links.is-open{ transform: translateY(0); }
  .nav__links a{ color: var(--ink) !important; font-size: 22px; font-family: "DM Serif Display", serif; padding: 10px 0; }
  .nav__links a::after{ display: none; }
  .nav__cta{ margin-top: 14px; border-color: var(--amber) !important; color: var(--amber) !important; padding: 12px 26px; }
}
