/* Art direction: Boutique advisory firm for global families → Ultra-premium, old-world trust
   Palette: Dark charcoal backgrounds, warm cream text, aged gold accent
   Typography: Cormorant Garamond (display serif, high contrast) + Inter (clean body sans)
   Density: Spacious — luxurious, unhurried editorial feel */

/* ========================================================================
   DESIGN TOKENS
   ======================================================================== */

:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* 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;

  /* Custom Mirai Palette — Dark, warm, institutional */
  --color-bg:             #111111;
  --color-surface:        #1a1a1a;
  --color-surface-2:      #222222;
  --color-surface-offset: #1d1d1d;
  --color-surface-offset-2: #252525;
  --color-surface-dynamic: #2a2a2a;
  --color-divider:        rgba(201, 169, 110, 0.15);
  --color-border:         rgba(201, 169, 110, 0.15);

  /* Text */
  --color-text:           #e8e0d4;
  --color-text-muted:     #8a8278;
  --color-text-faint:     #5e5850;
  --color-text-inverse:   #111111;

  /* Gold Accent */
  --color-gold:           #c9a96e;
  --color-gold-hover:     #d4b87e;
  --color-gold-active:    #b89a60;
  --color-gold-highlight: rgba(201, 169, 110, 0.08);

  /* Functional */
  --color-error:          #a13544;
  --color-success:        #437a22;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows (dark-mode appropriate) */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1100px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
}

/* ========================================================================
   GLOBAL STYLES
   ======================================================================== */

body {
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

a:hover {
  color: var(--color-gold-hover);
}

/* ========================================================================
   UTILITY CLASSES
   ======================================================================== */

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.section-tag {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  line-height: 1.15;
}

.section-description {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 65ch;
  line-height: 1.7;
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  border: none;
  margin: var(--space-8) 0;
}

.fade-in {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
}

@keyframes reveal-fade {
  to { opacity: 1; }
}

/* JS fallback for browsers without scroll-driven animations */
.fade-in-js {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-js.visible {
  opacity: 1;
}

/* ========================================================================
   SKIP LINK
   ======================================================================== */

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--color-gold);
  color: var(--color-text-inverse);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  z-index: 100;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: var(--space-4);
}

/* ========================================================================
   NAVIGATION
   ======================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: var(--space-5) 0;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--space-3) 0;
  border-bottom-color: var(--color-divider);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 40px;
  width: auto;
}

.site-header.scrolled .header-logo img {
  height: 32px;
}

.nav-links {
  display: flex;
  gap: var(--space-8);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: var(--space-1);
  transition: color var(--transition-interactive);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
  z-index: 60;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 80vw);
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: var(--space-24) var(--space-8) var(--space-8);
    gap: var(--space-6);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid var(--color-divider);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: var(--text-base);
    color: var(--color-text);
  }
}

/* ========================================================================
   HERO
   ======================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('./assets/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 17, 17, 0.3) 0%,
    rgba(17, 17, 17, 0.55) 45%,
    rgba(17, 17, 17, 0.8) 85%,
    rgba(17, 17, 17, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-8);
  max-width: 800px;
}

.hero-logo {
  width: clamp(180px, 20vw, 280px);
  margin: 0 auto var(--space-10);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 50ch;
  margin: 0 auto var(--space-12);
  line-height: 1.7;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: float 2.5s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-gold);
  opacity: 0.6;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================================================
   CREDIBILITY STATS
   ======================================================================== */

.stats-bar {
  padding: var(--space-12) 0;
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  background: var(--color-surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8) var(--space-4);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* ========================================================================
   DISTINCTIVE EXPERIENCE — Career Arc
   ======================================================================== */

.career-arc {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  border-top: 1px solid var(--color-divider);
  background: var(--color-surface);
}

.arc-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  margin-top: var(--space-12);
  position: relative;
  padding-left: var(--space-16);
}

/* Vertical connecting line */
.arc-timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    var(--color-gold) 0%,
    rgba(201, 169, 110, 0.3) 100%
  );
}

.arc-phase {
  display: flex;
  gap: var(--space-6);
  position: relative;
}

.arc-phase-marker {
  position: absolute;
  left: calc(-1 * var(--space-16) + 6px);
  top: 2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gold);
  z-index: 1;
}

.arc-phase-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  line-height: 1.25;
}

.arc-where {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.arc-phase-content p:not(.arc-where) {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.arc-synthesis {
  margin-top: var(--space-12);
  padding: var(--space-8);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}

.arc-synthesis p {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  max-width: 75ch;
}

@media (max-width: 600px) {
  .arc-timeline {
    padding-left: var(--space-12);
  }

  .arc-phase-marker {
    left: calc(-1 * var(--space-12) + 2px);
    width: 28px;
    height: 28px;
    font-size: var(--text-xs);
  }

  .arc-timeline::before {
    left: 16px;
  }
}

/* ========================================================================
   WHO WE SERVE — Audience Pathways
   ======================================================================== */

.audience {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  border-top: 1px solid var(--color-divider);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.audience-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.25;
}

.audience-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.audience-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.audience-what {
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
  font-style: italic;
  color: var(--color-text) !important;
}

@media (max-width: 900px) {
  .audience-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* ========================================================================
   WHAT WE DO
   ======================================================================== */

.services {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  border-top: 1px solid var(--color-divider);
  background: var(--color-surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.service-icon {
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  margin-bottom: var(--space-6);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================
   GLOBAL REACH
   ======================================================================== */

.global-reach {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  border-top: 1px solid var(--color-divider);
}

.global-reach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.global-reach-text {
  max-width: 500px;
}

.global-reach-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  line-height: 1.15;
}

.global-reach-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  list-style: none;
}

.city-list li {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  position: relative;
  padding-left: var(--space-4);
}

.city-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0.4;
  transform: translateY(-50%);
}

.global-map-wrap {
  position: relative;
}

.global-map-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  opacity: 1;
}

@media (max-width: 900px) {
  .global-reach-inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .global-map-wrap {
    order: -1;
  }
}

/* ========================================================================
   FOUNDER
   ======================================================================== */

.founder {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  border-top: 1px solid var(--color-divider);
}

.founder-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-12);
  align-items: start;
}

/* Single-column founder layout (no photo/monogram) */
.founder-bio-full {
  max-width: 780px;
  margin-top: var(--space-8);
}

.founder-bio-full p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.founder-bio-full .founder-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
}

.founder-bio-full .highlight-item {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  font-size: var(--text-sm);
}

.founder-bio-full .highlight-marker {
  width: 16px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.6em;
}

.founder-bio-full .highlight-item span {
  color: var(--color-text-muted);
}

.founder-bio-full .highlight-item strong {
  color: var(--color-text);
  font-weight: 500;
}

.founder-bio-full a {
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  transition: border-color 0.2s ease;
}

.founder-bio-full a:hover {
  border-color: var(--color-gold);
}

.founder-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.founder-monogram {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid var(--color-divider);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

.founder-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  text-align: center;
}

.founder-title-text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
}

.founder-bio p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.founder-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
}

.highlight-item {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  font-size: var(--text-sm);
}

.highlight-marker {
  width: 16px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.6em;
}

.highlight-item span {
  color: var(--color-text-muted);
}

.highlight-item strong {
  color: var(--color-text);
  font-weight: 500;
}

@media (max-width: 900px) {
  .founder-inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .founder-visual {
    flex-direction: row;
    justify-content: flex-start;
    gap: var(--space-6);
  }

  .founder-monogram {
    width: 120px;
    height: 120px;
    font-size: 2.5rem;
  }

  .founder-name,
  .founder-title-text {
    text-align: left;
  }
}

/* ========================================================================
   PARTNERS
   ======================================================================== */

.partners {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
  border-top: 1px solid var(--color-divider);
}

.partners-quote {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: var(--space-8) 0;
}

.partners-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 8rem);
  color: var(--color-gold);
  opacity: 0.2;
  position: absolute;
  top: -0.2em;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.partners-quote p {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto;
}

/* ========================================================================
   BOARD & ADVISORY
   ======================================================================== */

.board {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  border-top: 1px solid var(--color-divider);
  background: var(--color-surface);
}

.board-description {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 65ch;
  line-height: 1.7;
  margin-bottom: var(--space-10);
}

.board-areas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.board-tag {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-gold);
  padding: var(--space-3) var(--space-6);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-full);
  background: var(--color-gold-highlight);
  white-space: nowrap;
}

/* Board Value Grid */
.board-value {
  margin-bottom: var(--space-12);
}

.board-value-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.board-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.board-value-item {
  padding: var(--space-6);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  background: var(--color-surface-offset);
}

.board-value-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.board-value-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .board-value-grid {
    grid-template-columns: 1fr;
  }
}

.board-cta {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-muted);
  max-width: 60ch;
  line-height: 1.6;
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
}

/* ========================================================================
   INSIGHTS
   ======================================================================== */

.insights {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  border-top: 1px solid var(--color-divider);
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-12);
  max-width: 780px;
}

.insight-card {
  display: block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.insight-card:hover {
  border-color: rgba(201, 169, 110, 0.35);
  background: var(--color-surface-offset);
}

.insight-card-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.insight-issue {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.insight-date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
}

.insight-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.2;
}

.insight-subtitle {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.insight-excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 65ch;
}

.insight-cta {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.04em;
  margin-top: var(--space-2);
  transition: color 0.2s ease;
}

.insight-card:hover .insight-cta {
  color: var(--color-gold-hover);
}

/* ========================================================================
   CONTACT
   ======================================================================== */

.contact {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  border-top: 1px solid var(--color-divider);
}

.contact-inner {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.contact-inner .section-title {
  margin-bottom: var(--space-8);
}

.contact-email {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-gold);
  display: inline-block;
  margin-bottom: var(--space-6);
  transition: color var(--transition-interactive);
}

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

.contact-address {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ========================================================================
   FOOTER
   ======================================================================== */

.site-footer {
  padding: var(--space-12) 0 var(--space-8);
  border-top: 1px solid var(--color-divider);
  background: var(--color-bg);
}

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

.footer-logo img {
  height: 32px;
  width: auto;
  opacity: 0.6;
}

.footer-nav {
  display: flex;
  gap: var(--space-6);
  list-style: none;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  transition: color var(--transition-interactive);
}

.footer-nav a:hover {
  color: var(--color-text);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
}

.footer-legal {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
  max-width: 65ch;
  line-height: 1.5;
  margin-bottom: var(--space-2);
}

.footer-copyright {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer-attribution a {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  transition: color var(--transition-interactive);
}

.footer-attribution a:hover {
  color: var(--color-text-muted);
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
