/* ============================================================
   TOKENS
============================================================ */
:root {
  --sand:        #EDE7DC;
  --bone:        #F6F1E8;
  --pearl:       #FAF6EE;
  --ink:         #1B3A4B;     /* deep teal-navy — NOT pure black */
  --ink-2:       #2D4A5A;
  --ink-soft:    rgba(27, 58, 75, 0.72);
  --ink-mute:    rgba(27, 58, 75, 0.55);
  --ink-faint:   rgba(27, 58, 75, 0.32);
  --hairline:    rgba(27, 58, 75, 0.14);
  --hairline-2:  rgba(27, 58, 75, 0.08);
  --terracotta:  #C66A4B;
  --terracotta-d:#A75539;
  --sage:        #8A9B7C;
  --bronze:      #9C7A4E;
  --wa:          #25D366;
  --wa-d:        #1FB257;

  --f-serif:     'Fraunces', 'Times New Roman', serif;
  --f-sans:      'Inter', system-ui, -apple-system, sans-serif;
  --f-ar:        'IBM Plex Sans Arabic', 'Tajawal', system-ui, sans-serif;
  --f-ar-display: 'Reem Kufi', 'IBM Plex Sans Arabic', system-ui, sans-serif;
  --f-mono:      'IBM Plex Mono', 'Menlo', monospace;

  --maxw:        1320px;
  --gutter:      clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--f-ar);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Latin runs use Inter / Fraunces automatically */
:lang(en), [dir="ltr"], .en { font-family: var(--f-sans); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ============================================================
   TYPE PRIMITIVES
============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.eyebrow .num {
  display: inline-block;
  padding-block: 2px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  padding-inline: 6px;
  font-weight: 500;
}
.eyebrow .sep {
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}
.eyebrow .ar { font-family: var(--f-ar); letter-spacing: .04em; }

.h-display {
  font-family: var(--f-ar);
  font-weight: 600;
  font-size: clamp(38px, 6.2vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.h-display .serif {
  font-family: var(--f-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--terracotta);
}
.h2 {
  font-family: var(--f-ar);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
.h2 .serif {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}
.h3 {
  font-family: var(--f-ar);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
}
.lede {
  font-family: var(--f-ar);
  font-size: clamp(16px, 1.15vw, 18.5px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0;
  text-wrap: pretty;
}

/* Section frame */
.section {
  padding-block: clamp(72px, 9vw, 132px);
  position: relative;
}
.section + .section { border-top: 1px solid var(--hairline-2); }
.section.dark {
  background: var(--ink);
  color: var(--bone);
}
.section.dark .h2, .section.dark .h-display, .section.dark .h3 { color: var(--bone); }
.section.dark .lede { color: rgba(246,241,232,.72); }
.section.dark .eyebrow { color: #E8B89C; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-bottom: clamp(40px, 5vw, 72px);
  max-width: 920px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: var(--f-ar);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: .01em;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn .icon { width: 18px; height: 18px; flex: 0 0 auto; }
.btn.lg { padding: 15px 26px; font-size: 16px; }
.btn.sm { padding: 10px 16px; font-size: 13px; }
.btn.block { width: 100%; }

.btn-primary {
  background: var(--terracotta);
  color: #FFF7F0;
  border-color: var(--terracotta);
}
.btn-primary:hover { background: var(--terracotta-d); border-color: var(--terracotta-d); }

.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost-dark:hover { background: var(--ink); color: var(--bone); }

.btn-ghost-light {
  background: transparent;
  color: var(--bone);
  border-color: rgba(246,241,232,.5);
}
.btn-ghost-light:hover { background: rgba(246,241,232,.08); border-color: var(--bone); }

.btn-wa {
  background: var(--wa);
  color: #06321B;
  border-color: var(--wa);
  font-weight: 700;
}
.btn-wa:hover { background: var(--wa-d); border-color: var(--wa-d); color: #FFF; }

/* ============================================================
   HEADER
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(237, 231, 220, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--hairline-2);
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: block;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(27, 58, 75, 0.08);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-project {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: .005em;
  color: var(--ink);
}
.brand-meta {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-toggle {
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 4px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 8px;
}
.lang-toggle .active { color: var(--terracotta); font-weight: 600; }
.btn-call-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: 4px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .12em;
}
.btn-call-mini:hover { background: var(--ink); color: var(--bone); }
.btn-call-mini .icon { width: 14px; height: 14px; }

@media (max-width: 760px) {
  .brand-meta { display: none; }
  .btn-call-mini .label { display: none; }
  .lang-toggle { display: none; }
  .header-actions .btn-wa { padding: 9px 12px; font-size: 13px; }
  .header-actions .btn-wa .label-text { display: none; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 92svh;
  background: var(--ink);
  color: var(--bone);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/hacienda/brochure/hero-render.webp');
  background-size: cover;
  background-position: center 35%;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(27,58,75,.18) 0%, rgba(27,58,75,.05) 30%, rgba(27,58,75,.55) 75%, rgba(27,58,75,.88) 100%);
}
.hero-frame {
  position: absolute;
  inset: clamp(18px, 2.6vw, 36px);
  border: 1px solid rgba(246,241,232,.22);
  pointer-events: none;
}
.hero-corner {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(246,241,232,.78);
  pointer-events: none;
}
.hero-corner.tl {
  top: clamp(28px, 3.6vw, 56px);
  inset-inline-start: clamp(28px, 3.6vw, 56px);
}
.hero-corner.tr {
  top: clamp(28px, 3.6vw, 56px);
  inset-inline-end: clamp(28px, 3.6vw, 56px);
  text-align: end;
}

.hero-inner {
  position: relative;
  padding-bottom: clamp(60px, 8vw, 110px);
  padding-top: clamp(120px, 15vw, 180px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.hero-headline { max-width: 880px; }
.hero-eyebrow {
  color: #E8B89C;
  margin-bottom: 28px;
}
.hero-ar {
  font-family: var(--f-ar-display);
  font-weight: 600;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 6px;
  color: var(--bone);
}
.hero-en {
  font-family: var(--f-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(46px, 8.5vw, 120px);
  line-height: 0.98;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--bone);
}
.hero-en .accent { color: var(--terracotta); font-style: italic; }
.hero-sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.4vw, 21px);
  letter-spacing: .005em;
  margin: 24px 0 0;
  color: rgba(246,241,232,.86);
  max-width: 38ch;
}
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-bottom: 8px;
}
.hero-desc {
  font-family: var(--f-ar);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
  color: rgba(246,241,232,.82);
  max-width: 40ch;
  border-inline-start: 1px solid rgba(246,241,232,.3);
  padding-inline-start: 18px;
}
.hero-desc strong { color: var(--bone); font-weight: 700; }
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(246,241,232,.65);
}
.hero-trust .bar { width: 1px; height: 12px; background: rgba(246,241,232,.4); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding-top: 96px; padding-bottom: 56px; }
  .hero-side { padding-bottom: 0; }
  .hero-desc { padding-inline-start: 14px; }
}

/* ============================================================
   STATS — 3x2 grid w/ hairlines
============================================================ */
.statbar {
  background: var(--bone);
  border-top: 1px solid var(--hairline-2);
  border-bottom: 1px solid var(--hairline-2);
}
.statbar .wrap {
  padding-block: clamp(48px, 5vw, 72px);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.stat {
  padding: 28px 28px;
  border-inline-start: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat:nth-child(3n+1) { border-inline-start: none; }
.stat:nth-child(n+4) { border-top: 1px solid var(--hairline); }
.stat-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1;
  color: var(--terracotta);
  letter-spacing: -.02em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.stat-num .u {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--ink-mute);
  font-weight: 500;
  text-transform: uppercase;
}
.stat-lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.stat-lbl .ar {
  display: block;
  font-family: var(--f-ar);
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--ink);
  margin-top: 4px;
}
@media (max-width: 760px) {
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(3n+1) { border-inline-start: 1px solid var(--hairline); }
  .stat:nth-child(2n+1) { border-inline-start: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--hairline); }
  .stat { padding: 22px 18px; }
}

/* ============================================================
   PARTNERSHIP
============================================================ */
.partnership {
  background: var(--sand);
  padding-block: clamp(72px, 8vw, 110px);
}
.partnership .wrap {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  justify-items: center;
  text-align: center;
  gap: 28px;
}
.partner-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
}
.partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.partner-name {
  font-family: var(--f-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1;
}
.partner-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.partner-x {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 30px;
  color: var(--terracotta);
  font-weight: 300;
}
.partnership-line {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ink-mute);
  max-width: 64ch;
  margin: 0;
}

/* ============================================================
   DEVELOPER (asymmetric grid)
============================================================ */
.section.developer { background: var(--bone); }
.dev-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.dev-img {
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--hairline);
  position: relative;
}
.dev-img::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(246,241,232,.35);
  pointer-events: none;
}
.dev-img .cap {
  position: absolute;
  bottom: 14px;
  inset-inline-start: 18px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #FFF;
  padding: 6px 10px;
  background: rgba(27,58,75,.6);
}
.dev-body { padding-top: 8px; }
.dev-h { margin-top: 14px; }
.dev-body .lede { margin-top: 22px; }
.dev-stats {
  margin-top: clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.dev-stat {
  padding: 22px 16px 18px;
  border-inline-start: 1px solid var(--hairline);
}
.dev-stat:first-child { border-inline-start: none; }
.dev-stat-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--terracotta);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.dev-stat-num .u {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.dev-stat-lbl {
  margin-top: 8px;
  font-family: var(--f-ar);
  font-size: 13px;
  color: var(--ink-soft);
}
@media (max-width: 860px) {
  .dev-grid { grid-template-columns: 1fr; }
  .dev-img { aspect-ratio: 4 / 5; max-width: 440px; }
  .dev-stats { grid-template-columns: repeat(2, 1fr); }
  .dev-stat:nth-child(3) { border-inline-start: none; border-top: 1px solid var(--hairline); }
  .dev-stat:nth-child(4) { border-top: 1px solid var(--hairline); }
}

/* ============================================================
   CITY (eco grid — 8 items)
============================================================ */
.section.city {
  background: var(--sand);
}
.eco-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--hairline);
  border-inline-start: 1px solid var(--hairline);
}
.eco-card {
  padding: 32px 26px 28px;
  border-inline-end: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  transition: background-color .25s ease;
}
.eco-card:hover { background: var(--pearl); }
.eco-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .26em;
  color: var(--ink-faint);
}
.eco-icon {
  width: 36px;
  height: 36px;
  color: var(--terracotta);
}
.eco-icon svg { width: 100%; height: 100%; }
.eco-label {
  font-family: var(--f-ar);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.eco-en {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
@media (max-width: 1000px) {
  .eco-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .eco-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LOCATION
============================================================ */
.section.location { background: var(--pearl); }
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.location-copy .h2 { margin-top: 18px; }
.distance-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.distance {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 108px;
  padding: 12px 14px;
  border: 1px solid var(--hairline);
  background: var(--bone);
  border-radius: 4px;
}
.distance .km {
  font-family: var(--f-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: .04em;
}
.distance .lbl {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.location-map {
  min-height: clamp(280px, 36vw, 420px);
  border: 1px solid var(--hairline);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(27, 58, 75, .08);
}
@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 260px; order: -1; }
}

/* ============================================================
   THE PLACE — editorial gallery
============================================================ */
.section.place { background: var(--bone); }
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.2vw, 32px);
}
.gal {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--sand);
}
.gal .img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s ease;
}
.gal:hover .img { transform: scale(1.04); }
.gal::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(246,241,232,.4);
  pointer-events: none;
}
.gal .meta {
  position: absolute;
  bottom: 18px;
  inset-inline-start: 18px;
  inset-inline-end: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  color: #FFF;
  z-index: 2;
}
.gal .meta::before {
  content: "";
  position: absolute;
  inset: -120px -18px -18px;
  background: linear-gradient(180deg, rgba(27,58,75,0) 0%, rgba(27,58,75,.75) 100%);
  z-index: -1;
  pointer-events: none;
}
.gal .label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gal .label .ar {
  font-family: var(--f-ar);
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: none;
  color: rgba(255,255,255,.92);
  font-weight: 500;
}
.gal .num {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 38px;
  color: rgba(255,255,255,.92);
  line-height: 1;
}

/* layout */
.gal-shore { grid-column: span 7; aspect-ratio: 16 / 10; }
.gal-master { grid-column: span 5; aspect-ratio: 4 / 5; }
.gal-core  { grid-column: span 5; aspect-ratio: 4 / 5; }
.gal-marina { grid-column: span 7; aspect-ratio: 16 / 10; }
.gal-club  { grid-column: span 6; aspect-ratio: 3 / 2; }
.gal-parks { grid-column: span 6; aspect-ratio: 3 / 2; }

@media (max-width: 860px) {
  .gallery { grid-template-columns: 1fr; }
  .gal { grid-column: 1 / -1 !important; aspect-ratio: 4 / 3 !important; }
}

/* ============================================================
   DESIGN PRINCIPLES (image left, text right asymmetric)
============================================================ */
.section.principles {
  background: var(--sand);
}
.principles-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.principles-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--hairline);
  position: relative;
}
.principles-img::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(246,241,232,.5);
}
.principles-img .tag {
  position: absolute;
  top: 24px;
  inset-inline-start: 24px;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.principles-body { padding-block: 12px; }
.principles-body .lede { margin-top: 26px; }
.principles-en {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 22px;
  max-width: 46ch;
  text-wrap: pretty;
}
@media (max-width: 860px) {
  .principles-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LEGACY (sister destinations)
============================================================ */
.section.legacy { background: var(--bone); }
.legacy-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 24px);
}
.legacy-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.legacy-thumb {
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--hairline);
  position: relative;
  transition: transform .4s ease;
}
.legacy-thumb::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(246,241,232,.4);
}
.legacy-num {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .26em;
  color: #FFF;
  padding: 4px 8px;
  background: rgba(27,58,75,.7);
  z-index: 2;
}
.legacy-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.legacy-ar {
  font-family: var(--f-ar);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}
.legacy-en {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 900px) {
  .legacy-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .legacy-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESIDENCES
============================================================ */
.section.residences { background: var(--sand); }
.res-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(44px, 5vw, 72px);
}
.res-pricing {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 6px;
}
.res-pricing .line {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--terracotta);
  line-height: 1.2;
}
.res-pricing .note {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.feature {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
  background: var(--bone);
  border: 1px solid var(--hairline);
  margin-bottom: clamp(28px, 3vw, 44px);
}
.feature-body {
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.feature-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
  border-inline-start: 1px solid var(--hairline);
}
.feature-img .tag {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.feature-title {
  font-family: var(--f-ar);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 42px);
  margin: 4px 0 0;
  line-height: 1.1;
  color: var(--ink);
}
.feature-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 6px;
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
}
.feature-price .from {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.feature-price .val {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--terracotta);
  line-height: 1;
}
.feature-pay {
  margin: 0;
  font-family: var(--f-ar);
  font-weight: 500;
  font-size: 14px;
  color: var(--terracotta-d);
}
.feature-spec {
  font-family: var(--f-ar);
  font-size: 15px;
  color: var(--ink-soft);
}
.feature-spec .pending {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracotta);
  padding: 3px 8px;
  border: 1px solid var(--terracotta);
  margin-inline-start: 8px;
  display: inline-block;
}
.unit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.unit-card {
  background: var(--bone);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
}
.unit-thumb {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: 1px solid var(--hairline);
}
.unit-thumb .tag {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.unit-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.unit-name {
  font-family: var(--f-ar);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
}
.unit-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.unit-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
}
.unit-price .from {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.unit-price .val {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  line-height: 1;
  color: var(--terracotta);
}
.unit-pay {
  font-family: var(--f-ar);
  font-weight: 500;
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* FULL PRICE LIST */
.price-table {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.price-group {
  background: var(--bone);
  border: 1px solid var(--hairline);
  padding: clamp(22px, 2.4vw, 30px);
  display: flex;
  flex-direction: column;
}
.price-group-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--hairline);
}
.pg-title {
  font-family: var(--f-ar);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
}
.pg-sub {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline-2);
}
.price-item:last-child { border-bottom: none; padding-bottom: 0; }
.pi-name {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--f-ar);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.3;
}
.pi-name small {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
}
.pi-price {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: end;
}
.pi-val {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1;
  color: var(--terracotta);
  white-space: nowrap;
}
.pi-price i {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-inline-end: 4px;
}
.pi-pay {
  font-family: var(--f-ar);
  font-weight: 500;
  font-size: 11.5px;
  line-height: 1.3;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* PRICE FOOTER + EOI */
.price-foot {
  margin-top: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.eoi-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  padding: 16px 20px;
  background: var(--ink);
  color: var(--bone);
}
.eoi-title {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #E8B89C;
  margin-inline-end: 6px;
}
.eoi-item {
  font-family: var(--f-ar);
  font-weight: 500;
  font-size: 14px;
  color: var(--bone);
  padding-inline-end: 18px;
  border-inline-end: 1px solid rgba(246,241,232,.22);
}
.eoi-item:last-child { border-inline-end: none; padding-inline-end: 0; }
.price-note {
  font-family: var(--f-ar);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin: 0;
}

@media (max-width: 860px) {
  .feature {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .feature-img {
    order: -1;
    border-inline-start: none;
    border-bottom: 1px solid var(--hairline);
  }
  .feature-body { padding: clamp(24px, 6vw, 36px); }
  .unit-row { grid-template-columns: 1fr; }
  .res-head { grid-template-columns: 1fr; }
  .price-table { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .price-item { gap: 10px; }
  .pi-val { font-size: 18px; }
  .pi-pay { font-size: 10.5px; }
}

/* ============================================================
   PAYMENT
============================================================ */
.section.payment { background: var(--ink); color: var(--bone); }
.section.payment .eyebrow { color: #E8B89C; }
.section.payment .h2 { color: var(--bone); }
.section.payment .lede { color: rgba(246,241,232,.72); }

.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(246,241,232,.18);
  margin-top: clamp(40px, 5vw, 64px);
}
.pay-card {
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 36px);
  border-inline-start: 1px solid rgba(246,241,232,.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pay-card:first-child { border-inline-start: none; }
.pay-step {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #E8B89C;
}
.pay-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(72px, 9vw, 132px);
  color: var(--terracotta);
  line-height: 0.9;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pay-num .u {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 14px;
  letter-spacing: .2em;
  color: rgba(246,241,232,.55);
  text-transform: uppercase;
  font-weight: 500;
}
.pay-label {
  font-family: var(--f-ar);
  font-weight: 600;
  font-size: 18px;
  color: var(--bone);
}
.pay-text {
  font-family: var(--f-ar);
  font-size: 15px;
  color: rgba(246,241,232,.7);
  line-height: 1.6;
  margin: 0;
}
.payment-flag {
  margin-top: clamp(28px, 3vw, 40px);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(246,241,232,.5);
  border-top: 1px solid rgba(246,241,232,.15);
  padding-top: 20px;
  text-align: center;
}
@media (max-width: 760px) {
  .pay-grid { grid-template-columns: 1fr; }
  .pay-card { border-inline-start: none; border-top: 1px solid rgba(246,241,232,.18); }
  .pay-card:first-child { border-top: none; }
}

/* ============================================================
   LEAD FORM
============================================================ */
.section.lead { background: var(--bone); }
.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.lead-copy { padding-top: 8px; }
.lead-copy .h2 { margin-top: 18px; }
.lead-copy .lede { margin-top: 22px; }
.trust-line {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--sand);
  border: 1px solid var(--hairline);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.trust-line .bar { width: 1px; height: 12px; background: var(--hairline); }
.lead-alt {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form-card {
  background: var(--sand);
  border: 1px solid var(--hairline);
  padding: clamp(28px, 3.5vw, 44px);
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--hairline-2);
  pointer-events: none;
}
.form-head {
  font-family: var(--f-ar);
  font-weight: 600;
  font-size: 19px;
  margin: 0 0 24px;
  color: var(--ink);
  position: relative;
}
.form-head::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--terracotta);
  margin-top: 12px;
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; position: relative; }
.field label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.field label .ar {
  font-family: var(--f-ar);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--ink);
  margin-inline-end: 8px;
}
.field label .req { color: var(--terracotta); margin-inline-start: 4px; }
.field label .opt { color: var(--ink-faint); font-size: 10px; margin-inline-start: 6px; }
.field input,
.field select {
  width: 100%;
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: var(--f-ar);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s ease, background-color .2s ease;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--terracotta);
  background: #FFF;
}
.field input::placeholder { color: var(--ink-faint); }
.field .err {
  font-family: var(--f-ar);
  font-size: 12px;
  color: var(--terracotta-d);
  min-height: 1em;
}
.form-submit { margin-top: 8px; }

/* Lead + popup CTA — subtle pulse + shimmer to draw clicks */
#lead-form .form-submit-cta,
#popup-lead-form .form-submit-cta {
  position: relative;
  overflow: hidden;
  white-space: normal;
  line-height: 1.35;
  text-align: center;
  animation: leadCtaPulse 2.6s ease-in-out infinite;
}
#lead-form .form-submit-cta::after,
#popup-lead-form .form-submit-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 247, 240, 0.28) 50%,
    transparent 62%
  );
  transform: translateX(-130%);
  animation: leadCtaShimmer 3.2s ease-in-out infinite;
  pointer-events: none;
}
#lead-form .form-submit-cta:hover,
#popup-lead-form .form-submit-cta:hover {
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 10px 28px rgba(198, 106, 75, 0.35);
}
#lead-form .form-submit-cta:active,
#popup-lead-form .form-submit-cta:active {
  transform: translateY(0);
}
@keyframes leadCtaPulse {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(198, 106, 75, 0.18);
  }
  50% {
    box-shadow:
      0 0 0 4px rgba(198, 106, 75, 0.14),
      0 8px 26px rgba(198, 106, 75, 0.28);
  }
}
@keyframes leadCtaShimmer {
  0%, 72%, 100% { transform: translateX(-130%); }
  28% { transform: translateX(130%); }
}
@media (prefers-reduced-motion: reduce) {
  #lead-form .form-submit-cta,
  #popup-lead-form .form-submit-cta,
  #lead-form .form-submit-cta::after,
  #popup-lead-form .form-submit-cta::after {
    animation: none;
  }
  #lead-form .form-submit-cta:hover,
  #popup-lead-form .form-submit-cta:hover {
    transform: none;
  }
}
.form-privacy {
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 20px 10px;
}
.form-success .check {
  width: 44px;
  height: 44px;
  border: 1px solid var(--terracotta);
  color: var(--terracotta);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-size: 22px;
  font-family: var(--f-serif);
}

@media (max-width: 860px) {
  .lead-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SALES OFFICES
============================================================ */
.section.offices { background: var(--sand); }
.offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
  border-inline-start: 1px solid var(--hairline);
}
.office {
  padding: 28px 24px;
  border-inline-end: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  transition: background-color .25s ease;
}
.office:hover { background: var(--bone); }
.office-num {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .26em;
  color: var(--terracotta);
}
.office-area {
  font-family: var(--f-ar);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin-top: 2px;
}
.office-en {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.office-cta {
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--hairline);
  padding-top: 12px;
}
.office-cta::after {
  content: "→";
  font-family: var(--f-serif);
  font-style: italic;
  transition: transform .2s ease;
}
.office:hover .office-cta::after { transform: translateX(-4px); }
[dir="ltr"] .office:hover .office-cta::after { transform: translateX(4px); }

@media (max-width: 900px) { .offices-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .offices-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--ink);
  color: rgba(246,241,232,.8);
  padding-block: clamp(56px, 7vw, 88px);
}
.footer .top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(246,241,232,.15);
}
.footer-brand .mark {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--bone);
  letter-spacing: -.01em;
  line-height: 1.1;
}
.footer-brand p {
  font-family: var(--f-ar);
  font-size: 14px;
  color: rgba(246,241,232,.7);
  max-width: 48ch;
  margin-top: 14px;
  line-height: 1.7;
}
.footer-brand .partner-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #E8B89C;
  margin-top: 18px;
  display: inline-block;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-meta .label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(246,241,232,.5);
}
.footer-meta .value {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--bone);
  margin-top: 6px;
}
.footer-cta {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-legal {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(246,241,232,.45);
  margin: 0;
}
.footer-disclosure {
  margin-top: 22px;
  font-family: var(--f-ar);
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(246,241,232,.42);
  max-width: 72ch;
}
@media (max-width: 760px) {
  .footer .top { grid-template-columns: 1fr; }
}

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-strip {
  background: var(--ink);
  color: var(--bone);
  border-top: 1px solid rgba(246,241,232,.1);
  border-bottom: 1px solid rgba(246,241,232,.1);
}
.trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 24px;
  gap: 0;
}
.trust-pt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-inline: 22px;
  border-inline-start: 1px solid rgba(246,241,232,.14);
}
.trust-pt:first-child { border-inline-start: none; padding-inline-start: 0; }
.trust-pt .pulse {
  position: relative;
  width: 8px;
  height: 8px;
  background: var(--wa);
  border-radius: 50%;
  flex: 0 0 auto;
}
.trust-pt .pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--wa);
  opacity: .35;
  animation: pulse 1.8s ease-out infinite;
}
.trust-pt .icon {
  width: 22px;
  height: 22px;
  color: #E8B89C;
  flex: 0 0 auto;
}
.trust-pt .txt { display: flex; flex-direction: column; line-height: 1.2; }
.trust-pt .lead {
  font-family: var(--f-ar);
  font-weight: 600;
  font-size: 14px;
  color: var(--bone);
}
.trust-pt .sub {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(246,241,232,.55);
  margin-top: 3px;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: .45; }
  100% { transform: scale(2.2); opacity: 0; }
}
@media (max-width: 900px) {
  .trust-strip .wrap { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .trust-pt:nth-child(3) { border-inline-start: none; padding-inline-start: 0; }
  .trust-pt:nth-child(n+3) { border-top: 1px solid rgba(246,241,232,.14); padding-top: 18px; }
}
@media (max-width: 480px) {
  .trust-strip .wrap { grid-template-columns: 1fr; }
  .trust-pt { border-inline-start: none !important; padding-inline: 0 !important; padding-block: 6px; border-top: none !important; }
  .trust-pt + .trust-pt { border-top: 1px solid rgba(246,241,232,.14) !important; padding-top: 14px !important; }
}

/* ============================================================
   MID-PAGE CONVERSION BLOCK
============================================================ */
.conv-block {
  background: var(--ink);
  color: var(--bone);
  padding-block: clamp(64px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.conv-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(198,106,75,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(138,155,124,.12) 0%, transparent 55%);
  pointer-events: none;
}
.conv-block .wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.conv-copy .eyebrow { color: #E8B89C; }
.conv-h {
  font-family: var(--f-ar);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.15;
  color: var(--bone);
  margin: 14px 0 14px;
  letter-spacing: -.005em;
}
.conv-h .serif { font-family: var(--f-serif); font-style: italic; font-weight: 300; color: var(--terracotta); }
.conv-sub {
  font-family: var(--f-ar);
  font-size: clamp(15px, 1.1vw, 17px);
  color: rgba(246,241,232,.78);
  line-height: 1.7;
  max-width: 50ch;
  margin: 0;
}
.conv-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.conv-ctas .btn { justify-content: center; }
.conv-meta {
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(246,241,232,.5);
  text-align: center;
}
@media (max-width: 760px) {
  .conv-block .wrap { grid-template-columns: 1fr; }
}

/* ============================================================
   CALCULATOR (inside Payment section)
============================================================ */
.calc {
  margin-top: clamp(48px, 5vw, 72px);
  background: rgba(246,241,232,.04);
  border: 1px solid rgba(246,241,232,.18);
  padding: clamp(28px, 3.5vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.calc-head {
  font-family: var(--f-ar);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--bone);
  margin: 0 0 8px;
  line-height: 1.2;
}
.calc-head .serif { font-family: var(--f-serif); font-style: italic; font-weight: 300; color: var(--terracotta); }
.calc-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(246,241,232,.55);
}
.calc-controls {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.calc-row { display: flex; flex-direction: column; gap: 8px; }
.calc-row label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(246,241,232,.65);
}
.calc-row label .ar { font-family: var(--f-ar); text-transform: none; font-size: 14px; letter-spacing: 0; color: var(--bone); }
.calc-row label .val {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--terracotta);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 300;
}
.calc-row input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: rgba(246,241,232,.18);
  border-radius: 2px;
  outline: none;
}
.calc-row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  background: var(--terracotta);
  border-radius: 50%;
  border: 2px solid var(--bone);
  cursor: pointer;
}
.calc-row input[type=range]::-moz-range-thumb {
  width: 18px; height: 18px;
  background: var(--terracotta);
  border: 2px solid var(--bone);
  border-radius: 50%;
  cursor: pointer;
}
.calc-seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(246,241,232,.2);
}
.calc-seg button {
  padding: 10px;
  background: transparent;
  color: rgba(246,241,232,.6);
  border: none;
  font-family: var(--f-ar);
  font-weight: 600;
  font-size: 14px;
  transition: background-color .2s ease, color .2s ease;
}
.calc-seg button.active { background: var(--terracotta); color: #FFF7F0; }
.calc-out {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.calc-line { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid rgba(246,241,232,.12); padding-bottom: 14px; }
.calc-line .k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(246,241,232,.55);
}
.calc-line .v {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--bone);
}
.calc-line.feat .v { color: var(--terracotta); font-size: 32px; }
.calc-cta { margin-top: 8px; }
.calc-disclaimer {
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(246,241,232,.4);
  text-align: center;
}
@media (max-width: 760px) {
  .calc { grid-template-columns: 1fr; }
}

/* ============================================================
   LEAD POPUP MODAL
============================================================ */
.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 32px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}
.lead-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lead-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 58, 75, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lead-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  max-height: min(90vh, 720px);
  overflow-y: auto;
  background: var(--bone);
  border: 1px solid var(--hairline);
  box-shadow: 0 24px 64px rgba(27, 58, 75, 0.22), 0 0 0 1px rgba(27, 58, 75, 0.04);
  padding: clamp(24px, 4vw, 36px);
  transform: translateY(16px) scale(0.98);
  transition: transform .4s cubic-bezier(.2, .7, .2, 1);
}
.lead-popup.is-open .lead-popup-dialog {
  transform: translateY(0) scale(1);
}
.lead-popup-close {
  position: absolute;
  top: 12px;
  inset-inline-end: 14px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  color: var(--ink-mute);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
}
.lead-popup-close:hover {
  color: var(--ink);
  border-color: var(--ink-faint);
}
.lead-popup-copy {
  margin-bottom: 20px;
  padding-inline-end: 36px;
}
.lead-popup-copy .h2 {
  margin-top: 14px;
  font-size: clamp(24px, 4vw, 34px);
}
.lead-popup-copy .lede {
  margin-top: 12px;
  max-width: none;
}
.lead-popup-form.form-card {
  padding: clamp(20px, 3vw, 28px);
  margin: 0;
}
.lead-popup-form .field:last-of-type {
  margin-bottom: 8px;
}
.lead-popup-form .form-head {
  display: none;
}
body.lead-popup-open {
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .lead-popup,
  .lead-popup-dialog {
    transition: none;
    transform: none;
  }
}

/* ============================================================
   FLOATING CALL + WA
============================================================ */
.float-actions {
  position: fixed;
  bottom: 24px;
  inset-inline-start: 24px;
  z-index: 60;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
@media (max-width: 600px) {
  .float-actions { bottom: 78px; }
}

.float-call-wrap {
  position: relative;
  flex-shrink: 0;
}

.float-call,
.float-wa {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow:
    0 10px 30px rgba(37, 211, 102, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 22px rgba(37, 211, 102, 0.38);
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.float-call {
  background: var(--wa);
  color: #fff;
}
.float-call:hover,
.float-wa:hover {
  transform: scale(1.06);
  background: var(--wa-d);
  box-shadow:
    0 12px 34px rgba(37, 211, 102, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 28px rgba(37, 211, 102, 0.48);
}
.float-call svg { width: 24px; height: 24px; }

.float-call .ring,
.float-wa .ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--wa);
  opacity: 0;
  animation: wa-ring 2.4s ease-out infinite;
}
@keyframes wa-ring {
  0% { transform: scale(.6); opacity: .55; }
  100% { transform: scale(1.4); opacity: 0; }
}
.float-call .status,
.float-wa .status {
  position: absolute;
  bottom: -4px;
  inset-inline-end: -2px;
  width: 14px;
  height: 14px;
  background: var(--wa);
  border: 2px solid var(--bone);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.65);
}
.float-wa-label {
  position: absolute;
  bottom: calc(100% + 14px);
  inset-inline-end: 0;
  z-index: 1;
  background: var(--ink);
  color: var(--bone);
  padding: 8px 14px 8px 12px;
  border-radius: 4px;
  font-family: var(--f-ar);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.float-wa-label::after {
  content: "";
  position: absolute;
  top: 100%;
  inset-inline-end: 18px;
  border: 7px solid transparent;
  border-top-color: var(--ink);
}
.float-wa-label.show { opacity: 1; transform: translateY(0); }
.float-wa-label .dot { width: 8px; height: 8px; background: var(--wa); border-radius: 50%; box-shadow: 0 0 6px rgba(37, 211, 102, 0.75); }
.float-wa-label .mono { font-family: var(--f-mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(246,241,232,.6); margin-inline-start: 6px; }

.float-wa {
  background: var(--wa);
  color: #FFF;
}
.float-wa svg { width: 26px; height: 26px; }
@media (max-width: 600px) {
  .float-wa-label {
    inset-inline-end: auto;
    inset-inline-start: 0;
    max-width: calc(100vw - 48px);
  }
  .float-wa-label::after {
    inset-inline-end: auto;
    inset-inline-start: 18px;
  }
}

/* Sticky mobile CTA bar */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bone);
  border-top: 1px solid var(--hairline);
  z-index: 55;
  padding: 8px;
}
.sticky-mobile .row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 8px;
}
.sticky-mobile a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 4px;
  font-family: var(--f-ar);
  font-weight: 600;
  font-size: 14px;
}
.sticky-mobile .call {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.sticky-mobile .wa {
  background: var(--wa);
  color: #06321B;
}
.sticky-mobile svg { width: 16px; height: 16px; }
@media (max-width: 600px) {
  .sticky-mobile { display: block; }
  body { padding-bottom: 70px; }
}

/* ============================================================
   ANIMATION
============================================================ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .9s ease, transform .9s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}