/* =========================================================
   HACIENDA RAS EL HEKMA — Redesign Prototype
   Arabic-first RTL editorial luxury coastal landing
   ========================================================= */

:root {
  /* Palette */
  --charcoal: #141414;
  --ink: #1d1b18;
  --bone: #f6f1e8;
  --cream: #ede5d6;
  --paper: #ffffff;

  --accent: oklch(0.52 0.20 25);          /* crimson */
  --accent-deep: oklch(0.44 0.18 25);
  --teal: oklch(0.55 0.08 210);
  --teal-deep: oklch(0.36 0.07 215);
  --amber: oklch(0.78 0.10 65);
  --sand: oklch(0.88 0.04 75);
  --muted: rgba(20, 20, 20, 0.58);
  --hairline: rgba(20, 20, 20, 0.12);
  --hairline-light: rgba(246, 241, 232, 0.18);

  /* Type */
  --f-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --f-sans: "Tajawal", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  /* Spacing rhythm */
  --gut: clamp(20px, 4vw, 56px);
  --section-y: clamp(64px, 9vw, 140px);
  --max-w: 1320px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);

  /* WhatsApp brand */
  --wa: #25D366;
  --wa-deep: #128C7E;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--f-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01" on, "kern" on;
}

body {
  overflow-x: hidden;
  line-height: 1.55;
}

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

/* RTL number bidi fix */
[dir="ltr"] { unicode-bidi: isolate; }

.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gut);
}

/* Eyebrow / labels */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.h1 {
  font-family: var(--f-sans);
  font-weight: 900;
  font-size: clamp(40px, 7.5vw, 96px);
  line-height: .98;
  letter-spacing: -0.02em;
  margin: 0;
}
.h1 .serif {
  font-family: var(--f-serif);
  font-weight: 500;
  font-style: italic;
  font-size: .9em;
  letter-spacing: 0;
}
.h1 .accent { color: var(--accent); }
.h1 .stroke {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}

.h2 {
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
}
.h2 .serif {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
}
.h2 .accent { color: var(--accent); }

.h3 {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.lede {
  font-family: var(--f-serif);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  color: rgba(20,20,20,.78);
  max-width: 56ch;
  margin: 0;
  font-weight: 400;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  border: none;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  min-width: 48px;
}
.btn:hover { transform: translateY(-1px); }

.btn-wa {
  background: var(--wa);
  color: #08231a;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 8px 24px -8px rgba(37,211,102,.45);
}
.btn-wa:hover { background: #1ebd5b; }
.btn-wa svg { color: #08231a; }

.btn-dark {
  background: var(--ink);
  color: var(--bone);
}
.btn-dark:hover { background: #2b2925; }

.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover { background: var(--accent-deep); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--bone); }

.btn-outline-light {
  background: transparent;
  color: var(--bone);
  border: 1.5px solid rgba(246, 241, 232, 0.6);
}
.btn-outline-light:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

.btn-ghost {
  background: rgba(20,20,20,.06);
  color: var(--ink);
  border: none;
}
.btn-ghost:hover { background: rgba(20,20,20,.1); }

.btn-lg { height: 60px; padding: 0 28px; font-size: 16px; }
.btn-block { width: 100%; }

.btn .num { font-family: var(--f-mono); font-weight: 600; font-size: 14px; }

/* =========================================================
   HEADER (sticky)
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(246, 241, 232, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--hairline);
}
.header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: block;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.brand-developer {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-project {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--muted);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 8px 12px;
  height: 36px;
  cursor: pointer;
  background: transparent;
}
.lang-toggle .active {
  color: var(--ink);
  font-weight: 600;
}

.btn-call {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline);
  height: 44px;
  padding: 0 16px;
}
.btn-call:hover { border-color: var(--ink); }

@media (max-width: 760px) {
  .header .row { height: 64px; }
  .brand-developer { font-size: 9px; }
  .brand-project { font-size: 16px; }
  .header-actions { gap: 8px; flex-shrink: 0; }
  .lang-toggle {
    display: flex;
    padding: 0 10px;
    height: 44px;
    font-size: 11px;
    flex-shrink: 0;
  }
  .btn-call .label { display: none; }
  .btn-call { padding: 0 12px; width: 44px; }
  .header .btn-wa .label { display: none; }
  .header .btn-wa { padding: 0; width: 44px; height: 44px; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  background: var(--charcoal);
  color: var(--bone);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,20,20,.15) 0%, rgba(20,20,20,.55) 70%, rgba(20,20,20,.85) 100%);
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 30%, oklch(0.7 0.09 65) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, oklch(0.42 0.08 215) 0%, transparent 60%),
    linear-gradient(180deg, oklch(0.78 0.08 65) 0%, oklch(0.48 0.07 200) 60%, oklch(0.28 0.05 220) 100%);
  position: relative;
}
.hero-img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(180deg,
      transparent 0,
      transparent 2px,
      rgba(255,255,255,.03) 2px,
      rgba(255,255,255,.03) 3px);
  pointer-events: none;
}
.hero-img-label {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, .55);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 92vh;
  padding-top: clamp(80px, 12vh, 140px);
  padding-bottom: clamp(80px, 10vh, 120px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-eyebrow {
  color: rgba(246, 241, 232, .85);
  margin-bottom: 24px;
}
.hero-eyebrow::before { background: rgba(246, 241, 232, .55); }

.hero-h1 {
  color: var(--bone);
  max-width: 18ch;
  margin-bottom: 28px;
}
.hero-h1 .accent { color: var(--accent); }
.hero-h1 .serif-tag {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: .42em;
  display: block;
  letter-spacing: 0;
  color: rgba(246, 241, 232, .78);
  margin-top: 14px;
  line-height: 1.3;
  max-width: 32ch;
}

.hero-value {
  font-family: var(--f-serif);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.5;
  color: rgba(246, 241, 232, .85);
  max-width: 52ch;
  margin: 0 0 36px 0;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, .55);
}
.hero-trust .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.explore-badge {
  position: absolute;
  bottom: clamp(32px, 6vh, 56px);
  left: clamp(20px, 4vw, 56px);  /* in RTL this flips visually to right */
  width: 116px; height: 116px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  z-index: 2;
  transition: transform .4s var(--ease);
  animation: spin 22s linear infinite;
}
.explore-badge:hover { transform: scale(1.08); }
.explore-badge .inner {
  display: grid;
  place-items: center;
  gap: 4px;
}
.explore-badge svg { width: 18px; height: 18px; }

@keyframes spin {
  to { transform: rotate(360deg); }
}
.explore-badge .ring-text {
  position: absolute;
  inset: 0;
  animation: none;
}
.explore-badge .inner { animation: spinback 22s linear infinite; }
@keyframes spinback {
  to { transform: rotate(-360deg); }
}

/* Latin/Arabic ring text */
.ring-text-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: #fff;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .35em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .explore-badge { width: 92px; height: 92px; bottom: 24px; }
}

/* =========================================================
   STAT BAR
   ========================================================= */
.statbar {
  background: var(--ink);
  color: var(--bone);
  padding: 0;
  position: relative;
}
.statbar .wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.stat {
  padding: 36px 18px;
  border-inline-end: 1px solid var(--hairline-light);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.stat:last-child { border-inline-end: none; }

.stat-value {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1;
  color: var(--bone);
}
.stat-value .small {
  font-family: var(--f-sans);
  font-style: normal;
  font-size: .5em;
  vertical-align: middle;
  margin-inline-start: 6px;
  color: rgba(246, 241, 232, .6);
  font-weight: 400;
}
.stat-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, .55);
}

@media (max-width: 980px) {
  .statbar .wrap { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3n) { border-inline-end: none; }
  .stat:nth-child(-n+3) { border-bottom: 1px solid var(--hairline-light); }
}
@media (max-width: 560px) {
  .statbar .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-inline-end: 1px solid var(--hairline-light); }
  .stat:nth-child(even) { border-inline-end: none; }
  .stat:nth-child(-n+4) { border-bottom: 1px solid var(--hairline-light); }
  .stat { padding: 24px 14px; }
}

/* =========================================================
   SECTION SHELL
   ========================================================= */
.section {
  padding: var(--section-y) 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 880px;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-head .h2 { margin-top: 6px; }

.section.cream { background: var(--cream); }
.section.bone { background: var(--bone); }
.section.dark { background: var(--ink); color: var(--bone); }
.section.dark .lede { color: rgba(246,241,232,.75); }
.section.dark .eyebrow { color: var(--amber); }
.section.dark .eyebrow::before { background: var(--amber); }

/* =========================================================
   PARTNERSHIP / DEVELOPER STRIP
   ========================================================= */
.partnership {
  background: var(--bone);
  padding: clamp(56px, 7vw, 96px) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.partnership .row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(24px, 5vw, 60px);
}
.partner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.partner-logo {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}
.partner-mark {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}
.partner-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.partner-x {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  align-self: center;
}
.partnership-line {
  text-align: center;
  margin-top: 28px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 640px) {
  .partnership .row { grid-template-columns: 1fr; gap: 16px; }
  .partner-x { transform: rotate(90deg); }
}

/* =========================================================
   ECOSYSTEM — A CITY BEYOND THE COAST
   ========================================================= */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.eco-card {
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 200px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.eco-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.eco-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.eco-icon svg { width: 22px; height: 22px; }
.eco-label {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
  margin: 0;
}
.eco-en {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

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

/* =========================================================
   RESIDENTIAL COLLECTION
   ========================================================= */
.units-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.units-intro .lede { justify-self: end; }
.units-kicker {
  margin: 14px 0 0;
  font-family: var(--f-sans);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
}
.units-kicker strong {
  color: var(--accent);
  font-weight: 800;
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.unit-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.unit-card.feature {
  grid-column: span 3;
}
.unit-card.feature .unit-img { aspect-ratio: 3/4; }

.unit-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 999px 999px 8px 8px;  /* arched top */
  background: var(--cream);
}
.unit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.1);
  transition: transform 0.85s var(--ease);
  will-change: transform;
}
.unit-img .placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.unit-card:nth-child(1) .placeholder { background: linear-gradient(180deg, oklch(0.78 0.08 65) 0%, oklch(0.58 0.07 50) 100%); }
.unit-card:nth-child(2) .placeholder { background: linear-gradient(180deg, oklch(0.62 0.08 210) 0%, oklch(0.38 0.06 220) 100%); }
.unit-card:nth-child(3) .placeholder { background: linear-gradient(180deg, oklch(0.7 0.06 130) 0%, oklch(0.45 0.05 150) 100%); }
.unit-card:nth-child(4) .placeholder { background: linear-gradient(180deg, oklch(0.82 0.05 75) 0%, oklch(0.62 0.04 60) 100%); }
.unit-card:nth-child(5) .placeholder { background: linear-gradient(180deg, oklch(0.55 0.12 25) 0%, oklch(0.35 0.10 25) 100%); }

.placeholder .stripes {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg,
      transparent 0,
      transparent 6px,
      rgba(255,255,255,.06) 6px,
      rgba(255,255,255,.06) 7px);
}
.placeholder .ph-label {
  position: relative;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(0,0,0,.15);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.unit-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 4px;
}
.unit-type-en {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.unit-type-ar {
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.1;
}
.unit-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-top: 1px solid var(--hairline);
  padding-top: 12px;
}
.unit-price .from {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.unit-price .val {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  color: var(--accent);
  line-height: 1;
}
.unit-note {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.unit-note .pending {
  color: var(--accent);
  margin-inline-start: 8px;
}
.unit-cta {
  margin-top: 4px;
}

@media (max-width: 1000px) {
  .units-grid { grid-template-columns: repeat(4, 1fr); }
  .unit-card { grid-column: span 2; }
  .unit-card.feature { grid-column: span 4; }
  .unit-card.feature .unit-img { aspect-ratio: 16/10; }
}
@media (max-width: 640px) {
  .units-intro { grid-template-columns: 1fr; }
  .units-grid { grid-template-columns: 1fr; }
  .unit-card, .unit-card.feature { grid-column: span 1; }
  .unit-card.feature .unit-img { aspect-ratio: 4/5; }
}

/* =========================================================
   PAYMENT PLAN
   ========================================================= */
.payment {
  background: var(--ink);
  color: var(--bone);
}
.payment .section-head .eyebrow { color: var(--amber); }
.payment .section-head .eyebrow::before { background: var(--amber); }
.payment .section-head .lede { color: rgba(246,241,232,.75); }

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline-light);
  border: 1px solid var(--hairline-light);
}
.pay-card {
  background: var(--ink);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}
.pay-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  color: var(--accent);
}
.pay-num .unit-sm {
  font-family: var(--f-sans);
  font-style: normal;
  font-size: .4em;
  vertical-align: middle;
  margin-inline-start: 6px;
  color: rgba(246, 241, 232, .65);
  font-weight: 400;
}
.pay-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, .55);
}
.pay-text {
  font-family: var(--f-serif);
  font-size: 18px;
  line-height: 1.4;
  color: rgba(246,241,232,.88);
  margin: auto 0 0 0;
}
.payment-flag {
  margin-top: 20px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.payment-flag::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  display: inline-block;
}

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

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  grid-auto-rows: minmax(140px, auto);
}
.gal {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
  min-height: 220px;
}
.gal > img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.1);
  transition: transform 0.85s var(--ease);
  will-change: transform;
}
.gal .placeholder { width: 100%; height: 100%; min-height: 220px; }
.gal-cap {
  position: absolute;
  bottom: 14px;
  inset-inline-start: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.4);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.gal-en {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

.g-shore { grid-column: span 7; grid-row: span 2; }
.g-shore .placeholder { background: linear-gradient(180deg, oklch(0.72 0.08 220) 0%, oklch(0.42 0.07 220) 100%); border-radius: 1000px 1000px 8px 8px; }
.g-master { grid-column: span 5; }
.g-master .placeholder { background: linear-gradient(135deg, oklch(0.55 0.06 90) 0%, oklch(0.35 0.05 100) 100%); }
.g-master > img,
.g-parks > img {
  min-height: 280px;
}
.g-parks { grid-column: span 5; }
.g-parks .placeholder { background: linear-gradient(180deg, oklch(0.68 0.08 130) 0%, oklch(0.4 0.06 150) 100%); }
.g-core { grid-column: span 4; grid-row: span 2; }
.g-core .placeholder { background: linear-gradient(180deg, oklch(0.78 0.08 65) 0%, oklch(0.5 0.10 35) 100%); border-radius: 8px 8px 1000px 1000px; }
.g-marina { grid-column: span 4; }
.g-marina .placeholder { background: linear-gradient(180deg, oklch(0.58 0.08 200) 0%, oklch(0.32 0.06 215) 100%); }
.g-club { grid-column: span 4; }
.g-club .placeholder { background: linear-gradient(180deg, oklch(0.6 0.05 25) 0%, oklch(0.32 0.08 25) 100%); }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(6, 1fr); }
  .g-shore { grid-column: span 6; grid-row: span 1; }
  .g-master, .g-parks { grid-column: span 3; }
  .g-core { grid-column: span 6; grid-row: span 1; }
  .g-marina, .g-club { grid-column: span 3; }
}

/* =========================================================
   DEVELOPER TRUST
   ========================================================= */
.trust {
  background: var(--cream);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.trust-img {
  aspect-ratio: 4/5;
  border-radius: 1000px 1000px 16px 16px;
  overflow: hidden;
  background: var(--ink);
  position: relative;
}
.trust-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.trust-img .placeholder { background: linear-gradient(180deg, oklch(0.55 0.06 220) 0%, oklch(0.28 0.05 230) 100%); width: 100%; height: 100%; }

.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 36px;
}
.trust-stat {
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
}
.trust-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1;
  color: var(--accent);
}
.trust-num .unit-sm {
  font-family: var(--f-sans);
  font-style: normal;
  font-size: .4em;
  margin-inline-start: 6px;
  color: var(--muted);
  font-weight: 400;
  vertical-align: middle;
}
.trust-lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

@media (max-width: 800px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-img { aspect-ratio: 16/12; border-radius: 1000px 1000px 16px 16px; }
}

/* =========================================================
   LEAD FORM
   ========================================================= */
.lead {
  background: var(--ink);
  color: var(--bone);
}
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.lead-left .h2 { color: var(--bone); }
.lead-left .h2 .accent { color: var(--amber); }
.lead-left .lede { color: rgba(246,241,232,.75); max-width: 38ch; }
.lead-left .eyebrow { color: var(--amber); }
.lead-left .eyebrow::before { background: var(--amber); }

.lead-contacts {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline-light);
}
.lead-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lead-trust-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, .55);
  margin-top: 24px;
}

.form-card {
  background: var(--bone);
  color: var(--ink);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.form-card .form-h {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(20,20,20,.7);
}
.field label .req { color: var(--accent); margin-inline-start: 4px; }
.field label .opt {
  font-family: var(--f-sans);
  text-transform: none;
  font-size: 11px;
  letter-spacing: 0;
  color: rgba(20,20,20,.5);
  margin-inline-start: 6px;
}
.field input,
.field select {
  font: inherit;
  font-family: var(--f-sans);
  font-size: 16px;
  height: 52px;
  padding: 0 16px;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(20,20,20,.2);
  border-radius: 0;
  color: var(--ink);
  transition: border-color .2s var(--ease);
  outline: none;
}
.field input:focus,
.field select:focus { border-color: var(--accent); }
.field input::placeholder { color: rgba(20,20,20,.35); }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23141414' stroke-width='1.6'/></svg>"); background-repeat: no-repeat; background-position: left 14px center; padding-inline-start: 40px; }

.field .err {
  font-family: var(--f-sans);
  font-size: 12px;
  color: var(--accent);
  min-height: 16px;
  margin-top: -2px;
}

.form-submit {
  margin-top: 8px;
}
.form-privacy {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(20,20,20,.55);
  text-align: center;
  margin: 6px 0 0 0;
}

.form-success {
  background: var(--bone);
  color: var(--ink);
  border-radius: 4px;
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.success-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--wa);
  color: #08231a;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--charcoal);
  color: rgba(246,241,232,.75);
  padding: 60px 0 120px 0;  /* extra bottom for mobile sticky */
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hairline-light);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand .mark {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  color: var(--bone);
  line-height: 1;
}
.footer-brand p { max-width: 40ch; font-family: var(--f-serif); }

.footer-offices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.office {
  background: rgba(246, 241, 232, .04);
  border: 1px solid var(--hairline-light);
  padding: 16px 18px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background .2s var(--ease);
}
.office:hover { background: rgba(246, 241, 232, .08); }
.office-area {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--bone);
}
.office-phone {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--amber);
}
.office-phone-2 {
  font-family: var(--f-mono);
  font-size: 12px;
  color: rgba(246, 241, 232, .55);
}

.footer-cta {
  padding: 36px 0 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, .35);
}

@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-offices { grid-template-columns: 1fr; }
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.float-wa {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  width: 60px; height: 60px;
  background: var(--wa);
  color: #08231a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, .55), 0 1px 0 rgba(0,0,0,.1);
  text-decoration: none;
}
.float-wa::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--wa);
  opacity: 0;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { opacity: .8; transform: scale(.85); }
  100% { opacity: 0; transform: scale(1.4); }
}
.float-wa svg { width: 28px; height: 28px; }

@media (max-width: 760px) {
  .float-wa { bottom: 88px; width: 56px; height: 56px; }
}

/* =========================================================
   MOBILE STICKY CTA
   ========================================================= */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 85;
  background: rgba(20, 20, 20, .95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--hairline-light);
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0));
}
.sticky-mobile .row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
}
.sticky-mobile a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
}
.sticky-mobile .call {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(246, 241, 232, .25);
}
.sticky-mobile .wa { background: var(--wa); color: #08231a; }

@media (max-width: 760px) {
  .sticky-mobile { display: block; }
}

/* =========================================================
   LEAD POPUP
   ========================================================= */
.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.lead-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lead-popup[hidden] { display: none; }
.lead-popup:not([hidden]) { display: flex; }

.lead-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lead-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: var(--ink);
  color: var(--bone);
  border-radius: 6px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .45);
  transform: translateY(24px) scale(.98);
  transition: transform .4s var(--ease);
}
.lead-popup.is-open .lead-popup-dialog {
  transform: translateY(0) scale(1);
}

.lead-popup-close {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid var(--hairline-light);
  border-radius: 50%;
  background: rgba(246, 241, 232, .08);
  color: var(--bone);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition: background .2s var(--ease);
}
.lead-popup-close:hover { background: rgba(246, 241, 232, .16); }
.lead-popup-close svg { width: 18px; height: 18px; }

.lead-popup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.lead-popup-copy {
  padding: clamp(32px, 5vw, 48px);
  padding-top: clamp(48px, 6vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-inline-start: 3px solid var(--accent);
}
.popup-eyebrow {
  color: var(--amber);
}
.popup-eyebrow::before { background: var(--amber); }
.popup-title {
  color: var(--bone);
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
}
.popup-title .accent { color: var(--amber); }
.popup-lede {
  font-family: var(--f-serif);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.65;
  color: rgba(246, 241, 232, .82);
  margin: 0;
}
.popup-lede strong { color: var(--amber); font-weight: 600; }

.popup-perks {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.popup-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(246, 241, 232, .88);
}
.popup-perks strong { color: var(--amber); }
.perk-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(246, 241, 232, .12);
  color: var(--amber);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

.popup-urgency {
  margin: auto 0 0;
  padding: 12px 14px;
  border-radius: 4px;
  background: rgba(246, 241, 232, .08);
  border: 1px solid var(--hairline-light);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  line-height: 1.5;
}

.lead-popup-form-wrap {
  padding: clamp(24px, 4vw, 40px);
  background: var(--cream);
}
.lead-popup-form-wrap .form-card {
  padding: 0;
  background: transparent;
  gap: 16px;
}
.lead-popup-form-wrap .form-h {
  font-size: 20px;
  color: var(--ink);
}

.popup-wa-hurry {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.popup-wa-hurry-text {
  margin: 0;
  font-family: var(--f-serif);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(20, 20, 20, .72);
  text-align: center;
}

.popup-submitted {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: clamp(32px, 5vw, 48px) 16px;
}
.popup-submitted[hidden] { display: none; }
.popup-submitted-title {
  margin: 0;
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
}
.popup-submitted-text {
  margin: 0;
  font-family: var(--f-serif);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(20, 20, 20, .72);
  max-width: 32ch;
}

.err-form-block:empty { display: none; }
.err-form-block:not(:empty) {
  padding: 12px;
  border-radius: 4px;
  background: rgba(180, 40, 40, .08);
  color: var(--accent-deep);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .lead-popup-grid { grid-template-columns: 1fr; }
  .lead-popup-copy {
    border-inline-start: none;
    border-top: 3px solid var(--accent);
    padding-bottom: 24px;
  }
  .popup-urgency { margin-top: 8px; }
  .lead-popup-dialog { max-height: 94vh; }
}

html.lead-popup-open,
body.lead-popup-open {
  overflow: hidden;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.fade-in.in {
  opacity: 1;
  transform: none;
}

/* Unit + gallery image motion */
@keyframes motionImgIn {
  from {
    transform: scale(1.14) translateY(14px);
  }
  to {
    transform: scale(1) translateY(0);
  }
}

.units-grid.in .unit-card .unit-img img {
  animation: motionImgIn 1.15s var(--ease) both;
}
.units-grid.in .unit-card:nth-child(1) .unit-img img { animation-delay: 0.05s; }
.units-grid.in .unit-card:nth-child(2) .unit-img img { animation-delay: 0.14s; }
.units-grid.in .unit-card:nth-child(3) .unit-img img { animation-delay: 0.23s; }
.units-grid.in .unit-card:nth-child(4) .unit-img img { animation-delay: 0.32s; }
.units-grid.in .unit-card:nth-child(5) .unit-img img { animation-delay: 0.41s; }

.gallery-grid.in .gal > img {
  animation: motionImgIn 1.2s var(--ease) both;
}
.gallery-grid.in .gal:nth-child(1) > img { animation-delay: 0.06s; }
.gallery-grid.in .gal:nth-child(2) > img { animation-delay: 0.14s; }
.gallery-grid.in .gal:nth-child(3) > img { animation-delay: 0.22s; }
.gallery-grid.in .gal:nth-child(4) > img { animation-delay: 0.30s; }
.gallery-grid.in .gal:nth-child(5) > img { animation-delay: 0.38s; }
.gallery-grid.in .gal:nth-child(6) > img { animation-delay: 0.46s; }

/* Featured gallery pair — masterplan + parks */
@keyframes motionMasterIn {
  from {
    transform: scale(1.2) translate3d(32px, 18px, 0);
    opacity: 0.55;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes motionParksIn {
  from {
    transform: scale(1.2) translate3d(-32px, 18px, 0);
    opacity: 0.55;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes kenBurnsMaster {
  from {
    transform: scale(1) translate3d(0, 0, 0);
    object-position: 50% 44%;
  }
  to {
    transform: scale(1.12) translate3d(-2.5%, -1.5%, 0);
    object-position: 50% 56%;
  }
}

@keyframes kenBurnsParks {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
    object-position: 46% 50%;
  }
  to {
    transform: scale(1.14) translate3d(2.5%, -1%, 0);
    object-position: 54% 50%;
  }
}

.gallery-grid.in .g-master > img {
  animation:
    motionMasterIn 1.35s var(--ease) both,
    kenBurnsMaster 22s ease-in-out 1.35s infinite alternate;
}

.gallery-grid.in .g-parks > img {
  animation:
    motionParksIn 1.35s var(--ease) both,
    kenBurnsParks 24s ease-in-out 1.5s infinite alternate;
}

.g-master::after,
.g-parks::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(20, 20, 20, 0.28) 100%
  );
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  z-index: 1;
}

.gallery-grid.in .g-master::after,
.gallery-grid.in .g-parks::after {
  opacity: 1;
}

.g-master .gal-cap,
.g-master .gal-en,
.g-parks .gal-cap,
.g-parks .gal-en {
  z-index: 2;
}

@media (hover: hover) and (pointer: fine) {
  .g-master:hover > img {
    animation-play-state: paused, paused;
    transform: scale(1.1);
    transition: transform 0.7s var(--ease);
  }
  .g-parks:hover > img {
    animation-play-state: paused, paused;
    transform: scale(1.12);
    transition: transform 0.7s var(--ease);
  }
}

@media (hover: hover) and (pointer: fine) {
  .unit-img:hover img,
  .gal:hover > img {
    transform: scale(1.06);
    transition-duration: 0.65s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .unit-img img,
  .gal > img {
    transform: none !important;
    animation: none !important;
    transition: none !important;
    object-position: center !important;
  }
  .g-master::after,
  .g-parks::after {
    opacity: 1;
  }
}

/* SVG icon stroke */
.icon { width: 20px; height: 20px; flex-shrink: 0; }
.icon-lg { width: 26px; height: 26px; }

/* Sister projects strip */
.sisters {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 0 16px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sisters::-webkit-scrollbar { display: none; }
.sister {
  flex: 0 0 220px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sister-thumb {
  aspect-ratio: 4/5;
  border-radius: 1000px 1000px 8px 8px;
  overflow: hidden;
  background: var(--cream);
}
.sister-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.sister-thumb .placeholder { width: 100%; height: 100%; }
.sister:nth-child(1) .placeholder { background: linear-gradient(180deg, oklch(0.65 0.08 60) 0%, oklch(0.4 0.07 50) 100%); }
.sister:nth-child(2) .placeholder { background: linear-gradient(180deg, oklch(0.78 0.02 90) 0%, oklch(0.5 0.02 90) 100%); }
.sister:nth-child(3) .placeholder { background: linear-gradient(180deg, oklch(0.58 0.1 220) 0%, oklch(0.3 0.08 220) 100%); }
.sister:nth-child(4) .placeholder { background: linear-gradient(180deg, oklch(0.55 0.15 25) 0%, oklch(0.3 0.12 25) 100%); }

.sister-name {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  padding: 0 6px;
}
.sister-loc {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 6px;
}

/* small inline helpers */
.center { text-align: center; }
.divider-line {
  height: 1px;
  background: var(--hairline);
  margin: 80px 0;
}

/* =========================================================
   ENGLISH / LTR overrides
   ========================================================= */
html[lang="en"] {
  direction: ltr;
}

html[lang="en"] .explore-badge {
  left: auto;
  right: clamp(20px, 4vw, 56px);
}

html[lang="en"] .hero-inner {
  text-align: left;
}

html[lang="en"] .units-intro,
html[lang="en"] .section-head,
html[lang="en"] .lead-left,
html[lang="en"] .trust-grid > div:last-child {
  text-align: left;
}

html[lang="en"] .popup-perks {
  padding-left: 0;
  padding-right: 0;
}
