:root {
    /* Ambassadori Island brand palette */
    --bg: #FFFCF0;          /* Vanilla Mist */
    --bg-2: #F7F1E1;        /* warm cream surface */
    --bg-3: #EFE7D3;        /* deeper sand */
    --line: rgba(16, 71, 65, 0.12);
    --line-strong: rgba(16, 71, 65, 0.24);
    --ink: #16332E;         /* deep emerald-black text */
    --ink-soft: rgba(22, 51, 46, 0.74);
    --ink-mute: rgba(22, 51, 46, 0.54);
    --ink-faint: rgba(22, 51, 46, 0.24);
    --emerald: #104741;     /* Emerald Depth */
    --emerald-deep: #0C3631;
    --sienna: #B05F32;      /* Burnt Sienna */
    --caramel: #AA8852;     /* Creamy Caramel */
    --caramel-2: #C6A46E;   /* Creamy Caramel 2 */
    --lilac: #C1C1D4;       /* Lilac Mist */
    --steel: #93929E;       /* Steel Blue */
    --vanilla: #FFFCF0;
    --accent: #B05F32;      /* Burnt Sienna accent */
    --accent-hover: #9A4F28;
    --accent-soft: #F1E3D6;
    --pill-dark: #104741;   /* Emerald primary */
    --pill-dark-hover: #0C3631;
    --display: 'Montserrat', system-ui, sans-serif;        /* heading typeface */
    --serif-classic: 'Cormorant Garamond', 'Times New Roman', serif; /* kept if a serif accent is wanted */
    --serif: var(--display);   /* headings → Montserrat (revert: set back to --serif-classic) */
    --sans: 'Hanken Grotesk', system-ui, sans-serif;
    --body: 'Mulish', system-ui, sans-serif;
    --mono: 'Mulish', ui-monospace, monospace;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-padding-top: 84px; }
  html, body { background: var(--bg); color: var(--ink); }
  body {
    font-family: var(--body);
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    position: relative;
  }
  #app { position: relative; z-index: 1; }

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

  /* Type system */
  .serif { font-family: var(--serif); font-weight: 500; letter-spacing: 0; }
  .mono  { font-family: var(--mono); font-weight: 400; }
  .micro { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }

  /* Pill button — Perumnas style */
  .pill {
    position: relative;
    overflow: hidden;
    isolation: isolate;            /* contain the fill layer's stacking context */
    z-index: 0;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.005em;
    transition: color 240ms ease, transform 200ms cubic-bezier(.2,.7,.1,1), box-shadow 240ms ease;
  }
  /* Fill layer — rises from the bottom on hover (paints above the base bg,
     below the text thanks to z-index:-1 + isolation). */
  .pill::before {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 0;
    z-index: -1;
    transition: height 340ms cubic-bezier(.2,.7,.1,1);
  }
  .pill:hover::before { height: 100%; }
  .pill:active { transform: scale(0.97); }

  .pill-dark { background: var(--pill-dark); color: #fff; }
  .pill-dark::before { background: var(--accent); }
  .pill-dark:hover { box-shadow: 0 10px 26px -10px rgba(176,95,50,0.5); }

  .pill-accent { background: var(--accent); color: #fff; }
  .pill-accent::before { background: var(--emerald); }

  .pill-light { background: var(--bg-2); color: var(--ink); }
  .pill-light::before { background: var(--ink); }
  .pill-light:hover { color: var(--bg-2); }

  /* Grid scaffold */
  .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
  }
  @media (max-width: 720px) {
    .container { padding: 0 20px; }
  }

  /* Section labels */
  .section-label {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: baseline;
    padding-top: 120px;
    padding-bottom: 56px;
  }
  .section-label .num { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.14em; }
  .section-label .ttl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); }

  .wf {
    border: 1px solid var(--line);
    background:
      repeating-linear-gradient(
        135deg,
        rgba(26,29,34,0.020) 0 14px,
        rgba(26,29,34,0.040) 14px 15px
      );
    color: var(--ink-mute);
    padding: 40px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.06em;
  }
  /* SVG film grain — multiplied softly over hero image */
  .grain {
    position: absolute; inset: 0;
    pointer-events: none;
    opacity: 0.08;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.1  0 0 0 0 0.1  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    background-size: 220px 220px;
    /* Static grain — the previous stepped animation flickered like a strobe. */
  }
  /* Brand quatrefoil pattern — interlocking circles, very low opacity page backdrop */
  .ambient-blobs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background-color: var(--bg);
    background-image: none;
    opacity: 0.10;
  }
  /* warm accent wash bleeding from the corners */
  .ambient-blobs::before {
    content: '';
    position: absolute;
    width: 760px; height: 760px;
    left: -260px; top: 6vh;
    border-radius: 50%;
    filter: blur(130px);
    background: radial-gradient(circle, rgba(176,95,50,0.22) 0%, transparent 70%);
    opacity: 0.9;
    animation: blobDrift1 30s ease-in-out infinite alternate;
  }
  .ambient-blobs::after {
    content: '';
    position: absolute;
    width: 680px; height: 680px;
    right: -220px; top: 58vh;
    border-radius: 50%;
    filter: blur(130px);
    background: radial-gradient(circle, rgba(16,71,65,0.18) 0%, transparent 70%);
    opacity: 0.9;
    animation: blobDrift2 34s ease-in-out infinite alternate;
  }
  @keyframes blobDrift1 {
    from { transform: translate(0, 0); }
    to { transform: translate(80px, 60px); }
  }
  @keyframes blobDrift2 {
    from { transform: translate(0, 0); }
    to { transform: translate(-60px, -80px); }
  }

  /* Subtle dot grid */
  .dot-grid-bg {
    background-image: radial-gradient(rgba(16,71,65,0.08) 1px, transparent 1px);
    background-size: 28px 28px;
  }

  /* Decorative oversized number */
  .ghost-num {
    font-family: var(--sans);
    font-weight: 800;
    color: rgba(16,71,65,0.05);
    letter-spacing: -0.05em;
    line-height: 0.85;
    user-select: none;
    pointer-events: none;
  }

  /* Reveal — words slide up under a clip */
  .reveal-word { display: inline-block; overflow: hidden; vertical-align: bottom; }
  .reveal-word > span { display: inline-block; transform: translateY(110%); animation: revealUp 1.1s cubic-bezier(.2,.7,.1,1) forwards; }
  .reveal-word.delay-1 > span { animation-delay: 0.18s; }
  .reveal-word.delay-2 > span { animation-delay: 0.34s; }
  .reveal-word.delay-3 > span { animation-delay: 0.5s; }
  .reveal-word.delay-4 > span { animation-delay: 0.66s; }
  @keyframes revealUp {
    from { transform: translateY(110%); }
    to { transform: translateY(0); }
  }
  /* Soft fade up */
  .fade-up { opacity: 0; transform: translateY(16px); animation: fadeUp 1s ease forwards; }
  .fade-up.d1 { animation-delay: 0.7s; }
  .fade-up.d2 { animation-delay: 0.9s; }
  .fade-up.d3 { animation-delay: 1.1s; }
  .fade-up.d4 { animation-delay: 1.3s; }
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
  /* Slow ambient sunset shift over the hero */
  .ambient-warm {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 45% at 14% 55%, oklch(0.82 0.16 55 / 0.20) 0%, transparent 70%),
                radial-gradient(ellipse 55% 55% at 88% 28%, oklch(0.90 0.10 80 / 0.10) 0%, transparent 70%);
    mix-blend-mode: soft-light;
    pointer-events: none;
    animation: ambientPulse 14s ease-in-out infinite;
  }
  @keyframes ambientPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
  }
  /* Slow zoom of the hero image */
  .hero-img {
    position: absolute; inset: -2%;
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.04);
    will-change: transform;
    animation: heroBreath 22s ease-in-out infinite alternate;
  }
  @keyframes heroBreath {
    from { transform: scale(1.04) translateY(0); }
    to { transform: scale(1.10) translateY(-1.2%); }
  }
  /* Vertical scroll indicator */
  .scroll-line {
    position: relative; width: 1px; height: 56px; background: var(--ink-faint); overflow: hidden;
  }
  .scroll-line::after {
    content: ''; position: absolute; left: 0; top: -40%; width: 1px; height: 40%;
    background: linear-gradient(to bottom, transparent, var(--ink) 50%, transparent);
    animation: scrollPulse 2.4s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0% { transform: translateY(0); }
    100% { transform: translateY(220%); }
  }
  @keyframes caretBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  .wf .wf-tag {
    display: inline-block;
    padding: 4px 8px;
    border: 1px solid var(--line-strong);
    color: var(--ink-soft);
    margin-bottom: 16px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  .wf h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  .wf p { color: var(--ink-mute); max-width: 64ch; }

  /* Showcase video — sound toggle pill */
  .showcase-sound {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border: none; cursor: pointer;
    border-radius: 50%;
    font-size: 17px; line-height: 1;
    background: rgba(255,252,240,0.86);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px -10px rgba(16,71,65,0.5);
    transition: transform 0.25s ease, background 0.25s ease;
  }
  .showcase-sound:hover { transform: scale(1.08); background: rgba(255,252,240,0.98); }

  /* ── Preloader — quatrefoil mark draws itself, wordmark fades in ───────── */
  #preloader {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg, #F4ECDA);
    transition: opacity 600ms ease, visibility 0s linear 600ms;
  }
  #preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
  .pl-inner {
    display: flex; flex-direction: column; align-items: center;
    gap: 30px;
  }
  .pl-logo {
    width: clamp(190px, 28vw, 300px); height: auto;
    animation: plLogoIn 900ms cubic-bezier(.2,.7,.1,1) both, plLogoFloat 5s ease-in-out 1s infinite;
  }
  @keyframes plLogoIn { from { opacity: 0; transform: translateY(12px) scale(0.96); } to { opacity: 1; transform: none; } }
  @keyframes plLogoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
  /* Hand-drawn gold emblem (recreation of the brand mark) */
  .pl-emblem {
    width: clamp(124px, 19vw, 172px); height: auto; overflow: visible;
    filter: drop-shadow(0 8px 22px rgba(156,122,46,0.28));
    animation: plLogoFloat 5s ease-in-out 1.4s infinite;
  }
  .pl-draw { stroke-dasharray: 1; stroke-dashoffset: 1; animation: plDraw 1.3s cubic-bezier(.6,.05,.2,1) forwards; }
  .pl-draw:nth-of-type(1) { animation-delay: 0s; }
  .pl-draw:nth-of-type(2) { animation-delay: 0.12s; }
  .pl-draw:nth-of-type(3) { animation-delay: 0.24s; }
  .pl-draw:nth-of-type(4) { animation-delay: 0.42s; }
  .pl-draw:nth-of-type(5) { animation-delay: 0.64s; }
  .pl-draw:nth-of-type(6) { animation-delay: 0.74s; }
  .pl-draw:nth-of-type(7) { animation-delay: 0.80s; }
  .pl-draw:nth-of-type(8) { animation-delay: 0.50s; }
  .pl-mark {
    width: clamp(72px, 12vw, 104px); height: auto;
    overflow: visible;
    animation: plFloat 4.5s ease-in-out infinite;
  }
  .pl-mark circle {
    fill: none; stroke: var(--emerald, #104741); stroke-width: 1.6;
    stroke-linecap: round;
    stroke-dasharray: 145; stroke-dashoffset: 145;
    animation: plDraw 1.5s cubic-bezier(.6,.05,.2,1) forwards;
    transform-origin: 50px 50px;
  }
  .pl-mark circle:nth-of-type(1) { animation-delay: 0.00s; }
  .pl-mark circle:nth-of-type(2) { animation-delay: 0.12s; }
  .pl-mark circle:nth-of-type(3) { animation-delay: 0.24s; }
  .pl-mark circle:nth-of-type(4) { animation-delay: 0.36s; }
  .pl-mark .pl-dot {
    fill: var(--accent, #B05F32); stroke: none;
    opacity: 0; transform-origin: 50px 50px;
    animation: plDot 0.6s cubic-bezier(.2,.7,.1,1) 0.7s forwards;
  }
  @keyframes plDraw { to { stroke-dashoffset: 0; } }
  @keyframes plDot { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
  @keyframes plFloat { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-6px) rotate(45deg); } }
  .pl-word {
    display: flex; flex-direction: column; align-items: center; line-height: 1;
    opacity: 0; transform: translateY(10px);
    animation: plWord 0.9s cubic-bezier(.2,.7,.1,1) 0.65s forwards;
  }
  .pl-title { font-family: var(--serif-classic, 'Cormorant Garamond', serif); font-size: clamp(20px, 3.4vw, 27px); font-weight: 600; color: var(--emerald); letter-spacing: 0.16em; text-transform: uppercase; }
  .pl-sub { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.42em; text-transform: uppercase; color: var(--ink-mute); margin-top: 9px; }
  @keyframes plWord { to { opacity: 1; transform: translateY(0); } }
  .pl-bar { width: 132px; height: 2px; border-radius: 2px; overflow: hidden; background: rgba(201,162,75,0.18); }
  .pl-bar > span {
    display: block; width: 38%; height: 100%; border-radius: 2px;
    background: linear-gradient(90deg, #9C7A2E, #EBD08C);
    animation: plBar 1.15s ease-in-out infinite;
  }
  @keyframes plBar { 0% { transform: translateX(-130%); } 100% { transform: translateX(380%); } }
  @media (prefers-reduced-motion: reduce) {
    .pl-mark, .pl-mark circle, .pl-mark .pl-dot, .pl-word, .pl-bar > span, .pl-logo, .pl-emblem, .pl-draw { animation: none !important; }
    .pl-logo { opacity: 1; }
    .pl-draw { stroke-dashoffset: 0; }
    .pl-mark circle { stroke-dashoffset: 0; }
    .pl-mark .pl-dot { opacity: 1; }
    .pl-word { opacity: 1; transform: none; }
  }

  /* ── Advantages — dark cinematic full-bleed band ──────────── */
  #advantages {
    position: relative; isolation: isolate;
    margin-top: clamp(70px, 8vw, 110px);
    padding-bottom: clamp(76px, 9vw, 120px);
  }
  #advantages > *:not(.adv-bg) { position: relative; z-index: 1; }
  /* full-bleed dark render banner */
  #advantages > .adv-bg {
    position: absolute; top: 0; bottom: 0;
    left: 50%; width: 100vw; margin-left: -50vw;
    z-index: 0; overflow: hidden; pointer-events: none;
    background: #0b201c;
  }
  .adv-bg::before {
    content: ''; position: absolute; inset: 0;
    background: center 38%/cover no-repeat;
    transform: scale(1.04); opacity: 0; transition: opacity 700ms ease;
  }
  .adv-bg.loaded::before { background-image: url("../assets/gallery/park.jpg"); opacity: 1; }
  /* emerald-black scrim for cinematic depth + white-text contrast */
  .adv-bg::after {
    content: ''; position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(6,22,19,0.72) 0%, rgba(6,22,19,0.52) 42%, rgba(6,20,17,0.86) 100%),
      radial-gradient(120% 90% at 70% 30%, rgba(6,22,19,0) 30%, rgba(6,20,17,0.5) 100%);
  }
  /* white-out the section label + heading over the dark band */
  #advantages .section-label .num { color: rgba(255,255,255,0.55); }
  #advantages .section-label .ttl { color: rgba(255,255,255,0.78); }
  #advantages h2 { color: #fff !important; }

  /* Submit-button loading spinner (lead forms) */
  @keyframes leadSpin { to { transform: rotate(360deg); } }
  .lead-spinner {
    display: inline-block; width: 14px; height: 14px; flex: 0 0 auto;
    border: 2px solid currentColor; border-top-color: transparent; border-radius: 50%;
    animation: leadSpin 0.7s linear infinite;
  }
  .adv-lead {
    font-family: var(--serif); font-style: italic; font-weight: 500;
    font-size: clamp(20px, 2.4vw, 27px); line-height: 1.3;
    color: rgba(255,255,255,0.86); max-width: 52ch; margin: 0 0 46px;
  }

  .adv-cards {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  }
  @media (max-width: 1024px) { .adv-cards { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px)  { .adv-cards { grid-template-columns: 1fr; } }
  .adv-card {
    position: relative; height: 100%;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid rgba(255,255,255,0.14); border-radius: 18px;
    padding: 26px 24px 28px; overflow: hidden;
    transition: transform 360ms cubic-bezier(.2,.7,.1,1), box-shadow 360ms ease, border-color 360ms ease, background 360ms ease;
  }
  .adv-card::before {
    content: ''; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
    background: linear-gradient(90deg, var(--accent), #E9B872);
    transform: scaleX(0); transform-origin: left;
    transition: transform 460ms cubic-bezier(.2,.7,.1,1);
  }
  .adv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -26px rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.30);
    background: rgba(255,255,255,0.13);
  }
  .adv-card:hover::before { transform: scaleX(1); }
  .adv-ico {
    width: 46px; height: 46px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.10); color: #fff; margin-bottom: 20px;
    transition: background 360ms ease, color 360ms ease, transform 360ms cubic-bezier(.2,.7,.1,1);
  }
  .adv-card:hover .adv-ico { background: var(--accent); color: #fff; transform: scale(1.08) rotate(-4deg); }
  .adv-num {
    position: absolute; top: 24px; right: 22px;
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: #E9B872;
  }
  .adv-title { font-family: var(--sans); font-size: 18px; font-weight: 700; letter-spacing: -0.01em; color: #fff; margin-bottom: 8px; }
  .adv-desc  { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.66); }

  /* ── Layouts — three plan cards in a row ──────────────────── */
  .lay-lead { font-family: var(--sans); font-size: 17px; line-height: 1.6; color: var(--ink-soft); max-width: 54ch; margin: -24px 0 38px; }
  .lay-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
  @media (max-width: 1100px) { .lay-row { grid-template-columns: repeat(2, 1fr); max-width: 760px; } }
  @media (max-width: 560px) {
    .lay-row { grid-template-columns: 1fr; max-width: 460px; }
    /* On a full-width card a 1:1 figure becomes a huge near-empty box — cap its
       height so the plan sits compact and the card is easy to scroll past. */
    .lay-figure { aspect-ratio: auto; height: 320px; padding: 14px; }
    .lay-figure img:not(.lay-render) { object-fit: contain; }
    .lay-figure img.lay-render { height: 100%; }
  }
  .lay-row > * { height: 100%; }   /* Reveal wrapper fills the row height */
  .lay-card {
    height: 100%; display: flex; flex-direction: column;
    background: var(--bg); border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
    transition: transform 360ms cubic-bezier(.2,.7,.1,1), box-shadow 360ms ease, border-color 360ms ease;
  }
  .lay-card-body { flex: 1; }   /* equal-height cards: body fills remaining space */
  .lay-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -28px rgba(16,71,65,0.4);
    border-color: rgba(16,71,65,0.2);
  }
  /* Plan figure — plans sit on a white frame. (We deliberately do NOT use
     mix-blend-mode here: Safari renders blended images inside transform/opacity
     ancestors — our cards fade in via transform — as invisible + janky.) */
  .lay-figure {
    position: relative; aspect-ratio: 1 / 1; background: #fff;
    display: flex; align-items: center; justify-content: center; padding: 10px;
  }
  .lay-figure img { width: 100%; height: 100%; object-fit: contain; }
  /* duplex card uses a render, not a white-bg plan → fill the frame, no multiply */
  .lay-figure img.lay-render { object-fit: cover; mix-blend-mode: normal; border-radius: 10px; }
  .lay-tag {
    position: absolute; left: 14px; top: 14px;
    font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
    color: var(--accent); background: rgba(255,252,240,0.8); backdrop-filter: blur(4px);
    padding: 5px 10px; border-radius: 999px;
  }
  .lay-card-body { padding: 22px 22px 24px; border-top: 1px solid var(--line); display: flex; flex-direction: column; }
  .lay-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
  .lay-name { font-family: var(--display); font-weight: 700; font-size: 21px; letter-spacing: -0.01em; color: var(--ink); }
  .lay-total-pill {
    font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--emerald);
    background: rgba(16,71,65,0.09); padding: 6px 12px; border-radius: 999px; white-space: nowrap;
  }
  .lay-desc {
    font-family: var(--sans); font-size: 14.5px; line-height: 1.6; color: var(--ink-soft);
    margin: 0 0 22px;
  }
  .lay-cta {
    margin-top: auto; align-self: flex-start;
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: -0.005em;
    color: var(--emerald); background: transparent; border: 1px solid rgba(16,71,65,0.28);
    padding: 11px 20px; border-radius: 999px; cursor: pointer;
    transition: background .35s ease, color .35s ease, border-color .35s ease;
  }
  .lay-cta-arrow { transition: transform .35s cubic-bezier(0.2,0.7,0.1,1); }
  .lay-cta:hover { background: var(--emerald); color: var(--bg); border-color: var(--emerald); }
  .lay-cta:hover .lay-cta-arrow { transform: translateX(4px); }

  /* Touch: kill the sticky hover-lift (the white plan figure is now global). */
  @media (hover: none) {
    .lay-card:hover { transform: none; box-shadow: none; border-color: var(--line); }
  }

  /* ── Gallery — editorial mosaic + lightbox ────────────────── */
  .gal-lead { font-family: var(--sans); font-size: 17px; line-height: 1.6; color: var(--ink-soft); max-width: 56ch; margin: -24px 0 36px; }
  .gal-mosaic {
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: clamp(150px, 17vw, 230px); grid-auto-flow: dense; gap: 12px;
  }
  /* Tablet/mobile: drop the bento spans → clean, predictable uniform grid */
  @media (max-width: 900px) {
    .gal-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(160px, 32vw, 240px); }
    .gal-tile.big, .gal-tile.wide, .gal-tile.tall { grid-column: auto; grid-row: auto; }
    /* no hover on touch — show captions by default */
    .gal-cap { opacity: 1; transform: none; }
    .gal-tile::after { opacity: 1; }
  }
  @media (max-width: 540px) { .gal-mosaic { grid-template-columns: 1fr; grid-auto-rows: clamp(220px, 62vw, 320px); } }
  .gal-tile {
    position: relative; overflow: hidden; border-radius: 16px; cursor: pointer;
    background: var(--bg-3); box-shadow: 0 14px 30px -22px rgba(16,71,65,0.5);
  }
  .gal-tile.big  { grid-column: span 2; grid-row: span 2; }
  .gal-tile.wide { grid-column: span 2; }
  .gal-tile.tall { grid-row: span 2; }
  .gal-img { position: absolute; inset: 0; width: 100%; height: 100%;
    transition: transform 760ms cubic-bezier(.2,.7,.1,1); }
  .gal-tile:hover .gal-img { transform: scale(1.07); }
  .gal-tile::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(to top, rgba(8,28,25,0.68) 0%, rgba(8,28,25,0.10) 38%, transparent 60%);
    opacity: 1; transition: opacity 360ms ease;
  }
  .gal-tile:hover::after { opacity: 1; }
  .gal-cap {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    padding: 30px 18px 16px; color: #fff;
    font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
    text-shadow: 0 1px 8px rgba(0,0,0,0.35);
    transform: none; opacity: 1; transition: transform 380ms cubic-bezier(.2,.7,.1,1);
    pointer-events: none;
  }
  .gal-tile:hover .gal-cap { transform: translateY(-2px); }
  .gal-zoom {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,252,240,0.9); color: var(--ink); font-size: 15px;
    transform: scale(0.6); opacity: 0; transition: transform 320ms cubic-bezier(.2,.7,.1,1), opacity 320ms ease;
    pointer-events: none;
  }
  .gal-tile:hover .gal-zoom { transform: scale(1); opacity: 1; }

  /* Lightbox */
  .gal-lb {
    position: fixed; inset: 0; z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: clamp(14px, 4vw, 56px);
    background: rgba(6,18,16,0.92); backdrop-filter: blur(8px);
    animation: lbFade 260ms ease both;
  }
  @keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
  .gal-lb-fig { position: relative; margin: 0; max-width: 94vw; max-height: 86vh; display: flex; flex-direction: column; align-items: center; }
  .gal-lb-img { max-width: 94vw; max-height: 80vh; border-radius: 12px; object-fit: contain; box-shadow: 0 50px 120px -30px rgba(0,0,0,0.8); animation: lbZoom 360ms cubic-bezier(.2,.7,.1,1) both; }
  @keyframes lbZoom { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: none; } }
  .gal-lb-cap { display: flex; align-items: center; gap: 14px; margin-top: 16px; color: #fff; font-family: var(--sans); font-size: 14.5px; }
  .gal-lb-cap .mono { color: rgba(255,255,255,0.6); font-size: 12px; }
  .gal-lb-close {
    position: fixed; top: 20px; right: 22px; width: 46px; height: 46px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 20px;
    transition: background 220ms ease, transform 220ms ease;
  }
  .gal-lb-close:hover { background: rgba(255,255,255,0.22); transform: rotate(90deg); }
  .gal-lb-arrow {
    position: fixed; top: 50%; transform: translateY(-50%);
    width: 54px; height: 54px; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22); color: #fff; font-size: 24px;
    transition: background 220ms ease, transform 220ms ease;
  }
  .gal-lb-arrow:hover { background: rgba(255,255,255,0.22); }
  .gal-lb-arrow.prev { left: clamp(12px, 3vw, 36px); }
  .gal-lb-arrow.next { right: clamp(12px, 3vw, 36px); }
  @media (max-width: 600px) { .gal-lb-arrow { width: 44px; height: 44px; } }

  /* ── Construction progress — vertical video reels ─────────── */
  .prog-lead { font-family: var(--sans); font-size: 17px; line-height: 1.6; color: var(--ink-soft); max-width: 56ch; margin: -24px 0 36px; }
  .prog-row {
    display: grid; grid-auto-flow: column; grid-auto-columns: clamp(232px, 24vw, 300px);
    gap: 18px; overflow-x: auto; scroll-snap-type: x proximity;
    padding: 4px 4px 18px; margin: 0 -4px;
    scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent;
  }
  .prog-row::-webkit-scrollbar { height: 8px; }
  .prog-row::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 99px; }
  .prog-row::-webkit-scrollbar-track { background: transparent; }
  .prog-card {
    position: relative; aspect-ratio: 9 / 16; border-radius: 20px; overflow: hidden;
    cursor: pointer; scroll-snap-align: start; background: var(--bg-3);
    box-shadow: 0 22px 46px -26px rgba(16,71,65,0.55);
    transition: transform 360ms cubic-bezier(.2,.7,.1,1), box-shadow 360ms ease;
  }
  .prog-card:hover { transform: translateY(-6px); box-shadow: 0 34px 64px -28px rgba(16,71,65,0.6); }
  .prog-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .prog-card::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg, rgba(6,22,19,0.30) 0%, transparent 30%, transparent 52%, rgba(6,20,17,0.86) 100%);
  }
  .prog-meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 20px 18px; color: #fff; pointer-events: none; }
  .prog-month { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
  .prog-text { font-family: var(--sans); font-size: 12.5px; line-height: 1.4; color: rgba(255,255,255,0.78); margin-top: 6px; }
  .prog-play {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,252,240,0.92); color: var(--ink); font-size: 13px; padding-left: 2px;
    transition: transform 320ms cubic-bezier(.2,.7,.1,1), opacity 320ms ease;
  }
  .prog-card:hover .prog-play { transform: scale(0.86); opacity: 0; }
  .prog-tag {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: #fff;
    background: rgba(8,28,25,0.5); backdrop-filter: blur(4px); padding: 5px 10px; border-radius: 999px;
  }

  /* Lightbox player (reuses gallery overlay styling) */
  .prog-lb-video { max-width: 94vw; max-height: 84vh; border-radius: 14px; object-fit: contain; box-shadow: 0 50px 120px -30px rgba(0,0,0,0.8); background: #000; animation: lbZoom 360ms cubic-bezier(.2,.7,.1,1) both; }
  .prog-lb-cap { margin-top: 16px; color: #fff; font-family: var(--sans); text-align: center; }
  .prog-lb-cap .m { font-family: var(--display); font-weight: 700; font-size: 18px; }
  .prog-lb-cap .d { font-size: 13.5px; color: rgba(255,255,255,0.72); margin-top: 4px; }
  /* merged build-timeline grid under the reels */
  .constr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
  .prog-status { margin-top: clamp(48px, 6vw, 80px); }
  .constr-stage { transition: background 240ms ease; padding-left: 6px; padding-right: 6px; border-radius: 8px; }
  .constr-stage:hover { background: rgba(16,71,65,0.04); }
  /* overall progress above the reels */
  .prog-overall { margin: 6px 0 32px; }
  /* stage timeline centred after the reels */
  .prog-stages { max-width: 760px; margin: clamp(48px, 6vw, 80px) auto 0; }
  .prog-note { text-align: center; font-size: 13px; color: var(--ink-mute); margin-top: 26px; }

  /* ── Investment — render backdrop (like Advantages) ───────── */
  #invest { position: relative; overflow: hidden; }
  #invest > .container { position: relative; z-index: 1; }
  .invest-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; background: #08231f; }
  .invest-bg::before {
    content: ''; position: absolute; inset: 0;
    background: center 30%/cover no-repeat;
    transform: scale(1.04); opacity: 0; transition: opacity 700ms ease;
  }
  .invest-bg.loaded::before { background-image: url("../assets/island-aerial.jpg"); opacity: 1; }
  /* emerald-black cinematic scrim + warm corner glow */
  .invest-bg::after {
    content: ''; position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(6,26,22,0.74) 0%, rgba(6,24,20,0.60) 38%, rgba(5,20,17,0.92) 100%),
      radial-gradient(120% 90% at 82% 8%, rgba(176,95,50,0.22) 0%, transparent 55%);
  }
  /* white-out the loose text over the dark band */
  #invest .section-label .num { color: rgba(255,255,255,0.55); }
  #invest .section-label .ttl { color: rgba(255,255,255,0.80); }
  #invest h2 { color: #fff !important; }
  #invest .invest-head p { color: rgba(255,255,255,0.82) !important; }
  #invest .inv-eyebrow { color: rgba(255,255,255,0.78) !important; }
  #invest .inv-intro { color: rgba(255,255,255,0.86) !important; }
  #invest .inv-note { color: rgba(255,255,255,0.58) !important; }

  /* ── Investment — animated forecast chart ─────────────────── */
  .pc { background: var(--bg); border: 1px solid var(--line); border-radius: 20px; padding: clamp(24px,4vw,40px); }
  .pc-plot { position: relative; }
  .pc-grid { position: absolute; left: 0; right: 0; top: 0; height: 100%; display: flex; flex-direction: column; justify-content: space-between; pointer-events: none; z-index: 0; }
  .pc-grid span { display: block; height: 1px; width: 100%; background: var(--line); transform: scaleX(0); transform-origin: left; transition: transform 760ms cubic-bezier(.2,.7,.1,1); }
  .pc-grid.in span { transform: scaleX(1); }
  .pc-grid.in span:nth-child(2) { transition-delay: 70ms; }
  .pc-grid.in span:nth-child(3) { transition-delay: 140ms; }
  .pc-grid.in span:nth-child(4) { transition-delay: 210ms; }
  .pc-grid.in span:nth-child(5) { transition-delay: 280ms; }
  .pc-cols { position: relative; z-index: 1; display: flex; align-items: flex-end; gap: clamp(8px,2vw,28px); height: clamp(260px,34vw,340px); }
  .pc-col { flex: 1; display: flex; flex-direction: column; align-items: center; height: 100%; justify-content: flex-end; }
  .pc-price { font-family: var(--sans); font-size: clamp(15px,1.6vw,20px); font-weight: 700; color: var(--ink); margin-bottom: 6px; transition: transform 300ms cubic-bezier(.2,.7,.1,1); }
  .pc-delta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; font-weight: 600; color: var(--emerald); margin-bottom: 12px; transition: transform 300ms cubic-bezier(.2,.7,.1,1); }
  .pc-delta.muted { color: var(--ink-mute); }
  .pc-bar {
    position: relative; width: 100%; max-width: 96px; border-radius: 8px 8px 0 0;
    background: linear-gradient(to top, var(--emerald), var(--caramel-2));
    transition: height 1000ms cubic-bezier(.2,.82,.2,1), filter 300ms ease, box-shadow 300ms ease;
    will-change: height;
  }
  .pc-bar::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.65); border-radius: 8px 8px 0 0; }
  .pc-bar::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(180deg, rgba(255,255,255,0.30), transparent 38%); pointer-events: none; }
  .pc-col:hover .pc-bar { filter: brightness(1.06) saturate(1.1); box-shadow: 0 18px 36px -12px rgba(16,71,65,0.55); }
  .pc-col:hover .pc-price { transform: translateY(-3px) scale(1.06); color: var(--emerald); }
  .pc-col:hover .pc-delta { transform: scale(1.1); }
  /* dim the other columns to spotlight the hovered one */
  .pc-cols:hover .pc-col { transition: opacity 300ms ease; }
  .pc-cols:hover .pc-col:not(:hover) { opacity: 0.45; }
  .pc-bar.peak { animation: pcPulse 2.8s ease-in-out infinite; }
  @keyframes pcPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(16,71,65,0); } 50% { box-shadow: 0 0 26px 0 rgba(16,71,65,0.42); } }
  .pc-axis { display: flex; gap: clamp(8px,2vw,28px); margin-top: 14px; border-top: 1px solid var(--line); padding-top: 14px; }
  .pc-axis-col { flex: 1; text-align: center; }
  .pc-k { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--ink); }
  .pc-period { font-size: 11px; color: var(--ink-mute); margin-top: 2px; }
  /* KPI / market cells — subtle hover lift */
  .invest-kpi, .invest-mkt { background: var(--bg-2); transition: background 280ms ease; }
  .invest-kpi { padding: 28px 26px; }
  .invest-mkt { padding: 26px 24px; }
  .invest-kpi:hover, .invest-mkt:hover { background: var(--bg-3); }

  /* ── Hero variant B — layered render collage ──────────────── */
  .herob-visual { position: relative; }
  .herob-main {
    position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 4 / 5;
    background: var(--bg-3); box-shadow: rgba(16,71,65,0.28) 0px 30px 80px -20px;
    transform: translateZ(0);
  }
  .herob-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .herob-inset {
    position: absolute; left: -26px; bottom: -26px; width: 46%; aspect-ratio: 1 / 1; z-index: 2;
    border-radius: 18px; overflow: hidden; border: 5px solid var(--bg);
    box-shadow: 0 22px 46px -16px rgba(16,71,65,0.42);
  }
  .herob-inset img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .herob-chip {
    position: absolute; right: 18px; top: 18px; z-index: 3;
    background: rgba(255,252,240,0.92); backdrop-filter: blur(8px);
    padding: 14px 18px; border-radius: 14px;
    box-shadow: 0 10px 30px -12px rgba(16,71,65,0.35);
  }
  .herob-chip-v { font-family: var(--sans); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
  @media (max-width: 880px) { .herob-inset { left: 0; width: 42%; bottom: -18px; } }

  /* utilities */
  .row { display: flex; }
  .col { display: flex; flex-direction: column; }
  .stretch { flex: 1; }
  .gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; } .gap-32 { gap: 32px; } .gap-48 { gap: 48px; }

  /* ── Gallery slider ───────────────────────────────────────── */
  .slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,252,240,0.88); color: var(--ink);
    font-size: 26px; line-height: 1; display: flex; align-items: center; justify-content: center;
    border: none; cursor: pointer; z-index: 3;
    box-shadow: 0 6px 20px -8px rgba(16,71,65,0.5);
    transition: background 180ms ease, transform 180ms ease;
  }
  .slider-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }

  /* ── Project showcase slider ──────────────────────────────── */
  #showcase { padding-top: 120px; }
  .show-head { margin-bottom: 30px; }
  .show-kicker { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
  .show-title {
    font-family: var(--serif); font-weight: 600; font-size: clamp(34px,5vw,68px);
    letter-spacing: -0.025em; line-height: 1.04; color: var(--ink); margin-top: 14px;
  }
  .show-stage {
    position: relative; width: 100%; aspect-ratio: 16 / 9; max-height: 760px;
    border-radius: 22px; overflow: hidden; background: var(--bg-3);
    box-shadow: 0 40px 90px -50px rgba(16,71,65,0.6);
  }
  @media (max-width: 720px) { .show-stage { aspect-ratio: 4 / 5; } }
  .show-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 800ms ease; }
  .show-slide.is-active { opacity: 1; }
  .show-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .show-scrim {
    position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg, rgba(6,26,23,0) 40%, rgba(6,24,21,0.82) 100%);
  }
  .show-caption {
    position: absolute; left: clamp(20px,4vw,44px); right: clamp(20px,4vw,44px);
    bottom: clamp(24px,4vw,44px); color: #fff; pointer-events: none; max-width: 44ch;
  }
  .show-cap-count { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; opacity: 0.8; margin-bottom: 10px; }
  .show-cap-t { font-family: var(--display); font-weight: 700; font-size: clamp(22px,2.6vw,34px); letter-spacing: -0.015em; }
  .show-cap-d { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.82); margin-top: 8px; }
  .show-dots { position: absolute; right: clamp(20px,4vw,44px); top: clamp(18px,3vw,26px); display: flex; gap: 7px; z-index: 4; }
  .show-dot { width: 8px; height: 8px; border-radius: 999px; border: none; cursor: pointer; padding: 0;
    background: rgba(255,255,255,0.45); transition: width 320ms ease, background 320ms ease; }
  .show-dot.is-active { width: 26px; background: #fff; }

  /* ── Island benefits — "Everything Within Reach" (under the gallery) ── */
  #reach { padding-top: 120px; }
  .reach-head { margin-bottom: 32px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
  .reach-kicker { font-size: 13px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); }
  .reach-title {
    font-family: var(--serif); font-weight: 600; font-size: clamp(34px,5vw,68px);
    letter-spacing: -0.025em; line-height: 1.04; color: var(--ink); margin: 14px 0 18px;
  }
  .reach-lead { font-size: 17px; line-height: 1.6; color: var(--ink-soft); }
  /* stat strip */
  .reach-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: var(--line); border: 1px solid var(--line); margin-bottom: 28px;
  }
  .reach-stat { background: var(--bg); padding: 26px 24px; }
  .reach-stat-v {
    font-family: var(--sans); font-size: clamp(28px,3vw,38px); font-weight: 700; letter-spacing: -0.02em;
    line-height: 1; color: var(--emerald);
  }
  .reach-stat-l { font-size: 13px; color: var(--ink-mute); margin-top: 10px; line-height: 1.4; }
  /* uniform amenity grid — equal cards, line icon + title + figure + desc */
  .reach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .reach-grid > * { min-width: 0; }
  .reach-card {
    height: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 16px;
    padding: 26px 24px 28px; display: flex; flex-direction: column;
    transition: transform .4s cubic-bezier(0.2,0.7,0.1,1), box-shadow .4s ease, border-color .4s ease;
  }
  .reach-card:hover {
    transform: translateY(-4px); border-color: rgba(16,71,65,0.22);
    box-shadow: 0 26px 50px -34px rgba(16,71,65,0.5);
  }
  .reach-ico-wrap {
    width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
    background: rgba(16,71,65,0.07); color: var(--emerald); margin-bottom: 20px;
    transition: background .4s ease, color .4s ease;
  }
  .reach-card:hover .reach-ico-wrap { background: var(--emerald); color: var(--bg); }
  .reach-ico { width: 24px; height: 24px; display: block; }
  .reach-card-head { display: flex; flex-direction: column; gap: 7px; margin-bottom: 11px; }
  .reach-card-t { font-family: var(--display); font-weight: 700; letter-spacing: -0.01em; color: var(--ink); font-size: 17px; line-height: 1.25; }
  .reach-tag {
    align-self: flex-start; font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
    color: var(--accent); background: rgba(176,95,50,0.10); padding: 4px 10px; border-radius: 999px;
  }
  .reach-card-d { font-size: 13.5px; line-height: 1.55; color: var(--ink-mute); }
  @media (max-width: 900px) {
    .reach-stats { grid-template-columns: repeat(2, 1fr); }
    .reach-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 540px) {
    .reach-grid { grid-template-columns: 1fr; }
  }

  /* ── Mid-page lead form — emerald conversion card ─────────── */
  .midform-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px);
    align-items: center; border-radius: 24px; overflow: hidden;
    padding: clamp(28px, 4vw, 56px);
    background:
      radial-gradient(120% 90% at 88% -10%, rgba(176,95,50,0.22), transparent 55%),
      linear-gradient(160deg, #0C3631 0%, #104741 52%, #0A2E2A 100%);
    color: var(--bg);
    box-shadow: 0 40px 90px -50px rgba(16,71,65,0.6);
  }
  .midform-kicker { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: #F3DEC8; }
  .midform-title {
    font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 3.4vw, 46px);
    letter-spacing: -0.02em; line-height: 1.06; margin: 14px 0 14px; max-width: 16ch;
  }
  .midform-sub { font-size: 16px; line-height: 1.6; color: rgba(245,239,226,0.82); max-width: 40ch; }
  @media (max-width: 820px) { .midform-card { grid-template-columns: 1fr; } }

  /* ── Developer — futuristic LIGHT band (breaks the dark Investment above) ── */
  #developer {
    position: relative; overflow: hidden; color: var(--ink);
    background:
      radial-gradient(120% 90% at 84% -10%, rgba(176,95,50,0.07), transparent 55%),
      radial-gradient(90% 80% at 6% 112%, rgba(16,71,65,0.08), transparent 60%),
      linear-gradient(165deg, var(--bg) 0%, var(--bg-2) 100%);
  }
  /* fine technical grid overlay (emerald, faint) */
  #developer::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image:
      linear-gradient(rgba(16,71,65,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(16,71,65,0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 78%);
            mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 78%);
  }
  /* thin accent line at the top edge */
  #developer::after {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; z-index: 1;
    background: linear-gradient(90deg, transparent, rgba(176,95,50,0.55), rgba(16,71,65,0.4), transparent);
  }
  #developer > .container { position: relative; z-index: 2; }
  /* stat numerals: emerald gradient on light */
  #developer .dev-fact-v {
    background: linear-gradient(180deg, var(--emerald), #1C7A6E);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  /* layout */
  .dev-head { display: grid; grid-template-columns: 80px 1fr; gap: 24px; align-items: baseline; margin-bottom: 52px; }
  .dev-head .mono:first-child { color: var(--ink-mute) !important; }
  .dev-head .mono:last-child { color: var(--accent) !important; }
  .dev-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: start; }
  .dev-emblem { height: 60px; width: auto; display: block; margin-bottom: 26px; }
  .dev-title {
    font-family: var(--serif); font-weight: 600; font-size: clamp(34px,4.4vw,60px);
    letter-spacing: -0.025em; line-height: 1.05; color: var(--ink); margin-bottom: 26px; max-width: 16ch;
  }
  .dev-body { font-size: 16px; line-height: 1.68; color: var(--ink-soft); margin-bottom: 18px; max-width: 56ch; }
  .dev-cta {
    margin-top: 14px; display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
    font-family: var(--display); font-weight: 600; font-size: 14px; color: var(--emerald);
    background: transparent; border: 1px solid rgba(16,71,65,0.28); padding: 12px 22px; border-radius: 999px;
    transition: background .35s ease, color .35s ease, border-color .35s ease;
  }
  .dev-cta:hover { background: var(--emerald); border-color: var(--emerald); color: var(--bg); }
  .dev-cta:hover .lay-cta-arrow { transform: translateX(4px); }
  /* stat strip */
  .dev-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--line); border: 1px solid var(--line); margin-bottom: 22px;
  }
  .dev-stat { background: var(--bg); padding: 22px 20px; }
  .dev-stat .dev-fact-v { font-family: var(--sans); font-size: 34px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
  .dev-stat-l { font-size: 12.5px; color: var(--ink-mute); margin-top: 9px; line-height: 1.35; }
  /* portfolio — proven track record */
  .dev-portfolio { margin-top: 8px; }
  .dev-portfolio-t {
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
    padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid var(--line);
  }
  .dev-portfolio-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
  .dev-portfolio-item {
    position: relative; padding-left: 20px; font-size: 14px; line-height: 1.4; color: var(--ink-soft);
  }
  .dev-portfolio-item::before {
    content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 50%;
    background: linear-gradient(180deg, var(--emerald), #1C7A6E);
  }
  @media (max-width: 560px) { .dev-portfolio-list { grid-template-columns: 1fr; } }
  @media (max-width: 760px) {
    .dev-head { grid-template-columns: 1fr; gap: 6px; }
    .dev-stats { grid-template-columns: 1fr; }
    .dev-pillars { grid-template-columns: 1fr; }
  }

  /* ── Endorsement / president quote ────────────────────────── */
  .quote-arrow {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: transparent; color: #fff;
    border: 1px solid rgba(255,255,255,0.45);
    font-size: 20px; line-height: 1; cursor: pointer;
    transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
  }
  .quote-arrow:hover { background: rgba(255,255,255,0.16); border-color: #fff; transform: scale(1.06); }
  .quote-arrow:active { transform: scale(0.94); }
  .quote-dot { width: 8px; height: 8px; padding: 0; border: none; border-radius: 999px; cursor: pointer; background: rgba(255,255,255,0.4); transition: background 220ms, width 220ms; }
  .quote-dot:hover { background: rgba(255,255,255,0.7); }
  .quote-dot-active { width: 26px; background: #fff; }
  .pm-seal {
    flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent); color: #fff; font-size: 20px;
    box-shadow: 0 12px 30px -12px rgba(176,95,50,0.75);
  }
  .pm-badge {
    display: inline-flex; align-items: center;
    background: var(--accent); color: #fff;
    font-family: var(--sans); font-weight: 700;
    font-size: clamp(13px, 1.3vw, 16px);
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 9px 16px; border-radius: 999px;
    box-shadow: 0 12px 30px -12px rgba(176,95,50,0.7);
  }
  .quote-enter { animation: quoteEnter 760ms cubic-bezier(.2,.7,.1,1) both; }

  /* ── Endorsement — light floating recognition card ────────── */
  .endorse {
    position: relative; overflow: hidden;
    max-width: 920px; margin: 0 auto; text-align: center;
    border-radius: 26px; padding: clamp(44px, 6vw, 76px) clamp(28px, 5vw, 72px);
    background: var(--bg-2); border: 1px solid var(--line);
    box-shadow: 0 44px 90px -48px rgba(16,71,65,0.45), 0 1px 0 rgba(255,255,255,0.7) inset;
  }
  /* oversized decorative quote mark */
  .endorse::before {
    content: '\201C'; position: absolute; left: clamp(16px, 4vw, 46px); top: clamp(-26px, -2vw, -8px);
    font-family: var(--serif); font-weight: 600; line-height: 1;
    font-size: clamp(130px, 17vw, 210px); color: var(--emerald); opacity: 0.08; pointer-events: none;
  }
  .endorse-inner { position: relative; display: flex; flex-direction: column; align-items: center; }
  .endorse-badge {
    display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px;
    font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--emerald); background: rgba(16,71,65,0.07); border: 1px solid rgba(16,71,65,0.16);
    padding: 9px 16px; border-radius: 999px;
  }
  .endorse-badge .star { color: var(--accent); font-size: 13px; }
  .endorse-text {
    font-family: var(--serif); font-weight: 500;
    font-size: clamp(21px, 2.7vw, 32px); line-height: 1.32; letter-spacing: -0.015em;
    margin: 0; max-width: 30ch; color: var(--ink);
  }
  .endorse-by { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 30px; }
  .endorse-seal {
    flex: 0 0 auto; width: 54px; height: 54px; border-radius: 50%;
    object-fit: cover; object-position: center 20%;
    border: 2px solid rgba(16,71,65,0.16);
    box-shadow: 0 14px 30px -10px rgba(16,71,65,0.55);
  }
  .endorse-by-t { text-align: left; }
  .endorse-name { font-family: var(--sans); font-weight: 700; font-size: 16px; color: var(--ink); }
  .endorse-role { display: flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 13px; color: var(--ink-mute); margin-top: 3px; }

  /* ── Island intro (manifesto + render) ────────────────────── */
  .island-intro {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px 56px;
    align-items: end;
  }
  .island-why {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    margin-top: clamp(40px, 6vw, 72px);
  }
  .island-render {
    position: relative; margin-top: clamp(40px, 6vw, 72px);
    border-radius: 24px; overflow: hidden;
    aspect-ratio: 16 / 8;
    background: var(--bg-3);
    box-shadow: 0 40px 100px -34px rgba(16,71,65,0.45);
  }
  @media (max-width: 880px) {
    .island-intro { grid-template-columns: 1fr; }
    .island-why { grid-template-columns: 1fr; gap: 22px; }
    .island-render { aspect-ratio: 4 / 3; }
  }

  /* ── Location — interactive map ───────────────────────────── */
  /* No section label here, so restore the usual top rhythm. */
  #location { padding-top: clamp(96px, 12vw, 150px); }
  /* layout cards need bottom air before the next section */
  #layouts { padding-bottom: clamp(70px, 8vw, 110px); }
  .loc-grid {
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px;
    align-items: stretch;
  }
  .loc-map {
    position: relative; border-radius: 22px; overflow: hidden;
    aspect-ratio: 3 / 2; background: var(--bg-3);
    box-shadow: 0 30px 80px -30px rgba(16,71,65,0.45);
  }
  .loc-map-veil {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(120% 120% at 50% 40%, transparent 55%, rgba(6,24,21,0.28) 100%);
  }
  .map-pin-wrap { position: absolute; transform: translate(-50%, -50%); z-index: 2; }
  .map-pin-wrap.active { z-index: 4; }
  .map-pin {
    position: relative; width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--emerald); color: #fff;
    font-family: var(--sans); font-weight: 700; font-size: 12px;
    border: 2px solid rgba(255,255,255,0.92); cursor: pointer;
    box-shadow: 0 8px 20px -6px rgba(0,0,0,0.55);
    transition: transform 220ms cubic-bezier(.2,.7,.1,1), background 220ms ease;
  }
  .map-pin::after {
    content: ''; position: absolute; inset: -7px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.55);
    animation: pinPulse 2.6s ease-out infinite;
  }
  @keyframes pinPulse {
    0% { transform: scale(0.7); opacity: 0.9; }
    70%, 100% { transform: scale(1.5); opacity: 0; }
  }
  .map-pin-wrap:hover .map-pin, .map-pin-wrap.active .map-pin {
    transform: scale(1.2); background: var(--accent);
  }
  .map-pin-label {
    position: absolute; bottom: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(4px);
    white-space: nowrap; background: rgba(8,28,25,0.94); color: #fff;
    padding: 8px 13px; border-radius: 10px;
    font-family: var(--sans); font-weight: 600; font-size: 12.5px;
    opacity: 0; pointer-events: none; transition: opacity 200ms ease, transform 200ms ease;
    box-shadow: 0 12px 28px -10px rgba(0,0,0,0.6);
  }
  .map-pin-label::after {
    content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    border: 5px solid transparent; border-top-color: rgba(8,28,25,0.94);
  }
  .map-pin-wrap:hover .map-pin-label, .map-pin-wrap.active .map-pin-label {
    opacity: 1; transform: translateX(-50%) translateY(0);
  }
  .loc-side { display: flex; flex-direction: column; }
  .loc-legend { display: flex; flex-direction: column; gap: 2px; margin-bottom: 30px; }
  .loc-legend-row {
    display: flex; gap: 14px; align-items: flex-start; text-align: left;
    background: transparent; border: none; cursor: pointer;
    padding: 12px 12px; border-radius: 12px; width: 100%;
    transition: background 200ms ease;
  }
  .loc-legend-row:hover, .loc-legend-row.active { background: rgba(16,71,65,0.06); }
  .loc-legend-num {
    flex: 0 0 auto; font-family: var(--mono); font-size: 11px; font-weight: 600;
    color: var(--accent); letter-spacing: 0.1em; margin-top: 3px;
  }
  .loc-legend-name { display: block; font-family: var(--sans); font-size: 15.5px; font-weight: 600; color: var(--ink); }
  .loc-legend-desc { display: block; font-family: var(--sans); font-size: 13px; color: var(--ink-mute); margin-top: 2px; }
  .loc-metrics {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    margin-top: clamp(30px, 4vw, 48px);
    background: var(--line); border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
    box-shadow: 0 34px 70px -40px rgba(16,71,65,0.45), 0 4px 14px -8px rgba(16,71,65,0.18);
  }
  @media (max-width: 720px) { .loc-metrics { grid-template-columns: repeat(2, 1fr); } }
  .loc-metric {
    position: relative; background: var(--bg);
    padding: clamp(24px, 2.6vw, 34px) clamp(20px, 2vw, 28px);
    transition: background 300ms ease, transform 300ms cubic-bezier(.2,.7,.1,1);
  }
  /* hover: cell lifts a touch, warms up, accent bar grows, number turns terracotta */
  .loc-metric::before {
    content: ''; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
    background: var(--accent); transform: scaleX(0); transform-origin: left;
    transition: transform 360ms cubic-bezier(.2,.7,.1,1);
  }
  .loc-metric:hover { background: var(--bg-2); }
  .loc-metric:hover::before { transform: scaleX(1); }
  .loc-metric:hover .loc-metric-v { color: var(--accent); }
  .loc-metric-v { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 2.6vw, 36px); letter-spacing: -0.02em; color: var(--emerald); line-height: 1; transition: color 300ms ease; }
  .loc-metric-l { font-family: var(--sans); font-size: 13px; color: var(--ink-soft); margin-top: 8px; }
  @media (max-width: 880px) {
    .loc-grid { grid-template-columns: 1fr; gap: 28px; }
  }
  @keyframes quoteEnter { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

  /* ── intl-tel-input field (matches underline inputs) ──────── */
  .iti-wrap { width: 100%; }
  .iti-wrap .iti { width: 100%; display: block; border-bottom: 1px solid var(--line-strong); }
  .iti-wrap .lead-phone {
    width: 100%; padding: 12px 0; background: transparent; border: none; outline: none;
    color: var(--ink); font-family: var(--sans); font-size: 15px; letter-spacing: 0.01em;
  }
  .iti__selected-dial-code { font-family: var(--sans); font-size: 15px; }
  .iti-wrap-dark .iti { border-bottom-color: rgba(245,239,226,0.30); }
  .iti-wrap-dark .lead-phone { color: var(--bg); }
  .iti-wrap-dark .iti__selected-dial-code { color: var(--bg); }
  .iti-wrap-dark .iti__arrow { border-top-color: rgba(245,239,226,0.7); }
  .iti__dropdown-content { font-family: var(--sans); background: #fff; }
  /* Country dropdown must stay readable even inside dark-theme forms (quizzes) */
  .iti__country-list { background: #fff; }
  .iti__country, .iti__country-name { color: #1a1109 !important; }
  .iti__dial-code { color: #7a756c !important; }
  .iti__search-input { color: #1a1109 !important; background: #fff; }
  .iti__country.iti__highlight, .iti__country:hover { background: #f2efe6 !important; }
  .iti-wrap .iti__country-container:focus-visible .iti__selected-country,
  .iti-wrap .iti__selected-country { outline: none; }

  /* ── Mobile burger + bottom-sheet menu ────────────────────── */
  .nav-burger { display: none; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: transparent; border: none; cursor: pointer; margin-right: -6px; }
  .nav-burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 300ms cubic-bezier(.2,.8,.2,1), opacity 200ms; }
  /* When the drawer is open the burger is replaced by the in-drawer close (×) */
  .nav-burger.open { opacity: 0; pointer-events: none; }

  .nav-backdrop { position: fixed; inset: 0; z-index: 55; background: rgba(10,22,20,0.5); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity 320ms ease; }
  .nav-backdrop.open { opacity: 1; pointer-events: auto; }
  /* Right-side slide-in drawer */
  .nav-sheet {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 60;
    width: min(88vw, 380px);
    display: flex; flex-direction: column;
    background: var(--bg); border-left: 1px solid var(--line);
    padding: 92px 28px calc(28px + env(safe-area-inset-bottom)) 28px;
    box-shadow: -28px 0 80px -24px rgba(16,71,65,0.5);
    transform: translateX(105%); transition: transform 420ms cubic-bezier(.2,.85,.2,1);
    overflow-y: auto;
  }
  .nav-sheet.open { transform: translateX(0); }
  .nav-sheet-close { position: absolute; top: 16px; right: 18px; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; font-size: 30px; line-height: 1; color: var(--ink); background: transparent; border: none; cursor: pointer; border-radius: 50%; transition: background 160ms; }
  .nav-sheet-close:hover { background: var(--bg-2); }
  .nav-sheet-links { display: flex; flex-direction: column; }
  .nav-sheet-links a { font-family: var(--sans); font-size: 19px; font-weight: 600; color: var(--ink); padding: 15px 2px; border-bottom: 1px solid var(--line); letter-spacing: -0.01em; }
  .nav-sheet-links a:active { color: var(--accent); }
  .nav-sheet-cta { width: 100%; justify-content: center; margin-top: 28px; padding: 17px; font-size: 15px; letter-spacing: 0; }
  .nav-sheet-foot { display: flex; margin-top: 12px; }
  .nav-sheet-wa { width: 100%; justify-content: center; padding: 16px 20px; font-size: 15px; letter-spacing: 0; }
  @media (min-width: 1161px) { .nav-sheet, .nav-backdrop { display: none; } }

  /* ── Floating CTA — fixed bottom-right, fades out on scroll, back in on idle ── */
  .fab-cta {
    position: fixed; z-index: 55;
    right: clamp(16px, 4vw, 28px);
    bottom: calc(clamp(16px, 4vw, 28px) + env(safe-area-inset-bottom));
    display: inline-flex; align-items: center; gap: 9px;
    padding: 15px 22px; border: none; border-radius: 999px; cursor: pointer;
    font-family: var(--sans); font-weight: 700; font-size: 15px; letter-spacing: -0.005em;
    color: #fff; background: var(--emerald);
    box-shadow: 0 18px 44px -16px rgba(16,71,65,0.6);
    opacity: 0; transform: translateY(16px) scale(.96); pointer-events: none;
    transition: opacity 360ms cubic-bezier(.2,.8,.2,1), transform 360ms cubic-bezier(.2,.8,.2,1), box-shadow 220ms ease;
  }
  .fab-cta.show { opacity: 1; transform: none; pointer-events: auto; }
  .fab-cta:hover { box-shadow: 0 24px 56px -16px rgba(16,71,65,0.8); }
  .fab-cta:active { transform: scale(.97); }
  .fab-cta svg { width: 18px; height: 18px; }
  @media (prefers-reduced-motion: reduce) { .fab-cta { transition: opacity 200ms linear; transform: none; } }

  /* ── Responsive ───────────────────────────────────────────── */
  /* Hide the centered nav early — Georgian labels are longer and must not
     collide with the WhatsApp button on mid-size screens. */
  @media (max-width: 1160px) {
    .nav-center { display: none !important; }
    .nav-desktop-only { display: none !important; }
    .nav-burger { display: flex; }
  }
  @media (max-width: 1024px) {
    .adv-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .stats-grid { grid-template-columns: repeat(2, 1fr) !important; row-gap: 36px !important; }
    .invest-kpis { grid-template-columns: 1fr !important; }
  }
  @media (max-width: 880px) {
    .hero-grid, .about-grid, .infra-grid, .params-grid, .dev-grid, .contact-grid, .footer-grid,
    .invest-head, .invest-reasons {
      grid-template-columns: 1fr !important;
      gap: 36px !important;
    }
    .hero-sheet { grid-template-columns: repeat(2, 1fr) !important; row-gap: 28px !important; }
    .about-grid > div[style*="sticky"], .about-grid .lazy-sticky { position: static !important; }
  }
  @media (max-width: 560px) {
    .adv-grid, .hero-sheet { grid-template-columns: 1fr !important; }
    .stats-grid { grid-template-columns: repeat(2, 1fr) !important; column-gap: 20px !important; }
    .lead-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
    .footer-grid { grid-template-columns: 1fr !important; }
  }

  /* ── Hero price-increase banner ───────────────────────────── */
  .hero-banner {
    display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
    padding: 6px; padding-right: 14px;
    border: 1px solid rgba(16,71,65,0.28); background: rgba(16,71,65,0.07);
    border-radius: 999px; max-width: 100%;
  }
  /* Location deck under the hero title — makes the place unmistakable */
  .hero-loc { display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; margin-bottom: 10px; }
  .hero-loc-pin { color: var(--accent); flex: none; }
  .hero-loc-t {
    font-family: var(--display); font-weight: 700; letter-spacing: -0.01em;
    font-size: clamp(17px, 1.7vw, 21px); color: var(--ink);
  }
  .hero-loc .geo-flag { border-radius: 3px; box-shadow: 0 1px 4px rgba(0,0,0,0.18); }
  /* Positive-growth tag → emerald (reads as "up / good") */
  .hero-banner-tag {
    background: var(--emerald); color: #fff; font-family: var(--sans); font-weight: 700;
    font-size: 12px; letter-spacing: 0.02em; padding: 6px 12px; border-radius: 999px; white-space: nowrap;
  }
  .hero-banner-text { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--emerald); }

  /* ── New section grids — responsive ───────────────────────── */
  @media (max-width: 1024px) {
    .island-points, .invest-market { grid-template-columns: repeat(2, 1fr) !important; }
  }
  @media (max-width: 880px) {
    .constr-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  }
  @media (max-width: 560px) {
    .island-points, .invest-market { grid-template-columns: 1fr !important; }
    .hero-banner { align-items: flex-start; }
  }

  /* ── Hero slider dots with progress fill ──────────────────── */
  .hero-dot { width: 8px; height: 8px; padding: 0; border: none; border-radius: 999px; cursor: pointer; background: rgba(255,255,255,0.5); box-shadow: 0 1px 4px rgba(0,0,0,0.3); transition: background 200ms; }
  .hero-dot:hover { background: rgba(255,255,255,0.8); }
  .hero-dot-active { width: 32px; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.4); overflow: hidden; cursor: pointer; box-shadow: 0 1px 4px rgba(0,0,0,0.3); }
  .hero-dot-fill { display: block; height: 100%; width: 0; background: #fff; border-radius: 999px; animation-name: heroDotFill; animation-timing-function: linear; animation-fill-mode: forwards; }
  @keyframes heroDotFill { from { width: 0; } to { width: 100%; } }

  /* ── Gallery slider dots with progress fill (light theme) ── */
  .g-dot { width: 8px; height: 8px; padding: 0; border: none; border-radius: 999px; cursor: pointer; background: var(--line-strong); transition: background 200ms; }
  .g-dot:hover { background: var(--ink-mute); }
  .g-dot-active { width: 30px; height: 8px; border-radius: 999px; background: var(--line); overflow: hidden; cursor: pointer; }
  .g-dot-fill { display: block; height: 100%; width: 0; background: var(--emerald); border-radius: 999px; animation-name: heroDotFill; animation-timing-function: linear; animation-fill-mode: forwards; }
