:root {
  --night: #15110e;
  --night-2: #1f1915;
  --paper: #f6f1e9;
  --paper-2: #ede5d8;
  --line: #ddd2c2;
  --ink: #221c17;
  --ink-soft: #5b5047;
  --muted: #a3968a;
  --sand: #e9dccb;
  --terracotta: #c0643a;
  --terracotta-dark: #9c4b27;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --wrap: 1240px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--terracotta); }
::selection { background: var(--terracotta); color: #fff; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font: 600 11px/1 var(--sans); letter-spacing: .24em; text-transform: uppercase;
  color: var(--terracotta); margin: 0 0 26px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.02; margin: 0 0 24px; letter-spacing: -.015em; }
h2 { font-size: clamp(40px, 5.6vw, 76px); }
h2 em, h1 em { font-style: italic; color: var(--terracotta); }
h3 { font-size: 30px; line-height: 1.1; }
.lead { font-size: 19px; color: var(--ink-soft); max-width: 58ch; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 100px;
  font: 500 14px/1 var(--sans); letter-spacing: .02em;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--terracotta); color: #fff; }
.btn-primary:hover { background: var(--terracotta-dark); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--sand); }
.btn-line, .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.btn-line:hover, .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.link-arrow { display: inline-flex; gap: 10px; color: inherit; text-decoration: none; font-weight: 500; border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.link-arrow span { transition: transform .3s var(--ease); }
.link-arrow:hover span { transform: translateX(6px); }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; padding: 0 clamp(20px, 4vw, 48px); max-width: 1600px; margin: 0 auto; transition: height .4s var(--ease); }
.site-header.solid, .site-header.always-solid {
  background: rgba(21,17,14,.82);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
}
.site-header.solid .nav { height: 70px; }
.site-header.hide { transform: translateY(-100%); }
.logo { font: 500 25px/1 var(--serif); color: #fff; text-decoration: none; letter-spacing: .01em; position: relative; z-index: 2; }
.logo small { display: block; font: 500 9px/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; margin-top: 6px; opacity: .65; }
.menu { display: flex; align-items: center; gap: 36px; list-style: none; margin: 0; padding: 0; }
.menu a { color: rgba(255,255,255,.85); text-decoration: none; font: 500 14px/1 var(--sans); position: relative; }
.menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: currentColor; transition: right .35s var(--ease); }
.menu a:hover { color: #fff; }
.menu a:hover::after { right: 0; }
.menu .menu-cta a { color: var(--ink); background: #fff; padding: 12px 22px; border-radius: 100px; }
.menu .menu-cta a::after { display: none; }
.menu .menu-cta a:hover { background: var(--sand); }
.menu-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; position: relative; z-index: 2; }
.menu-toggle span { position: absolute; left: 10px; right: 10px; height: 1.5px; background: #fff; transition: transform .35s var(--ease), top .35s var(--ease); }
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 26px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

/* HERO */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh; padding: 0;
  color: #fff; overflow: hidden; background: var(--night);
  display: flex; align-items: flex-end;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%;
  animation: heroZoom 22s var(--ease) both;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(21,17,14,.55) 0%, rgba(21,17,14,0) 22%),
    linear-gradient(0deg, rgba(21,17,14,.96) 0%, rgba(21,17,14,.72) 26%, rgba(21,17,14,.15) 58%, rgba(21,17,14,0) 72%),
    linear-gradient(90deg, rgba(21,17,14,.55) 0%, rgba(21,17,14,0) 55%);
}
@keyframes heroZoom { from { transform: scale(1.14); } to { transform: scale(1); } }
.hero-content { position: relative; z-index: 2; width: 100%; padding: 0 clamp(20px, 4vw, 48px) clamp(40px, 7vh, 80px); max-width: 1600px; margin: 0 auto; }
.hero-kicker {
  display: flex; align-items: center; gap: 14px; margin: 0 0 18px;
  font: 600 11px/1 var(--sans); letter-spacing: .28em; text-transform: uppercase; color: #efc9ae;
  opacity: 0; animation: fadeUp 1s .3s var(--ease) forwards;
}
.hero-kicker .line { width: 48px; height: 1px; background: currentColor; }
.hero-title {
  font-size: clamp(64px, 13.5vw, 230px); line-height: .82; letter-spacing: -.035em;
  margin: 0 0 clamp(26px, 4vh, 44px); font-weight: 400;
  text-shadow: 0 2px 40px rgba(0,0,0,.25);
}
.hero-title span { display: block; padding-bottom: .06em; }
.hero-title .ht-2 { padding-left: clamp(0px, 9vw, 180px); }
.hero-title em { color: #fff; font-style: italic; }
.hero-title .ht-1 { opacity: 0; animation: fadeUp 1.2s .45s var(--ease) forwards; }
.hero-title .ht-2 { opacity: 0; animation: fadeUp 1.2s .65s var(--ease) forwards; }
.hero-bottom {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s .95s var(--ease) forwards;
}
.hero-sub { font-size: clamp(17px, 1.5vw, 20px); max-width: 40ch; margin: 0; color: rgba(255,255,255,.86); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta {
  position: absolute; z-index: 2; right: clamp(20px, 4vw, 48px); top: 50%;
  writing-mode: vertical-rl; transform: translateY(-50%) rotate(180deg);
  display: flex; gap: 28px; font: 500 10px/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.6);
}
.scroll-cue { position: absolute; z-index: 2; left: 50%; bottom: 20px; width: 1px; height: 46px; background: rgba(255,255,255,.2); overflow: hidden; }
.scroll-cue span { position: absolute; left: 0; top: -50%; width: 1px; height: 50%; background: #fff; animation: cue 2.2s infinite; }
@keyframes cue { to { top: 100%; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }

/* Sections */
section { padding: clamp(90px, 12vw, 160px) 0; position: relative; }
.dark { background: var(--night); color: var(--paper); }
.dark .lead, .dark p { color: #c9bcad; }
.dark h2, .dark h3 { color: #fff; }
.section-head { max-width: 780px; margin-bottom: clamp(50px, 6vw, 80px); }

/* Manifesto */
.manifesto { background: var(--night); color: #fff; }
.manifesto-text {
  font: 400 clamp(32px, 4.6vw, 66px)/1.14 var(--serif); letter-spacing: -.015em;
  margin: 0; max-width: 1100px;
}
.manifesto-text .w { color: rgba(255,255,255,.16); transition: color .5s var(--ease); }
.manifesto-text .w.on { color: #fff; }

/* La masseria */
.masseria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.masseria-media { position: relative; padding: 0 12% 18% 0; }
.m-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.m-float {
  position: absolute; right: 0; bottom: 0; width: 58%; aspect-ratio: 4/3; object-fit: cover;
  border: 10px solid var(--paper); box-shadow: 0 30px 60px -20px rgba(0,0,0,.35);
}
.m-caption {
  position: absolute; left: -26px; top: 0; writing-mode: vertical-rl; transform: rotate(180deg);
  font: 500 10px/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 48px 0 0; padding-top: 32px; border-top: 1px solid var(--line); }
.stats dt { font: 400 44px/1 var(--serif); color: var(--terracotta); margin-bottom: 10px; }
.stats dd { margin: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.45; }

/* Esplora */
.explore { display: grid; grid-template-columns: 1.7fr 1fr; gap: 28px; align-items: stretch; }
.explore-map { position: relative; border-radius: 4px; overflow: hidden; align-self: start; }
.explore-map img { width: 100%; }
.hotspot {
  position: absolute; transform: translate(-50%, -50%);
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid #fff;
  background: rgba(192,100,58,.92); color: #fff; cursor: pointer; padding: 0;
  font: 600 14px/1 var(--sans);
  box-shadow: 0 6px 20px rgba(0,0,0,.4);
  transition: transform .3s var(--ease), background .3s, color .3s;
}
.hotspot::after { content: ""; position: absolute; inset: -9px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.75); animation: pulse 2.4s infinite; }
.hotspot:hover, .hotspot.active { background: #fff; color: var(--ink); transform: translate(-50%, -50%) scale(1.15); }
.hotspot.active::after { animation: none; opacity: 0; }
@keyframes pulse { 0% { transform: scale(.75); opacity: 1; } 100% { transform: scale(1.55); opacity: 0; } }
.explore-panel { background: var(--night-2); padding: 38px; border: 1px solid rgba(255,255,255,.08); border-radius: 4px; }
.explore-panel img { margin: 4px 0 20px; aspect-ratio: 16/10; object-fit: cover; width: 100%; border-radius: 2px; }
.explore-panel p { font-size: 16px; }
.explore-panel .eyebrow { color: #e8a37f; }
.explore-panel a { color: #e8a37f; }
.spot[hidden] { display: none; }
.spot { animation: fadeUp .5s var(--ease); }

/* Storia */
.storia { background: var(--paper-2); }
.storia-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 26px 30px; margin-bottom: clamp(50px, 6vw, 90px); }
.storia-head .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.storia-head h2 { margin: 0; }
.timeline { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.timeline li { padding: 34px 28px 10px 0; border-right: 1px solid var(--line); margin-right: 28px; }
.timeline li:last-child { border-right: 0; margin-right: 0; }
.timeline .year { display: block; font: 400 clamp(52px, 5.5vw, 84px)/.9 var(--serif); color: var(--ink); margin-bottom: 22px; letter-spacing: -.03em; }
.timeline li:last-child .year { color: var(--terracotta); font-style: italic; }
.timeline p { margin: 0; font-size: 15px; color: var(--ink-soft); line-height: 1.6; }

/* Recupero */
.recupero { min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; background: var(--night); }
.recupero-bg { position: absolute; inset: 0; overflow: hidden; }
.recupero-bg img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.recupero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(21,17,14,.94) 0%, rgba(21,17,14,.7) 40%, rgba(21,17,14,.1) 78%); }
.recupero-inner { position: relative; z-index: 1; width: 100%; }
.recupero-card { max-width: 540px; }
.recupero-card p { color: rgba(255,255,255,.82); }
.recupero-card h2 { color: #fff; }
.recupero-card h2 em, .recupero-card .eyebrow { color: #e8a37f; }
.pnrr { width: 260px; margin-top: 30px; border-radius: 3px; opacity: .92; }

/* Vivere */
.uses { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); align-items: start; }
.use { color: inherit; text-decoration: none; display: block; }
.use:nth-child(2) { margin-top: 70px; }
.use:nth-child(3) { margin-top: 140px; }
.use-img { overflow: hidden; border-radius: 3px; margin-bottom: 24px; }
.use-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 1.2s var(--ease); }
.use:hover .use-img img { transform: scale(1.06); }
.use-num { font: 500 12px/1 var(--sans); letter-spacing: .2em; color: var(--terracotta); display: block; margin-bottom: 12px; }
.use h3 { margin-bottom: 12px; }
.use p { margin: 0; color: var(--ink-soft); font-size: 16px; }

/* Galleria */
.galleria-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 50px; }
.galleria-head h2 { margin: 0; }
.strip-nav { display: flex; gap: 10px; }
.strip-btn { width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: transparent; color: #fff; font-size: 18px; cursor: pointer; transition: background .3s, color .3s; }
.strip-btn:hover { background: #fff; color: var(--ink); }
.strip {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  padding: 0 clamp(20px, 4vw, 48px); scroll-padding: 0 clamp(20px, 4vw, 48px);
  cursor: grab; outline: none;
}
.strip::-webkit-scrollbar { display: none; }
.strip.dragging { cursor: grabbing; scroll-snap-type: none; }
.strip figure { margin: 0; flex: none; height: clamp(320px, 60vh, 560px); scroll-snap-align: start; position: relative; overflow: hidden; border-radius: 3px; }
.strip figure.tall { aspect-ratio: 3/4; }
.strip figure.wide { aspect-ratio: 16/10; }
.strip img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; transition: transform 1.2s var(--ease); }
.strip figure:hover img { transform: scale(1.04); }
.strip figcaption { position: absolute; left: 18px; bottom: 16px; font: 500 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.6); }

/* Parliamo */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(50px, 7vw, 100px); }
.contact-list { list-style: none; padding: 0; margin: 40px 0 0; }
.contact-list li { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-list small { display: block; font: 600 10px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.contact-list a { color: var(--ink); text-decoration: none; font: 400 24px/1.25 var(--serif); }
.contact-list a:hover { color: var(--terracotta); }

form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; background: #fff; padding: clamp(24px, 3.5vw, 48px); border-radius: 4px; box-shadow: 0 40px 80px -40px rgba(34,28,23,.25); align-self: start; }
form .full { grid-column: 1 / -1; }
label { display: block; font: 600 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }
input, select, textarea {
  width: 100%; font: 16px var(--sans); color: var(--ink);
  padding: 12px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent;
  transition: border-color .3s;
}
input:focus, select:focus, textarea:focus { outline: none; border-bottom-color: var(--terracotta); }
textarea { min-height: 110px; resize: vertical; }
fieldset.chips { border: 0; padding: 0; margin: 0 0 8px; display: flex; flex-wrap: wrap; gap: 10px; }
fieldset.chips legend { font: 600 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 16px; padding: 0; }
.chips label { margin: 0; text-transform: none; letter-spacing: 0; font: 500 14px/1 var(--sans); color: var(--ink); cursor: pointer; }
.chips input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chips span { display: inline-block; padding: 11px 16px; border: 1px solid var(--line); border-radius: 100px; transition: all .2s; }
.chips label:hover span { border-color: var(--ink); }
.chips input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.chips input:focus-visible + span { outline: 2px solid var(--terracotta); outline-offset: 2px; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.form-note { font-size: 13px; color: var(--muted); margin: 0; }

/* WhatsApp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.3); transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }

/* Footer */
.site-footer { background: var(--night); color: var(--muted); padding: clamp(70px, 9vw, 120px) 0 36px; font-size: 15px; overflow: hidden; }
.footer-big { font: 400 clamp(56px, 12vw, 200px)/.85 var(--serif); color: #fff; letter-spacing: -.035em; margin: 0 0 60px; }
.footer-big em { color: var(--terracotta); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.site-footer a { color: #d9ccbb; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer h4 { font: 600 10px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: #fff; margin: 0 0 20px; }
.footer-bottom { margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* Inner pages (storia, privacy, 404) */
.page-hero {
  padding: 220px 0 110px; color: #fff; position: relative; overflow: hidden;
  background: var(--night) url("img/torre.jpg") center 30%/cover no-repeat;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(21,17,14,.95) 0%, rgba(21,17,14,.45) 60%, rgba(21,17,14,.6) 100%); }
.page-hero .wrap { position: relative; }
.page-hero h1 { font-size: clamp(50px, 8vw, 120px); line-height: .9; letter-spacing: -.03em; }
.page-hero .eyebrow { color: #efc9ae; }
.article { max-width: 760px; margin: 0 auto; padding: 100px 24px 120px; }
.article h2 { font-size: clamp(36px, 4vw, 48px); margin-top: 70px; }
.article p { color: #3f3731; }
.article .lead { font: 400 26px/1.45 var(--serif); color: var(--ink); }
.article figure { margin: 56px 0; }
.article figure img { border-radius: 3px; }
.article figcaption { font-size: 14px; color: var(--muted); margin-top: 12px; }
.article blockquote { margin: 44px 0; padding: 0 0 0 28px; border-left: 2px solid var(--terracotta); font: italic 400 34px/1.3 var(--serif); color: var(--ink); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0s !important; transition-duration: .01ms !important; }
  .reveal, .hero-kicker, .hero-title span, .hero-bottom { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* Responsive */
@media (max-width: 1100px) {
  .menu { gap: 24px; }
}
@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .menu {
    position: fixed; inset: 0;
    flex-direction: column; justify-content: center; align-items: flex-start; gap: 6px;
    background: var(--night); padding: 100px 28px 40px;
    opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
  }
  .menu.open { opacity: 1; visibility: visible; }
  .menu a { font: 400 42px/1.2 var(--serif); color: #fff; }
  .menu a::after { display: none; }
  .menu .menu-cta { margin-top: 24px; }
  .menu .menu-cta a { font: 500 16px/1 var(--sans); padding: 16px 26px; }

  .hero-meta { display: none; }
  .hero-title .ht-2 { padding-left: 12vw; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 26px; }
  .hero-bg img { object-position: 38% 30%; }

  .masseria-grid, .contact-grid { grid-template-columns: 1fr; }
  .masseria-media { max-width: 520px; margin-left: 26px; }
  .explore { grid-template-columns: 1fr; }
  .storia-head { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline li:nth-child(2) { border-right: 0; margin-right: 0; }
  .recupero { min-height: 0; padding-top: 0; flex-direction: column; }
  .recupero-bg { position: relative; height: 60vh; width: 100%; }
  .recupero-bg img { height: 100%; }
  .recupero-bg::after { background: linear-gradient(0deg, var(--night) 0%, rgba(21,17,14,0) 55%); }
  .recupero-inner { margin-top: -90px; }
  .uses { grid-template-columns: 1fr; gap: 56px; }
  .use:nth-child(2), .use:nth-child(3) { margin-top: 0; }
  .use-img img { aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: 1fr; }
  .strip-nav { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero-title { font-size: 21vw; }
  .stats { gap: 14px; }
  .stats dt { font-size: 32px; }
  .stats dd { font-size: 12px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline li { border-right: 0; margin-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 28px; }
  form { grid-template-columns: 1fr; }
  .strip figure { height: 58vh; }
  .strip figure.wide { aspect-ratio: 4/5; }
  .hotspot { width: 30px; height: 30px; font-size: 12px; }
  .explore-panel { padding: 26px; }
  .contact-list a { font-size: 21px; }
}
.site-header.menu-open { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; transform: none; }
@media (max-width: 560px) {
  .hero-kicker { letter-spacing: .18em; font-size: 10px; gap: 10px; }
  .hero-kicker .line { width: 28px; }
}
.scroll-cue { transition: opacity .4s var(--ease); }
body.scrolled .scroll-cue { opacity: 0; pointer-events: none; }
@media (max-width: 960px) { .scroll-cue { display: none; } }
