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

/* ===== tokens/colors.css ===== */
/* ============================================================
   CRC THE PERIDONA — COLOR TOKENS
   Airy coastal-luxury palette:
     • PRIMARY   — white / near-white surfaces
     • SECONDARY — light blue (bands, accents, hovers, links)
     • GOLD      — small accents (eyebrows, rules, stats) and the
                   enquiry call-to-action only
   Deep navy is the dark shade of the blue family (dark sections,
   primary text) so nothing ever sits white-on-white.
   ============================================================ */

:root {
  /* --- Base neutrals: white → light blue → deep navy -------- */
  --ivory-50:  #FFFFFF;   /* raised surface / cards (pure white)  */
  --ivory-100: #FCFDFE;   /* page canvas (near-white, cool)       */
  --ivory-200: #EAF3FA;   /* sunken / alt band = LIGHT BLUE        */
  --sand-300:  #DBEAF4;   /* hairline tint on white               */
  --sand-400:  #B7D2E4;   /* muted blue fill, disabled            */

  --taupe-500: #647A8B;   /* secondary text on white              */
  --taupe-600: #445A6C;   /* muted heading / caption              */
  --umber-700: #243A4C;   /* strong body on white                 */
  --espresso-800: #123049; /* dark section surface (navy)         */
  --espresso-900: #0C2437; /* deepest surface (deep navy)         */
  --ink:       #13293B;   /* primary text, deep navy              */

  /* --- Gold / brass: small accents + the enquiry CTA -------- */
  --gold-300:  #E5CF97;   /* champagne highlight (on dark)        */
  --gold-400:  #D1B574;   /* light gold on dark                   */
  --gold-500:  #BE9B54;   /* PRIMARY gold — enquiry CTA, rules    */
  --gold-600:  #9F8040;   /* pressed / deep gold                  */
  --gold-700:  #7B6230;   /* gold text on white (AA)              */

  /* --- Light blue: the SECONDARY (named "sage" for token
         stability; values are blue) --------------------------- */
  --sage-300:  #AAD0E7;   /* light blue highlight                 */
  --sage-500:  #4F93C0;   /* secondary accent — links, hovers     */
  --sage-700:  #2B5C7F;   /* deep blue text (AA on white)         */

  /* --- CRC developer identity (secondary, sparing use) ----- */
  --crc-blue:  #6E86C3;
  --crc-green: #4E9E7E;

  /* --- Feedback (kept quiet & on-brand) -------------------- */
  --success: #3E8E7E;
  --danger:  #B4483B;
  --info:    #4F93C0;

  /* ============================================================
     SEMANTIC ALIASES — reach for these in components
     ============================================================ */

  /* Surfaces */
  --surface-canvas:  var(--ivory-100);   /* white page bg         */
  --surface-raised:  var(--ivory-50);    /* white cards, sheets   */
  --surface-sunken:  var(--ivory-200);   /* light-blue alt band   */
  --surface-inverse: var(--espresso-900);/* deep-navy luxe section*/
  --surface-inverse-2: var(--espresso-800);

  /* Text */
  --text-primary:    var(--ink);
  --text-secondary:  var(--taupe-600);
  --text-muted:      var(--taupe-500);
  --text-on-dark:    #EAF3FA;
  --text-on-dark-dim:#9FB6C6;
  --text-gold:       var(--gold-700);
  --text-gold-on-dark: var(--gold-400);
  --text-blue:       var(--sage-700);
  --text-blue-on-dark: var(--sage-300);

  /* Accent — GOLD drives the small accents + enquiry CTA */
  --accent:          var(--gold-500);
  --accent-hover:    var(--gold-600);
  --accent-soft:     rgba(190, 155, 84, 0.12);

  /* Secondary — LIGHT BLUE drives bands, hovers, links */
  --secondary:       var(--sage-500);
  --secondary-hover: var(--sage-700);
  --secondary-soft:  rgba(79, 147, 192, 0.12);

  /* Lines & borders */
  --line-hairline:   rgba(19, 41, 59, 0.12);
  --line-strong:     rgba(19, 41, 59, 0.26);
  --line-gold:       rgba(190, 155, 84, 0.55);
  --line-blue:       rgba(79, 147, 192, 0.40);
  --line-on-dark:    rgba(234, 243, 250, 0.16);
  --line-gold-on-dark: rgba(209, 181, 116, 0.5);

  /* Focus ring — blue (interactive / secondary) */
  --focus-ring:      rgba(79, 147, 192, 0.6);

  /* Overlays / scrims for full-bleed imagery (navy-based) */
  --scrim-bottom:    linear-gradient(to top, rgba(9,26,40,0.82) 0%, rgba(9,26,40,0.34) 42%, rgba(9,26,40,0) 78%); /* @kind other */
  --scrim-full:      linear-gradient(to bottom, rgba(9,26,40,0.26), rgba(9,26,40,0.5)); /* @kind other */
}


/* ===== tokens/typography.css ===== */
/* ============================================================
   CRC THE PERIDONA — TYPOGRAPHY TOKENS
   Display: high-contrast Didone-adjacent serif for the
   editorial, luxury voice (approximates the logotype).
   Sans:    a refined geometric grotesque for eyebrows,
            labels, UI and body — set light and tracked.
   NOTE: the real logotype is a bespoke serif; Cormorant
   Garamond is the closest Google Fonts substitute. See readme.
   ============================================================ */


:root {
  /* --- Families -------------------------------------------- */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* --- Fluid type scale (min → fluid → max) ---------------- */
  --fs-hero:     clamp(3rem, 8vw, 6rem);           /* @kind font */
  --fs-display:  clamp(2.5rem, 6vw, 4.5rem);       /* @kind font */
  --fs-h1:       clamp(2rem, 4.6vw, 3.25rem);      /* @kind font */
  --fs-h2:       clamp(1.6rem, 3.2vw, 2.4rem);     /* @kind font */
  --fs-h3:       clamp(1.3rem, 2.2vw, 1.7rem);     /* @kind font */
  --fs-lead:     clamp(1.125rem, 1.8vw, 1.375rem); /* @kind font */
  --fs-body:     1.0625rem;   /* @kind font */
  --fs-body-sm:  0.9375rem;   /* @kind font */
  --fs-caption:  0.8125rem;   /* @kind font */
  --fs-eyebrow:  0.75rem;     /* @kind font */

  /* --- Weights --------------------------------------------- */
  --fw-light:    300;   /* @kind font */
  --fw-regular:  400;   /* @kind font */
  --fw-medium:   500;   /* @kind font */
  --fw-semibold: 600;   /* @kind font */
  --fw-bold:     700;   /* @kind font */

  /* --- Line heights ---------------------------------------- */
  --lh-tight:    1.04;   /* @kind font */
  --lh-snug:     1.18;   /* @kind font */
  --lh-normal:   1.5;    /* @kind font */
  --lh-relaxed:  1.7;    /* @kind font */

  /* --- Letter spacing -------------------------------------- */
  --ls-tight:    -0.02em;  /* @kind font */
  --ls-normal:   0;        /* @kind font */
  --ls-wide:     0.08em;   /* @kind font */
  --ls-eyebrow:  0.32em;   /* @kind font */
  --ls-mega:     0.42em;   /* @kind font */
}


/* ===== tokens/spacing.css ===== */
/* ============================================================
   CRC THE PERIDONA — SPACING & LAYOUT TOKENS
   4px base rhythm. Generous, editorial whitespace is a core
   part of the luxury feel — sections breathe.
   ============================================================ */

:root {
  /* --- Spacing scale (4px base) ---------------------------- */
  --space-0:   0;
  --space-1:   4px;
  --space-2:   8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-5:   20px;
  --space-6:   24px;
  --space-8:   32px;
  --space-10:  40px;
  --space-12:  48px;
  --space-16:  64px;
  --space-20:  80px;
  --space-24:  96px;
  --space-32:  128px;
  --space-40:  160px;

  /* --- Semantic spacing ------------------------------------ */
  --gap-inline:   var(--space-3);   /* icon ↔ label          */
  --gap-stack:    var(--space-4);   /* label ↔ control       */
  --pad-card:     var(--space-8);   /* interior card padding */
  --section-y:    clamp(64px, 9vw, 160px);  /* @kind spacing */

  /* --- Container widths ------------------------------------ */
  --container:     1280px;   /* @kind spacing */
  --container-wide:1480px;   /* @kind spacing */
  --container-text:720px;    /* @kind spacing */
  --gutter:        clamp(20px, 5vw, 72px);  /* @kind spacing */
}


/* ===== tokens/radius.css ===== */
/* ============================================================
   CRC THE PERIDONA — RADII & BORDERS
   Restrained, architectural: mostly crisp edges with a
   whisper of radius. Cards are defined by hairline rules
   more than by rounding.
   ============================================================ */

:root {
  /* --- Corner radii ---------------------------------------- */
  --radius-none: 0;
  --radius-xs:   2px;    /* inputs, tags                       */
  --radius-sm:   4px;    /* buttons, small cards               */
  --radius-md:   8px;    /* cards, media                       */
  --radius-lg:   14px;   /* large media, sheets                */
  --radius-pill: 999px;  /* pill buttons, chips                */

  /* --- Border widths --------------------------------------- */
  --border-hair: 1px;
  --border-med:  1.5px;
}


/* ===== tokens/elevation.css ===== */
/* ============================================================
   CRC THE PERIDONA — ELEVATION
   Depth comes from soft, warm, low shadows — never heavy
   drop shadows. Pair with hairline rules to define cards
   on the ivory canvas.
   ============================================================ */

:root {
  --shadow-xs:  0 1px 2px rgba(46, 37, 25, 0.06);
  --shadow-sm:  0 2px 8px rgba(46, 37, 25, 0.07);
  --shadow-md:  0 10px 30px -12px rgba(46, 37, 25, 0.18);
  --shadow-lg:  0 26px 60px -22px rgba(46, 37, 25, 0.30);
  --shadow-xl:  0 40px 90px -30px rgba(30, 24, 16, 0.42);

  /* Gold-tinted glow for accented / hovered media */
  --shadow-gold: 0 20px 48px -20px rgba(150, 116, 68, 0.42);

  /* Inset hairline used to define cards on ivory */
  --ring-inset: inset 0 0 0 1px var(--line-hairline);
}


/* ===== tokens/motion.css ===== */
/* ============================================================
   CRC THE PERIDONA — MOTION TOKENS
   Motion is slow, weighted and confident. Elements rise and
   fade in; imagery drifts on a gentle Ken-Burns. Nothing
   bounces. Everything eases out with a long, calm tail.
   ============================================================ */

:root {
  /* --- Durations ------------------------------------------- */
  --dur-fast:   180ms;   /* @kind other */
  --dur-base:   320ms;   /* @kind other */
  --dur-slow:   560ms;   /* @kind other */
  --dur-cinema: 900ms;   /* @kind other */
  --dur-drift:  16s;     /* @kind other */

  /* --- Easing ---------------------------------------------- */
  --ease-lux:    cubic-bezier(0.22, 1, 0.36, 1);   /* @kind other */
  --ease-inout:  cubic-bezier(0.65, 0, 0.35, 1);   /* @kind other */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);    /* @kind other */
  --ease-linear: linear;                            /* @kind other */

  /* --- Reveal defaults (compose in components) ------------- */
  --reveal-shift: 24px;  /* @kind spacing */
}


/* ===== base.css ===== */
/* ============================================================
   CRC THE PERIDONA — BASE / RESET
   Sensible element defaults wired to the token system, so a
   consumer that links styles.css gets the brand voice for
   free on plain HTML. Kept intentionally light.
   ============================================================ */

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

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--surface-canvas);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: var(--fw-light);
  line-height: var(--lh-relaxed);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--text-primary);
  margin: 0 0 0.4em;
}

p { margin: 0 0 1em; text-wrap: pretty; }

/* Links — secondary blue, quiet underline on hover */
a {
  color: var(--text-blue);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-lux),
              opacity var(--dur-fast) var(--ease-lux);
}
a:hover { color: var(--secondary-hover); }

img, svg, video { display: block; max-width: 100%; }

::selection { background: var(--accent-soft); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

/* Utility: tracked eyebrow / kicker text */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-gold);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}


/* ===== ui_kits/landing/landing.css ===== */
/* ============================================================
   CRC THE PERIDONA — LANDING PAGE (UI KIT) LAYOUT STYLES
   Kit-specific responsive scaffolding. Foundations (colors,
   type, spacing) come from ../../styles.css. This file only
   handles layout, section rhythm and responsive behaviour.
   ============================================================ */

.lp { overflow-x: hidden; }
.lp-container { width: 100%; max-width: var(--container); margin-inline: auto;
  padding-inline: var(--gutter); }
.lp-container--wide { max-width: var(--container-wide); }
.lp-section { padding-block: var(--section-y); }

/* --- Top navigation -------------------------------------- */
.lp-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 20px var(--gutter);
  transition: background var(--dur-slow) var(--ease-lux),
              padding var(--dur-slow) var(--ease-lux),
              box-shadow var(--dur-slow) var(--ease-lux),
              border-color var(--dur-slow) var(--ease-lux);
  border-bottom: 1px solid transparent;
}
.lp-nav--top { background: linear-gradient(to bottom, rgba(9,26,40,0.52), rgba(9,26,40,0)); }
.lp-nav--scrolled {
  background: color-mix(in srgb, var(--ivory-100) 88%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  padding-block: 12px;
  border-bottom-color: var(--line-hairline);
  box-shadow: var(--shadow-sm);
}
.lp-nav__logo { height: 46px; width: auto; transition: height var(--dur-slow) var(--ease-lux); }
.lp-nav--scrolled .lp-nav__logo { height: 38px; }
.lp-nav__links { display: flex; align-items: center; gap: 34px; }
.lp-nav__link {
  font-family: var(--font-sans); font-size: 0.8125rem; font-weight: var(--fw-regular);
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  color: inherit; opacity: 0.86; position: relative; padding-block: 4px;
  transition: opacity var(--dur-fast) var(--ease-lux);
}
.lp-nav__link:hover { opacity: 1; }
.lp-nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold-500); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-lux);
}
.lp-nav__link:hover::after { transform: scaleX(1); }
.lp-nav__right { display: flex; align-items: center; gap: 20px; }
.lp-nav__toggle { display: none; background: none; border: 0; cursor: pointer;
  color: inherit; padding: 6px; }
.lp-nav__toggle svg { width: 26px; height: 26px; }

/* nav colour scheme: light text over hero, ink text when scrolled */
.lp-nav--top { color: var(--ivory-50); }
.lp-nav--scrolled { color: var(--ink); }

/* --- Mobile drawer --------------------------------------- */
.lp-drawer {
  position: fixed; inset: 0; z-index: 80; display: none;
  background: var(--espresso-900);
  flex-direction: column; padding: 28px var(--gutter); overflow-y: auto;
  visibility: hidden; pointer-events: none;
  transform: translateY(-100%);
  transition: transform var(--dur-slow) var(--ease-lux), visibility 0s linear var(--dur-slow);
}
.lp-drawer--open { transform: translateY(0); visibility: visible; pointer-events: auto;
  transition: transform var(--dur-slow) var(--ease-lux); }
.lp-drawer__head { display: flex; align-items: center; justify-content: space-between; }
.lp-drawer__logo { height: 42px; }
.lp-drawer__close { background: none; border: 0; color: var(--ivory-50); cursor: pointer; padding: 6px; }
.lp-drawer__close svg { width: 28px; height: 28px; }
.lp-drawer__links { display: flex; flex-direction: column; gap: 6px; margin-top: 48px; }
.lp-drawer__link {
  font-family: var(--font-display); font-size: 2rem; color: var(--ivory-50);
  text-decoration: none; padding-block: 12px; border-bottom: 1px solid var(--line-on-dark);
  transition: color var(--dur-fast) var(--ease-lux);
}
.lp-drawer__link:hover { color: var(--gold-400); }
.lp-drawer__cta { margin-top: 40px; }

/* --- Hero ------------------------------------------------- */
.lp-hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  overflow: hidden; }
.lp-hero__media { position: absolute; inset: 0; z-index: 0; }
.lp-hero__media img { width: 100%; height: 100%; object-fit: cover;
  animation: lp-kenburns var(--dur-drift) var(--ease-inout) infinite alternate; }
.lp-hero__scrim { position: absolute; inset: 0; z-index: 1; background: var(--scrim-bottom); }
.lp-hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(56px, 9vh, 120px);
  padding-top: 140px; }
.lp-hero__eyebrow { margin-bottom: 26px; }
.lp-hero__title { font-family: var(--font-display); font-weight: var(--fw-regular);
  font-size: var(--fs-hero); line-height: 0.98; letter-spacing: var(--ls-tight);
  color: var(--ivory-50); margin: 0; max-width: 15ch; text-wrap: balance; }
.lp-hero__title em { font-style: italic; color: var(--gold-300); }
.lp-hero__sub { margin: 28px 0 40px; max-width: 44ch; color: var(--ivory-100);
  font-size: var(--fs-lead); font-weight: var(--fw-light); line-height: var(--lh-relaxed);
  opacity: 0.92; }
.lp-hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }
.lp-hero__scroll { position: absolute; z-index: 2; right: var(--gutter); bottom: 40px;
  display: flex; align-items: center; gap: 12px; color: var(--ivory-100);
  font-family: var(--font-sans); font-size: 0.6875rem; letter-spacing: 0.24em;
  text-transform: uppercase; writing-mode: vertical-rl; opacity: 0.8; }
.lp-hero__scroll span { width: 1px; height: 54px; background: var(--sage-300);
  animation: lp-scrollpulse 2.4s var(--ease-inout) infinite; transform-origin: top; }

@keyframes lp-kenburns { from { transform: scale(1.02); } to { transform: scale(1.12) translateY(-1.5%); } }
@keyframes lp-scrollpulse { 0%,100% { transform: scaleY(0.3); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* --- Generic band + reveal ------------------------------- */
.lp-band--sunken { background: var(--surface-sunken); }
.lp-band--night { background: var(--surface-inverse); color: var(--text-on-dark);
  position: relative; overflow: hidden; }

.lp-reveal { opacity: 0; transform: translateY(var(--reveal-shift));
  transition: opacity var(--dur-slow) var(--ease-lux), transform var(--dur-slow) var(--ease-lux); }
.lp-reveal.is-in { opacity: 1; transform: none; }

/* --- Overview stats -------------------------------------- */
.lp-overview__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 96px);
  align-items: center; }
.lp-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 32px;
  padding-top: 8px; }
.lp-stats--row { grid-template-columns: repeat(4, 1fr); }

/* --- Residences ------------------------------------------ */
.lp-res__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }

/* --- Amenities ------------------------------------------- */
.lp-amen__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.lp-amen__glow { position: absolute; inset: 0; z-index: 0; opacity: 0.16;
  background: radial-gradient(60% 80% at 80% 0%, var(--gold-500), transparent 70%); pointer-events: none; }
.lp-band--night > * { position: relative; z-index: 1; }

/* --- Location -------------------------------------------- */
.lp-loc__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; margin-top: 48px; }
.lp-loc__map { border: 1px solid var(--line-hairline); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-md); background: var(--ivory-50); }
.lp-loc__map img { width: 100%; height: auto; display: block; }
.lp-loc__list { display: flex; flex-direction: column; gap: 0; }
.lp-loc__item { display: flex; align-items: center; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid var(--line-hairline); }
.lp-loc__item:last-child { border-bottom: 0; }
.lp-loc__item i { color: var(--gold-600); width: 22px; height: 22px; flex: 0 0 auto; }
.lp-loc__item-name { font-family: var(--font-sans); font-weight: var(--fw-regular);
  font-size: var(--fs-body); color: var(--text-primary); }
.lp-loc__item-time { margin-left: auto; font-family: var(--font-display); font-size: 1.35rem;
  color: var(--gold-700); }

/* --- Gallery --------------------------------------------- */
.lp-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px;
  margin-top: 48px; }
.lp-gallery__cell { position: relative; overflow: hidden; border-radius: var(--radius-md);
  background: var(--ivory-200); border: 1px solid var(--line-hairline); }
.lp-gallery__cell img { width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-cinema) var(--ease-lux); }
.lp-gallery__cell:hover img { transform: scale(1.06); }
.lp-gallery__cell--wide { grid-column: span 2; }
.lp-gallery__cell--tall { grid-row: span 2; }
.lp-gallery__ph { display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; height: 100%; color: var(--text-muted); text-align: center; padding: 20px; }
.lp-gallery__ph i { width: 26px; height: 26px; color: var(--gold-600); }
.lp-gallery__ph span { font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.16em;
  text-transform: uppercase; }
.lp-gallery__cell { margin: 0; }
.lp-gallery__cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 34px 18px 15px; font-family: var(--font-sans); font-size: 0.75rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ivory-50);
  background: linear-gradient(to top, rgba(9,26,40,0.74), rgba(9,26,40,0)); }

/* --- Masterplan ------------------------------------------ */
.lp-mp__grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: clamp(32px, 5vw, 64px);
  align-items: center; margin-top: 52px; }
.lp-mp__map, .lp-mp__site { margin: 0; border: 1px solid var(--line-hairline);
  border-radius: var(--radius-md); overflow: hidden; background: var(--surface-raised);
  box-shadow: var(--shadow-md); }
.lp-mp__map img, .lp-mp__site img { width: 100%; height: auto; display: block; }
.lp-mp__map figcaption, .lp-mp__site figcaption { padding: 13px 18px; font-family: var(--font-sans);
  font-size: var(--fs-caption); color: var(--text-muted); border-top: 1px solid var(--line-hairline); }
.lp-mp__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 28px; }
.lp-mp__site { margin-top: 40px; }

/* --- Enquiry --------------------------------------------- */
.lp-enquiry__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 88px);
  align-items: start; }
.lp-enquiry__form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lp-enquiry__form .span2 { grid-column: 1 / -1; }
.lp-enquiry__panel { background: var(--surface-raised); border: 1px solid var(--line-hairline);
  border-radius: var(--radius-md); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-md); }
.lp-enquiry__thanks { display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 18px; padding: 48px 20px; }
.lp-enquiry__thanks i { width: 46px; height: 46px; color: var(--gold-600); }
.lp-contact-list { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.lp-contact-list__item { display: flex; gap: 14px; align-items: flex-start; }
.lp-contact-list__item i { color: var(--gold-600); width: 22px; height: 22px; margin-top: 3px; flex: 0 0 auto; }

/* --- Footer ---------------------------------------------- */
.lp-footer { background: var(--espresso-900); color: var(--text-on-dark-dim);
  padding-block: 72px 32px; }
.lp-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid var(--line-on-dark); }
.lp-footer__logo { height: 56px; width: auto; margin-bottom: 24px; }
.lp-footer__col-title { font-family: var(--font-sans); font-size: 0.6875rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold-400); margin-bottom: 18px; }
.lp-footer__col a { display: block; color: var(--text-on-dark-dim); text-decoration: none;
  font-size: var(--fs-body-sm); padding-block: 7px; transition: color var(--dur-fast) var(--ease-lux); }
.lp-footer__col a:hover { color: var(--ivory-50); }
.lp-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; padding-top: 28px; }
.lp-footer__crc { display: flex; align-items: center; gap: 14px; }
.lp-footer__crc img { height: 34px; background: var(--ivory-50); padding: 6px 10px; border-radius: var(--radius-xs); }
.lp-footer__fine { font-size: 0.75rem; line-height: var(--lh-normal); color: #7f97a8; max-width: 60ch; }
.lp-footer__video { margin-top: 24px; }
.lp-footer__videoframe { position: relative; width: 188px; max-width: 100%; aspect-ratio: 9 / 16;
  border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line-on-dark); background: #000; }
.lp-footer__videoframe iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lp-footer__videolink { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
  font-family: var(--font-sans); font-size: 0.8125rem; letter-spacing: 0.06em; color: var(--gold-400); text-decoration: none; }
.lp-footer__videolink:hover { color: var(--gold-300); }
.lp-footer__videolink svg { width: 18px; height: 18px; }
.lp-footer__brands { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.lp-footer__partner { display: flex; align-items: center; gap: 12px; padding-left: 32px;
  border-left: 1px solid var(--line-on-dark); }
.lp-footer__partner img { height: 44px; width: auto; }
.lp-footer__presented { font-family: var(--font-sans); font-size: 0.6875rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold-400); }
.lp-footer__partner-tag { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-on-dark-dim); }
.lp-res__unlock { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 48px; text-align: center; }
.lp-res__unlock span { font-family: var(--font-sans); font-size: var(--fs-body-sm); color: var(--text-secondary); }
.lp-video { display: flex; justify-content: center; margin-top: 48px; }
.lp-video__frame { position: relative; width: 340px; max-width: 100%; aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-hairline);
  box-shadow: var(--shadow-lg); background: #000; }
.lp-video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .lp-nav__links { display: none; }
  .lp-nav__toggle { display: inline-flex; }
  .lp-nav__right .lp-nav__enquire { display: none; }
  .lp-drawer { display: flex; }
  .lp-res__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-amen__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-stats--row { grid-template-columns: repeat(2, 1fr); }
  .lp-overview__grid { grid-template-columns: 1fr; }
  .lp-loc__grid { grid-template-columns: 1fr; }
  .lp-mp__grid { grid-template-columns: 1fr; }
  .lp-enquiry__grid { grid-template-columns: 1fr; }
  .lp-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .lp-res__grid { grid-template-columns: 1fr; }
  .lp-amen__grid { grid-template-columns: 1fr; }
  .lp-stats { grid-template-columns: 1fr 1fr; }
  .lp-enquiry__form { grid-template-columns: 1fr; }
  .lp-enquiry__form .span2 { grid-column: 1; }
  .lp-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .lp-gallery__cell--wide { grid-column: span 2; }
  .lp-gallery__cell--tall { grid-row: span 1; }
  .lp-mp__stats { grid-template-columns: 1fr 1fr; }
  .lp-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .lp-footer__partner { padding-left: 0; border-left: 0; }
  .lp-footer__brands { gap: 22px; }
  .lp-hero__scroll { display: none; }
  .lp-drawer__link { font-size: 1.6rem; }
}


/* ===== Brochure-aligned luxury refresh ===== */
:root{
  --ivory-50:#fffdf8;--ivory-100:#f8f2e8;--ivory-200:#efe5d6;--sand-300:#dfcfba;--sand-400:#c9b18e;
  --taupe-500:#746a5d;--taupe-600:#5e554a;--umber-700:#3e392f;--espresso-800:#263126;--espresso-900:#182119;--ink:#2c3027;
  --gold-300:#e4d1ad;--gold-400:#c9a979;--gold-500:#ae8958;--gold-600:#8e6c43;--gold-700:#735638;
  --sage-300:#b9c8ae;--sage-500:#758b68;--sage-700:#46563f;
  --surface-canvas:var(--ivory-100);--surface-raised:#fffdf8;--surface-sunken:#efe5d6;--surface-inverse:#182119;--surface-inverse-2:#263126;
  --text-primary:#2c3027;--text-secondary:#5e554a;--text-muted:#746a5d;--text-on-dark:#f8f2e8;--text-on-dark-dim:#d6cbbb;
  --accent:#ae8958;--accent-hover:#8e6c43;--secondary:#758b68;--secondary-hover:#46563f;
  --line-hairline:rgba(90,72,49,.16);--line-strong:rgba(90,72,49,.30);--focus-ring:rgba(174,137,88,.45);
  --font-display:'Cormorant Garamond','Times New Roman',serif;--font-serif:'Cormorant Garamond',Georgia,serif;--font-sans:'Jost','Helvetica Neue',Arial,sans-serif;
  --section-y:clamp(72px,8vw,132px);
}
body{background:#f8f2e8;color:var(--text-primary);letter-spacing:.005em}
.lp-section{overflow:hidden}
.lp-section:nth-of-type(even){background:linear-gradient(180deg,#fffdf8 0%,#f4ecdf 100%)}
.lp-container{max-width:1240px}
.lp-hero__scrim{background:linear-gradient(90deg,rgba(20,28,20,.72),rgba(20,28,20,.25) 58%,rgba(20,28,20,.12))}
.lp-hero__title{letter-spacing:-.015em;text-shadow:0 5px 28px rgba(0,0,0,.24)}
.lp-hero__sub{max-width:690px}
.lp-nav--scrolled{background:rgba(248,242,232,.96)!important;box-shadow:0 8px 28px rgba(45,38,28,.08)}
.lp-enquiry__panel{background:#fffdf8!important;border:1px solid rgba(174,137,88,.28)!important;box-shadow:0 24px 70px rgba(66,49,31,.12)!important}
.lp-enquiry__form input,.lp-enquiry__form select,.lp-enquiry__form textarea{background:#fffdf8!important}
.lp a[href="#enquiry"],.lp button[type="submit"]{box-shadow:0 9px 24px rgba(120,88,48,.24);animation:peridonaPulse 2.8s ease-in-out infinite}
@keyframes peridonaPulse{0%,100%{box-shadow:0 8px 20px rgba(120,88,48,.18)}50%{box-shadow:0 12px 30px rgba(120,88,48,.36)}}
.lp-mobile-sticky{display:none}
@media(max-width:767px){
  body{padding-bottom:68px}
  .lp-section{padding-top:64px!important;padding-bottom:64px!important}
  .lp-container{padding-left:20px!important;padding-right:20px!important}
  .lp-hero__inner{padding-bottom:92px!important}
  .lp-hero__title{font-size:clamp(2.75rem,13vw,4.2rem)!important;line-height:.98!important}
  .lp-hero__sub{font-size:1rem!important;line-height:1.6!important}
  .lp-enquiry__grid{gap:34px!important}
  .lp-enquiry__panel{padding:24px 18px!important}
  .lp-enquiry__form{grid-template-columns:1fr!important;gap:16px!important}
  .lp-enquiry__form .span2{grid-column:1!important}
  .lp-mobile-sticky{position:fixed;display:grid;grid-template-columns:1fr 1fr;left:0;right:0;bottom:0;z-index:9999;padding:8px 10px calc(8px + env(safe-area-inset-bottom));gap:8px;background:rgba(255,253,248,.97);backdrop-filter:blur(12px);border-top:1px solid rgba(174,137,88,.25);box-shadow:0 -8px 28px rgba(39,32,23,.12)}
  .lp-mobile-sticky a{height:48px;display:flex;align-items:center;justify-content:center;text-decoration:none;font-family:var(--font-sans);font-size:.82rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;border-radius:4px}
  .lp-mobile-sticky__whatsapp{background:#25D366;color:#fff!important;box-shadow:0 8px 20px rgba(37,211,102,.22)}
  .lp-mobile-sticky__enquire{background:#ae8958;color:#fff!important;box-shadow:0 8px 22px rgba(120,88,48,.25);animation:peridonaPulse 2.4s ease-in-out infinite}
  .wa-icon{width:22px;height:22px;border:2px solid #fff;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;margin-right:7px;font-size:12px;transform:rotate(-18deg)}
}

/* ===== Compact enquiry popup + FAQ ===== */
body.modal-open{overflow:hidden}.lead-modal{position:fixed;inset:0;z-index:20000;display:none;place-items:center;padding:clamp(16px,4vw,44px)}.lead-modal.is-open{display:grid}.lead-modal__backdrop{position:absolute;inset:0;background:rgba(18,25,19,.72);backdrop-filter:blur(7px)}.lead-modal__card{position:relative;width:min(460px,calc(100vw - 32px));max-height:calc(100svh - 32px);overflow:auto;background:#fffdf8;border:1px solid rgba(174,137,88,.42);border-radius:18px;padding:28px;box-shadow:0 30px 90px rgba(0,0,0,.28)}.lead-modal__close{position:absolute;right:13px;top:10px;width:36px;height:36px;border:0;background:transparent;color:#5e554a;font-size:30px;line-height:1;cursor:pointer}.lead-modal__eyebrow{font-family:var(--font-sans);font-size:.68rem;letter-spacing:.22em;color:var(--gold-700);font-weight:600;margin-bottom:8px}.lead-modal h2,.faq-head h2{font-family:var(--font-display);font-size:clamp(2rem,5vw,2.7rem);font-weight:500;line-height:1;margin:0 0 10px;color:var(--text-primary)}.lead-modal__card>p,.faq-head p{color:var(--text-secondary);line-height:1.55;margin:0 0 20px}.lead-modal form{display:grid;gap:12px}.lead-modal label{display:grid;gap:6px;font-family:var(--font-sans);font-size:.72rem;letter-spacing:.07em;color:#4c463d}.lead-modal input,.lead-modal select{width:100%;box-sizing:border-box;height:46px;border:1px solid rgba(90,72,49,.24);border-radius:8px;background:#fff;padding:0 13px;font:inherit;font-size:.9rem;letter-spacing:0;color:#2c3027;outline:none}.lead-modal input:focus,.lead-modal select:focus{border-color:var(--gold-500);box-shadow:0 0 0 3px rgba(174,137,88,.12)}.lead-consent{grid-template-columns:18px 1fr!important;align-items:start;gap:9px!important;font-size:.69rem!important;line-height:1.45;letter-spacing:0!important}.lead-consent input{width:16px!important;height:16px!important;margin-top:2px}.lead-consent a{color:var(--gold-700)}.lead-submit{height:48px;border:0;border-radius:8px;background:var(--gold-500);color:#fff;font-family:var(--font-sans);font-weight:600;letter-spacing:.1em;text-transform:uppercase;cursor:pointer;box-shadow:0 10px 25px rgba(120,88,48,.24);animation:peridonaPulse 2.6s ease-in-out infinite}.lead-submit:disabled{opacity:.65;cursor:wait}.lead-status{font-family:var(--font-sans);font-size:.78rem;color:var(--sage-700);text-align:center;min-height:1em}.lead-direct{display:flex;justify-content:center;gap:16px;margin-top:15px;padding-top:14px;border-top:1px solid rgba(90,72,49,.12)}.lead-direct a{font-family:var(--font-sans);font-size:.74rem;color:var(--gold-700);text-decoration:none;font-weight:600}.wa-svg{width:22px;height:22px;margin-right:7px;flex:0 0 auto}.lp-faq{background:#fffdf8}.faq-head{text-align:center;max-width:700px;margin:0 auto 38px}.faq-list{max-width:900px;margin:0 auto;display:grid;gap:12px}.faq-list details{background:#f8f2e8;border:1px solid rgba(174,137,88,.22);border-radius:10px;padding:0 20px}.faq-list summary{cursor:pointer;list-style:none;padding:18px 32px 18px 0;font-family:var(--font-serif);font-size:1.15rem;color:var(--text-primary);position:relative}.faq-list summary::-webkit-details-marker{display:none}.faq-list summary:after{content:'+';position:absolute;right:0;top:15px;font-family:var(--font-sans);font-size:1.4rem;color:var(--gold-600)}.faq-list details[open] summary:after{content:'−'}.faq-list p{margin:0 0 18px;color:var(--text-secondary);line-height:1.65}.lp-footer__fine a{color:var(--gold-400)}
@media(max-width:600px){.lead-modal{padding:16px}.lead-modal__card{width:calc(100vw - 32px);max-height:calc(100svh - 32px);padding:22px 18px;border-radius:14px}.lead-modal h2{font-size:2rem}.lead-modal__card>p{font-size:.86rem;margin-bottom:15px}.lead-modal form{gap:10px}.lead-modal input,.lead-modal select{height:43px}.lead-submit{height:46px}.lead-direct{gap:12px}.faq-list details{padding:0 16px}.faq-list summary{font-size:1.05rem}}

/* ===== Refined compact brochure-style popup ===== */
.lead-modal{padding:18px}
.lead-modal__backdrop{background:rgba(12,23,18,.76);backdrop-filter:blur(5px)}
.lead-modal__card{width:min(390px,calc(100vw - 36px));max-height:calc(100svh - 36px);padding:24px 24px 20px;background:#f7f1e7;border:1px solid rgba(178,142,91,.58);border-radius:16px;box-shadow:0 24px 70px rgba(0,0,0,.32)}
.lead-modal__close{right:10px;top:8px;width:32px;height:32px;font-size:27px;color:#183a2b}
.lead-modal__eyebrow{font-size:.62rem;letter-spacing:.2em;color:#9a7443;margin-bottom:7px}
.lead-modal h2{font-size:clamp(1.75rem,4vw,2.15rem);color:#16392a;margin:0 0 7px;line-height:1.04}
.lead-modal__card>p{font-size:.82rem;color:#6c6a61;margin:0 0 15px;line-height:1.45}
.lead-modal form{gap:9px}
.lead-modal label{gap:4px;font-size:.65rem;color:#625b50;letter-spacing:.05em}
.lead-modal input,.lead-modal select{height:42px;border:1px solid rgba(28,61,46,.18);border-radius:7px;background:#fffdf8;padding:0 12px;font-size:.84rem;color:#183a2b}
.lead-modal input:focus,.lead-modal select:focus{border-color:#b58b51;box-shadow:0 0 0 3px rgba(181,139,81,.10)}
.lead-submit{height:44px;margin-top:2px;border-radius:7px;background:#b88c4c;color:#fff;box-shadow:0 8px 20px rgba(87,60,27,.22);font-size:.78rem;letter-spacing:.12em}
.lead-privacy{font-family:var(--font-sans);font-size:.61rem;line-height:1.4;color:#7b766d;text-align:center;margin-top:1px}.lead-privacy a{color:#9a7443}
.lead-status{font-size:.72rem}
@media(max-width:600px){.lead-modal{padding:18px}.lead-modal__card{width:min(365px,calc(100vw - 36px));max-height:calc(100svh - 36px);padding:21px 18px 17px;border-radius:14px}.lead-modal h2{font-size:1.72rem}.lead-modal__card>p{font-size:.78rem;margin-bottom:12px}.lead-modal form{gap:8px}.lead-modal input,.lead-modal select{height:40px}.lead-submit{height:42px}.lead-modal__close{font-size:25px}}
