/*
 * LSP Capital — Source CSS
 *
 * Architecture:
 *  1. Tokens      — CSS custom properties
 *  2. Reset       — box-sizing, body defaults
 *  3. Typography  — base text, headings, links
 *  4. Layout      — container, grid utilities
 *  5. Accessibility — skip link, screen-reader text, focus
 *  6. Components  — buttons, cards, forms, CTA band, proof panel
 *  7. Navigation  — site header, primary nav, mobile menu
 *  8. Templates   — site header, footer
 * 13. Section surface utilities
 *
 * NOTE: Luxury brand token revision (LUX-002).
 * Palette, typography scale, and spacing updated per luxury-redesign-handoff-v1.md.
 * Final brand colours still require stakeholder approval before production use.
 */

/* ==========================================================================
   1. TOKENS
   ========================================================================== */

:root {
  /* --- Colour: Surfaces -------------------------------------------------- */
  /* Luxury warm palette — pending brand approval */
  --color-bg:            #F7F2EA; /* Warm ivory — page body */
  --color-bg-deep:       #101815; /* Deep green-black — hero, dark sections, footer */
  --color-surface:       #FFFDF8; /* Warm white — cards, forms, elevated surfaces */
  --color-surface-muted: #EFE7DA; /* Muted warm — footer, CTA band, alternating sections */
  --color-surface-warm:  #F3EDE3; /* Deep warm — editorial panels */

  /* --- Colour: Text ------------------------------------------------------- */
  --color-text:          #111111; /* Charcoal — WCAG AAA on all warm surfaces */
  --color-text-muted:    #5F5A52; /* Warm taupe — eyebrows, captions; ~6.7:1 on --color-bg */

  /* --- Colour: Brand ------------------------------------------------------ */
  --color-primary:       #7A5706; /* Bronze — WCAG AA: 6.59:1 on --color-surface */
  --color-primary-hover: #5F4305; /* Dark bronze — WCAG AA: 8.2:1 on --color-surface */
  --color-accent-gold:   #B8860B; /* Decorative only — 3.25:1, never for text */
  --color-bronze:        #8A6408; /* Mid bronze — hover states on gold accents */

  /* --- Colour: Borders ---------------------------------------------------- */
  --color-border:        rgba(17, 17, 17, 0.14); /* Soft charcoal border */
  --color-border-warm:   rgba(138, 97, 8, 0.20); /* Gold-tinted — premium component borders */

  /* --- Colour: States ----------------------------------------------------- */
  --color-focus:         #005FCC; /* WCAG AA focus ring */
  --color-success:       #166534;
  --color-warning:       #92400e;
  --color-error:         #9b1c1c;
  --color-error-bg:      #fef2f2;

  /* --- Typography --------------------------------------------------------- */
  /* Display: editorial serif — no external font import required */
  --font-display: Georgia, "Times New Roman", serif;
  /* Body: Inter preferred; falls back through system stacks */
  --font-body:    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* Aliases — kept for backwards compatibility with existing selectors */
  --font-sans:    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif:   Georgia, "Times New Roman", serif;

  --text-xs:   0.6875rem; /* 11px — legal, micro labels */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-md:   1.125rem;  /* 18px */
  --text-lg:   1.375rem;  /* 22px — up from 20px for luxury breathing room */
  --text-xl:   1.625rem;  /* 26px */
  --text-2xl:  2rem;      /* 32px */
  --text-3xl:  2.625rem;  /* 42px */
  --text-4xl:  3.75rem;   /* 60px */
  --text-hero: clamp(3rem, 6vw, 5.5rem); /* Hero display — serif only */

  --leading-tight:  1.2;
  --leading-snug:   1.35;
  --leading-normal: 1.65;
  --leading-loose:  1.8;

  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semi:   600;
  --weight-bold:   700;

  /* --- Spacing ------------------------------------------------------------ */
  --space-1:  0.25rem;  /*   4px */
  --space-2:  0.5rem;   /*   8px */
  --space-3:  0.75rem;  /*  12px */
  --space-4:  1rem;     /*  16px */
  --space-5:  1.25rem;  /*  20px */
  --space-6:  1.5rem;   /*  24px */
  --space-8:  2rem;     /*  32px */
  --space-10: 2.5rem;   /*  40px */
  --space-12: 3rem;     /*  48px */
  --space-16: 4rem;     /*  64px */
  --space-20: 5rem;     /*  80px */
  --space-24: 6rem;     /*  96px */
  --space-28: 7rem;     /* 112px */
  --space-32: 8rem;     /* 128px */

  /* --- Layout ------------------------------------------------------------- */
  --container:      1200px;
  --container-wide: 1440px;
  --gutter:         1.5rem;

  /* --- Shape -------------------------------------------------------------- */
  /* Square-ish radii signal institutional confidence over consumer-app softness */
  --radius-sm:   0.125rem; /*  2px */
  --radius-md:   0.25rem;  /*  4px */
  --radius-lg:   0.5rem;   /*  8px */
  --radius-full: 9999px;

  /* --- Shadow ------------------------------------------------------------- */
  /* Whisper-light — no heavy elevation */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06);

  /* --- Motion ------------------------------------------------------------- */
  --duration-fast:   150ms;
  --duration-base:   250ms;
  --duration-slow:   600ms;
  --easing-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --easing-luxury:   cubic-bezier(0.25, 0.1, 0.25, 1);
}


/* ==========================================================================
   2. RESET
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
blockquote {
  margin-top: 0;
  margin-bottom: var(--space-4);
}

ul,
ol {
  padding-left: var(--space-6);
}


/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  line-height: var(--leading-tight);
  color: var(--color-text);
}

/* Display serif — editorial weight (400) at large scale */
h1, h2 {
  font-family: var(--font-display);
  font-weight: var(--weight-normal);
}

/* UI headings — sans bold */
h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }
h5 { font-size: var(--text-md); }
h6 { font-size: var(--text-base); }

@media (min-width: 768px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }
}

a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color var(--duration-fast) var(--easing-standard);
}

a:hover {
  color: var(--color-primary-hover);
}

p {
  max-width: 70ch;
}


/* ==========================================================================
   4. LAYOUT
   ========================================================================== */

.lsp-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.lsp-container--wide {
  max-width: var(--container-wide);
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

.site-main {
  flex: 1;
  padding-block: var(--space-16);
}


/* ==========================================================================
   5. ACCESSIBILITY
   ========================================================================== */

/* Skip link — visible only on keyboard focus */
.skip-link {
  position: absolute;
  top: -999px;
  left: var(--space-4);
  z-index: 9999;
  padding: var(--space-3) var(--space-6);
  background: var(--color-primary);
  color: var(--color-surface);
  font-weight: var(--weight-semi);
  font-size: var(--text-sm);
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
}

.skip-link:focus {
  top: var(--space-4);
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}

/* Screen-reader-only utility */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Global focus-visible styles */
:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Remove focus-visible ring for mouse users in supporting browsers */
:focus:not(:focus-visible) {
  outline: none;
}


/* ==========================================================================
   6. COMPONENTS — Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: var(--weight-semi);
  line-height: 1.25;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    background-color var(--duration-fast) var(--easing-standard),
    border-color var(--duration-fast) var(--easing-standard),
    color var(--duration-fast) var(--easing-standard);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-surface);
}

.btn--primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: var(--color-surface);
}

.btn--secondary {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-surface);
}

.btn--ghost {
  background-color: transparent;
  border-color: transparent;
  color: var(--color-primary);
  padding-inline: 0;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}


/* ==========================================================================
   6. COMPONENTS — Cards
   ========================================================================== */

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semi);
  margin-bottom: var(--space-2);
}

.card__meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.card__excerpt {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  flex: 1;
}

.card__action {
  margin-top: var(--space-4);
}

/* Clickable card: place the link over the card without nesting interactive
   elements inside each other. */
.card--clickable {
  position: relative;
}

.card--clickable .card__primary-link::after {
  content: '';
  position: absolute;
  inset: 0;
}


/* ==========================================================================
   6. COMPONENTS — Forms
   ========================================================================== */

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-5);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text);
}

.form-label__required {
  color: var(--color-error);
  margin-left: var(--space-1);
  aria-hidden: true;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: inherit;
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-fast) var(--easing-standard);
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
  border-color: var(--color-focus);
}

.form-textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-helper {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.form-error {
  font-size: var(--text-sm);
  color: var(--color-error);
  background-color: var(--color-error-bg);
  border: 1px solid var(--color-error);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  margin-top: var(--space-1);
}

.form-success {
  font-size: var(--text-sm);
  color: var(--color-success);
}

.form-input--error,
.form-textarea--error,
.form-select--error {
  border-color: var(--color-error);
}


/* ==========================================================================
   6. COMPONENTS — CTA Band
   ========================================================================== */

.cta-band {
  padding-block: var(--space-16);
  background-color: var(--color-surface-muted);
  text-align: center;
}

.cta-band__inner {
  max-width: 640px;
  margin-inline: auto;
}

.cta-band__heading {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.cta-band__body {
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}


/* ==========================================================================
   6. COMPONENTS — Proof Panel
   ========================================================================== */

.proof-panel {
  padding: var(--space-6);
  border-left: 4px solid var(--color-accent-gold);
  background-color: var(--color-surface-muted);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.proof-panel__claim {
  font-size: var(--text-lg);
  font-weight: var(--weight-semi);
  margin-bottom: var(--space-2);
}

.proof-panel__source {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}


/* ==========================================================================
   6. COMPONENTS — Section Header
   ========================================================================== */

.section-header {
  margin-bottom: var(--space-10);
}

.section-header--center {
  text-align: center;
}

.section-header__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.section-header__heading {
  margin-bottom: var(--space-3);
}

.section-header__subheading {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 60ch;
}

.section-header--center .section-header__subheading {
  margin-inline: auto;
}


/* ==========================================================================
   7. NAVIGATION
   ========================================================================== */

/* ── Site header ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .site-header__inner {
    min-height: 72px;
  }
}

.site-header__brand {
  flex-shrink: 0;
}

.site-header__logo-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

/* Brand lockup: editorial serif, restrained weight — deliberate, not loud */
.site-header__site-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-normal);
  color: var(--color-text);
  letter-spacing: 0.04em;
  line-height: 1.2;
  transition: opacity var(--duration-fast) var(--easing-luxury);
}

.site-header__logo-link:hover .site-header__site-name {
  opacity: 0.65;
}

/* ── Desktop nav ─────────────────────────────────────────────────────────── */
.site-nav {
  display: none;
}

@media (min-width: 768px) {
  .site-nav {
    display: block;
  }
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

/* Nav links: small tracked uppercase — institutional calm */
.site-nav__list a {
  position: relative;
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem; /* 13px — readable tracked caps */
  font-weight: var(--weight-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  padding-block: var(--space-3);
  opacity: 1;
  transition: opacity var(--duration-fast) var(--easing-luxury);
}

/* Hover: fade, not recolour — luxury brands dim, they don't shift hue */
.site-nav__list a:hover {
  color: var(--color-text);
  opacity: 0.45;
}

/* Active: full opacity, thin gold underline via pseudo-element */
.site-nav__list .current-menu-item > a,
.site-nav__list .current-page-ancestor > a {
  color: var(--color-text);
  opacity: 1;
}

.site-nav__list .current-menu-item > a::after,
.site-nav__list .current-page-ancestor > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--color-accent-gold);
}

/* ── Mobile toggle ───────────────────────────────────────────────────────── */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--space-2);
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Thinner, sharper bars — refined vs chunky consumer-app hamburger */
.mobile-menu-toggle__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--color-text);
  border-radius: 0; /* square ends — institutional, not rounded */
  transition:
    transform var(--duration-base) var(--easing-luxury),
    opacity var(--duration-base) var(--easing-luxury),
    width var(--duration-base) var(--easing-luxury);
}

/* Shorter second bar — asymmetric detail signals craft */
.mobile-menu-toggle__bar:nth-child(2) {
  width: 16px;
}

/* Open state — JS adds .is-open to the button */
.mobile-menu-toggle.is-open .mobile-menu-toggle__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-toggle.is-open .mobile-menu-toggle__bar:nth-child(2) {
  width: 22px; /* expand before fading — full-width X geometry */
  opacity: 0;
}

.mobile-menu-toggle.is-open .mobile-menu-toggle__bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Mobile nav wrapper ──────────────────────────────────────────────────── */
.primary-nav-wrapper {
  display: none;
  width: 100%;
}

.primary-nav-wrapper.is-open {
  display: block;
}

@media (min-width: 768px) {
  .primary-nav-wrapper {
    display: block;
    width: auto;
  }
}

/* Mobile: generous editorial panel — premium spacing, item separators */
@media (max-width: 767px) {
  .site-header__inner {
    flex-wrap: wrap;
    padding-block: var(--space-3);
    min-height: 0;
  }

  .primary-nav-wrapper.is-open {
    border-top: 1px solid var(--color-border);
    padding-block: var(--space-6) var(--space-8);
    animation: lsp-nav-reveal 200ms var(--easing-luxury) both;
  }

  .primary-nav-wrapper.is-open .site-nav {
    display: block;
    width: 100%;
  }

  .primary-nav-wrapper.is-open .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  /* Item separators — thin lines create rhythm without weight */
  .primary-nav-wrapper.is-open .site-nav__list > li {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .primary-nav-wrapper.is-open .site-nav__list a {
    font-size: var(--text-sm);
    letter-spacing: 0.12em;
    padding-block: var(--space-5);
    display: block;
    width: 100%;
    opacity: 1;
  }

  .primary-nav-wrapper.is-open .site-nav__list a:hover {
    opacity: 0.5;
  }

  /* Hide gold underline on mobile — not needed with full-width separators */
  .primary-nav-wrapper.is-open .site-nav__list .current-menu-item > a::after,
  .primary-nav-wrapper.is-open .site-nav__list .current-page-ancestor > a::after {
    display: none;
  }
}

/* Subtle entry animation — suppressed by the global prefers-reduced-motion rule */
@keyframes lsp-nav-reveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==========================================================================
   8. TEMPLATE — Footer (brand-scale LUX-027)
   ========================================================================== */

.site-footer--brand-scale {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 78%, rgba(184, 134, 11, 0.1), transparent 34%),
    linear-gradient(180deg, #20211f 0%, #101110 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: clamp(3.5rem, 7vw, 6rem) var(--gutter, 1.25rem) 1.5rem;
}

.site-footer--brand-scale::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(150deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 14px),
    linear-gradient(to bottom, rgba(255, 255, 255, .055), transparent 24%);
  opacity: 0.85;
}

.site-footer__nav-grid,
.site-footer__brand-row,
.site-footer__bottom {
  position: relative;
  z-index: 1;
  width: min(100%, 72rem);
  margin-inline: auto;
}

/* Menu: vertical dividers only — no box borders */
.site-footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.site-footer__group {
  min-height: clamp(10rem, 14vw, 14rem);
  padding: 0 clamp(1.25rem, 2.4vw, 2rem);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__group:first-child {
  padding-left: 0;
}

.site-footer__group:last-child {
  padding-right: 0;
  border-right: 0;
}

.site-footer__heading {
  margin: 0 0 1.35rem;
  font-family: var(--font-body, ui-sans-serif, system-ui, sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
}

.site-footer__list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__list a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: clamp(0.88rem, 0.3vw + 0.84rem, 1rem);
  line-height: 1.45;
  transition: color 160ms ease;
}

.site-footer__list a:hover {
  color: #fff;
}

/* Brand row: centred logo mark only. */
.site-footer__brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  text-align: center;
}

.site-footer__brand-mark {
  display: block;
  width: min(24rem, 72vw);
  max-width: 100%;
  margin-inline: auto;
}

.site-footer__brand-logo {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.9;
  filter: grayscale(0.12) contrast(1.04);
}

.site-footer__brand-fallback {
  display: block;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(2rem, 6vw, 6rem);
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__copyright,
.site-footer__back-top {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-footer__back-top:hover {
  color: #fff;
}

.site-footer__brand-mark:focus-visible,
.site-footer__list a:focus-visible,
.site-footer__back-top:focus-visible {
  outline: 3px solid var(--color-focus, #005fcc);
  outline-offset: 4px;
}

@media (max-width: 960px) {
  .site-footer__nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2.5rem;
  }

  .site-footer__group:nth-child(2n) {
    border-right: 0;
  }

  .site-footer__group:nth-child(2n + 1) {
    padding-left: 0;
  }
  .site-footer__brand-mark {
    width: min(22rem, 70vw);
  }
}

@media (max-width: 600px) {
  .site-footer--brand-scale {
    padding-top: 3rem;
  }

  .site-footer__nav-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer__group,
  .site-footer__group:nth-child(2n),
  .site-footer__group:nth-child(2n + 1) {
    min-height: auto;
    padding-inline: 0;
    border-right: 0;
  }

  .site-footer__brand-mark {
    width: min(18rem, 86vw);
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* ==========================================================================
   9. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ==========================================================================
   10. WORDPRESS ALIGNMENT HELPERS
   ========================================================================== */

.alignwide {
  margin-inline: calc(-1 * var(--gutter));
}

.alignfull {
  margin-inline: calc(-1 * var(--gutter));
  width: calc(100% + (2 * var(--gutter)));
  max-width: none;
}

.aligncenter {
  margin-inline: auto;
  display: block;
}

/* ==========================================================================
   11. ENTRY (page/post content)
   ========================================================================== */

.entry__header {
  margin-bottom: var(--space-8);
}

.entry__title {
  font-size: var(--text-3xl);
}

.entry__content > * + * {
  margin-top: var(--space-4);
}

/* 404 */
.error-404 {
  padding-block: var(--space-16);
}

.error-404__links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-6);
}


/* ==========================================================================
   12. BREADCRUMBS
   ========================================================================== */

.breadcrumbs {
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-border, #e7e5e4);
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-text-muted);
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
}

.breadcrumbs__link {
  color: var(--color-text-muted);
  text-decoration: none;
}

.breadcrumbs__link:hover,
.breadcrumbs__link:focus {
  color: var(--color-primary);
  text-decoration: underline;
}

.breadcrumbs__separator {
  margin-inline: var(--space-2, 0.5rem);
  color: var(--color-text-muted);
  user-select: none;
}

.breadcrumbs__item--current {
  color: var(--color-text);
  font-weight: 500;
}


/* ==========================================================================
   13. SECTION SURFACE UTILITIES
   ========================================================================== */

/* Apply to <section> elements to control background surface per section */
.section--surface { background-color: var(--color-surface); }
.section--muted   { background-color: var(--color-surface-muted); }
.section--warm    { background-color: var(--color-surface-warm); }

.section--deep {
  background-color: var(--color-bg-deep);
  color: var(--color-surface);
}

.section--deep a {
  color: var(--color-surface);
}

.section--deep .section-header__label {
  color: var(--color-surface);
  opacity: 0.65;
}

.section--deep .section-header__heading,
.section--deep .section-header__subheading {
  color: var(--color-surface);
}


/* ==========================================================================
   14. HERO SYSTEM
   ========================================================================== */

/* ── Foundation ──────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end; /* content sits near the bottom — cinematic framing */
  min-height: 70vh;
  overflow: hidden;
}

/* ── Variant: home — full-viewport dark surface ───────────────────────────── */
.hero--home {
  min-height: 90vh;
  background-color: var(--color-bg-deep);
  color: var(--color-surface);
}

/* ── Variant: page — editorial interior header ────────────────────────────── */
.hero--page {
  min-height: 44vh;
  background-color: var(--color-surface-muted);
  color: var(--color-text);
}

/* ── Variant: dark ───────────────────────────────────────────────────────── */
.hero--dark {
  background-color: var(--color-bg-deep);
  color: var(--color-surface);
}

/* ── Variant: light — warm ivory ─────────────────────────────────────────── */
.hero--light {
  background-color: var(--color-bg);
  color: var(--color-text);
}

/* ── Media slot: background image ───────────────────────────────────────── */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%; /* favour upper-thirds composition */
}

/* ── Overlay: gradient for contrast over background media ───────────────── */
/* Hidden by default — only activated by .hero--with-media */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background: linear-gradient(
    to top,
    rgba(16, 24, 21, 0.88) 0%,
    rgba(16, 24, 21, 0.55) 45%,
    rgba(16, 24, 21, 0.18) 100%
  );
  pointer-events: none;
}

.hero--with-media .hero__overlay {
  opacity: 1;
}

/* Lighter overlay when used on the page variant */
.hero--page.hero--with-media .hero__overlay {
  background: linear-gradient(
    to top,
    rgba(16, 24, 21, 0.72) 0%,
    rgba(16, 24, 21, 0.38) 55%,
    rgba(16, 24, 21, 0.12) 100%
  );
}

/* ── Container: sits above the overlay at z-index 2 ─────────────────────── */
.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: var(--space-24) var(--space-20);
}

/* ── Content: max-width for editorial readability ────────────────────────── */
.hero__content,
.hero__inner { /* .hero__inner kept as alias — matches legacy front-page markup */
  max-width: 640px;
}

/* ── Eyebrow ─────────────────────────────────────────────────────────────── */
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.65;
  margin-bottom: var(--space-4);
}

/* Gold eyebrow on dark and media-backed variants */
.hero--home .hero__eyebrow,
.hero--dark .hero__eyebrow,
.hero--with-media .hero__eyebrow {
  color: var(--color-accent-gold);
  opacity: 1;
}

/* ── Heading ─────────────────────────────────────────────────────────────── */
.hero__heading {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-normal);
  line-height: var(--leading-tight);
  color: inherit;
  margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
  .hero__heading {
    font-size: var(--text-4xl);
  }
}

/* Full clamp scale on home/dark at wide viewports */
@media (min-width: 1200px) {
  .hero--home .hero__heading,
  .hero--dark .hero__heading {
    font-size: var(--text-hero);
  }
}

/* ── Subheading ──────────────────────────────────────────────────────────── */
.hero__subheading {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: var(--leading-normal);
  color: inherit;
  opacity: 0.8;
  max-width: 520px;
  margin-bottom: var(--space-10);
}

.hero--home .hero__subheading,
.hero--dark .hero__subheading,
.hero--with-media .hero__subheading {
  opacity: 0.72;
}

/* ── Actions ─────────────────────────────────────────────────────────────── */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* Secondary/outlined button on dark surfaces: light border, warm white text */
.hero--home .hero__actions .btn--secondary,
.hero--dark .hero__actions .btn--secondary,
.hero--with-media .hero__actions .btn--secondary {
  border-color: rgba(255, 253, 248, 0.4);
  color: var(--color-surface);
  background-color: transparent;
}

.hero--home .hero__actions .btn--secondary:hover,
.hero--dark .hero__actions .btn--secondary:hover,
.hero--with-media .hero__actions .btn--secondary:hover {
  border-color: var(--color-surface);
  background-color: rgba(255, 253, 248, 0.08);
  color: var(--color-surface);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero {
    min-height: 60vh;
    align-items: flex-end;
  }

  .hero--home {
    min-height: 82vh;
  }

  .hero--page {
    min-height: 36vh;
  }

  .hero__container {
    padding-block: var(--space-16) var(--space-12);
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ==========================================================================
   13. PHASE 4 TEMPLATES
   ========================================================================== */

/* ── Shared section heading (used in front-page.php, distinct from .section-header) */

.section-heading {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .section-heading {
    font-size: var(--text-3xl);
  }
}


/* ── Page Header ─────────────────────────────────────────────────────────── */

.page-header {
  padding-block: var(--space-12) var(--space-8);
  background-color: var(--color-surface-muted);
  border-bottom: 1px solid var(--color-border);
}

.page-header__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
}

@media (min-width: 768px) {
  .page-header__title {
    font-size: var(--text-4xl);
  }
}

.page-header__intro {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 65ch;
  margin-bottom: 0;
}

.page-header--search {
  padding-block: var(--space-10) var(--space-6);
}

/* ── Investment Focus Page — luxury system polish ──────────────────────── */

.investment-hero,
.investment-review-process,
.investment-final-cta {
  --investment-deep: #0f1613;
  --investment-deep-2: #17211d;
  --investment-gold: var(--color-primary, #7a5706);
  --investment-ivory: var(--color-surface, #fffdf8);
  --investment-hairline-light: rgba(255, 253, 248, 0.16);
  --investment-text-on-dark: rgba(255, 253, 248, 0.84);
}

.investment-evaluation-intro,
.investment-routing,
.investment-focus-cards,
.investment-important-info {
  --investment-gold: var(--color-primary, #7a5706);
  --investment-ivory: var(--color-surface, #fffdf8);
  --investment-warm: var(--color-surface-ivory, #f7f2ea);
  --investment-hairline: var(--color-border-warm, rgba(138, 97, 8, 0.18));
  --investment-muted: var(--color-text-muted, #5f5a52);
}

.investment-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(15, 22, 19, 0.88) 0%, rgba(15, 22, 19, 0.74) 46%, rgba(36, 28, 16, 0.70) 100%),
    radial-gradient(circle at 82% 12%, rgba(194, 151, 68, 0.26), transparent 36%),
    url('../images/digitalscreen.webp') center / cover no-repeat;
  color: var(--investment-ivory);
  border-bottom: 1px solid var(--investment-hairline-light);
}

.investment-hero::before,
.investment-review-process::before,
.investment-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 253, 248, 0.032) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 78%);
}

.investment-hero::after {
  content: "";
  position: absolute;
  right: clamp(1.25rem, 7vw, 7rem);
  bottom: clamp(2rem, 6vw, 5rem);
  width: min(24vw, 18rem);
  aspect-ratio: 1;
  pointer-events: none;
  border: 1px solid rgba(194, 151, 68, 0.22);
  border-radius: 999px;
  opacity: 0.72;
}

.investment-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 74rem;
  padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem);
}

.investment-hero__eyebrow,
.investment-evaluation-intro__eyebrow,
.investment-routing__eyebrow,
.investment-focus-cards__eyebrow,
.investment-review-process__eyebrow,
.investment-important-info__eyebrow {
  margin: 0 0 var(--space-3);
  font-size: 0.6875rem;
  font-weight: var(--weight-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.investment-hero__eyebrow,
.investment-review-process__eyebrow {
  color: rgba(255, 253, 248, 0.68);
}

.investment-evaluation-intro__eyebrow,
.investment-routing__eyebrow,
.investment-focus-cards__eyebrow,
.investment-important-info__eyebrow {
  color: var(--investment-gold);
}

.investment-hero__title {
  margin: 0 0 var(--space-5);
  max-width: 13ch;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(3rem, 8vw, 6.35rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--investment-ivory);
  text-wrap: balance;
}

.investment-hero__intro {
  margin: 0;
  max-width: 62ch;
  font-size: clamp(1.08rem, 0.9vw + 0.98rem, 1.35rem);
  line-height: 1.76;
  color: var(--investment-text-on-dark);
}

.investment-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.investment-hero__actions .btn--secondary,
.investment-final-cta__actions .btn--secondary {
  border-color: rgba(255, 253, 248, 0.44);
  color: var(--investment-ivory);
  background: transparent;
}

.investment-hero__actions .btn--secondary:hover,
.investment-final-cta__actions .btn--secondary:hover {
  border-color: var(--investment-ivory);
  background: rgba(255, 253, 248, 0.08);
  color: var(--investment-ivory);
}

.investment-hero__trust-strip {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 242, 234, 0.96));
  border-top: 1px solid rgba(255, 253, 248, 0.22);
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.08) inset;
}

.investment-hero__trust-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.investment-hero__trust-item {
  position: relative;
  min-height: 100%;
  margin: 0;
  padding: clamp(1.15rem, 2vw, 1.45rem) clamp(1rem, 2vw, 1.5rem) clamp(1.15rem, 2vw, 1.45rem) clamp(1.6rem, 3vw, 2.1rem);
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--color-text, #111);
  border-right: 1px solid rgba(17, 17, 17, 0.1);
}

.investment-hero__trust-item::before {
  content: "";
  position: absolute;
  left: clamp(0.65rem, 1.4vw, 1rem);
  top: 1.75em;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: var(--investment-gold);
  box-shadow: 0 0 0 0.2rem rgba(122, 87, 6, 0.1);
}

.investment-hero__trust-item:last-child {
  border-right: 0;
}

.investment-evaluation-intro,
.investment-routing,
.investment-focus-cards,
.investment-important-info {
  padding-block: clamp(4.5rem, 8vw, 7.25rem);
}

.investment-evaluation-intro {
  background:
    linear-gradient(90deg, rgba(122, 87, 6, 0.08) 0, rgba(122, 87, 6, 0.08) 1px, transparent 1px) 0 0 / 9rem 9rem,
    linear-gradient(180deg, rgba(255, 253, 248, 0.99), rgba(247, 242, 234, 0.95));
  border-bottom: 1px solid var(--investment-hairline);
}

.investment-evaluation-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2.25rem, 6vw, 5.5rem);
  align-items: start;
}

.investment-evaluation-intro__heading,
.investment-routing__header,
.investment-focus-cards__header,
.investment-review-process__header {
  position: relative;
}

.investment-evaluation-intro__heading::after,
.investment-routing__header::after,
.investment-focus-cards__header::after,
.investment-review-process__header::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 1px;
  margin-top: var(--space-5);
  background: rgba(122, 87, 6, 0.42);
}

.investment-review-process__header::after {
  background: rgba(255, 253, 248, 0.32);
}

.investment-evaluation-intro__title,
.investment-routing__title,
.investment-focus-cards__title,
.investment-review-process__title,
.investment-important-info__title,
.investment-final-cta__title {
  margin: 0;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-weight: 400;
  text-wrap: balance;
}

.investment-evaluation-intro__title,
.investment-routing__title,
.investment-focus-cards__title {
  font-size: clamp(2.15rem, 4vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--color-text, #111);
}

.investment-evaluation-intro__content {
  max-width: 72ch;
  padding-top: 0.2rem;
}

.investment-evaluation-intro__content p,
.investment-routing__intro,
.investment-focus-cards__intro {
  color: var(--investment-muted);
  font-size: clamp(1rem, 0.45vw + 0.94rem, 1.13rem);
  line-height: 1.82;
}

.investment-evaluation-intro__content p {
  margin: 0 0 var(--space-5);
}

.investment-evaluation-intro__content p:last-child {
  margin-bottom: 0;
}

.investment-evaluation-intro__notice {
  position: relative;
  padding: clamp(1.2rem, 2vw, 1.55rem) clamp(1.2rem, 2.5vw, 1.75rem);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--investment-hairline);
  border-left: 3px solid var(--investment-gold);
  border-radius: var(--radius-md);
  box-shadow: none;
}

.investment-routing {
  background:
    radial-gradient(circle at 88% 0%, rgba(194, 151, 68, 0.1), transparent 32%),
    var(--investment-ivory);
}

.investment-routing__header,
.investment-focus-cards__header {
  max-width: 78ch;
  margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.investment-routing__intro,
.investment-focus-cards__intro {
  margin: var(--space-4) 0 0;
}

.investment-routing__table-wrap {
  overflow-x: auto;
  border: 1px solid var(--investment-hairline);
  border-radius: clamp(1rem, 2vw, 1.35rem);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 1.5rem 4rem rgba(16, 24, 21, 0.06);
}

.investment-routing__table {
  width: 100%;
  min-width: 60rem;
  border-collapse: collapse;
}

.investment-routing__table th,
.investment-routing__table td {
  padding: clamp(1rem, 2vw, 1.45rem);
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(17, 17, 17, 0.085);
}

.investment-routing__table thead th {
  font-size: 0.68rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--investment-muted);
  background: rgba(243, 237, 227, 0.72);
}

.investment-routing__table tbody th {
  width: 18%;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.12rem, 0.7vw + 0.95rem, 1.38rem);
  font-weight: 400;
  line-height: 1.22;
  color: var(--color-text, #111);
}

.investment-routing__table td {
  color: var(--investment-muted);
  font-size: var(--text-sm);
  line-height: 1.68;
}

.investment-routing__table tr:last-child th,
.investment-routing__table tr:last-child td {
  border-bottom: 0;
}

.investment-routing__link,
.investment-focus-card__cta {
  color: var(--investment-gold);
  font-weight: var(--weight-bold);
  text-underline-offset: 0.2em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.investment-routing__link:hover,
.investment-routing__link:focus-visible,
.investment-focus-card__cta:hover,
.investment-focus-card__cta:focus-visible {
  color: var(--color-text, #111);
}

.investment-focus-cards {
  background:
    radial-gradient(circle at 12% 4%, rgba(194, 151, 68, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(247, 242, 234, 0.98), rgba(255, 253, 248, 1));
  border-block: 1px solid var(--investment-hairline);
}

.investment-focus-cards__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.investment-focus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  grid-column: span 3;
  min-height: 100%;
  padding: clamp(1.45rem, 3vw, 2.25rem);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 242, 234, 0.9));
  border: 1px solid var(--investment-hairline);
  border-radius: clamp(1rem, 2vw, 1.35rem);
  box-shadow: 0 1rem 3rem rgba(16, 24, 21, 0.055);
}

.investment-focus-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(122, 87, 6, 0.72), rgba(194, 151, 68, 0));
}

.investment-focus-card:first-child,
.investment-focus-card:nth-child(2) {
  grid-column: span 3;
}

.investment-focus-card:last-child {
  grid-column: 2 / span 4;
}

.investment-focus-card__label {
  margin: 0 0 var(--space-3);
  font-size: 0.7rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--investment-gold);
}

.investment-focus-card__heading {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.5rem, 1.5vw + 1rem, 2.25rem);
  font-weight: 400;
  line-height: 1.14;
  color: var(--color-text, #111);
  text-wrap: balance;
}

.investment-focus-card__copy {
  color: var(--investment-muted);
  line-height: 1.75;
}

.investment-focus-card__copy p {
  margin: 0 0 var(--space-4);
}

.investment-focus-card__copy p:last-child {
  margin-bottom: 0;
}

.investment-focus-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-6) 0 0;
  padding: 0;
  list-style: none;
}

.investment-focus-card__meta li {
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(138, 97, 8, 0.2);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.7);
  color: var(--investment-muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.investment-focus-card__cta {
  align-self: flex-start;
  margin-top: auto;
  padding-top: var(--space-6);
}

.investment-review-process {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.75rem, 8vw, 7.5rem);
  background:
    radial-gradient(circle at 86% 8%, rgba(194, 151, 68, 0.16), transparent 34%),
    linear-gradient(135deg, #0f1613 0%, #15211c 58%, #21190f 100%);
  color: var(--investment-ivory);
}

.investment-review-process__header {
  position: relative;
  z-index: 1;
  max-width: 72ch;
  margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.investment-review-process__title,
.investment-final-cta__title {
  font-size: clamp(2.25rem, 4.5vw, 4.15rem);
  line-height: 1.06;
  letter-spacing: -0.012em;
  color: var(--investment-ivory);
}

.investment-review-process__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(255, 253, 248, 0.16);
  background: rgba(255, 253, 248, 0.16);
  border-radius: clamp(1rem, 2vw, 1.35rem);
  overflow: hidden;
}

.investment-review-process__item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(1.35rem, 2.6vw, 1.9rem);
  background: rgba(255, 253, 248, 0.068);
  backdrop-filter: blur(8px);
}

.investment-review-process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  margin-bottom: var(--space-5);
  border: 1px solid rgba(194, 151, 68, 0.5);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.92);
  font-size: 0.78rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
}

.investment-review-process__step-title {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.22rem, 1vw + 0.95rem, 1.62rem);
  font-weight: 400;
  line-height: 1.16;
  color: var(--investment-ivory);
}

.investment-review-process__copy {
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.investment-important-info {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.99), rgba(247, 242, 234, 0.96));
  border-top: 1px solid var(--investment-hairline);
}

.investment-important-info__panel {
  max-width: 76rem;
  padding: clamp(1.45rem, 3vw, 2.35rem);
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--investment-hairline);
  border-left: 4px solid var(--investment-gold);
  border-radius: clamp(0.9rem, 1.8vw, 1.2rem);
  box-shadow: 0 1rem 3rem rgba(16, 24, 21, 0.055);
}

.investment-important-info__title {
  margin: 0 0 var(--space-4);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.12;
  color: var(--color-text, #111);
}

.investment-important-info__copy {
  display: grid;
  gap: var(--space-4);
  max-width: 72rem;
}

.investment-important-info__copy p {
  margin: 0;
  color: var(--investment-muted);
  line-height: 1.78;
}

.investment-important-info__copy p:first-child {
  color: var(--color-text, #111);
}

.investment-final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 82% 14%, rgba(194, 151, 68, 0.18), transparent 36%),
    linear-gradient(135deg, #0f1613 0%, #15211c 58%, #21190f 100%);
  color: var(--investment-ivory);
}

.investment-final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 74ch;
}

.investment-final-cta__copy {
  margin: var(--space-4) 0 0;
  color: var(--investment-text-on-dark);
  font-size: clamp(1rem, 0.45vw + 0.94rem, 1.13rem);
  line-height: 1.78;
}

.investment-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.investment-final-cta__microcopy {
  margin: var(--space-4) 0 0;
  font-size: var(--text-sm);
  color: rgba(255, 253, 248, 0.76);
}

@media (max-width: 1100px) {
  .investment-review-process__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .investment-review-process__item:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 960px) {
  .investment-hero__trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .investment-hero__trust-item:nth-child(2n) {
    border-right: 0;
  }

  .investment-evaluation-intro__grid {
    grid-template-columns: 1fr;
  }

  .investment-focus-card,
  .investment-focus-card:first-child,
  .investment-focus-card:nth-child(2),
  .investment-focus-card:last-child {
    grid-column: span 6;
  }
}

@media (max-width: 860px) {
  .investment-routing__table {
    min-width: 0;
  }

  .investment-routing__table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .investment-routing__table,
  .investment-routing__table tbody,
  .investment-routing__table tr,
  .investment-routing__table th,
  .investment-routing__table td {
    display: block;
  }

  .investment-routing__table tr {
    padding: var(--space-5);
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  }

  .investment-routing__table tr:last-child {
    border-bottom: 0;
  }

  .investment-routing__table th,
  .investment-routing__table td {
    width: 100%;
    padding: 0;
    border-bottom: 0;
  }

  .investment-routing__table td {
    margin-top: var(--space-4);
  }

  .investment-routing__table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: var(--space-1);
    font-size: 0.68rem;
    font-weight: var(--weight-bold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--investment-muted);
  }
}

@media (max-width: 760px) {
  .investment-hero__inner {
    padding-block: clamp(4rem, 18vw, 5.5rem) clamp(2.35rem, 10vw, 3rem);
  }

  .investment-hero__actions,
  .investment-final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .investment-hero__trust-list {
    grid-template-columns: 1fr;
  }

  .investment-hero__trust-item,
  .investment-hero__trust-item:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  }

  .investment-hero__trust-item:last-child {
    border-bottom: 0;
  }

  .investment-evaluation-intro,
  .investment-routing,
  .investment-focus-cards,
  .investment-review-process,
  .investment-important-info,
  .investment-final-cta {
    padding-block: clamp(3.25rem, 14vw, 4.75rem);
  }

  .investment-focus-cards__grid {
    grid-template-columns: 1fr;
  }

  .investment-focus-card,
  .investment-focus-card:first-child,
  .investment-focus-card:nth-child(2),
  .investment-focus-card:last-child {
    grid-column: auto;
  }

  .investment-review-process__list {
    grid-template-columns: 1fr;
  }

  .investment-review-process__item:last-child {
    grid-column: auto;
  }
}

/* ── About Hero — TICKET-LSP-ABOUT-002 ─────────────────────────────────── */

.about-hero {
  background:
    radial-gradient(circle at 85% 14%, rgba(184, 134, 11, 0.16), transparent 34%),
    linear-gradient(130deg, #0f1613 0%, #15211c 60%, #0f1714 100%);
  color: var(--color-surface, #fffdf8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-hero__inner {
  padding-block: clamp(3.5rem, 8vw, 7rem) clamp(2.5rem, 5vw, 4rem);
}

.about-hero__eyebrow {
  margin: 0 0 var(--space-4);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.about-hero__title {
  margin: 0 0 var(--space-5);
  max-width: 18ch;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(2rem, 6vw, 4.4rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0.01em;
  color: var(--color-surface, #fffdf8);
  text-wrap: balance;
}

.about-hero__subheading,
.about-hero__intro {
  margin: 0;
  max-width: 72ch;
  color: rgba(255, 255, 255, 0.84);
}

.about-hero__subheading {
  font-size: clamp(1.02rem, 0.7vw + 0.92rem, 1.28rem);
  line-height: 1.72;
  margin-bottom: var(--space-4);
}

.about-hero__intro {
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.76);
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.about-hero__actions .btn--secondary {
  border-color: rgba(255, 253, 248, 0.44);
  color: var(--color-surface, #fffdf8);
}

.about-hero__actions .btn--secondary:hover {
  border-color: var(--color-surface, #fffdf8);
  background: rgba(255, 253, 248, 0.08);
  color: var(--color-surface, #fffdf8);
}

.about-hero__trust-strip {
  background: rgba(255, 253, 248, 0.92);
  color: var(--color-text, #111);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.about-hero__trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
  padding-block: var(--space-6);
}

.about-hero__trust-item {
  min-height: 100%;
  padding-right: var(--space-4);
  border-right: 1px solid rgba(17, 17, 17, 0.12);
}

.about-hero__trust-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.about-hero__trust-label {
  margin: 0 0 var(--space-2);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted, #5f5a52);
}

.about-hero__trust-value {
  margin: 0;
  font-style: normal;
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--color-text, #111);
}

.about-hero__trust-value a {
  color: inherit;
  text-underline-offset: 0.14em;
}

.about-hero__trust-value a:hover {
  color: var(--color-primary, #7a5706);
}

.about-hero__trust-value span {
  display: block;
}

@media (max-width: 960px) {
  .about-hero__trust-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .about-hero__trust-item,
  .about-hero__trust-item:last-child {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
    padding-bottom: var(--space-4);
  }

  .about-hero__trust-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 640px) {
  .about-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ── Portfolio Hero: Private Portfolio Access ───────────────────────────── */

.portfolio-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(11, 17, 24, 0.88) 0%, rgba(22, 30, 40, 0.78) 55%, rgba(46, 37, 20, 0.74) 100%),
    radial-gradient(circle at 80% 0%, rgba(194, 151, 68, 0.24), transparent 48%),
    url('../images/porftfolio.jpg') center / cover no-repeat;
  color: var(--color-surface, #fffdf8);
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
}

.portfolio-hero__title {
  color: #fffdf8;
}

.portfolio-hero__inner {
  padding-block: clamp(3rem, 8vw, 5.25rem);
  max-width: 68rem;
}

.portfolio-hero__eyebrow {
  margin: 0 0 var(--space-3);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.7);
}

.portfolio-hero__title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  text-wrap: balance;
}

.portfolio-hero__intro {
  margin: 0;
  max-width: 66ch;
  font-size: clamp(1rem, 1vw + 0.9rem, 1.24rem);
  line-height: 1.72;
  color: rgba(255, 253, 248, 0.86);
}

.portfolio-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.portfolio-hero__actions .btn--secondary {
  border-color: rgba(255, 253, 248, 0.4);
  color: var(--color-surface, #fffdf8);
  background: transparent;
}

.portfolio-hero__actions .btn--secondary:hover {
  border-color: var(--color-surface, #fffdf8);
  background: rgba(255, 253, 248, 0.08);
  color: var(--color-surface, #fffdf8);
}

.portfolio-hero__trust-strip {
  background: rgba(255, 253, 248, 0.96);
  border-top: 1px solid rgba(255, 253, 248, 0.2);
}

.portfolio-hero__trust-list {
  margin: 0;
  padding: var(--space-5) 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.portfolio-hero__trust-item {
  margin: 0;
  padding: 0 var(--space-4) 0 0;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-text, #111);
  border-right: 1px solid rgba(17, 17, 17, 0.12);
}

.portfolio-hero__trust-item:last-child {
  border-right: 0;
  padding-right: 0;
}

@media (max-width: 960px) {
  .portfolio-hero__trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-hero__trust-item:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .portfolio-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .portfolio-hero__trust-list {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .portfolio-hero__trust-item,
  .portfolio-hero__trust-item:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
    padding-right: 0;
    padding-bottom: var(--space-3);
  }

  .portfolio-hero__trust-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

/* ── Investor Hero: Private Investor Access ──────────────────────────────── */

.investor-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(194, 151, 68, 0.24), transparent 36%),
    linear-gradient(135deg, rgba(12, 18, 23, 0.86) 0%, rgba(17, 27, 32, 0.78) 52%, rgba(34, 27, 16, 0.74) 100%),
    url('../images/privateinvestor.jpg') center / cover no-repeat;
  color: var(--color-surface, #fffdf8);
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
}

.investor-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 253, 248, 0.045) 1px, transparent 1px);
  background-size: 4.75rem 4.75rem;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 72%);
}

.investor-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  padding-block: clamp(3.75rem, 8vw, 6.75rem) clamp(2.5rem, 5vw, 4.25rem);
}

.investor-hero__eyebrow {
  margin: 0 0 var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.68);
}

.investor-hero__title {
  margin: 0 0 var(--space-5);
  max-width: 16ch;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(2.35rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.01em;
  color: var(--color-surface, #fffdf8);
  text-wrap: balance;
}

.investor-hero__intro {
  margin: 0;
  max-width: 64ch;
  font-size: clamp(1.04rem, 0.9vw + 0.95rem, 1.3rem);
  line-height: 1.74;
  color: rgba(255, 253, 248, 0.84);
}

.investor-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.investor-hero__actions .btn--secondary {
  border-color: rgba(255, 253, 248, 0.42);
  color: var(--color-surface, #fffdf8);
  background: transparent;
}

.investor-hero__actions .btn--secondary:hover {
  border-color: var(--color-surface, #fffdf8);
  background: rgba(255, 253, 248, 0.08);
  color: var(--color-surface, #fffdf8);
}

.investor-hero__trust-strip {
  position: relative;
  z-index: 1;
  background: rgba(255, 253, 248, 0.96);
  border-top: 1px solid rgba(255, 253, 248, 0.22);
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.08) inset;
}

.investor-hero__trust-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
  margin: 0;
  padding: var(--space-5) 0;
  list-style: none;
}

.investor-hero__trust-item {
  position: relative;
  margin: 0;
  padding: 0 var(--space-4) 0 var(--space-5);
  font-size: var(--text-sm);
  line-height: 1.58;
  color: var(--color-text, #111);
  border-right: 1px solid rgba(17, 17, 17, 0.12);
}

.investor-hero__trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--color-primary, #7a5706);
  box-shadow: 0 0 0 0.22rem rgba(122, 87, 6, 0.12);
}

.investor-hero__trust-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.investor-access-request-anchor {
  scroll-margin-top: clamp(5rem, 12vw, 7rem);
}

@media (max-width: 960px) {
  .investor-hero__trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .investor-hero__trust-item:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .investor-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .investor-hero__trust-list {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .investor-hero__trust-item,
  .investor-hero__trust-item:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
    padding-right: 0;
    padding-bottom: var(--space-3);
  }

  .investor-hero__trust-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

/* ── Investor private access rationale + criteria ───────────────────────── */

.investor-private-rationale,
.investor-access-criteria {
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.investor-private-rationale {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(250, 247, 238, 0.94));
  border-bottom: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.18));
}

.investor-private-rationale__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.75rem, 5vw, 4.25rem);
  align-items: start;
}

.investor-private-rationale__heading {
  position: relative;
  padding-top: var(--space-2);
}

.investor-private-rationale__heading::before {
  content: "";
  display: block;
  width: 4rem;
  height: 1px;
  margin-bottom: var(--space-5);
  background: var(--color-primary, #7a5706);
}

.investor-private-rationale__eyebrow,
.investor-access-card__eyebrow {
  margin: 0 0 var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary, #7a5706);
}

.investor-private-rationale__title,
.investor-access-card__title {
  margin: 0;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.8rem, 3.8vw, 3.35rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--color-text, #111);
  text-wrap: balance;
}

.investor-private-rationale__body {
  padding: clamp(1.25rem, 2.8vw, 2rem);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.2));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.investor-private-rationale__body p {
  margin: 0 0 var(--space-4);
  color: var(--color-text-muted, #5f5a52);
  font-size: clamp(1rem, 0.35vw + 0.96rem, 1.1rem);
  line-height: 1.78;
}

.investor-private-rationale__body p:last-child {
  margin-bottom: 0;
  color: var(--color-text, #111);
}

.investor-access-criteria {
  background:
    radial-gradient(circle at 88% 10%, rgba(194, 151, 68, 0.12), transparent 30%),
    var(--color-surface-muted, #f6f1e8);
  border-bottom: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.18));
}

.investor-access-criteria__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.82fr);
  gap: var(--space-5);
  align-items: stretch;
}

.investor-access-card,
.investor-access-note {
  min-height: 100%;
  padding: clamp(1.25rem, 2.6vw, 2rem);
  background: var(--color-surface, #fffdf8);
  border: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.2));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.investor-access-card__intro {
  margin: var(--space-4) 0 var(--space-4);
  color: var(--color-text-muted, #5f5a52);
  line-height: 1.7;
}

.investor-access-card__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3) var(--space-5);
  margin: 0;
  padding: 0;
  list-style: none;
}

.investor-access-card__list li {
  position: relative;
  padding-left: var(--space-5);
  color: var(--color-text, #111);
  line-height: 1.65;
}

.investor-access-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--color-primary, #7a5706);
  box-shadow: 0 0 0 0.22rem rgba(122, 87, 6, 0.12);
}

.investor-access-note {
  background:
    linear-gradient(145deg, rgba(18, 26, 30, 0.96), rgba(35, 28, 16, 0.94));
  color: var(--color-surface, #fffdf8);
}

.investor-access-note__title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.42rem, 1.35vw + 1rem, 2rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--color-surface, #fffdf8);
  text-wrap: balance;
}

.investor-access-note p {
  margin: 0 0 var(--space-4);
  color: rgba(255, 253, 248, 0.82);
  line-height: 1.75;
}

.investor-access-note p:last-child {
  margin-bottom: 0;
}

.investor-access-note__review {
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 253, 248, 0.18);
  font-size: var(--text-sm);
}

@media (max-width: 960px) {
  .investor-private-rationale__grid,
  .investor-access-criteria__grid {
    grid-template-columns: 1fr;
  }

  .investor-access-card__list {
    grid-template-columns: 1fr;
  }
}

/* ── Investor public/private information boundaries ─────────────────────── */

.investor-public-info,
.investor-review-materials {
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.investor-public-info {
  background: var(--color-surface, #fffdf8);
  border-bottom: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.18));
}

.investor-public-info__header {
  max-width: 72ch;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.investor-public-info__eyebrow,
.investor-review-materials__eyebrow {
  margin: 0 0 var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary, #7a5706);
}

.investor-public-info__title,
.investor-review-materials__title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.8rem, 3.8vw, 3.35rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--color-text, #111);
  text-wrap: balance;
}

.investor-public-info__intro,
.investor-review-materials__intro {
  margin: 0;
  color: var(--color-text-muted, #5f5a52);
  font-size: clamp(1rem, 0.35vw + 0.96rem, 1.1rem);
  line-height: 1.76;
}

.investor-public-info__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.investor-public-info-card {
  min-height: 100%;
  padding: clamp(1.15rem, 2.2vw, 1.65rem);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(250, 247, 238, 0.9));
  border: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.2));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.investor-public-info-card__title {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.18rem, 1vw + 0.95rem, 1.55rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--color-text, #111);
}

.investor-public-info-card__title a {
  color: inherit;
  text-decoration: none;
}

.investor-public-info-card__title a:hover,
.investor-public-info-card__title a:focus-visible {
  color: var(--color-primary, #7a5706);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.investor-public-info-card__body {
  margin: 0;
  color: var(--color-text-muted, #5f5a52);
  line-height: 1.7;
}

.investor-public-info__support-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.investor-public-info__support-link {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  color: var(--color-text, #111);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.investor-public-info__support-link:hover,
.investor-public-info__support-link:focus-visible {
  border-color: var(--color-primary, #7a5706);
  color: var(--color-primary, #7a5706);
}

.investor-review-materials {
  background:
    radial-gradient(circle at 18% 8%, rgba(194, 151, 68, 0.14), transparent 30%),
    linear-gradient(145deg, #0f1613 0%, #17211d 58%, #21190f 100%);
  color: var(--color-surface, #fffdf8);
}

.investor-review-materials__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.investor-review-materials__title {
  color: var(--color-surface, #fffdf8);
}

.investor-review-materials__intro {
  color: rgba(255, 253, 248, 0.78);
}

.investor-review-materials__panel {
  padding: clamp(1.2rem, 2.6vw, 2rem);
  background: rgba(255, 253, 248, 0.94);
  color: var(--color-text, #111);
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.investor-review-materials__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3) var(--space-5);
  margin: 0;
  padding: 0;
  list-style: none;
}

.investor-review-materials__list li {
  position: relative;
  padding-left: var(--space-5);
  line-height: 1.65;
}

.investor-review-materials__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--color-primary, #7a5706);
  box-shadow: 0 0 0 0.22rem rgba(122, 87, 6, 0.12);
}

.investor-review-materials__note {
  margin: var(--space-5) 0 0;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  color: var(--color-text-muted, #5f5a52);
  line-height: 1.72;
}

@media (max-width: 1100px) {
  .investor-public-info__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .investor-public-info__grid,
  .investor-review-materials__grid,
  .investor-review-materials__list {
    grid-template-columns: 1fr;
  }
}

/* ── Investor request review process ─────────────────────────────────────── */

.investor-request-process {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  background:
    linear-gradient(180deg, rgba(250, 247, 238, 0.96), rgba(255, 253, 248, 0.98));
  border-bottom: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.18));
}

.investor-request-process__header {
  max-width: 52rem;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.investor-request-process__eyebrow {
  margin: 0 0 var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary, #7a5706);
}

.investor-request-process__title {
  margin: 0;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.8rem, 3.8vw, 3.35rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--color-text, #111);
  text-wrap: balance;
}

.investor-request-process__steps {
  list-style: none;
  counter-reset: investor-request-step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
  margin: 0;
  padding: 0;
}

.investor-request-process__step {
  counter-increment: investor-request-step;
  position: relative;
  min-height: 100%;
  padding: clamp(1.15rem, 2.2vw, 1.65rem);
  background: var(--color-surface, #fffdf8);
  border: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.2));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.investor-request-process__step::before {
  content: "0" counter(investor-request-step);
  display: inline-block;
  margin-bottom: var(--space-3);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-primary, #7a5706);
}

.investor-request-process__step-title {
  margin: 0 0 var(--space-2);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.22rem, 1.15vw + 0.95rem, 1.62rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text, #111);
}

.investor-request-process__step-body {
  margin: 0;
  color: var(--color-text-muted, #5f5a52);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .investor-request-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .investor-request-process__steps {
    grid-template-columns: 1fr;
  }
}


/* ── Investor important information ──────────────────────────────────────── */

.investor-important-info {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(250, 247, 238, 0.94));
  border-bottom: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.18));
}

.investor-important-info__panel {
  max-width: 76rem;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  background: var(--color-surface, #fffdf8);
  border: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.2));
  border-left: 4px solid var(--color-primary, #7a5706);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.investor-important-info__eyebrow {
  margin: 0 0 var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary, #7a5706);
}

.investor-important-info__title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 400;
  line-height: 1.14;
  color: var(--color-text, #111);
}

.investor-important-info__copy {
  display: grid;
  gap: var(--space-4);
  max-width: 72rem;
}

.investor-important-info__copy p {
  margin: 0;
  color: var(--color-text-muted, #5f5a52);
  line-height: 1.76;
}

.investor-important-info__copy p:first-child {
  color: var(--color-text, #111);
}
/* ── Investor access request CTA ─────────────────────────────────────────── */

.investor-access-request {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  background:
    radial-gradient(circle at 12% 12%, rgba(194, 151, 68, 0.14), transparent 34%),
    linear-gradient(145deg, #101715 0%, #17211d 58%, #241b10 100%);
  color: var(--color-surface, #fffdf8);
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
}

.investor-access-request__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.investor-access-request__content {
  max-width: 68ch;
}

.investor-access-request__eyebrow {
  margin: 0 0 var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.68);
}

.investor-access-request__title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-surface, #fffdf8);
  text-wrap: balance;
}

.investor-access-request__body {
  margin: 0 0 var(--space-4);
  color: rgba(255, 253, 248, 0.8);
  font-size: clamp(1rem, 0.35vw + 0.96rem, 1.1rem);
  line-height: 1.76;
}

.investor-access-request__body:last-child {
  margin-bottom: 0;
}

.investor-access-request__action-card {
  padding: clamp(1.2rem, 2.4vw, 1.75rem);
  background: rgba(255, 253, 248, 0.95);
  color: var(--color-text, #111);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.investor-access-request__action-card .btn {
  width: 100%;
}

.investor-access-request__microcopy {
  margin: var(--space-4) 0 0;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  color: var(--color-text-muted, #5f5a52);
  font-size: var(--text-sm);
  line-height: 1.65;
}

@media (max-width: 820px) {
  .investor-access-request__inner {
    grid-template-columns: 1fr;
  }
}
/* ── Portfolio private access rationale ─────────────────────────────────── */

.portfolio-rationale {
  padding-block: clamp(3rem, 7vw, 5.25rem);
}

.portfolio-rationale__inner {
  display: grid;
  gap: clamp(1.5rem, 3.2vw, 2.5rem);
}

.portfolio-rationale__content {
  max-width: 74ch;
}

.portfolio-rationale__title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.14;
  color: var(--color-text, #111);
}

.portfolio-rationale__copy {
  margin: 0 0 var(--space-4);
  color: var(--color-text-muted, #5f5a52);
  line-height: 1.75;
}

.portfolio-rationale__copy:last-child {
  margin-bottom: 0;
}

.portfolio-rationale__links {
  padding: clamp(1.1rem, 2vw, 1.5rem);
  background: var(--color-surface, #fffdf8);
  border: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.2));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.portfolio-rationale__links-label {
  margin: 0 0 var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text, #111);
}

.portfolio-rationale__links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.portfolio-rationale__link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  color: var(--color-text, #111);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-rationale__link:hover,
.portfolio-rationale__link:focus-visible {
  border-color: var(--color-primary, #7a5706);
  color: var(--color-primary, #7a5706);
}

/* ── Portfolio public focus cards ───────────────────────────────────────── */

.portfolio-public-focus {
  padding-block: clamp(3rem, 7vw, 5.25rem);
}

.portfolio-public-focus__intro {
  max-width: 70ch;
  margin-bottom: clamp(1.5rem, 4vw, 2.75rem);
}

.portfolio-public-focus__title {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.14;
  color: var(--color-text, #111);
}

.portfolio-public-focus__copy {
  margin: 0;
  color: var(--color-text-muted, #5f5a52);
  line-height: 1.75;
}

.portfolio-public-focus__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.portfolio-focus-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(1.1rem, 2.2vw, 1.65rem);
  background: var(--color-surface, #fffdf8);
  border: 1px solid var(--color-border, rgba(17, 17, 17, 0.14));
  border-radius: var(--radius-md);
}

.portfolio-focus-card__title {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.24rem, 1.2vw + 0.95rem, 1.7rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--color-text, #111);
}

.portfolio-focus-card__body {
  margin: 0;
  color: var(--color-text-muted, #5f5a52);
  line-height: 1.7;
}

.portfolio-focus-card__link-wrap {
  margin-top: auto;
  padding-top: var(--space-5);
  margin-bottom: 0;
}

.portfolio-focus-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-primary, #7a5706);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.portfolio-focus-card__link:hover,
.portfolio-focus-card__link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 1024px) {
  .portfolio-public-focus__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .portfolio-public-focus__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Portfolio access criteria + materials ──────────────────────────────── */

.portfolio-access-criteria {
  padding-block: clamp(3rem, 7vw, 5.25rem);
}

.portfolio-access-criteria__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}

.portfolio-access-panel {
  min-height: 100%;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  background: var(--color-surface, #fffdf8);
  border: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.2));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.portfolio-access-panel__title {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.5rem, 1.8vw + 1rem, 2rem);
  font-weight: 400;
  line-height: 1.16;
  color: var(--color-text, #111);
}

.portfolio-access-panel__intro {
  margin: 0 0 var(--space-3);
  color: var(--color-text-muted, #5f5a52);
  line-height: 1.68;
}

.portfolio-access-panel__list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: var(--space-2);
}

.portfolio-access-panel__list li {
  line-height: 1.65;
  color: var(--color-text, #111);
}

.portfolio-access-panel__note {
  margin: var(--space-4) 0 0;
  color: var(--color-text-muted, #5f5a52);
  line-height: 1.7;
}

.portfolio-access-criteria__warning {
  margin: var(--space-5) 0 0;
  padding: var(--space-4) var(--space-5);
  border-left: 3px solid var(--color-primary, #7a5706);
  background: rgba(255, 253, 248, 0.95);
  color: var(--color-text, #111);
  line-height: 1.72;
}

/* ── Portfolio access process (numbered) ────────────────────────────────── */

.portfolio-access-process {
  padding-block: clamp(3rem, 7vw, 5.25rem);
}

.portfolio-access-process__intro {
  max-width: 48rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.8rem);
}

.portfolio-access-process__title {
  margin: 0;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.14;
  color: var(--color-text, #111);
}

.portfolio-access-steps {
  list-style: none;
  counter-reset: portfolio-access-step;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.portfolio-access-step {
  counter-increment: portfolio-access-step;
  min-height: 100%;
  padding: clamp(1.15rem, 2.2vw, 1.65rem);
  background: var(--color-surface, #fffdf8);
  border: 1px solid var(--color-border, rgba(17, 17, 17, 0.14));
  border-radius: var(--radius-md);
}

.portfolio-access-step::before {
  content: "0" counter(portfolio-access-step);
  display: inline-block;
  margin-bottom: var(--space-3);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--color-primary, #7a5706);
}

.portfolio-access-step__title {
  margin: 0 0 var(--space-2);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.25rem, 1.4vw + 0.9rem, 1.7rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text, #111);
}

.portfolio-access-step__body {
  margin: 0;
  color: var(--color-text-muted, #5f5a52);
  line-height: 1.7;
}

@media (max-width: 960px) {
  .portfolio-access-criteria__grid,
  .portfolio-access-steps {
    grid-template-columns: 1fr;
  }
}

/* ── Portfolio representative work ──────────────────────────────────────── */

.portfolio-representative-work {
  padding-block: clamp(3rem, 7vw, 5.25rem);
}

.portfolio-representative-work__title {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.14;
  color: var(--color-text, #111);
}

.portfolio-representative-work__intro {
  margin: 0 0 var(--space-4);
  max-width: 72ch;
  line-height: 1.72;
  color: var(--color-text-muted, #5f5a52);
}

.portfolio-representative-work__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.portfolio-representative-work__list li {
  padding: var(--space-4);
  border: 1px solid var(--color-border, rgba(17, 17, 17, 0.14));
  border-radius: var(--radius-md);
  background: var(--color-surface, #fffdf8);
  line-height: 1.66;
  color: var(--color-text, #111);
}

/* ── Portfolio important info ───────────────────────────────────────────── */

.portfolio-important-info {
  padding-block: clamp(2.75rem, 7vw, 4.75rem);
}

.portfolio-important-info__panel {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: var(--color-surface, #fffdf8);
  border: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.26));
  border-left: 4px solid var(--color-primary, #7a5706);
  border-radius: var(--radius-md);
}

.portfolio-important-info__title {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.55rem, 2.1vw + 0.95rem, 2.15rem);
  font-weight: 400;
  line-height: 1.16;
  color: var(--color-text, #111);
}

.portfolio-important-info__copy {
  margin: 0 0 var(--space-3);
  line-height: 1.72;
  color: var(--color-text, #111);
}

.portfolio-important-info__copy:last-child {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .portfolio-representative-work__list {
    grid-template-columns: 1fr;
  }
}

/* ── Portfolio FAQ ───────────────────────────────────────────────────────── */

.portfolio-faq {
  padding-block: clamp(3rem, 7vw, 5rem);
}

.portfolio-faq__title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 400;
  line-height: 1.14;
  color: var(--color-text, #111);
}

.portfolio-faq__list {
  display: grid;
  gap: var(--space-3);
}

.portfolio-faq__item {
  border: 1px solid var(--color-border, rgba(17, 17, 17, 0.14));
  border-radius: var(--radius-md);
  background: var(--color-surface, #fffdf8);
  overflow: hidden;
}

.portfolio-faq__question {
  cursor: pointer;
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--color-text, #111);
  list-style: none;
}

.portfolio-faq__question::-webkit-details-marker {
  display: none;
}

.portfolio-faq__answer {
  margin: 0;
  padding: 0 var(--space-5) var(--space-5);
  line-height: 1.72;
  color: var(--color-text-muted, #5f5a52);
}

.portfolio-faq__item[open] .portfolio-faq__question {
  border-bottom: 1px solid var(--color-border, rgba(17, 17, 17, 0.14));
}

/* ── Portfolio final CTA ────────────────────────────────────────────────── */

.portfolio-final-cta {
  padding-block: clamp(3rem, 8vw, 5.75rem);
}

.portfolio-final-cta__inner {
  max-width: 72ch;
}

.portfolio-final-cta__title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-surface, #fffdf8);
}

.portfolio-final-cta__copy {
  margin: 0 0 var(--space-3);
  color: rgba(255, 253, 248, 0.84);
  line-height: 1.74;
}

.portfolio-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.portfolio-final-cta__actions .btn--secondary {
  border-color: rgba(255, 253, 248, 0.44);
  color: var(--color-surface, #fffdf8);
}

.portfolio-final-cta__actions .btn--secondary:hover {
  border-color: var(--color-surface, #fffdf8);
  background: rgba(255, 253, 248, 0.08);
}

.portfolio-final-cta__microcopy {
  margin: var(--space-4) 0 0;
  font-size: var(--text-sm);
  color: rgba(255, 253, 248, 0.78);
}

@media (max-width: 640px) {
  .portfolio-final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ── Portfolio luxury private-access system (TICKET-LSP-PORT-007) ──────── */

.post-type-archive-lsp_project {
  background: var(--color-surface, #fffdf8);
}

.post-type-archive-lsp_project .portfolio-hero {
  position: relative;
  background:
    linear-gradient(140deg, rgba(11, 17, 24, 0.88) 0%, rgba(22, 30, 40, 0.78) 55%, rgba(46, 37, 20, 0.74) 100%),
    radial-gradient(circle at 80% 0%, rgba(194, 151, 68, 0.24), transparent 48%),
    url('../images/porftfolio.jpg') center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
}

.post-type-archive-lsp_project .portfolio-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='%23ffffff'%3E%3Ccircle cx='16' cy='20' r='1'/%3E%3Ccircle cx='64' cy='42' r='1'/%3E%3Ccircle cx='132' cy='26' r='1'/%3E%3Ccircle cx='34' cy='106' r='1'/%3E%3Ccircle cx='102' cy='96' r='1'/%3E%3Ccircle cx='158' cy='122' r='1'/%3E%3Ccircle cx='76' cy='160' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

.post-type-archive-lsp_project .portfolio-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 76ch;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.post-type-archive-lsp_project .portfolio-hero__eyebrow {
  color: rgba(255, 253, 248, 0.76);
  letter-spacing: 0.2em;
}

.post-type-archive-lsp_project .portfolio-hero__title {
  font-size: clamp(2.1rem, 4.4vw, 4rem);
}

.post-type-archive-lsp_project .portfolio-hero__intro {
  color: rgba(255, 253, 248, 0.88);
}

.post-type-archive-lsp_project .portfolio-hero__trust-strip {
  background: var(--color-surface-ivory, #f7f2ea);
}

.post-type-archive-lsp_project .portfolio-hero__trust-item {
  color: var(--color-text, #111);
}

.post-type-archive-lsp_project .portfolio-rationale,
.post-type-archive-lsp_project .portfolio-public-focus,
.post-type-archive-lsp_project .portfolio-access-criteria,
.post-type-archive-lsp_project .portfolio-access-process,
.post-type-archive-lsp_project .portfolio-representative-work,
.post-type-archive-lsp_project .portfolio-important-info,
.post-type-archive-lsp_project .portfolio-faq,
.post-type-archive-lsp_project .portfolio-final-cta {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.post-type-archive-lsp_project .portfolio-rationale__links,
.post-type-archive-lsp_project .portfolio-focus-card,
.post-type-archive-lsp_project .portfolio-access-panel,
.post-type-archive-lsp_project .portfolio-access-step,
.post-type-archive-lsp_project .portfolio-representative-work__list li,
.post-type-archive-lsp_project .portfolio-faq__item {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.post-type-archive-lsp_project .portfolio-public-focus__grid,
.post-type-archive-lsp_project .portfolio-access-criteria__grid,
.post-type-archive-lsp_project .portfolio-access-steps {
  gap: clamp(0.9rem, 1.4vw, 1.25rem);
}

.post-type-archive-lsp_project .portfolio-focus-card,
.post-type-archive-lsp_project .portfolio-access-panel,
.post-type-archive-lsp_project .portfolio-access-step {
  transition: border-color 180ms ease, transform 180ms ease;
}

.post-type-archive-lsp_project .portfolio-focus-card:hover,
.post-type-archive-lsp_project .portfolio-access-panel:hover,
.post-type-archive-lsp_project .portfolio-access-step:hover {
  border-color: var(--color-border-warm, rgba(138, 97, 8, 0.2));
  transform: translateY(-2px);
}

.post-type-archive-lsp_project .portfolio-access-step::before {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}

.post-type-archive-lsp_project .portfolio-representative-work__list li {
  border-color: rgba(17, 17, 17, 0.12);
}

.post-type-archive-lsp_project .portfolio-important-info__panel {
  background: var(--color-surface-warm, #f3ede3);
}

.post-type-archive-lsp_project .portfolio-faq__question {
  position: relative;
  padding-right: 3rem;
}

.post-type-archive-lsp_project .portfolio-faq__question::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary, #7a5706);
  font-size: 1.1rem;
  line-height: 1;
}

.post-type-archive-lsp_project .portfolio-faq__item[open] .portfolio-faq__question::after {
  content: "−";
}

.post-type-archive-lsp_project .portfolio-final-cta {
  background: var(--color-surface-deep, #101815);
}

.post-type-archive-lsp_project .portfolio-final-cta__title,
.post-type-archive-lsp_project .portfolio-final-cta__copy,
.post-type-archive-lsp_project .portfolio-final-cta__microcopy {
  max-width: 68ch;
}

.post-type-archive-lsp_project .portfolio-final-cta__actions .btn--primary {
  letter-spacing: 0.06em;
}

@media (max-width: 640px) {
  .post-type-archive-lsp_project .portfolio-hero__trust-item,
  .post-type-archive-lsp_project .portfolio-hero__trust-item:nth-child(2n) {
    border-bottom-color: rgba(17, 17, 17, 0.16);
  }
}

/* ── About Sections: What We Do / Who We Work With ─────────────────────── */

.about-what-we-do,
.about-who-we-work-with {
  padding-block: clamp(3.25rem, 8vw, 6.25rem);
}

.about-section-head {
  max-width: 52rem;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.about-section-head__eyebrow {
  margin: 0 0 var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary, #7a5706);
}

.about-section-head__title {
  margin: 0;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.about-card-grid {
  display: grid;
  gap: var(--space-5);
}

.about-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(1.2rem, 2.1vw, 1.8rem);
  background: var(--color-surface, #fffdf8);
  border: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.2));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.about-card__title {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.2rem, 1.3vw + 0.95rem, 1.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
}

.about-card__body {
  margin: 0;
  color: var(--color-text-muted, #5f5a52);
  line-height: 1.72;
}

.about-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.about-caution-line {
  margin: clamp(1.4rem, 3vw, 2rem) 0 0;
  padding: var(--space-4) var(--space-5);
  max-width: none;
  background: rgba(255, 253, 248, 0.88);
  border-left: 3px solid var(--color-primary, #7a5706);
  color: var(--color-text-muted, #5f5a52);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.about-caution-line--strong {
  border-left-width: 4px;
  color: var(--color-text, #111);
  background: rgba(243, 237, 227, 0.92);
}

@media (max-width: 1100px) {
  .about-card-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-card-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .about-card-grid--three,
  .about-card-grid--four {
    grid-template-columns: 1fr;
  }

  .about-section-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ── About Leadership Section — luxury editorial layout ─────────────────── */

.about-leadership {
  padding-block: clamp(5rem, 12vw, 9rem);
  border-top:    1px solid var(--color-border-warm, rgba(138, 97, 8, 0.16));
  border-bottom: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.16));
}

/* Centred section head */
.about-leadership__head {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.about-leadership__eyebrow {
  margin: 0 0 var(--space-4);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary, #7a5706);
}

/* Decorative gold rule between eyebrow and title */
.about-leadership__rule {
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--color-accent-gold, #b8860b);
  margin: 0 auto var(--space-5);
}

.about-leadership__title {
  margin: 0 0 var(--space-5);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--weight-normal, 400);
  line-height: var(--leading-tight, 1.2);
  letter-spacing: -0.02em;
  color: var(--color-text, #111);
}

.about-leadership__intro {
  margin: 0;
  font-size: var(--text-md, 1.125rem);
  line-height: var(--leading-normal, 1.65);
  color: var(--color-text-muted, #5f5a52);
  max-width: 48ch;
  margin-inline: auto;
}

/* Grid: centred, capped at 2 cols so 2 leaders look intentional */
.about-leadership__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  max-width: 54rem;
  margin-inline: auto;
}

@media (min-width: 600px) {
  .about-leadership__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
  }
}

/* Slot wrapper — needed for per-card stagger reveal */
.about-leadership__card-slot {
  display: flex;
  flex-direction: column;
}

.about-leadership__card-slot .card--leadership {
  flex: 1;
}

/* Card luxury overrides */
.about-leadership .card--leadership {
  height: 100%;
  border: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.2));
  border-top: 2px solid var(--color-accent-gold, #b8860b);
  transition: transform 0.35s var(--easing-luxury, cubic-bezier(0.25, 0.1, 0.25, 1)),
              box-shadow 0.35s var(--easing-luxury, cubic-bezier(0.25, 0.1, 0.25, 1));
  overflow: visible;
}

.about-leadership .card--leadership:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.1);
}

/* Display font on the leader's name */
.about-leadership .card__title {
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-weight: var(--weight-normal, 400);
  font-size: var(--text-lg, 1.375rem);
  letter-spacing: -0.01em;
}

/* Role in small-caps uppercase bronze */
.about-leadership .card__meta--role {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary, #7a5706);
}

/* More padding inside the card body */
.about-leadership .card__body {
  gap: var(--space-3);
  padding: var(--space-8);
}

/* Center the preview button */
.about-leadership .card__action {
  margin-top: auto;
  padding-top: var(--space-5);
  text-align: center;
}

/* Centred CTA below grid */
.about-leadership__actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

/* ── About Approach / Focus / Trust ─────────────────────────────────────── */

.about-approach,
.about-investment-focus,
.about-trust {
  padding-block: clamp(3.25rem, 8vw, 6.25rem);
}

.about-approach__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-5);
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-approach__item {
  min-width: 0;
}

.about-approach__index {
  margin: 0 0 var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.16em;
  color: var(--color-primary, #7a5706);
}

.about-focus__link {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}

.about-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.about-trust__address {
  font-style: normal;
}

.about-trust__address span {
  display: block;
}

.about-trust__notice-wrap {
  margin-top: var(--space-4);
}

@media (max-width: 1100px) {
  .about-approach__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .about-approach__list,
  .about-trust__grid {
    grid-template-columns: 1fr;
  }
}

/* ── About Final CTA ─────────────────────────────────────────────────────── */

.about-final-cta {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  background: linear-gradient(135deg, var(--color-bg-deep, #101815), #15211c);
  color: var(--color-surface, #fffdf8);
}

.about-final-cta__inner {
  max-width: 52rem;
}

.about-final-cta__title {
  margin: 0 0 var(--space-4);
  color: var(--color-surface, #fffdf8);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.about-final-cta__body {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.72;
}

.about-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.about-final-cta .btn--secondary {
  border-color: rgba(255, 253, 248, 0.45);
  color: var(--color-surface, #fffdf8);
}

.about-final-cta .btn--secondary:hover {
  border-color: var(--color-surface, #fffdf8);
  background: rgba(255, 253, 248, 0.08);
  color: var(--color-surface, #fffdf8);
}

@media (max-width: 700px) {
  .about-final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
}


/* ── Empty State ─────────────────────────────────────────────────────────── */

.empty-state {
  padding-block: var(--space-12);
  text-align: center;
  color: var(--color-text-muted);
}

.empty-state__message {
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.empty-state__detail {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.empty-state--section {
  padding-block: var(--space-8);
}


/* ── Hero — base + home variant ──────────────────────────────────────────── */

.hero {
  padding-block: var(--space-20) var(--space-16);
}

.hero--home {
  background-color: var(--color-bg);
  color: var(--color-surface);
}

.hero--home .hero__heading,
.hero--home .hero__subheading {
  color: var(--color-surface);
}

.hero__inner {
  max-width: 720px;
}

.hero__heading {
  font-size: var(--text-3xl);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .hero__heading {
    font-size: var(--text-4xl);
  }
}

.hero__subheading {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-bottom: var(--space-8);
}

.hero--home .hero__subheading {
  color: rgba(255, 255, 255, 0.75);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}


/* ── Strategy Pathways — TICKET-LSP-LUX-013 ─────────────────────────────── */

.lsp-strategy-pathways {
  background: var(--color-bg, #f7f2ea);
  padding: clamp(4.5rem, 9vw, 8rem) var(--gutter, 1.25rem);
}

.lsp-strategy-pathways__intro {
  max-width: 48rem;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.lsp-strategy-pathways__eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary, #7a5706);
}

.lsp-strategy-pathways__title {
  margin: 0;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: var(--color-text, #111);
  text-wrap: balance;
}

.lsp-strategy-pathways__copy {
  max-width: 36rem;
  margin: 1.25rem auto 0;
  color: var(--color-text-muted, #5f5a52);
  line-height: 1.75;
}

.lsp-strategy-pathways__grid {
  counter-reset: strategy-card;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--color-border, rgba(17, 17, 17, 0.14));
  border-left: 1px solid var(--color-border, rgba(17, 17, 17, 0.14));
}

.lsp-strategy-card {
  counter-increment: strategy-card;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 20rem;
  padding: clamp(1.25rem, 2.6vw, 2rem);
  color: inherit;
  text-decoration: none;
  background: rgba(255, 253, 248, 0.72);
  border-right: 1px solid var(--color-border, rgba(17, 17, 17, 0.14));
  border-bottom: 1px solid var(--color-border, rgba(17, 17, 17, 0.14));
  transition: background-color 180ms ease, transform 180ms ease;
}

.lsp-strategy-card:hover {
  background: #fffdf8;
  transform: translateY(-0.25rem);
}

.lsp-strategy-card:focus-visible {
  outline: 3px solid var(--color-focus, #0066cc);
  outline-offset: 4px;
}

.lsp-strategy-card__index::before {
  content: "0" counter(strategy-card);
  display: block;
  margin-bottom: auto;
  font-family: var(--font-body, ui-sans-serif, system-ui, sans-serif);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--color-primary, #7a5706);
}

.lsp-strategy-card__title {
  margin: clamp(4rem, 8vw, 7rem) 0 0.8rem;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--color-text, #111);
}

.lsp-strategy-card__body {
  margin: 0;
  color: var(--color-text-muted, #5f5a52);
  font-size: 0.96rem;
  line-height: 1.7;
}

.lsp-strategy-card__cta {
  display: inline-flex;
  margin-top: 1.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary, #7a5706);
}

@media (max-width: 1024px) {
  .lsp-strategy-pathways__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lsp-strategy-pathways__grid {
    grid-template-columns: 1fr;
  }

  .lsp-strategy-card {
    min-height: auto;
  }

  .lsp-strategy-card__title {
    margin-top: 3rem;
  }
}


/* ── Trust Strip ─────────────────────────────────────────────────────────── */

.trust-strip {
  padding-block: var(--space-10);
  background-color: var(--color-surface-muted);
  border-block: 1px solid var(--color-border);
}

.trust-strip__placeholder {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 0;
}


/* ── Investment Thesis Intro ─────────────────────────────────────────────── */

.thesis-intro {
  padding-block: var(--space-16);
}

.thesis-intro__body {
  max-width: 70ch;
  margin-bottom: var(--space-8);
}

.thesis-intro__cta {
  margin-bottom: 0;
}


/* ── Sector Focus ────────────────────────────────────────────────────────── */

.sector-focus {
  padding-block: var(--space-16);
  background-color: var(--color-surface-muted);
}

.sector-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-4);
}

.sector-grid__item {
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  text-align: center;
}

.sector-grid__item a {
  color: var(--color-text);
  text-decoration: none;
}

.sector-grid__item a:hover {
  color: var(--color-primary);
}


/* ── Featured Project section ────────────────────────────────────────────── */

.featured-project {
  padding-block: var(--space-16);
}

.featured-project > .lsp-container > .card {
  max-width: 640px;
}


/* ── Project grid (archive + homepage) ───────────────────────────────────── */

.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ── Leadership Preview section ──────────────────────────────────────────── */

.leadership-preview {
  padding-block: var(--space-16);
  background-color: var(--color-surface-muted);
}


/* ── Leadership grid (preview + archive) ─────────────────────────────────── */

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

@media (min-width: 480px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .leadership-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ── Leadership Hub (archive) ────────────────────────────────────────────── */

.leadership-hub__hero {
  position: relative;
  overflow: hidden;
  padding-block: 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  background:
    linear-gradient(130deg, rgba(15, 22, 19, 0.86) 0%, rgba(15, 22, 19, 0.70) 55%, rgba(36, 28, 16, 0.64) 100%),
    url('../images/leadership.jpg') center / cover no-repeat;
  color: #fffdf8;
}

.leadership-hub__hero-inner {
  max-width: 72ch;
  padding-block: clamp(3rem, 7vw, 6rem);
}

.leadership-hub__hero .leadership-hub__eyebrow {
  color: rgba(255, 253, 248, 0.68);
}

.leadership-hub__hero .leadership-hub__title {
  color: #fffdf8;
}

.leadership-hub__hero .leadership-hub__intro {
  color: rgba(255, 253, 248, 0.82);
}

/* Breadcrumbs on dark hero backgrounds */
.investment-hero .breadcrumbs,
.leadership-hub__hero .breadcrumbs,
.portfolio-hero .breadcrumbs,
.investor-hero .breadcrumbs {
  border-bottom-color: rgba(255, 253, 248, 0.12);
}

.investment-hero .breadcrumbs__item,
.investment-hero .breadcrumbs__link,
.investment-hero .breadcrumbs__separator,
.leadership-hub__hero .breadcrumbs__item,
.leadership-hub__hero .breadcrumbs__link,
.leadership-hub__hero .breadcrumbs__separator,
.portfolio-hero .breadcrumbs__item,
.portfolio-hero .breadcrumbs__link,
.portfolio-hero .breadcrumbs__separator,
.investor-hero .breadcrumbs__item,
.investor-hero .breadcrumbs__link,
.investor-hero .breadcrumbs__separator {
  color: rgba(255, 253, 248, 0.60);
}

.investment-hero .breadcrumbs__item--current,
.leadership-hub__hero .breadcrumbs__item--current,
.portfolio-hero .breadcrumbs__item--current,
.investor-hero .breadcrumbs__item--current {
  color: rgba(255, 253, 248, 0.88);
  font-weight: 500;
}

.investment-hero .breadcrumbs__link:hover,
.investment-hero .breadcrumbs__link:focus,
.leadership-hub__hero .breadcrumbs__link:hover,
.leadership-hub__hero .breadcrumbs__link:focus,
.portfolio-hero .breadcrumbs__link:hover,
.portfolio-hero .breadcrumbs__link:focus,
.investor-hero .breadcrumbs__link:hover,
.investor-hero .breadcrumbs__link:focus {
  color: #fffdf8;
}

/* Dark heroes bleed behind the sticky transparent header */
.investment-hero,
.leadership-hub__hero,
.portfolio-hero,
.investor-hero {
  margin-top: -4rem; /* mobile header height */
}

@media (min-width: 768px) {
  .investment-hero,
  .leadership-hub__hero,
  .portfolio-hero,
  .investor-hero {
    margin-top: -4.5rem; /* desktop header height */
  }
}

/* Push breadcrumbs below the header + full logo height */
.investment-hero .breadcrumbs,
.leadership-hub__hero .breadcrumbs,
.portfolio-hero .breadcrumbs,
.investor-hero .breadcrumbs {
  padding-top: 6rem;
  padding-inline-start: calc(clamp(5.2rem, 7vw, 8rem) + var(--gutter, 1.5rem));
}

@media (min-width: 768px) {
  .investment-hero .breadcrumbs,
  .leadership-hub__hero .breadcrumbs,
  .portfolio-hero .breadcrumbs,
  .investor-hero .breadcrumbs {
    padding-top: 7rem;
  }
}

.leadership-hub__eyebrow {
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-4);
}

.leadership-hub__title {
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: var(--weight-normal);
  line-height: 1.1;
  margin: 0 0 var(--space-6);
}

.leadership-hub__intro {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  max-width: 68ch;
  margin: 0 0 var(--space-4);
}

.leadership-hub__intro:last-child {
  margin-bottom: 0;
}

.leadership-hub__section {
  padding-block: clamp(3.25rem, 8vw, 6.25rem);
}

.leadership-hub__prose {
  max-width: 72ch;
}

.leadership-hub__prose p {
  margin: 0 0 var(--space-4);
  color: var(--color-text-muted);
}

.leadership-hub__prose p:last-child {
  margin-bottom: 0;
}

/* Important information panel (shared hub + profile) */

.leadership-important-info__panel {
  padding: var(--space-8) var(--space-6);
  border-left: 3px solid var(--color-border-warm, rgba(138, 97, 8, 0.2));
  background: var(--color-surface, #fffdf8);
}

.leadership-important-info__title {
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: var(--text-xl);
  font-weight: var(--weight-normal);
  margin: 0 0 var(--space-5);
}

.leadership-important-info__copy {
  color: var(--color-text-muted);
  margin: 0 0 var(--space-4);
}

.leadership-important-info__copy:last-child {
  margin-bottom: 0;
}


/* ── Leadership single profile ───────────────────────────────────────────── */

.entry--leadership .entry__portrait {
  width: clamp(100px, 20vw, 180px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: var(--space-5);
}

.entry--leadership .entry__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry--leadership .entry__section {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  border-top: 1px solid var(--color-border);
}

.entry__section-title {
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: var(--text-xl);
  font-weight: var(--weight-normal);
  margin: 0 0 var(--space-5);
}

.entry__placeholder-notice,
.entry__refs-notice,
.entry__credentials-notice {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: var(--space-3);
}

.entry__profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  list-style: none;
  margin: 0 0 var(--space-4);
  padding: 0;
}

.entry__profile-link {
  font-size: var(--text-sm);
  color: var(--color-primary, #7a5706);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.entry__profile-link:hover {
  color: var(--color-primary-hover, #5f4305);
}


/* ── Leadership Profile: Luxury Executive Dossier — LSP-LEAD-017/018/019 ─── */

/* Profile hero — dark, cinematic, bleeds behind header */
.lsp-profile__hero {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-deep);
  color: #fffdf8;
  margin-top: -4rem;
}

@media (min-width: 768px) {
  .lsp-profile__hero {
    margin-top: -4.5rem;
  }
}

.lsp-profile__hero .breadcrumbs {
  padding-top: 6rem;
  padding-inline-start: 0;
  border-bottom-color: rgba(255, 253, 248, 0.12);
}

@media (min-width: 768px) {
  .lsp-profile__hero .breadcrumbs {
    padding-top: 7rem;
    padding-inline-start: calc(clamp(5.2rem, 7vw, 8rem) + 1.5rem);
  }
}

.lsp-profile__hero .breadcrumbs__item,
.lsp-profile__hero .breadcrumbs__link,
.lsp-profile__hero .breadcrumbs__separator {
  color: rgba(255, 253, 248, 0.60);
}

.lsp-profile__hero .breadcrumbs__item--current {
  color: rgba(255, 253, 248, 0.88);
  font-weight: 500;
}

.lsp-profile__hero .breadcrumbs__link:hover,
.lsp-profile__hero .breadcrumbs__link:focus {
  color: #fffdf8;
}

.lsp-profile__hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  padding-block: clamp(3rem, 8vw, 6rem);
  align-items: center;
}

@media (min-width: 640px) {
  .lsp-profile__hero-inner {
    grid-template-columns: auto 1fr;
    gap: var(--space-12);
  }
}

.lsp-profile__portrait {
  width: clamp(140px, 22vw, 220px);
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 253, 248, 0.14);
  flex-shrink: 0;
}

.lsp-profile__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.lsp-profile__hero-content {
  max-width: 58ch;
}

.lsp-profile__eyebrow {
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.58);
  margin: 0 0 var(--space-4);
}

.lsp-profile__name {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: var(--weight-normal);
  line-height: 1.1;
  color: #fffdf8;
  margin: 0 0 var(--space-4);
}

.lsp-profile__role {
  font-size: var(--text-md);
  color: var(--color-accent-gold);
  margin: 0 0 var(--space-5);
}

.lsp-profile__intro {
  font-size: var(--text-base);
  line-height: var(--leading-loose);
  color: rgba(255, 253, 248, 0.76);
  max-width: 54ch;
  margin: 0;
}

/* Trust strip */
.lsp-profile__trust-strip {
  background: var(--color-surface-warm);
  border-bottom: 1px solid var(--color-border-warm);
  padding-block: var(--space-6);
}

.lsp-profile__trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-6) var(--space-8);
}

.lsp-profile__trust-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.lsp-profile__trust-label {
  font-size: var(--text-xs);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.lsp-profile__trust-value {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text);
}

.lsp-profile__trust-social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .lsp-profile__trust-social {
    margin-left: auto;
  }
}

.lsp-profile__trust-social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-primary);
  text-decoration: none;
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-base), color var(--duration-base), background-color var(--duration-base);
}

.lsp-profile__trust-social-link:hover,
.lsp-profile__trust-social-link:focus-visible {
  color: var(--color-primary-hover);
  border-color: var(--color-primary);
  background-color: rgba(122, 87, 6, 0.05);
}

/* Profile navigation — sticky anchor bar */
.lsp-profile-nav {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.lsp-profile-nav__list {
  display: flex;
  overflow-x: auto;
  list-style: none;
  margin: 0;
  padding: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.lsp-profile-nav__list::-webkit-scrollbar {
  display: none;
}

.lsp-profile-nav__item {
  flex-shrink: 0;
}

.lsp-profile-nav__link {
  display: block;
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--duration-base), border-color var(--duration-base);
}

.lsp-profile-nav__link:hover,
.lsp-profile-nav__link:focus-visible {
  color: var(--color-text);
  border-bottom-color: var(--color-primary);
}

/* Profile body */
.lsp-profile__body {
  background: var(--color-bg);
}

/* Profile sections — editorial two-column layout */
.lsp-profile-section {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  border-top: 1px solid var(--color-border);
}

.lsp-profile-section:first-child {
  border-top: none;
}

.lsp-profile-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .lsp-profile-section__inner {
    grid-template-columns: 20ch 1fr;
    gap: var(--space-12);
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .lsp-profile-section__inner {
    grid-template-columns: 24ch 1fr;
  }
}

.lsp-profile-section__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-normal);
  color: var(--color-text);
  margin: 0;
  line-height: var(--leading-snug);
}

@media (min-width: 768px) {
  .lsp-profile-section__title {
    position: sticky;
    top: 3.5rem;
  }
}

.lsp-profile-section__body {
  min-width: 0;
}

/* List type */
.lsp-profile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lsp-profile-list__item {
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--color-border);
}

.lsp-profile-list__item:first-child {
  padding-top: 0;
}

.lsp-profile-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lsp-profile-list__primary {
  font-weight: var(--weight-medium);
  color: var(--color-text);
  margin: 0 0 var(--space-1);
}

.lsp-profile-list__secondary {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  margin: 0;
}

/* Compact list — presentations, competencies */
.lsp-profile-list--compact .lsp-profile-list__item {
  padding-block: var(--space-3);
}

.lsp-profile-list--compact .lsp-profile-list__primary {
  font-size: var(--text-sm);
  font-weight: var(--weight-normal);
}

/* Prose type */
.lsp-profile-section__prose {
  max-width: 66ch;
}

.lsp-profile-section__prose p {
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
  margin: 0 0 var(--space-4);
}

.lsp-profile-section__prose p:last-child {
  margin-bottom: 0;
}

/* Stat / achievement grid */
.lsp-profile-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (min-width: 1024px) {
  .lsp-profile-stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lsp-profile-stat-card {
  padding: var(--space-6) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-sm);
}

.lsp-profile-stat-card__stat {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-primary);
  line-height: 1;
  margin: 0 0 var(--space-2);
}

.lsp-profile-stat-card__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
  line-height: var(--leading-normal);
}

/* References section */
.lsp-profile__refs-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  list-style: none;
  margin: 0 0 var(--space-5);
  padding: 0;
}

.lsp-profile__refs-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.lsp-profile__refs-notice {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
  margin: 0;
}


/* ── Press Preview section ───────────────────────────────────────────────── */

.press-preview {
  padding-block: var(--space-16);
}


/* ── Press grid (preview + archive) ─────────────────────────────────────── */

.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

@media (min-width: 640px) {
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .press-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ── Insights Preview section ────────────────────────────────────────────── */

.insights-preview {
  padding-block: var(--space-16);
  background-color: var(--color-surface-muted);
}


/* ── Insights grid (preview + archive) ──────────────────────────────────── */

.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

@media (min-width: 640px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .insights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ── Disclosure Block ────────────────────────────────────────────────────── */

.disclosure-block {
  margin-block: var(--space-8);
  padding: var(--space-4) var(--space-6);
  border-left: 3px solid var(--color-border);
  background-color: var(--color-surface-muted);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.disclosure-block__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
  margin-bottom: 0;
}


/* ── Search form (custom searchform.php) ─────────────────────────────────── */

.lsp-search-form__row {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  flex-wrap: wrap;
}

.lsp-search-form__input {
  flex: 1;
  min-width: 0;
}

.lsp-search-form__submit {
  flex-shrink: 0;
}


/* ── Search form region ──────────────────────────────────────────────────── */

.search-form-region {
  padding-block: var(--space-8) var(--space-6);
}


/* ── Search results ──────────────────────────────────────────────────────── */

.search-results {
  padding-block: var(--space-6) var(--space-16);
}

.search-results__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.search-results__item {
  margin: 0;
}

/* .search-result is applied via post_class() on the <article> */
.search-result {
  padding-block: var(--space-6);
  border-bottom: 1px solid var(--color-border);
}

.search-results__item:last-child .search-result {
  border-bottom: none;
}

.search-result__title {
  font-size: var(--text-xl);
  font-weight: var(--weight-semi);
  margin-bottom: var(--space-1);
}

.search-result__link {
  color: var(--color-text);
  text-decoration: none;
}

.search-result__link:hover {
  color: var(--color-primary);
}

.search-result__meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.search-result__excerpt {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  max-width: 70ch;
  margin-bottom: 0;
}

.search-query {
  font-style: italic;
}


/* ── Search recovery links ───────────────────────────────────────────────── */

.search-recovery {
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}

.search-recovery__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-6);
}


/* ── 404 — search block ──────────────────────────────────────────────────── */

.error-404__search {
  margin-block: var(--space-8);
  padding: var(--space-6);
  background-color: var(--color-surface-muted);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.error-404__search p {
  font-size: var(--text-base);
  margin-bottom: var(--space-3);
}


/* ==========================================================================
   14. RELATED LINKS
   ========================================================================== */

.related-links {
  padding-block: var(--space-10);
  border-top: 1px solid var(--color-border);
}

.related-links__list {
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-8);
}

.related-links__item {
  flex: 0 1 auto;
}

.related-links__link {
  font-weight: 600;
  text-decoration: none;
  color: var(--color-text);
}

.related-links__link:hover,
.related-links__link:focus {
  color: var(--color-primary);
  text-decoration: underline;
}

.related-links__desc {
  margin: var(--space-1) 0 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.related-links--investment {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  background: var(--color-surface, #fffdf8);
  border-top: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.18));
}

.related-links--investment .section-heading {
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 400;
}

.related-links--investment .related-links__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: var(--space-6);
  background: var(--color-border-warm, rgba(138, 97, 8, 0.18));
  border: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.18));
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.related-links--investment .related-links__item {
  padding: clamp(1rem, 2vw, 1.35rem);
  background: rgba(255, 253, 248, 0.96);
}

.related-links--investment .related-links__link {
  color: var(--color-text, #111);
  text-decoration: none;
}

.related-links--investment .related-links__link:hover,
.related-links--investment .related-links__link:focus-visible {
  color: var(--color-primary, #7a5706);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (max-width: 960px) {
  .related-links--investment .related-links__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .related-links--investment .related-links__list {
    grid-template-columns: 1fr;
  }
}

/* ── Sector tags (project single) ─────────────────────────────────────────── */

.sector-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.sector-tags__item {
  flex: 0 0 auto;
}

.sector-tags__link,
.sector-tags__name {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background-color: var(--color-surface-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm, 0.25rem);
  font-size: var(--text-sm);
  color: var(--color-text);
  text-decoration: none;
}

.sector-tags__link:hover,
.sector-tags__link:focus {
  border-color: var(--color-primary);
  color: var(--color-primary);
}


/* =========================================================
   Featured News — polished luxury card layout
   ========================================================= */

.lsp-featured-news {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 0%, rgba(184, 134, 11, 0.11), transparent 28rem),
    linear-gradient(180deg, #f8f2e9 0%, var(--color-bg, #f7f2ea) 58%, #f4ecdf 100%);
  padding: clamp(5.5rem, 10vw, 9rem) var(--gutter, 1.25rem);
}

.lsp-featured-news::before {
  content: "";
  position: absolute;
  inset: 1.25rem clamp(1rem, 4vw, 4rem) auto auto;
  width: min(18rem, 30vw);
  height: min(18rem, 30vw);
  border: 1px solid rgba(122, 87, 6, 0.12);
  border-radius: 999px;
  pointer-events: none;
}

.lsp-featured-news .lsp-container {
  position: relative;
  z-index: 1;
}

.lsp-featured-news__header {
  max-width: 72rem;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.lsp-featured-news__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  margin: 0 0 1.1rem;
  padding: 0.34rem 0.9rem;
  border: 1px solid rgba(122, 87, 6, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.55);
  color: var(--color-primary, #7a5706);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lsp-featured-news__title {
  max-width: 11ch;
  margin: 0;
  color: var(--color-text, #111);
  font-family: var(--font-body, ui-sans-serif, system-ui, sans-serif);
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.lsp-featured-news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 72rem;
  margin-inline: auto;
}

.lsp-news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(122, 87, 6, 0.12);
  border-radius: 1.15rem;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 1.25rem 3.5rem rgba(31, 24, 14, 0.08);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.lsp-news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.lsp-news-card:hover {
  border-color: rgba(122, 87, 6, 0.24);
  background: #fffdf8;
  transform: translateY(-0.28rem);
  box-shadow: 0 1.75rem 4.75rem rgba(31, 24, 14, 0.13);
}

.lsp-news-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0.75rem 0.75rem 0;
  border-radius: 0.85rem;
  background:
    linear-gradient(135deg, rgba(184, 134, 11, 0.16), rgba(16, 24, 21, 0.08)),
    rgba(17, 17, 17, 0.06);
  aspect-ratio: 16 / 10.5;
}

.lsp-news-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.16));
  opacity: 0.72;
  pointer-events: none;
}

.lsp-news-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.lsp-news-card:hover .lsp-news-card__image {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.045);
}

.lsp-news-card__media--placeholder {
  display: grid;
  place-items: center;
  color: rgba(17, 17, 17, 0.48);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1rem;
}

.lsp-news-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: clamp(1.15rem, 2vw, 1.45rem);
}

.lsp-news-card__source {
  margin: 0 0 0.8rem;
  color: var(--color-primary, #7a5706);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.lsp-news-card__title {
  margin: 0;
  font-family: var(--font-body, ui-sans-serif, system-ui, sans-serif);
  font-size: clamp(1.15rem, 0.8vw + 0.95rem, 1.45rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.lsp-news-card__title a {
  color: var(--color-text, #111);
  text-decoration: none;
}

.lsp-news-card__title a:hover {
  color: var(--color-primary, #7a5706);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.lsp-news-card__excerpt {
  margin: 0.85rem 0 1.35rem;
  color: var(--color-text-muted, #5f5a52);
  font-size: 0.96rem;
  line-height: 1.6;
}

.lsp-news-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 8.75rem;
  min-height: 2.65rem;
  margin-top: auto;
  padding: 0.65rem 1.2rem;
  border: 1px solid rgba(16, 24, 21, 0.92);
  border-radius: 999px;
  background: var(--color-bg-deep, #101815);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.lsp-news-card__cta:hover {
  border-color: var(--color-primary-hover, #5f4305);
  background: var(--color-primary-hover, #5f4305);
  color: #fff;
  transform: translateY(-0.08rem);
}

.lsp-news-card__cta:focus-visible,
.lsp-news-card__title a:focus-visible,
.lsp-news-card__media:focus-visible,
.lsp-featured-news__links a:focus-visible {
  outline: 3px solid var(--color-focus, #005fcc);
  outline-offset: 3px;
}

.lsp-featured-news__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 72rem;
  margin: clamp(1.5rem, 3vw, 2.25rem) auto 0;
}

.lsp-featured-news__links a {
  color: var(--color-primary, #7a5706);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

@media (max-width: 1120px) {
  .lsp-featured-news__grid {
    grid-template-columns: 1fr;
    max-width: 48rem;
  }

  .lsp-news-card {
    display: grid;
    grid-template-columns: minmax(12rem, 0.85fr) minmax(0, 1.15fr);
    align-items: stretch;
  }

  .lsp-news-card__media {
    height: calc(100% - 1.5rem);
    min-height: 15rem;
    aspect-ratio: auto;
    margin: 0.75rem 0 0.75rem 0.75rem;
  }
}

@media (max-width: 620px) {
  .lsp-featured-news {
    padding-block: clamp(4.5rem, 16vw, 6rem);
  }

  .lsp-featured-news__title {
    font-size: clamp(2.75rem, 16vw, 4rem);
  }

  .lsp-news-card {
    display: flex;
  }

  .lsp-news-card__media {
    height: auto;
    min-height: 0;
    margin: 0.65rem 0.65rem 0;
    aspect-ratio: 16 / 10;
  }

  .lsp-news-card__body {
    padding: 1.1rem;
  }
}


/* =========================================================
   Insights archive — luxury newsroom layout (LSP-INSIGHTS-001/002)
   ========================================================= */

.lsp-insights-archive {
  background: var(--color-bg, #f7f2ea);
}

.lsp-insights-hero {
  padding: clamp(7rem, 12vw, 11rem) var(--gutter, 1.25rem) clamp(3rem, 6vw, 5rem);
}

.lsp-insights-hero__inner {
  max-width: 72rem;
  margin-inline: auto;
}

.lsp-insights-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  margin: 0 0 1.25rem;
  padding: 0.32rem 0.85rem;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary, #7a5706);
}

.lsp-insights-hero__title {
  margin: 0;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.055em;
  color: var(--color-text, #111);
}

.lsp-insights-hero__copy {
  max-width: 42rem;
  margin: 1.35rem 0 0;
  color: var(--color-text-muted, #5f5a52);
  font-size: clamp(1rem, 0.4vw + 0.9rem, 1.16rem);
  line-height: 1.75;
}

.lsp-insights-grid {
  padding-bottom: clamp(4.5rem, 9vw, 8rem);
}


/* ==========================================================================
   Phase 6 — Enquiry form (LUX-007 premium redesign)
   ========================================================================== */

/* Section wrapper — warm muted background lifts it from page */
.enquiry-form-section {
  padding-block: var(--space-20);
  background-color: var(--color-surface-muted);
  border-top: 1px solid var(--color-border-warm);
}

/* Section header above the form card */
.enquiry-form-section__header {
  max-width: 680px;
  margin-bottom: var(--space-8);
}

.enquiry-form-section__intro {
  color: var(--color-text-muted);
  font-size: var(--text-md);
  line-height: var(--leading-normal);
  margin-top: var(--space-3);
  margin-bottom: 0;
}

/* Form card — contained, premium surface */
.enquiry-form {
  max-width: 680px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-10);
}

@media (max-width: 640px) {
  .enquiry-form {
    padding: var(--space-6) var(--space-5);
  }
}

/* Two-column grid for paired fields; stacks on narrow viewports. */
.enquiry-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 var(--space-6);
}

@media (min-width: 640px) {
  .enquiry-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Honeypot — off-canvas, invisible to all users; bots fill it. */
.enquiry-form__honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Fieldset group — semantic grouping without visible box */
.enquiry-form__fieldset {
  border: none;
  padding: 0;
  margin: 0 0 var(--space-2);
}

/* Eyebrow-style section legend */
.enquiry-form__fieldset-legend {
  display: block;
  width: 100%;
  font-size: var(--text-xs);
  font-weight: var(--weight-semi);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border-warm);
}

/* Optional field label suffix */
.form-label__optional {
  font-size: var(--text-xs);
  font-weight: var(--weight-normal);
  color: var(--color-text-muted);
  margin-left: var(--space-1);
}

/* Input overrides — warm background, bronze focus ring */
.enquiry-form .form-input,
.enquiry-form .form-textarea,
.enquiry-form .form-select {
  background-color: var(--color-bg);
  border-color: rgba(17, 17, 17, 0.16);
  transition: border-color var(--duration-base), box-shadow var(--duration-base);
}

.enquiry-form .form-input:hover,
.enquiry-form .form-textarea:hover,
.enquiry-form .form-select:hover {
  border-color: rgba(122, 87, 6, 0.35);
}

.enquiry-form .form-input:focus,
.enquiry-form .form-textarea:focus,
.enquiry-form .form-select:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 0;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(122, 87, 6, 0.08);
}

/* Consent row — subtle warm panel */
.enquiry-form__consent-row {
  background-color: var(--color-surface-warm);
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-4);
}

/* Checkbox + label in a horizontal row */
.enquiry-form__checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.enquiry-form__checkbox {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.15em;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.enquiry-form__consent-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-normal);
  line-height: var(--leading-normal);
  cursor: pointer;
}

/* Consent error sits inside the panel, not floating */
.enquiry-form__consent-row .form-error {
  margin-top: var(--space-3);
  margin-bottom: 0;
}

/* Top-level error alert — left-accented, legible */
.enquiry-form__notice {
  display: flex;
  align-items: flex-start;
  background-color: var(--color-error-bg);
  border: 1px solid rgba(155, 28, 28, 0.2);
  border-left: 3px solid var(--color-error);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-error);
}

/* Reassurance panel — warm, discreet, trust-building */
.enquiry-form__reassurance {
  background-color: var(--color-surface-warm);
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-top: var(--space-2);
  margin-bottom: var(--space-6);
}

.enquiry-form__reassurance-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.enquiry-form__reassurance-item {
  position: relative;
  padding-left: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

.enquiry-form__reassurance-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--weight-bold);
}

/* Submit row */
.enquiry-form__actions {
  margin-top: var(--space-2);
  margin-bottom: var(--space-4);
}

.enquiry-form__actions .btn--primary {
  padding-inline: var(--space-10);
  letter-spacing: 0.02em;
}

@media (max-width: 480px) {
  .enquiry-form__actions .btn--primary {
    width: 100%;
    text-align: center;
    padding-inline: var(--space-4);
  }
}

/* Privacy note — micro, muted */
.enquiry-form__privacy-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
  margin-top: var(--space-4);
  margin-bottom: 0;
}


/* ==========================================================================
   15. PAGE & TEMPLATE LAYOUTS — LUX-005
   ========================================================================== */

/* ── Section heading — display serif (overrides Phase 4 bold sans) ────────── */

.section-heading {
  font-family: var(--font-display);
  font-weight: var(--weight-normal);
}


/* ── Page header — luxury editorial upgrade ───────────────────────────────── */

.page-header {
  border-bottom-color: var(--color-border-warm);
}

.page-header__title {
  font-weight: var(--weight-normal);
  letter-spacing: -0.01em;
}

@media (min-width: 1024px) {
  .page-header {
    padding-block: var(--space-20) var(--space-16);
  }
}



/* ── Investor FAQ ────────────────────────────────────────────────────────── */

.investor-faq {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  background: var(--color-surface, #fffdf8);
  border-bottom: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.18));
}

.investor-faq__header {
  max-width: 52rem;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.investor-faq__eyebrow {
  margin: 0 0 var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary, #7a5706);
}

.investor-faq__title {
  margin: 0;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.8rem, 3.8vw, 3.35rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--color-text, #111);
  text-wrap: balance;
}

.investor-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.investor-faq__item {
  min-height: 100%;
  padding: clamp(1.15rem, 2.2vw, 1.65rem);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(250, 247, 238, 0.9));
  border: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.2));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.investor-faq__question {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.18rem, 1vw + 0.95rem, 1.55rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text, #111);
}

.investor-faq__answer {
  margin: 0;
  color: var(--color-text-muted, #5f5a52);
  line-height: 1.7;
}

@media (max-width: 760px) {
  .investor-faq__grid {
    grid-template-columns: 1fr;
  }
}
/* ── Interior section padding ─────────────────────────────────────────────── */

.thesis,
.target-sectors,
.geographic-focus,
.evaluation-criteria,
.risk-notes,
.faqs,
.related-projects,
.ir-audience,
.ir-process,
.ir-exclusions,
.ir-suitability,
.ir-disclosure,
.focus-areas,
.principles,
.entity-details {
  padding-block: var(--space-16);
}

/* Alternating muted surfaces for visual rhythm */
.target-sectors,
.evaluation-criteria,
.ir-process,
.ir-disclosure,
.principles {
  background-color: var(--color-surface-muted);
}


/* =========================================================
   Contact Page — Flyward Structure Adapted for LSCP
   ========================================================= */

.lsp-contact-stage {
	position: relative;
	display: grid;
	align-items: stretch;
	min-height: 100svh;
	margin-block: 0;
	padding-block: 0;
	overflow: hidden;
	isolation: isolate;
	background: #c9aaa0;
}

.lsp-contact-stage__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	min-height: 100%;
	overflow: hidden;
}

.lsp-contact-stage__bg img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center center;
}

.lsp-contact-stage__bg--fallback {
	background-image: url('../images/contactbackground.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.lsp-contact-stage__bg::after,
.lsp-contact-stage__bg--fallback::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(0,0,0,0.22)),
		repeating-linear-gradient(150deg, rgba(255,255,255,.04) 0 1px, transparent 1px 20px);
	pointer-events: none;
}

.lsp-contact-stage__content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	grid-auto-rows: 1fr;
	column-gap: clamp(1rem, 2vw, 2.5rem);
	align-items: stretch;
	width: 100%;
	min-height: 100svh;
	box-sizing: border-box;
	padding-top: var(--site-header-offset, 4.75rem);
	padding-bottom: 0;
}

.lsp-contact-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-self: stretch;
	min-height: 100%;
	padding: clamp(2.5rem, 4vw, 4rem);
	background: rgba(42, 33, 28, 0.42);
	backdrop-filter: blur(14px);
	color: #fff;
	overflow: hidden;
}

.lsp-contact-card::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(to right, rgba(255,255,255,0.14) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255,255,255,0.14) 1px, transparent 1px);
	background-size: 50% 50%;
	opacity: 0.36;
}

.lsp-contact-card__title {
	position: relative;
	z-index: 1;
	margin: 0;
	max-width: 42rem;
	font-family: var(--font-display, Georgia, "Times New Roman", serif);
	font-size: clamp(3.4rem, 5.5vw, 7.2rem);
	font-weight: 400;
	line-height: 0.9;
	letter-spacing: -0.055em;
	color: #fff;
	text-wrap: balance;
}

.lsp-contact-card__top-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(2rem, 4vw, 4rem);
	margin-top: clamp(3rem, 7vw, 6rem);
}

.lsp-contact-card__bottom-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.5rem, 3vw, 3rem);
	margin-top: auto;
	padding-top: clamp(2rem, 4vw, 3rem);
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.lsp-contact-card__item h2,
.lsp-contact-card__column h2 {
	margin: 0 0 0.75rem;
	font-family: var(--font-display, Georgia, "Times New Roman", serif);
	font-size: clamp(1.1rem, 1.3vw, 1.8rem);
	font-weight: 400;
	line-height: 1.05;
	color: #fff;
}

.lsp-contact-card__item a,
.lsp-contact-card__column a,
.lsp-contact-card__column p,
.lsp-contact-card__column address {
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.94rem;
	line-height: 1.55;
	text-decoration: none;
	font-style: normal;
}

.lsp-contact-card__column address span {
	display: block;
}

.lsp-contact-card__column ul {
	display: grid;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lsp-contact-form-shell {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-self: stretch;
	min-height: 100%;
}

.lsp-contact-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.45fr);
	align-items: stretch;
	flex: 1 1 auto;
	min-height: 100%;
	height: 100%;
	background: var(--color-surface, #fffdf8);
}

.lsp-contact-form__left {
	min-height: 100%;
	padding: clamp(2.5rem, 4vw, 4rem);
}

.lsp-contact-form__right {
	position: relative;
	min-height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: clamp(2rem, 4vw, 3.2rem);
	background:
		radial-gradient(circle at 50% 42%, rgba(184,134,11,0.12), transparent 32%),
		linear-gradient(135deg, var(--color-bg-deep, #101815), #30302d);
	color: #fff;
	overflow: hidden;
}

.lsp-contact-form__right::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, transparent 0 45%, rgba(255,255,255,0.08) 45% 45.35%, transparent 45.35%),
		radial-gradient(circle at 50% 46%, transparent 0 26%, rgba(255,255,255,0.14) 26.2% 26.6%, transparent 26.8%);
	opacity: 0.72;
}

.lsp-contact-form__right-inner {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 1.35rem;
	width: 100%;
}

.lsp-contact-form__right h2 {
	margin: 0 auto;
	font-family: var(--font-display, Georgia, "Times New Roman", serif);
	font-size: clamp(1.4rem, 1.3vw + 1rem, 2.4rem);
	font-weight: 400;
	line-height: 1.05;
	color: #fff;
	text-align: center;
}

.lsp-contact-form__right p {
	margin: 0 auto;
	max-width: 15rem;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.9rem;
	line-height: 1.55;
	text-align: center;
}

.lsp-contact-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 3.35rem;
	border: 0;
	border-radius: 999px;
	background: #fffdf8;
	color: var(--color-text, #111);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
}

.lsp-contact-form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.2rem, 2.2vw, 2rem);
}

.lsp-contact-form__field {
	margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
}

.lsp-contact-form__field label {
	display: block;
	margin-bottom: 0.55rem;
	color: var(--color-text, #111);
	font-size: 0.95rem;
	font-weight: 500;
}

.lsp-contact-form__field label span {
	color: var(--color-text-muted, #5f5a52);
	font-size: 0.8rem;
}

.lsp-contact-form input,
.lsp-contact-form select,
.lsp-contact-form textarea {
	width: 100%;
	min-height: 3.1rem;
	padding: 0.35rem 0;
	border: 0;
	border-bottom: 1px solid rgba(17, 17, 17, 0.46);
	border-radius: 0;
	background: transparent;
	color: var(--color-text, #111);
	font: inherit;
}

.lsp-contact-form textarea {
	min-height: 10rem;
	resize: vertical;
}

.lsp-contact-form__help {
	margin: 0.7rem 0 0;
	color: var(--color-text-muted, #5f5a52);
	font-size: 0.78rem;
	line-height: 1.5;
}

.lsp-contact-form__notice {
	padding: 1rem 1.25rem;
	background: rgba(180, 40, 40, 0.08);
	border-left: 3px solid #b42828;
	color: #7a1c1c;
	font-size: 0.9rem;
}

.lsp-contact-form__consent {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 0.75rem;
	align-items: start;
	margin: 0 0 1.5rem;
	color: var(--color-text-muted, #5f5a52);
	font-size: 0.82rem;
	line-height: 1.5;
}

.lsp-contact-form__consent input {
	width: 1rem;
	height: 1rem;
	min-height: 0;
	margin-top: 0.2rem;
}

.lsp-contact-stage__grid {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	color: rgba(255, 255, 255, 0.62);
}

.lsp-contact-stage a:focus-visible,
.lsp-contact-stage input:focus-visible,
.lsp-contact-stage select:focus-visible,
.lsp-contact-stage textarea:focus-visible,
.lsp-contact-stage button:focus-visible {
	outline: 3px solid var(--color-focus, #005fcc);
	outline-offset: 3px;
}

.lsp-contact-form .iti {
	width: 100%;
}

.lsp-contact-form .iti__selected-flag {
	padding-left: 0;
}

.lsp-contact-form .iti__country-list {
	z-index: 20;
	color: #111;
}

/* Contact page: header is already transparent/fixed globally; ensure white controls over dark hero */
.lsp-contact-page .site-header--luxury {
	color: #fff;
}


/* Contact page must begin and end flush with the image-backed stage.
   The global .site-main padding creates the visible bands above the image
   and before the footer on this full-bleed template. */
.lsp-contact-page .site-main {
	padding-block: 0;
	margin-block: 0;
}

@media (max-width: 1180px) {
	.lsp-contact-stage__content {
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
		min-height: 100svh;
		padding-bottom: 0;
	}

	.lsp-contact-form {
		grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.42fr);
	}

	.lsp-contact-card,
	.lsp-contact-form {
		min-height: auto;
	}
}

@media (max-width: 760px) {
	.lsp-contact-stage {
		padding: 0;
	}

	.lsp-contact-stage__content {
		padding-top: var(--site-header-offset, 4.75rem);
	}

	.lsp-contact-card {
		padding: 1.5rem;
	}

	.lsp-contact-card__title {
		font-size: clamp(3rem, 16vw, 5rem);
	}

	.lsp-contact-card__top-grid,
	.lsp-contact-card__bottom-grid,
	.lsp-contact-form,
	.lsp-contact-form__row {
		grid-template-columns: 1fr;
	}

	.lsp-contact-form__left,
	.lsp-contact-form__right {
		padding: 1.5rem;
	}

	.lsp-contact-form__right {
		min-height: 16rem;
	}
}

/* ── Placeholder paragraphs — editorial pull-quote treatment ──────────────── */

[class$="__placeholder"] {
  padding: var(--space-5) var(--space-6) var(--space-5) var(--space-8);
  border-left: 2px solid var(--color-border-warm);
  color: var(--color-text-muted);
  font-style: italic;
  font-size: var(--text-md);
  max-width: 60ch;
  margin-bottom: var(--space-6);
}


/* ── Entry — page content sections ───────────────────────────────────────── */

.entry--page {
  padding-block: var(--space-16);
}


/* ── Entry — post header and byline (single.php) ──────────────────────────── */

.page-header--post {
  padding-block: var(--space-16) var(--space-10);
  background-color: var(--color-surface-muted);
  border-bottom: 1px solid var(--color-border-warm);
}

@media (min-width: 1024px) {
  .page-header--post {
    padding-block: var(--space-20) var(--space-12);
  }
}

.page-header--post .entry__title {
  font-weight: var(--weight-normal);
  max-width: 22ch;
}

.entry__hero-image {
  margin-bottom: var(--space-8);
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.entry__hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.entry__byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-1) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
}

.entry__author {
  font-weight: var(--weight-medium);
  color: var(--color-text);
}

.entry__author a {
  color: inherit;
  text-decoration: none;
}

.entry__author a:hover {
  color: var(--color-primary);
}

.entry--post .entry__content {
  padding-block: var(--space-12);
}

.entry__footer {
  padding-block: var(--space-8);
  border-top: 1px solid var(--color-border);
}

.entry__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.related-posts {
  padding-block: var(--space-16);
  background-color: var(--color-surface-muted);
}

.entry-nav {
  padding-block: var(--space-6);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-sm);
}

.entry-nav p {
  margin-bottom: 0;
}


/* ── Entry — project header (dark editorial) ──────────────────────────────── */

.page-header--project {
  padding-block: var(--space-16) var(--space-10);
  background-color: var(--color-bg-deep);
  color: var(--color-surface);
  border-bottom: none;
}

@media (min-width: 1024px) {
  .page-header--project {
    padding-block: var(--space-20) var(--space-12);
  }
}

.page-header--project .entry__title {
  color: var(--color-surface);
  font-weight: var(--weight-normal);
}

.entry__meta {
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
}

.page-header--project .entry__meta {
  color: rgba(255, 253, 248, 0.72);
}

.entry__summary {
  padding-block: var(--space-10);
  border-bottom: 1px solid var(--color-border);
}

.entry__summary-text {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  max-width: 70ch;
  margin-bottom: 0;
}

.entry__summary-text--pending {
  font-style: italic;
}

.entry__key-facts {
  padding-block: var(--space-10);
  border-bottom: 1px solid var(--color-border);
}

.key-facts-list {
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.key-facts-list__item {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-5);
  position: relative;
}

.key-facts-list__item::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent-gold);
}

.entry__press-links {
  padding-block: var(--space-10);
  border-bottom: 1px solid var(--color-border);
}

.press-links-list {
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
}

.press-links-list__item {
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

.press-links-list__item:last-child {
  border-bottom: none;
}

.press-links-list__link {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  word-break: break-word;
}

.entry__sectors {
  padding-block: var(--space-8);
  border-top: 1px solid var(--color-border);
}


/* ── CTA band — dark luxury variant ──────────────────────────────────────── */

.cta-band--dark {
  background-color: var(--color-bg-deep);
  color: var(--color-surface);
}

.cta-band--dark .cta-band__heading {
  color: var(--color-surface);
}

.cta-band--dark .cta-band__body {
  color: rgba(255, 253, 248, 0.72);
}

.cta-band--dark .btn--secondary {
  border-color: rgba(255, 253, 248, 0.4);
  color: var(--color-surface);
}

.cta-band--dark .btn--secondary:hover {
  border-color: var(--color-surface);
  background-color: rgba(255, 253, 248, 0.08);
  color: var(--color-surface);
}


/* ==========================================================================
   Luxury Cinematic Hero — TICKET-LSP-LUX-010 (compact first-screen layout)
   ========================================================================== */

.lsp-cinematic-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 36%, rgba(184, 134, 11, 0.10), transparent 28%),
    linear-gradient(135deg, var(--color-bg-deep, #101815), #050706);
  color: #fff;
  isolation: isolate;
  padding: clamp(3.5rem, 6vw, 5.5rem) var(--gutter, 1.25rem) clamp(2rem, 4vw, 3.5rem);
}

.lsp-cinematic-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.14), transparent 30%, rgba(0, 0, 0, 0.38)),
    radial-gradient(circle at 50% 45%, transparent 0 34%, rgba(0, 0, 0, 0.28) 82%);
}

.lsp-cinematic-hero__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 46rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lsp-cinematic-hero__copy {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0 0 clamp(1rem, 2vw, 1.4rem);
  pointer-events: none;
}

.lsp-cinematic-hero__eyebrow {
  margin: 0 0 clamp(0.45rem, 0.9vw, 0.7rem);
  font-family: var(--font-body, ui-sans-serif, system-ui, sans-serif);
  font-size: clamp(0.62rem, 0.25vw + 0.58rem, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.lsp-cinematic-hero__title {
  margin: 0;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(3.7rem, 8.2vw, 7.6rem);
  font-weight: 400;
  line-height: 0.76;
  letter-spacing: -0.055em;
  color: rgba(255, 255, 255, 0.94);
  text-wrap: balance;
}

.lsp-cinematic-hero__title span {
  display: block;
}

.lsp-cinematic-hero__video-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 32rem);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #0b0f0d;
  box-shadow:
    0 1.5rem 4rem rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transform-origin: center center;
}

.lsp-cinematic-hero__video,
.lsp-cinematic-hero__video-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lsp-cinematic-hero__video-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(184, 134, 11, 0.12)),
    linear-gradient(135deg, #17201c, #0a0d0c);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem;
}

.lsp-cinematic-hero__summary {
  position: relative;
  z-index: 3;
  width: min(100%, 32rem);
  margin: clamp(1rem, 2vw, 1.35rem) auto 0;
  color: rgba(255, 255, 255, 0.84);
}

.lsp-cinematic-hero__summary p {
  margin: 0 auto clamp(0.85rem, 1.8vw, 1.15rem);
  max-width: 30rem;
  font-size: clamp(0.74rem, 0.35vw + 0.68rem, 0.94rem);
  line-height: 1.65;
}

.lsp-cinematic-hero__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.lsp-cinematic-hero__actions .btn {
  min-height: 2.55rem;
  padding: 0.72rem 1.05rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lsp-cinematic-hero .btn--primary {
  background: #fff;
  border-color: #fff;
  color: var(--color-bg-deep, #101815);
}

.lsp-cinematic-hero .btn--primary:hover {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.86);
  color: var(--color-bg-deep, #101815);
}

.lsp-cinematic-hero .btn--secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.lsp-cinematic-hero .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.78);
  color: #fff;
}

.lsp-cinematic-hero__side-label {
  position: absolute;
  top: 50%;
  z-index: 2;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.lsp-cinematic-hero__side-label--left {
  left: clamp(1rem, 2.5vw, 2rem);
}

.lsp-cinematic-hero__side-label--right {
  right: clamp(1rem, 2.5vw, 2rem);
}

/* Desktop-only transform performance hint for GSAP target. */
@media (min-width: 1025px) {
  .lsp-cinematic-hero__video-frame {
    will-change: transform;
  }
}

/* Tablet and smaller: preserve the same visual idea, no pinned scroll effect. */
@media (max-width: 1024px) {
  .lsp-cinematic-hero {
    min-height: calc(100svh - var(--site-header-height, 4rem));
    padding-block: clamp(3.25rem, 12vw, 5rem) clamp(2rem, 8vw, 3rem);
  }

  .lsp-cinematic-hero__inner {
    width: min(100%, 34rem);
  }

  .lsp-cinematic-hero__title {
    font-size: clamp(3.1rem, 16vw, 5.7rem);
  }

  .lsp-cinematic-hero__video-frame {
    width: min(100%, 28rem);
    will-change: auto;
  }

  .lsp-cinematic-hero__side-label {
    display: none;
  }
}

@media (max-width: 640px) {
  .lsp-cinematic-hero {
    padding-inline: 1rem;
  }

  .lsp-cinematic-hero__title {
    font-size: clamp(3.4rem, 18vw, 5.4rem);
    line-height: 0.8;
  }

  .lsp-cinematic-hero__video-frame {
    width: min(100%, 22rem);
    aspect-ratio: 16 / 9;
  }

  .lsp-cinematic-hero__summary {
    width: min(100%, 22rem);
  }

  .lsp-cinematic-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lsp-cinematic-hero__actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lsp-cinematic-hero__video-frame,
  .lsp-cinematic-hero__copy,
  .lsp-cinematic-hero__summary,
  .lsp-cinematic-hero__side-label {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* =========================================================
   Luxury Editorial Reveal — TICKET-LSP-LUX-011
   ========================================================= */

.lsp-editorial-reveal {
  position: relative;
  overflow: hidden;
  background: var(--color-bg, #f7f2ea);
  padding: clamp(5rem, 10vw, 9rem) var(--gutter, 1.25rem);
}

.lsp-editorial-reveal__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(16, 24, 21, 0.18), rgba(122, 87, 6, 0.18)),
    radial-gradient(circle at 24% 38%, rgba(0, 120, 140, 0.28), transparent 34%),
    radial-gradient(circle at 76% 52%, rgba(184, 134, 11, 0.18), transparent 36%),
    var(--color-bg-deep, #101815);
}

.lsp-editorial-reveal__texture {
  position: absolute;
  inset: 0;
  opacity: 0.72;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255, 255, 255, 0.08) 18% 19%, transparent 19% 43%, rgba(255, 255, 255, 0.05) 43% 44%, transparent 44%),
    repeating-linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 12px);
  mix-blend-mode: screen;
}

.lsp-editorial-reveal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 58rem);
  margin-inline: auto;
  background: rgba(255, 253, 248, 0.96);
  padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 6vw, 6rem);
  text-align: center;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.18);
}

.lsp-editorial-reveal__eyebrow {
  margin: 0 0 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary, #7a5706);
}

.lsp-editorial-reveal__title {
  margin: 0;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(2.4rem, 5vw, 5.25rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.04em;
  color: #4b1025;
  text-wrap: balance;
}

.lsp-editorial-reveal__title span {
  display: block;
}

.lsp-editorial-reveal__copy {
  max-width: 40rem;
  margin: clamp(1.5rem, 3vw, 2rem) auto 0;
  color: var(--color-text-muted, #5f5a52);
  font-size: clamp(1rem, 0.4vw + 0.92rem, 1.16rem);
  line-height: 1.8;
}

.lsp-editorial-reveal__actions {
  display: flex;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

@media (max-width: 720px) {
  .lsp-editorial-reveal {
    padding-block: 3rem;
  }

  .lsp-editorial-reveal__panel {
    padding: 2.25rem 1.25rem;
  }

  .lsp-editorial-reveal__title {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
    letter-spacing: 0.02em;
  }

  .lsp-editorial-reveal__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lsp-editorial-reveal__actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-lsp-reveal-section] [data-lsp-reveal-line] {
    transform: none !important;
    opacity: 1 !important;
  }
}



/* ==========================================================================
   9. SECTION — Private Enquiry Process (LUX-033)
   ========================================================================== */

.lsp-enquiry-process {
  background: var(--color-bg, #f7f2ea);
  padding: clamp(4.5rem, 9vw, 8rem) var(--gutter, 1.25rem);
}

.lsp-enquiry-process__inner {
  display: grid;
  grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.lsp-enquiry-process__intro {
  position: sticky;
  top: clamp(5rem, 8vw, 7rem);
}

.lsp-enquiry-process__title {
  margin: 0;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(2.35rem, 4.4vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--color-text, #111);
  text-wrap: balance;
}

.lsp-enquiry-process__copy {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  color: var(--color-text-muted, #5f5a52);
  font-size: clamp(0.98rem, 0.35vw + 0.9rem, 1.12rem);
  line-height: 1.75;
}

.lsp-enquiry-process__steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-border, rgba(17, 17, 17, 0.14));
}

.lsp-enquiry-process__step {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(1.4rem, 3vw, 2.2rem) 0;
  border-bottom: 1px solid var(--color-border, rgba(17, 17, 17, 0.14));
}

.lsp-enquiry-process__index {
  font-family: var(--font-body, ui-sans-serif, system-ui, sans-serif);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--color-primary, #7a5706);
  padding-top: 0.2em;
}

.lsp-enquiry-process__step-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.35rem, 1.2vw + 1rem, 2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text, #111);
}

.lsp-enquiry-process__step-body {
  margin: 0;
  max-width: 36rem;
  color: var(--color-text-muted, #5f5a52);
  font-size: 0.96rem;
  line-height: 1.72;
}

.lsp-enquiry-process__bridge {
  grid-column: 2;
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
  color: var(--color-text, #111);
  font-size: clamp(1rem, 0.45vw + 0.9rem, 1.2rem);
  line-height: 1.65;
}

@media (max-width: 960px) {
  .lsp-enquiry-process__inner {
    grid-template-columns: 1fr;
  }

  .lsp-enquiry-process__intro {
    position: static;
  }

  .lsp-enquiry-process__bridge {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .lsp-enquiry-process__step {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
}


/* ==========================================================================
   10. SECTION — Compact Footer Contact Panel (CONTACT-016)
   ========================================================================== */

.site-footer-contact--compact {
  position: relative;
  z-index: 3;
  margin: calc(clamp(2rem, 4vw, 3.25rem) * -1) auto clamp(2.25rem, 5vw, 4rem);
  padding: 0 var(--gutter, 1.25rem);
}

.site-footer-contact--compact .site-footer-contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 0.72fr);
  gap: 0;
  align-items: stretch;
  width: min(100%, 70rem);
  min-height: clamp(18rem, 26vw, 25rem);
  margin-inline: auto;
  padding: 0;
  background: var(--color-surface, #fffdf8);
  border-radius: clamp(1rem, 1.6vw, 1.5rem);
  overflow: hidden;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.22);
}

.site-footer-contact--compact .site-footer-contact__inner.lsp-container {
  padding-inline: 0;
}

.site-footer-contact--compact .site-footer-contact__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: clamp(1.75rem, 4vw, 3.5rem);
  background: var(--color-surface, #fffdf8);
  color: var(--color-text, #111);
}

.site-footer-contact--compact .site-footer-contact__eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 1.45rem;
  margin: 0 0 1rem;
  padding: 0.28rem 0.72rem;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary, #7a5706);
}

.site-footer-contact--compact .site-footer-contact__title {
  max-width: 34rem;
  margin: 0;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-text, #111);
  text-wrap: balance;
}

.site-footer-contact--compact .site-footer-contact__copy {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: var(--color-text-muted, #5f5a52);
  font-size: clamp(0.95rem, 0.3vw + 0.9rem, 1.08rem);
  line-height: 1.65;
}

.site-footer-contact--compact .site-footer-contact__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.site-footer-contact--compact .site-footer-contact__meta {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.25rem;
  color: var(--color-text-muted, #5f5a52);
  font-size: 0.78rem;
  line-height: 1.5;
}

.site-footer-contact--compact .site-footer-contact__meta a {
  width: fit-content;
  color: var(--color-primary, #7a5706);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.site-footer-contact--compact .site-footer-contact__media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(16, 24, 21, 0.12), rgba(122, 87, 6, 0.12)),
    #d8c7ad;
}

.site-footer-contact--compact .site-footer-contact__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer-contact--compact .site-footer-contact__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to left, rgba(16, 24, 21, 0.1), rgba(16, 24, 21, 0.28)),
    radial-gradient(circle at 74% 22%, rgba(255, 255, 255, 0.12), transparent 30%);
}

.site-footer-contact--compact .site-footer-contact__media-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: clamp(18rem, 26vw, 25rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(184, 134, 11, 0.16)),
    linear-gradient(135deg, #cbb89d, #8e806e);
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem;
}

@media (max-width: 820px) {
  .site-footer-contact--compact .site-footer-contact__inner {
    grid-template-columns: 1fr;
  }

  .site-footer-contact--compact .site-footer-contact__media {
    order: -1;
    min-height: 16rem;
  }

  .site-footer-contact--compact .site-footer-contact__content {
    padding: 1.5rem;
  }
}

@media (max-width: 520px) {
  .site-footer-contact--compact .site-footer-contact__actions {
    flex-direction: column;
  }

  .site-footer-contact--compact .site-footer-contact__actions .btn {
    width: 100%;
  }
}


/* ==========================================================================
   10. SECTION — Footer Subscribe Strip (LUX-031)
   ========================================================================== */

.site-footer-subscribe {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter, 1.25rem) clamp(3rem, 6vw, 5rem);
}

.site-footer-subscribe__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  width: min(100%, 62rem);
  margin-inline: auto;
}

/* =========================================================
   Footer Subscribe Strip — contrast + SVG icon fix
   ========================================================= */

.site-footer-subscribe__copy {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer-subscribe__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-body, ui-sans-serif, system-ui, sans-serif);
  font-size: clamp(1rem, 0.8vw + 0.9rem, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer-subscribe__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.6;
}

.site-footer-subscribe__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
}

.site-footer-subscribe__input {
  width: 100%;
  min-height: 3.05rem;
  padding: 0 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  font-size: 0.92rem;
}

.site-footer-subscribe__input::placeholder {
  color: rgba(17, 17, 17, 0.58);
}

.site-footer-subscribe__button {
  display: inline-grid;
  place-items: center;
  width: 3.05rem;
  height: 3.05rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-bg-deep, #101815);
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.site-footer-subscribe__button:hover:not(:disabled) {
  background: #fff;
  transform: translateY(-1px);
}

.site-footer-subscribe__button-icon {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer-subscribe__input:disabled,
.site-footer-subscribe__button:disabled {
  cursor: not-allowed;
  opacity: 0.66;
}

.site-footer-subscribe__note {
  grid-column: 1 / -1;
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  line-height: 1.4;
}

.site-footer-subscribe__input:focus-visible,
.site-footer-subscribe__button:focus-visible {
  outline: 3px solid var(--color-focus, #005fcc);
  outline-offset: 3px;
}

@media (max-width: 800px) {
  .site-footer-subscribe__inner {
    grid-template-columns: 1fr;
  }

  .site-footer-subscribe__form {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .site-footer-subscribe__form {
    grid-template-columns: 1fr;
  }

  .site-footer-subscribe__button {
    width: 100%;
  }
}

/* =========================================================
   Who We Are / Trust Orientation — TICKET-LSP-LUX-037
   ========================================================= */

.lsp-who {
  background: var(--color-bg, #f7f2ea);
  padding: clamp(4.5rem, 9vw, 8rem) var(--gutter, 1.25rem);
}

.lsp-who__header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.lsp-who__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  margin: 0 0 1.25rem;
  padding: 0.32rem 0.85rem;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary, #7a5706);
}

.lsp-who__title {
  margin: 0;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(2.4rem, 5vw, 5.25rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--color-text, #111);
  text-wrap: balance;
}

.lsp-who__intro {
  margin: 0;
  max-width: 42rem;
  color: var(--color-text-muted, #5f5a52);
  font-size: clamp(1rem, 0.45vw + 0.9rem, 1.18rem);
  line-height: 1.75;
}

.lsp-who__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(0.9rem, 2vw, 1.25rem);
  align-items: stretch;
}

.lsp-who__panel,
.lsp-who__media {
  min-height: clamp(26rem, 34vw, 34rem);
  border-radius: clamp(1rem, 1.6vw, 1.5rem);
  overflow: hidden;
}

.lsp-who__panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.lsp-who__panel--dark {
  background:
    radial-gradient(circle at 80% 12%, rgba(184, 134, 11, 0.16), transparent 22%),
    linear-gradient(180deg, #3e403c 0%, #272925 100%);
  color: rgba(255, 255, 255, 0.9);
}

.lsp-who__panel--light {
  background: rgba(255, 253, 248, 0.78);
  color: var(--color-text, #111);
}

.lsp-who__label {
  margin: 0 0 auto;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary, #7a5706);
}

.lsp-who__panel--dark .lsp-who__label {
  color: rgba(255, 255, 255, 0.72);
}

.lsp-who__panel-title {
  margin: clamp(4rem, 8vw, 7rem) 0 1rem;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.85rem, 2.5vw, 3rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.lsp-who__panel p:not(.lsp-who__label) {
  margin: 0;
  font-size: clamp(0.95rem, 0.35vw + 0.86rem, 1.08rem);
  line-height: 1.68;
}

.lsp-who__panel--dark p:not(.lsp-who__label) {
  color: rgba(255, 255, 255, 0.78);
}

.lsp-who__panel--light p:not(.lsp-who__label) {
  color: var(--color-text-muted, #5f5a52);
}

.lsp-who__media {
  position: relative;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(184, 134, 11, 0.12), rgba(16, 24, 21, 0.08)),
    #d7c6ad;
}

.lsp-who__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lsp-who__media-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: clamp(26rem, 34vw, 34rem);
  color: rgba(17, 17, 17, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(184, 134, 11, 0.16)),
    linear-gradient(135deg, #cbb89d, #8e806e);
  padding: 2rem;
}

.lsp-who__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

@media (max-width: 1120px) {
  .lsp-who__header,
  .lsp-who__grid {
    grid-template-columns: 1fr;
  }

  .lsp-who__intro {
    max-width: 48rem;
  }

  .lsp-who__panel,
  .lsp-who__media {
    min-height: auto;
  }

  .lsp-who__media,
  .lsp-who__media-placeholder {
    min-height: 24rem;
  }

  .lsp-who__panel-title {
    margin-top: 4rem;
  }
}

@media (max-width: 640px) {
  .lsp-who {
    padding-block: 3.25rem;
  }

  .lsp-who__panel {
    padding: 1.35rem;
  }

  .lsp-who__media,
  .lsp-who__media-placeholder {
    min-height: 18rem;
  }

  .lsp-who__actions {
    flex-direction: column;
  }

  .lsp-who__actions .btn {
    width: 100%;
  }
}

/* =========================================================
   Why LSCP
   ========================================================= */

.lsp-why {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #343633, #20211f);
  color: rgba(255, 255, 255, 0.9);
  padding: clamp(4.5rem, 9vw, 8rem) var(--gutter, 1.25rem);
  isolation: isolate;
}

.lsp-why__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: grayscale(0.25) contrast(1.05);
}

.lsp-why__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 17, 16, 0.96) 0%, rgba(16, 17, 16, 0.78) 44%, rgba(16, 17, 16, 0.68) 100%),
    radial-gradient(circle at 20% 70%, rgba(184, 134, 11, 0.13), transparent 28%);
  pointer-events: none;
}

.lsp-why__inner {
  position: relative;
  z-index: 2;
}

.lsp-why__header {
  max-width: 48rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.lsp-why__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  margin: 0 0 1.25rem;
  padding: 0.32rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.lsp-why__title {
  margin: 0;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(2.5rem, 5.2vw, 5.8rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff;
  text-wrap: balance;
}

.lsp-why__intro {
  max-width: 44rem;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 0.38vw + 0.9rem, 1.14rem);
  line-height: 1.7;
}

.lsp-why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.6vw, 1rem);
}

.lsp-why-card {
  min-height: clamp(18rem, 24vw, 24rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: clamp(0.9rem, 1.3vw, 1.3rem);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(8px);
}

.lsp-why-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: auto;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lsp-why-card__title {
  margin: clamp(3.5rem, 8vw, 6rem) 0 0.85rem;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.35rem, 1.3vw + 1rem, 2.15rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
}

.lsp-why-card__body {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.65;
}

.lsp-why__actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.lsp-why .btn--primary {
  background: #fff;
  border-color: #fff;
  color: #111;
}

.lsp-why .btn--primary:hover {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.86);
  color: #111;
}

.lsp-why .btn--secondary {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.lsp-why .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

@media (max-width: 1120px) {
  .lsp-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .lsp-why {
    padding-block: 3.5rem;
  }

  .lsp-why__grid {
    grid-template-columns: 1fr;
  }

  .lsp-why-card {
    min-height: auto;
  }

  .lsp-why-card__title {
    margin-top: 3rem;
  }

  .lsp-why__actions {
    flex-direction: column;
  }

  .lsp-why__actions .btn {
    width: 100%;
  }
}


/* ==========================================================================
   15. LUXURY SPLIT MENU OVERLAY (LUX-044/045)
   ========================================================================== */

/* =========================================================
   Transparent Auto-Hide Header (LUX-060)
   ========================================================= */

.site-header--luxury {
  position: fixed;
  top: var(--wp-admin--admin-bar--height, 0px);
  left: 0;
  right: 0;
  z-index: 900;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  color: #fff;
  transform: translateY(0);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    color 180ms ease,
    opacity 180ms ease;
  pointer-events: none;
}

.site-header--luxury .site-header__inner {
  pointer-events: auto;
}

.site-header--luxury.is-hidden {
  transform: translateY(calc(-100% - var(--wp-admin--admin-bar--height, 0px)));
}

.site-header--luxury.is-menu-open,
.site-header--luxury:focus-within {
  transform: translateY(0);
  opacity: 1;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: clamp(4.25rem, 6vw, 5.25rem);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.site-header__logo {
  display: block;
  width: clamp(5.2rem, 7vw, 8rem);
  height: auto;
  opacity: 0.9;
}

/* Light-background logo (blacklogo.png) — hidden by default, shown on light sections */
.site-header__logo--dark-bg {
  display: none;
}

/* Dark section: show white leopard logo, hide black logo */
.site-header--luxury:not(.is-on-light) .site-header__logo--light-bg,
.site-header--luxury.is-on-dark .site-header__logo--light-bg {
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.site-header--luxury:not(.is-on-light) .site-header__logo--dark-bg,
.site-header--luxury.is-on-dark .site-header__logo--dark-bg {
  display: none;
}

/* Light section: hide white logo, show black logo */
.site-header--luxury.is-on-light .site-header__logo--light-bg {
  display: none;
}

.site-header--luxury.is-on-light .site-header__logo--dark-bg {
  display: block;
  filter: none;
  opacity: 0.92;
}

.site-header__brand-fallback {
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.2rem);
  color: currentColor;
  letter-spacing: -0.02em;
}

/*
 * Header contrast states — text/icon colour only.
 * Logo visibility is handled separately via .site-header__logo--light-bg
 * and .site-header__logo--dark-bg show/hide rules above.
 */
.site-header--luxury {
  transition: background-color 0.35s ease, border-color 0.35s ease, color 0.25s ease;
}

.site-header--luxury.is-on-dark {
  background-color: transparent;
  border-bottom-color: transparent;
  color: #fff;
}

.site-header--luxury.is-on-light {
  background-color: var(--color-surface);
  border-bottom-color: var(--color-border);
  color: var(--color-text, #111);
}

/* Dark-hero pages: transparent header before JS fires.
   :not(.is-on-light) prevents this from overriding the JS contrast state on scroll. */
.page-template-template-investment-strategy .site-header:not(.is-on-light),
.post-type-archive-lsp_leadership .site-header:not(.is-on-light),
.single-lsp_leadership .site-header:not(.is-on-light),
.post-type-archive-lsp_project .site-header:not(.is-on-light),
.page-template-template-investor-relations .site-header:not(.is-on-light) {
  background-color: transparent;
  border-bottom-color: transparent;
  color: #fff;
}

/* ── Menu open button ────────────────────────────────────────────────────── */

.site-header__menu-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 2.75rem;
  padding: 0 0.35rem 0 1rem;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.site-header__menu-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header__menu-icon {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.site-header__menu-icon::before,
.site-header__menu-icon::after {
  content: "";
  position: absolute;
  right: 0;
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.site-header__menu-icon::before {
  top: -0.45rem;
}

.site-header__menu-icon::after {
  top: 0.45rem;
}

.site-header__brand:focus-visible,
.site-header__menu-button:focus-visible {
  outline: 3px solid var(--color-focus, #005fcc);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .site-header__logo {
    width: clamp(4.8rem, 19vw, 6.25rem);
  }

  .site-header__menu-label {
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header--luxury {
    transition: none !important;
  }
}

/* =========================================================
   Homepage full-bleed hero top alignment (LUX-064)
   ========================================================= */

.home .site-main,
body.home main {
  padding-top: 0;
  margin-top: 0;
}

/* Hero top clearance — fixed header overlays, so hero needs top padding (LUX-060/064) */
.lsp-cinematic-hero {
  padding-top: max(clamp(6rem, 10vw, 8rem), 6rem);
  min-height: 100svh;
  margin-top: 0;
}

/* =========================================================
   Luxury Split Menu Overlay — refined LSCP palette (LUX-048)
   ========================================================= */

.lsp-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100vw;
  height: 100dvh;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  background: var(--color-bg-deep, #101815);
}

.lsp-menu-overlay.is-open {
  pointer-events: auto;
  visibility: visible;
}

.lsp-menu-overlay__panel {
  min-height: 100dvh;
  height: 100dvh;
  overflow: hidden;
}

.lsp-menu-overlay__panel--left {
  background: var(--color-bg, #f7f2ea);
  color: var(--color-text, #111111);
  transform: translateX(-100%);
}

.lsp-menu-overlay__panel--right {
  position: relative;
  background:
    radial-gradient(circle at 50% 28%, rgba(184, 134, 11, 0.12), transparent 34%),
    linear-gradient(135deg, var(--color-bg-deep, #101815), #1c120c);
  color: rgba(255, 255, 255, 0.86);
  transform: translateX(100%);
}

/* ── Left panel: nav list ────────────────────────────────────────────────── */

.lsp-menu-overlay__list {
  display: grid;
  grid-auto-rows: minmax(0, 1fr);
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: menu-item;
}

.lsp-menu-overlay__item {
  min-height: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.22);
  opacity: 0;
  transform: translateY(1.25rem);
}

.lsp-menu-overlay__item:last-child {
  border-bottom: 0;
}

.lsp-menu-overlay__item a {
  display: grid;
  min-width: 0;
  grid-template-columns: 3rem minmax(0, 1fr) 3rem;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  height: 100%;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  color: inherit;
  text-decoration: none;
}

.lsp-menu-overlay__number {
  align-self: start;
  padding-top: clamp(1rem, 1.8vh, 1.5rem);
  font-size: clamp(0.72rem, 0.35vw + 0.65rem, 0.95rem);
  color: rgba(17, 17, 17, 0.78);
}

.lsp-menu-overlay__label {
  display: block;
  min-width: 0;
  max-width: 100%;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.75rem, 9.3vw, 3rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.lsp-menu-overlay__dot {
  display: grid;
  place-items: center;
  width: clamp(2.25rem, 2.7vw, 3rem);
  height: clamp(2.25rem, 2.7vw, 3rem);
  border-radius: 999px;
  background: var(--color-primary, #7a5706);
  color: #fff;
}

.lsp-menu-overlay__dot svg {
  display: block;
  width: 52%;
  height: 52%;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Right panel: brand + contact/legal ──────────────────────────────────── */

.lsp-menu-overlay__close {
  position: absolute;
  top: clamp(1.25rem, 2.5vw, 2rem);
  right: clamp(1.25rem, 2.5vw, 2rem);
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--duration-fast, 150ms) var(--easing-standard);
}

.lsp-menu-overlay__close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lsp-menu-overlay__brand {
  display: grid;
  place-items: center;
  min-height: 38dvh;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 4rem) clamp(1.5rem, 3vw, 2.5rem);
  opacity: 0;
  transform: translateY(1.5rem);
}

.lsp-menu-overlay__logo {
  width: min(19rem, 52vw);
  height: auto;
  opacity: 0.9;
  filter: grayscale(0.08) contrast(1.04);
}

.lsp-menu-overlay__brand-text {
  margin: 0;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 0.9;
  color: #fff;
}

.lsp-menu-overlay__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  padding: 0 clamp(1.5rem, 6vw, 7rem) clamp(3rem, 6vw, 5rem);
}

.lsp-menu-overlay__detail {
  opacity: 0;
  transform: translateY(1.25rem);
}

.lsp-menu-overlay__detail h2 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.2rem, 1.2vw, 1.8rem);
  font-weight: 400;
  color: #fff;
}

.lsp-menu-overlay__detail a,
.lsp-menu-overlay__detail p {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.lsp-menu-overlay__detail a:hover {
  color: #fff;
}

.lsp-menu-overlay__detail address {
  display: grid;
  gap: 0.2rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.lsp-menu-overlay__detail address span {
  display: block;
}

.lsp-menu-overlay__social-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ── Focus states ────────────────────────────────────────────────────────── */

.site-header__menu-button:focus-visible,
.lsp-menu-overlay__close:focus-visible,
.lsp-menu-overlay__item a:focus-visible,
.lsp-menu-overlay__detail a:focus-visible {
  outline: 3px solid var(--color-focus, #005fcc);
  outline-offset: 4px;
}

/* ── Body scroll lock ────────────────────────────────────────────────────── */

body.lsp-menu-is-open {
  overflow: hidden;
}

/* =========================================================
   Split Menu Overlay — Mobile Compact Top/Bottom Layout
   ========================================================= */

@media (max-width: 900px) {
  .lsp-menu-overlay {
    display: block;
    width: 100vw;
    height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background: var(--color-bg-deep, #101815);
  }

  .lsp-menu-overlay__panel {
    min-height: 0;
    height: auto;
    overflow: visible;
  }

  .lsp-menu-overlay__panel--left {
    transform: translateY(-100%);
    background: var(--color-bg, #f7f2ea);
  }

  .lsp-menu-overlay__panel--right {
    display: block;
    transform: translateY(100%);
    background:
      radial-gradient(circle at 50% 12%, rgba(184, 134, 11, 0.12), transparent 34%),
      linear-gradient(135deg, var(--color-bg-deep, #101815), #1c120c);
  }

  .lsp-menu-overlay__list {
    display: block;
    height: auto;
  }

  .lsp-menu-overlay__item {
    min-height: 0;
  }

  .lsp-menu-overlay__item a {
    grid-template-columns: 2.15rem minmax(0, 1fr) 2.35rem;
    min-height: 4rem;
    padding: 0 1.05rem;
    gap: 0.85rem;
  }

  .lsp-menu-overlay__number {
    align-self: center;
    padding-top: 0;
    font-size: 0.68rem;
    color: rgba(17, 17, 17, 0.78);
  }

  .lsp-menu-overlay__label {
    font-size: clamp(1.75rem, 9.3vw, 3rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
  }

  .lsp-menu-overlay__dot {
    width: 2.15rem;
    height: 2.15rem;
  }

  .lsp-menu-overlay__brand {
    min-height: auto;
    justify-items: start;
    padding: 2.25rem 1.25rem 1.25rem;
    text-align: left;
  }

  .lsp-menu-overlay__logo {
    width: min(12rem, 56vw);
  }

  .lsp-menu-overlay__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1.5rem;
    padding: 0 1.25rem 2rem;
  }

  .lsp-menu-overlay__detail h2 {
    margin-bottom: 0.55rem;
    font-size: 1.15rem;
  }

  .lsp-menu-overlay__detail a,
  .lsp-menu-overlay__detail p,
  .lsp-menu-overlay__detail address {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .lsp-menu-overlay__close {
    position: sticky;
    left: auto;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    display: flex;
    width: fit-content;
    margin: 1rem 1rem 1rem auto;
  }
}

@media (max-width: 560px) {
  .lsp-menu-overlay__item a {
    grid-template-columns: 2rem minmax(0, 1fr) 2.2rem;
    min-height: 3.75rem;
    padding-inline: 0.95rem;
  }

  .lsp-menu-overlay__label {
    font-size: clamp(1.85rem, 10.5vw, 3rem);
  }

  .lsp-menu-overlay__dot {
    width: 2rem;
    height: 2rem;
  }

  .lsp-menu-overlay__details {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .lsp-menu-overlay__brand {
    padding-top: 1.8rem;
  }

  .lsp-menu-overlay__logo {
    width: min(11rem, 62vw);
  }
}

@media (max-width: 420px) {
  .lsp-menu-overlay__item a {
    min-height: 3.7rem;
  }

  .lsp-menu-overlay__label {
    font-size: clamp(1.55rem, 9.8vw, 2.55rem);
  }

  .lsp-menu-overlay__details {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Split Menu Overlay — Desktop 8-item density fix (LUX-058)
   ========================================================= */

@media (min-width: 901px) {
  .lsp-menu-overlay {
    height: 100dvh;
    overflow: hidden;
  }

  .lsp-menu-overlay__panel {
    height: 100dvh;
    min-height: 100dvh;
    overflow: hidden;
  }

  .lsp-menu-overlay__panel--left {
    display: flex;
    flex-direction: column;
  }

  .lsp-menu-overlay__nav {
    flex: 1;
    min-height: 0;
  }

  .lsp-menu-overlay__list {
    display: grid;
    grid-template-rows: repeat(8, minmax(5.8rem, 1fr));
    height: 100%;
    min-height: 0;
  }

  .lsp-menu-overlay__item {
    min-height: 0;
  }

  .lsp-menu-overlay__item a {
    grid-template-columns: 2.7rem minmax(0, 1fr) 2.55rem;
    align-items: center;
    min-height: 5.8rem;
    height: 100%;
    padding-block: 0.45rem;
    padding-inline: clamp(1rem, 2.8vw, 2.5rem);
    gap: clamp(0.7rem, 1.5vw, 1.15rem);
  }

  .lsp-menu-overlay__number {
    align-self: start;
    padding-top: 0.85rem;
    font-size: clamp(0.66rem, 0.28vw + 0.6rem, 0.78rem);
  }

  .lsp-menu-overlay__label {
    font-size: clamp(2rem, 3.75vw, 4.15rem);
    line-height: 0.9;
    letter-spacing: -0.045em;
  }

  .lsp-menu-overlay__dot {
    width: clamp(2rem, 2.15vw, 2.35rem);
    height: clamp(2rem, 2.15vw, 2.35rem);
  }

  .lsp-menu-overlay__dot svg {
    width: 50%;
    height: 50%;
  }
}

@media (min-width: 901px) and (max-height: 780px) {
  .lsp-menu-overlay__panel--left {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lsp-menu-overlay__list {
    display: block;
    height: auto;
  }

  .lsp-menu-overlay__item a {
    min-height: 5.25rem;
    height: auto;
  }

  .lsp-menu-overlay__label {
    font-size: clamp(1.85rem, 3.3vw, 3.55rem);
    line-height: 0.92;
  }
}

/* ── Split menu location/time panel (LUX-062) ───────────────────────────── */

.lsp-menu-overlay__detail--time {
  padding-top: clamp(0.5rem, 1vw, 1rem);
}

.lsp-menu-overlay__location,
.lsp-menu-overlay__date,
.lsp-menu-overlay__time {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.lsp-menu-overlay__location {
  font-size: clamp(1.15rem, 1vw + 0.95rem, 1.65rem);
  font-weight: 700;
  line-height: 1.35;
}

.lsp-menu-overlay__date {
  margin-top: 1.15rem;
  font-size: clamp(1rem, 0.65vw + 0.9rem, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
}

.lsp-menu-overlay__time {
  margin-top: 1.15rem;
  font-size: clamp(1.05rem, 0.8vw + 0.95rem, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .lsp-menu-overlay__detail--time {
    grid-column: 1 / -1;
    padding-top: 0;
  }

  .lsp-menu-overlay__location,
  .lsp-menu-overlay__date,
  .lsp-menu-overlay__time {
    font-size: 0.95rem;
  }
}

/* ── Split menu interaction states (LUX-053) ─────────────────────────────── */

.lsp-menu-overlay__item a {
  position: relative;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.lsp-menu-overlay__item a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(122, 87, 6, 0.08);
  opacity: 0;
  transition: opacity 180ms ease;
}

.lsp-menu-overlay__item a:hover::before,
.lsp-menu-overlay__item a:focus-visible::before,
.lsp-menu-overlay__item.is-current a::before {
  opacity: 1;
}

.lsp-menu-overlay__label,
.lsp-menu-overlay__dot,
.lsp-menu-overlay__dot svg {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.lsp-menu-overlay__item a:hover .lsp-menu-overlay__label,
.lsp-menu-overlay__item a:focus-visible .lsp-menu-overlay__label {
  transform: translateX(0.35rem);
}

.lsp-menu-overlay__item a:hover .lsp-menu-overlay__dot,
.lsp-menu-overlay__item a:focus-visible .lsp-menu-overlay__dot,
.lsp-menu-overlay__item.is-current .lsp-menu-overlay__dot {
  background: var(--color-bg-deep, #101815);
  color: #fff;
}

.lsp-menu-overlay__item.is-current .lsp-menu-overlay__label {
  text-decoration: underline;
  text-decoration-thickness: 0.04em;
  text-underline-offset: 0.14em;
}

.lsp-menu-overlay__item a:active .lsp-menu-overlay__label {
  transform: translateX(0.2rem) scale(0.995);
}

/* ── Reduced motion: skip panel/item transforms ──────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .lsp-menu-overlay__panel,
  .lsp-menu-overlay__item,
  .lsp-menu-overlay__brand,
  .lsp-menu-overlay__detail {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .lsp-menu-overlay__item a,
  .lsp-menu-overlay__item a::before,
  .lsp-menu-overlay__label,
  .lsp-menu-overlay__dot,
  .lsp-menu-overlay__dot svg {
    transition: none !important;
    transform: none !important;
  }
}

/* =========================================================
   Investor Eligibility Modal
   ========================================================= */

.lsp-investor-gate[hidden] {
	display: none;
}

.lsp-investor-gate {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: grid;
	place-items: center;
	padding: 1.25rem;
	overflow-y: auto;
}

.lsp-investor-gate__backdrop {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 50% 40%, rgba(184, 134, 11, 0.12), transparent 34%),
		rgba(5, 7, 6, 0.82);
	backdrop-filter: blur(12px);
}

.lsp-investor-gate__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 42rem);
	background: var(--color-surface, #fffdf8);
	color: var(--color-text, #111);
	border-radius: clamp(1rem, 1.8vw, 1.5rem);
	box-shadow: 0 2rem 7rem rgba(0, 0, 0, 0.42);
	padding: clamp(1.5rem, 4vw, 3rem);
}

.lsp-investor-gate__close {
	position: absolute;
	top: 0.9rem;
	right: 0.9rem;
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	border: 1px solid rgba(17, 17, 17, 0.18);
	border-radius: 999px;
	background: transparent;
	color: var(--color-text, #111);
	cursor: pointer;
}

.lsp-investor-gate__eyebrow {
	display: inline-flex;
	align-items: center;
	min-height: 1.6rem;
	margin: 0 0 1rem;
	padding: 0.3rem 0.75rem;
	border: 1px solid rgba(17, 17, 17, 0.16);
	border-radius: 999px;
	color: var(--color-primary, #7a5706);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.lsp-investor-gate__title {
	margin: 0;
	font-family: var(--font-display, Georgia, "Times New Roman", serif);
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -0.035em;
	color: var(--color-text, #111);
}

.lsp-investor-gate__description {
	margin: 1rem 0 1.25rem;
	color: var(--color-text-muted, #5f5a52);
	font-size: 1rem;
	line-height: 1.7;
}

.lsp-investor-gate__notice {
	margin: 1.25rem 0;
	padding: 1rem;
	border-left: 3px solid var(--color-primary, #7a5706);
	background: rgba(122, 87, 6, 0.08);
	color: var(--color-text, #111);
}

.lsp-investor-gate__notice p {
	margin: 0;
	line-height: 1.6;
}

.lsp-investor-gate__fieldset {
	display: grid;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	border: 0;
}

.lsp-investor-gate__fieldset legend {
	margin-bottom: 0.45rem;
	font-weight: 700;
}

.lsp-investor-gate__option {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.75rem;
	align-items: start;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(17, 17, 17, 0.14);
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.68);
	cursor: pointer;
}

.lsp-investor-gate__option:hover {
	background: #fff;
}

.lsp-investor-gate__option input {
	margin-top: 0.2rem;
}

.lsp-investor-gate__error {
	margin: 0.9rem 0 0;
	color: #8a1f11;
	font-weight: 700;
}

.lsp-investor-gate__actions {
	margin-top: 1.25rem;
}

.lsp-investor-gate__actions .btn {
	width: 100%;
}

.lsp-investor-gate__smallprint {
	margin: 1rem 0 0;
	color: var(--color-text-muted, #5f5a52);
	font-size: 0.82rem;
	line-height: 1.55;
}

body.lsp-investor-gate-is-open {
	overflow: hidden;
}

.lsp-investor-gate__close:focus-visible,
.lsp-investor-gate__option:focus-within,
.lsp-investor-gate__actions .btn:focus-visible {
	outline: 3px solid var(--color-focus, #005fcc);
	outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
	.lsp-investor-gate,
	.lsp-investor-gate__dialog,
	.lsp-investor-gate__backdrop,
	.lsp-investor-gate__option,
	.lsp-investor-gate__actions .btn {
		transition: none !important;
		animation: none !important;
	}
}



/* ========================================================================== 
   Investor Relations — luxury private-access visual system
   TICKET-LSP-INVESTORS-009
   ========================================================================== */

.page-template-template-investor-relations {
  --ir-surface: #fffdf8;
  --ir-surface-ivory: #f7f2ea;
  --ir-surface-warm: #f3ede3;
  --ir-surface-deep: #101815;
  --ir-surface-deep-2: #151d1a;
  --ir-text: #111111;
  --ir-muted: #6f665b;
  --ir-muted-dark: rgba(255, 253, 248, 0.76);
  --ir-gold: #7a5706;
  --ir-border: rgba(17, 17, 17, 0.12);
  --ir-border-warm: rgba(122, 87, 6, 0.24);
  --ir-border-light: rgba(255, 253, 248, 0.18);
  --ir-section-y: clamp(4.25rem, 9vw, 8.5rem);
  background: var(--ir-surface);
}

.page-template-template-investor-relations .site-main {
  background: var(--ir-surface);
}

.page-template-template-investor-relations .section-heading,
.page-template-template-investor-relations .investor-private-rationale__title,
.page-template-template-investor-relations .investor-access-card__title,
.page-template-template-investor-relations .investor-public-info__title,
.page-template-template-investor-relations .investor-review-materials__title,
.page-template-template-investor-relations .investor-request-process__title,
.page-template-template-investor-relations .investor-important-info__title,
.page-template-template-investor-relations .investor-access-request__title,
.page-template-template-investor-relations .investor-faq__title {
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.page-template-template-investor-relations .investor-hero {
  min-height: clamp(34rem, 74vh, 48rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 82% 8%, rgba(194, 151, 68, 0.24), transparent 36%),
    linear-gradient(135deg, rgba(12, 18, 23, 0.86) 0%, rgba(17, 27, 32, 0.78) 52%, rgba(34, 27, 16, 0.74) 100%),
    url('../images/privateinvestor.jpg') center / cover no-repeat;
  border-bottom: 1px solid var(--ir-border-light);
}

.page-template-template-investor-relations .investor-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 253, 248, 0.035) 1px, transparent 1px);
  background-size: 5.5rem 5.5rem;
  opacity: 0.55;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.68) 44%, transparent 100%);
}

.page-template-template-investor-relations .investor-hero__inner {
  max-width: 62rem;
  padding-block: clamp(5rem, 12vw, 9rem) clamp(3rem, 6vw, 5rem);
}

.page-template-template-investor-relations .investor-hero__eyebrow,
.page-template-template-investor-relations .investor-private-rationale__eyebrow,
.page-template-template-investor-relations .investor-access-card__eyebrow,
.page-template-template-investor-relations .investor-public-info__eyebrow,
.page-template-template-investor-relations .investor-review-materials__eyebrow,
.page-template-template-investor-relations .investor-request-process__eyebrow,
.page-template-template-investor-relations .investor-important-info__eyebrow,
.page-template-template-investor-relations .investor-access-request__eyebrow,
.page-template-template-investor-relations .investor-faq__eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-template-template-investor-relations .investor-hero__eyebrow {
  color: rgba(255, 253, 248, 0.72);
}

.page-template-template-investor-relations .investor-hero__title {
  max-width: 13ch;
  font-size: clamp(3rem, 8vw, 6.25rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.page-template-template-investor-relations .investor-hero__intro {
  max-width: 42rem;
  font-size: clamp(1.05rem, 1vw + 0.95rem, 1.35rem);
  line-height: 1.72;
  color: rgba(255, 253, 248, 0.82);
}

.page-template-template-investor-relations .investor-hero__actions .btn,
.page-template-template-investor-relations .investor-access-request__action-card .btn,
.page-template-template-investor-relations .ir-enquiry-form .btn {
  border-radius: 2px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.page-template-template-investor-relations .investor-hero__actions .btn--secondary {
  border-color: rgba(255, 253, 248, 0.46);
  color: var(--ir-surface);
}

.page-template-template-investor-relations .investor-hero__trust-strip {
  background: var(--ir-surface-ivory);
  border-top: 1px solid var(--ir-border-light);
}

.page-template-template-investor-relations .investor-hero__trust-list {
  padding-block: clamp(1.15rem, 2.5vw, 1.75rem);
}

.page-template-template-investor-relations .investor-hero__trust-item {
  color: var(--ir-text);
  border-right-color: var(--ir-border-warm);
  font-size: 0.875rem;
}

.page-template-template-investor-relations .investor-hero__trust-item::before,
.page-template-template-investor-relations .investor-access-card__list li::before,
.page-template-template-investor-relations .investor-review-materials__list li::before {
  background: var(--ir-gold);
  box-shadow: none;
}

.page-template-template-investor-relations .investor-private-rationale,
.page-template-template-investor-relations .investor-public-info,
.page-template-template-investor-relations .investor-request-process,
.page-template-template-investor-relations .investor-important-info,
.page-template-template-investor-relations .investor-faq,
.page-template-template-investor-relations .ir-process,
.page-template-template-investor-relations .ir-exclusions,
.page-template-template-investor-relations .ir-suitability,
.page-template-template-investor-relations .ir-enquiry-form {
  padding-block: var(--ir-section-y);
}

.page-template-template-investor-relations .investor-private-rationale,
.page-template-template-investor-relations .investor-request-process,
.page-template-template-investor-relations .ir-exclusions {
  background: var(--ir-surface-ivory);
}

.page-template-template-investor-relations .investor-access-criteria,
.page-template-template-investor-relations .investor-important-info,
.page-template-template-investor-relations .ir-process,
.page-template-template-investor-relations .ir-suitability {
  background: var(--ir-surface-warm);
}

.page-template-template-investor-relations .investor-access-criteria,
.page-template-template-investor-relations .investor-public-info,
.page-template-template-investor-relations .investor-review-materials,
.page-template-template-investor-relations .investor-request-process,
.page-template-template-investor-relations .investor-important-info,
.page-template-template-investor-relations .investor-access-request,
.page-template-template-investor-relations .investor-faq,
.page-template-template-investor-relations .ir-enquiry-form {
  border-bottom: 1px solid var(--ir-border-warm);
}

.page-template-template-investor-relations .investor-private-rationale__heading::before {
  width: 5rem;
  background: var(--ir-gold);
}

.page-template-template-investor-relations .investor-private-rationale__title,
.page-template-template-investor-relations .investor-public-info__title,
.page-template-template-investor-relations .investor-request-process__title,
.page-template-template-investor-relations .investor-faq__title {
  font-size: clamp(2rem, 4vw, 3.75rem);
}

.page-template-template-investor-relations .investor-private-rationale__body,
.page-template-template-investor-relations .investor-access-card,
.page-template-template-investor-relations .investor-public-info-card,
.page-template-template-investor-relations .investor-request-process__step,
.page-template-template-investor-relations .investor-faq__item {
  border-radius: 0;
  border-color: var(--ir-border-warm);
  box-shadow: none;
  background: var(--ir-surface);
}

.page-template-template-investor-relations .investor-private-rationale__body,
.page-template-template-investor-relations .investor-access-card,
.page-template-template-investor-relations .investor-public-info-card,
.page-template-template-investor-relations .investor-request-process__step,
.page-template-template-investor-relations .investor-faq__item,
.page-template-template-investor-relations .investor-important-info__panel {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.page-template-template-investor-relations .investor-access-card__title,
.page-template-template-investor-relations .investor-public-info-card__title,
.page-template-template-investor-relations .investor-request-process__step-title,
.page-template-template-investor-relations .investor-faq__question {
  font-size: clamp(1.35rem, 1.3vw + 1rem, 1.85rem);
}

.page-template-template-investor-relations .investor-access-note,
.page-template-template-investor-relations .investor-review-materials,
.page-template-template-investor-relations .investor-access-request {
  background: var(--ir-surface-deep);
  color: var(--ir-surface);
}

.page-template-template-investor-relations .investor-access-note {
  border-radius: 0;
  border-color: var(--ir-border-light);
  box-shadow: none;
}

.page-template-template-investor-relations .investor-access-note__review,
.page-template-template-investor-relations .investor-review-materials__note,
.page-template-template-investor-relations .investor-access-request__microcopy {
  border-top-color: var(--ir-border-warm);
}

.page-template-template-investor-relations .investor-review-materials__panel,
.page-template-template-investor-relations .investor-access-request__action-card {
  border-radius: 0;
  background: var(--ir-surface);
  border-color: var(--ir-border-light);
  box-shadow: none;
}

.page-template-template-investor-relations .investor-review-materials__title,
.page-template-template-investor-relations .investor-access-request__title,
.page-template-template-investor-relations .investor-access-note__title {
  color: var(--ir-surface);
}

.page-template-template-investor-relations .investor-review-materials__intro,
.page-template-template-investor-relations .investor-access-request__body,
.page-template-template-investor-relations .investor-access-note p {
  color: var(--ir-muted-dark);
}

.page-template-template-investor-relations .investor-important-info__panel {
  border-radius: 0;
  border-color: var(--ir-border-warm);
  border-left: 4px solid var(--ir-gold);
  background: var(--ir-surface);
  box-shadow: none;
}

.page-template-template-investor-relations .investor-important-info__copy p,
.page-template-template-investor-relations .investor-private-rationale__body p,
.page-template-template-investor-relations .investor-public-info__intro,
.page-template-template-investor-relations .investor-public-info-card__body,
.page-template-template-investor-relations .investor-request-process__step-body,
.page-template-template-investor-relations .investor-faq__answer,
.page-template-template-investor-relations .ir-process p,
.page-template-template-investor-relations .ir-exclusions p,
.page-template-template-investor-relations .ir-suitability p {
  color: var(--ir-muted);
  line-height: 1.78;
}

.page-template-template-investor-relations .investor-public-info-card,
.page-template-template-investor-relations .investor-faq__item,
.page-template-template-investor-relations .investor-request-process__step {
  transition: border-color 180ms ease, background-color 180ms ease;
}

.page-template-template-investor-relations .investor-public-info-card:hover,
.page-template-template-investor-relations .investor-faq__item:hover,
.page-template-template-investor-relations .investor-request-process__step:hover {
  border-color: rgba(122, 87, 6, 0.45);
}

.page-template-template-investor-relations .ir-process,
.page-template-template-investor-relations .ir-exclusions,
.page-template-template-investor-relations .ir-suitability {
  border-bottom: 1px solid var(--ir-border-warm);
}

.page-template-template-investor-relations .ir-process .lsp-container,
.page-template-template-investor-relations .ir-exclusions .lsp-container,
.page-template-template-investor-relations .ir-suitability .lsp-container {
  max-width: 800px;
}

.page-template-template-investor-relations .ir-process .section-heading,
.page-template-template-investor-relations .ir-exclusions .section-heading,
.page-template-template-investor-relations .ir-suitability .section-heading {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  margin-bottom: var(--space-4);
}

.page-template-template-investor-relations .ir-process .btn--secondary {
  margin-top: var(--space-4);
  border-radius: 2px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-template-template-investor-relations .ir-enquiry-form {
  background: var(--ir-surface-ivory);
}

.page-template-template-investor-relations .ir-enquiry-form > .lsp-container {
  max-width: 980px;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--ir-surface);
  border: 1px solid var(--ir-border-warm);
}

.page-template-template-investor-relations .ir-enquiry-form .enquiry-form-section__header {
  max-width: 700px;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.page-template-template-investor-relations .ir-enquiry-form .section-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.page-template-template-investor-relations .ir-enquiry-form .enquiry-form-section__intro {
  color: var(--ir-muted);
  line-height: 1.75;
}

.page-template-template-investor-relations .ir-enquiry-form .enquiry-form__fieldset {
  border-color: var(--ir-border-warm);
  border-radius: 0;
  padding: clamp(1.25rem, 3vw, 2rem) 0 0;
  border-width: 1px 0 0;
}

.page-template-template-investor-relations .ir-enquiry-form .enquiry-form__fieldset-legend,
.page-template-template-investor-relations .ir-enquiry-form .form-label {
  color: var(--ir-muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-template-template-investor-relations .ir-enquiry-form .form-input,
.page-template-template-investor-relations .ir-enquiry-form .form-select,
.page-template-template-investor-relations .ir-enquiry-form .form-textarea {
  border-width: 0 0 1px;
  border-radius: 0;
  border-color: var(--ir-border);
  background: transparent;
  padding-inline: 0;
  color: var(--ir-text);
}

.page-template-template-investor-relations .ir-enquiry-form .form-input:focus,
.page-template-template-investor-relations .ir-enquiry-form .form-select:focus,
.page-template-template-investor-relations .ir-enquiry-form .form-textarea:focus {
  border-bottom-color: var(--ir-gold);
}

.page-template-template-investor-relations .ir-enquiry-form .enquiry-form__reassurance {
  border-color: var(--ir-border-warm);
  background: var(--ir-surface-ivory);
}

.page-template-template-investor-relations .ir-enquiry-form .enquiry-form__actions {
  display: flex;
  justify-content: flex-end;
}

.page-template-template-investor-relations .ir-enquiry-form .enquiry-form__actions .btn--primary {
  min-width: 15rem;
}

@media (max-width: 960px) {
  .page-template-template-investor-relations .investor-hero {
    min-height: auto;
  }

  .page-template-template-investor-relations .investor-hero__inner {
    padding-block: clamp(4rem, 18vw, 7rem) clamp(2.5rem, 10vw, 4rem);
  }

  .page-template-template-investor-relations .investor-private-rationale__grid,
  .page-template-template-investor-relations .investor-access-criteria__grid,
  .page-template-template-investor-relations .investor-review-materials__grid,
  .page-template-template-investor-relations .investor-access-request__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-template-template-investor-relations {
    --ir-section-y: clamp(3rem, 12vw, 4.5rem);
  }

  .page-template-template-investor-relations .investor-hero__title {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .page-template-template-investor-relations .investor-public-info__grid,
  .page-template-template-investor-relations .investor-request-process__steps,
  .page-template-template-investor-relations .investor-faq__grid,
  .page-template-template-investor-relations .ir-enquiry-form .enquiry-form__grid {
    grid-template-columns: 1fr;
  }

  .page-template-template-investor-relations .ir-enquiry-form > .lsp-container {
    padding: var(--space-6) var(--space-4);
  }

  .page-template-template-investor-relations .ir-enquiry-form .enquiry-form__actions,
  .page-template-template-investor-relations .ir-enquiry-form .enquiry-form__actions .btn--primary {
    width: 100%;
  }
}

/* =========================================================
   Approved Platform Signals
   ========================================================= */

.lsp-platform-signals {
	background: var(--color-bg, #f7f2ea);
	padding: clamp(4.5rem, 9vw, 8rem) var(--gutter, 1.25rem);
}

.lsp-platform-signals__header {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 1fr);
	gap: clamp(2rem, 6vw, 5rem);
	align-items: end;
	margin-bottom: clamp(2rem, 5vw, 4rem);
}

.lsp-platform-signals__title {
	margin: 0;
	font-family: var(--font-display, Georgia, "Times New Roman", serif);
	font-size: clamp(2.4rem, 4.8vw, 5rem);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -0.04em;
	color: var(--color-text, #111);
	text-wrap: balance;
}

.lsp-platform-signals__intro {
	margin: 0;
	max-width: 42rem;
	color: var(--color-text-muted, #5f5a52);
	font-size: clamp(1rem, 0.4vw + 0.9rem, 1.16rem);
	line-height: 1.75;
}

.lsp-platform-signals__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
	background:
		linear-gradient(135deg, rgba(255, 253, 248, 0.88), rgba(239, 231, 218, 0.72));
	border: 1px solid rgba(17, 17, 17, 0.08);
	border-radius: clamp(0.9rem, 1.5vw, 1.4rem);
	overflow: hidden;
	box-shadow: 0 1.5rem 4rem rgba(17, 17, 17, 0.06);
}

.lsp-platform-signals__item {
	min-height: 9.25rem;
	padding: clamp(1.25rem, 3vw, 2rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	border-right: 1px solid var(--color-border, rgba(17,17,17,.14));
}

.lsp-platform-signals__item:last-child {
	border-right: 0;
}

.lsp-platform-signals__value {
	margin: 0;
	font-family: var(--font-display, Georgia, "Times New Roman", serif);
	font-size: clamp(2.2rem, 3.4vw, 3.8rem);
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.045em;
	color: var(--color-text, #111);
}

.lsp-platform-signals__label {
	margin: 0.85rem 0 0;
	color: var(--color-text-muted, #5f5a52);
	font-size: 0.86rem;
	font-weight: 600;
	line-height: 1.45;
	letter-spacing: 0.03em;
}

@media (max-width: 960px) {
	.lsp-platform-signals__header {
		grid-template-columns: 1fr;
	}

	.lsp-platform-signals__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lsp-platform-signals__item:nth-child(2n) {
		border-right: 0;
	}

	.lsp-platform-signals__item:nth-child(-n + 2) {
		border-bottom: 1px solid var(--color-border, rgba(17,17,17,.14));
	}
}

@media (max-width: 560px) {
	.lsp-platform-signals__list {
		grid-template-columns: 1fr;
	}

	.lsp-platform-signals__item,
	.lsp-platform-signals__item:nth-child(2n),
	.lsp-platform-signals__item:nth-child(-n + 2) {
		border-right: 0;
		border-bottom: 1px solid var(--color-border, rgba(17,17,17,.14));
	}

	.lsp-platform-signals__item:last-child {
		border-bottom: 0;
	}
}

/* Count-up stability — TICKET-LSP-LUX-072 */
.lsp-platform-signals__value[data-lsp-count-up] {
	display: inline-block;
	min-width: 5.25ch;
	font-variant-numeric: tabular-nums;
}


/* ==========================================================================
   Leadership cards — portrait image + preview button
   TICKET-LSP-LEAD-009 / TICKET-LSP-LEAD-011
   ========================================================================== */

/* Portrait aspect ratio for leadership headshots */
.card__image--portrait {
	aspect-ratio: 3 / 4;
}

/* Ensure the preview button sits above the card's stretch-link pseudo-element */
.card__preview-btn {
	position: relative;
	z-index: 1;
}


/* ==========================================================================
   Leadership preview modal
   TICKET-LSP-LEAD-011
   ========================================================================== */

.leadership-modal {
	margin: auto;
	padding: 0;
	width: min(100% - 2rem, 56rem);
	max-height: min(90dvh, 44rem);
	border: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.20));
	border-radius: var(--radius-lg, 0.5rem);
	background: var(--color-surface, #fffdf8);
	box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.28);
	overflow: hidden;
}

.leadership-modal::backdrop {
	background: rgba(10, 14, 12, 0.72);
	backdrop-filter: blur(4px);
}

.leadership-modal__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	max-height: min(90dvh, 44rem);
	overflow-y: auto;
}

.leadership-modal__close {
	position: absolute;
	top: var(--space-4, 1rem);
	right: var(--space-4, 1rem);
	z-index: 2;
	display: grid;
	place-items: center;
	width: 2.25rem;
	height: 2.25rem;
	border: 1px solid var(--color-border, rgba(17, 17, 17, 0.14));
	border-radius: 9999px;
	background: var(--color-surface, #fffdf8);
	color: var(--color-text, #111);
	cursor: pointer;
	transition: background var(--duration-fast, 150ms) ease,
	            border-color var(--duration-fast, 150ms) ease;
}

.leadership-modal__close:hover {
	background: var(--color-surface-muted, #efe7da);
	border-color: var(--color-border-warm, rgba(138, 97, 8, 0.20));
}

.leadership-modal__close:focus-visible {
	outline: 3px solid var(--color-focus, #005fcc);
	outline-offset: 2px;
}

.leadership-modal__layout {
	display: flex;
	flex-direction: column;
}

@media (min-width: 640px) {
	.leadership-modal__layout {
		flex-direction: row;
	}
}

.leadership-modal__portrait {
	flex-shrink: 0;
	width: 100%;
	max-height: 18rem;
	overflow: hidden;
}

@media (min-width: 640px) {
	.leadership-modal__portrait {
		width: 13rem;
		max-height: none;
	}
}

.leadership-modal__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.leadership-modal__content {
	padding: var(--space-8, 2rem) var(--space-8, 2rem) var(--space-8, 2rem);
	display: flex;
	flex-direction: column;
	gap: var(--space-3, 0.75rem);
}

.leadership-modal__name {
	margin: 0;
	font-family: var(--font-display, Georgia, serif);
	font-size: var(--text-xl, 1.625rem);
	font-weight: var(--weight-normal, 400);
	line-height: var(--leading-tight, 1.2);
	color: var(--color-text, #111);
}

.leadership-modal__role {
	margin: 0;
	font-size: var(--text-sm, 0.875rem);
	font-weight: var(--weight-medium, 500);
	color: var(--color-primary, #7a5706);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.leadership-modal__bio {
	margin: 0;
	font-size: var(--text-sm, 0.875rem);
	line-height: var(--leading-normal, 1.65);
	color: var(--color-text-muted, #5f5a52);
}

.leadership-modal__social {
	display: flex;
	gap: var(--space-3, 0.75rem);
	list-style: none;
	margin: var(--space-2, 0.5rem) 0 0;
	padding: 0;
}

.leadership-modal__social-link {
	display: grid;
	place-items: center;
	width: 2.25rem;
	height: 2.25rem;
	border: 1px solid var(--color-border, rgba(17, 17, 17, 0.14));
	border-radius: 9999px;
	color: var(--color-text-muted, #5f5a52);
	text-decoration: none;
	transition: color var(--duration-fast, 150ms) ease,
	            border-color var(--duration-fast, 150ms) ease,
	            background var(--duration-fast, 150ms) ease;
}

.leadership-modal__social-link:hover {
	color: var(--color-primary, #7a5706);
	border-color: var(--color-border-warm, rgba(138, 97, 8, 0.20));
	background: rgba(122, 87, 6, 0.06);
}

.leadership-modal__social-link:focus-visible {
	outline: 3px solid var(--color-focus, #005fcc);
	outline-offset: 2px;
}

.leadership-modal__actions {
	margin-top: auto;
	padding-top: var(--space-4, 1rem);
}


/* ==========================================================================
   Leadership profile page — social link list
   TICKET-LSP-LEAD-010 / TICKET-LSP-LEAD-012
   ========================================================================== */

.entry__profile-links {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-3, 0.75rem);
	list-style: none;
	margin: 0 0 var(--space-6, 1.5rem);
	padding: 0;
}

.entry__profile-link--social {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2, 0.5rem);
	padding: var(--space-2, 0.5rem) var(--space-4, 1rem);
	border: 1px solid var(--color-border-warm, rgba(138, 97, 8, 0.20));
	border-radius: var(--radius-full, 9999px);
	font-size: var(--text-sm, 0.875rem);
	font-weight: var(--weight-medium, 500);
	color: var(--color-primary, #7a5706);
	text-decoration: none;
	transition: background var(--duration-fast, 150ms) ease,
	            border-color var(--duration-fast, 150ms) ease;
}

.entry__profile-link--social:hover {
	background: rgba(122, 87, 6, 0.06);
	border-color: var(--color-primary, #7a5706);
	color: var(--color-primary-hover, #5f4305);
}

.entry__profile-link--social:focus-visible {
	outline: 3px solid var(--color-focus, #005fcc);
	outline-offset: 2px;
}

.entry__profile-link--social svg {
	flex-shrink: 0;
}
