:root {
  --green-950: #0d251d;
  --green-900: #15382c;
  --green-800: #1d4a3a;
  --green-700: #2c624d;
  --sage: #aab9a3;
  --cream: #f4f1e9;
  --cream-2: #ebe6da;
  --paper: #fbfaf6;
  --ink: #17211c;
  --muted: #667068;
  --line: rgba(23, 33, 28, .14);
  --white: #fff;
  --shadow: 0 24px 70px rgba(19, 45, 35, .13);
  --radius: 4px;
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #d5a85a; outline-offset: 4px; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: clamp(84px, 10vw, 148px) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; transform: translateY(-160%); padding: 10px 14px; background: #fff; color: #111; border-radius: 2px; }
.skip-link:focus { transform: translateY(0); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.03;
}
h1 { max-width: 820px; font-size: clamp(3rem, 6.8vw, 6.6rem); }
h2 { margin-bottom: 0; font-size: clamp(2.4rem, 4.6vw, 4.7rem); }
h3 { margin-bottom: 8px; font-size: 1.75rem; line-height: 1.2; }
.eyebrow { margin-bottom: 18px; color: var(--green-700); font-size: .73rem; font-weight: 750; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow.light { color: #d3dfd3; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .86rem;
  font-weight: 720;
  letter-spacing: .03em;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg, .location-copy .button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.button-primary { background: var(--cream); color: var(--green-950); }
.button-primary:hover { background: #fff; }
.button-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.button-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.button-dark { background: var(--green-900); color: #fff; }
.button-dark:hover { background: var(--green-700); }
.button-outline { border-color: var(--green-900); color: var(--green-900); }
.button-outline:hover { background: var(--green-900); color: #fff; }
.button-light { background: var(--cream); color: var(--green-950); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  transition: background .3s ease, box-shadow .3s ease, color .3s ease;
}
.site-header.scrolled { background: rgba(251, 250, 246, .96); color: var(--ink); box-shadow: 0 8px 30px rgba(13,37,29,.08); backdrop-filter: blur(14px); }
.nav-shell { display: flex; min-height: 82px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 1.02rem; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }
.brand strong { font-weight: 800; }
.brand-mark { width: 37px; height: 37px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { position: relative; font-size: .82rem; font-weight: 650; letter-spacing: .04em; text-decoration: none; }
.main-nav > a:not(.nav-phone)::after { position: absolute; bottom: -8px; left: 0; width: 0; height: 1px; content: ""; background: currentColor; transition: width .2s ease; }
.main-nav > a:hover::after { width: 100%; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; padding: 10px 15px; border: 1px solid currentColor; border-radius: 3px; }
.nav-phone svg { width: 16px; height: 16px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.menu-toggle { display: none; width: 45px; height: 45px; padding: 10px; border: 0; background: transparent; color: currentColor; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: 6px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; display: grid; min-height: max(720px, 100svh); align-items: end; overflow: hidden; background: var(--green-950); color: #fff; }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: 55% center; animation: hero-in 1.4s ease both; }
.hero-shade { background: linear-gradient(90deg, rgba(8,26,19,.88) 0%, rgba(8,26,19,.52) 51%, rgba(8,26,19,.08) 100%), linear-gradient(0deg, rgba(8,26,19,.72), transparent 45%); }
.hero-content { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; padding-top: 150px; padding-bottom: 72px; }
.hero-copy { max-width: 890px; }
.hero-copy h1 { margin-bottom: 26px; }
.hero-lead { max-width: 680px; margin-bottom: 34px; color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.4vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.availability { display: flex; flex: 0 0 auto; align-items: center; gap: 12px; margin-bottom: 12px; padding: 13px 17px; border: 1px solid rgba(255,255,255,.32); border-radius: 3px; background: rgba(9,30,22,.45); font-size: .85rem; backdrop-filter: blur(8px); }
.pulse { position: relative; width: 8px; height: 8px; border-radius: 50%; background: #b6d49f; }
.pulse::after { position: absolute; inset: -5px; content: ""; border: 1px solid #b6d49f; border-radius: 50%; animation: pulse 1.8s infinite; }

.facts { position: relative; z-index: 3; background: var(--green-950); color: #fff; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.facts-grid > div { display: flex; min-height: 126px; flex-direction: column; justify-content: center; padding: 24px 32px; border-right: 1px solid rgba(255,255,255,.14); }
.facts-grid > div:first-child { border-left: 1px solid rgba(255,255,255,.14); }
.facts strong { font-family: Georgia, serif; font-size: clamp(1.5rem, 2.3vw, 2.25rem); font-weight: 400; }
.facts span { margin-top: 1px; color: rgba(255,255,255,.58); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 9vw; align-items: start; }
.intro-copy { max-width: 570px; padding-top: 10px; color: var(--muted); font-size: 1.06rem; }
.intro-copy p { margin-bottom: 22px; }
.text-link { display: inline-flex; align-items: center; gap: 18px; margin-top: 10px; color: var(--green-800); font-size: .82rem; font-weight: 750; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(6px); }

.offer-section { background: var(--cream); }
.section-top { display: grid; grid-template-columns: 1fr minmax(300px, 470px); gap: 60px; align-items: end; margin-bottom: 58px; }
.section-top > p { margin-bottom: 5px; color: var(--muted); }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.offer-card { overflow: hidden; border: 1px solid rgba(20,55,43,.14); background: var(--paper); box-shadow: 0 18px 45px rgba(28,54,43,.05); }
.offer-card.featured { transform: translateY(-13px); border-top: 4px solid var(--green-800); box-shadow: var(--shadow); }
.offer-image-wrap { position: relative; height: 280px; overflow: hidden; background: #d8d8d0; }
.offer-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.offer-card:hover .offer-image-wrap img { transform: scale(1.035); }
.offer-card:nth-child(3) .offer-image-wrap img { object-position: center 62%; }
.image-label, .stock-label { position: absolute; top: 16px; padding: 7px 10px; border-radius: 2px; font-size: .65rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.image-label { left: 16px; background: rgba(251,250,246,.92); color: var(--ink); }
.stock-label { right: 16px; background: var(--green-900); color: #fff; }
.offer-body { padding: 31px 30px 34px; }
.offer-kicker { margin-bottom: 7px; color: var(--green-700); font-size: .68rem; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.offer-price { margin-bottom: 22px; color: var(--green-900); font-family: Georgia, serif; font-size: 1.85rem; }
.check-list { display: grid; gap: 9px; min-height: 136px; margin: 0 0 28px; padding: 0; color: var(--muted); font-size: .88rem; list-style: none; }
.check-list li { position: relative; padding-left: 22px; }
.check-list li::before { position: absolute; top: .58em; left: 0; width: 8px; height: 5px; content: ""; border-bottom: 1.5px solid var(--green-700); border-left: 1.5px solid var(--green-700); transform: rotate(-45deg); }
.offer-body .button { width: 100%; }
.price-note { max-width: 930px; margin: 32px auto 0; color: #747b75; font-size: .75rem; text-align: center; }

.standard-section { background: var(--paper); }
.standard-grid { display: grid; grid-template-columns: minmax(340px, .82fr) 1.18fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.standard-media { position: relative; max-width: 560px; }
.standard-media::before { position: absolute; z-index: -1; top: -26px; right: -26px; width: 72%; height: 70%; content: ""; background: var(--cream-2); }
.standard-media img { width: 100%; max-height: 720px; object-fit: cover; }
.media-caption { display: flex; align-items: center; gap: 15px; margin-top: 16px; color: var(--muted); font-size: .75rem; letter-spacing: .04em; }
.media-caption span { color: var(--green-700); font-family: Georgia, serif; font-size: 1.3rem; }
.standard-copy { max-width: 620px; }
.standard-copy > p:not(.eyebrow) { max-width: 570px; margin: 29px 0 38px; color: var(--muted); font-size: 1.03rem; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.feature-list > div { display: flex; gap: 15px; padding: 22px 14px 22px 0; border-bottom: 1px solid var(--line); }
.feature-list > div:nth-child(odd) { margin-right: 22px; border-right: 1px solid var(--line); }
.feature-list svg { width: 27px; flex: 0 0 auto; fill: none; stroke: var(--green-700); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.feature-list span { display: flex; flex-direction: column; color: var(--muted); font-size: .78rem; }
.feature-list strong { color: var(--ink); font-size: .88rem; }

.vision-section { overflow: hidden; background: var(--green-950); color: #fff; }
.vision-section .section-top > p { color: rgba(255,255,255,.65); }
.compare { position: relative; width: 100%; aspect-ratio: 16/8.2; overflow: hidden; background: #222; box-shadow: 0 32px 80px rgba(0,0,0,.22); }
.compare img { width: 100%; height: 100%; object-fit: cover; }
.compare-base { position: absolute; inset: 0; }
.compare-overlay { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 calc(100% - var(--position)) 0 0); }
.compare-overlay img { position: absolute; inset: 0; width: 100%; max-width: none; }
.compare input { position: absolute; z-index: 4; inset: 0; width: 100%; height: 100%; margin: 0; cursor: ew-resize; opacity: 0; }
.compare-line { position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--position); width: 2px; background: #fff; transform: translateX(-1px); pointer-events: none; }
.compare-line span { position: absolute; top: 50%; left: 50%; display: grid; width: 48px; height: 48px; place-items: center; border: 2px solid #fff; border-radius: 50%; background: var(--green-900); color: #fff; transform: translate(-50%,-50%); }
.compare-tag { position: absolute; z-index: 2; bottom: 18px; padding: 7px 10px; border-radius: 2px; background: rgba(11,28,21,.76); color: #fff; font-size: .63rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(5px); }
.compare-tag.before { right: 18px; }
.compare-tag.after { left: 18px; }

.gallery-section { background: var(--paper); }
.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.filter-bar button { padding: 8px 13px; border: 1px solid var(--line); border-radius: 2px; background: transparent; color: var(--muted); font-size: .72rem; cursor: pointer; }
.filter-bar button.active, .filter-bar button:hover { border-color: var(--green-800); background: var(--green-800); color: #fff; }
.gallery-grid { display: grid; grid-auto-flow: dense; grid-auto-rows: clamp(245px, 22vw, 320px); grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; background: #ddd; cursor: zoom-in; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: auto; }
.gallery-grid.filtered { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.gallery-grid.filtered .gallery-item { grid-column: auto; }
.gallery-item[hidden] { display: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .55s ease; }
.gallery-item::after { position: absolute; inset: 45% 0 0; content: ""; background: linear-gradient(transparent, rgba(8,25,19,.74)); pointer-events: none; }
.gallery-item span { position: absolute; z-index: 2; right: 16px; bottom: 14px; left: 16px; color: #fff; font-size: .73rem; font-weight: 650; letter-spacing: .06em; text-align: left; text-transform: uppercase; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(.85); }

.motion-section { position: relative; overflow: hidden; background: var(--green-950); color: #fff; }
.motion-stage { position: relative; display: grid; min-height: clamp(680px, 78vw, 880px); align-items: center; overflow: hidden; }
.motion-bg, .motion-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.motion-bg { object-fit: cover; object-position: center; }
.motion-shade { background: linear-gradient(90deg, rgba(9,31,23,.92) 0%, rgba(9,31,23,.68) 46%, rgba(9,31,23,.18) 100%), linear-gradient(0deg, rgba(9,31,23,.62), transparent 55%); }
.motion-content { position: relative; z-index: 2; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(50px, 7vw, 100px); align-items: center; padding-top: 110px; padding-bottom: 110px; }
.motion-copy { max-width: 570px; }
.motion-copy h2 { margin-bottom: 26px; }
.motion-copy > p:not(.eyebrow) { max-width: 500px; margin-bottom: 32px; color: rgba(255,255,255,.72); }
.motion-inset { align-self: end; width: min(100%, 640px); margin: 150px 0 0 auto; border: 1px solid rgba(255,255,255,.42); background: rgba(10,29,22,.42); box-shadow: 0 28px 70px rgba(0,0,0,.3); backdrop-filter: blur(5px); }
.motion-inset video { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.motion-inset figcaption { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 13px 16px; color: rgba(255,255,255,.7); font-size: .67rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

.nearby-section { position: relative; overflow: hidden; background: var(--cream-2); }
.nearby-section::before { position: absolute; top: -130px; left: -110px; width: 420px; height: 420px; border: 1px solid rgba(29,74,58,.13); border-radius: 50%; content: ""; }
.nearby-section::after { position: absolute; top: 80px; left: 80px; width: 110px; height: 110px; border: 1px solid rgba(29,74,58,.18); border-radius: 50%; content: ""; }
.nearby-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 9vw, 130px); align-items: start; }
.nearby-intro { position: sticky; top: 130px; padding-top: 12px; }
.nearby-intro h2 { font-size: clamp(2.8rem, 4.6vw, 4.9rem); }
.nearby-intro h2 em { color: var(--green-700); font-weight: 400; }
.nearby-intro > p:not(.eyebrow):not(.nearby-note) { max-width: 520px; margin: 32px 0 20px; color: var(--muted); font-size: 1.05rem; }
.nearby-intro .nearby-note { max-width: 420px; margin: 0; padding-top: 18px; border-top: 1px solid var(--line); color: #7d837e; font-size: .75rem; }
.nearby-list { border-top: 1px solid rgba(23,33,28,.26); }
.nearby-item { display: grid; grid-template-columns: 46px minmax(0, 1fr) auto 24px; gap: 18px; align-items: center; min-height: 128px; padding: 22px 4px; border-bottom: 1px solid rgba(23,33,28,.26); text-decoration: none; transition: color .25s ease, padding .25s ease, background .25s ease; }
.nearby-item:hover { padding-right: 14px; padding-left: 14px; background: rgba(255,255,255,.42); color: var(--green-700); }
.nearby-index { align-self: start; padding-top: 5px; color: var(--green-700); font-size: .66rem; font-weight: 750; letter-spacing: .12em; }
.nearby-place, .nearby-distance { display: flex; flex-direction: column; }
.nearby-place strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.35rem, 2vw, 1.8rem); font-weight: 400; line-height: 1.15; }
.nearby-place small, .nearby-distance small { margin-top: 7px; color: var(--muted); font-size: .72rem; line-height: 1.35; }
.nearby-distance { min-width: 126px; text-align: right; }
.nearby-distance strong { font-size: .95rem; letter-spacing: .02em; }
.nearby-arrow { font-size: 1.2rem; transition: transform .25s ease; }
.nearby-item:hover .nearby-arrow { transform: translate(3px, -3px); }

.location-section { background: var(--paper); }
.location-card { display: grid; grid-template-columns: .86fr 1.14fr; min-height: 570px; padding: 0; overflow: hidden; background: var(--green-900); color: #fff; }
.location-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(38px, 6vw, 80px); }
.location-copy p:not(.eyebrow) { margin: 26px 0 34px; color: rgba(255,255,255,.7); }
.location-card > img { width: 100%; height: 100%; object-fit: cover; }

.faq-section { background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(50px, 9vw, 130px); align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro > p:not(.eyebrow) { max-width: 470px; margin: 28px 0 0; color: var(--muted); }
.faq-list { border-top: 1px solid rgba(23,33,28,.28); }
.faq-list details { border-bottom: 1px solid rgba(23,33,28,.28); }
.faq-list summary { position: relative; padding: 28px 54px 28px 0; color: var(--green-950); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.3; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 50%; right: 4px; width: 32px; height: 32px; border: 1px solid rgba(23,33,28,.35); border-radius: 50%; content: "+"; font-family: ui-sans-serif, system-ui, sans-serif; font-size: 1.25rem; line-height: 29px; text-align: center; transform: translateY(-50%); transition: transform .25s ease, background .25s ease, color .25s ease; }
.faq-list details[open] summary::after { background: var(--green-900); color: #fff; transform: translateY(-50%) rotate(45deg); }
.faq-list details p { max-width: 720px; margin: -4px 60px 28px 0; color: var(--muted); }

.contact-section { padding-top: 70px; background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(48px, 9vw, 125px); align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy > p:not(.eyebrow,.company) { max-width: 510px; margin: 28px 0 28px; color: var(--muted); }
.big-phone { display: inline-block; color: var(--green-800); font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.5rem); text-decoration: none; }
.company { margin-top: 4px; color: var(--muted); font-size: .78rem; letter-spacing: .04em; }
.contact-form { display: grid; gap: 18px; padding: clamp(28px, 4.5vw, 52px); background: var(--cream); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 7px; color: var(--green-900); font-size: .72rem; font-weight: 720; letter-spacing: .06em; text-transform: uppercase; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid #a8aaa3; border-radius: 0; background: transparent; color: var(--ink); outline: none; padding: 11px 1px; font-size: .92rem; text-transform: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green-800); box-shadow: 0 1px var(--green-800); }
.contact-form textarea { resize: vertical; }
.contact-form .consent { display: flex; grid-template-columns: auto 1fr; align-items: flex-start; gap: 10px; color: var(--muted); font-weight: 500; letter-spacing: 0; line-height: 1.45; text-transform: none; }
.consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--green-800); }
.contact-form .button { justify-self: start; min-width: 220px; }
.contact-form .button:disabled { opacity: .62; cursor: wait; transform: none; }
.form-note { margin: -7px 0 0; color: var(--muted); font-size: .7rem; }
.recaptcha-note { margin: -8px 0 0; color: #858b86; font-size: .66rem; line-height: 1.5; }
.recaptcha-note a { color: var(--green-700); }

.site-footer { padding: 68px 0 28px; background: var(--green-950); color: #fff; }
.footer-main { display: grid; grid-template-columns: 1fr .9fr 1fr; gap: 50px; align-items: center; padding-bottom: 48px; }
.footer-main > p { margin: 0; color: rgba(255,255,255,.55); font-size: .84rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px 24px; }
.footer-links a { color: rgba(255,255,255,.76); font-size: .75rem; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: .68rem; }
.mobile-call { display: none; }

.lightbox { width: min(92vw, 1180px); max-width: none; padding: 0; border: 0; background: transparent; color: #fff; }
.lightbox::backdrop { background: rgba(5,16,12,.93); backdrop-filter: blur(7px); }
.lightbox img { width: 100%; max-height: 82vh; object-fit: contain; }
.lightbox p { margin: 12px 48px 0 0; font-size: .8rem; letter-spacing: .03em; }
.lightbox-close { position: fixed; z-index: 2; top: 24px; right: 28px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(0,0,0,.25); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; }
.toast { position: fixed; z-index: 300; right: 22px; bottom: 22px; max-width: 370px; padding: 14px 18px; border-radius: 3px; background: var(--green-900); color: #fff; box-shadow: var(--shadow); font-size: .82rem; opacity: 0; transform: translateY(20px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
.toast.show { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1); }
.reveal.visible { opacity: 1; transform: none; }
@keyframes hero-in { from { opacity: .45; transform: scale(1.035); } to { opacity: 1; transform: scale(1); } }
@keyframes pulse { 0% { opacity: .9; transform: scale(.6); } 80%,100% { opacity: 0; transform: scale(1.35); } }

@media (max-width: 1050px) {
  .hero-content { display: block; }
  .availability { width: fit-content; margin: 32px 0 0; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .offer-card.featured { transform: none; }
  .offer-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: .85fr 1.15fr; }
  .offer-card:last-child .offer-image-wrap { height: 100%; min-height: 390px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:last-child { grid-column: span 2; }
  .gallery-grid.filtered .gallery-item { grid-column: auto; }
  .location-card { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 34px), var(--container)); }
  .section { padding: 88px 0; }
  .menu-toggle { display: block; z-index: 3; }
  .site-header.scrolled { backdrop-filter: none; }
  .main-nav { position: fixed; inset: 0; display: flex; visibility: hidden; flex-direction: column; align-items: flex-start; justify-content: center; gap: 24px; padding: 90px 34px; background: var(--green-950); color: #fff; opacity: 0; transform: translateX(100%); pointer-events: none; transition: visibility 0s linear .3s, opacity .25s ease, transform .3s ease; }
  .main-nav a { font-family: Georgia, serif; font-size: 1.8rem; font-weight: 400; letter-spacing: -.02em; }
  .main-nav .nav-phone { margin-top: 12px; font-family: inherit; font-size: 1rem; font-weight: 700; letter-spacing: .04em; }
  .menu-open .main-nav { visibility: visible; opacity: 1; transform: translateX(0); pointer-events: auto; transition-delay: 0s; }
  .menu-open .site-header { background: transparent; box-shadow: none; color: #fff; }
  .menu-open .menu-toggle { color: #fff; }
  .menu-open .menu-toggle > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle > span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: 790px; }
  .hero-shade { background: linear-gradient(90deg, rgba(8,26,19,.82), rgba(8,26,19,.25)), linear-gradient(0deg, rgba(8,26,19,.78), transparent 70%); }
  .hero-content { padding-bottom: 48px; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .facts-grid > div { min-height: 110px; border-bottom: 1px solid rgba(255,255,255,.14); }
  .facts-grid > div:nth-child(3) { border-left: 1px solid rgba(255,255,255,.14); }
  .intro-grid, .section-top, .standard-grid, .faq-layout, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .intro-copy { padding-top: 0; }
  .section-top { align-items: start; }
  .standard-media { max-width: 520px; }
  .standard-copy { max-width: none; }
  .compare { aspect-ratio: 4/3; }
  .compare img { object-position: 42% center; }
  .gallery-heading { align-items: flex-start; flex-direction: column; }
  .filter-bar { justify-content: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .motion-stage { min-height: 780px; }
  .motion-content { grid-template-columns: 1fr; gap: 45px; padding-top: 92px; padding-bottom: 60px; }
  .motion-inset { width: min(88%, 520px); margin: 0 0 0 auto; }
  .nearby-layout { grid-template-columns: 1fr; gap: 58px; }
  .nearby-intro { position: static; max-width: 680px; }
  .location-card { grid-template-columns: 1fr; }
  .location-card > img { height: 440px; }
  .faq-intro { position: static; }
  .contact-copy { position: static; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
  body { font-size: 15px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 74px 0; }
  .nav-shell { min-height: 70px; }
  .brand { font-size: .84rem; }
  .brand-mark { width: 33px; }
  .hero { min-height: 760px; }
  .hero-image { object-position: 57% center; }
  .hero-content { padding-top: 125px; padding-bottom: 36px; }
  .hero-copy h1 { margin-bottom: 21px; font-size: clamp(2.75rem, 14vw, 4.1rem); }
  .hero-lead { margin-bottom: 26px; font-size: .98rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .availability { margin-top: 22px; font-size: .74rem; }
  .facts-grid > div { min-height: 98px; padding: 18px 14px; }
  .facts strong { font-size: 1.45rem; }
  .facts span { font-size: .61rem; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card:last-child { grid-column: auto; display: block; }
  .offer-card:last-child .offer-image-wrap { min-height: 0; height: 280px; }
  .offer-body { padding: 26px 23px 29px; }
  .check-list { min-height: 0; }
  .feature-list { grid-template-columns: 1fr; }
  .feature-list > div:nth-child(odd) { margin-right: 0; border-right: 0; }
  .compare { aspect-ratio: 4/5; }
  .compare img { object-position: 38% center; }
  .compare-tag { max-width: 130px; font-size: .55rem; line-height: 1.35; }
  .gallery-grid { grid-auto-rows: 210px; grid-template-columns: 1fr 1fr; gap: 9px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item span { right: 10px; bottom: 9px; left: 10px; font-size: .59rem; }
  .motion-stage { min-height: 760px; }
  .motion-shade { background: linear-gradient(180deg, rgba(9,31,23,.82), rgba(9,31,23,.5) 54%, rgba(9,31,23,.82)); }
  .motion-content { gap: 38px; padding-top: 86px; padding-bottom: 46px; }
  .motion-copy h2 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .motion-inset { width: 92%; }
  .nearby-section::before { top: -190px; left: -240px; }
  .nearby-section::after { display: none; }
  .nearby-layout { gap: 42px; }
  .nearby-intro h2 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .nearby-intro > p:not(.eyebrow):not(.nearby-note) { margin-top: 24px; font-size: .98rem; }
  .nearby-item { grid-template-columns: 30px minmax(0, 1fr) 20px; gap: 10px; min-height: 116px; }
  .nearby-distance { grid-column: 2; grid-row: 2; align-self: start; min-width: 0; margin-top: -16px; text-align: left; }
  .nearby-distance strong, .nearby-distance small { display: inline; margin: 0 8px 0 0; }
  .nearby-arrow { grid-column: 3; grid-row: 1 / 3; }
  .nearby-place strong { font-size: 1.35rem; }
  .location-card > img { height: 330px; }
  .faq-list summary { padding: 24px 48px 24px 0; }
  .faq-list details p { margin-right: 0; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 21px; }
  .contact-form .button { width: 100%; }
  .footer-bottom { flex-direction: column; }
  .mobile-call { position: fixed; z-index: 90; right: 14px; bottom: 14px; display: inline-flex; min-height: 50px; align-items: center; gap: 9px; padding: 12px 17px; border-radius: 999px; background: var(--green-800); color: #fff; box-shadow: 0 12px 32px rgba(13,37,29,.32); font-size: .78rem; font-weight: 750; text-decoration: none; }
  .mobile-call svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
  .grecaptcha-badge { bottom: 80px !important; }
  .toast { right: 14px; bottom: 76px; left: 14px; }
}

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