@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; }
}

