﻿/* =========================================================
   DESIGN TOKENS
   Palette pulled from the brief + the refined navy/gold comp:
   - Navy ink (primary dark / brand)   #011D46
   - Deeper ink (headers)              #03152F
   - Logo rose accent                  #BE9484
   - Soft logo rose                    #F0C7B3
   - Neutral button grey               #D9D9D9
   - Off-white background              #F8F8F8
   - Near-black ink                    #161616
   ========================================================= */
@font-face {
  font-family: "InstrumentSansLocal";
  src: url("../fonts/InstrumentSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy:        #011D46;
  --navy-deep:   #03152F;
  --navy-soft:   #0A2A55;
  --gold:        #BE9484;
  --gold-soft:   #F0C7B3;
  --logo-gradient: linear-gradient(135deg, #a67b6d 0%, #be9484 18%, #f0c7b3 48%, #d4aa97 64%, #a47666 100%);
  --logo-gradient-hover: linear-gradient(135deg, #b88c7c 0%, #f0c7b3 42%, #be9484 72%, #a47666 100%);
  --grey-btn:    #D9D9D9;
  --bg:          #F8F8F8;
  --ink:         #161616;
  --muted:       #5C6470;
  --line:        #E6E6E6;
  --white:       #FFFFFF;

  --serif: "InstrumentSansLocal", Helvetica, Arial, sans-serif;
  --sans:  "InstrumentSansLocal", Helvetica, Arial, sans-serif;

  --maxw: 1280px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 18px 50px -28px rgba(1,29,70,.45);
  --shadow-soft: 0 10px 30px -18px rgba(1,29,70,.35);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 56px); }
.eyebrow {
  font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
}
.section-title {
  font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -.01em;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--navy);
  overflow: visible;
}
.section-title em {
  display: inline-block;
  margin-right: -.18em;
  padding: 0 .28em .12em 0;
  background: var(--logo-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  letter-spacing: 0;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif; font-weight: 400; font-size: .9rem;
  letter-spacing: 0; padding: .95rem 1.8rem; border-radius: 999px;
  background: var(--logo-gradient);
  color: var(--navy-deep);
  border: 1px solid rgba(240,199,179,.72);
  box-shadow: 0 14px 34px -16px rgba(166,123,109,.9);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  will-change: transform;
}
.btn:hover {
  background: var(--logo-gradient-hover);
  transform: translateY(-3px);
  box-shadow: 0 20px 44px -16px rgba(166,123,109,.95);
}
.btn-gold,
.btn-logo-gradient,
.btn-navy,
.btn-ghost,
.btn-grey {
  background: var(--logo-gradient);
  color: var(--navy-deep);
  border-color: rgba(240,199,179,.72);
  box-shadow: 0 14px 34px -16px rgba(166,123,109,.9);
}
.btn-gold:hover,
.btn-logo-gradient:hover,
.btn-navy:hover,
.btn-ghost:hover,
.btn-grey:hover {
  background: var(--logo-gradient-hover);
  color: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 20px 44px -16px rgba(166,123,109,.95);
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-scrolled,
.site-header:has(.nav.open) {
  background: linear-gradient(180deg, rgba(3,42,88,.82) 0%, rgba(1,29,70,.72) 100%);
  backdrop-filter: blur(18px) saturate(145%);
  border-bottom-color: rgba(255,255,255,.12);
  box-shadow: 0 16px 42px -34px rgba(1,29,70,.82);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 1.05rem; }
.site-header.is-scrolled .nav,
.site-header:has(.nav.open) .nav { padding-block: .42rem; }
.brand {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  align-self: center;
  color: #fff;
  width: clamp(94px, 8vw, 124px);
  height: clamp(72px, 5.8vw, 94px);
  overflow: visible;
  transition: width .48s var(--ease), height .48s var(--ease);
}
.brand-logo {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  grid-area: 1 / 1;
  transform-origin: center;
  transition: opacity .48s var(--ease), transform .48s var(--ease), height .48s var(--ease);
}
.brand-logo-full {
  height: clamp(78px, 6.4vw, 104px);
  opacity: 1;
  transform: none;
}
.brand-logo-text {
  width: clamp(90px, 7.6vw, 118px);
  height: auto;
  opacity: 0;
  transform: translateY(8px) scale(.62);
}
.site-header.is-scrolled .brand,
.nav.open .brand {
  width: clamp(94px, 8vw, 124px);
}
.site-header.is-scrolled .brand-logo-full,
.nav.open .brand-logo-full {
  opacity: 0;
  transform: translateY(-18px) scale(.72);
  pointer-events: none;
}
.site-header.is-scrolled .brand-logo-text,
.nav.open .brand-logo-text {
  opacity: 1;
  transform: translateY(0) scale(1.5);
}
.brand-mark {
  width: 46px; height: 46px; border-radius: 10px; flex: none;
  border: 1.5px solid var(--gold);
  display: grid; place-items: center;
  font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--gold);
  background: rgba(166,123,109,.08);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .b1 { font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: .14em; font-size: 1.18rem; }
.brand-text .b2 {
  font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif; font-size: .58rem; letter-spacing: .42em;
  color: var(--gold); margin-top: 4px; padding-top: 4px;
  border-top: 1px solid rgba(166,123,109,.4); text-align: center;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .92rem; font-weight: 400; color: rgba(255,255,255,.82);
  position: relative; padding-block: .3rem; transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: #BE9484; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-mobile-actions { display: none; }
.nav-right { display: flex; align-items: center; gap: 1.4rem; }
.nav-right .btn {
  font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif;
  font-size: .8rem;
  font-weight: 400;
  padding: .68rem 1.15rem;
  letter-spacing: 0;
}
.nav-phone { display: flex; align-items: center; gap: .55rem; color: #fff; font-weight: 500; font-size: .95rem; }
.nav-phone .ico { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(166,123,109,.5); display: grid; place-items: center; color: var(--gold); }
.nav-toggle { display: none; width: 44px; height: 44px; color: #fff; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 24px; height: 2px; background: #fff; transition: .3s var(--ease); position: relative;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top: 7px; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(1,21,47,.55) 0%, rgba(1,21,47,.25) 38%, rgba(1,21,47,.92) 100%),
    linear-gradient(90deg, rgba(1,21,47,.85) 0%, rgba(1,21,47,.15) 55%, transparent 100%);
}
.hero-inner { width: 100%; padding-bottom: clamp(3rem, 7vh, 6rem); padding-top: 9rem; }
.hero h1 {
  font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0;
  font-size: clamp(2.8rem, 8vw, 6.2rem); line-height: .98; margin-bottom: 1.4rem; max-width: 14ch;
  color: #fff;
}
.hero h1 em {
  background: var(--logo-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-style: normal !important;
}
.hero p { max-width: 52ch; font-size: clamp(1rem, 1.4vw, 1.18rem); color: rgba(255,255,255,.82); font-weight: 300; margin-bottom: 2.2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* feature strip floating over the seam */
.hero-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); overflow: hidden;
  margin-top: 3rem; max-width: 760px; backdrop-filter: blur(6px);
}
.hero-features .f { background: rgba(1,21,47,.45); padding: 1.3rem 1.5rem; display: flex; gap: .9rem; align-items: center; }
.hero-features .f-ico { width: 40px; height: 40px; flex: none; border-radius: 9px; background: rgba(166,123,109,.14); color: var(--gold); display: grid; place-items: center; }
.hero-features .f b { display: block; font-size: .96rem; font-weight: 600; color: #fff; }
.hero-features .f span { font-size: .8rem; color: rgba(255,255,255,.62); }

/* =========================================================
   ABOUT / INTRO
   ========================================================= */
.about { padding-block: clamp(5rem, 11vh, 8rem); background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.about-copy .eyebrow { margin-bottom: 1.1rem; display: inline-block; }
.about-copy p { font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif; color: var(--muted); margin-top: 1.4rem; font-size: 1.05rem; max-width: 52ch; }
.about-stats { display: flex; gap: 2.5rem; margin-top: 2.6rem; flex-wrap: wrap; }
.about-stats .s b {
  font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 2.6rem;
  color: var(--navy);
  display: block;
  line-height: 1;
}
.about-stats .s span { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.about-media { position: relative; }
.about-media .m-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4/5; }
.about-media .m-main img { width: 100%; height: 100%; object-fit: cover; }
.about-media .m-badge {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--navy); color: #fff; border-radius: var(--radius-sm);
  padding: 1.4rem 1.6rem; box-shadow: var(--shadow-card); max-width: 240px;
}
.about-media .m-badge .addr {
  font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: .35rem;
}
.about-media .m-badge p {
  font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}

/* =========================================================
   UNITS / FLOOR PLANS
   ========================================================= */
.units { padding-block: clamp(5rem, 11vh, 8rem); background: var(--white); }
.units-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 3.2rem; }
.units-head .lead { max-width: 56ch; }
.units-head .lead .eyebrow { margin-bottom: 1rem; display: inline-block; }
.units-head .lead p { font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif; color: var(--muted); margin-top: 1rem; }
.units-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.unit-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-soft);
  font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s var(--ease);
}
.unit-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-card); border-color: rgba(166,123,109,.5); }
.unit-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.unit-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.unit-card:hover .unit-media img { transform: scale(1.07); }

.unit-tag {
  position: absolute; top: 14px; left: 14px; background: var(--navy);
  color: #fff; font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  padding: .45rem .85rem; border-radius: 8px; text-transform: uppercase;
}
.unit-fav {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.92); display: grid; place-items: center; color: var(--navy);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.unit-fav:hover { background: var(--logo-gradient); color: var(--navy-deep); transform: scale(1.1); }
.unit-fav.active { background: var(--logo-gradient); color: var(--navy-deep); }
.unit-body { padding: 1.6rem 1.6rem 1.8rem; }
.unit-body h3 { font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif; font-weight: 600; font-size: 1.6rem; color: var(--navy); }
.unit-body .sqft { color: var(--muted); font-size: .9rem; margin-top: .2rem; }
.unit-specs { display: flex; gap: 1.2rem; margin-block: 1.1rem; padding-block: 1.1rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.unit-specs .sp { display: flex; align-items: center; gap: .45rem; font-size: .85rem; color: var(--ink); }
.unit-specs .sp svg { color: var(--gold); }
.unit-body .desc { color: var(--muted); font-size: .92rem; min-height: 2.8em; }
.unit-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-top: 1.4rem; flex-wrap: wrap; }
.unit-price .lbl { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.unit-price .amt { font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif; font-weight: 700; font-size: 1.9rem; color: var(--gold); line-height: 1; }
.unit-price .amt span { font-size: .9rem; color: var(--muted); font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif; font-weight: 500; }
.unit-foot .btn { padding: .75rem 1.4rem; font-size: .82rem; }
.units-carousel-controls { display: none; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-band { padding-bottom: clamp(4rem, 9vh, 7rem); background: var(--white); font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif; }
.cta-inner {
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
  display: grid; grid-template-columns: 1.3fr 1fr auto; gap: 2.5rem; align-items: center;
  position: relative; overflow: hidden;
}
.cta-inner::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(166,123,109,.24), transparent 70%); pointer-events: none;
}
.cta-inner h3 { font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif; font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.05; }
.cta-inner p { color: rgba(255,255,255,.72); font-size: .95rem; margin-top: .7rem; max-width: 40ch; }
.cta-perks { display: flex; flex-direction: column; gap: 1rem; }
.cta-perks .p { display: flex; gap: .7rem; align-items: center; }
.cta-perks .p svg { color: var(--gold); flex: none; }
.cta-perks .p b { font-size: .9rem; display: block; }
.cta-perks .p span { font-size: .78rem; color: rgba(255,255,255,.6); }
.cta-action { display: flex; flex-direction: column; align-items: flex-end; gap: .8rem; }
.cta-action small { color: rgba(255,255,255,.6); font-size: .85rem; }
.cta-action small b { color: var(--gold); }
/* =========================================================
   ASSURANCES STRIP
   ========================================================= */
.assure { padding-bottom: clamp(5rem, 11vh, 8rem); background: var(--white); font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif; }
.assure-grid { background: var(--bg); border-radius: var(--radius); display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.assure-grid .a { padding: 2rem 1.8rem; display: flex; gap: 1rem; align-items: center; border-right: 1px solid var(--line); }
.assure-grid .a:last-child { border-right: none; }
.assure-grid .a-ico { width: 48px; height: 48px; flex: none; border-radius: 12px; background: rgba(166,123,109,.12); color: var(--gold); display: grid; place-items: center; }
.assure-grid .a b { display: block; font-size: .98rem; color: var(--navy); }
.assure-grid .a span { font-size: .82rem; color: var(--muted); }

/* =========================================================
   AMENITIES
   ========================================================= */
.amenities { padding-block: clamp(5rem, 11vh, 8rem); background: var(--bg); position: relative; }
.amenities .am-head { text-align: center; max-width: 640px; margin: 0 auto 3.4rem; }
.amenities .am-head .eyebrow { display: inline-block; margin-bottom: 1rem; }
.amenities .am-head p { color: var(--muted); margin-top: 1rem; }

/* Category sub-headers */
.am-cat { margin-top: 3.2rem; }
.am-cat:first-of-type { margin-top: 0; }
.am-cat-title { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.6rem; }
.am-cat-title h3 { font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif; font-weight: 600; font-size: 1.7rem; color: var(--navy); white-space: nowrap; }
.am-cat-title .rule { height: 1px; background: var(--line); flex: 1; }
.am-cat-title .num { font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif; font-size: .78rem; letter-spacing: .18em; color: var(--gold); font-weight: 600; }

.am-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.am-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.6rem 1.5rem; display: flex; flex-direction: column; gap: .9rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.am-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(166,123,109,.55); }
.am-item .am-ico {
  width: 46px; height: 46px; flex: none; border-radius: 12px;
  background: rgba(166,123,109,.12); color: var(--gold);
  display: grid; place-items: center;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.am-item:hover .am-ico { background: var(--navy); color: var(--gold); }
.am-item b { font-size: 1rem; color: var(--navy); font-weight: 600; }
.am-item span { font-size: .86rem; color: var(--muted); line-height: 1.55; }

/* Featured amenity banner */
.am-feature {
  margin-top: 3.4rem; border-radius: var(--radius); overflow: hidden;
  display: grid; grid-template-columns: 1.1fr 1fr; min-height: 320px;
  background: var(--navy); color: #fff;
}
.am-feature .af-copy { padding: clamp(2rem, 4vw, 3.4rem); display: flex; flex-direction: column; justify-content: center; }
.am-feature .af-copy h3 { font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif; font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.05; }
.am-feature .af-copy p { color: rgba(255,255,255,.75); margin-top: 1rem; font-size: .98rem; max-width: 44ch; }
.am-feature .af-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.am-feature .af-list span {
  font-size: .8rem; padding: .45rem .9rem; border-radius: 999px;
  border: 1px solid rgba(166,123,109,.4); color: var(--gold-soft);
}
.am-feature .af-media { position: relative; }
.am-feature .af-media img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { padding-block: clamp(5rem, 11vh, 8rem); background: var(--white); }
.gallery .g-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.gallery .g-head .eyebrow { display: inline-block; margin-bottom: 1rem; }
.gallery .g-head p { color: var(--muted); margin-top: 1rem; max-width: 50ch; }
.g-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.g-cell { position: relative; overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; }
.g-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.g-cell:hover img { transform: scale(1.08); }
.g-cell::after {
  content: attr(data-label); position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 1rem 1.2rem;
  background: linear-gradient(180deg, transparent 40%, rgba(1,21,47,.78));
  color: #fff; font-size: .9rem; font-weight: 500; letter-spacing: .02em;
  opacity: 0; transition: opacity .4s var(--ease);
}
.g-cell:hover::after { opacity: 1; }
.g-cell.tall { grid-row: span 2; }
.g-cell.wide { grid-column: span 2; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding-top: clamp(4rem, 9vh, 6rem); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3.5rem; }
.footer-brand .brand {
  display: inline-flex;
  width: auto;
  height: auto;
  margin-bottom: 2.8rem;
}
.footer-logo {
  width: auto;
  height: clamp(138px, 13vw, 184px);
  object-fit: contain;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-brand p { font-size: .92rem; max-width: 36ch; line-height: 1.7; text-align: start; }
.footer-col h4 { font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; }
.footer-col a { display: block; font-size: .92rem; padding-block: .42rem; color: rgba(255,255,255,.7); transition: color .3s var(--ease), padding-left .3s var(--ease); }
.footer-col a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact .ci { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; margin-bottom: 1rem; }
.footer-contact .ci:last-of-type { align-items: center; }
.footer-contact .ci svg { color: var(--gold); flex: none; margin-top: 3px; }
.footer-contact .ci:last-of-type svg { margin-top: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.6rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-bottom .socials { display: flex; gap: .8rem; }
.footer-bottom .socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; color: rgba(255,255,255,.7); transition: .3s var(--ease); }
.footer-bottom .socials a:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); transform: translateY(-3px); }

/* =========================================================
   TOUR MODAL
   ========================================================= */
.tour-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 40px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .34s var(--ease);
}
.tour-modal.is-open,
.thanks-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.thanks-modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 40px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .34s var(--ease);
}
.tour-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1,21,47,.72);
  backdrop-filter: blur(14px) saturate(130%);
}
.tour-dialog {
  position: relative;
  width: min(100%, 520px);
  border: 1px solid rgba(240,199,179,.28);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(3,42,88,.96), rgba(1,21,47,.98)),
    var(--navy-deep);
  color: #fff;
  box-shadow: 0 28px 80px -38px rgba(1,21,47,.9);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  transform: translateY(18px) scale(.96);
  opacity: 0;
  transition: transform .42s var(--ease), opacity .34s var(--ease);
}
.tour-modal.is-open .tour-dialog,
.thanks-modal.is-open .thanks-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.thanks-dialog {
  position: relative;
  width: min(100%, 440px);
  border: 1px solid rgba(240,199,179,.28);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(3,42,88,.96), rgba(1,21,47,.98)),
    var(--navy-deep);
  color: #fff;
  box-shadow: 0 28px 80px -38px rgba(1,21,47,.9);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  transform: translateY(18px) scale(.96);
  opacity: 0;
  transition: transform .42s var(--ease), opacity .34s var(--ease);
}
.thanks-dialog h2 {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  line-height: 1.08;
  font-weight: 600;
}
.thanks-dialog p {
  color: rgba(255,255,255,.72);
  margin: .85rem auto 1.6rem;
  max-width: 34ch;
}
.thanks-dialog .btn {
  justify-content: center;
  color: #000;
  -webkit-text-fill-color: #000;
  min-width: 160px;
}
.tour-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  transition: background .28s var(--ease), transform .28s var(--ease);
}
.tour-close:hover {
  background: rgba(190,148,132,.22);
  transform: translateY(-2px);
}
.tour-eyebrow {
  display: inline-block;
  color: var(--gold-soft);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.tour-dialog h2 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1;
  font-weight: 600;
}
.tour-dialog p {
  color: rgba(255,255,255,.72);
  margin-top: .85rem;
  max-width: 42ch;
}
.tour-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}
.tour-form label {
  display: grid;
  gap: .45rem;
}
.tour-form label span {
  font-size: .78rem;
  color: var(--gold-soft);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tour-form input,
.unit-select-btn {
  width: 100%;
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: .85rem .95rem;
  font: inherit;
  outline: none;
  transition: border-color .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease);
}
.unit-select {
  position: relative;
  width: 100%;
}
.unit-select-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}
.unit-select-btn::after {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-left: 1rem;
  background: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .28s var(--ease);
}
.unit-select.is-open .unit-select-btn::after {
  transform: rotate(180deg);
}
.unit-select-options {
  position: absolute;
  z-index: 5;
  top: calc(100% + .45rem);
  left: 0;
  right: 0;
  width: 100%;
  max-height: 190px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(190,148,132,.85) rgba(255,255,255,.08);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(3,42,88,.98), rgba(1,21,47,.98));
  box-shadow: 0 20px 44px -26px rgba(1,21,47,.9);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .24s var(--ease), transform .24s var(--ease);
}
.unit-select-options::-webkit-scrollbar {
  width: 7px;
}
.unit-select-options::-webkit-scrollbar-track {
  background: rgba(255,255,255,.08);
}
.unit-select-options::-webkit-scrollbar-thumb {
  background: rgba(190,148,132,.85);
  border-radius: 999px;
}
.unit-select.is-open .unit-select-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.unit-select-options button {
  width: 100%;
  display: block;
  padding: .78rem .95rem;
  color: rgba(255,255,255,.84);
  text-align: left;
  font: inherit;
  transition: background .22s var(--ease), color .22s var(--ease);
}
.unit-select-options button:hover,
.unit-select-options button.is-selected {
  color: #fff;
  background: rgba(190,148,132,.22);
}
.tour-form input:focus,
.unit-select-btn:focus {
  border-color: rgba(240,199,179,.72);
  background-color: rgba(255,255,255,.11);
  box-shadow: 0 0 0 3px rgba(190,148,132,.18);
}
.tour-form .btn {
  justify-content: center;
  color: #000;
  -webkit-text-fill-color: #000;
  margin-top: .35rem;
}
body.modal-open {
  overflow: hidden;
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1040px) {
  .units-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr 1fr; }
  .cta-action { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
  .am-grid { grid-template-columns: repeat(3, 1fr); }
  .am-feature { grid-template-columns: 1fr; }
  .am-feature .af-media { min-height: 280px; order: -1; }
  .g-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1050px) {
  .brand { width: clamp(88px, 15vw, 118px); height: clamp(70px, 12vw, 92px); margin-left: .35rem; }
  .brand-logo-full { height: clamp(76px, 13vw, 100px); }
  .brand-logo-text { width: clamp(84px, 14vw, 112px); height: auto; }
  .site-header.is-scrolled .brand,
  .nav.open .brand { width: clamp(88px, 15vw, 118px); }
  .nav-phone { display: none; }
  .nav-desktop-cta { display: none; }
  .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    background: linear-gradient(180deg, rgba(2,31,70,.94) 0%, rgba(1,21,47,.9) 100%);
    backdrop-filter: blur(18px) saturate(145%);
    padding: 0 clamp(20px,5vw,56px);
    gap: 10px;
    border-top: 1px solid transparent;
    box-shadow: 0 22px 42px -30px rgba(1,29,70,.82);
    transition: max-height .42s var(--ease), opacity .32s var(--ease), transform .42s var(--ease), padding .42s var(--ease), border-color .32s var(--ease);
  }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    max-height: 620px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding: 1.5rem clamp(20px,5vw,56px) 2rem;
    border-top-color: rgba(255,255,255,.12);
  }
  .nav.open .nav-links a { padding-block: .9rem; border-bottom: 1px solid rgba(255,255,255,.06); width: 100%; }
  .nav.open .nav-links .nav-mobile-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.05rem;
    width: 100%;
    padding-top: .65rem;
  }
  .nav.open .nav-links .nav-mobile-actions .btn {
    width: min(100%, 230px);
    justify-content: center;
    padding: .78rem 1.2rem;
    font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif;
    font-size: .82rem;
    font-weight: 400;
    letter-spacing: 0;
    color: #000;
    -webkit-text-fill-color: #000;
  }
  .nav.open .nav-links .nav-mobile-actions .btn::after { display: none; }
  .nav.open .nav-links .nav-mobile-actions .btn.active { color: #000; }
  .nav-socials {
    display: flex;
    justify-content: center;
    gap: .8rem;
  }
  .nav-socials a {
    width: 36px;
    height: 36px;
    min-width: 36px;
    flex: 0 0 36px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.78);
    padding: 0 !important;
    transition: .3s var(--ease);
  }
  .nav-socials a::after { display: none; }
  .nav-socials a:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
    transform: translateY(-3px);
  }
}
@media (max-width: 950px) {
  .assure-grid { grid-template-columns: 1fr 1fr; }
  .assure-grid .a:nth-child(2) { border-right: none; }
  .assure-grid .a:nth-child(1), .assure-grid .a:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; margin-inline: auto; width: 100%; }
  .about-media .m-badge { left: 0; }
}
@media (max-width: 640px) {
  .nav { gap: .9rem; padding-block: .85rem; }
  .site-header.is-scrolled .nav,
  .site-header:has(.nav.open) .nav { padding-block: .38rem; }
  .brand { width: clamp(78px, 20vw, 98px); height: clamp(62px, 15vw, 78px); margin-left: .45rem; }
  .brand-logo-full { height: clamp(68px, 16vw, 86px); }
  .brand-logo-text { width: clamp(74px, 19vw, 94px); height: auto; }
  .site-header.is-scrolled .brand,
  .nav.open .brand { width: clamp(78px, 20vw, 98px); }
  .hero-features { grid-template-columns: 1fr; max-width: 420px; }
  .units-grid {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    max-width: none;
    margin-inline: calc(clamp(20px, 5vw, 56px) * -1);
    overflow: hidden;
    padding-block: .75rem 2rem;
    isolation: isolate;
  }
  .unit-price .amt { font-family: "InstrumentSansLocal", Helvetica, Arial, sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--gold); line-height: 1; }
  .units-grid .unit-card {
    grid-area: 1 / 1;
    box-sizing: border-box;
    width: min(78vw, 360px);
    max-width: 360px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(0) scale(.74);
    transition: transform .58s var(--ease), opacity .38s var(--ease), filter .38s var(--ease), box-shadow .38s var(--ease), border-color .38s var(--ease);
    will-change: transform, opacity;
  }
  .units-grid .unit-card.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
    z-index: 3;
    filter: none;
    border: .2px solid rgba(190,148,132,.75);
    box-shadow: var(--shadow-card), inset 0 0 0 .2px rgba(190,148,132,.28);
  }
  .units-grid .unit-card.is-active:active {
    transform: translateX(0) scale(.985);
    border-color: #BE9484;
    box-shadow: 0 18px 42px -24px rgba(1,29,70,.42), inset 0 0 0 .2px rgba(190,148,132,.38);
  }
  .units-grid .unit-card.is-active .unit-media img {
  transform: scale(1.2);
}

.units-grid .unit-card.is-active:active .unit-media img {
  transform: scale(1.15);
}
  .units-grid .unit-card.is-prev {
    opacity: .48;
    transform: translateX(-68%) scale(.78);
    z-index: 1;
    filter: saturate(.86);
  }
  .units-grid .unit-card.is-next {
    opacity: .48;
    transform: translateX(68%) scale(.78);
    z-index: 1;
    filter: saturate(.86);
  }
  .units-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .9rem;
    margin-top: 1.2rem;
  }
  .unit-carousel-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--logo-gradient);
    color: #fff;
    padding: 0;
    box-shadow: 0 14px 32px -18px rgba(166,123,109,.9);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  }
  .unit-carousel-btn svg {
    width: 11px;
    height: 18px;
    display: block;
    fill: currentColor;
  }
  .unit-carousel-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -18px rgba(166,123,109,.95); }
  .unit-carousel-dots { display: flex; align-items: center; gap: .55rem; }
  .unit-carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(166,123,109,.28);
    border: 1px solid rgba(166,123,109,.36);
    transition: width .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease);
  }
  .unit-carousel-dot.is-active {
    width: 24px;
    border-radius: 999px;
    background: #BE9484;
    border-color: #BE9484;
  }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-action { flex-direction: column; align-items: stretch; }
  .cta-action .btn { justify-content: center; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    padding-bottom: 2.4rem;
  }
  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }
  .footer-brand {
    align-items: flex-start;
  }
  .footer-brand p {
    width: 100%;
    max-width: none;
    text-align: start;
  }
  .footer-contact .ci {
    width: 100%;
  }
  .footer-contact .ci span {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: .9rem;
  }
  .footer-bottom .socials {
    order: 1;
    justify-content: center;
  }
  .footer-bottom > span {
    order: 2;
  }
  .about-stats {
    gap: 1rem 1.25rem;
    margin-top: 1.55rem;
  }
  .about-stats .s b { font-size: 1.65rem; }
  .about-stats .s span {
    font-size: .64rem;
    letter-spacing: .06em;
  }
  .eyebrow { font-size: .64rem; letter-spacing: .2em; }
  .hero h1 { font-size: clamp(2.15rem, 10.5vw, 3.25rem); }
  .am-grid {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    overflow: hidden;
    padding-block: 2.55rem 2.85rem;
    margin-inline: calc(clamp(20px, 5vw, 56px) * -1);
    isolation: isolate;
  }
  .am-grid.is-moving .am-item {
    transition-duration: .72s;
  }
  .am-item {
    grid-area: 1 / 1;
    width: min(54vw, 210px);
    min-height: 188px;
    padding: 1.15rem .95rem;
    opacity: 0;
    pointer-events: none;
    transform: translateX(0) scale(.76);
    filter: saturate(.78);
    box-shadow: none;
    transition: transform .62s var(--ease), opacity .44s var(--ease), filter .44s var(--ease), box-shadow .44s var(--ease), border-color .44s var(--ease);
    will-change: transform, opacity;
  }
  .am-item:hover {
    transform: translateX(0) scale(.76);
    box-shadow: none;
    border-color: var(--line);
  }
  .am-item:hover .am-ico {
    background: rgba(166,123,109,.12);
    color: var(--gold);
  }
  .am-item.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
    filter: none;
    border-color: rgba(34, 75, 120, .68);
    box-shadow: 0 18px 40px -24px rgba(1,29,70,.38);
    z-index: 3;
  }
  .am-item.is-prev {
    opacity: .48;
    pointer-events: auto;
    transform: translateX(-68%) scale(.78);
    z-index: 1;
  }
  .am-item.is-next {
    opacity: .48;
    pointer-events: auto;
    transform: translateX(68%) scale(.78);
    z-index: 1;
  }
  .am-item.is-hidden {
    opacity: 0;
    transform: translateX(0) scale(.7);
    z-index: 0;
  }
  .am-item.is-active:hover {
    transform: translateX(0) scale(1);
    border-color: rgba(34, 75, 120, .68);
    box-shadow: 0 18px 40px -24px rgba(1,29,70,.38);
  }
  .am-item.is-prev:hover { transform: translateX(-68%) scale(.78); }
  .am-item.is-next:hover { transform: translateX(68%) scale(.78); }
  .am-item.is-active .am-ico {
    background: var(--navy);
    color: #fff;
  }
  .am-item.is-active:hover .am-ico {
    background: var(--navy);
    color: #fff;
  }
  .am-item .am-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .am-item b { font-size: .88rem; }
  .am-item span { font-size: .76rem; line-height: 1.42; }
  .unit-select-options {
    max-height: 150px;
  }
  .g-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-cell.wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .assure-grid { grid-template-columns: 1fr; }
  .assure-grid .a {
    padding: 1.35rem 1.2rem;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .assure-grid .a:last-child { border-bottom: none; }
  .assure-grid .a-ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
  .assure-grid .a b { font-size: .94rem; }
  .assure-grid .a span { font-size: .8rem; }
}
@media (max-width: 420px) {
  .brand { width: clamp(66px, 21vw, 82px); height: clamp(54px, 16vw, 66px); margin-left: .5rem; }
  .brand-logo-full { height: clamp(60px, 17vw, 74px); }
  .brand-logo-text { width: clamp(62px, 20vw, 78px); height: auto; }
  .site-header.is-scrolled .brand,
  .nav.open .brand { width: clamp(66px, 21vw, 82px); }
  .about-stats {
    gap: .85rem;
    justify-content: space-between;
  }
  .about-stats .s { flex: 1 1 30%; min-width: 72px; }
  .about-stats .s b { font-size: 1.42rem; }
  .about-stats .s span { font-size: .58rem; }
  .eyebrow { font-size: .6rem; letter-spacing: .16em; }
  .hero h1 { font-size: clamp(1.95rem, 10vw, 2.85rem); }
  .am-grid {
    padding-block: 2.25rem 2.55rem;
  }
  .am-item {
    width: min(58vw, 188px);
    min-height: 176px;
    padding: 1rem .8rem;
  }
  .am-item .am-ico {
    width: 36px;
    height: 36px;
  }
  .am-item b { font-size: .82rem; }
  .am-item span { font-size: .7rem; }
}
