/* ============================================================
   Chiosco Ticino — foglio di stile
   Tema: chiosco sul fiume Ticino
   Palette: acqua/teal, verde bosco, sabbia calda, corallo
   ============================================================ */

:root {
  /* colori */
  --teal-900: #0b3d45;
  --teal-800: #0d5560;
  --teal-700: #14747e;
  --teal-500: #1f97a3;
  --teal-300: #6fc3c9;
  --aqua-100: #e4f4f4;

  --green-700: #3d6b4f;
  --green-500: #4f8a63;

  --coral: #e2764f;
  --coral-dark: #cc5f39;

  --sand-50: #fbf6ec;
  --sand-100: #f5ecdb;
  --sand-200: #ecdfc6;

  --ink: #1e2a2c;
  --ink-soft: #46585a;
  --muted: #6f8082;
  --white: #ffffff;

  /* util */
  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(11, 61, 69, .08);
  --shadow: 0 18px 45px rgba(11, 61, 69, .16);
  --shadow-lg: 0 30px 70px rgba(11, 61, 69, .28);
  --ease: cubic-bezier(.22, .61, .36, 1);

  --font-head: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; margin: 0; font-weight: 600; letter-spacing: -.01em; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
:focus-visible { outline: 3px solid var(--teal-500); outline-offset: 3px; border-radius: 4px; }

.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--teal-800); color: #fff; padding: .6rem 1rem; border-radius: 8px;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

.eyebrow {
  text-transform: uppercase; letter-spacing: .22em; font-size: .72rem; font-weight: 700;
  color: var(--coral); margin: 0 0 .8rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 10px 24px rgba(226, 118, 79, .35); }
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(226, 118, 79, .42); }
.btn-ghost { background: transparent; color: var(--teal-800); border: 1.5px solid rgba(20, 116, 126, .45); }
.btn-ghost:hover { background: var(--teal-800); color: #fff; border-color: var(--teal-800); transform: translateY(-2px); }
.btn-call { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.4); padding: .6rem 1.1rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: .9rem 0;
  transition: background .35s, box-shadow .35s, padding .35s;
}
.site-header.scrolled {
  background: rgba(251, 246, 236, .92);
  backdrop-filter: saturate(1.4) blur(10px);
  box-shadow: var(--shadow-sm);
  padding: .55rem 0;
}
.header-inner { display: flex; align-items: center; gap: 1.2rem; }

.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; color: #fff; transition: color .35s; }
.scrolled .brand { color: var(--teal-800); }
.brand-mark {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px;
  background: linear-gradient(160deg, var(--teal-700), var(--teal-900));
  color: var(--aqua-100); box-shadow: var(--shadow-sm); flex: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-head); font-size: 1.32rem; font-weight: 600; letter-spacing: -.01em; }
.brand-text small { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }

.nav ul { display: flex; gap: 1.9rem; }
.nav a {
  position: relative; font-weight: 500; font-size: .96rem; color: #fff; opacity: .92;
  padding: .3rem 0; transition: opacity .2s, color .35s;
}
.scrolled .nav a { color: var(--ink); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--coral); transition: width .3s var(--ease);
}
.nav a:hover, .nav a.active { opacity: 1; }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-cta { color: #fff; }
.scrolled .header-cta { background: var(--teal-800); border-color: var(--teal-800); }

.nav-toggle { display: none; width: 44px; height: 44px; position: relative; z-index: 120; }
.nav-toggle span {
  display: block; width: 24px; height: 2.5px; background: #fff; border-radius: 3px; margin: 5px auto;
  transition: transform .3s, opacity .3s, background .35s;
}
.scrolled .nav-toggle span { background: var(--teal-800); }
.nav-open .nav-toggle span { background: var(--teal-800); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding: 8rem 0 5rem; color: #fff; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,61,69,.55) 0%, rgba(11,61,69,.18) 30%, rgba(11,61,69,.35) 60%, rgba(11,61,69,.86) 100%),
    radial-gradient(120% 80% at 20% 100%, rgba(13,85,96,.5), transparent 60%);
}

.hero-content { position: relative; max-width: 720px; }
.hero .eyebrow { color: var(--teal-300); }
.hero h1 {
  font-size: clamp(2.9rem, 8vw, 5.4rem); font-weight: 600; margin: 0 0 1.2rem;
  text-shadow: 0 6px 30px rgba(0,0,0,.35);
}
.hero-lead {
  font-size: clamp(1.05rem, 2.3vw, 1.28rem); max-width: 34em; opacity: .95;
  margin-bottom: 2rem; text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.5rem; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); backdrop-filter: blur(2px); }
.hero .btn-ghost:hover { background: #fff; color: var(--teal-900); border-color: #fff; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; font-size: .92rem; }
.hero-badges li { display: flex; align-items: center; gap: .55rem; }
.hero-badges strong { font-size: 1.05rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-300); box-shadow: 0 0 0 4px rgba(111,195,201,.25); flex: none; }

.stars { color: #ffcf5c; letter-spacing: 2px; position: relative; font-size: 1rem; }
.stars .half {
  position: relative; display: inline-block; width: .5em; overflow: hidden; color: #ffcf5c;
  vertical-align: top;
}
.stars.big { font-size: 1.4rem; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px;
  display: grid; place-items: start center; padding-top: 7px;
}
.scroll-cue span { width: 4px; height: 8px; background: #fff; border-radius: 3px; animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(10px); } }

/* ============================================================
   FEATURES
   ============================================================ */
.features { position: relative; margin-top: -4.5rem; z-index: 5; }
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  background: var(--white); border-radius: var(--radius);
  padding: 2.4rem 2rem; box-shadow: var(--shadow);
}
.feature { text-align: left; padding: .4rem 1rem; border-left: 1px solid var(--sand-200); }
.feature:first-child { border-left: 0; }
.feature-ico {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: var(--aqua-100); color: var(--teal-700); margin-bottom: 1rem;
}
.feature h3 { font-size: 1.16rem; margin-bottom: .5rem; }
.feature p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 6.5rem 0 5rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.about-media { position: relative; }
.about-media > img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 460px; object-fit: cover; }
.about-media > img.about-media-2 {
  position: absolute; right: -22px; bottom: -34px; width: 46%; height: 220px; object-fit: cover;
  border-radius: var(--radius-sm); border: 6px solid var(--sand-50); box-shadow: var(--shadow);
}
.about-stat {
  position: absolute; left: -22px; top: 30px; background: var(--coral); color: #fff;
  border-radius: 14px; padding: .9rem 1.2rem; text-align: center; box-shadow: var(--shadow);
  display: flex; flex-direction: column; line-height: 1;
}
.about-stat strong { font-family: var(--font-head); font-size: 2rem; }
.about-stat span { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; margin-top: .35rem; opacity: .95; }

.about-text h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 1.2rem; color: var(--teal-900); }
.about-text p { color: var(--ink-soft); }
.about-list { margin: 1.6rem 0 2rem; display: grid; gap: .7rem; }
.about-list li { display: flex; align-items: center; gap: .7rem; font-weight: 500; }
.about-list span {
  display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%;
  background: var(--green-500); color: #fff; font-size: .8rem; flex: none;
}

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head { text-align: center; max-width: 620px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--teal-900); margin-bottom: .8rem; }
.section-sub { color: var(--ink-soft); margin: 0; }

/* ============================================================
   MENU
   ============================================================ */
.menu { padding: 5rem 0; background:
    linear-gradient(180deg, var(--sand-100), var(--sand-50));
  position: relative;
}
.menu::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0 30c150 0 150-20 300-20s150 20 300 20 150-20 300-20 150 20 300 20v-40H0z' fill='%23fbf6ec'/%3E%3C/svg%3E") no-repeat center / cover;
}
.menu-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-bottom: 2.6rem;
}
.menu-tab {
  padding: .65rem 1.4rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  color: var(--teal-800); background: var(--white); box-shadow: var(--shadow-sm);
  transition: background .25s, color .25s, transform .2s;
}
.menu-tab:hover { transform: translateY(-2px); }
.menu-tab.is-active { background: var(--teal-800); color: #fff; }

.menu-body { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start; }
.menu-panel { display: none; animation: fadeUp .5s var(--ease); }
.menu-panel.is-active { display: grid; gap: .4rem; }

.menu-item { padding: 1.1rem .2rem; border-bottom: 1px dashed var(--sand-200); }
.menu-item:last-child { border-bottom: 0; }
.mi-head { display: flex; align-items: baseline; gap: 1rem; }
.mi-head h4 { font-size: 1.18rem; color: var(--ink); font-weight: 600; }
.mi-head h4 em { font-style: normal; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--coral); font-family: var(--font-body); font-weight: 700; }
.mi-head .price {
  margin-left: auto; font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--teal-700);
  position: relative; padding-left: .6rem;
}
.menu-item p { margin: .35rem 0 0; font-size: .9rem; color: var(--muted); }
.menu-item.featured {
  background: var(--white); border-radius: var(--radius-sm); border-bottom: 0;
  padding: 1.1rem 1.2rem; box-shadow: var(--shadow-sm); position: relative;
}

.menu-figure { position: sticky; top: 100px; }
.menu-figure img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.menu-figure img.hidden { display: none; }
.menu-figure figcaption { text-align: center; font-size: .85rem; color: var(--muted); margin-top: .9rem; font-style: italic; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: 5rem 0 5.5rem; }
.gallery-grid {
  width: min(100% - 2.4rem, 1320px); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px;
  grid-auto-flow: dense;
}
.g-item {
  overflow: hidden; border-radius: 14px; position: relative; padding: 0;
  box-shadow: var(--shadow-sm);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.g-item::after {
  content: "⤢"; position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-size: 1.6rem; background: rgba(11,61,69,.35); opacity: 0; transition: opacity .3s;
}
.g-item:hover img { transform: scale(1.08); }
.g-item:hover::after { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { padding: 5rem 0; background: var(--teal-900); color: #fff; position: relative; overflow: hidden; }
.reviews::before, .reviews::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px); opacity: .35;
}
.reviews::before { width: 340px; height: 340px; background: var(--teal-700); top: -120px; left: -80px; }
.reviews::after { width: 300px; height: 300px; background: var(--green-700); bottom: -120px; right: -60px; }
.reviews .section-head { position: relative; }
.reviews .section-head h2 { color: #fff; }
.reviews .eyebrow { color: var(--teal-300); }

.rating-summary { display: inline-flex; align-items: center; gap: .8rem; margin-top: 1rem; flex-wrap: wrap; justify-content: center; }
.rating-num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; }
.rating-count { font-size: .85rem; opacity: .8; width: 100%; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; position: relative; margin-top: 1rem; }
.review {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 1.8rem; margin: 0; backdrop-filter: blur(4px);
}
.review .stars { font-size: 1rem; margin-bottom: .8rem; display: block; }
.review p { font-size: 1.02rem; line-height: 1.6; }
.review footer { color: var(--teal-300); font-weight: 600; font-size: .9rem; }
.reviews-cta { text-align: center; margin: 2.6rem 0 0; position: relative; }
.reviews .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.reviews .btn-ghost:hover { background: #fff; color: var(--teal-900); border-color: #fff; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 5.5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem; align-items: stretch; }
.contact-info { display: grid; gap: 1.8rem; align-content: start; }
.info-block h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .08em; color: var(--teal-700); margin-bottom: .5rem; font-family: var(--font-body); font-weight: 700; font-size: .82rem; }
.info-block p { color: var(--ink-soft); margin: 0; }
.info-block a { color: var(--teal-800); font-weight: 500; }
.info-block a:hover { color: var(--coral); }
.link-arrow { display: inline-block; margin-top: .5rem; font-weight: 600; color: var(--coral) !important; }

.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { padding: .5rem 0; text-align: left; font-weight: 500; border-bottom: 1px solid var(--sand-200); }
.hours th { color: var(--ink); font-weight: 500; }
.hours td { text-align: right; color: var(--ink-soft); }
.hours td.closed { color: var(--coral-dark); font-weight: 600; }
.hours tr.today th, .hours tr.today td { color: var(--teal-800); font-weight: 700; }
.hours tr.today { background: var(--aqua-100); }
.hours-note { font-size: .8rem; color: var(--muted); margin: .7rem 0 0; font-style: italic; }
.contact-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: .4rem; }

.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; min-height: 420px; background: var(--aqua-100); }
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.map-fallback {
  position: absolute; right: 12px; bottom: 12px; background: var(--white); color: var(--teal-800);
  padding: .5rem .9rem; border-radius: 8px; font-size: .82rem; font-weight: 600; box-shadow: var(--shadow-sm);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--teal-900); color: rgba(255,255,255,.85); padding: 3.5rem 0 1.6rem; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 2rem; align-items: start; padding-bottom: 2.4rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand { display: flex; gap: .9rem; align-items: center; color: var(--teal-300); }
.footer-brand strong { font-family: var(--font-head); font-size: 1.3rem; color: #fff; display: block; }
.footer-brand p { margin: .2rem 0 0; font-size: .88rem; color: rgba(255,255,255,.7); }
.footer-nav { display: flex; flex-direction: column; gap: .55rem; }
.footer-nav a { font-size: .92rem; opacity: .85; transition: opacity .2s, color .2s; }
.footer-nav a:hover { opacity: 1; color: var(--teal-300); }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; font-size: .92rem; }
.footer-contact a { color: #fff; font-weight: 600; }
.footer-contact span { opacity: .7; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding-top: 1.6rem; font-size: .82rem; opacity: .7; }
.footer-bottom p { margin: 0; }
.footer-credit { font-style: italic; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(8,40,45,.94);
  display: flex; align-items: center; justify-content: center; padding: 4vw;
  opacity: 0; visibility: hidden; transition: opacity .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox figure { margin: 0; max-width: 92vw; max-height: 88vh; text-align: center; }
.lightbox img { max-width: 92vw; max-height: 80vh; object-fit: contain; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox figcaption { color: #fff; margin-top: 1rem; font-size: .95rem; opacity: .9; }
.lb-close { position: absolute; top: 18px; right: 26px; color: #fff; font-size: 2.6rem; line-height: 1; opacity: .85; }
.lb-close:hover { opacity: 1; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 3rem; line-height: 1; padding: 1rem; opacity: .8; }
.lb-nav:hover { opacity: 1; }
.lb-prev { left: 1vw; } .lb-next { right: 1vw; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%; background: var(--teal-800); color: #fff;
  font-size: 1.3rem; box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transform: translateY(12px); transition: opacity .3s, transform .3s, background .25s;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--coral); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); row-gap: 1.8rem; }
  .feature:nth-child(3) { border-left: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-media { max-width: 520px; margin: 0 auto; }
  .menu-body { grid-template-columns: 1fr; }
  .menu-figure { position: static; order: -1; }
  .menu-figure img { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-auto-rows: 190px; }
}

@media (max-width: 720px) {
  /* nav mobile */
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    background: var(--sand-50); box-shadow: -20px 0 60px rgba(0,0,0,.2);
    transform: translateX(100%); transition: transform .4s var(--ease);
    display: flex; align-items: center; padding: 5rem 2rem 2rem; z-index: 110;
  }
  .nav-open .nav { transform: translateX(0); }
  .nav ul { flex-direction: column; gap: 1.4rem; width: 100%; }
  .nav a { color: var(--ink) !important; font-size: 1.2rem; opacity: 1; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  body.nav-open { overflow: hidden; }
  .nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(8,40,45,.5); z-index: 105; }

  .features { margin-top: -2.5rem; }
  .features-grid { grid-template-columns: 1fr; padding: 1.8rem; }
  .feature { border-left: 0 !important; border-top: 1px solid var(--sand-200); padding-top: 1.4rem; }
  .feature:first-child { border-top: 0; }

  .hero { padding-top: 6rem; }
  .about-media-2 { display: none; }
  .about-stat { left: 12px; top: 12px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .lb-nav { font-size: 2rem; padding: .5rem; }
}

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