/* =============================================================
   LONDON PREMIER PROPERTIES — DESIGN SYSTEM
   Palette derived from the supplied brand mark (measured, not guessed):
   logo gold  ≈ #B3A162  (HSL 47°, 34%, 54%) — a muted brass/champagne,
   deliberately kept away from orange-clay territory.
   ============================================================= */

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

/* ---------------------------------------------------------------
   1. DESIGN TOKENS
   --------------------------------------------------------------- */
:root {
  /* Core palette — sampled from the logo, then built into a ramp */
  --charcoal:        #15130E;   /* primary ink / darkest surface */
  --charcoal-soft:   #221E17;   /* secondary dark surface (footer, bands) */
  --charcoal-raise:  #2E2820;   /* raised element on a dark surface */

  --gold:            #B3A162;   /* primary accent — logo gold, measured */
  --gold-light:      #CBC19B;   /* tints, dividers on dark, hover washes */
  --gold-pale:       #EEEAE0;   /* faint background wash */
  --gold-dark:       #907E3E;   /* hover/active state for gold elements */
  --gold-ink:        #746331;   /* text-safe gold — labels on light bg (5.3:1) */

  --cream:           #F7F4EC;   /* primary light surface */
  --ivory:           #FBF9F4;   /* secondary light surface / cards */
  --white:           #FFFFFF;

  --stone:           #6B655C;   /* secondary / muted text on light (5.2:1) */
  --stone-soft:      #96907F;   /* tertiary text, placeholders */

  --line: rgba(21,19,14,0.12);            /* hairline on light surfaces */
  --line-soft: rgba(21,19,14,0.07);
  --line-on-dark: rgba(247,244,236,0.16); /* hairline on dark surfaces */
  --line-on-dark-soft: rgba(247,244,236,0.09);

  --shadow-1: 0 1px 2px rgba(21,19,14,0.06);
  --shadow-2: 0 8px 24px -8px rgba(21,19,14,0.18);
  --shadow-3: 0 24px 60px -20px rgba(21,19,14,0.28);

  /* Type */
  --font-serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  /* Three complementary additions for the Sheet-driven text formatting
     system (see content-loader.js) — chosen to sit comfortably alongside
     the two above, each with a distinct role:
       Playfair Display — a more dramatic display serif, for occasional
         bold emphasis headings; a step more "luxury editorial" in feel.
       Manrope — a warmer, more geometric sans than Inter, for body-text
         variety without breaking the site's clean, modern tone.
       Spectral — a literary serif built for on-screen reading, suited to
         longer passages like pull-quotes, where Cormorant Garamond (a
         display face) would be less comfortable to read at length. */
  --font-playfair: 'Playfair Display', 'Iowan Old Style', Georgia, serif;
  --font-manrope: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-spectral: 'Spectral', 'Iowan Old Style', Georgia, serif;

  /* Fluid type scale */
  --fs-hero:   clamp(2.75rem, 3.2vw + 2rem, 4.75rem);
  --fs-h1:     clamp(2.25rem, 2vw + 1.6rem, 3.25rem);
  --fs-h2:     clamp(1.9rem, 1.4vw + 1.4rem, 2.5rem);
  --fs-h3:     clamp(1.35rem, 0.6vw + 1.15rem, 1.65rem);
  --fs-lede:   clamp(1.05rem, 0.3vw + 0.95rem, 1.2rem);
  --fs-body:   1rem;
  --fs-small:  0.875rem;
  --fs-micro:  0.75rem;

  /* Spacing scale */
  --sp-3xs: 0.25rem;
  --sp-2xs: 0.5rem;
  --sp-xs:  0.75rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.25rem;
  --sp-xl:  3.5rem;
  --sp-2xl: 5.5rem;
  --sp-3xl: 8rem;

  /* Layout */
  --container-max: 1360px;
  --container-narrow: 800px;
  --container-pad: clamp(1.25rem, 4.5vw, 3.5rem);
  --radius-sm: 2px;
  --radius-md: 3px;
  --header-h: 92px;
  --header-h-scrolled: 72px;

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur-fast: 180ms;
  --dur-med: 420ms;
  --dur-slow: 800ms;
}

/* ---------------------------------------------------------------
   2. RESET / BASE
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
input, textarea, select { font: inherit; color: inherit; background: none; border: 0; }
table { border-collapse: collapse; }
address { font-style: normal; }

::selection { background: var(--gold); color: var(--charcoal); }

/* Focus states — always visible, never suppressed */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

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

/* ---------------------------------------------------------------
   3. LAYOUT
   --------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: var(--sp-3xl); position: relative; }
.section--tight { padding-block: var(--sp-2xl); }
.section--dark { background: var(--charcoal); color: var(--cream); }
.section--soft { background: var(--charcoal-soft); color: var(--cream); }
.section--ivory { background: var(--ivory); }
.section--gold-pale { background: var(--gold-pale); }

.section--dark .stone-text,
.section--soft .stone-text { color: var(--gold-light); }

main:focus { outline: none; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 999;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.85rem 1.5rem;
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------------------------------------------------------------
   4. TYPOGRAPHY
   --------------------------------------------------------------- */
h1, .h1, h2, .h2, h3, .h3, .display {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: inherit;
}
h1, .h1 { font-size: var(--fs-h1); line-height: 1.08; }
h2, .h2 { font-size: var(--fs-h2); line-height: 1.12; }
h3, .h3 { font-size: var(--fs-h3); line-height: 1.25; font-weight: 500; }
.display-hero { font-size: var(--fs-hero); line-height: 1.03; letter-spacing: -0.015em; }

em, .accent-italic { font-style: italic; color: var(--gold-ink); }
.section--dark em, .section--soft em,
.section--dark .accent-italic, .section--soft .accent-italic { color: var(--gold); }

.lede {
  font-family: var(--font-sans);
  font-size: var(--fs-lede);
  color: var(--stone);
  line-height: 1.65;
  max-width: 46ch;
}
.section--dark .lede, .section--soft .lede { color: var(--gold-light); }

p.body-text { max-width: 62ch; color: var(--stone); }
.section--dark p.body-text, .section--soft p.body-text { color: rgba(247,244,236,0.72); }

.stone-text { color: var(--stone); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.section--dark .eyebrow, .section--soft .eyebrow { color: var(--gold); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}
.section-head__text { max-width: 640px; }
.section-head .eyebrow { margin-bottom: var(--sp-sm); }
.section-head h2 { margin-top: 0.5rem; }

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  padding-bottom: 2px;
  background-image: linear-gradient(var(--gold-ink), var(--gold-ink));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size var(--dur-med) var(--ease-out);
}
.text-link:hover { background-size: 100% 1px; }
.section--dark .text-link, .section--soft .text-link, .hero .text-link {
  color: var(--cream);
  background-image: linear-gradient(var(--gold), var(--gold));
}
.text-link .icon { transition: transform var(--dur-med) var(--ease-out); }
.text-link:hover .icon { transform: translateX(4px); }

/* ---------------------------------------------------------------
   5. ICONS
   --------------------------------------------------------------- */
.icon {
  width: 1.1em;
  height: 1.1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---------------------------------------------------------------
   6. SIGNATURE MOTIF — the skyline rhythm
   A recurring device drawn from the buildings in the brand mark:
   used as dividers, bullets and loading states rather than as
   decoration bolted on afterwards.
   --------------------------------------------------------------- */
.skyline-rule {
  --h1: 38%; --h2: 100%; --h3: 62%; --h4: 82%; --h5: 48%; --h6: 70%;
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
  flex-shrink: 0;
}
.skyline-rule span {
  width: 2.5px;
  background: var(--gold);
  border-radius: 1px 1px 0 0;
}
.skyline-rule span:nth-child(1) { height: var(--h1); }
.skyline-rule span:nth-child(2) { height: var(--h2); }
.skyline-rule span:nth-child(3) { height: var(--h3); }
.skyline-rule span:nth-child(4) { height: var(--h4); }
.skyline-rule span:nth-child(5) { height: var(--h5); }
.skyline-rule span:nth-child(6) { height: var(--h6); }
.section--dark .skyline-rule span, .section--soft .skyline-rule span { background: var(--gold); }

.skyline-divider {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 34px;
  opacity: 0.9;
}
.skyline-divider span {
  width: 3px;
  background: var(--gold);
  opacity: 0.55;
}
.skyline-divider span:nth-child(3n) { opacity: 1; }

/* ---------------------------------------------------------------
   7. BUTTONS
   --------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65em;
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1.05em 1.9em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background-color var(--dur-med) var(--ease),
              border-color var(--dur-med) var(--ease),
              color var(--dur-med) var(--ease);
  white-space: nowrap;
}
.btn .icon { transition: transform var(--dur-med) var(--ease-out); }
.btn:hover .icon { transform: translateX(4px); }

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-secondary:hover { background: var(--charcoal); color: var(--cream); }
.section--dark .btn-secondary, .section--soft .btn-secondary {
  color: var(--cream);
  border-color: var(--line-on-dark);
}
.section--dark .btn-secondary:hover, .section--soft .btn-secondary:hover {
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  padding-inline: 0;
  border: 0;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.section--dark .btn-ghost, .section--soft .btn-ghost { color: var(--cream); }

.btn-fill-light {
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}
.btn-fill-light:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }

.btn-small { padding: 0.8em 1.4em; font-size: var(--fs-micro); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-sm) var(--sp-md); align-items: center; }

/* ---------------------------------------------------------------
   8. FORMS
   --------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: var(--sp-md); }
.field label, .field legend {
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 0;
}
.field .hint { font-size: var(--fs-micro); color: var(--stone-soft); font-weight: 400; letter-spacing: 0; text-transform: none; }

.input, .textarea, .select {
  width: 100%;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9em 1em;
  font-size: 1rem;
  color: var(--charcoal);
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.section--dark .input, .section--dark .textarea, .section--dark .select,
.section--soft .input, .section--soft .textarea, .section--soft .select {
  background: rgba(247,244,236,0.06);
  border-color: var(--line-on-dark);
  color: var(--cream);
}
.input::placeholder, .textarea::placeholder { color: var(--stone-soft); }
.input:focus, .textarea:focus, .select:focus { border-color: var(--gold-dark); background: var(--white); }
.section--dark .input:focus, .section--soft .input:focus,
.section--dark .textarea:focus, .section--soft .textarea:focus { background: rgba(247,244,236,0.1); }

.textarea { resize: vertical; min-height: 120px; }

.select-wrap { position: relative; }
.select-wrap .icon { position: absolute; right: 1em; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--stone); }
.select { appearance: none; padding-right: 2.6em; cursor: pointer; }

.input:invalid:not(:placeholder-shown):not(:focus) { border-color: #A24444; }
.field-error {
  display: none;
  font-size: var(--fs-micro);
  color: #A24444;
  font-weight: 500;
}
.field.has-error .field-error { display: block; }
.field.has-error .input, .field.has-error .textarea, .field.has-error .select { border-color: #A24444; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--sp-md); }
.form-grid .field--full { grid-column: 1 / -1; }

fieldset { border: 0; padding: 0; margin: 0; }

.checkbox-row { display: flex; align-items: flex-start; gap: 0.75em; }
.checkbox-row input[type="checkbox"] {
  appearance: none;
  width: 18px; height: 18px;
  border: 1px solid var(--stone-soft);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 3px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.checkbox-row input[type="checkbox"]:checked { background: var(--gold); border-color: var(--gold); }
.checkbox-row input[type="checkbox"]:checked::after {
  content: '';
  width: 5px; height: 9px;
  border-right: 2px solid var(--charcoal);
  border-bottom: 2px solid var(--charcoal);
  transform: rotate(45deg) translate(-1px,-1px);
}
.checkbox-row label { font-size: var(--fs-small); color: var(--stone); font-weight: 400; letter-spacing: 0; text-transform: none; cursor: pointer; }

.form-note {
  font-size: var(--fs-micro);
  color: var(--stone-soft);
  margin-top: var(--sp-sm);
  line-height: 1.5;
}

.form-success { display: none; padding: var(--sp-lg); background: var(--gold-pale); border: 1px solid var(--gold-light); border-radius: var(--radius-sm); text-align: left; }
.form-success.is-visible { display: block; }
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--stone); }
form.is-submitted .form-fields { display: none; }

.form-error {
  display: none;
  margin-top: var(--sp-md);
  padding: var(--sp-md) var(--sp-lg);
  background: #FBEEEE;
  border: 1px solid #E4B8B8;
  border-radius: var(--radius-sm);
  color: #8A3A3A;
  font-size: var(--fs-small);
  text-align: left;
}
.form-error.is-visible { display: block; }

/* ---------------------------------------------------------------
   9. HEADER / NAV
   --------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color var(--dur-med) var(--ease), height var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
.site-header.is-solid,
.site-header.is-menu-open {
  height: var(--header-h-scrolled);
  background: rgba(247,244,236,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}
.site-header.is-menu-open { background: var(--cream); }

.header-inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
}

.logo-link { display: flex; align-items: center; gap: 0.85rem; flex-shrink: 0; }
.logo-plate {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--ivory);
  box-shadow: var(--shadow-2);
  padding: 5px;
  transition: width var(--dur-med) var(--ease), height var(--dur-med) var(--ease);
}
.site-header.is-scrolled .logo-plate, .site-header.is-solid .logo-plate, .site-header.is-menu-open .logo-plate { width: 48px; height: 48px; box-shadow: none; }
.logo-plate img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }

.logo-word {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: var(--cream);
  transition: color var(--dur-med) var(--ease);
}
.logo-word strong { display: block; font-weight: 600; }
.logo-word span { display: block; font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-family: var(--font-sans); font-weight: 600; margin-top: 3px; }
.site-header.is-scrolled .logo-word, .site-header.is-solid .logo-word, .site-header.is-menu-open .logo-word { color: var(--charcoal); }

.main-nav ul { display: flex; align-items: center; gap: var(--sp-lg); }
.main-nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
  padding-block: 0.4rem;
  transition: color var(--dur-fast) var(--ease);
}
.site-header.is-scrolled .main-nav a, .site-header.is-solid .main-nav a { color: var(--charcoal); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right var(--dur-med) var(--ease-out);
}
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }
.main-nav a.is-active { color: var(--gold); }
.site-header.is-scrolled .main-nav a.is-active, .site-header.is-solid .main-nav a.is-active { color: var(--gold-ink); }

.header-actions { display: flex; align-items: center; gap: var(--sp-md); }
.header-actions .btn-primary { padding: 0.85em 1.5em; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  flex-shrink: 0;
}
.menu-toggle-bar {
  width: 22px; height: 1.5px;
  background: var(--cream);
  transition: transform var(--dur-med) var(--ease), opacity var(--dur-fast) var(--ease), background var(--dur-med) var(--ease);
}
.site-header.is-scrolled .menu-toggle-bar, .site-header.is-solid .menu-toggle-bar { background: var(--charcoal); }
.site-header.is-menu-open .menu-toggle-bar { background: var(--charcoal); }
.site-header.is-menu-open .menu-toggle-bar:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.site-header.is-menu-open .menu-toggle-bar:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--header-h-scrolled) 0 0 0;
  background: var(--cream);
  z-index: 190;
  padding: var(--sp-xl) var(--container-pad) var(--sp-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), visibility 0s linear var(--dur-med);
}
.mobile-menu.is-open {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu a {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.1rem;
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
}
.mobile-menu li:first-child a { padding-top: 0; }
.mobile-menu-footer { display: flex; flex-direction: column; gap: var(--sp-md); margin-top: var(--sp-xl); }
.mobile-menu-meta { font-size: var(--fs-small); color: var(--stone); }

/* ---------------------------------------------------------------
   10. FOOTER
   --------------------------------------------------------------- */
.site-footer { background: var(--charcoal); color: var(--cream); }
.footer-top {
  padding-block: var(--sp-2xl) var(--sp-xl);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--sp-xl);
}
.footer-brand .logo-plate { background: var(--ivory); margin-bottom: var(--sp-md); }
.footer-brand p { color: rgba(247,244,236,0.62); max-width: 34ch; margin-top: var(--sp-sm); font-size: var(--fs-small); }
.footer-heading { font-size: var(--fs-micro); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--sp-md); }
.footer-nav-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav-list a { color: rgba(247,244,236,0.78); font-size: 0.94rem; transition: color var(--dur-fast) var(--ease); }
.footer-nav-list a:hover { color: var(--gold); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.94rem; color: rgba(247,244,236,0.78); }
.footer-contact-list a { color: inherit; }
.footer-contact-list a:hover { color: var(--gold); }

/* ---------------------------------------------------------------
   WHATSAPP CTA — used in place of a phone number throughout the site
   --------------------------------------------------------------- */
.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}
.whatsapp-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(37,211,102,0.14), 0 0 10px rgba(37,211,102,0.3);
  transition: box-shadow var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
.whatsapp-icon-badge svg { width: 16px; height: 16px; }
.whatsapp-cta:hover .whatsapp-icon-badge {
  box-shadow: 0 0 0 5px rgba(37,211,102,0.18), 0 0 16px rgba(37,211,102,0.45);
  transform: scale(1.06);
}
.whatsapp-cta--lg .whatsapp-icon-badge { width: 40px; height: 40px; }
.whatsapp-cta--lg .whatsapp-icon-badge svg { width: 21px; height: 21px; }

.footer-bottom {
  border-top: 1px solid var(--line-on-dark);
  padding-block: var(--sp-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  font-size: var(--fs-micro);
  color: rgba(247,244,236,0.5);
}
.footer-legal { display: flex; gap: var(--sp-md); flex-wrap: wrap; }
.footer-legal a { color: rgba(247,244,236,0.5); transition: color var(--dur-fast) var(--ease); }
.footer-legal a:hover { color: var(--gold); }

/* ---------------------------------------------------------------
   11. PAGE INTRO BAND (secondary pages)
   --------------------------------------------------------------- */
.page-intro {
  background: var(--charcoal);
  color: var(--cream);
  padding-top: calc(var(--header-h) + var(--sp-2xl));
  padding-bottom: var(--sp-2xl);
  position: relative;
  overflow: hidden;
}
.page-intro .eyebrow { color: var(--gold); margin-bottom: var(--sp-sm); }
.page-intro h1 { max-width: 18ch; }
.page-intro .lede { color: rgba(247,244,236,0.68); margin-top: var(--sp-md); }
.page-intro .btn-secondary { color: var(--cream); border-color: var(--line-on-dark); }
.page-intro .btn-secondary:hover { background: var(--cream); color: var(--charcoal); border-color: var(--cream); }
.page-intro-skyline {
  position: absolute;
  right: 0; bottom: 0;
  width: 480px;
  max-width: 60%;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
}

/* ---------------------------------------------------------------
   12. RESPONSIVE IMAGE FRAME + GRACEFUL PLACEHOLDER
   --------------------------------------------------------------- */
.image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: var(--ar, 4 / 3);
  overflow: hidden;
  background: var(--charcoal-soft);
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-frame.is-missing img { display: none; }

.image-placeholder {
  position: absolute; inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background:
    linear-gradient(155deg, var(--charcoal-soft) 0%, var(--charcoal) 100%);
  color: var(--gold-light);
  text-align: center;
  padding: var(--sp-md);
}
.image-frame.is-missing .image-placeholder { display: flex; }
.image-placeholder::before {
  content: '';
  position: absolute; inset: 10px;
  border: 1px solid var(--line-on-dark);
}
.image-placeholder .icon { width: 30px; height: 30px; stroke: var(--gold); stroke-width: 1.2; opacity: 0.85; }
.image-placeholder span {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,244,236,0.55);
}

/* ---------------------------------------------------------------
   13. SKELETON / LOADING STATE
   --------------------------------------------------------------- */
.skeleton {
  position: relative;
  overflow: hidden;
  background: var(--line-soft);
}
.skeleton::after {
  content: '';
  position: absolute; inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  animation: skeleton-sweep 1.6s infinite;
}
@media (prefers-reduced-motion: reduce) { .skeleton::after { animation: none; } }
@keyframes skeleton-sweep { 100% { transform: translateX(100%); } }

/* ---------------------------------------------------------------
   14. REVEAL ON SCROLL
   --------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------------------------------------------------------------
   15. EMPTY STATE
   --------------------------------------------------------------- */
.empty-state {
  text-align: center;
  padding: var(--sp-3xl) var(--sp-md);
  max-width: 480px;
  margin-inline: auto;
}
.empty-state .skyline-rule { justify-content: center; margin-bottom: var(--sp-md); opacity: 0.6; }
.empty-state h3 { margin-bottom: 0.6rem; }
.empty-state p { color: var(--stone); margin-bottom: var(--sp-lg); }

/* ---------------------------------------------------------------
   16. MISC UTILITIES
   --------------------------------------------------------------- */
.hr-hairline { border: 0; border-top: 1px solid var(--line); }
.section--dark .hr-hairline, .section--soft .hr-hairline { border-top-color: var(--line-on-dark); }
.mt-0 { margin-top: 0 !important; }
.no-scroll { overflow: hidden; }

@media (min-width: 1600px) {
  :root { --container-max: 1480px; }
}

/* ---------------------------------------------------------------
   17. SHEET-DRIVEN TEXT FORMATTING (see js/content-loader.js)
   ---------------------------------------------------------------
   A deliberately small, fixed set of options — not freeform styling —
   so page text can be emphasised from the Google Sheet without ever
   being able to produce something illegible or off-brand. Every value
   here is either an existing site color/font/size, or (for the two
   gradients) verified to read clearly on both light and dark sections.
   -------------------------------------------------------------- */

.lpp-fmt-bold { font-weight: 700; }
.lpp-fmt-italic { font-style: italic; }
.lpp-fmt-strike { text-decoration: line-through; }

/* --- Colors --- */
.lpp-color-gold { color: var(--gold-ink); }
.section--dark .lpp-color-gold, .section--soft .lpp-color-gold { color: var(--gold-light); }

.lpp-color-stone { color: var(--stone); }
.section--dark .lpp-color-stone, .section--soft .lpp-color-stone { color: rgba(247,244,236,0.68); }

.lpp-color-charcoal { color: var(--charcoal); }
.section--dark .lpp-color-charcoal, .section--soft .lpp-color-charcoal { color: var(--cream); }

/* Bonus gradient 1 — premium gold shimmer */
.lpp-color-gold-gradient {
  color: var(--gold-dark); /* fallback for browsers without background-clip:text */
  background-image: linear-gradient(120deg, #907E3E 0%, #B3A162 45%, #746331 75%, #B3A162 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section--dark .lpp-color-gold-gradient, .section--soft .lpp-color-gold-gradient {
  color: var(--gold-light);
  background-image: linear-gradient(120deg, #B3A162 0%, #CBC19B 40%, #F0E6C8 65%, #CBC19B 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* Bonus gradient 2 — charcoal-to-silver */
.lpp-color-charcoal-gradient {
  color: var(--charcoal);
  background-image: linear-gradient(120deg, #15130E 0%, #4A4438 35%, #6B655C 65%, #948E80 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section--dark .lpp-color-charcoal-gradient, .section--soft .lpp-color-charcoal-gradient {
  color: #D8D3C6;
  background-image: linear-gradient(120deg, #B8B2A3 0%, #D8D3C6 40%, #F0EEE7 65%, #C4BFAF 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* --- Fonts --- */
.lpp-font-serif { font-family: var(--font-serif); }
.lpp-font-sans { font-family: var(--font-sans); }
.lpp-font-playfair { font-family: var(--font-playfair); }
.lpp-font-manrope { font-family: var(--font-manrope); }
.lpp-font-spectral { font-family: var(--font-spectral); }

/* --- Sizes (the site's real, existing type scale — nothing invented) --- */
.lpp-size-hero  { font-size: var(--fs-hero); }
.lpp-size-h1    { font-size: var(--fs-h1); }
.lpp-size-h2    { font-size: var(--fs-h2); }
.lpp-size-h3    { font-size: var(--fs-h3); }
.lpp-size-lede  { font-size: var(--fs-lede); }
.lpp-size-body  { font-size: var(--fs-body); }
.lpp-size-small { font-size: var(--fs-small); }
.lpp-size-micro { font-size: var(--fs-micro); }
