/*
Theme Name: Iamowino
Theme URI: https://iamowino.com
Author: George Owino
Author URI: https://iamowino.com
Description: A premium single-page executive brand strategist theme. Dark editorial design with crimson and gold accents. Built for George Owino, fully editable via Theme Options (requires Advanced Custom Fields).
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iamowino
*/

/* ==========================================================================
   This stylesheet is loaded by WordPress automatically (style.css is the
   theme's required root file). All design tokens, layout, and component
   styles live here exactly as in the original static build.
   ========================================================================== */

/* ===== TOKENS ===== */
    :root {
      --ink:        #0A0A0A;
      --surface:    #111111;
      --surface-2:  #181818;
      --surface-3:  #1F1F1F;
      --text:       #F0EBE1;
      --text-muted: #8A8078;
      --accent:     #C8381A;
      --accent-deep:#A02A10;
      --gold:       #B8973E;
      --gold-light: #D4B05A;
      --rule:       rgba(255,255,255,0.07);
      --rule-warm:  rgba(184,151,62,0.25);
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body:    'Inter', system-ui, sans-serif;
      --font-label:   'Barlow Condensed', 'Inter', sans-serif;
      --max-w: 1200px;
      --nav-h: 72px;
    }

    /* ===== RESET ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body {
      background: var(--ink);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    /* ===== UTILITIES ===== */
    .eyebrow {
      font-family: var(--font-label);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 48px;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--accent);
      color: var(--text);
      font-family: var(--font-label);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 14px 32px;
      border: none;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.2s ease;
      position: relative;
      overflow: hidden;
    }
    .btn-primary::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 100%; height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    .btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
    .btn-primary:hover::after { transform: scaleX(1); }
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--rule-warm);
      color: var(--gold);
      font-family: var(--font-label);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 12px 28px;
      transition: border-color 0.3s, background 0.3s;
    }
    .btn-ghost:hover {
      border-color: var(--gold);
      background: rgba(184,151,62,0.07);
    }

    /* ===== NAVIGATION ===== */
    nav {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: var(--nav-h);
      z-index: 1000;
      transition: background 0.4s ease, border-bottom 0.4s ease;
    }
    nav.scrolled {
      background: rgba(10,10,10,0.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--rule);
    }
    .nav-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 48px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-logo-mark {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      object-fit: contain;
    }
    .nav-logo-text {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 0.04em;
    }
    .nav-logo-text span {
      display: block;
      font-family: var(--font-label);
      font-size: 9px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-muted);
      font-weight: 500;
      margin-top: 2px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
      white-space: nowrap;
    }
    .nav-links a {
      font-family: var(--font-label);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-cta {
      font-family: var(--font-label);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text);
      background: var(--accent);
      padding: 10px 22px;
      transition: background 0.25s;
    }
    .nav-cta:hover { background: var(--accent-deep); color: var(--text) !important; }

    /* ===== HERO ===== */
    #home {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: var(--ink);
      overflow: hidden;
    }
    /* Subtle dot grid */
    #home::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
      background-size: 48px 48px;
      z-index: 0;
    }
    /* Diagonal accent lines */
    #home::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 80px,
        rgba(200,56,26,0.022) 80px,
        rgba(200,56,26,0.022) 81px
      );
      z-index: 0;
    }
    .hero-glow {
      position: absolute;
      top: 15%;
      right: 8%;
      width: 560px;
      height: 560px;
      background: radial-gradient(circle, rgba(200,56,26,0.14) 0%, rgba(184,151,62,0.04) 50%, transparent 70%);
      pointer-events: none;
      z-index: 1;
    }
    .hero-glow-2 {
      position: absolute;
      bottom: 10%;
      left: -5%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(184,151,62,0.07) 0%, transparent 70%);
      pointer-events: none;
      z-index: 1;
    }
    /* Watermark G, sits behind the portrait */
    .hero-watermark {
      position: absolute;
      right: -2%;
      top: 50%;
      transform: translateY(-52%);
      font-family: var(--font-display);
      font-size: clamp(280px, 34vw, 560px);
      font-weight: 700;
      font-style: italic;
      color: var(--accent);
      opacity: 0.05;
      line-height: 1;
      pointer-events: none;
      user-select: none;
      z-index: 0;
    }
    /* Portrait column */
    .hero-portrait {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      max-height: 72vh;
    }
    .hero-portrait-frame {
      position: relative;
      width: 100%;
      max-width: 420px;
    }
    .hero-portrait-frame img {
      width: 100%;
      height: auto;
      display: block;
      filter: saturate(1.04) contrast(1.03);
      position: relative;
      z-index: 2;
    }
    /* Glow that sits directly behind the portrait silhouette */
    .hero-portrait-glow {
      position: absolute;
      top: 8%;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      height: 90%;
      background: radial-gradient(ellipse at center, rgba(200,56,26,0.20) 0%, rgba(184,151,62,0.06) 45%, transparent 72%);
      z-index: 1;
      pointer-events: none;
    }
    /* Thin corner bracket framing the portrait, echoes the editorial corner accents elsewhere */
    .hero-portrait-bracket {
      position: absolute;
      inset: -16px;
      z-index: 0;
      pointer-events: none;
    }
    .hero-portrait-bracket::before,
    .hero-portrait-bracket::after {
      content: '';
      position: absolute;
      width: 36px;
      height: 36px;
      border-color: var(--rule-warm);
    }
    .hero-portrait-bracket::before {
      top: 0; left: 0;
      border-top: 1px solid var(--rule-warm);
      border-left: 1px solid var(--rule-warm);
    }
    .hero-portrait-bracket::after {
      bottom: 0; right: 0;
      border-bottom: 1px solid var(--rule-warm);
      border-right: 1px solid var(--rule-warm);
    }
    /* Caption beneath the portrait */
    .hero-portrait-caption {
      position: absolute;
      bottom: -36px;
      left: 0;
      right: 0;
      text-align: center;
      font-family: var(--font-label);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      z-index: 2;
    }
    /* Vertical rule, sits at the seam between text and portrait */
    .hero-side-rule {
      position: absolute;
      right: calc(0.8fr + 56px);
      right: 38%;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      z-index: 1;
    }
    .hero-side-rule-line {
      width: 1px;
      height: 120px;
      background: linear-gradient(to bottom, transparent, var(--rule-warm), transparent);
    }
    .hero-side-text {
      font-family: var(--font-label);
      font-size: 9px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-muted);
      writing-mode: vertical-rl;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 48px;
      width: 100%;
      padding-top: var(--nav-h);
      display: grid;
      grid-template-columns: 1.05fr 0.8fr;
      gap: 24px;
      align-items: center;
    }
    .hero-text {
      min-width: 0;
    }
    .hero-kicker {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 40px;
    }
    .hero-kicker::before {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: var(--accent);
    }
    .hero-headline {
      font-family: var(--font-display);
      font-size: clamp(52px, 7vw, 96px);
      font-weight: 700;
      font-style: italic;
      line-height: 0.95;
      letter-spacing: -0.02em;
      color: var(--text);
      max-width: 820px;
      margin-bottom: 32px;
    }
    .hero-headline em { font-style: italic; color: var(--accent); }
    .hero-subline {
      font-family: var(--font-body);
      font-size: 17px;
      font-weight: 300;
      line-height: 1.7;
      color: var(--text-muted);
      max-width: 520px;
      margin-bottom: 52px;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 72px;
    }
    /* Hero stat bar */
    .hero-stats {
      display: flex;
      align-items: flex-start;
      gap: 0;
      border-top: 1px solid var(--rule);
      padding-top: 28px;
      max-width: 100%;
    }
    .hero-stat {
      flex: 1;
      padding-right: 20px;
      border-right: 1px solid var(--rule);
      margin-right: 20px;
    }
    .hero-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
    .hero-stat-num {
      font-family: var(--font-display);
      font-size: 34px;
      font-weight: 700;
      font-style: italic;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 6px;
    }
    .hero-stat-label {
      font-family: var(--font-label);
      font-size: 9.5px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
      line-height: 1.4;
      white-space: nowrap;
    }
    .hero-scroll {
      position: absolute;
      bottom: 40px;
      left: 48px;
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 2;
    }
    .hero-scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, var(--accent), transparent);
    }
    .hero-scroll-text {
      font-family: var(--font-label);
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      writing-mode: vertical-rl;
    }

    /* ===== TICKER STRIP ===== */
    .ticker-strip {
      background: var(--accent);
      overflow: hidden;
      padding: 14px 0;
      position: relative;
      z-index: 10;
      border-top: 1px solid rgba(255,255,255,0.1);
      border-bottom: 1px solid rgba(0,0,0,0.2);
    }
    .ticker-track {
      display: flex;
      align-items: center;
      white-space: nowrap;
      animation: ticker 40s linear infinite;
      will-change: transform;
    }
    .ticker-track:hover { animation-play-state: paused; }
    @keyframes ticker {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 20px;
      padding: 0 36px;
      font-family: var(--font-label);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.92);
      flex-shrink: 0;
    }
    .ticker-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      flex-shrink: 0;
    }
    .ticker-dot-gold {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold-light);
      flex-shrink: 0;
    }

    /* ===== SERVICES ===== */
    #services {
      background: var(--ink);
      padding: 120px 0;
    }
    .services-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 64px;
      padding-bottom: 32px;
      border-bottom: 1px solid var(--rule);
    }
    .services-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 4.5vw, 56px);
      font-style: italic;
      font-weight: 700;
      line-height: 1.05;
      max-width: 480px;
    }
    .services-intro {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-muted);
      max-width: 360px;
      text-align: right;
    }
    /* Featured service */
    .service-featured {
      background: var(--surface-2);
      border: 1px solid var(--rule);
      border-left: 3px solid var(--accent);
      padding: 52px 56px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
      margin-bottom: 24px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s;
    }
    /* Background glow on featured card */
    .service-featured::after {
      content: '';
      position: absolute;
      top: -40px; right: -40px;
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(200,56,26,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .service-featured:hover { border-color: var(--accent); }
    .service-featured-badge {
      font-family: var(--font-label);
      font-size: 9px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 700;
      margin-bottom: 16px;
    }
    .service-featured-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 3.5vw, 44px);
      font-style: italic;
      font-weight: 700;
      line-height: 1.1;
      color: var(--text);
      margin-bottom: 16px;
    }
    .service-featured-desc {
      font-size: 14px;
      line-height: 1.75;
      color: var(--text-muted);
    }
    .service-featured-items {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-self: center;
    }
    .svc-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 14px 0;
      border-bottom: 1px solid var(--rule);
      font-size: 13px;
      color: var(--text-muted);
    }
    .svc-item:nth-last-child(-n+2) { border-bottom: none; }
    .svc-item::before {
      content: '';
      display: block;
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
      margin-top: 8px;
    }
    .services-secondary-label {
      margin-top: 48px;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--rule);
    }
    /* Supporting services grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      background: var(--rule);
    }
    .service-card {
      background: var(--surface-2);
      padding: 32px 28px;
      transition: background 0.3s, transform 0.2s;
      cursor: default;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 100%; height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }
    .service-card:hover { background: var(--surface-3); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card-num {
      font-family: var(--font-label);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.18em;
      color: var(--accent);
      margin-bottom: 20px;
      opacity: 0.7;
    }
    .service-card-title {
      font-family: var(--font-display);
      font-size: 18px;
      font-style: italic;
      font-weight: 600;
      line-height: 1.2;
      color: var(--text);
      margin-bottom: 10px;
    }
    .service-card-desc {
      font-size: 12px;
      line-height: 1.65;
      color: var(--text-muted);
    }

    /* ===== DIVIDER ELEMENT ===== */
    .section-divider {
      display: flex;
      align-items: center;
      gap: 24px;
      padding: 0 48px;
      max-width: var(--max-w);
      margin: 0 auto;
    }
    .section-divider-line {
      flex: 1;
      height: 1px;
      background: var(--rule);
    }
    .section-divider-mark {
      width: 8px;
      height: 8px;
      border: 1px solid var(--gold);
      transform: rotate(45deg);
      flex-shrink: 0;
    }

    /* ===== APPROACH ===== */
    #approach {
      background: var(--surface);
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }
    /* Decorative background numeral */
    .approach-bg-text {
      position: absolute;
      bottom: -30px;
      right: -20px;
      font-family: var(--font-display);
      font-size: 260px;
      font-weight: 700;
      font-style: italic;
      color: var(--text);
      opacity: 0.012;
      pointer-events: none;
      user-select: none;
    }
    /* Corner accent */
    .approach-corner {
      position: absolute;
      top: 0; left: 0;
      width: 120px;
      height: 120px;
      border-right: 1px solid var(--rule-warm);
      border-bottom: 1px solid var(--rule-warm);
      opacity: 0.4;
      pointer-events: none;
    }
    .approach-header {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      align-items: end;
      margin-bottom: 80px;
    }
    .approach-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 4.5vw, 56px);
      font-style: italic;
      font-weight: 700;
      line-height: 1.05;
    }
    .approach-desc {
      font-size: 15px;
      line-height: 1.75;
      color: var(--text-muted);
      max-width: 580px;
    }
    .approach-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      z-index: 1;
    }
    .approach-steps::before {
      content: '';
      position: absolute;
      top: 32px;
      left: 12.5%;
      right: 12.5%;
      height: 1px;
      background: linear-gradient(to right, var(--accent), var(--gold), var(--accent));
      opacity: 0.3;
    }
    .approach-step {
      padding: 0 28px 0 0;
      position: relative;
    }
    .approach-step:last-child { padding-right: 0; }
    .step-marker {
      width: 64px;
      height: 64px;
      border: 1px solid var(--rule-warm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 32px;
      position: relative;
      background: var(--surface);
      transition: border-color 0.3s, background 0.3s;
    }
    .step-marker::after {
      content: '';
      position: absolute;
      inset: 4px;
      border: 1px solid var(--rule);
    }
    .approach-step:hover .step-marker {
      border-color: var(--accent);
      background: rgba(200,56,26,0.06);
    }
    .step-num {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      font-style: italic;
      color: var(--accent);
    }
    .step-title {
      font-family: var(--font-label);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 14px;
    }
    .step-desc {
      font-size: 13px;
      line-height: 1.7;
      color: var(--text-muted);
    }

    /* ===== QUOTE BAND ===== */
    .quote-band {
      background: var(--ink);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
    }
    .quote-band::before {
      content: '"';
      position: absolute;
      left: -20px;
      top: -40px;
      font-family: var(--font-display);
      font-size: 300px;
      font-weight: 700;
      color: var(--accent);
      opacity: 0.04;
      line-height: 1;
      pointer-events: none;
    }
    .quote-text {
      font-family: var(--font-display);
      font-size: clamp(24px, 3.5vw, 44px);
      font-style: italic;
      font-weight: 600;
      line-height: 1.3;
      color: var(--text);
      text-align: center;
      max-width: 820px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .quote-text em { color: var(--accent); }
    .quote-attr {
      text-align: center;
      margin-top: 24px;
      font-family: var(--font-label);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      position: relative;
      z-index: 1;
    }
    .quote-attr::before {
      content: '';
      display: inline-block;
      width: 32px;
      height: 1px;
      background: var(--accent);
      vertical-align: middle;
      margin-right: 12px;
    }

    /* ===== TRUSTED BY ===== */
    #trusted {
      background: var(--surface-2);
      padding: 100px 0;
    }
    .trusted-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .trusted-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 3.5vw, 42px);
      font-style: italic;
      font-weight: 700;
      color: var(--text);
      margin-top: 16px;
    }
    .trusted-note {
      font-size: 13px;
      color: var(--text-muted);
      max-width: 560px;
      margin: 16px auto 0;
      line-height: 1.65;
    }
    .trusted-logos {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      background: var(--rule);
      border: 1px solid var(--rule);
    }
    .trusted-logo-cell {
      background: var(--surface-2);
      padding: 32px 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 8px;
      transition: background 0.25s;
    }
    .trusted-logo-cell:hover { background: var(--surface-3); }
    .brand-name {
      font-family: var(--font-label);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text);
      opacity: 0.65;
      transition: opacity 0.25s;
    }
    .trusted-logo-cell:hover .brand-name { opacity: 1; }
    .brand-sector {
      font-family: var(--font-label);
      font-size: 9px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .trusted-logos-2 {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      background: var(--rule);
      border: 1px solid var(--rule);
      border-top: none;
    }
    .trusted-logo-empty {
      background: var(--surface-2);
      opacity: 0.2;
      pointer-events: none;
    }

    /* ===== CONTACT ===== */
    #contact {
      background: var(--ink);
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }
    .contact-glow {
      position: absolute;
      bottom: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 700px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(200,56,26,0.09) 0%, transparent 70%);
      pointer-events: none;
    }
    /* Bottom corner accents */
    .contact-corner-tl {
      position: absolute;
      top: 60px; left: 48px;
      width: 80px; height: 80px;
      border-left: 1px solid var(--rule-warm);
      border-top: 1px solid var(--rule-warm);
      opacity: 0.5;
    }
    .contact-corner-br {
      position: absolute;
      bottom: 60px; right: 48px;
      width: 80px; height: 80px;
      border-right: 1px solid var(--rule-warm);
      border-bottom: 1px solid var(--rule-warm);
      opacity: 0.5;
    }
    .contact-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .contact-headline {
      font-family: var(--font-display);
      font-size: clamp(40px, 5vw, 64px);
      font-style: italic;
      font-weight: 700;
      line-height: 1.05;
      margin-top: 16px;
    }
    .contact-headline em { color: var(--accent); }
    .contact-right {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--rule);
    }
    .contact-item {
      padding: 32px 36px;
      border-bottom: 1px solid var(--rule);
      display: flex;
      align-items: center;
      gap: 24px;
      transition: background 0.25s;
    }
    .contact-item:last-child { border-bottom: none; }
    .contact-item:hover { background: var(--surface-2); }
    .contact-icon {
      width: 40px;
      height: 40px;
      border: 1px solid var(--rule-warm);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-icon svg {
      width: 16px;
      height: 16px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .contact-label {
      font-family: var(--font-label);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 4px;
    }
    .contact-value {
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 400;
      color: var(--text);
    }
    .contact-value a { transition: color 0.2s; }
    .contact-value a:hover { color: var(--gold); }

    /* ===== FOOTER ===== */
    footer {
      background: var(--surface);
      padding: 28px 0;
      border-top: 1px solid var(--rule);
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 48px;
    }
    .footer-copy {
      font-family: var(--font-label);
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .footer-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }
    .footer-links a {
      font-family: var(--font-label);
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-mark {
      font-family: var(--font-display);
      font-size: 14px;
      font-style: italic;
      color: var(--accent);
    }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ===== SECTION LABEL ===== */
    .section-label {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
    }
    .section-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--rule);
    }

    /* ===== MOBILE ===== */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .nav-toggle span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--text);
      transition: transform 0.3s, opacity 0.3s;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .container { padding: 0 32px; }
      .nav-inner, .hero-content, .footer-inner { padding-left: 32px; padding-right: 32px; }
      .nav-links { gap: 20px; }
      .nav-links a { font-size: 10px; }
      .nav-cta { padding: 10px 16px; font-size: 10px; white-space: nowrap; }
      .nav-logo-text { font-size: 16px; }
      .services-grid { grid-template-columns: repeat(3, 1fr); }
      .approach-steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
      .approach-steps::before { display: none; }
      .trusted-logos, .trusted-logos-2 { grid-template-columns: repeat(3, 1fr); }
      .hero-side-rule { display: none; }
      .hero-content { grid-template-columns: 1fr 0.7fr; gap: 16px; }
      .hero-portrait-frame { max-width: 320px; }
    }
    @media (max-width: 768px) {
      :root { --nav-h: 60px; }
      .nav-links { display: none; }
      .nav-cta-desktop { display: none; }
      .nav-toggle { display: flex; }
      .hero-headline { font-size: clamp(40px, 10vw, 68px); }
      .hero-scroll { display: none; }
      .hero-stats { flex-direction: column; gap: 24px; }
      .hero-stat { border-right: none; border-bottom: 1px solid var(--rule); padding-bottom: 16px; padding-right: 0; margin-right: 0; }
      .hero-stat:last-child { border-bottom: none; }
      .hero-content { grid-template-columns: 1fr; gap: 28px; padding-top: 96px; padding-bottom: 48px; }
      .hero-portrait { order: -1; max-height: 38vh; margin-top: 0; margin-bottom: 8px; }
      .hero-portrait-frame { max-width: 200px; margin: 0 auto; }
      .hero-portrait-caption { font-size: 8.5px; bottom: -28px; letter-spacing: 0.12em; }
      .hero-kicker { margin-top: 12px; }
      #home { align-items: flex-start; min-height: auto; }
      .hero-watermark { opacity: 0.035; }
      .service-featured { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
      .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
      .services-intro { text-align: left; max-width: 100%; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .approach-header { grid-template-columns: 1fr; gap: 24px; }
      .approach-steps { grid-template-columns: 1fr 1fr; gap: 36px; }
      .trusted-logos, .trusted-logos-2 { grid-template-columns: repeat(2, 1fr); }
      .contact-inner { grid-template-columns: 1fr; gap: 48px; }
      .container, .nav-inner, .hero-content, .footer-inner { padding-left: 24px; padding-right: 24px; }
      .contact-corner-tl, .contact-corner-br { display: none; }
    }
    @media (prefers-reduced-motion: reduce) {
      .ticker-track { animation: none; }
      .reveal { opacity: 1; transform: none; transition: none; }
    }