/* ============================================================
   THE ENCLAVE — Milton · A Sundial Homes Community
   Light, warm, welcoming builder identity
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Mulish:wght@300;400;500;600;700&display=swap');

:root {
  /* Light / warm canvas */
  --ivory:      #FBF8F2;   /* page background */
  --white:      #FFFFFF;   /* clean panels */
  --sand:       #F2EBDD;   /* warm alt background */
  --sand-deep:  #EAE0CE;
  --line:       #E5DCC9;   /* dividers on light */
  --line-soft:  #EFE8D9;

  /* Deep navy — trust anchor (stat band, register, footer) */
  --navy:       #16242F;
  --navy-2:     #1E3140;
  --navy-line:  #2C4252;

  /* Ink */
  --ink:        #1C2731;   /* headings on light */
  --ink-soft:   #4C5A64;   /* body on light */
  --ink-faint:  #8A958E;   /* captions on light */

  /* Sun — warm gold accent (the Sundial cue) */
  --sun:        #C68A2E;
  --sun-light:  #E0B25E;
  --sun-deep:   #9A6411;   /* gold text on light (AA) */
  --sun-soft:   #F3E4C6;

  /* Sky — secondary cool accent */
  --sky:        #3E6E86;

  /* On-dark text */
  --cream:      #F5EFE2;
  --mist:       #AEBAC2;   /* body on navy */
  --mist-dim:   #7C8B94;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Mulish', Helvetica, sans-serif;

  --maxw: 1240px;
  --pad-h: clamp(22px, 5vw, 64px);
  --nav-h: 78px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Type primitives ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sun-deep);
}
.eyebrow.on-dark { color: var(--sun-light); }
.serif { font-family: var(--font-serif); font-weight: 400; }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; color: var(--ink); line-height: 1.06; letter-spacing: 0.005em; text-wrap: balance; }
h2 { font-size: clamp(34px, 4.4vw, 58px); font-weight: 500; }
h3 { font-size: clamp(23px, 2.6vw, 32px); }
.italic { font-style: italic; }

p { text-wrap: pretty; }
.lead { font-size: clamp(16px, 1.25vw, 19px); line-height: 1.8; color: var(--ink-soft); }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-h); }
.section { padding-block: clamp(64px, 9vw, 116px); }
.section.tight { padding-block: clamp(48px, 6vw, 80px); }
.bg-sand { background: var(--sand); }
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy); color: var(--mist); }

.divider-gold { width: 48px; height: 3px; background: var(--sun); margin-bottom: 26px; border-radius: 2px; }
.divider-gold.center { margin-inline: auto; }

.sec-head { max-width: 700px; margin-bottom: clamp(40px, 5vw, 60px); }
.sec-head .eyebrow { display: block; margin-bottom: 16px; }
.sec-head h2 { margin-bottom: 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 30px; border-radius: 3px; transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--sun); color: #fff; box-shadow: 0 8px 22px -10px rgba(154,100,17,0.6); }
.btn-gold:hover { background: var(--sun-deep); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--sun); color: var(--sun-deep); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost.on-dark:hover { border-color: var(--sun-light); color: var(--sun-light); }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 60;
  display: flex; align-items: center;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
  border-bottom: 1px solid transparent;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 24px; }
.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-brand .sun-mark { width: 30px; height: 30px; flex-shrink: 0; transition: filter .3s ease; }
.nav-brand .sun-mark .ray, .nav-brand .sun-mark .disc { stroke: var(--sun); }
.nav-brand .wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-brand .wm-name { font-family: var(--font-serif); font-weight: 600; font-size: 18px; letter-spacing: 0.1em; color: #fff; text-transform: uppercase; white-space: nowrap; transition: color .3s ease; }
.nav-brand .wm-sub { font-family: var(--font-sans); font-weight: 600; font-size: 8.5px; letter-spacing: 0.34em; color: rgba(255,255,255,0.7); text-transform: uppercase; margin-top: 3px; white-space: nowrap; transition: color .3s ease; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { font-family: var(--font-sans); font-weight: 600; font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.82); transition: color .2s ease; white-space: nowrap; }
.nav-links a:hover { color: var(--sun-light); }
.nav-cta { padding: 12px 22px; font-size: 11px; }

/* scrolled -> solid white */
.nav.scrolled { background: rgba(255,255,255,0.97); border-bottom-color: var(--line); box-shadow: 0 4px 20px -12px rgba(0,0,0,0.18); backdrop-filter: saturate(1.1) blur(6px); }
.nav.scrolled .nav-brand .wm-name { color: var(--ink); }
.nav.scrolled .nav-brand .wm-sub { color: var(--ink-faint); }
.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav.scrolled .nav-links a:hover { color: var(--sun-deep); }
.nav-burger { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; background: var(--navy); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media image-slot { width: 100%; height: 100%; }
.hero-scrim { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(16,24,28,0.90) 0%, rgba(16,24,28,0.45) 38%, rgba(16,24,28,0.18) 62%, rgba(16,24,28,0.40) 100%),
    linear-gradient(100deg, rgba(16,24,28,0.55) 0%, transparent 58%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(40px, 7vw, 84px); padding-top: calc(var(--nav-h) + 36px); }
.hero-grid { display: grid; grid-template-columns: 1.25fr 0.9fr; gap: clamp(28px, 5vw, 72px); align-items: end; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 13px; margin-bottom: 22px; background: rgba(198,138,46,0.16); border: 1px solid rgba(224,178,94,0.4); padding: 8px 16px; border-radius: 100px; white-space: nowrap; }
.hero-eyebrow .dot { width: 7px; height: 7px; background: var(--sun-light); border-radius: 50%; box-shadow: 0 0 0 4px rgba(224,178,94,0.22); }
.hero h1 { color: #fff; font-size: clamp(58px, 10vw, 132px); line-height: 0.94; letter-spacing: 0.01em; margin-bottom: 14px; font-weight: 500; }
.hero .sub { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: clamp(21px, 2.4vw, 32px); color: var(--cream); line-height: 1.25; max-width: 30ch; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 16px 30px; margin-top: 34px; align-items: center; }
.hero-price { font-family: var(--font-serif); font-weight: 500; color: var(--sun-light); font-size: clamp(30px, 3.2vw, 46px); line-height: 1; }
.hero-price small { display: block; font-family: var(--font-sans); font-weight: 700; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mist); margin-bottom: 8px; }
.hero-loc { font-size: 13.5px; color: var(--cream); letter-spacing: 0.01em; max-width: 30ch; border-left: 2px solid rgba(224,178,94,0.5); padding-left: 20px; line-height: 1.55; }
.hero-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }

/* hero quick-capture card — WHITE, welcoming */
.quickcard { background: var(--white); border-radius: 6px; box-shadow: 0 30px 60px -28px rgba(0,0,0,0.55); padding: clamp(26px, 2.6vw, 36px); border-top: 4px solid var(--sun); }
.quickcard .qc-eyebrow { color: var(--sun-deep); font-weight: 700; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 8px; }
.quickcard h3 { color: var(--ink); font-size: 28px; margin-bottom: 4px; }
.quickcard .qc-note { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 20px; line-height: 1.55; }
.quickcard form { display: flex; flex-direction: column; gap: 10px; }

/* light form fields (white card) */
.field {
  width: 100%; background: var(--ivory); border: 1.5px solid var(--line);
  color: var(--ink); font-family: var(--font-sans); font-weight: 400; font-size: 14px;
  letter-spacing: 0.01em; padding: 13px 15px; border-radius: 4px; transition: border-color .2s ease, background .2s ease;
}
.field::placeholder { color: var(--ink-faint); }
.field:focus { outline: none; border-color: var(--sun); background: #fff; }
select.field { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'><path d='M1 1l4 4 4-4' stroke='%23C68A2E' stroke-width='1.5' fill='none'/></svg>"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 36px; }
.qc-fine { font-size: 10.5px; color: var(--ink-faint); letter-spacing: 0.01em; line-height: 1.5; margin-top: 4px; }

/* dark form fields (navy register section) */
.field-dark {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--navy-line);
  color: var(--cream); font-family: var(--font-sans); font-weight: 400; font-size: 14px;
  letter-spacing: 0.01em; padding: 14px 15px; border-radius: 4px; transition: border-color .2s ease, background .2s ease;
}
.field-dark::placeholder { color: var(--mist-dim); }
.field-dark:focus { outline: none; border-color: var(--sun-light); background: rgba(255,255,255,0.07); }
select.field-dark { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'><path d='M1 1l4 4 4-4' stroke='%23E0B25E' stroke-width='1.5' fill='none'/></svg>"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 36px; }
select.field-dark option { color: #1c2731; }

.scroll-cue { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--cream); }
.scroll-cue span { font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase; }
.scroll-cue .ln { width: 1px; height: 34px; background: linear-gradient(var(--sun-light), transparent); }

/* ---------- Stat strip (navy band) ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--navy); }
.stats .stat { padding: clamp(28px, 3vw, 42px) clamp(22px, 2.4vw, 38px); border-left: 1px solid var(--navy-line); }
.stats .stat:first-child { border-left: none; }
.stats .stat .v { font-family: var(--font-serif); font-weight: 500; color: var(--sun-light); font-size: clamp(26px, 2.6vw, 38px); line-height: 1; margin-bottom: 10px; }
.stats .stat .l { font-family: var(--font-sans); font-weight: 700; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mist); }

/* ---------- Overview / editorial split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.split.media-right .media { order: 2; }
.split .media image-slot, .media-frame image-slot { width: 100%; height: auto; border-radius: 6px; }
.media-tall image-slot { width: 100%; height: auto; aspect-ratio: 4/5; }
.media-wide image-slot { width: 100%; height: auto; aspect-ratio: 3/2; }
.seq { font-family: var(--font-serif); font-weight: 500; font-size: clamp(54px, 7vw, 100px); color: var(--sand-deep); line-height: 0.8; margin-bottom: 6px; }
.prose p + p { margin-top: 18px; }
.prose .lead { margin-bottom: 22px; }

/* ---------- Feature list ---------- */
.feature-list { list-style: none; display: grid; gap: 0; margin-top: 8px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.feature-list li .mk { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; color: var(--sun-deep); }
.feature-list li .ft { font-size: 14.5px; color: var(--ink-soft); }
.feature-list li .ft b { color: var(--ink); font-weight: 700; display: block; font-size: 15px; margin-bottom: 2px; letter-spacing: 0.005em; }

/* ---------- Amenity grid ---------- */
.amenity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.amenity { background: var(--white); padding: clamp(28px, 3vw, 38px) clamp(24px, 2.6vw, 34px); border-radius: 6px; border: 1px solid var(--line); transition: box-shadow .25s ease, transform .25s ease; }
.amenity:hover { box-shadow: 0 18px 40px -24px rgba(28,39,49,0.3); transform: translateY(-3px); }
.amenity .ic { width: 40px; height: 40px; color: var(--sun-deep); margin-bottom: 18px; }
.amenity h3 { font-size: 23px; margin-bottom: 9px; }
.amenity p { font-size: 13.5px; line-height: 1.65; color: var(--ink-soft); }

/* ---------- Location ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: 0 24px 50px -32px rgba(28,39,49,0.28); }
.loc-map { background: var(--sand); min-height: 470px; position: relative; }
.loc-map iframe { width: 100%; height: 100%; min-height: 470px; border: 0; display: block; }
.loc-panel { background: var(--white); padding: clamp(32px, 4vw, 54px); display: flex; flex-direction: column; justify-content: center; }
.conn-list { list-style: none; margin-top: 10px; }
.conn-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.conn-list li:last-child { border-bottom: none; }
.conn-list .place { font-size: 14.5px; color: var(--ink); font-weight: 500; }
.conn-list .dist { font-family: var(--font-serif); font-weight: 500; font-size: 19px; color: var(--sun-deep); white-space: nowrap; }
.addr-line { font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 21px; color: var(--ink); margin-bottom: 4px; }

/* ---------- Plans ---------- */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .25s ease, transform .25s ease; }
.plan-card:hover { box-shadow: 0 22px 48px -26px rgba(28,39,49,0.32); transform: translateY(-3px); }
.plan-card .pc-media image-slot { width: 100%; height: auto; aspect-ratio: 16/11; }

/* ---------- Interiors gallery ---------- */
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: 8px; box-shadow: 0 24px 50px -30px rgba(28,39,49,0.4); }
.gallery figure image-slot { width: 100%; height: auto; }
.gallery .g-1 image-slot, .gallery .g-2 image-slot { aspect-ratio: 3/2; }
.gallery .g-3 { grid-column: 1 / -1; }
.gallery .g-3 image-slot { aspect-ratio: 2/1; }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 44px 26px 22px; font-family: var(--font-sans); font-weight: 500; font-size: 14.5px; letter-spacing: 0.01em; color: #fff; background: linear-gradient(to top, rgba(16,24,28,0.85) 0%, transparent 100%); pointer-events: none; }
@media (max-width: 760px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery .g-1 image-slot, .gallery .g-2 image-slot, .gallery .g-3 image-slot { aspect-ratio: 16/10; }
  .gallery figcaption { font-size: 13px; padding: 36px 20px 18px; }
}
.plan-card .pc-body { padding: clamp(24px, 2.6vw, 32px); display: flex; flex-direction: column; flex: 1; }
.plan-card .pc-tag { font-family: var(--font-sans); font-weight: 700; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sky); margin-bottom: 12px; }
.plan-card h3 { font-size: 27px; margin-bottom: 8px; }
.plan-card .pc-spec { display: flex; gap: 18px; margin: 16px 0 20px; flex-wrap: wrap; }
.plan-card .pc-spec span { font-size: 12.5px; color: var(--ink-soft); letter-spacing: 0.01em; }
.plan-card .pc-spec b { font-family: var(--font-serif); font-weight: 500; font-size: 20px; color: var(--ink); display: block; }
.plan-card .pc-from { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); display: flex; align-items: baseline; justify-content: space-between; }
.plan-card .pc-from .amt { font-family: var(--font-serif); font-weight: 500; font-size: 26px; color: var(--sun-deep); }
.plan-card .pc-from .amt small { font-family: var(--font-sans); font-weight: 700; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); display: block; margin-bottom: 3px; }
.plan-card .pc-link { font-family: var(--font-sans); font-weight: 700; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sun-deep); display: inline-flex; gap: 8px; align-items: center; }
.plan-card .pc-link:hover { color: var(--ink); }

/* ---------- Builder (light sand) ---------- */
.builder { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.builder .b-stats { display: flex; gap: 40px; margin-top: 30px; flex-wrap: wrap; }
.builder .b-stats .v { font-family: var(--font-serif); font-weight: 500; font-size: 46px; color: var(--sun-deep); line-height: 1; }
.builder .b-stats .l { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; margin-top: 8px; }

/* ---------- Register (navy) ---------- */
.register { position: relative; overflow: hidden; }
.reg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 86px); align-items: start; position: relative; z-index: 1; }
.reg-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.reg-form .full { grid-column: 1 / -1; }
.reg-benefits { list-style: none; margin-top: 26px; }
.reg-benefits li { display: flex; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--navy-line); color: var(--cream); font-size: 14.5px; }
.reg-benefits li .mk { width: 20px; height: 20px; color: var(--sun-light); flex-shrink: 0; }

/* form success */
.form-success { display: none; border: 1px solid var(--navy-line); border-radius: 8px; padding: 36px; text-align: center; background: rgba(255,255,255,0.03); }
.form-success.show { display: block; animation: fadeUp .4s ease both; }
.form-success.light { background: var(--ivory); border-color: var(--line); }
.form-success .chk { width: 50px; height: 50px; background: var(--sun); border-radius: 50%; display: grid; place-items: center; margin: 0 auto 18px; color: #fff; font-size: 24px; }
.form-success h3 { color: #fff; margin-bottom: 8px; }
.form-success.light h3 { color: var(--ink); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Footer ---------- */
.footer { background: var(--navy); border-top: 3px solid var(--sun); padding-block: clamp(48px, 6vw, 70px) 30px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 42px; border-bottom: 1px solid var(--navy-line); }
.footer .f-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer .f-brand .sun-mark { width: 34px; height: 34px; }
.footer .f-brand .sun-mark .ray, .footer .f-brand .sun-mark .disc { stroke: var(--sun-light); }
.footer .f-name { font-family: var(--font-serif); font-weight: 600; font-size: 25px; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; line-height: 1; }
.footer .f-name small { display: block; font-family: var(--font-sans); font-weight: 600; font-size: 8px; letter-spacing: 0.3em; color: var(--mist-dim); margin-top: 5px; }
.footer .f-tag { font-size: 13.5px; color: var(--mist); max-width: 36ch; line-height: 1.7; }
.footer h4 { font-family: var(--font-sans); font-weight: 700; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sun-light); margin-bottom: 16px; }
.footer .f-col a, .footer .f-col p { display: block; font-size: 13.5px; color: var(--mist); margin-bottom: 10px; transition: color .2s ease; }
.footer .f-col a:hover { color: var(--sun-light); }
.footer-fine { padding-top: 26px; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-fine p { font-size: 10.5px; color: var(--mist-dim); line-height: 1.6; max-width: 84ch; letter-spacing: 0.01em; }
.footer-fine .copy { white-space: nowrap; }

/* ---------- Sticky CTA bar ---------- */
.sticky-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; background: var(--navy); border-top: 3px solid var(--sun); transform: translateY(110%); transition: transform .35s cubic-bezier(.4,0,.2,1); box-shadow: 0 -10px 30px -16px rgba(0,0,0,0.4); }
.sticky-bar.show { transform: translateY(0); }
.sticky-bar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 13px; }
.sticky-bar .sb-info { display: flex; align-items: baseline; gap: 16px; }
.sticky-bar .sb-name { font-family: var(--font-serif); font-weight: 600; font-size: 21px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; }
.sticky-bar .sb-price { font-family: var(--font-serif); font-weight: 500; font-size: 18px; color: var(--sun-light); }
.sticky-bar .sb-price small { font-family: var(--font-sans); font-weight: 700; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mist); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .quickcard { max-width: 460px; }
  .builder { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
  a.nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
}
@media (max-width: 880px) {
  .nav-brand .wm-sub { display: none; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.media-right .media { order: 0; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .reg-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats .stat:nth-child(3) { border-left: none; }
  .stats .stat:nth-child(n+3) { border-top: 1px solid var(--navy-line); }
}
@media (max-width: 560px) {
  .amenity-grid { grid-template-columns: 1fr; }
  .reg-form { grid-template-columns: 1fr; }
  .reg-form .full { grid-column: auto; }
  .hero h1 { font-size: clamp(54px, 19vw, 92px); }
  .footer-top { grid-template-columns: 1fr; }
  .sticky-bar .sb-info .sb-name { display: none; }
  .nav-cta { padding: 10px 16px; }
}
