/*
 * ═══════════════════════════════════════════════════════════════════════════
 *  Domus Invest — PRODUCTION DESIGN SYSTEM v2
 *  domus-system-v2.css
 *
 *  RULES: Zero raw hex values · Single typography scale · Spacing tokens only
 *         Four button types · Reusable components only · No inline styles
 *
 *  1.  Design Tokens
 *  2.  Reset & Base
 *  3.  Layout System         (.container · .section · .grid-2/3/4)
 *  4.  Typography System     (.heading-xl/lg/md/sm · .text-body/small · .label)
 *  5.  Utility Classes       (.text-white · .text-center · .rule-under · .img-fill)
 *  6.  Button System         (.btn-primary · .btn-secondary · .btn-outline · .btn-text · .btn-sm)
 *  7.  Component: Hero
 *  8.  Component: Stats Strip
 *  9.  Component: Section Header
 * 10.  Component: Card System (base + feature / step / model / media / pillar / person)
 * 11.  Component: Split Section
 * 12.  Component: CTA Band
 * 13.  Component: Specs Table
 * 14.  Component: FAQ
 * 15.  Component: Video Feature
 * 16.  Component: Pricing Note
 * 17.  Component: Callout Block
 * 18.  Component: Testimonial
 * 19.  Component: Footer
 * 20.  Responsive
 * ═══════════════════════════════════════════════════════════════════════════
 */


/* ═══════════════════════════════════════════════════════════════════════════
   1. DESIGN TOKENS
   Single source of truth. No hex values anywhere else in this file.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* ── Palette ──────────────────────────────────────────────────────── */
  --navy:        #0D1F3C;
  --navy-mid:    #1A3456;
  --gold:        #B8974A;
  --gold-light:  #D4AF6A;
  --gold-dark:   #9A7A38;     /* hover state for gold buttons */
  --eco:         #4A6741;     /* Eco Villas brand accent */
  --eco-light:   #EDF2EC;     /* Eco section background tint */
  --offwhite:    #F7F5F1;
  --white:       #FFFFFF;

  /* ── Text ─────────────────────────────────────────────────────────── */
  --text-dark:   #1A1A1A;
  --text-mid:    #4A4A4A;
  --text-light:  #8A8A8A;

  /* ── Structure ────────────────────────────────────────────────────── */
  --border:      rgba(0, 0, 0, 0.1);
  --border-inv:  rgba(255, 255, 255, 0.12);

  /* ── Typography ───────────────────────────────────────────────────── */
  --font-serif:  Georgia, 'Times New Roman', serif;
  --font-sans:   'Helvetica Neue', Arial, sans-serif;

  /* ── Spacing Scale ────────────────────────────────────────────────── */
  --space-xs:    8px;
  --space-sm:    16px;
  --space-md:    24px;
  --space-lg:    40px;
  --space-xl:    64px;
  --space-2xl:   96px;

  /* ── Section ──────────────────────────────────────────────────────── */
  --section-y:   clamp(60px, 8vw, 100px);
  --container-w: 1180px;
  --gutter:      clamp(20px, 5vw, 60px);
}


/* ═══════════════════════════════════════════════════════════════════════════
   2. RESET & BASE
   ═══════════════════════════════════════════════════════════════════════════ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--offwhite);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}


/* ═══════════════════════════════════════════════════════════════════════════
   3. LAYOUT SYSTEM
   ═══════════════════════════════════════════════════════════════════════════ */

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Section — base vertical rhythm */
.section {
  padding-block: var(--section-y);
}

/* Section modifiers — apply to <section> element */
.section--dark    { background: var(--navy);       color: var(--white); }
.section--mid     { background: var(--navy-mid);   color: var(--white); }
.section--white   { background: var(--white); }
.section--offwhite { background: var(--offwhite); }
.section--eco     { background: var(--eco-light); }

/* Grid utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

/* Media grid — 4 cols, first item spans 2 */
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.media-grid > .card--media:first-child {
  grid-column: span 2;
}


/* ═══════════════════════════════════════════════════════════════════════════
   4. TYPOGRAPHY SYSTEM
   One scale. No variants. No page-specific sizing.
   ═══════════════════════════════════════════════════════════════════════════ */

.heading-xl {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.heading-md {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.heading-sm {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.text-body {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.5vw, 1.02rem);
  line-height: 1.8;
  color: var(--text-mid);
}

.text-body p + p {
  margin-top: var(--space-sm);
}

.text-small {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-light);
}

/* Label — uppercase tracking, accent color */
.label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.label--eco   { color: var(--eco); }
.label--white { color: rgba(255, 255, 255, 0.7); }
.label--muted { color: var(--text-light); }

/* Decorative rule */
.rule-under {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: var(--space-sm);
}

.rule-under--white  { background: var(--white); }
.rule-under--dark   { background: var(--text-dark); }
.rule-under--eco    { background: var(--eco); }
.rule-under--center { margin-inline: auto; }
.rule-under--left   { margin-left: 0; }


/* ═══════════════════════════════════════════════════════════════════════════
   5. UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════════════ */

.text-white   { color: var(--white); }
.text-gold    { color: var(--gold); }
.text-eco     { color: var(--eco); }
.text-muted   { color: var(--text-mid); }
.text-center  { text-align: center; }
.text-left    { text-align: left; }

/* Fills a positioned container — used on img and video elements */
.img-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Background placeholder div — fills parent, used as video/image area placeholders */
.img-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-mid);
}

/* Inline link style */
.link-underline {
  color: inherit;
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s;
}

.link-underline:hover { opacity: 0.7; }

.link-eco {
  color: var(--eco);
  border-bottom: 1px solid var(--eco);
}

.divider {
  height: 1px;
  background: var(--border);
}

/* Visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════
   6. BUTTON SYSTEM
   Four types. One sizing system. One hover logic per type.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Base shared properties ─────────────────────────────────────────── */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 13px 28px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

/* ── Primary — gold fill ────────────────────────────────────────────── */
.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

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

/* ── Secondary — dark outline ───────────────────────────────────────── */
.btn-secondary {
  background: transparent;
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background: var(--text-dark);
  color: var(--white);
}

/* ── Outline — white outline (dark backgrounds only) ───────────────── */
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--text-dark);
}

/* ── Text — inline arrow link ───────────────────────────────────────── */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  background: none;
  cursor: pointer;
  transition: color 0.2s;
  width: fit-content;
}

.btn-text:hover { color: var(--gold); }

.btn-text--white {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(184, 151, 74, 0.6);
}

.btn-text--white:hover { color: var(--gold-light); }

/* ── Small modifier ─────────────────────────────────────────────────── */
.btn-sm {
  font-size: 0.65rem;
  padding: 9px 18px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   7. COMPONENT: HERO
   Reusable across all pages. Modifiers control height and layout.
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: 72px;           /* clearance for fixed nav */
}

.hero--full    { min-height: 100vh; }
.hero--large   { min-height: 80vh; }
.hero--medium  { min-height: 60vh; }

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: clamp(48px, 8vh, 96px);
  text-align: center;
}

.hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.hero__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  line-height: 1.75;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

/* Left-aligned hero variant (homepage, about) */
.hero--left .hero__content { text-align: left; }
.hero--left .hero__ctas    { justify-content: flex-start; }
.hero--left .hero__sub     { margin-inline: 0; }

/* Eyebrow used in hero context */
.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: var(--space-md);
}

/* Inline stats row (Properties hero) */
.hero__stats {
  display: flex;
  border-top: 1px solid rgba(184, 151, 74, 0.25);
  border-bottom: 1px solid rgba(184, 151, 74, 0.25);
  padding-block: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: var(--space-lg);
}

.hero__stat + .hero__stat {
  border-left: 1px solid var(--border-inv);
  padding-left: var(--space-lg);
  padding-right: 0;
}

.hero__stat-value {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(212, 175, 106, 0.88);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}


/* ═══════════════════════════════════════════════════════════════════════════
   8. COMPONENT: STATS STRIP
   Horizontal bar of trust signals / credentials.
   Replaces: .trust-strip, .credibility-strip, .eyebrow-strip
   ═══════════════════════════════════════════════════════════════════════════ */

.stats-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: var(--space-md);
}

.stats-strip--dark {
  background: var(--navy);
  border-color: var(--border-inv);
}

.stats-strip--gold {
  background: var(--gold);
  border: none;
}

.stats-strip--charcoal {
  background: var(--text-dark);
  border-color: transparent;
}

.stats-strip--charcoal .stats-strip__item { color: rgba(255, 255, 255, 0.7); }
.stats-strip--charcoal .stats-strip__num  { color: var(--gold-light); }
.stats-strip--charcoal .stats-strip__desc { color: rgba(255, 255, 255, 0.55); }

.stats-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.stats-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-mid);
}

.stats-strip--dark  .stats-strip__item { color: rgba(255, 255, 255, 0.7); }
.stats-strip--gold  .stats-strip__item { color: var(--white); }

.stats-strip__item svg {
  flex-shrink: 0;
  opacity: 0.6;
}

/* Stat-value variant (credibility strip with number + label) */
.stats-strip--values .stats-strip__inner {
  gap: 0;
  border: 1px solid var(--border);
}

.stats-strip--values .stats-strip__item {
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: var(--space-md) var(--space-lg);
  border-right: 1px solid var(--border);
}

.stats-strip--values .stats-strip__item:last-child { border-right: none; }

.stats-strip__value {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: none;
}

.stats-strip--dark .stats-strip__value { color: var(--gold-light); }


/* ═══════════════════════════════════════════════════════════════════════════
   9. COMPONENT: SECTION HEADER
   Centred or left-aligned intro block above a grid or component.
   ═══════════════════════════════════════════════════════════════════════════ */

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header--left   { text-align: left; }
.section-header--spaced { margin-top: var(--space-xl); margin-bottom: 0; }

.section-header__intro {
  max-width: 680px;
  margin-inline: auto;
  margin-top: var(--space-md);
  font-size: clamp(0.92rem, 1.5vw, 1.02rem);
  line-height: 1.8;
  color: var(--text-mid);
}

.section-header--left .section-header__intro { margin-inline: 0; }


/* ═══════════════════════════════════════════════════════════════════════════
   10. COMPONENT: CARD SYSTEM
   Base + variants. All page-specific components rewritten here.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Base card ──────────────────────────────────────────────────────── */
.card {
  background: var(--white);
}

/* ── Feature card — proposition / benefit item ──────────────────────── */
.card--feature {
  padding: var(--space-lg) var(--space-md);
  border-top: 2px solid var(--gold);
}

.card--feature .heading-md {
  margin-bottom: var(--space-sm);
}

/* ── Step card — numbered process step ──────────────────────────────── */
.card--step {
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.card__step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  margin-bottom: var(--space-md);
  display: block;
}

.card--step .heading-sm {
  margin-bottom: var(--space-sm);
}

/* ── Model card — villa model with image + specs ─────────────────────── */
.card--model {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
}

.card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}

.card__model-badge {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}

.card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.card__specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xs);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-sm);
}

.card__spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card__spec-value {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.1;
}

.card__spec-key {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.card__note {
  font-size: 0.78rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.card__price {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-top: auto;
  padding-top: var(--space-sm);
}

.card__price-note {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 4px;
}

.card__ctas {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

/* ── Media card — image with label overlay (finishes tiles) ──────────── */
.card--media {
  overflow: hidden;
  position: relative;
}

.card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.card--media:first-child .card__media {
  aspect-ratio: 16 / 10;
}

.card__media-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg) var(--space-md) var(--space-md);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
}

.card__media-category {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.card__media-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}

.card__media-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

/* ── Pillar card — technical credential with stat ────────────────────── */
.card--pillar {
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.card__pillar-icon {
  width: 28px;
  height: 28px;
  color: var(--eco);
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}

.card--pillar .heading-sm {
  margin-bottom: var(--space-sm);
}

.card__stat {
  border-top: 1px solid var(--border);
  padding-top: var(--space-sm);
  margin-top: auto;
  padding-top: var(--space-md);
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
}

.card__stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--eco);
  line-height: 1;
}

.card__stat-label {
  font-size: 0.75rem;
  color: var(--text-mid);
  line-height: 1.3;
}

/* ── Person card — team member / partner ─────────────────────────────── */
.card--person {
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--border);
  background: var(--white);
}

.card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.card__person-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.card__person-role {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.card__person-bio {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════════════════════
   11. COMPONENT: SPLIT SECTION
   50/50 image + body. Replaces .split, .new-way, page-specific splits.
   ═══════════════════════════════════════════════════════════════════════════ */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.split-section--reverse { direction: rtl; }
.split-section--reverse > * { direction: ltr; }

.split-section__image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.split-section__body {
  padding: var(--space-2xl) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.split-section--dark .split-section__body  { background: var(--navy); color: var(--white); }
.split-section--dark .text-body            { color: rgba(255, 255, 255, 0.75); }
.split-section--dark .label               { color: var(--gold-light); }

.split-section__body .heading-lg,
.split-section__body .heading-md {
  margin-bottom: var(--space-md);
  max-width: 480px;
}

.split-section__body .text-body {
  max-width: 480px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   12. COMPONENT: CTA BAND
   Full-width call-to-action. Dark, image-backed, or quote variants.
   ═══════════════════════════════════════════════════════════════════════════ */

.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: var(--section-y);
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 31, 60, 0.82);
}

.cta-band__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.cta-band--dark {
  background: var(--navy);
}

.cta-band--dark .cta-band__content {
  position: static;
}

.cta-band .heading-xl,
.cta-band .heading-lg {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-band__sub {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.cta-band__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* 4-step programme row inside CTA band (factory banner) */
.cta-band__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-inv);
  margin-top: var(--space-xl);
  border-top: 1px solid var(--border-inv);
  padding-top: var(--space-xl);
}

.cta-step {
  background: transparent;
  padding: var(--space-md);
  text-align: left;
}

.cta-step__number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-sm);
  display: block;
}

.cta-step__title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.cta-step__desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* Enquiry / form variant */
.cta-band--form { background: var(--navy); }
.cta-band--form .cta-band__sub { color: rgba(255, 255, 255, 0.8); }

/* Testimonial / quote variant */
.cta-band--quote {
  background: var(--navy-mid);
  padding-block: var(--space-xl);
}

.cta-band--quote blockquote {
  max-width: 680px;
  margin-inline: auto;
}

.cta-band__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.cta-band__cite {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  font-style: normal;
}


/* ═══════════════════════════════════════════════════════════════════════════
   13. COMPONENT: SPECS TABLE
   Two-column definition-list for technical specifications.
   ═══════════════════════════════════════════════════════════════════════════ */

.specs-table {
  border-top: 1px solid var(--border);
  margin-top: var(--space-xl);
}

.specs-table__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}

.specs-table__term {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-dark);
  padding-top: 2px;
}

.specs-table__desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* Badge used above specs table */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-mid);
  border: 1px solid var(--border);
  padding: var(--space-xs) var(--space-md);
}


/* ═══════════════════════════════════════════════════════════════════════════
   14. COMPONENT: FAQ
   ═══════════════════════════════════════════════════════════════════════════ */

.faq {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  align-items: start;
}

.faq__intro { /* left column — see .section-header--left */ }

.faq__list {
  border-top: 1px solid var(--border);
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}

.faq__question:hover { color: var(--gold); }

.faq__question-text { flex: 1; }

.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}

.faq__item.is-open .faq__icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding-bottom: var(--space-md);
}


/* ═══════════════════════════════════════════════════════════════════════════
   15. COMPONENT: VIDEO FEATURE
   Split layout with video on one side, text on the other.
   ═══════════════════════════════════════════════════════════════════════════ */

.video-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.video-feature__media {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.video-feature__body {
  padding: var(--space-2xl) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.video-feature__body .heading-lg {
  margin-bottom: var(--space-md);
}

.video-feature__body .text-body {
  max-width: 480px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   16. COMPONENT: PRICING NOTE
   Informational disclaimer callout.
   ═══════════════════════════════════════════════════════════════════════════ */

.pricing-note {
  display: inline-flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.82rem;
  color: var(--text-mid);
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--space-sm) var(--space-md);
  margin-top: var(--space-md);
  text-align: left;
  line-height: 1.65;
  max-width: 680px;
}

.pricing-note svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--text-light);
}


/* ═══════════════════════════════════════════════════════════════════════════
   17. COMPONENT: CALLOUT BLOCK
   Highlighted block for important contextual information.
   ═══════════════════════════════════════════════════════════════════════════ */

.callout {
  background: var(--eco-light);
  border-left: 3px solid var(--eco);
  padding: var(--space-lg) var(--space-lg);
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.callout__heading {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--eco);
  margin-bottom: var(--space-sm);
}

.callout__body {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.75;
}

.callout__body p + p {
  margin-top: var(--space-sm);
}

.callout--dark {
  background: var(--navy-mid);
  border-left-color: var(--gold);
  max-width: none;
}

.callout--dark .callout__heading { color: var(--gold-light); }
.callout--dark .callout__body    { color: rgba(255, 255, 255, 0.75); }


/* ═══════════════════════════════════════════════════════════════════════════
   18. COMPONENT: TESTIMONIAL
   Already handled by .cta-band--quote above.
   ═══════════════════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════════════════
   19. COMPONENT: FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.footer {
  background: var(--navy);
  color: var(--white);
  padding-block: var(--space-md);
  border-top: 1px solid var(--border-inv);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.footer__links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer__link {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer__link:hover { color: var(--gold-light); }

/* Extended footer sub-elements (multi-column footer variant) */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

.footer__descriptor {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  max-width: 22ch;
}

.footer__col-title {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: var(--space-sm);
}

ul.footer__links {
  flex-direction: column;
  list-style: none;
  gap: var(--space-xs);
}

ul.footer__links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

ul.footer__links a:hover { color: var(--gold-light); }

.footer__legal {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Full 4-col site footer */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding-block: var(--space-2xl) var(--space-xl);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
}

.site-footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.site-footer__tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.site-footer__col-title {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: var(--space-md);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.site-footer__link {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.site-footer__link:hover { color: var(--gold-light); }

.site-footer__bottom {
  border-top: 1px solid var(--border-inv);
  padding-top: var(--space-md);
  margin-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.site-footer__legal {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
}


/* ═══════════════════════════════════════════════════════════════════════════
   21. COMPONENT: EYEBROW STRIP
   Thin horizontal credential/ticker bar. Used below hero on interior pages.
   ═══════════════════════════════════════════════════════════════════════════ */

.eyebrow-strip {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border-inv);
  padding-block: var(--space-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding-inline: var(--gutter);
  flex-wrap: wrap;
  justify-content: center;
}

.eyebrow-strip__item {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  position: relative;
}

.eyebrow-strip__item + .eyebrow-strip__item::before {
  content: '·';
  position: absolute;
  left: calc(-1 * var(--space-lg) / 2 - 0.2em);
  color: rgba(255, 255, 255, 0.25);
}


/* ═══════════════════════════════════════════════════════════════════════════
   22. COMPONENT: CARD — ROUTE
   Platform routing navigation card. Used on homepage for platform paths.
   ═══════════════════════════════════════════════════════════════════════════ */

.card--route {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: border-top-color 0.2s, box-shadow 0.2s;
}

.card--route:hover {
  border-top-color: var(--gold);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.card--route.card--primary {
  background: var(--navy);
  border-color: var(--navy);
}

.card--route.card--primary .card__title      { color: var(--white); }
.card--route.card--primary .card__body       { color: rgba(255, 255, 255, 0.65); }
.card--route.card--primary .card--route__cta { color: var(--gold-light); border-top-color: var(--border-inv); }

.card--route__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
  transition: gap 0.2s;
}

.card--route:hover .card--route__cta { gap: var(--space-sm); }


/* ═══════════════════════════════════════════════════════════════════════════
   23. COMPONENT: CARD — ARTICLE
   Editorial / research library card. Featured variant spans full width.
   ═══════════════════════════════════════════════════════════════════════════ */

.card--article {
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.card--article.card--featured {
  background: var(--navy);
  border-color: var(--navy);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: var(--space-xl);
  padding: var(--space-xl);
}

.card__article-type {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}

.card--article .card__title    { font-size: clamp(1rem, 2vw, 1.4rem); }
.card--article.card--featured .card__title { color: var(--white); font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
.card--article .card__body     { flex: 1; }
.card--article.card--featured .card__body  { color: rgba(255, 255, 255, 0.72); }

.card__article-meta {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.card--article.card--featured .card__article-meta { color: rgba(255, 255, 255, 0.4); }

.card__article-cta {
  margin-top: auto;
}


/* ═══════════════════════════════════════════════════════════════════════════
   24. COMPONENT: CARD — AREA
   Geographic area discovery card. Tag, name, price/yield, CTA arrow.
   ═══════════════════════════════════════════════════════════════════════════ */

.card--area {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--space-md);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.card--area:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--gold);
}

.card__area-tag {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.card__area-name {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: var(--space-xs);
  line-height: 1.2;
}

.card__area-price {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.card__area-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}


/* ═══════════════════════════════════════════════════════════════════════════
   25. COMPONENT: CARD — RECORD
   Track record / past project card. Type label, heading, detail copy.
   ═══════════════════════════════════════════════════════════════════════════ */

.card--record {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.card__record-type {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-light);
}

.card__record-name {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.card__record-detail {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text-mid);
}


/* ═══════════════════════════════════════════════════════════════════════════
   26. COMPONENT: CARD — PATH
   Buyer / seller / choice path card. Heading, body, bullet list, CTA.
   ═══════════════════════════════════════════════════════════════════════════ */

.card--path {
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.card__path-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}

.card__path-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.card__path-points li {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  padding-left: var(--space-md);
  position: relative;
}

.card__path-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 1px;
  background: var(--gold);
}


/* ═══════════════════════════════════════════════════════════════════════════
   27. COMPONENT: PLATFORM NAV
   4-col (or any-col) cross-platform navigation block.
   Used at bottom of pages to route users to other platform sections.
   ═══════════════════════════════════════════════════════════════════════════ */

.platform-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: var(--space-xl);
}

.platform-nav--3col { grid-template-columns: repeat(3, 1fr); }
.platform-nav--5col { grid-template-columns: repeat(5, 1fr); }

.platform-nav__item {
  display: block;
  background: var(--white);
  padding: var(--space-md);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.platform-nav__item:hover { background: var(--offwhite); }

.platform-nav__item--muted { background: var(--offwhite); cursor: default; }
.platform-nav__item--muted:hover { background: var(--offwhite); }
.platform-nav__item--center { text-align: center; align-items: center; }

.platform-nav__label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.platform-nav__heading {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.platform-nav__desc {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════════════════
   28. COMPONENT: DATA PANEL
   Market data panel with stats. Used inside split-sections.
   ═══════════════════════════════════════════════════════════════════════════ */

.data-panel {
  background: var(--navy);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.data-panel--light {
  background: var(--offwhite);
  border: 1px solid var(--border);
}

.data-panel__label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-md);
}

.data-panel--light .data-panel__label { color: var(--text-light); }

.data-panel__stat {
  padding-block: var(--space-md);
  border-bottom: 1px solid var(--border-inv);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.data-panel--light .data-panel__stat { border-bottom-color: var(--border); }

.data-panel__value {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}

.data-panel--light .data-panel__value { color: var(--navy); }

.data-panel__desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

.data-panel--light .data-panel__desc { color: var(--text-mid); }


/* ═══════════════════════════════════════════════════════════════════════════
   29. COMPONENT: AREA NAV
   Horizontal quick-link area navigation bar. Used on Properties page.
   ═══════════════════════════════════════════════════════════════════════════ */

.area-nav {
  background: var(--offwhite);
  border-bottom: 1px solid var(--border);
  padding-block: var(--space-sm);
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  max-width: 100%;
}

.area-nav__label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-light);
  flex-shrink: 0;
  margin-right: var(--space-xs);
}

.area-nav a {
  font-size: 0.78rem;
  color: var(--navy);
  text-decoration: none;
  padding: 4px var(--space-xs);
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.area-nav a:hover {
  border-color: var(--gold);
  color: var(--gold);
}


/* ═══════════════════════════════════════════════════════════════════════════
   30. COMPONENT: DISCLAIMER
   Legal disclaimer / notice block. Used below research content.
   ═══════════════════════════════════════════════════════════════════════════ */

.disclaimer {
  background: var(--offwhite);
  border-top: 1px solid var(--border);
  padding-block: var(--space-lg);
}

.disclaimer p {
  font-size: 0.75rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 860px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   31. COMPONENT: FORM BAND
   Enquiry form embedded in a CTA section.
   ═══════════════════════════════════════════════════════════════════════════ */

.form-band {
  background: var(--navy);
  padding-block: var(--section-y);
}

.form-band .container {
  max-width: 760px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.form__field {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form__field::placeholder { color: rgba(255, 255, 255, 0.35); }
.form__field:focus { border-color: var(--gold); }

.form__field--full { grid-column: 1 / -1; }

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

.form__consent {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  margin-block: var(--space-sm);
}


/* ═══════════════════════════════════════════════════════════════════════════
   32. CARD — PERSON INITIALS
   Text-based initials avatar (alternative to photo avatar).
   ═══════════════════════════════════════════════════════════════════════════ */

.card__person-initials {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  margin-bottom: var(--space-sm);
}

/* Large initials variant for leadership cards */
.card__person-initials--lg {
  width: 64px;
  height: 64px;
  font-size: 1rem;
}

.card--person .card__person-role {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}


/* ═══════════════════════════════════════════════════════════════════════════
   33. SECTION MODIFIERS
   Background and colour override variants for .section.
   ═══════════════════════════════════════════════════════════════════════════ */

.section--navy     { background: var(--navy); }
.section--charcoal { background: var(--text-dark); }
.section--bordered { border-top: 1px solid var(--border); }

/* Typography inversions on dark sections */
.section--navy .heading-xl,
.section--navy .heading-lg,
.section--navy .heading-md,
.section--navy .heading-sm    { color: var(--white); }
.section--navy .text-body,
.section--navy .text-body p   { color: rgba(255, 255, 255, 0.75); }
.section--navy .label         { color: rgba(255, 255, 255, 0.4); }
.section--navy .rule-under    { background: rgba(255, 255, 255, 0.15); }

.section--charcoal .heading-xl,
.section--charcoal .heading-lg,
.section--charcoal .heading-md { color: var(--white); }
.section--charcoal .text-body  { color: rgba(255, 255, 255, 0.75); }
.section--charcoal .label      { color: rgba(255, 255, 255, 0.4); }


/* ═══════════════════════════════════════════════════════════════════════════
   34. COMPONENT: OPERATING MODEL GRID
   2-col grid with gap:1px separation. Used for side-by-side platform cells.
   ═══════════════════════════════════════════════════════════════════════════ */

.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.model-grid--3col { grid-template-columns: repeat(3, 1fr); }
.model-grid--4col { grid-template-columns: repeat(4, 1fr); }
.model-grid--5col { grid-template-columns: repeat(5, 1fr); }

.model-grid__cell {
  background: var(--offwhite);
  padding: clamp(var(--space-lg), 4vw, var(--space-2xl));
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.model-grid__cell--white   { background: var(--white); }
.model-grid__cell--navy    { background: var(--navy); }
.model-grid__cell--center  { align-items: center; justify-content: center; text-align: center; }

.model-grid__cell--navy .label        { color: var(--gold); }
.model-grid__cell--navy .text-body,
.model-grid__cell--navy p             { color: rgba(255, 255, 255, 0.65); }


/* ═══════════════════════════════════════════════════════════════════════════
   35. COMPONENT: CREDIBILITY STRIP (Hero bottom bar)
   Row of numbered stats displayed inside or below the hero.
   ═══════════════════════════════════════════════════════════════════════════ */

.cred-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  background: rgba(13, 31, 60, 0.88);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-inv);
  padding-inline: var(--gutter);
}

.cred-strip__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: var(--space-md) var(--space-lg);
  border-right: 1px solid var(--border-inv);
}

.cred-strip__item:last-child { border-right: none; }

.cred-strip__value {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--gold-light);
  line-height: 1;
  font-weight: 400;
}

.cred-strip__label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}


/* ═══════════════════════════════════════════════════════════════════════════
   36. STATS STRIP — NUMBER VARIANT
   Large number + label stat block. Used for company metrics.
   ═══════════════════════════════════════════════════════════════════════════ */

.stats-strip--numbers .stats-strip__inner {
  gap: 0;
  flex-wrap: nowrap;
}

.stats-strip--numbers .stats-strip__item {
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: var(--space-lg) var(--space-xl);
  border-right: 1px solid var(--border);
  text-transform: none;
  letter-spacing: 0;
}

.stats-strip--dark.stats-strip--numbers .stats-strip__item { border-right-color: var(--border-inv); }
.stats-strip--numbers .stats-strip__item:last-child { border-right: none; }

.stats-strip__num {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stats-strip--dark .stats-strip__num { color: var(--gold-light); }

.stats-strip__desc {
  font-size: 0.75rem;
  color: var(--text-mid);
  line-height: 1.55;
  max-width: 200px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.stats-strip--dark .stats-strip__desc { color: rgba(255, 255, 255, 0.55); }


/* ═══════════════════════════════════════════════════════════════════════════
   37. INLINE LINK VARIANTS
   ═══════════════════════════════════════════════════════════════════════════ */

.link-gold {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

.link-gold:hover { color: var(--gold-dark); border-bottom-color: var(--gold-dark); }

.link-inv {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-weight: 500;
}

.link-inv:hover { color: var(--white); }


/* ═══════════════════════════════════════════════════════════════════════════
   20. RESPONSIVE
   Mobile-first breakpoints. No layout decisions left to developers.
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .grid-4        { grid-template-columns: repeat(2, 1fr); }
  .media-grid    { grid-template-columns: repeat(2, 1fr); }
  .media-grid > .card--media:first-child { grid-column: span 2; }
  .cta-band__steps { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .faq           { grid-template-columns: 1fr; }
  .platform-nav  { grid-template-columns: repeat(2, 1fr); }
  .platform-nav--3col { grid-template-columns: repeat(2, 1fr); }
  .platform-nav--5col { grid-template-columns: repeat(3, 1fr); }
  .model-grid--4col { grid-template-columns: repeat(2, 1fr); }
  .model-grid--5col { grid-template-columns: repeat(3, 1fr); }
  .card--article.card--featured { grid-template-columns: 1fr; }
  .stats-strip--numbers .stats-strip__inner { flex-wrap: wrap; }
  .cred-strip    { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4        { grid-template-columns: 1fr; }

  .media-grid    { grid-template-columns: 1fr; }
  .media-grid > .card--media:first-child { grid-column: span 1; }

  .split-section { grid-template-columns: 1fr; direction: ltr; }
  .split-section--reverse { direction: ltr; }
  .split-section__image { min-height: 280px; order: -1; }

  .video-feature { grid-template-columns: 1fr; }
  .video-feature__media { min-height: 260px; }

  .cta-band__steps { grid-template-columns: 1fr; }

  .stats-strip--values .stats-strip__inner { flex-direction: column; }
  .stats-strip--values .stats-strip__item  { border-right: none; border-bottom: 1px solid var(--border); }

  .hero__stats   { flex-direction: column; gap: var(--space-md); }
  .hero__stat + .hero__stat { border-left: none; border-top: 1px solid var(--border-inv); padding-left: 0; padding-top: var(--space-md); }

  .specs-table__row { grid-template-columns: 1fr; gap: var(--space-xs); }

  .site-footer__grid  { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; text-align: center; }

  .card__specs { grid-template-columns: repeat(2, 1fr); }
  .card__ctas  { flex-direction: column; }

  .platform-nav,
  .platform-nav--3col,
  .platform-nav--5col { grid-template-columns: 1fr; }

  .model-grid,
  .model-grid--3col,
  .model-grid--4col,
  .model-grid--5col { grid-template-columns: 1fr; }

  .stats-strip--numbers .stats-strip__item {
    flex: none;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .cred-strip { flex-direction: column; }
  .cred-strip__item { border-right: none; border-bottom: 1px solid var(--border-inv); }

  .form__row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__ctas    { flex-direction: column; align-items: center; }
  .cta-band__actions { flex-direction: column; align-items: center; }
  .stats-strip__inner { gap: var(--space-md); }
  .eyebrow-strip { gap: var(--space-md); }
}
