/*
Theme Name: PinkThree
Theme URI: https://www.PinkThree.com
Author: Perplexity Computer
Author URI: https://www.PinkThree.com
Description: Custom WordPress theme for 3 / PinkThree.com — an operator-led boutique and lifestyle hospitality investment platform. Migrated from the existing static PinkThree.com site for Liquid Web Thrive.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pinkthree-theme
*/

/* =====================================================================
   NOTE ON CSS SCOPING / VISUAL PARITY
   ---------------------------------------------------------------------
   The original static site relies on GLOBAL selectors (html, body,
   :root custom properties, .header, .footer, .container, etc.). The page
   body content is additionally wrapped in <div class="pinkthree-page">
   so page-specific rules can be scoped if desired. However, header,
   footer, navigation, theming (light/dark), and layout primitives are
   intentionally kept GLOBAL to preserve exact visual parity with the
   static source. Scoping the entire stylesheet under .pinkthree-page
   would break the header/footer chrome, so the full original CSS is
   preserved verbatim below. See the QA report for details.
   ===================================================================== */

/* ============================================================
   3 — PinkThree.com
   Boutique & Lifestyle Hospitality Platform
   Design system: Dusty Rose (#E080A0) · Charcoal · Warm Ivory
   Display: Boska (serif) · Body: Satoshi (sans)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Type scale (fluid) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --text-sm: clamp(0.8125rem, 0.78rem + 0.2vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.3vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.3rem + 2.6vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4.4vw, 5rem);
  --text-hero: clamp(3rem, 0.6rem + 7.2vw, 7.5rem);

  /* Spacing (4px base) */
  --space-1: 0.25rem;  --space-2: 0.5rem;  --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;     --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;   --space-24: 6rem;
  --space-32: 8rem;

  /* Brand colors (from 3 LLC Brand Guide) */
  --rose: #E080A0;          /* Dusty Rose — primary accent */
  --rose-deep: #C4587E;     /* Darker rose for text-on-light contrast */
  --rose-soft: #F3D7E0;     /* Tint */
  --rose-wash: #FAEEF2;     /* Faintest tint */
  --charcoal: #1F1F1F;      /* Charcoal */
  --charcoal-2: #2A2A2A;
  --ink-800: #333230;
  --ivory: #F8F5F0;         /* Warm Ivory */
  --ivory-2: #FBF9F5;
  --white: #FFFFFF;
  --slate: #6B6B6B;         /* Slate Grey — secondary text */
  --terracotta: #C47A5A;    /* Warm Terracotta — selective accent */

  /* Semantic roles — light */
  --color-bg: var(--ivory);
  --color-surface: var(--ivory-2);
  --color-surface-2: var(--white);
  --color-border: #E4DDD3;
  --color-divider: #ECE6DC;
  --color-text: var(--charcoal);
  --color-text-muted: var(--slate);
  --color-text-faint: #A6A29B;
  --color-text-inverse: var(--ivory);
  --color-primary: var(--rose-deep);   /* accessible link/CTA text */
  --color-primary-bright: var(--rose);

  /* Dark surfaces (used on hero / footer bands regardless of theme) */
  --dark-bg: #191817;
  --dark-surface: #201E1D;
  --dark-border: #34302C;
  --dark-text: #EDE7DD;
  --dark-muted: #A79F94;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-full: 9999px;

  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 3px rgba(31,31,31,0.06);
  --shadow-md: 0 8px 28px rgba(31,31,31,0.09);
  --shadow-lg: 0 20px 56px rgba(31,31,31,0.14);

  --container: 1240px;
  --container-narrow: 820px;

  --font-display: 'Boska', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Satoshi', 'Inter', -apple-system, system-ui, sans-serif;
}

/* Dark mode overrides */
[data-theme='dark'] {
  --color-bg: #171513;
  --color-surface: #1E1B19;
  --color-surface-2: #24211E;
  --color-border: #35302B;
  --color-divider: #2C2824;
  --color-text: #EDE7DD;
  --color-text-muted: #A79F94;
  --color-text-faint: #746D64;
  --color-text-inverse: #171513;
  --color-primary: #E9A0BB;
  --color-primary-bright: #E080A0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.45);
  --shadow-lg: 0 20px 56px rgba(0,0,0,0.55);
}

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

html {
  -webkit-text-size-adjust: none; text-size-adjust: none;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-height: 100dvh;
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

img, picture, video, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.12; font-family: var(--font-display); font-weight: 500; }
p { text-wrap: pretty; }

::selection { background: rgba(224,128,160,0.28); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 3px; border-radius: var(--radius-sm); }

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

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

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 3rem); }
.container-narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(var(--space-16), 8vw, var(--space-32)); }
.section-sm { padding-block: clamp(var(--space-12), 6vw, var(--space-20)); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  display: inline-block;
}
.eyebrow--light { color: var(--rose); }

.display-hero { font-size: var(--text-hero); font-weight: 500; letter-spacing: -0.015em; }
.display-xl { font-size: var(--text-2xl); font-weight: 500; letter-spacing: -0.01em; }
.display-lg { font-size: var(--text-xl); font-weight: 500; }

.lead { font-size: var(--text-lg); color: var(--color-text-muted); max-width: 60ch; line-height: 1.6; }
.muted { color: var(--color-text-muted); }
.measure { max-width: 62ch; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.header--scrolled { border-bottom-color: var(--color-border); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: var(--space-6); }

.brand { display: flex; align-items: center; gap: var(--space-3); color: var(--color-text); }
.brand svg { width: 40px; height: 40px; color: var(--rose-deep); flex-shrink: 0; }
.brand-logo-img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.82;
}
.nav { display: flex; align-items: center; gap: clamp(0.45rem, 0.9vw, 1rem); min-width: 0; }
.nav a,
.nav-trigger {
  font-size: clamp(0.78rem, 0.82vw, var(--text-sm));
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  padding: 4px 0;
}
.nav-link:hover,
.nav-link[aria-current='page'],
.nav-trigger:hover,
.nav-trigger[aria-current='page'] { color: var(--color-text); }
.nav-link[aria-current='page']::after,
.nav-trigger[aria-current='page']::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--rose); border-radius: 2px;
}
.nav-dropdown { position: relative; }
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  cursor: pointer;
}
.nav-trigger svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-dropdown:hover .nav-trigger svg,
.nav-dropdown:focus-within .nav-trigger svg { transform: rotate(180deg); }
.nav-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 250;
  min-width: 210px;
  padding: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-menu a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a[aria-current='page'] {
  background: var(--rose-wash);
  color: var(--rose-deep);
}
.header-actions { display: flex; align-items: center; gap: var(--space-3); }

.theme-toggle {
  width: 38px; height: 38px; border-radius: var(--radius-full);
  display: grid; place-items: center; color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.theme-toggle:hover { color: var(--color-text); border-color: var(--rose); }

.nav-toggle { display: none; width: 40px; height: 40px; place-items: center; color: var(--color-text); }
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.01em;
  padding: 0.85em 1.6em; border-radius: var(--radius-full);
  transition: all var(--transition); white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--rose); color: #2a1220; }
.btn-primary:hover { background: var(--rose-deep); color: var(--white); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(196,88,126,0.35); }
.btn-dark { background: var(--charcoal); color: var(--ivory); }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-ghost { border: 1px solid var(--color-border); color: var(--color-text); }
.btn-ghost:hover { border-color: var(--rose); color: var(--rose-deep); }
.btn-ghost-light { border: 1px solid rgba(255,255,255,0.35); color: var(--ivory); }
.btn-ghost-light:hover { border-color: var(--rose); background: rgba(224,128,160,0.14); }

/* ---------- Hero (dark) ---------- */
.hero-dark {
  position: relative; color: var(--dark-text);
  min-height: 92vh; display: flex; align-items: flex-end;
  padding-block: clamp(var(--space-16), 12vh, var(--space-32));
  overflow: hidden;
}
.hero-dark .hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-dark .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-dark .hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,16,0.35) 0%, rgba(20,18,16,0.35) 40%, rgba(20,18,16,0.88) 100%);
}
.hero-dark .container { position: relative; z-index: 1; }
.hero-title { color: var(--ivory); max-width: 16ch; }
.hero-title .word { display: inline-block; }
.hero-lead { color: rgba(237,231,221,0.86); max-width: 48ch; font-size: var(--text-lg); margin-top: var(--space-6); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-8); }

/* ---------- Editorial hero (light interior pages) ---------- */
.page-hero { padding-top: clamp(var(--space-16), 9vw, var(--space-24)); padding-bottom: clamp(var(--space-10), 5vw, var(--space-16)); }
.page-hero .eyebrow { margin-bottom: var(--space-4); }
.page-hero h1 { font-size: var(--text-2xl); max-width: 18ch; }
.page-hero .lead { margin-top: var(--space-5); }

/* ---------- Stat band ---------- */
.stat-band { background: var(--charcoal); color: var(--ivory); }
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-8) var(--space-6);
}
.stat { border-left: 1px solid rgba(237,231,221,0.16); padding-left: var(--space-5); }
.stat-value {
  font-family: var(--font-body);
  font-size: clamp(2rem, 1.2rem + 2.4vw, 3rem);
  font-weight: 500;
  color: var(--ivory);
  line-height: 1;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1, 'kern' 1;
}
.stat-value .unit { color: var(--rose); }
.stat-label { font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--dark-muted); margin-top: var(--space-3); }

/* ---------- Section header ---------- */
.section-head { max-width: 68ch; margin-bottom: clamp(var(--space-8), 4vw, var(--space-12)); }
.section-head .eyebrow { margin-bottom: var(--space-4); }
.section-head h2 { font-size: var(--text-2xl); }
.section-head p { margin-top: var(--space-5); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- Two column ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-8), 5vw, var(--space-20)); align-items: center; }
.two-col--wide-text { grid-template-columns: 1.1fr 0.9fr; }
.figure-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.figure-frame img { width: 100%; height: 100%; object-fit: cover; }
.figure-tall { aspect-ratio: 4/5; }
.figure-wide { aspect-ratio: 4/3; }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: var(--space-6); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: clamp(var(--space-6), 2vw, var(--space-8));
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--rose) 40%, var(--color-border)); }
.card-num { font-family: var(--font-display); font-size: var(--text-xl); color: var(--rose-deep); line-height: 1; }
.card h3 { font-size: var(--text-lg); margin-top: var(--space-4); margin-bottom: var(--space-3); }
.card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; }

/* ---------- Process steps ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.process-step { position: relative; padding-top: var(--space-6); border-top: 2px solid var(--rose); }
.process-step .step-idx { font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-deep); font-weight: 600; }
.process-step h3 { font-size: var(--text-lg); margin: var(--space-3) 0; }
.process-step p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ---------- Pull quote ---------- */
.pull-quote {
  border-radius: var(--radius-lg); background: var(--charcoal); color: var(--ivory);
  padding: clamp(var(--space-10), 5vw, var(--space-20));
  position: relative; overflow: hidden;
}
.pull-quote::before {
  content: '“'; position: absolute; top: -0.15em; left: 0.2em;
  font-family: var(--font-display); font-size: 12rem; color: rgba(224,128,160,0.16); line-height: 1;
}
.pull-quote blockquote { font-family: var(--font-display); font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem); font-weight: 500; line-height: 1.25; position: relative; z-index: 1; max-width: 24ch; }
.pull-quote cite { display: block; margin-top: var(--space-6); font-family: var(--font-body); font-style: normal; font-size: var(--text-sm); color: var(--rose); letter-spacing: 0.04em; }

/* ---------- Funds table / list ---------- */
.fund-list { display: grid; gap: var(--space-4); }
.fund-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: var(--space-5); align-items: center;
  padding: var(--space-6); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  background: var(--color-surface-2); transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.fund-row:hover { border-color: color-mix(in srgb, var(--rose) 45%, var(--color-border)); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.fund-tag { font-family: var(--font-display); font-size: var(--text-lg); color: var(--rose-deep); min-width: 4.5ch; }
.fund-name { font-weight: 600; font-size: var(--text-base); }
.fund-desc { font-size: var(--text-sm); color: var(--color-text-muted); margin-top: 2px; }
.fund-size { font-family: var(--font-display); font-size: var(--text-lg); text-align: right; white-space: nowrap; }
.fund-card-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: var(--space-5);
}
.fund-card-title { min-width: 0; }
.fund-card-title h3 { margin-top: var(--space-3); margin-bottom: 0; max-width: 24ch; }
.fund-card-size { color: var(--rose-deep); font-size: var(--text-xl); line-height: 1; justify-self: end; padding-top: 0.1rem; }

/* ---------- Data table ---------- */
.data-table { width: 100%; border-collapse: collapse; font-size: var(--text-sm); }
.data-table th, .data-table td { text-align: left; padding: var(--space-4) var(--space-5); border-bottom: 1px solid var(--color-divider); }
.data-table th { font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }
.data-table tbody tr:hover td, .data-table tr:hover td { background: var(--rose-wash); }
.data-table td:last-child, .data-table th:last-child { text-align: right; }

/* ---------- KV list ---------- */
.kv-list { display: grid; gap: 0; }
.kv-row { display: grid; grid-template-columns: 42% 1fr; gap: var(--space-4); padding: var(--space-4) 0; border-bottom: 1px solid var(--color-divider); }
.kv-row dt { font-size: var(--text-sm); color: var(--color-text-muted); }
.kv-row dd { font-size: var(--text-sm); font-weight: 500; }

/* ---------- Arrow list ---------- */
.arrow-list { display: grid; gap: var(--space-4); }
.arrow-list li { display: grid; grid-template-columns: auto 1fr; gap: var(--space-4); align-items: start; }
.arrow-list li::before { content: ''; width: 8px; height: 8px; margin-top: 0.55em; border-radius: 2px; background: var(--rose); flex-shrink: 0; }
.arrow-list strong { font-weight: 600; }
.arrow-list span { color: var(--color-text-muted); font-size: var(--text-sm); }

/* ---------- Full-bleed image divider ---------- */
.image-divider { position: relative; height: clamp(320px, 44vw, 560px); overflow: hidden; }
.image-divider img { width: 100%; height: 100%; object-fit: cover; }
.image-divider .overlay {
  position: absolute; inset: 0; display: flex; align-items: center;
  background: linear-gradient(90deg, rgba(20,18,16,0.7) 0%, rgba(20,18,16,0.25) 60%, transparent 100%);
}
.image-divider .overlay .container { color: var(--ivory); }
.image-divider blockquote { font-family: var(--font-display); font-size: clamp(1.5rem, 1rem + 2vw, 2.4rem); max-width: 24ch; line-height: 1.2; }
.image-divider cite { display: block; margin-top: var(--space-4); font-family: var(--font-body); font-style: normal; font-size: var(--text-sm); color: var(--rose); letter-spacing: 0.05em; }

/* ---------- Contact band ---------- */
.contact-band { background: var(--charcoal); color: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(var(--space-10), 5vw, var(--space-20)); }
.contact-grid h2 { color: var(--ivory); font-size: var(--text-2xl); }
.contact-grid .lead { color: rgba(237,231,221,0.8); }
.contact-detail { display: grid; gap: var(--space-5); }
.contact-detail .row { border-top: 1px solid rgba(237,231,221,0.16); padding-top: var(--space-4); }
.contact-detail .label { font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--dark-muted); }
.contact-detail .val { font-size: var(--text-base); margin-top: var(--space-1); }
.contact-detail a { color: var(--ivory); }
.contact-detail a:hover { color: var(--rose); }

/* ---------- CTA band (light) ---------- */
.cta-band { background: var(--rose-wash); }
[data-theme='dark'] .cta-band { background: var(--color-surface); }
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-8); }
.cta-inner h2 { font-size: var(--text-xl); max-width: 20ch; }

/* ---------- Footer ---------- */
.footer { background: var(--dark-bg); color: var(--dark-text); padding-block: var(--space-16) var(--space-8); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--space-8); }
.footer .brand { color: var(--dark-text); }
.footer .brand svg { color: var(--rose); }
.footer-col h4 { font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--dark-muted); font-weight: 600; margin-bottom: var(--space-4); }
.footer-col ul { list-style: none; display: grid; gap: var(--space-3); }
.footer-col a { font-size: var(--text-sm); color: rgba(237,231,221,0.78); }
.footer-col a:hover { color: var(--rose); }
.footer-about { font-size: var(--text-sm); color: rgba(237,231,221,0.7); max-width: 40ch; margin-top: var(--space-5); }
.footer-bottom { margin-top: var(--space-16); padding-top: var(--space-6); border-top: 1px solid var(--dark-border); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-4); }
.footer-bottom p, .footer-disclaimer { font-size: var(--text-xs); color: var(--dark-muted); line-height: 1.6; }
.footer-disclaimer { max-width: 100%; margin-top: var(--space-4); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200; background: var(--color-bg);
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  display: flex; flex-direction: column; padding: var(--space-6);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-nav.open { transform: none; }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.mobile-nav-close { width: 40px; height: 40px; display: grid; place-items: center; color: var(--color-text); }
.mobile-nav-close svg { width: 26px; height: 26px; }
.mobile-nav-links { display: grid; gap: var(--space-8); margin-top: var(--space-8); padding-bottom: var(--space-8); }
.mobile-nav-section { display: grid; gap: var(--space-1); }
.mobile-nav-section p {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: var(--space-2);
}
.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 6vw, 1.55rem);
  line-height: 1.08;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-divider);
  color: var(--color-text);
}
.mobile-nav-links a:hover { color: var(--rose-deep); }
.mobile-nav-cta { margin-top: auto; padding-top: var(--space-4); }
.mobile-nav-cta .btn { width: 100%; justify-content: center; }

/* ---------- Utilities ---------- */
.tag { display: inline-block; font-size: var(--text-xs); letter-spacing: 0.06em; padding: 0.35em 0.9em; border-radius: var(--radius-full); background: var(--rose-wash); color: var(--rose-deep); font-weight: 600; }
[data-theme='dark'] .tag { background: rgba(224,128,160,0.14); color: var(--rose); }
.divider-rule { height: 1px; background: var(--color-divider); border: 0; }
.text-center { text-align: center; }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-10); }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .nav, .header-actions .btn { display: none; }
  .nav-toggle { display: grid; }
}

@media (max-width: 860px) {
  .two-col, .two-col--wide-text { grid-template-columns: 1fr; gap: var(--space-10); }
  .two-col .figure-frame { order: -1; }
  .two-col.no-reorder .figure-frame { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .cols-2, .cols-3, .cols-4, .process-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .fund-row { grid-template-columns: 1fr; gap: var(--space-2); text-align: left; }
  .fund-size { text-align: left; }
  .fund-card-header { grid-template-columns: 1fr auto; gap: var(--space-4); }
  .fund-card-size { text-align: right; justify-self: end; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .kv-row { grid-template-columns: 1fr; gap: var(--space-1); }
  .hero-dark { min-height: 88vh; }
  .mobile-nav { padding: var(--space-5); }
  .mobile-nav-head { height: 56px; }
  .mobile-nav-links { gap: var(--space-6); margin-top: var(--space-6); }
}
