/* ==========================================================================
   STONE STREET CAPITAL — Design Tokens & Components
   Palette: charcoal-black + restrained warm gold + ivory
   Type: Cormorant Garamond (display) + Inter (body)
   ========================================================================== */

:root {
  /* Type scale (fluid) */
  --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.0625rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.4rem + 2.6vw, 3.5rem);
  --text-3xl: clamp(2.75rem, 1.5rem + 4.5vw, 5.25rem);
  --text-hero: clamp(3rem, 1rem + 7vw, 7.5rem);

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

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

  --transition-interactive: 280ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 720px;
  --content-default: 1120px;
  --content-wide: 1320px;

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
}

/* ==========================================================================
   COLOR PALETTE — Dark institutional theme (primary)
   ========================================================================== */

:root, [data-theme='dark'] {
  /* Surfaces — deep charcoal layers */
  --color-bg:                #0B0C0F;   /* near-black with hint of blue */
  --color-surface:           #111317;
  --color-surface-2:         #161920;
  --color-surface-offset:    #1C1F26;
  --color-surface-dynamic:   #232730;
  --color-divider:           #1E2128;
  --color-border:            #2A2D35;
  --color-border-strong:     #3A3D45;

  /* Text — ivory hierarchy */
  --color-text:              #E8E4DA;   /* ivory */
  --color-text-strong:       #F5F1E6;
  --color-text-muted:        #9A968C;
  --color-text-faint:        #5E5B54;
  --color-text-inverse:      #0B0C0F;

  /* Primary accent — restrained warm gold */
  --color-primary:           #C9A961;   /* champagne gold */
  --color-primary-hover:     #D9BA72;
  --color-primary-active:    #B8964E;
  --color-primary-soft:      rgba(201, 169, 97, 0.12);
  --color-primary-line:      rgba(201, 169, 97, 0.28);

  /* Bronze (deeper accent for hover/depth) */
  --color-bronze:            #8B6F3F;
  --color-bronze-soft:       rgba(139, 111, 63, 0.18);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.55);
  --shadow-gold: 0 0 40px rgba(201,169,97,0.15);
}

/* Light mode (subtle, ivory paper) */
[data-theme='light'] {
  --color-bg:                #F7F4EC;
  --color-surface:           #FBF9F2;
  --color-surface-2:         #FFFEF8;
  --color-surface-offset:    #EFEBE0;
  --color-surface-dynamic:   #E5E0D2;
  --color-divider:           #DDD7C7;
  --color-border:            #C9C2AE;
  --color-border-strong:     #A89F86;

  --color-text:              #1A1814;
  --color-text-strong:       #0B0908;
  --color-text-muted:        #6B6557;
  --color-text-faint:        #A09A89;
  --color-text-inverse:      #FBF9F2;

  --color-primary:           #8E6E2C;
  --color-primary-hover:     #735821;
  --color-primary-active:    #5A4419;
  --color-primary-soft:      rgba(142, 110, 44, 0.10);
  --color-primary-line:      rgba(142, 110, 44, 0.30);

  --color-bronze:            #6B5028;
  --color-bronze-soft:       rgba(107, 80, 40, 0.12);

  --shadow-sm: 0 1px 2px rgba(28,22,12,0.06);
  --shadow-md: 0 8px 24px rgba(28,22,12,0.08);
  --shadow-lg: 0 20px 60px rgba(28,22,12,0.12);
  --shadow-gold: 0 0 40px rgba(142,110,44,0.10);
}

/* ==========================================================================
   LAYOUT PRIMITIVES
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-10));
}
.container-wide {
  max-width: var(--content-wide);
}

section {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-primary);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-text-strong);
  max-width: 22ch;
  margin-bottom: var(--space-6);
}
.section-title em {
  font-style: italic;
  color: var(--color-primary);
  font-weight: 400;
}
.section-lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 60ch;
  line-height: 1.55;
  font-weight: 300;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: var(--space-5) 0;
  background: rgba(11, 12, 15, 0);
  backdrop-filter: blur(0);
  transition: background 400ms ease, backdrop-filter 400ms ease, padding 400ms ease, border-color 400ms ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(11, 12, 15, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  padding: var(--space-3) 0;
  border-bottom-color: var(--color-border);
}
[data-theme='light'] .site-header.is-scrolled {
  background: rgba(247, 244, 236, 0.88);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}
.brand svg { flex-shrink: 0; }
.brand-mark {
  flex-shrink: 0;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(201, 169, 97, 0.35), 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-interactive, 200ms ease), box-shadow var(--transition-interactive, 200ms ease);
}
.brand:hover .brand-mark {
  transform: scale(1.05);
  box-shadow: 0 0 0 1px rgba(201, 169, 97, 0.6), 0 2px 12px rgba(201, 169, 97, 0.25);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: var(--color-text-strong);
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  position: relative;
}
.nav-links a:hover { color: var(--color-text-strong); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-interactive);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-strong);
  border: 1px solid var(--color-primary-line);
  border-radius: 2px;
  background: transparent;
}
.nav-cta:hover {
  background: var(--color-primary-soft);
  border-color: var(--color-primary);
}

.theme-toggle {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 2px;
}
.theme-toggle:hover { color: var(--color-primary); border-color: var(--color-primary-line); }

.mobile-toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: inline-flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(11,12,15,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}
[data-theme='light'] .mobile-menu { background: rgba(247,244,236,0.97); }
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text-strong);
}
.mobile-menu a:hover { color: var(--color-primary); }

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

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: var(--space-32) var(--space-20);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('./assets/img/hero-bull.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,12,15,0.94) 0%, rgba(11,12,15,0.70) 40%, rgba(11,12,15,0.20) 70%, rgba(11,12,15,0.45) 100%),
    linear-gradient(180deg, rgba(11,12,15,0.55) 0%, transparent 30%, transparent 70%, rgba(11,12,15,0.75) 100%);
}
[data-theme='light'] .hero-bg::after {
  background:
    linear-gradient(90deg, rgba(247,244,236,0.94) 0%, rgba(247,244,236,0.70) 40%, rgba(247,244,236,0.30) 70%, rgba(247,244,236,0.55) 100%),
    linear-gradient(180deg, rgba(247,244,236,0.40) 0%, transparent 30%, transparent 70%, rgba(247,244,236,0.65) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--color-text-strong);
  margin-bottom: var(--space-8);
}
.hero h1 em {
  font-style: italic;
  color: var(--color-primary);
  font-weight: 400;
}
.hero h1 .hero-line {
  display: block;
  padding-bottom: 0.06em;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-rise 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero h1 .hero-line:nth-child(2) { animation-delay: 0.18s; }
.hero h1 .hero-line:nth-child(3) { animation-delay: 0.36s; }

@keyframes hero-rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  opacity: 0;
  animation: hero-rise 0.8s ease forwards;
}

.hero-lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  font-weight: 300;
  max-width: 52ch;
  margin-bottom: var(--space-10);
  opacity: 0;
  animation: hero-rise 0.8s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  opacity: 0;
  animation: hero-rise 0.8s ease 0.8s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}
.btn-ghost {
  background: transparent;
  color: var(--color-text-strong);
  border-color: var(--color-border-strong);
}
.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn .arrow { transition: transform var(--transition-interactive); }
.btn:hover .arrow { transform: translateX(4px); }

/* Hero scroll cue */
.scroll-cue {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  z-index: 3;
  opacity: 0;
  animation: hero-rise 1s ease 1.4s forwards;
}
.scroll-cue::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--color-primary), transparent);
  animation: pulse-line 2.4s ease infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ==========================================================================
   MARQUEE TRUST STRIP
   ========================================================================== */

.trust-strip {
  border-block: 1px solid var(--color-border);
  background: var(--color-surface);
  padding-block: var(--space-8);
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}
.trust-items {
  display: flex;
  gap: var(--space-10);
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   OPPORTUNITY / SPLIT SECTIONS
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: center;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: var(--space-12); }
}

.split-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--color-surface);
}
.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,12,15,0.5));
}
.split-visual-frame {
  position: absolute;
  inset: var(--space-4);
  border: 1px solid rgba(201,169,97,0.4);
  pointer-events: none;
  z-index: 2;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
  padding-top: var(--space-10);
  border-top: 1px solid var(--color-border);
}
@media (max-width: 600px) {
  .stats-row { grid-template-columns: 1fr; gap: var(--space-8); }
}
.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}
.stat-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   PROBLEM / 3-COLUMN
   ========================================================================== */

.section-problem {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.section-head {
  text-align: center;
  margin-bottom: var(--space-20);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-head .section-title { max-width: 24ch; }
.section-head .section-lede { text-align: center; }
.section-head .eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-primary);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 900px) {
  .cards-3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: var(--space-10) var(--space-8);
  position: relative;
  transition: border-color var(--transition-interactive), transform var(--transition-interactive);
}
.card:hover {
  border-color: var(--color-primary-line);
  transform: translateY(-3px);
}
.card-number {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-primary);
  letter-spacing: 0.4em;
  margin-bottom: var(--space-6);
}
.card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text-strong);
  margin-bottom: var(--space-5);
  font-weight: 400;
}
.card p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-5);
}
.card ul {
  list-style: none;
  margin-top: var(--space-4);
}
.card ul li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-5);
  position: relative;
  padding-block: var(--space-2);
  border-top: 1px solid var(--color-divider);
}
.card ul li:first-child { border-top: none; padding-top: 0; }
.card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(var(--space-2) + 0.6em);
  width: 6px;
  height: 1px;
  background: var(--color-primary);
}

/* ==========================================================================
   SOLUTION — full-bleed visual + offset text
   ========================================================================== */

.section-solution {
  position: relative;
  overflow: hidden;
}
.solution-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: stretch;
}
@media (max-width: 900px) {
  .solution-grid { grid-template-columns: 1fr; }
}

.solution-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.solution-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(11,12,15,0.6));
}

.feature-list {
  list-style: none;
  margin-top: var(--space-8);
}
.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  padding: var(--space-5) 0;
  border-top: 1px solid var(--color-border);
  align-items: start;
}
.feature-list li:last-child { border-bottom: 1px solid var(--color-border); }
.feature-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary-line);
  color: var(--color-primary);
  border-radius: 2px;
  flex-shrink: 0;
}
.feature-content h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-strong);
  margin-bottom: var(--space-1);
  letter-spacing: 0.01em;
}
.feature-content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   PROCESS — 5-step horizontal timeline
   ========================================================================== */

.section-process {
  background: var(--color-bg);
  position: relative;
}
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-16);
}
@media (max-width: 1024px) {
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
}
@media (max-width: 600px) {
  .process-timeline { grid-template-columns: 1fr; }
}

.process-step {
  position: relative;
  padding-top: var(--space-10);
}
.process-step::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  right: -24px;
  height: 1px;
  background: var(--color-border);
}
.process-step:last-child::before { right: 0; }
@media (max-width: 1024px) {
  .process-step::before { display: none; }
}
.process-step .dot {
  position: absolute;
  top: 18px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid var(--color-primary);
  background: var(--color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step .dot::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}
.process-step .step-num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text-strong);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}
.process-step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   VALUE PROP / COMPETITIVE — two-up editorial
   ========================================================================== */

.section-value {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
}
@media (max-width: 900px) {
  .value-grid { grid-template-columns: 1fr; gap: var(--space-12); }
}
.value-col h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--space-6);
  color: var(--color-text-strong);
}
.value-col .col-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.value-list {
  list-style: none;
  margin-top: var(--space-8);
}
.value-list li {
  padding: var(--space-5) 0;
  border-top: 1px solid var(--color-divider);
}
.value-list li:last-child { border-bottom: 1px solid var(--color-divider); }
.value-list h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-strong);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.value-list h4::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  flex-shrink: 0;
}
.value-list p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
  padding-left: 18px;
}

/* ==========================================================================
   RISK — 2x2 framework
   ========================================================================== */

.section-risk {
  position: relative;
  overflow: hidden;
}
.section-risk-bg {
  position: absolute;
  inset: 0;
  background-image: url('./assets/img/marble-charcoal.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}
.section-risk-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-bg), rgba(11,12,15,0.7), var(--color-bg));
}
[data-theme='light'] .section-risk-bg { opacity: 0.18; }
.section-risk > .container { position: relative; z-index: 1; }

.risk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}
@media (max-width: 700px) {
  .risk-grid { grid-template-columns: 1fr; }
}
.risk-item {
  background: var(--color-bg);
  padding: var(--space-10);
  transition: background var(--transition-interactive);
}
.risk-item:hover { background: var(--color-surface); }
.risk-item .label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}
.risk-item h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text-strong);
  margin-bottom: var(--space-3);
}
.risk-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   ABOUT — quote-driven
   ========================================================================== */

.section-about {
  background: var(--color-bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-visual {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text-strong);
  margin: var(--space-8) 0;
  padding-left: var(--space-6);
  border-left: 1px solid var(--color-primary);
}
.about-body p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.markets-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.market-tag {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-strong);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-border);
}

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

.section-contact {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.field label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-3) 0;
  color: var(--color-text);
  font-size: var(--text-base);
  font-family: var(--font-body);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--color-primary);
}
.field textarea { min-height: 100px; resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.info-block h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.info-block p, .info-block a {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text-strong);
  line-height: 1.4;
}
.info-block a:hover { color: var(--color-primary); }

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

.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: var(--space-16) 0 var(--space-8);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-16);
}
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-8); } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  max-width: 32ch;
  line-height: 1.6;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-5);
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.footer-col a:hover { color: var(--color-text-strong); }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.06em;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }
