:root {
  --ink: #0b2119;
  --ink-2: #163b2d;
  --forest: #103a2c;
  --forest-2: #0a2b20;
  --ivory: #f7f3e9;
  --paper: #fffdf7;
  --lime: #c8f244;
  --lime-2: #dcff70;
  --sage: #dce6d9;
  --sand: #e8dfcf;
  --blue: #3f7cff;
  --white: #fff;
  --muted: #52675e;
  --line: rgba(11, 33, 25, .13);
  --line-light: rgba(255, 255, 255, .16);
  --shadow: 0 24px 70px rgba(11, 33, 25, .12);
  --shadow-soft: 0 12px 34px rgba(11, 33, 25, .08);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --max: 1240px;
  --header: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
p, h1, h2, h3, h4, ul, ol { margin-top: 0; }
h1, h2, h3, h4 {
  color: var(--ink);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: .94;
}
h1 { font-size: clamp(3.7rem, 8vw, 7.8rem); }
h2 { font-size: clamp(2.7rem, 5.7vw, 5.35rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
:target { scroll-margin-top: 104px; }
.shell { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(76px, 10vw, 136px) 0; }
.section-tight { padding: clamp(56px, 7vw, 92px) 0; }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-180%);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background: var(--lime);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .09em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(7, 41, 30, .97);
  border-bottom: 1px solid var(--line-light);
  box-shadow: 0 8px 28px rgba(6, 24, 18, .1);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.52rem;
  font-weight: 800;
  letter-spacing: .025em;
  line-height: .86;
  text-transform: uppercase;
}
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand small {
  display: block;
  margin-top: 5px;
  color: var(--lime);
  font-family: "Manrope", sans-serif;
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .16em;
}
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.8vw, 38px); }
.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, .9);
  font-size: .88rem;
  font-weight: 800;
}
.nav-links a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink) !important;
}
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.menu-button span, .menu-button span::before, .menu-button span::after {
  width: 19px;
  height: 2px;
  display: block;
  background: white;
  border-radius: 4px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-button span { position: relative; }
.menu-button span::before, .menu-button span::after { position: absolute; content: ""; left: 0; }
.menu-button span::before { top: -6px; }
.menu-button span::after { top: 6px; }
.menu-button[aria-expanded="true"] span { background: transparent; }
.menu-button[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: #6d9214;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before { width: 42px; height: 3px; content: ""; background: var(--lime); }
.eyebrow.light { color: var(--lime); }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.24rem); }
.section-head { max-width: 820px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head h2 { margin-bottom: 22px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.hero { padding: clamp(38px, 5vw, 70px) 0 22px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.hero-copy { position: relative; z-index: 2; padding: 24px 0; }
.hero h1 { max-width: 690px; margin: 0 0 24px; }
.hero h1 em { color: var(--forest); font-style: normal; }
.hero-copy > p { max-width: 620px; margin-bottom: 30px; color: #385147; font-size: clamp(1.08rem, 1.8vw, 1.28rem); }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button::after { content: "→"; font-size: 1.35em; transition: transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:hover::after { transform: translateX(4px); }
.button-primary { background: var(--lime); color: var(--ink); box-shadow: 0 12px 30px rgba(149, 194, 25, .24); }
.button-primary:hover { background: var(--lime-2); }
.button-secondary { border-color: var(--line); background: transparent; color: var(--ink); }
.button-secondary:hover { background: var(--paper); }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: var(--forest); }
.button-light { background: white; color: var(--ink); }
.hero-note { margin-top: 15px; color: var(--muted); font-size: .79rem; font-weight: 700; }
.hero-media {
  position: relative;
  min-height: clamp(520px, 59vw, 690px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #c9d6bd;
  box-shadow: var(--shadow);
}
.hero-media img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: 50% 50%; }
.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(6, 25, 18, .4));
}
.hero-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  max-width: 245px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 16px;
  background: rgba(9, 39, 29, .88);
  color: white;
  font-size: .82rem;
  font-weight: 750;
  line-height: 1.45;
  backdrop-filter: blur(12px);
}
.hero-badge strong { display: block; margin-bottom: 3px; color: var(--lime); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fact { padding: 20px 16px; }
.fact + .fact { border-left: 1px solid var(--line); }
.fact strong { display: block; margin-bottom: 2px; font-size: .94rem; }
.fact span { color: var(--muted); font-size: .76rem; }

.trust-strip { padding: 20px 0 0; }
.trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 20px;
  background: var(--forest-2);
  color: white;
}
.trust-item { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center; padding: 25px 28px; }
.trust-item + .trust-item { border-left: 1px solid var(--line-light); }
.trust-icon { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--lime); border-radius: 50%; color: var(--lime); font-size: 1.25rem; font-weight: 900; }
.trust-item strong { display: block; margin-bottom: 3px; font-size: .91rem; }
.trust-item span { color: #bfd1c8; font-size: .72rem; }

.audience-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.audience-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease;
}
.audience-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.audience-card.featured { grid-column: span 8; min-height: 410px; }
.audience-card.dark { background: var(--ink); }
.audience-card.lime { background: var(--lime); }
.audience-card.photo { color: white; }
.audience-card.photo::before { position: absolute; inset: 0; z-index: 0; content: ""; background: linear-gradient(180deg, transparent 25%, rgba(7, 28, 20, .88)); }
.audience-card > img { width: 100%; height: 100%; position: absolute; inset: 0; z-index: 0; object-fit: cover; }
.audience-card > *:not(img) { position: relative; z-index: 1; }
.card-kicker { margin-bottom: 11px; color: #71931a; font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.dark .card-kicker, .photo .card-kicker { color: var(--lime); }
.audience-card h3 { margin-bottom: 12px; }
.dark h3, .photo h3 { color: white; }
.audience-card p { margin-bottom: 22px; color: var(--muted); font-size: .91rem; }
.dark p, .photo p { color: #c8d6cf; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 900; }
.text-link::after { content: "→"; font-size: 1.25em; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.dark-section { position: relative; overflow: hidden; background: var(--ink); color: white; }
.dark-section::before { width: 480px; height: 480px; position: absolute; top: -180px; right: -180px; content: ""; border: 1px solid rgba(200, 242, 68, .18); border-radius: 50%; box-shadow: 0 0 0 80px rgba(200, 242, 68, .03), 0 0 0 160px rgba(200, 242, 68, .02); }
.dark-section h2, .dark-section h3 { color: white; }
.dark-section .lead { color: #b7c9c0; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.price-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
}
.price-card.highlight { border-color: var(--lime); background: var(--lime); color: var(--ink); }
.price-card .tag { display: inline-flex; margin-bottom: 28px; padding: 7px 11px; border: 1px solid currentColor; border-radius: 999px; font-size: .66rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.price-card h3 { margin-bottom: 7px; font-size: clamp(2.2rem, 4vw, 3.8rem); }
.price-card.highlight h3 { color: var(--ink); }
.price-card > p { min-height: 54px; color: #bfd0c7; }
.price-card.highlight > p { color: #345043; }
.price-table { width: 100%; margin: 26px 0 30px; border-collapse: collapse; }
.price-table th, .price-table td { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.13); text-align: left; }
.highlight .price-table th, .highlight .price-table td { border-color: rgba(11,33,25,.18); }
.price-table th { font-size: .76rem; font-weight: 700; }
.price-table td { text-align: right; font-weight: 900; }
.price-card.highlight .button { background: var(--ink); color: white; }
.price-footnote { margin-top: 20px; color: #b8cbc1; font-size: .76rem; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step {
  position: relative;
  padding: 26px;
  border-top: 1px solid var(--line);
  counter-increment: step;
}
.step::before {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 50px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "0" counter(step);
  font-size: .7rem;
  font-weight: 900;
}
.step h3 { margin-bottom: 12px; font-size: 1.9rem; }
.step p { color: var(--muted); font-size: .86rem; }

.media-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(40px, 7vw, 100px); }
.media-frame { min-height: 620px; position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.media-caption { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 18px; border-radius: 14px; background: rgba(9, 34, 26, .9); color: white; font-size: .8rem; backdrop-filter: blur(10px); }
.check-list { display: grid; gap: 14px; margin: 30px 0 34px; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 27px 1fr; gap: 12px; align-items: start; }
.check-list li::before { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); content: "✓"; font-size: .72rem; font-weight: 900; }
.mini-note { padding: 18px; border-left: 3px solid var(--lime); background: var(--paper); color: var(--muted); font-size: .85rem; }

.city-section { background: var(--sage); }
.city-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.city-toolbar .section-head { margin-bottom: 0; }
.city-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.city-tabs a { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.42); font-size: .72rem; font-weight: 850; }
.city-tabs a:hover { background: var(--lime); }
.city-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.city-grid a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px 15px; border: 1px solid rgba(11,33,25,.1); border-radius: 10px; background: rgba(255,255,255,.58); font-size: .77rem; font-weight: 800; }
.city-grid a::after { content: "↗"; color: #709216; }
.city-grid a:hover { background: white; transform: translateY(-1px); }

.faq-list { max-width: 900px; margin-inline: auto; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 25px 0; cursor: pointer; font-weight: 900; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { width: 32px; height: 32px; display: grid; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); border-radius: 50%; content: "+"; font-size: 1.15rem; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; padding: 0 48px 25px 0; color: var(--muted); }

.cta-section { padding: 40px 0; background: var(--lime); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-inner h2 { max-width: 800px; margin: 0; font-size: clamp(2.5rem, 5vw, 5rem); }

.page-hero { padding: clamp(60px, 9vw, 118px) 0 46px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: var(--muted); font-size: .72rem; font-weight: 800; }
.breadcrumbs a:hover { text-decoration: underline; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); align-items: center; gap: clamp(36px, 7vw, 86px); }
.page-hero h1 { max-width: 810px; margin-bottom: 24px; }
.page-hero h1.smaller { font-size: clamp(3.4rem, 7vw, 6.7rem); }
.page-hero .lead { margin-bottom: 30px; }
.page-visual { min-height: 520px; position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.page-visual img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.page-visual::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 55%, rgba(8,31,23,.45)); }
.local-bar { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 30px; }
.local-bar span { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.45); font-size: .7rem; font-weight: 850; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(36px, 7vw, 90px); align-items: start; }
.prose { font-size: 1.02rem; }
.prose h2 { margin: 70px 0 22px; font-size: clamp(2.5rem, 5vw, 4.6rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 40px 0 14px; }
.prose p, .prose li { color: #3e574d; }
.prose ul { padding-left: 22px; }
.sidebar { position: sticky; top: 108px; padding: 26px; border-radius: var(--radius); background: var(--ink); color: white; box-shadow: var(--shadow-soft); }
.sidebar h3 { color: white; margin-bottom: 12px; }
.sidebar p { color: #bdd0c6; font-size: .86rem; }
.sidebar .button { width: 100%; margin-top: 14px; }
.quick-facts { display: grid; margin: 22px 0; border-top: 1px solid var(--line-light); }
.quick-facts div { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line-light); font-size: .76rem; }
.quick-facts span { color: #a9bfb4; }
.quick-facts strong { text-align: right; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.related-card h3 { margin-bottom: 12px; font-size: 1.8rem; }
.related-card p { min-height: 78px; color: var(--muted); font-size: .82rem; }

.legal { max-width: 900px; }
.legal h1 { font-size: clamp(3.4rem, 7vw, 6rem); }
.legal h2 { margin: 56px 0 18px; font-size: clamp(2.1rem, 4vw, 3.5rem); }
.legal h3 { margin: 32px 0 10px; font-size: 1.8rem; }
.legal p, .legal li { color: #3c554b; }
.legal-card { margin: 30px 0; padding: 24px; border-radius: 16px; background: var(--paper); border: 1px solid var(--line); }
.doc-links { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.doc-links a { padding: 10px 14px; border-radius: 999px; background: var(--sage); font-size: .76rem; font-weight: 850; }

.site-footer { padding: 70px 0 26px; background: #071a13; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 38px; }
.footer-brand p { max-width: 340px; color: #a8bdb3; font-size: .83rem; }
.site-footer h3 { margin-bottom: 18px; color: white; font-size: 1.45rem; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #b8c9c1; font-size: .78rem; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #7f9a8d; font-size: .7rem; }
.footer-bottom a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.footer-bottom a:hover { color: var(--lime); }
.socials { display: flex; gap: 10px; }
.socials a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; font-size: .7rem; font-weight: 900; }
.mobile-book { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .nav-links { gap: 18px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .menu-button { display: grid; }
  .nav-links.open {
    position: fixed;
    top: calc(38px + var(--header));
    right: 0;
    left: 0;
    min-height: calc(100vh - 38px - var(--header));
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 26px 20px 100px;
    background: var(--forest-2);
    overflow: auto;
  }
  .nav-links.open a:not(.nav-cta) { display: block; padding: 17px 2px; border-bottom: 1px solid var(--line-light); color: white; font-size: 1rem; }
  .nav-links.open .nav-cta { margin-top: 20px; justify-content: center; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero h1 { font-size: clamp(4.4rem, 12vw, 7.3rem); }
  .hero-media { min-height: 610px; }
  .audience-card { grid-column: span 6; }
  .audience-card.featured { grid-column: span 12; }
  .city-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-visual { min-height: 610px; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  :root { --header: 68px; }
  .shell { width: min(100% - 28px, var(--max)); }
  .announcement { min-height: 34px; padding-block: 7px; font-size: .63rem; }
  .brand img { width: 48px; height: 48px; }
  .brand { font-size: 1.3rem; }
  .brand small { display: none; }
  .nav-cta { display: none; }
  .nav-links.open { top: calc(34px + var(--header)); min-height: calc(100vh - 34px - var(--header)); }
  .hero { padding-top: 42px; }
  .hero h1 { font-size: clamp(3.7rem, 20vw, 5.4rem); }
  .hero-media { min-height: 480px; border-radius: 22px; }
  .hero-badge { right: 14px; bottom: 14px; left: 14px; max-width: none; }
  .actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .fact-row { grid-template-columns: 1fr; }
  .fact + .fact { border-top: 1px solid var(--line); border-left: 0; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-top: 1px solid var(--line-light); border-left: 0; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card, .audience-card.featured { grid-column: span 1; min-height: 330px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step::before { margin-bottom: 24px; }
  .media-split { grid-template-columns: 1fr; }
  .media-frame { min-height: 520px; }
  .city-toolbar { align-items: start; flex-direction: column; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { align-items: stretch; flex-direction: column; }
  .page-hero { padding-top: 48px; }
  .page-hero h1, .page-hero h1.smaller { font-size: clamp(3.5rem, 18vw, 5.2rem); }
  .page-visual { min-height: 500px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card p { min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-book {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 80;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 12px;
    background: var(--lime);
    box-shadow: 0 16px 36px rgba(7,26,19,.28);
    font-weight: 900;
  }
  .mobile-book::after { content: "→"; }
  .site-footer { padding-bottom: 104px; }
}

@media (max-width: 460px) {
  .city-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

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