/* =========================================================
   Farmers Daughter — Yarralumla
   Brand: charcoal + goldenrod, warm timber, sage, cream
   ========================================================= */

:root {
  /* Palette */
  --charcoal: #211e1b;
  --charcoal-2: #2c2824;
  --ink: #1a1815;
  --gold: #d69a2d;
  --gold-deep: #b47e1e;
  --gold-soft: #e7c072;
  --cream: #f7f2e8;
  --cream-2: #efe7d6;
  --paper: #fbf8f1;
  --sage: #8a987a;
  --sage-deep: #6f7d61;
  --timber: #a8743f;
  --text: #2a2621;
  --text-soft: #5c554c;
  --muted: #8b8377;
  --line: #e2d8c4;
  --white: #ffffff;

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --wrap: 1160px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;
  --shadow-sm: 0 2px 10px rgba(33, 30, 27, 0.07);
  --shadow-md: 0 14px 40px rgba(33, 30, 27, 0.14);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.1; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 400; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p { color: var(--text-soft); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold-soft); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.center { text-align: center; }
.lead { font-size: clamp(1.05rem, 1.8vw, 1.22rem); color: var(--text-soft); max-width: 60ch; }
.center .lead { margin-inline: auto; }

.bg-cream { background: var(--cream); }
.bg-cream-2 { background: var(--cream-2); }
.bg-dark { background: var(--charcoal); color: var(--cream); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--cream); }
.bg-dark p { color: rgba(247, 242, 232, 0.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.86rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.95rem 1.7rem; border-radius: 40px;
  border: 1.5px solid transparent; transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-deep); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: currentColor; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn-outline.on-dark { color: var(--cream); border-color: rgba(247,242,232,0.45); }
.btn-outline.on-dark:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-ghost { padding-inline: 0; border: none; color: var(--gold-deep); border-bottom: 1.5px solid var(--gold); border-radius: 0; }
.btn-ghost:hover { color: var(--ink); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
  padding-block: 1.1rem;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-header.scrolled {
  background: rgba(33, 30, 27, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.22);
  padding-block: 0.7rem;
}

.brand { display: flex; align-items: center; gap: 0.7rem; color: var(--cream); }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--sans); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.22em; font-size: 0.92rem; color: var(--cream);
}
.brand__sub {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.28em;
  font-size: 0.56rem; color: var(--gold-soft); margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links a {
  color: rgba(247, 242, 232, 0.85); font-weight: 500; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.13em; position: relative; padding-block: 4px;
  transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--cream); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }

.nav__cta { padding: 0.62rem 1.25rem; font-size: 0.76rem; }

.nav-toggle {
  display: none; background: none; border: none; width: 30px; height: 22px;
  position: relative; z-index: 120;
}
.nav-toggle span {
  position: absolute; left: 0; height: 2px; width: 100%; background: var(--cream);
  border-radius: 2px; transition: all 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.nav-open .nav-toggle span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: var(--cream); isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,18,15,0.62) 0%, rgba(20,18,15,0.45) 40%, rgba(20,18,15,0.82) 100%);
}
.hero__inner { padding-block: 8rem 4rem; max-width: 720px; }
.hero h1 { color: var(--cream); margin-top: 1.1rem; }
.hero__tag { color: rgba(247,242,232,0.9); font-size: clamp(1.05rem, 2vw, 1.3rem); margin-top: 1.4rem; max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem; margin-top: 3rem;
  padding-top: 1.8rem; border-top: 1px solid rgba(247,242,232,0.2);
  font-size: 0.85rem; letter-spacing: 0.04em;
}
.hero__meta div { display: flex; align-items: center; gap: 0.5rem; color: rgba(247,242,232,0.85); }
.hero__meta strong { color: var(--gold-soft); font-weight: 600; }

.scroll-cue {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(247,242,232,0.7); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
}
.scroll-cue span { width: 1px; height: 34px; background: rgba(247,242,232,0.5); animation: cue 1.8s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- Section heading ---------- */
.sec-head { max-width: 62ch; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.sec-head.center { margin-inline: auto; }
.sec-head h2 { margin-top: 0.8rem; }
.sec-head p { margin-top: 1rem; }

/* ---------- Intro / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split__media--stack { aspect-ratio: auto; }
.media-badge {
  position: absolute; bottom: -22px; right: -18px; background: var(--gold);
  color: var(--ink); border-radius: 50%; width: 128px; height: 128px;
  display: grid; place-content: center; text-align: center; box-shadow: var(--shadow-md);
  font-family: var(--display); line-height: 1.05; padding: 1rem;
}
.media-badge b { font-size: 1.9rem; display: block; }
.media-badge small { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }

.stack-links { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem; }

/* ---------- Feature cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 1.9rem; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-content: center;
  background: var(--cream-2); color: var(--gold-deep); margin-bottom: 1.3rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.96rem; }

/* ---------- Info strip ---------- */
.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(247,242,232,0.16); border-radius: var(--radius); overflow: hidden; }
.strip__item { background: var(--charcoal-2); padding: 2rem 1.8rem; }
.strip__item h3 { color: var(--gold-soft); font-size: 1.15rem; margin-bottom: 0.4rem; }
.strip__item p { color: rgba(247,242,232,0.8); font-size: 0.95rem; }
.strip__item .row { display: flex; justify-content: space-between; font-size: 0.9rem; color: rgba(247,242,232,0.8); padding-block: 0.2rem; }
.strip__item .row span:last-child { color: var(--gold-soft); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.gallery-grid.home { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; background: var(--cream-2); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,18,15,0.35), transparent 55%);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(15,13,11,0.94); display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(247,242,232,0.1); border: 1px solid rgba(247,242,232,0.25); color: var(--cream); width: 48px; height: 48px; border-radius: 50%; display: grid; place-content: center; font-size: 1.3rem; transition: background 0.25s; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); color: var(--ink); }
.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav.prev { left: 1.4rem; }
.lightbox__nav.next { right: 1.4rem; }

/* ---------- Menu ---------- */
.menu-hero { padding-top: 9rem; }
.menu-tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 3rem; }
.menu-tab {
  background: transparent; border: 1.5px solid var(--line); border-radius: 40px;
  padding: 0.6rem 1.4rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-soft); transition: all 0.25s var(--ease);
}
.menu-tab:hover { border-color: var(--gold); color: var(--ink); }
.menu-tab.active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.menu-block { margin-bottom: clamp(3rem, 6vw, 4.5rem); scroll-margin-top: 90px; }
.menu-block__head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.8rem; }
.menu-block__head h2 { white-space: nowrap; }
.menu-block__head .rule { flex: 1; height: 1px; background: var(--line); }
.menu-block__note { font-size: 0.9rem; color: var(--muted); font-style: italic; }

.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 3.5rem; }
.menu-item { padding-block: 0.85rem; border-bottom: 1px dashed var(--line); }
.menu-item__top { display: flex; align-items: baseline; gap: 0.6rem; }
.menu-item__name { font-family: var(--display); font-size: 1.15rem; color: var(--ink); font-weight: 500; }
.menu-item__dots { flex: 1; border-bottom: 1px dotted var(--muted); transform: translateY(-4px); min-width: 12px; }
.menu-item__price { font-weight: 600; color: var(--gold-deep); font-size: 1rem; }
.menu-item__desc { font-size: 0.9rem; color: var(--text-soft); margin-top: 0.25rem; }
.menu-item__tags { display: inline-flex; gap: 0.35rem; margin-left: 0.4rem; }
.tag { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.05em; padding: 2px 6px; border-radius: 3px; background: var(--cream-2); color: var(--sage-deep); text-transform: uppercase; }
.tag.v { color: var(--sage-deep); }
.tag.gf { color: var(--timber); }

.specials-card { background: var(--charcoal); color: var(--cream); border-radius: var(--radius); padding: clamp(2rem, 4vw, 3rem); }
.specials-card h2 { color: var(--gold-soft); }
.specials-card .menu-item { border-color: rgba(247,242,232,0.16); }
.specials-card .menu-item__name { color: var(--cream); }
.specials-card .menu-item__price { color: var(--gold-soft); }
.specials-card .menu-item__dots { border-color: rgba(247,242,232,0.4); }

/* ---------- About ---------- */
.timeline { display: grid; gap: 0; max-width: 760px; margin-inline: auto; }
.tl-item { display: grid; grid-template-columns: 90px 1fr; gap: 1.6rem; padding-bottom: 2.4rem; position: relative; }
.tl-item::before { content: ""; position: absolute; left: 45px; top: 12px; bottom: -8px; width: 2px; background: var(--line); }
.tl-item:last-child::before { display: none; }
.tl-year { font-family: var(--display); font-size: 1.5rem; color: var(--gold-deep); position: relative; }
.tl-year::after { content: ""; position: absolute; left: 43px; top: 8px; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); border: 3px solid var(--paper); }
.tl-body h3 { margin-bottom: 0.4rem; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.value { text-align: center; padding: 1rem; }
.value__num { font-family: var(--display); font-size: 3rem; color: var(--gold); line-height: 1; }
.value p { margin-top: 0.5rem; font-size: 0.95rem; }

.quote { max-width: 780px; margin-inline: auto; text-align: center; }
.quote blockquote { font-family: var(--display); font-size: clamp(1.5rem, 3.4vw, 2.3rem); line-height: 1.35; color: var(--cream); font-weight: 400; }
.quote cite { display: block; margin-top: 1.6rem; font-family: var(--sans); font-style: normal; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.info-list { display: grid; gap: 1.6rem; }
.info-row { display: grid; grid-template-columns: 48px 1fr; gap: 1.1rem; align-items: start; }
.info-row__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--cream-2); color: var(--gold-deep); display: grid; place-content: center; }
.info-row__icon svg { width: 22px; height: 22px; }
.info-row h4 { font-family: var(--sans); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); font-weight: 600; margin-bottom: 0.3rem; }
.info-row p, .info-row a { color: var(--text); font-size: 1.02rem; }
.info-row a:hover { color: var(--gold-deep); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.7rem 0; border-bottom: 1px solid var(--line); font-size: 0.98rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--gold-deep); }
.hours-table tr.today td { color: var(--ink); }
.hours-table tr.today td:first-child::after { content: "Today"; margin-left: 0.6rem; font-size: 0.6rem; background: var(--gold); color: var(--ink); padding: 2px 7px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; vertical-align: middle; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; isolation: isolate; color: var(--cream); text-align: center; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(24,21,18,0.8); }
.cta-band h2 { color: var(--cream); }
.cta-band .btn-wrap { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(247,242,232,0.72); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand .brand { margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.92rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--sans); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-soft); margin-bottom: 1.1rem; font-weight: 600; }
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a, .footer-col p { font-size: 0.92rem; color: rgba(247,242,232,0.72); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-soft); }
.socials { display: flex; gap: 0.7rem; margin-top: 0.4rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(247,242,232,0.22); display: grid; place-content: center; color: var(--cream); transition: all 0.25s var(--ease); }
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(247,242,232,0.12); padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(247,242,232,0.5); }
.footer-bottom a:not(.oo-credit):hover { color: var(--gold-soft); }

/* ---------- Open/closed badge ---------- */
.status-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.74rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.4rem 0.9rem; border-radius: 40px;
  background: rgba(138,152,122,0.16); color: var(--sage-deep);
}
.status-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(138,152,122,0.2); }
.status-pill.is-open { background: rgba(138,152,122,0.18); color: #5a7a45; }
.status-pill.is-open::before { background: #6aa544; box-shadow: 0 0 0 4px rgba(106,165,68,0.22); }
.status-pill.is-closed { background: rgba(176,116,63,0.14); color: var(--timber); }
.status-pill.is-closed::before { background: var(--timber); box-shadow: 0 0 0 4px rgba(176,116,63,0.18); }
.on-dark .status-pill, .hero .status-pill { background: rgba(247,242,232,0.12); color: var(--gold-soft); }
.hero .status-pill.is-open { color: #b8d99a; }

/* ---------- oo.studio site credit ---------- */
/* Only the two colours are customised (base → footer muted text, hover → accent);
   paths, classes, words and pathLength stay exactly as documented. */
.oo-credit { display: inline-flex; align-items: center; gap: 8px;
  font: 600 12px/1 system-ui, sans-serif; color: rgba(247, 242, 232, 0.5);
  text-decoration: none; transition: color .3s; }
.oo-credit:hover { color: #d69a2d; }
.oo-credit path { fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; }
.oo-loop { opacity: .35; }
.oo-light { stroke-dasharray: 25 75; stroke-dashoffset: 0;
  animation: oo-trace 2.4s linear infinite; }
@keyframes oo-trace { to { stroke-dashoffset: -100; } }
@media (prefers-reduced-motion: reduce) {
  .oo-light { animation: none; opacity: 0; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .cards, .values, .strip { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split__media { order: 0; }
  .split__media img { aspect-ratio: 16/11; }
  .contact-grid { grid-template-columns: 1fr; }
  .menu-list { grid-template-columns: 1fr; gap: 0 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .gallery-grid, .gallery-grid.home { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid.home { grid-auto-rows: 160px; }
}

@media (max-width: 720px) {
  .nav__links, .nav__cta.desktop { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0; background: var(--charcoal);
    flex-direction: column; justify-content: center; gap: 0;
    transform: translateX(100%); transition: transform 0.4s var(--ease);
  }
  .nav-open .nav { transform: translateX(0); }
  .nav__links { flex-direction: column; gap: 0; text-align: center; }
  .nav__links a { font-size: 1.4rem; padding: 1rem; letter-spacing: 0.05em; }
  .nav .nav__cta.mobile { display: inline-flex; margin-top: 1.5rem; font-size: 0.9rem; padding: 0.9rem 2rem; }
  .hero__meta { gap: 1rem 1.5rem; }
  /* Extra bottom room so the meta clears the scroll cue on phones */
  .hero__inner { padding-block: 7rem 6.5rem; }
  .media-badge { width: 100px; height: 100px; right: 8px; bottom: -14px; }
  .media-badge b { font-size: 1.5rem; }
  .tl-item { grid-template-columns: 70px 1fr; gap: 1rem; }
  .tl-item::before { left: 35px; }
  .tl-year::after { left: 33px; }
}
@media (min-width: 721px) { .nav__cta.mobile { display: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
