/*!
Theme Name: youfirst
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: youfirst
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

youfirst is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
 
 
  /* ── TOKEN SYSTEM ─────────────────────────────────────── */
  :root {
    --ink:        #0D0D0D;
    --ink-mid:    #3A3A3A;
    --ink-soft:   #6B6B6B;
    --ground:     #F7F5F0;
    --ground-alt: #EDEAE3;
    --rule:       #D4CFC5;
    --accent:     #1A3A5C;       /* deep maritime blue — authority, depth */
    --accent-warm:#C4933F;       /* aged gold — premium, earned */
    --white:      #FFFFFF;

    --display: 'Cormorant Garamond', Georgia, serif;
    --body:    'DM Sans', system-ui, sans-serif;
    --mono:    'DM Mono', monospace;

    --max: 1160px;
    --gutter: clamp(24px, 5vw, 80px);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--body);
    background: var(--ground);
    color: var(--ink);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  /* ── UTILITIES ────────────────────────────────────────── */
  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
  .eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-warm);
    display: block;
    margin-bottom: 20px;
  }
  .rule-top { border-top: 1px solid var(--rule); }
  .rule-bottom { border-bottom: 1px solid var(--rule); }

 /* ── NAV ──────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ground);
  border-bottom: 1px solid var(--rule);
  padding: 0 var(--gutter);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 40px;
}

.nav-logo {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent-warm); }

/* ── NAV LINKS (top level) ────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

/* Active page */
.nav-links .current-menu-item > a,
.nav-links .current-menu-ancestor > a {
  color: var(--ink);
}

/* Top-level links that have a dropdown: keep hover area tall enough
   so the pointer can travel from the link into the submenu */
.nav-links > .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  height: 68px;
}

/* Dropdown arrow */
.nav-links .menu-item-has-children > a::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.nav-links .menu-item-has-children:hover > a::after,
.nav-links .menu-item-has-children:focus-within > a::after {
  transform: rotate(-135deg) translateY(-2px);
}

/* ── DROPDOWN SUBMENU ─────────────────────────────────── */
.nav-links .sub-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 230px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--ground);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--accent);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  z-index: 200;

  /* hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

/* Show on hover and keyboard focus */
.nav-links li:hover > .sub-menu,
.nav-links li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links .sub-menu li {
  display: block;
  width: 100%;
}

.nav-links .sub-menu a {
  display: block;
  padding: 11px 22px;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--ink-mid);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}

.nav-links .sub-menu a:hover {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.03);
  padding-left: 26px;
}

/* Arrow inside submenu points right (for 3rd level) */
.nav-links .sub-menu .menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
}
.nav-links .sub-menu .menu-item-has-children > a::after {
  transform: rotate(-45deg);
}
.nav-links .sub-menu .menu-item-has-children:hover > a::after {
  transform: rotate(-45deg);
}

/* Third level (optional) */
.nav-links .sub-menu .sub-menu {
  top: -9px;
  left: 100%;
}

/* ── CTA BUTTON ───────────────────────────────────────── */
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: #122b45; }

/* ── KEYBOARD FOCUS ───────────────────────────────────── */
.nav-links a:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ── MOBILE (submenu opens on tap, see JS below) ──────── */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav-links > .menu-item-has-children > a {
    height: auto;
  }

  .nav-links .sub-menu {
    position: static;
    min-width: 0;
    padding: 4px 0 4px 16px;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nav-links li.open > .sub-menu {
    display: block;
  }

  .nav-links li.open > a::after {
    transform: rotate(-135deg) translateY(-2px);
  }

  /* On touch screens, ignore hover so it doesn't stick open */
  .nav-links li:hover > .sub-menu:not(:focus-within) {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-links .sub-menu,
  .nav-links .menu-item-has-children > a::after {
    transition: none;
  }
}

/* ── END HERE ───────────────────────────── */

  /* ── HERO ─────────────────────────────────────────────── */
  .hero {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    overflow: hidden;
    position: relative;
  }
  .hero-left {
    padding: clamp(60px, 8vh, 120px) var(--gutter) clamp(60px, 8vh, 120px) var(--gutter);
    max-width: 620px;
    justify-self: end;
  }
  .hero-headline {
    font-family: var(--display);
    font-size: clamp(48px, 5.5vw, 82px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 28px;
  }
  .hero-headline em {
    font-style: italic;
    color: var(--accent);
  }
  .hero-sub {
    font-size: clamp(16px, 1.4vw, 19px);
    font-weight: 300;
    line-height: 1.7;
    color: var(--ink-mid);
    max-width: 480px;
    margin-bottom: 48px;
  }
  .hero-sub strong { font-weight: 500; color: var(--ink); }
  .cta-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 64px; }
  .btn-primary {
    font-family: var(--body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--accent);
    padding: 16px 32px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: #122b45; transform: translateY(-1px); }
  .btn-secondary {
    font-family: var(--body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--ink-mid);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
  }
  .btn-secondary::after { content: '→'; transition: transform 0.2s; }
  .btn-secondary:hover { color: var(--ink); }
  .btn-secondary:hover::after { transform: translateX(4px); }

  .hero-proof {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--rule);
    padding-top: 32px;
  }
  .proof-stat { display: flex; flex-direction: column; gap: 4px; }
  .proof-number {
    font-family: var(--display);
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
    color: var(--ink);
  }
  .proof-number span { font-size: 22px; color: var(--accent-warm); }
  .proof-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    max-width: 100px;
    line-height: 1.4;
  }

  /* signature element: the hero right panel — vertical text + deep blue field */
  .hero-right {
    background: var(--accent);
    height: 100%;
    min-height: 92vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 60px 48px;
    overflow: hidden;
  }
  .hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 79px,
        rgba(255,255,255,0.04) 79px,
        rgba(255,255,255,0.04) 80px
      );
  }
  .hero-vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    position: absolute;
    top: 60px;
    right: 48px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.25);
    text-transform: uppercase;
  }
  .hero-quote {
    font-family: var(--display);
    font-size: clamp(28px, 2.8vw, 42px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.3;
    color: rgba(255,255,255,0.92);
    max-width: 380px;
    position: relative;
    z-index: 1;
  }
  .hero-quote-attr {
    font-family: var(--body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-warm);
    margin-top: 24px;
    display: block;
  }

  /* ── LOGOS / TRUST BAR ────────────────────────────────── */
  .trust-bar {
    background: var(--white);
    padding: 36px var(--gutter);
    border-bottom: 1px solid var(--rule);
  }
  .trust-bar-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  .trust-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    flex-shrink: 0;
    white-space: nowrap;
  }
  .trust-logos {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
  }
  .trust-logo-item {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 500;
    color: var(--rule);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    /* Placeholder treatment — replace with real SVG logos */
  }
  .trust-lang {
    margin-left: auto;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: wrap;
  }
  .lang-badge {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    border: 1px solid var(--rule);
    padding: 4px 10px;
  }

  /* ── PROBLEM SECTION ──────────────────────────────────── */
  .problem {
    padding: clamp(80px, 10vh, 140px) var(--gutter);
    background: var(--ink);
    color: var(--white);
  }
  .problem-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }
  .problem-left { padding-top: 8px; }
  .problem-left .eyebrow { color: var(--accent-warm); }
  .problem-label {
    font-family: var(--display);
    font-size: clamp(36px, 3.5vw, 56px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
  }
  .problem-right { }
  .problem-list { list-style: none; }
  .problem-list li {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 28px 0;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 20px;
    align-items: start;
  }
  .problem-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .problem-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-warm);
    margin-top: 10px;
    flex-shrink: 0;
  }
  .problem-text {
    font-family: var(--display);
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: 300;
    line-height: 1.4;
    color: rgba(255,255,255,0.85);
  }
  .problem-text strong { font-weight: 500; color: var(--white); font-style: normal; }
  .problem-close {
    margin-top: 64px;
    font-family: var(--display);
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.3;
    color: var(--white);
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 48px;
  }
  .problem-close span { color: var(--accent-warm); font-style: normal; }

  /* ── ABOUT ────────────────────────────────────────────── */
  .about {
    padding: clamp(80px, 10vh, 140px) var(--gutter);
    background: var(--ground);
  }
  .about-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-image-col { position: relative; }
  .about-image-frame {
    background: var(--accent);
    aspect-ratio: 4/5;
    max-height: 820px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-image-placeholder {
    font-family: var(--display);
    font-size: 14px;
    font-style: italic;
    color: rgba(255,255,255,0.3);
    text-align: center;
    padding: 20px;
    line-height: 1.6;
  }
  .about-caption {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-warm);
    padding: 24px 28px;
    width: 180px;
  }
  .about-caption-num {
    font-family: var(--display);
    font-size: 42px;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    display: block;
  }
  .about-caption-text {
    font-family: var(--body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
    display: block;
    margin-top: 6px;
  }
  .about-content { }
  .about-headline {
    font-family: var(--display);
    font-size: clamp(36px, 3.5vw, 54px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 28px;
  }
  .about-headline em { font-style: italic; color: var(--accent); }
  .about-body {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ink-mid);
    margin-bottom: 20px;
  }
  .about-body strong { font-weight: 500; color: var(--ink); }
  .about-credentials {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }
  .credential {
    background: var(--white);
    padding: 20px 24px;
  }
  .credential-title {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 6px;
  }
  .credential-value {
    font-family: var(--display);
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
  }

  /* ── SERVICES ─────────────────────────────────────────── */
  .services {
    padding: clamp(80px, 10vh, 140px) var(--gutter);
    background: var(--white);
  }
  .services-header {
    max-width: var(--max);
    margin: 0 auto 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
  }
  .services-headline {
    font-family: var(--display);
    font-size: clamp(36px, 3.5vw, 54px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--ink);
  }
  .services-headline em { font-style: italic; color: var(--accent); }
  .services-intro {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ink-mid);
  }
  .services-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }
  .service-card {
    background: var(--ground);
    padding: 48px 44px;
    transition: background 0.25s;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .service-card:hover { background: var(--ground-alt); }
  .service-index {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    color: var(--accent-warm);
    text-transform: uppercase;
  }
  .service-name {
    font-family: var(--display);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
  }
  .service-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--ink-mid);
    flex: 1;
  }
  .service-outcome {
    border-top: 1px solid var(--rule);
    padding-top: 20px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--accent);
    line-height: 1.5;
  }
  .service-outcome strong { font-weight: 500; display: block; margin-bottom: 4px; color: var(--ink-soft); text-transform: uppercase; font-size: 10px; letter-spacing: 0.14em; }
  .service-link {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
  }
  .service-link::after { content: '→'; }
  .service-link:hover { gap: 14px; }

  /* ── PROCESS ──────────────────────────────────────────── */
  .process {
    padding: clamp(80px, 10vh, 140px) var(--gutter);
    background: var(--ground);
  }
  .process-inner { max-width: var(--max); margin: 0 auto; }
  .process-header { margin-bottom: 72px; }
  .process-headline {
    font-family: var(--display);
    font-size: clamp(36px, 3.5vw, 54px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--ink);
    max-width: 600px;
    margin-bottom: 20px;
  }
  .process-headline em { font-style: italic; color: var(--accent); }
  .process-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--ink-mid);
    max-width: 520px;
    line-height: 1.7;
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 14%;
    right: 14%;
    height: 1px;
    background: var(--accent-warm);
    opacity: 0.4;
    z-index: 0;
  }
  .process-step {
    padding: 0 24px 0 0;
    position: relative;
    z-index: 1;
  }
  .step-marker {
    width: 56px;
    height: 56px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
  }
  .step-num {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
  }
  .step-phase {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-warm);
    margin-bottom: 12px;
  }
  .step-title {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.2;
  }
  .step-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--ink-mid);
  }

  /* ── OUTCOMES ─────────────────────────────────────────── */
  .outcomes {
    padding: clamp(80px, 10vh, 140px) var(--gutter);
    background: var(--accent);
    color: var(--white);
  }
  .outcomes-inner { max-width: var(--max); margin: 0 auto; }
  .outcomes-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 72px;
    align-items: end;
  }
  .outcomes-headline {
    font-family: var(--display);
    font-size: clamp(36px, 3.5vw, 54px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
  }
  .outcomes-headline em { font-style: italic; color: var(--accent-warm); }
  .outcomes-note {
    font-family: var(--mono);
    font-size: 11px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.06em;
  }
  .outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 72px;
  }
  .outcome-card {
    background: rgba(255,255,255,0.04);
    padding: 44px 40px;
  }
  .outcome-metric {
    font-family: var(--display);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
  }
  .outcome-metric span { font-size: 0.5em; color: var(--accent-warm); vertical-align: super; }
  .outcome-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
  }
  .outcome-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
  }

  /* case study strip */
  .case-study {
    border: 1px solid rgba(255,255,255,0.15);
    padding: 40px 48px;
    display: grid;
    grid-template-columns: 1fr 3fr auto;
    gap: 48px;
    align-items: center;
  }
  .case-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-warm);
    margin-bottom: 10px;
    display: block;
  }
  .case-name {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
  }
  .case-result {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
  }
  .case-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-warm);
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
  }
  .case-link::after { content: '→'; }
  .case-link:hover { gap: 14px; }

  /* ── TESTIMONIALS ─────────────────────────────────────── */
  .testimonials {
    padding: clamp(80px, 10vh, 140px) var(--gutter);
    background: var(--white);
  }
  .testimonials-inner { max-width: var(--max); margin: 0 auto; }
  .testimonials-header { margin-bottom: 64px; }
  .testimonials-headline {
    font-family: var(--display);
    font-size: clamp(36px, 3.5vw, 54px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--ink);
  }
  .testimonials-headline em { font-style: italic; color: var(--accent); }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }
  .testimonial-card {
    background: var(--ground);
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .testimonial-quote-mark {
    font-family: var(--display);
    font-size: 64px;
    line-height: 0.6;
    color: var(--accent-warm);
    opacity: 0.4;
    font-weight: 300;
  }
  .testimonial-text {
    font-family: var(--display);
    font-size: clamp(17px, 1.4vw, 21px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.55;
    color: var(--ink);
    flex: 1;
  }
  .testimonial-attribution {
    border-top: 1px solid var(--rule);
    padding-top: 24px;
  }
  .testimonial-name {
    font-family: var(--body);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 4px;
  }
  .testimonial-role {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .testimonials-disclaimer {
    margin-top: 28px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
    text-align: center;
  }

  /* ── FAQ ──────────────────────────────────────────────── */
  .faq {
    padding: clamp(80px, 10vh, 140px) var(--gutter);
    background: var(--ground);
  }
  .faq-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }
  .faq-left { position: sticky; top: 88px; }
  .faq-headline {
    font-family: var(--display);
    font-size: clamp(34px, 3vw, 50px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 24px;
  }
  .faq-headline em { font-style: italic; color: var(--accent); }
  .faq-note {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--ink-mid);
    margin-bottom: 32px;
  }
  .faq-contact-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
  }
  .faq-contact-link::after { content: '→'; }
  .faq-contact-link:hover { gap: 14px; }
  .faq-items { }
  .faq-item {
    border-top: 1px solid var(--rule);
  }
  .faq-item:last-child { border-bottom: 1px solid var(--rule); }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .faq-q-text {
    font-family: var(--display);
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.3;
  }
  .faq-icon {
    width: 28px;
    height: 28px;
    border: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--accent);
    transition: transform 0.25s, background 0.2s;
    font-family: var(--body);
    font-weight: 300;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: var(--white); }
  .faq-a {
    display: none;
    padding-bottom: 28px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ink-mid);
  }
  .faq-item.open .faq-a { display: block; }

  /* ── FINAL CTA ────────────────────────────────────────── */
  .final-cta {
    padding: clamp(80px, 10vh, 140px) var(--gutter);
    background: var(--ink);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: 'YOU\AFIRST';
    white-space: pre;
    position: absolute;
    font-family: var(--display);
    font-size: clamp(120px, 20vw, 280px);
    font-weight: 300;
    color: rgba(255,255,255,0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 0.9;
    pointer-events: none;
    letter-spacing: -0.02em;
  }
  .final-cta-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .final-cta-eyebrow { color: var(--accent-warm); margin-bottom: 28px; }
  .final-cta-headline {
    font-family: var(--display);
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
  }
  .final-cta-headline em { font-style: italic; color: var(--accent-warm); }
  .final-cta-sub {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    margin-bottom: 48px;
  }
  .final-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }
  .btn-gold {
    font-family: var(--body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--accent-warm);
    padding: 18px 40px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-gold:hover { background: #d4a44f; transform: translateY(-1px); }
  .btn-ghost {
    font-family: var(--body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 18px 40px;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
  .final-cta-guarantee {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
  }

  /* ── FOOTER ───────────────────────────────────────────── */
  footer {
    background: #080808;
    padding: 64px var(--gutter) 40px;
  }
  .footer-inner {
    max-width: var(--max);
    margin: 0 auto;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .footer-brand-name {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
  }
  .footer-brand-name span { color: var(--accent-warm); }
  .footer-tagline {
    font-family: var(--display);
    font-size: 15px;
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 280px;
  }
  .footer-contact-item {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
  }
  .footer-contact-item:hover { color: rgba(255,255,255,0.75); }
  .footer-col-title {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-links a {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.4;
  }
  .footer-links a:hover { color: var(--white); }
  .footer-langs { display: flex; flex-direction: column; gap: 10px; }
  .footer-lang {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
  }
  .footer-lang-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-warm);
    opacity: 0.6;
    flex-shrink: 0;
  }
  .footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-copy {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.2);
  }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.2);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-legal a:hover { color: rgba(255,255,255,0.5); }

  /* ── RESPONSIVE ───────────────────────────────────────── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { max-width: 100%; justify-self: auto; padding: 60px var(--gutter) 48px; }
    .hero-right { min-height: 40vh; padding: 48px 32px; }
    .problem-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-image-frame { max-height: 360px; }
    .about-caption { right: 0; }
    .services-header { grid-template-columns: 1fr; gap: 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 48px; }
    .process-steps::before { display: none; }
    .outcomes-header { grid-template-columns: 1fr; gap: 24px; }
    .outcomes-grid { grid-template-columns: 1fr 1fr; }
    .case-study { grid-template-columns: 1fr; gap: 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq-inner { grid-template-columns: 1fr; gap: 48px; }
    .faq-left { position: static; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .nav-links { display: none; }
  }

  @media (max-width: 580px) {
    .hero-proof { gap: 24px; }
    .process-steps { grid-template-columns: 1fr; }
    .outcomes-grid { grid-template-columns: 1fr; }
    .about-credentials { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .final-cta::before { display: none; }
    .services-grid { grid-template-columns: 1fr; }
  }

  /* ── SCROLL ANIMATIONS ────────────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }


