  @font-face {
    font-family: 'Instrument Serif';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/instrument-serif-latin-400-normal.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Instrument Serif';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/instrument-serif-latin-400-italic.woff2') format('woff2');
  }
  @font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/dm-sans-latin-400-normal.woff2') format('woff2');
  }
  @font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/dm-sans-latin-500-normal.woff2') format('woff2');
  }
  @font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/dm-sans-latin-700-normal.woff2') format('woff2');
  }

  :root {
    --bg: #0e0e0e;
    --bg-raised: #161616;
    --bg-card: #1a1a1a;
    --text: #e8e4df;
    --text-dim: #8a8580;
    --text-muted: #908a85;
    --accent: #d4a24e;
    --accent-dim: #b8893f;
    --border: #2a2826;
    --serif: 'Instrument Serif', Georgia, serif;
    --sans: 'DM Sans', -apple-system, sans-serif;
  }

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

  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  ::selection {
    background: var(--accent);
    color: var(--bg);
  }

  /* ---- SKIP LINK ---- */
  .skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--accent);
    color: var(--bg);
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 4px 4px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 200;
    text-decoration: none;
    transition: top 0.2s;
  }

  .skip-link:focus {
    top: 0;
  }

  /* ---- FOCUS STYLES ---- */
  *:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
  }

  input:focus-visible,
  textarea:focus-visible {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(212, 162, 78, 0.3);
  }

  /* ---- REDUCED MOTION ---- */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }

    .hero-eyebrow, .hero h1, .hero-sub, .hero-actions {
      opacity: 1;
    }

    .reveal {
      opacity: 1;
      transform: none;
    }
  }

  /* ---- NAV ---- */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(14,14,14,0.8);
    border-bottom: 1px solid var(--border);
    transition: transform 0.3s ease;
  }

  .nav-logo {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
  }

  .nav-logo span {
    color: var(--accent);
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.2s;
  }

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

  .nav-cta {
    background: var(--accent) !important;
    color: var(--bg) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-weight: 700 !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover {
    background: var(--accent-dim) !important;
  }

  /* ---- HERO ---- */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
  }

  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.1;
    font-weight: 400;
    max-width: 900px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--accent);
  }

  .hero-sub {
    font-size: 1.15rem;
    color: var(--text-dim);
    max-width: 580px;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
  }

  .btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--bg);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    border: 2px solid var(--accent);
  }

  .btn-primary:hover {
    background: transparent;
    color: var(--accent);
  }

  .btn-secondary {
    display: inline-block;
    color: var(--text-dim);
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all 0.25s ease;
  }

  .btn-secondary:hover {
    border-color: var(--text-dim);
    color: var(--text);
  }

  .hero-grain {
    position: absolute;
    top: 0;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(212,162,78,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
  }

  /* ---- DIVIDER ---- */
  .divider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .divider hr {
    border: none;
    border-top: 1px solid var(--border);
  }

  /* ---- PROBLEM ---- */
  .problem {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
  }

  .problem-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
  }

  .problem h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
  }

  .problem-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 0.5rem;
  }

  .problem-point {
    padding-left: 1.5rem;
    border-left: 2px solid var(--border);
    transition: border-color 0.3s;
  }

  .problem-point:hover {
    border-left-color: var(--accent);
  }

  .problem-point h3 {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text);
  }

  .problem-point p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.7;
  }

  /* ---- SERVICES ---- */
  .services {
    background: var(--bg-raised);
    padding: 6rem 2rem;
  }

  .services-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .services .section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
  }

  .services h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    max-width: 600px;
    margin-bottom: 3.5rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .service-card:hover::before {
    transform: scaleX(1);
  }

  .service-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
  }

  .service-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    font-family: var(--sans);
  }

  .service-card h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .service-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
  }

  /* ---- APPROACH ---- */
  .approach {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
  }

  .approach .section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
  }

  .approach h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    max-width: 700px;
    margin-bottom: 3.5rem;
  }

  .approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .approach-item {
    padding: 2.5rem;
    background: var(--bg-raised);
    border-radius: 6px;
    border: 1px solid var(--border);
    position: relative;
  }

  .approach-item .num {
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--border);
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    line-height: 1;
  }

  .approach-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--accent);
  }

  .approach-item p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
  }

  /* ---- CREDENTIALS ---- */
  .credentials {
    background: var(--bg-raised);
    padding: 6rem 2rem;
  }

  .credentials-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .credentials .section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
  }

  .credentials h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }

  .credentials-text {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .stat {
    padding: 1.5rem;
    background: var(--bg);
    border-radius: 6px;
    border: 1px solid var(--border);
  }

  .stat-number {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
  }

  /* ---- QUOTE BLOCK ---- */
  .quote-block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
  }

  .quote-block blockquote {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-style: italic;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: var(--text);
  }

  .quote-block cite {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-style: normal;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }

  /* ---- CTA ---- */
  .cta {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
  }

  .cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(212,162,78,0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    max-width: 700px;
    margin: 0 auto 1rem;
    position: relative;
  }

  .cta p {
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    position: relative;
  }

  .cta .btn-primary {
    position: relative;
  }

  /* ---- CONTACT FORM ---- */
  .contact-form {
    max-width: 580px;
    margin: 0 auto;
    text-align: left;
    position: relative;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.8rem 1rem;
    color: var(--text);
    font-family: var(--sans);
    font-size: 0.9rem;
    transition: border-color 0.2s;
    outline: none;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--text-muted);
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--accent);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 100px;
  }

  .contact-form .btn-primary {
    width: 100%;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 0.9rem;
    text-align: center;
  }

  .honeypot {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
  }

  /* ---- FOOTER ---- */
  footer {
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-left {
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  .footer-left a {
    color: var(--text-dim);
    text-decoration: none;
  }

  .footer-right {
    display: flex;
    gap: 1.5rem;
  }

  .footer-right a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
  }

  .footer-right a:hover {
    color: var(--accent);
  }

  /* ---- ANIMATIONS ---- */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---- MOBILE NAV ---- */
  /* ---- RESPONSIVE ---- */
  @media (max-width: 900px) {
    .problem {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    .services-grid {
      grid-template-columns: 1fr;
    }

    .approach-grid {
      grid-template-columns: 1fr;
    }

    .credentials-inner {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
  }

  @media (max-width: 640px) {
    nav {
      padding: 1rem 1.25rem;
    }

    .nav-links {
      display: none;
    }

    .hero {
      padding: 7rem 1.25rem 3rem;
    }

    .hero-sub {
      font-size: 1rem;
    }

    .hero-actions {
      flex-direction: column;
      align-items: stretch;
      text-align: center;
    }

    .problem, .services, .approach, .credentials, .quote-block, .cta {
      padding-left: 1.25rem;
      padding-right: 1.25rem;
    }

    .stat-row {
      grid-template-columns: 1fr;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    footer {
      flex-direction: column;
      text-align: center;
      padding-left: 1.25rem;
      padding-right: 1.25rem;
    }
  }
