/* ============================================================
   Three By One Coffee Roastery — 3by1
   Classic + modern, warm and chill.
   ============================================================ */

:root {
  /* palette */
  --cream:      #f6efe4;
  --cream-2:    #efe5d6;
  --paper:      #fbf7f0;
  --espresso:   #20160f;
  --espresso-2: #2e2018;
  --coffee:     #4a3528;
  --caramel:    #b5612f;
  --caramel-d:  #9a4f24;
  --sage:       #6f7a64;
  --ink:        #2b1e16;
  --muted:      #7a6a5c;
  --line:       rgba(43, 30, 22, 0.14);

  /* type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 80px);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---- shared bits ---- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 18px;
}
.eyebrow--dark { color: var(--caramel-d); }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 5.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--espresso);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--espresso); color: var(--cream); }
.btn--solid:hover { background: var(--caramel); }
.btn--ghost { color: var(--espresso); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--espresso); }
.btn--pill { background: var(--espresso); color: var(--cream); padding: 11px 22px; }
.btn--pill:hover { background: var(--caramel); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 18px 0;
}
.nav.is-scrolled {
  background: rgba(246, 239, 228, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 0;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { height: 52px; width: auto; color: var(--espresso); display: block; }
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--coffee);
  position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--caramel); transition: width .28s ease;
}
.nav__links a:hover { color: var(--espresso); }
.nav__links a:hover::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 18px; }
.lang {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
}
.lang__current { color: var(--espresso); }
.lang__alt {
  color: var(--muted); padding-left: 7px; border-left: 1px solid var(--line);
  transition: color .25s ease;
}
.lang__alt-left {
  color: var(--muted); padding-right: 7px; border-right: 1px solid var(--line);
  transition: color .25s ease;
}
.lang__alt:hover, .lang__alt-left:hover { color: var(--caramel); }

.nav__burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--line);
  position: relative;
}
.nav__burger span {
  position: absolute; left: 11px; right: 11px; height: 1.8px; background: var(--espresso);
  transition: transform .3s ease, opacity .3s ease;
}
.nav__burger span:nth-child(1) { top: 17px; }
.nav__burger span:nth-child(2) { top: 23px; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px var(--pad) 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 85% 0%, var(--cream-2) 0%, transparent 55%),
    radial-gradient(90% 70% at 0% 100%, #ece0cd 0%, transparent 60%),
    var(--cream);
  z-index: -2;
}
.hero__grain {
  position: absolute; inset: 0; z-index: -1; opacity: .4; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.hero__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(46px, 7.4vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--espresso);
  margin-bottom: 26px;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--caramel);
}
.hero__lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 34px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }

.hero__meta {
  display: flex; align-items: center; gap: 26px;
}
.hero__meta > div { display: flex; flex-direction: column; }
.hero__meta strong { font-family: var(--serif); font-size: 22px; color: var(--espresso); font-weight: 600; }
.hero__meta span { font-size: 12.5px; color: var(--muted); letter-spacing: .02em; }
.hero__meta-divider { width: 1px; height: 34px; background: var(--line); }

/* hero media */
.hero__media { position: relative; height: clamp(420px, 52vw, 620px); }
.hero__card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(32, 22, 15, .5);
}
.hero__card .img { width: 100%; height: 100%; object-fit: cover; }
.hero__card--main {
  inset: 0 0 18% 14%;
  z-index: 2;
}
.hero__card--sub {
  width: 44%; height: 40%;
  right: 0; bottom: 0;
  z-index: 3;
  border: 6px solid var(--cream);
}
.hero__badge {
  position: absolute;
  top: -6px; left: 0;
  width: 104px; height: 104px;
  z-index: 4;
  display: grid; place-items: center;
  color: var(--espresso);
  background: var(--cream);
  border-radius: 50%;
  box-shadow: 0 14px 30px -14px rgba(32,22,15,.5);
}
.hero__badge-spin { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 18s linear infinite; }
.hero__badge-mark { font-family: var(--serif); font-weight: 600; font-size: 24px; color: var(--caramel); }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid var(--line); border-radius: 14px;
  display: grid; place-items: start center; padding-top: 7px;
}
.hero__scroll span { width: 3px; height: 8px; border-radius: 2px; background: var(--caramel); animation: scrolly 1.5s ease-in-out infinite; }
@keyframes scrolly { 0%,100%{ transform: translateY(0); opacity:1 } 50%{ transform: translateY(10px); opacity:.3 } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--espresso);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 26px;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
}
.marquee__track .dot { color: var(--caramel); font-size: 10px; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   STORY
   ============================================================ */
.story {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 150px) var(--pad);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.story__media { position: relative; }
.story__media .img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(32,22,15,.45);
}
.story__est {
  position: absolute; right: -14px; bottom: 26px;
  background: var(--caramel); color: var(--cream);
  font-family: var(--serif); font-style: italic; font-size: 18px;
  padding: 12px 22px; border-radius: 100px;
  box-shadow: 0 16px 30px -16px rgba(181,97,47,.7);
}
.story__copy p { color: var(--muted); margin-top: 18px; max-width: 520px; }
.story__copy p strong { color: var(--coffee); }
.section-title + p { margin-top: 24px; }

.story__stats {
  display: flex; gap: 38px; margin-top: 40px; flex-wrap: wrap;
}
.story__stats > div { display: flex; flex-direction: column; }
.story__stats strong { font-family: var(--serif); font-size: 32px; color: var(--espresso); font-weight: 600; }
.story__stats span { font-size: 13px; color: var(--muted); }

/* ============================================================
   SIGNATURES
   ============================================================ */
.signatures {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(80px, 11vw, 150px) var(--pad);
  border-radius: 40px 40px 0 0;
}
.signatures__head { max-width: var(--maxw); margin: 0 auto 56px; text-align: center; }
.signatures .section-title { color: var(--cream); }
.signatures__intro { color: rgba(246,239,228,.62); max-width: 460px; margin: 22px auto 0; }

.sig-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sig-card {
  background: var(--espresso-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s ease, border-color .35s ease;
}
.sig-card:hover { transform: translateY(-6px); border-color: rgba(181,97,47,.55); }
.sig-card__media { aspect-ratio: 4/3; overflow: hidden; }
.sig-card__media .img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.sig-card:hover .sig-card__media .img { transform: scale(1.06); }
.sig-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.sig-card__body h3 { font-family: var(--serif); font-weight: 500; font-size: 23px; color: var(--cream); }
.sig-card__body p { font-size: 14.5px; color: rgba(246,239,228,.6); flex: 1; }
.sig-card__tag {
  align-self: flex-start; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--caramel); border: 1px solid rgba(181,97,47,.4); padding: 4px 12px; border-radius: 100px;
}
.sig-card__price { font-family: var(--serif); font-size: 20px; color: var(--caramel); font-weight: 600; }

/* feature card spans two columns + rows on wide screens */
.sig-card--feature { grid-column: span 2; grid-row: span 1; flex-direction: row; }
.sig-card--feature .sig-card__media { flex: 1; aspect-ratio: auto; }
.sig-card--feature .sig-card__body { flex: 1; justify-content: center; padding: 36px; }
.sig-card--feature h3 { font-size: 30px; }

/* ============================================================
   MENU
   ============================================================ */
.menu {
  background: var(--paper);
  padding: clamp(80px, 11vw, 150px) var(--pad);
}
.menu__head { max-width: var(--maxw); margin: 0 auto 56px; text-align: center; }
.menu__note { color: var(--muted); margin-top: 18px; font-size: 15px; }

.menu__cols {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(34px, 5vw, 64px);
}
.menu__cat {
  font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--espresso);
  padding-bottom: 16px; margin-bottom: 8px; border-bottom: 1.5px solid var(--caramel);
}
.menu__list { list-style: none; }
.menu__list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
  font-size: 15.5px; color: var(--coffee);
}
.menu__list li span:first-child { position: relative; }
.menu__price { font-family: var(--serif); font-weight: 600; color: var(--caramel-d); white-space: nowrap; }

/* Visual food gallery */
.eats {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.eat {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; background: var(--cream-2);
  box-shadow: 0 18px 36px -24px rgba(32,22,15,.35);
}
.eat .img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.eat:hover .img { transform: scale(1.05); }
.eat figcaption {
  position: absolute; left: 16px; bottom: 14px; right: 16px;
  font-family: var(--serif); font-weight: 600; font-size: 17px; color: var(--cream);
  text-shadow: 0 2px 14px rgba(0,0,0,.6);
}

.menu-lists {
  max-width: var(--maxw); margin: 64px auto 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.menu-list {
  background: var(--cream);
  border: 1px solid rgba(32,22,15,.08);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 18px 50px -32px rgba(32,22,15,.5);
  display: flex; flex-direction: column; gap: 22px;
}
.menu-list__head {
  display: flex; gap: 18px; align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(32,22,15,.1);
}
.menu-list__index {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 28px; color: var(--accent);
  line-height: 1; padding-top: 4px; min-width: 36px;
}
.menu-list__head h3 {
  font-family: var(--serif); font-weight: 600; font-size: 28px;
  letter-spacing: -0.01em; color: var(--espresso); margin-bottom: 4px;
}
.menu-list__head p { font-size: 14px; color: var(--muted); line-height: 1.5; }

.menu-list__group h4 {
  font-family: var(--sans, Inter, sans-serif);
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 11px; font-weight: 600; color: var(--coffee);
  margin-bottom: 10px;
}
.menu-list__group + .menu-list__group { margin-top: 6px; }
.menu-list__group ul { list-style: none; padding: 0; margin: 0; }
.menu-list__group li {
  display: flex; align-items: baseline; gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(32,22,15,.12);
  font-size: 15px; color: var(--espresso);
}
.menu-list__group li:last-child { border-bottom: 0; }
.menu-list__group li span { flex: 1; }
.menu-list__group li i {
  flex: 0 0 auto; font-style: normal;
  color: var(--muted); font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.menu-list__foot {
  margin-top: auto; padding-top: 10px;
  font-size: 13px; color: var(--muted); font-style: italic;
}
@media (max-width: 760px) {
  .menu-lists { grid-template-columns: 1fr; gap: 20px; }
}

.menu__beans {
  max-width: var(--maxw); margin: 64px auto 0;
  background: var(--espresso); color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.menu__beans h3 { font-family: var(--serif); font-weight: 500; font-size: 26px; margin-bottom: 6px; }
.menu__beans p { color: rgba(246,239,228,.62); max-width: 460px; font-size: 15px; }

/* ============================================================
   VISIT / MAPS
   ============================================================ */
.visit {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(80px, 11vw, 150px) var(--pad);
}
.visit__head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.visit__note { color: var(--muted); margin-top: 18px; font-size: 15.5px; }

.locations { display: grid; gap: clamp(40px, 6vw, 72px); }

.location {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.location:nth-child(even) .location__info { order: 2; }

.location__name {
  font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3vw, 34px);
  color: var(--espresso); letter-spacing: -0.01em;
}

.visit__details { list-style: none; margin: 24px 0 32px; }
.visit__details li { padding: 16px 0; border-top: 1px solid var(--line); display: flex; gap: 20px; }
.visit__details li:last-child { border-bottom: 1px solid var(--line); }
.visit__label {
  flex: 0 0 84px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--caramel); padding-top: 3px;
}
.visit__value { color: var(--coffee); font-size: 15.5px; }
.visit__value a { color: var(--caramel-d); font-weight: 600; }
.visit__value a:hover { text-decoration: underline; }
.visit__value .todo { font-style: italic; color: var(--muted); font-size: 14px; }

.location__map {
  border-radius: var(--radius); overflow: hidden; min-height: 360px; height: 100%;
  box-shadow: 0 30px 60px -34px rgba(32,22,15,.45);
  border: 6px solid var(--paper);
}
.location__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; filter: saturate(.92) contrast(1.02); }

/* ============================================================
   PERKS / 10% OFF
   ============================================================ */
.perks {
  background:
    radial-gradient(80% 60% at 20% 10%, rgba(229,130,30,.1) 0%, transparent 60%),
    radial-gradient(70% 70% at 90% 90%, rgba(229,130,30,.07) 0%, transparent 60%),
    var(--cream);
  padding: clamp(70px, 9vw, 120px) var(--pad);
}
.perks__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.perks__badge {
  display: inline-block; background: #E5821E; color: var(--cream);
  font-family: var(--serif); font-weight: 600; font-size: 16px;
  padding: 8px 16px; border-radius: 100px; margin-bottom: 22px;
  box-shadow: 0 14px 26px -12px rgba(229,130,30,.55);
}
.perks__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 3.5vw, 44px); line-height: 1.08; letter-spacing: -0.015em;
  color: var(--espresso);
}
.perks__sub { color: var(--muted); margin-top: 18px; max-width: 420px; font-size: 16px; }

.perks__list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.perks__list li {
  background: var(--paper);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 24px;
  display: flex; gap: 22px; align-items: flex-start;
  transition: transform .3s ease, border-color .3s ease;
}
.perks__list li:hover { transform: translateX(4px); border-color: #E5821E; }
.perks__num {
  font-family: var(--serif); font-weight: 600; font-size: 22px; color: #E5821E;
  flex: 0 0 32px;
}
.perks__list strong {
  display: block; font-family: var(--serif); font-weight: 600;
  font-size: 18px; color: var(--espresso); margin-bottom: 4px;
}
.perks__list p { color: var(--muted); font-size: 14.5px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(56px, 7vw, 84px) var(--pad) 28px;
}
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__logo { height: 44px; color: var(--cream); margin-bottom: 16px; }
.footer__brand p { color: rgba(246,239,228,.55); max-width: 320px; font-size: 14.5px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 22px; align-content: flex-start; }
.footer__nav a { font-size: 14px; color: rgba(246,239,228,.78); }
.footer__nav a:hover { color: var(--caramel); }
.footer__base {
  max-width: var(--maxw); margin: 22px auto 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(246,239,228,.45);
}

/* ============================================================
   IMAGE PLACEHOLDER (until real photos drop in)
   ============================================================ */
.img {
  background: linear-gradient(135deg, #d8c7ad 0%, #b89a73 45%, #8a6a46 100%);
  background-color: #b89a73;
  position: relative;
}
.img[src] { background: none; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; height: clamp(320px, 60vw, 440px); max-width: 520px; }
  .story { grid-template-columns: 1fr; }
  .story__media { max-width: 460px; }
  .sig-grid { grid-template-columns: repeat(2, 1fr); }
  .sig-card--feature { grid-column: span 2; }
  .menu__cols { grid-template-columns: 1fr; gap: 36px; }
  .eats { grid-template-columns: repeat(2, 1fr); }
  .perks__inner { grid-template-columns: 1fr; gap: 36px; }
  .location { grid-template-columns: 1fr; gap: 26px; }
  .location__info, .location:nth-child(even) .location__info { order: 0; }
  .location__map { min-height: 300px; }
  .location__map iframe { min-height: 300px; }
}

@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__right { gap: 0; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(246,239,228,.97); backdrop-filter: blur(14px);
    padding: 8px var(--pad) 20px;
  }
  .nav.is-open .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .hero { padding-top: 120px; }
  .hero__meta { gap: 18px; }
  .sig-grid { grid-template-columns: 1fr; }
  .sig-card--feature { grid-column: span 1; flex-direction: column; }
  .sig-card--feature .sig-card__media { aspect-ratio: 4/3; }
  .footer__inner { flex-direction: column; gap: 28px; }
}

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