:root {
  color-scheme: light;
  --navy: #14324f;
  --blue: #16436b;
  --aqua: #2f9fb0;
  --mint: #10b98a;
  --cream: #f7f3ea;
  --paper: #ffffff;
  --ink: #14324f;
  --copy: #55677a;
  --line: #e5e0d4;
  --surface: #f7f3ea;
  --heading: Prata, Georgia, serif;
  --radius: 0px;
  --button-radius: 0px;
  --section-space: clamp(72px, 8vw, 118px);
}

html[data-option="cinematic"] {
  color-scheme: dark;
  --ink: #ffffff;
  --copy: #bcd3de;
  --line: rgba(255,255,255,.14);
  --surface: #0b2740;
  --heading: "Cormorant Garamond", Georgia, serif;
  --radius: 18px;
  --button-radius: 999px;
}

html[data-option="modern"] {
  --surface: #f6f4ef;
  --heading: Lora, Georgia, serif;
  --radius: 20px;
  --button-radius: 11px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; overflow-x: clip; background: var(--surface); color: var(--ink); font-family: Jost, Arial, sans-serif; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
.shell { width: min(1328px, calc(100% - 80px)); margin-inline: auto; }
.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; top: 12px; left: 12px; z-index: 1000; padding: 12px 16px; background: #fff; color: var(--navy); transform: translateY(-160%); }
.skip-link:focus { transform: none; }
[id] { scroll-margin-top: 92px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 82px;
  padding: 12px max(40px, calc((100vw - 1328px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: none; }
.brand img { width: 132px; height: 58px; object-fit: contain; mix-blend-mode: multiply; }
.brand-type { display: none; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { position: relative; color: #33475c; font-size: 14px; font-weight: 500; text-decoration: none; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--aqua); transition: right .25s; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.site-nav .nav-cta { padding: 12px 22px; background: var(--blue); color: #fff; border-radius: var(--button-radius); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 0; background: transparent; color: currentColor; cursor: pointer; }
.menu-toggle i { display: block; width: 24px; height: 2px; margin: 5px 0 5px auto; background: currentColor; transition: transform .2s, opacity .2s; }
.menu-toggle i:last-child { width: 16px; }

.hero { position: relative; overflow: hidden; background: var(--surface); }
.hero-media { position: absolute; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; display: block; object-fit: cover; animation: hero-drift 22s ease-in-out infinite alternate; }
.hero-shade { position: absolute; inset: 0; }
.hero-inner { position: relative; z-index: 2; }
.hero-copy { position: relative; }
.eyebrow { margin: 0; color: var(--aqua); font-size: 11px; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; }
.hero h1, .section h2, .project-detail h3, .price-card strong, .contact-stats strong { font-family: var(--heading); font-weight: 400; }
.hero h1 { margin: 22px 0 0; max-width: 1050px; font-size: clamp(48px, 6.7vw, 94px); line-height: 1.06; text-wrap: balance; }
.hero-copy > p:last-of-type { max-width: 600px; margin: 26px 0 0; color: var(--copy); font-size: 17px; font-weight: 300; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 14px 26px; border: 1px solid transparent; border-radius: var(--button-radius); font-size: 14px; font-weight: 500; text-decoration: none; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button.primary { background: var(--blue); color: #fff; }
.button.secondary { border-color: #c9d2da; color: #33475c; }
.hero-price { z-index: 3; padding: 18px 22px; background: rgba(255,255,255,.94); color: var(--navy); box-shadow: 0 18px 44px rgba(15,40,60,.18); }
.hero-price span { display: block; margin-bottom: 5px; color: #7b8a99; font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.hero-price strong { font-family: var(--heading); font-size: 25px; font-weight: 400; }
.stats { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(4, 1fr); }
.stats div { padding: 25px 28px; }
.stats strong { display: block; font-family: var(--heading); font-size: clamp(28px, 3vw, 44px); font-weight: 400; }
.stats span { display: block; margin-top: 6px; color: #6d7d8d; font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.marquee { display: none; }

html[data-option="editorial"] .hero { min-height: 0; padding: 0; display: flex; flex-direction: column; }
html[data-option="editorial"] .hero-inner { order: 1; min-height: 0; padding-top: clamp(68px,7vw,104px); padding-bottom: clamp(48px,5vw,72px); }
html[data-option="editorial"] .hero-media { position: relative; order: 2; inset: auto; width: 100%; height: clamp(330px,33vw,480px); }
html[data-option="editorial"] .hero-media img { object-position: center; }
html[data-option="editorial"] .hero-shade { background: linear-gradient(180deg,rgba(15,35,54,.04),rgba(15,35,54,.34)); }
html[data-option="editorial"] .hero-copy { width: min(100%,1180px); }
html[data-option="editorial"] .hero h1 { max-width: 1180px; font-size: clamp(54px,6vw,86px); line-height: 1.03; }
html[data-option="editorial"] .hero-price { position: absolute; right: 0; bottom: clamp(48px,5vw,72px); }
html[data-option="editorial"] .stats { order: 3; margin: 0 auto; background: #fbf9f4; border-bottom: 1px solid #d9d2c2; }
html[data-option="editorial"] .stats div + div { border-left: 1px solid #d9d2c2; }

html[data-option="cinematic"] .site-header { position: absolute; inset: 0 0 auto; background: transparent; border: 0; }
html[data-option="cinematic"] .brand img { display: none; }
html[data-option="cinematic"] .brand-type { display: flex; flex-direction: column; color: #fff; line-height: 1; }
html[data-option="cinematic"] .brand-type strong { font-family: var(--heading); font-size: 22px; font-weight: 600; letter-spacing: .24em; }
html[data-option="cinematic"] .brand-type small { margin-top: 7px; font-size: 8px; font-weight: 500; letter-spacing: .27em; }
html[data-option="cinematic"] .site-nav a { color: rgba(255,255,255,.88); }
html[data-option="cinematic"] .site-nav .nav-cta { background: var(--mint); color: #fff; }
html[data-option="cinematic"] .hero { min-height: 0; display: flex; flex-direction: column; background: #071a2c; }
html[data-option="cinematic"] .hero-media { inset: 0; }
html[data-option="cinematic"] .hero-shade { background: linear-gradient(180deg,rgba(6,20,34,.68),rgba(6,20,34,.56) 42%,rgba(6,20,34,.98)); }
html[data-option="cinematic"] .hero-inner { min-height: clamp(560px, calc(100svh - 210px), 760px); display: flex; align-items: flex-end; padding-top: 150px; padding-bottom: 112px; }
html[data-option="cinematic"] .hero-copy { max-width: 960px; }
html[data-option="cinematic"] .hero h1 { color: #fff; font-size: clamp(58px, 7.5vw, 108px); line-height: .98; text-shadow: 0 3px 28px rgba(0,0,0,.22); }
html[data-option="cinematic"] .hero-copy > p:last-of-type { color: #d5e3ea; }
html[data-option="cinematic"] .hero .eyebrow { color: #7fd6c2; }
html[data-option="cinematic"] .hero-price { display: none; }
html[data-option="cinematic"] .button.primary { background: var(--mint); }
html[data-option="cinematic"] .button.secondary { border-color: rgba(255,255,255,.5); color: #fff; }
html[data-option="cinematic"] .stats { width: 100%; padding-inline: max(40px, calc((100vw - 1328px) / 2)); background: #0b2740; }
html[data-option="cinematic"] .stats div { padding: 38px 0; border-top: 1px solid rgba(255,255,255,.14); }
html[data-option="cinematic"] .stats div + div { margin-left: 40px; }
html[data-option="cinematic"] .stats strong { color: #fff; font-size: clamp(48px, 5.6vw, 84px); }
html[data-option="cinematic"] .stats span { color: #6f8aa3; }
html[data-option="cinematic"] .marquee { position: relative; z-index: 5; display: block; overflow: hidden; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.18); background: #071a2c; }
html[data-option="cinematic"] .marquee div { display: flex; align-items: center; gap: 24px; width: max-content; animation: marquee 30s linear infinite; }
html[data-option="cinematic"] .marquee span { white-space: nowrap; color: rgba(255,255,255,.84); font-size: 11px; letter-spacing: .25em; }
html[data-option="cinematic"] .marquee b { color: #7fd6c2; }

html[data-option="modern"] .hero { min-height: 0; padding: 72px 0 64px; }
html[data-option="modern"] .hero-media { top: 56px; right: max(40px, calc((100vw - 1328px) / 2)); bottom: auto; width: min(46vw, 620px); height: 570px; border-radius: 24px; }
html[data-option="modern"] .hero-media img { object-position: center; }
html[data-option="modern"] .hero-shade { background: linear-gradient(180deg,transparent 45%,rgba(15,40,60,.24)); }
html[data-option="modern"] .hero-inner { min-height: 570px; display: flex; align-items: center; }
html[data-option="modern"] .hero-copy { width: 49%; }
html[data-option="modern"] .hero h1 { font-size: clamp(48px, 5.4vw, 74px); }
html[data-option="modern"] .hero-price { position: absolute; top: 14px; right: 18px; border-radius: 16px; }
html[data-option="modern"] .stats { width: min(1328px,calc(100% - 80px)); margin: 38px auto 0; background: rgba(255,255,255,.72); border: 1px solid #e2ddd1; border-radius: 18px; }
html[data-option="modern"] .stats div { padding: 20px 22px; }
html[data-option="modern"] .stats div + div { padding-left: 18px; border-left: 1px solid #e2ddd1; }
html[data-option="modern"] .stats strong { font-size: 25px; }

.section { padding: var(--section-space) 0; }
.section-heading { max-width: 860px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section h2 { margin: 16px 0 0; font-size: clamp(38px, 4.7vw, 64px); line-height: 1.14; text-wrap: balance; }
.section-heading > p:last-child { max-width: 720px; margin: 22px 0 0; color: var(--copy); font-size: 16px; line-height: 1.7; }
.section-heading.centered > p:last-child { margin-inline: auto; }

.project { background: #fff; color: var(--navy); }
.project .section-heading > p:last-child { color: #55677a; }
.masterplan { margin-top: 46px; }
.masterplan img { width: 100%; display: block; border-radius: var(--radius); }
.masterplan p { margin: 14px 0 0; color: #7b8a99; font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.project-detail { margin-top: 58px; display: grid; grid-template-columns: minmax(260px, .55fr) 1.45fr; gap: 54px; align-items: start; }
.project-detail > * { min-width: 0; }
.project-detail > img { width: 100%; max-height: 520px; display: block; object-fit: cover; object-position: center 35%; border-radius: var(--radius); }
.project-detail h3 { margin: 0; font-size: clamp(30px, 3.3vw, 46px); line-height: 1.15; }
.project-detail p { margin: 18px 0 0; color: #55677a; font-size: 16px; line-height: 1.7; }
.beach-list { margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2,1fr); column-gap: 28px; list-style: none; }
.beach-list li { padding: 12px 0; display: flex; align-items: baseline; gap: 14px; border-bottom: 1px solid #e8e4da; font-family: var(--heading); font-size: 16px; }
.beach-list li span { color: #9aa7b3; font: 500 11px Jost,sans-serif; }
.beach-list .pending { color: #7b8a99; }

html[data-option="cinematic"] .project { background: #0b2740; color: #fff; }
html[data-option="cinematic"] .project .section-heading > p:last-child, html[data-option="cinematic"] .project-detail p { color: #bcd3de; }
html[data-option="cinematic"] .project .eyebrow { color: #7fd6c2; }
html[data-option="cinematic"] .masterplan img { border: 1px solid rgba(255,255,255,.14); }
html[data-option="cinematic"] .beach-list { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; overflow: visible; padding-bottom: 0; }
html[data-option="cinematic"] .beach-list li { min-height: 150px; padding: 20px; flex-direction: column; justify-content: space-between; align-items: flex-start; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: #10314e; color: #e8f1f8; }
html[data-option="cinematic"] .beach-list li span { font: 500 48px var(--heading); color: rgba(255,255,255,.24); }
html[data-option="cinematic"] .beach-list .pending { color: #7fd6c2; border-color: rgba(16,185,138,.4); }
html[data-option="modern"] .project { padding-top: 90px; }
html[data-option="modern"] .masterplan { padding: 18px; background: #f6f4ef; border-radius: 20px; }
html[data-option="modern"] .beach-list { display: flex; flex-wrap: wrap; gap: 9px; }
html[data-option="modern"] .beach-list li { padding: 9px 14px; gap: 8px; border: 1px solid #e5e0d4; border-radius: 999px; background: #fff; font: 400 13px Jost,sans-serif; }

.delivery { background: var(--surface); }
.service-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.service { padding: 26px 24px; background: #fff; color: var(--navy); border: 1px solid #e9e4d8; border-radius: var(--radius); }
.service > span { color: var(--aqua); font-family: var(--heading); font-size: 21px; }
.service h3 { margin: 16px 0 0; font-size: 16px; }
.service p { margin: 9px 0 0; color: #66788a; font-size: 14px; line-height: 1.6; }
html[data-option="editorial"] .service { padding: 20px 0; background: transparent; border: 0; border-top: 2px solid var(--blue); }
html[data-option="cinematic"] .delivery { background: #0b2740; }
html[data-option="cinematic"] .delivery .eyebrow { color: #7fd6c2; }
html[data-option="cinematic"] .service { background: rgba(255,255,255,.045); color: #fff; border-color: rgba(255,255,255,.12); }
html[data-option="cinematic"] .service p { color: #9db8ce; }
html[data-option="cinematic"] .service > span { color: #7fd6c2; }

.location { background: var(--blue); color: #fff; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.map-wrap { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: 0 24px 60px rgba(0,0,0,.24); }
.map-wrap img { width: 100%; display: block; }
.map-wrap::before { content: ""; position: absolute; left: 28%; top: 8%; z-index: 1; width: 32%; height: 15%; background: rgb(77,149,158); }
.map-correction { position: absolute; left: 23%; top: 9%; z-index: 2; width: 34%; padding: 10px 7px; background: var(--navy); color: #fff; border-radius: 999px; text-align: center; font-size: clamp(8px,1vw,13px); font-weight: 600; letter-spacing: .08em; }
.location .eyebrow { color: #7fd6c2; }
.location h2 { color: #fff; }
.location-copy > p:not(.eyebrow) { margin: 22px 0 0; color: #c3d2e0; font-size: 16px; line-height: 1.7; }
.location-facts { margin-top: 25px; display: flex; flex-wrap: wrap; gap: 10px; }
.location-facts span { padding: 9px 15px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; color: #dbe7f2; font-size: 13px; }
.map-button { margin-top: 30px; border: 1px solid rgba(255,255,255,.5); background: transparent; }
html[data-option="cinematic"] .location { background: linear-gradient(120deg,#0d3350,#0f4c58); }
html[data-option="cinematic"] .map-button { border-radius: 999px; }
html[data-option="modern"] .location { background: #fff; color: var(--navy); }
html[data-option="modern"] .location h2 { color: var(--navy); }
html[data-option="modern"] .location .eyebrow { color: var(--mint); }
html[data-option="modern"] .location-copy > p:not(.eyebrow) { color: #55677a; }
html[data-option="modern"] .location-facts span { background: #eef3f6; border: 0; color: #33475c; }
html[data-option="modern"] .map-button { background: var(--blue); }

.lots { background: var(--surface); }
.pricing-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: center; }
.price-card { padding: 36px 32px; background: #fff; color: var(--navy); border: 1px solid #e7e2d6; border-radius: var(--radius); }
.price-label { display: inline-block; color: #7b8a99; font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.price-card h3 { margin: 16px 0 0; font-size: 17px; text-transform: uppercase; letter-spacing: .12em; }
.price-card > strong { display: block; margin-top: 13px; font-size: clamp(30px,3.3vw,45px); line-height: 1.08; }
.price-card strong small { color: #9aa7b3; font: 400 14px Jost,sans-serif; }
.price-card dl { margin: 24px 0 0; }
.price-card dl div { padding: 13px 0; display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid #eee9de; font-size: 14px; }
.price-card dt { color: #66788a; }
.price-card dd { margin: 0; font-weight: 500; }
.price-card > a { display: block; margin-top: 22px; padding: 14px; border: 1px solid var(--blue); border-radius: var(--button-radius); text-align: center; font-size: 14px; font-weight: 500; text-decoration: none; }
.price-card.featured { padding-block: 43px; background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: 0 26px 58px rgba(16,40,64,.25); }
.price-card.featured .price-label { padding: 6px 12px; background: var(--mint); color: #fff; border-radius: 999px; }
.price-card.featured strong small, .price-card.featured dt { color: #9db8ce; }
.price-card.featured dl div { border-color: rgba(255,255,255,.14); }
.price-card.featured > a { background: var(--mint); color: #fff; border-color: var(--mint); }
html[data-option="editorial"] .pricing-grid { gap: 0; border-top: 1px solid #e8e4da; }
html[data-option="editorial"] .price-card { border: 0; border-bottom: 1px solid #e8e4da; border-radius: 0; box-shadow: none; }
html[data-option="cinematic"] .lots { background: #0b2740; color: #fff; }
html[data-option="cinematic"] .lots .eyebrow { color: #7fd6c2; }
html[data-option="cinematic"] .lots .section-heading > p:last-child { color: #8aa0b5; }
html[data-option="cinematic"] .price-card { background: rgba(255,255,255,.045); color: #fff; border-color: rgba(255,255,255,.12); }
html[data-option="cinematic"] .price-card dt, html[data-option="cinematic"] .price-card strong small { color: #8aa0b5; }
html[data-option="cinematic"] .price-card dl div { border-color: rgba(255,255,255,.1); }
html[data-option="cinematic"] .price-card > a { border-color: rgba(255,255,255,.45); }
html[data-option="cinematic"] .price-card.featured { background: linear-gradient(160deg,rgba(16,185,138,.18),rgba(255,255,255,.04)); border-color: var(--mint); }
html[data-option="modern"] .price-card.featured { order: 2; transform: scale(1.03); }
html[data-option="modern"] .price-card:nth-child(2) { order: 1; }
html[data-option="modern"] .price-card:nth-child(3) { order: 3; }

.contact { background: #fff; color: var(--navy); }
.contact-grid { padding: clamp(34px,5vw,64px); display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; background: var(--navy); color: #fff; border-radius: calc(var(--radius) + 8px); }
.contact .eyebrow { color: #7fd6c2; }
.contact h2 { color: #fff; }
.contact-copy > p:not(.eyebrow) { margin: 20px 0 0; color: #b9cbdc; line-height: 1.7; }
.contact-direct { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.contact-direct a { color: #fff; text-underline-offset: 4px; }
.contact-stats { display: flex; gap: 32px; margin-top: 30px; }
.contact-stats span { display: flex; flex-direction: column; color: #7fa3c4; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.contact-stats strong { color: #fff; font-size: 24px; }
.lead-form { padding: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; background: #fff; color: var(--navy); border-radius: var(--radius); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full, .lead-form .full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 600; }
.field input, .field select { width: 100%; min-height: 46px; padding: 11px 13px; border: 1px solid #dfe5e3; border-radius: 8px; background: #f4f6f4; color: #33475c; }
.field input:focus, .field select:focus { outline: 2px solid var(--aqua); outline-offset: 1px; }
.form-help { margin: 2px 0 0; color: #697b89; font-size: 12px; line-height: 1.5; text-align: center; }
.lead-form button { min-height: 48px; border: 0; border-radius: var(--button-radius); background: var(--blue); color: #fff; font-weight: 600; cursor: pointer; transition: transform .2s, background .2s; }
.lead-form button:hover, .lead-form button:focus-visible { transform: translateY(-2px); background: #0f3658; }
html[data-option="cinematic"] .lead-form button { background: var(--mint); }
html[data-option="cinematic"] .lead-form button:hover, html[data-option="cinematic"] .lead-form button:focus-visible { background: #0a9c75; }
html[data-option="cinematic"] .contact { background: #0b2740; }
html[data-option="cinematic"] .contact-grid { background: linear-gradient(150deg,#0d3350,#0a5e54); }

.site-footer { padding: 28px 0; background: #fff; color: #66788a; border-top: 1px solid #ebe7dd; }
.site-footer .shell { display: grid; grid-template-columns: auto 1fr auto auto; gap: 32px; align-items: center; }
.footer-brand img { width: 108px; display: block; mix-blend-mode: multiply; }
.site-footer nav { display: flex; justify-content: center; gap: 24px; }
.site-footer a { font-size: 12px; text-decoration: none; }
.site-footer p { margin: 0; font-size: 11px; }
.all-options { padding-bottom: 2px; border-bottom: 1px solid currentColor; }
html[data-option="cinematic"] .site-footer { background: #071a2c; color: #7d95aa; border-color: rgba(255,255,255,.1); }
html[data-option="cinematic"] .footer-brand { display: inline-flex; flex-direction: column; color: #fff; line-height: 1; }
html[data-option="cinematic"] .footer-brand::before { content: "NAVIRE"; font-family: var(--heading); font-size: 18px; font-weight: 600; letter-spacing: .24em; }
html[data-option="cinematic"] .footer-brand::after { content: "FRONTLINE BEACH"; margin-top: 6px; color: #7fd6c2; font-size: 7px; font-weight: 500; letter-spacing: .25em; }
html[data-option="cinematic"] .footer-brand img { display: none; }
.mobile-contact { display: none; }

.js .reveal,
.js .reveal.is-visible { opacity: 1; transform: none; }
@keyframes hero-drift { from { transform: scale(1.02); } to { transform: scale(1.09) translate(-1%,-1%); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 920px) {
  .shell { width: min(100% - 40px, 760px); }
  .site-header { padding-inline: 20px; }
  .menu-toggle { display: block; position: relative; z-index: 102; }
  .site-nav { position: absolute; top: -12px; left: -20px; right: -20px; z-index: 101; width: auto; height: calc(100dvh + 12px); display: none; overflow-y: auto; padding: 110px 24px 30px; flex-direction: column; align-items: stretch; gap: 0; background: var(--surface); }
  .site-nav a { padding: 17px 4px; color: var(--navy) !important; border-bottom: 1px solid #e2dcce; font-family: var(--heading); font-size: 26px; }
  .site-nav .nav-cta { margin-top: 22px; padding: 16px; background: var(--blue); color: #fff !important; border: 0; text-align: center; font-family: Jost,sans-serif; font-size: 14px; }
  .nav-open .site-nav { display: flex; }
  .nav-open .menu-toggle i { background: var(--navy); }
  .nav-open .menu-toggle i:first-of-type { transform: translateY(7px) rotate(45deg); }
  .nav-open .menu-toggle i:nth-of-type(2) { opacity: 0; }
  .nav-open .menu-toggle i:last-of-type { width: 24px; transform: translateY(-7px) rotate(-45deg); }
  .nav-open body { overflow: hidden; }
  html[data-option="cinematic"] .site-header { position: sticky; top: 0; background: #071a2c; }
  html[data-option="cinematic"] .menu-toggle { color: #fff; }
  html[data-option="cinematic"] .site-nav a { color: #fff !important; border-color: rgba(255,255,255,.16); }
  html[data-option="cinematic"].nav-open .menu-toggle i { background: #fff; }
  .hero h1 { font-size: clamp(42px,9.5vw,68px); }
  html[data-option="editorial"] .hero { min-height: 0; padding-top: 0; }
  html[data-option="editorial"] .hero-inner { padding-top: 54px; padding-bottom: 48px; }
  html[data-option="editorial"] .hero-media { height: clamp(320px,50vw,440px); }
  html[data-option="editorial"] .hero-copy { width: 100%; }
  html[data-option="editorial"] .hero-price { display: none; }
  html[data-option="editorial"] .stats { margin-top: 0; }
  html[data-option="modern"] .hero { padding: 44px 0 48px; display: flex; flex-direction: column; }
  html[data-option="modern"] .hero-media { position: relative; inset: auto; width: min(100% - 40px,760px); height: 480px; margin: 30px auto 0; }
  html[data-option="modern"] .hero-media img { object-position: center top; }
  html[data-option="modern"] .hero-inner { order: 1; width: min(100% - 40px,760px); min-height: 0; }
  html[data-option="modern"] .hero-media { order: 2; }
  html[data-option="modern"] .stats { order: 3; }
  html[data-option="modern"] .hero-copy { width: 100%; }
  html[data-option="modern"] .hero-price { display: none; }
  html[data-option="modern"] .stats { width: min(100% - 40px,760px); margin: 26px auto 0; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .stats div { padding: 20px; }
  .stats div:nth-child(3) { border-left: 0 !important; }
  .project-detail, .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .project-detail > img { max-height: 420px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  html[data-option="cinematic"] .beach-list { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  html[data-option="modern"] .price-card.featured { order: 1; transform: none; }
  html[data-option="modern"] .price-card:nth-child(2) { order: 2; }
  .site-footer .shell { grid-template-columns: 1fr 1fr; }
  .site-footer nav { justify-content: flex-start; flex-wrap: wrap; }
}

@media (max-width: 620px) {
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  .shell { width: calc(100% - 40px); }
  .site-header { min-height: 70px; padding-block: 7px; }
  .brand img { width: 105px; height: 48px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  html[data-option="editorial"] .hero { min-height: 0; padding-top: 0; }
  html[data-option="editorial"] .hero-inner { padding-top: 38px; padding-bottom: 38px; }
  html[data-option="editorial"] .hero-media { height: 310px; }
  html[data-option="editorial"] .hero h1 { font-size: clamp(43px,12vw,52px); }
  html[data-option="editorial"] .hero-price { display: none; }
  html[data-option="editorial"] .stats { margin-top: 0; }
  html[data-option="cinematic"] .hero-inner { min-height: 600px; padding-top: 94px; padding-bottom: 82px; }
  html[data-option="cinematic"] .hero h1 { font-size: 51px; }
  html[data-option="cinematic"] .stats { padding-inline: 20px; }
  html[data-option="cinematic"] .stats div { padding: 24px 0; }
  html[data-option="cinematic"] .stats div + div { margin-left: 18px; }
  html[data-option="cinematic"] .stats strong { font-size: 44px; }
  html[data-option="modern"] .hero { min-height: 0; padding: 34px 0 42px; }
  html[data-option="modern"] .hero-media { width: calc(100% - 40px); height: 340px; border-radius: 18px; }
  html[data-option="modern"] .hero-price { bottom: -370px; }
  html[data-option="modern"] .stats { width: calc(100% - 40px); grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats strong { font-size: 29px; }
  .stats span { font-size: 9px; letter-spacing: .12em; }
  .section { padding: 66px 0; }
  .section h2 { font-size: 34px; }
  .project-detail { gap: 28px; }
  .project-detail > img { max-height: 330px; }
  .beach-list { grid-template-columns: 1fr 1fr; }
  html[data-option="cinematic"] .beach-list { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service { padding: 20px 16px; }
  .location-grid { gap: 34px; }
  .map-correction { padding-block: 7px; letter-spacing: .04em; }
  .price-card { padding: 28px 22px; }
  .contact { padding-inline: 0; }
  .contact-grid { width: 100%; padding: 46px 20px; border-radius: 0; }
  .lead-form { padding: 20px; grid-template-columns: 1fr; }
  .field.full, .lead-form .full { grid-column: 1; }
  .contact-stats { gap: 20px; }
  .site-footer .shell { grid-template-columns: 1fr; }
  .site-footer nav { display: grid; grid-template-columns: 1fr 1fr; }
  .mobile-contact { position: fixed; left: 0; right: 0; bottom: 0; z-index: 99; min-height: calc(74px + env(safe-area-inset-bottom)); padding: 11px 16px calc(11px + env(safe-area-inset-bottom)); display: flex; align-items: center; justify-content: space-between; gap: 12px; background: rgba(255,255,255,.97); color: var(--navy); border-top: 1px solid #e2dcce; backdrop-filter: blur(10px); text-decoration: none; }
  .mobile-contact span { display: flex; flex-direction: column; font-family: var(--heading); font-size: 16px; }
  .mobile-contact small { color: #8b98a4; font: 500 9px Jost,sans-serif; letter-spacing: .15em; text-transform: uppercase; }
  .mobile-contact strong { padding: 13px 17px; background: var(--blue); color: #fff; border-radius: var(--button-radius); font-size: 13px; }
  html[data-option="cinematic"] .mobile-contact { background: rgba(7,26,44,.97); color: #fff; border-color: rgba(255,255,255,.12); }
  html[data-option="cinematic"] .mobile-contact strong { background: var(--mint); }
  .nav-open .mobile-contact { display: none; }
}

@media (max-width: 1100px) and (min-width: 921px) {
  html[data-option="editorial"] .hero-price { display: none; }
}

@media (max-width: 440px) {
  .service-grid { grid-template-columns: 1fr; }
  .beach-list { grid-template-columns: 1fr; }
  .stats div { padding-inline: 12px; }
  .contact-stats { justify-content: space-between; gap: 12px; }
}

@media (min-width: 921px) and (max-height: 700px) {
  html[data-option="cinematic"] .hero { min-height: 720px; }
  html[data-option="cinematic"] .hero-inner { min-height: 640px; padding-top: 132px; padding-bottom: 112px; }
  html[data-option="cinematic"] .hero h1 { font-size: clamp(56px,6.4vw,82px); }
}

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