:root{
  --navy:#061C35;
  --navy-2:#092848;
  --teal:#6A9FA0;
  --teal-dark:#3F7F80;
  --gold:#C99B35;
  --charcoal:#3A3A3A;
  --muted:#667085;
  --line:#E6EAF0;
  --bg:#F7F9FC;
  --white:#FFFFFF;
  --shadow:0 20px 50px rgba(6,28,53,.16);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--navy);
  background:var(--white);
  line-height:1.5;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1140px,92vw);margin:auto}
.header{
  height:92px;background:rgba(255,255,255,.95);border-bottom:1px solid var(--line);
  position:sticky;top:0;z-index:30;backdrop-filter:saturate(180%) blur(12px)
}
.nav{height:100%;display:flex;align-items:center;justify-content:space-between;gap:24px}
.logo{display:flex;align-items:center;gap:12px;min-width:230px}.logo img{height:74px;width:auto}.logo-small img{height:50px}
.menu{display:flex;align-items:center;gap:30px;font-weight:800;font-size:13px;letter-spacing:.02em;text-transform:uppercase}
.menu a{position:relative;padding:12px 0}.menu a.active:after,.menu a:hover:after{content:"";position:absolute;left:0;right:0;bottom:2px;height:2px;background:var(--gold)}
.btn{display:inline-flex;align-items:center;justify-content:center;border-radius:6px;padding:13px 22px;background:var(--gold);color:white;font-weight:850;font-size:13px;letter-spacing:.02em;text-transform:uppercase;border:0;box-shadow:0 10px 20px rgba(201,155,53,.22);cursor:pointer}
.btn.dark{background:var(--navy);box-shadow:none}.btn.outline{background:transparent;border:1.5px solid rgba(255,255,255,.85);box-shadow:none}.btn.ghost{background:#EFF6F6;color:var(--teal-dark);box-shadow:none}
.hero{position:relative;min-height:620px;color:white;overflow:hidden;background:linear-gradient(90deg,rgba(6,28,53,.96),rgba(6,28,53,.65),rgba(6,28,53,.15)),url('img/park_scene.png') center/cover no-repeat}
.hero:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 75% 45%,rgba(201,155,53,.22),transparent 35%)}
.hero-inner{position:relative;display:grid;grid-template-columns:1.05fr .95fr;gap:48px;align-items:center;min-height:620px;padding:58px 0}.hero h1{font-size:clamp(44px,6vw,76px);line-height:.98;margin:0 0 22px;font-weight:900;letter-spacing:-.04em}.hero h1 span{color:var(--gold)}
.lead{font-size:clamp(18px,2.2vw,23px);max-width:620px;color:rgba(255,255,255,.9);margin:0 0 28px}.hero-actions{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:42px}.hero-card{justify-self:end;width:min(390px,100%);background:rgba(7,25,45,.65);border:1px solid rgba(255,255,255,.18);border-radius:20px;padding:18px;box-shadow:var(--shadow)}
.hero-card img{border-radius:16px;min-height:420px;object-fit:cover;object-position:center}.trust-row{display:flex;gap:18px;flex-wrap:wrap}.trust{display:flex;align-items:center;gap:10px;font-size:13px;font-weight:850;text-transform:uppercase;color:#fff}.icon-badge{width:44px;height:44px;border-radius:50%;display:grid;place-items:center;background:rgba(106,159,160,.95);font-size:22px}.section{padding:70px 0}.section.tight{padding:48px 0}.dark-band{background:linear-gradient(120deg,var(--navy),#082C4E);color:white}.teal-band{background:linear-gradient(120deg,var(--teal-dark),var(--teal));color:white}.center{text-align:center}.eyebrow{color:var(--gold);font-weight:850;text-transform:uppercase;letter-spacing:.12em;font-size:12px;margin:0 0 10px}.section h2{font-size:clamp(31px,4vw,48px);line-height:1.08;margin:0 0 14px;letter-spacing:-.03em}.section h2 span,.gold{color:var(--gold)}.sub{color:var(--muted);font-size:18px;margin:0 auto 34px;max-width:760px}.dark-band .sub,.teal-band .sub{color:rgba(255,255,255,.84)}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:26px}.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:42px}.feature{padding:24px;text-align:center;border-right:1px solid rgba(255,255,255,.18)}.feature:last-child{border-right:0}.feature .big-icon{font-size:34px;color:var(--gold);margin-bottom:14px}.feature h3,.card h3{margin:0 0 8px;font-size:16px;text-transform:uppercase;letter-spacing:.02em}.feature p,.card p{margin:0;color:rgba(255,255,255,.78);font-size:14px}.card{background:white;border:1px solid var(--line);border-radius:18px;padding:28px;box-shadow:0 10px 30px rgba(6,28,53,.06)}.card .big-icon{font-size:30px;margin-bottom:14px;color:var(--teal-dark)}.card p{color:var(--muted)}
.location{display:grid;grid-template-columns:.8fr 1.2fr;align-items:center;gap:42px}.map-card{min-height:310px;border-radius:20px;overflow:hidden;background:linear-gradient(135deg,#E9F5F5,#DDECF6);position:relative;border:1px solid var(--line)}.map-card:before{content:"";position:absolute;inset:0;background:url('img/park_scene.png') center/cover no-repeat;opacity:.24}.pin{position:absolute;left:50%;top:46%;transform:translate(-50%,-50%);background:white;border-radius:14px;padding:18px 22px;box-shadow:var(--shadow);font-weight:850}.pin small{display:block;color:var(--gold);font-size:13px;margin-top:2px}.cta-row{display:flex;justify-content:space-between;align-items:center;gap:24px}.footer{background:var(--navy);color:white;padding:34px 0}.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:24px}.footer img{height:68px}.footer nav{display:flex;gap:28px;font-size:12px;font-weight:800;text-transform:uppercase}.social{display:flex;gap:12px}.circle{width:38px;height:38px;border-radius:50%;background:white;color:var(--navy);display:grid;place-items:center;font-weight:900}
.page-hero{background:linear-gradient(115deg,var(--navy),#072947);color:white;padding:64px 0}.page-hero-inner{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center}.page-hero h1{font-size:clamp(42px,5vw,62px);line-height:1.04;margin:0 0 12px;letter-spacing:-.035em}.page-hero img{border-radius:18px;box-shadow:var(--shadow);max-height:340px;object-fit:cover;width:100%}
.specs{display:grid;grid-template-columns:.9fr 1.1fr;gap:34px;align-items:center}.checklist{list-style:none;padding:0;margin:22px 0 0}.checklist li{display:flex;gap:12px;align-items:flex-start;margin:14px 0;color:var(--charcoal)}.checklist li:before{content:"✓";color:var(--gold);font-weight:900;border:1px solid var(--gold);border-radius:50%;width:22px;height:22px;display:inline-grid;place-items:center;flex:0 0 22px;font-size:12px}.mock-panel{background:#F2F5F8;border-radius:22px;padding:22px;border:1px solid var(--line)}.mock-panel img{border-radius:14px}
.layout-strip{display:grid;grid-template-columns:repeat(6,1fr);gap:10px}.mini-screen{height:250px;background:#F1F4F7;border:1px solid var(--line);display:flex;flex-direction:column;border-radius:10px;overflow:hidden;text-align:center;font-size:11px;font-weight:850;color:var(--navy)}.mini-screen .civic{flex:1;display:grid;place-items:center;padding:10px}.mini-screen .half{height:42%;display:grid;place-items:center;background:var(--teal);color:white;padding:8px}.mini-screen .banner{height:32px;background:var(--gold);color:white;display:grid;place-items:center;font-size:9px}.mini-screen.premium{background:var(--navy);color:white}.mini-screen.premium .civic{font-size:15px}.legend{display:flex;gap:16px;flex-wrap:wrap;margin-top:14px;color:var(--muted);font-size:13px}.sw{width:14px;height:14px;border-radius:3px;display:inline-block;margin-right:6px;vertical-align:-2px}.sw.c{background:#F1F4F7}.sw.h{background:var(--teal)}.sw.b{background:var(--gold)}.sw.p{background:var(--navy)}
.promo{background:linear-gradient(90deg,var(--navy),rgba(6,28,53,.85)),url('img/promenade_mockup.png') center/cover no-repeat;color:white}.promo .bullets{list-style:none;padding:0;margin:20px 0}.promo li{margin:12px 0}.promo li:before{content:"▣";color:var(--gold);margin-right:10px}.contact-wrap{display:grid;grid-template-columns:1fr 1fr;gap:30px}.form-card{background:white;border:1px solid var(--line);border-radius:20px;padding:26px;box-shadow:0 10px 30px rgba(6,28,53,.06)}.form-card h2{font-size:22px;margin:0 0 18px;color:var(--teal-dark);display:flex;align-items:center;gap:12px}.field{margin-bottom:16px}.field label{display:block;font-weight:850;font-size:13px;margin-bottom:7px;color:var(--navy)}.required{color:#C34040}input,select,textarea{width:100%;border:1px solid #D6DCE5;border-radius:8px;padding:12px 13px;font:inherit;color:var(--navy);background:white}textarea{min-height:105px;resize:vertical}.inline{display:flex;gap:12px}.choices{display:grid;gap:10px}.choice{display:flex;gap:10px;align-items:center;color:var(--charcoal);font-size:14px}.choice input{width:auto}.privacy{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:center;background:#EFF7F7;border:1px solid #D9EDED;border-radius:16px;padding:24px;margin:30px 0}.next{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}.next-step{display:flex;gap:12px;align-items:flex-start}.next-step strong{display:block;color:white;font-size:13px}.next-step span{color:rgba(255,255,255,.75);font-size:13px}.hidden-note{font-size:13px;color:var(--muted);margin-top:12px}.mobile-only{display:none}.status{padding:14px;border-radius:10px;margin-top:12px;display:none}.status.ok{display:block;background:#ECFDF3;color:#027A48}.status.err{display:block;background:#FEF3F2;color:#B42318}
@media(max-width:900px){.header{height:auto}.nav{padding:12px 0;align-items:flex-start}.logo img{height:58px}.menu{gap:12px;flex-wrap:wrap;justify-content:flex-end;font-size:11px}.hero-inner,.page-hero-inner,.specs,.location,.contact-wrap,.privacy{grid-template-columns:1fr}.hero-card{justify-self:start}.grid-4,.grid-3,.next{grid-template-columns:1fr 1fr}.layout-strip{grid-template-columns:repeat(2,1fr)}.feature{border:0}.footer-inner,.cta-row{flex-direction:column;align-items:flex-start}.footer nav{flex-wrap:wrap}.page-hero img{display:none}}
@media(max-width:560px){.grid-4,.grid-3,.next{grid-template-columns:1fr}.hero{min-height:auto}.hero-inner{min-height:auto;padding:46px 0}.hero-card img{min-height:280px}.inline{flex-direction:column}.logo{min-width:0}.menu .btn{display:none}.layout-strip{grid-template-columns:1fr}.mini-screen{height:220px}.mobile-only{display:block}}

/* --- V2 polish updates --- */
.header{height:86px;box-shadow:0 3px 18px rgba(6,28,53,.04)}
.logo{min-width:300px}.logo img{height:62px;max-width:330px;object-fit:contain}.logo-small img{height:58px;max-width:240px;object-fit:contain}.footer img{height:58px;max-width:240px;object-fit:contain}
.menu a.btn{padding:13px 20px;border-radius:8px;color:#fff;background:var(--navy);box-shadow:0 10px 24px rgba(6,28,53,.14)}
.menu a.btn:after{display:none!important}.menu a.btn:hover{transform:translateY(-1px);background:#092848}.menu a.btn.active:after{display:none!important}
.hero{min-height:600px;background:linear-gradient(90deg,rgba(6,28,53,.96),rgba(6,28,53,.72),rgba(6,28,53,.28)),url('img/park_scene.png') center/cover no-repeat}.hero-inner{grid-template-columns:1.1fr .75fr;min-height:600px}.hero h1{max-width:650px}.lead{max-width:610px}.hero-card{display:none}
.hero-display{justify-self:end;width:min(330px,100%);height:520px;border-radius:20px;background:#0B1624;border:10px solid rgba(255,255,255,.08);box-shadow:0 28px 70px rgba(0,0,0,.36), inset 0 0 0 1px rgba(255,255,255,.12);overflow:hidden;display:flex;flex-direction:column;transform:perspective(900px) rotateY(-5deg)}
.screen-top{height:86px;background:#071A31;color:white;display:flex;gap:12px;align-items:center;justify-content:center;flex-direction:column;border-bottom:1px solid rgba(255,255,255,.1);text-transform:uppercase;letter-spacing:.06em;font-size:13px}.screen-logo{width:36px;height:36px;border:1px solid rgba(201,155,53,.8);border-radius:50%;display:grid;place-items:center;color:var(--gold);font-weight:900;font-size:11px}.screen-main{flex:1;background:linear-gradient(180deg,#0B3763,#0D5F7D);padding:26px 24px;text-align:center;display:flex;flex-direction:column;justify-content:center}.screen-label{margin:0 0 8px;text-transform:uppercase;letter-spacing:.14em;color:#D9F0F0;font-size:11px;font-weight:850}.screen-main h3{font-size:31px;line-height:1.05;margin:0 0 22px;color:white}.screen-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}.screen-grid span{border:1px solid rgba(255,255,255,.35);border-radius:8px;padding:10px 4px;font-size:11px;text-transform:uppercase;font-weight:900;background:rgba(255,255,255,.08)}.screen-photo{height:92px;background:linear-gradient(135deg,rgba(201,155,53,.96),rgba(201,155,53,.72));display:grid;place-items:center;text-transform:uppercase;font-size:13px;font-weight:900;color:#fff;letter-spacing:.06em}.screen-footer{height:58px;background:#05192F;color:white;display:grid;place-items:center;text-transform:uppercase;font-size:12px;font-weight:900;letter-spacing:.04em}
.trust-row{gap:14px}.trust{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.13);border-radius:999px;padding:10px 14px;backdrop-filter:blur(8px);letter-spacing:.04em}.trust-dot{width:18px;height:18px;border-radius:50%;border:2px solid var(--teal);position:relative;display:inline-block;flex:0 0 18px}.trust-dot:after{content:"";position:absolute;inset:4px;border-radius:50%;background:var(--gold)}.trust-dot.place:after{border-radius:50% 50% 50% 0;transform:rotate(-45deg);background:var(--gold)}.trust-dot.curated:after{width:8px;height:4px;left:3px;top:4px;border-left:2px solid white;border-bottom:2px solid white;background:transparent;border-radius:0;transform:rotate(-45deg)}
.icon-line{width:52px;height:52px;border-radius:50%;background:rgba(106,159,160,.18);border:1px solid rgba(106,159,160,.35);margin:0 auto 16px;position:relative}.dark-band .icon-line{background:rgba(201,155,53,.08);border-color:rgba(201,155,53,.35)}.icon-line:before,.icon-line:after{content:"";position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);border-color:var(--gold)}.card .icon-line:before,.card .icon-line:after{border-color:var(--teal-dark)}.icon-line.civic:before{width:24px;height:18px;border:2px solid var(--gold);border-top:0}.icon-line.civic:after{width:30px;height:2px;background:var(--gold);box-shadow:0 -16px 0 var(--gold), -10px -8px 0 -1px var(--gold),0 -8px 0 -1px var(--gold),10px -8px 0 -1px var(--gold)}.icon-line.business:before{width:26px;height:16px;border:2px solid var(--gold);border-radius:4px}.icon-line.business:after{width:16px;height:2px;background:var(--gold);box-shadow:0 -7px 0 var(--gold),0 7px 0 var(--gold)}.icon-line.people:before{width:26px;height:14px;border:2px solid var(--gold);border-radius:14px 14px 6px 6px;top:58%}.icon-line.people:after{width:8px;height:8px;border:2px solid var(--gold);border-radius:50%;top:36%;box-shadow:-13px 6px 0 -2px transparent,13px 6px 0 -2px transparent}.icon-line.leaf:before{width:24px;height:14px;border:2px solid var(--gold);border-radius:100% 0 100% 0;transform:translate(-50%,-50%) rotate(-25deg)}.icon-line.leaf:after{width:22px;height:2px;background:var(--gold);transform:translate(-50%,-50%) rotate(-25deg)}.icon-line.megaphone:before{width:24px;height:16px;border:2px solid var(--teal-dark);border-left:0;transform:translate(-50%,-50%) skewY(-16deg)}.icon-line.megaphone:after{width:12px;height:2px;background:var(--teal-dark);box-shadow:0 8px 0 var(--teal-dark);left:61%}.icon-line.storefront:before{width:28px;height:20px;border:2px solid var(--teal-dark);border-top:8px solid var(--teal-dark);border-radius:3px}.icon-line.storefront:after{width:8px;height:10px;border:2px solid white;top:58%}.icon-line.place:before{width:20px;height:20px;border:2px solid var(--teal-dark);border-radius:50% 50% 50% 0;transform:translate(-50%,-58%) rotate(-45deg)}.icon-line.place:after{width:6px;height:6px;background:var(--teal-dark);border-radius:50%}.icon-line.growth:before{width:28px;height:20px;border-left:2px solid var(--teal-dark);border-bottom:2px solid var(--teal-dark)}.icon-line.growth:after{width:24px;height:14px;border-top:3px solid var(--teal-dark);border-right:3px solid var(--teal-dark);transform:translate(-45%,-45%) rotate(-25deg)}
.form-card h2 .section-dot{width:34px;height:34px;border-radius:50%;background:var(--teal-dark);display:inline-block;position:relative;flex:0 0 34px}.form-card h2 .section-dot:after{content:"";position:absolute;inset:10px;border-radius:50%;border:2px solid white}.step-badge{width:44px;height:44px;border-radius:50%;background:rgba(106,159,160,.95);display:grid;place-items:center;color:white;font-weight:900;flex:0 0 44px}.next-step .icon-badge{font-size:0}.hidden-note{opacity:.75}.page-hero{padding:56px 0}.page-hero img{max-height:300px;object-position:center}.mock-panel{box-shadow:0 14px 40px rgba(6,28,53,.07)}
@media(max-width:900px){.logo img{height:54px;max-width:240px}.logo{min-width:210px}.hero-inner{grid-template-columns:1fr}.hero-display{justify-self:start;width:280px;height:440px;transform:none}.menu a.btn{padding:11px 15px}.trust{font-size:12px}.page-hero img{display:block;max-height:240px}.hero{background-position:center}.screen-main h3{font-size:25px}}
@media(max-width:560px){.header{height:auto}.nav{align-items:center}.logo img{height:46px;max-width:190px}.hero-display{display:none}.trust-row{display:grid;grid-template-columns:1fr}.trust{width:max-content}.menu{gap:10px}.screen-main h3{font-size:22px}}

/* --- V3 targeted homepage refinements --- */
.hero-inner{grid-template-columns:1fr;max-width:1120px;align-items:center}
.hero-inner>div:first-child{max-width:860px}
.hero h1{max-width:760px}
.lead{max-width:720px}
.hero{background:linear-gradient(90deg,rgba(6,28,53,.96),rgba(6,28,53,.76) 48%,rgba(6,28,53,.25) 78%,rgba(6,28,53,.05)),url('img/park_scene.png') center/cover no-repeat}
.trust-icon{width:20px;height:20px;display:inline-flex;align-items:center;justify-content:center;flex:0 0 20px;color:var(--gold)}
.trust-icon svg,.site-icon svg{width:100%;height:100%;display:block;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.site-icon{width:56px;height:56px;border-radius:50%;display:grid;place-items:center;margin:0 auto 18px;color:var(--gold);background:rgba(201,155,53,.08);border:1px solid rgba(201,155,53,.38);padding:13px}
.site-icon.light{color:var(--teal-dark);background:rgba(106,159,160,.16);border-color:rgba(106,159,160,.35)}
.feature .site-icon{margin-bottom:18px}
.card .site-icon{margin-bottom:18px}
@media(max-width:900px){.hero-inner>div:first-child{max-width:100%}.hero{background:linear-gradient(90deg,rgba(6,28,53,.96),rgba(6,28,53,.72)),url('img/park_scene.png') center/cover no-repeat}}

/* --- V4 sponsor opportunities refinements --- */
.sponsor-hero-img{object-position:center center;transform:none;}
.specs .mock-panel{background:linear-gradient(180deg,#F6F9FC,#EEF3F7);padding:14px;border-radius:22px;overflow:hidden}
.specs .mock-panel img{border-radius:16px;width:100%;height:auto}
.placement-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-top:34px;align-items:start}
.placement-card{background:white;border:1px solid var(--line);border-radius:22px;padding:22px;box-shadow:0 14px 34px rgba(6,28,53,.08);transition:transform .18s ease,box-shadow .18s ease}
.placement-card:hover{transform:translateY(-3px);box-shadow:0 20px 50px rgba(6,28,53,.13)}
.placement-card img{width:100%;height:430px;object-fit:contain;border-radius:16px;background:#F7F9FC;border:1px solid #E8EDF3;padding:10px}
.placement-card h3{font-size:18px;margin:18px 0 8px;text-transform:uppercase;letter-spacing:.02em;color:var(--navy)}
.placement-card p{margin:0;color:var(--muted);font-size:15px;line-height:1.55}
.location-visual{position:relative;border-radius:22px;overflow:hidden;min-height:360px;box-shadow:0 22px 56px rgba(0,0,0,.24);border:1px solid rgba(255,255,255,.22)}
.location-visual img{width:100%;height:100%;min-height:360px;object-fit:cover;object-position:center;filter:saturate(1.03) contrast(1.02)}
.location-visual:after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(6,28,53,.72),rgba(6,28,53,.08) 55%)}
.location-callout{position:absolute;left:24px;right:24px;bottom:50px;z-index:2;background:rgba(255,255,255,.92);color:var(--navy);border-radius:16px;padding:18px 20px;box-shadow:0 10px 28px rgba(0,0,0,.15)}
.location-callout strong{display:block;font-size:19px;margin-bottom:4px}.location-callout span{display:block;color:var(--muted);font-size:14px;line-height:1.45}.visual-note{position:absolute;left:24px;right:24px;bottom:15px;z-index:3;margin:0;color:rgba(255,255,255,.86);font-size:11px;line-height:1.3;text-shadow:0 1px 2px rgba(0,0,0,.35)}
@media(max-width:900px){.placement-cards{grid-template-columns:1fr}.placement-card img{height:380px}.sponsor-hero-img{transform:none}.location-visual{min-height:300px}.location-visual img{min-height:300px}}
