/* Custom accent font — Road Rage by Joiaco (dafont.com) */
  /* Drop road-rage.woff2 and/or road-rage.ttf into this folder to activate */
  @font-face {
    font-family: 'Road Rage';
    src: url('../fonts/road-rage.woff2') format('woff2'),
         url('../fonts/road-rage.ttf') format('truetype'),
         url('../fonts/road-rage.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  :root {
    --paper: #F2EBDE;
    --paper-warm: #EBE2D0;
    --ink: #0A0A0A;
    --ink-soft: #1A1A1A;
    --copper: #DD4B0A;
    --copper-deep: #A5360A;
    --copper-glow: #FF6B35;
    --cream: #FAF5EA;
    --line: #C9BBA1;
    --line-soft: #DDD2BA;
    --moss: #2F5037;
    --text: #14181E;
    --text-soft: #4A5160;
    --shadow-lg: 0 30px 60px -20px rgba(10,10,10,0.35);
    --shadow-md: 0 12px 30px -10px rgba(10,10,10,0.22);
    --shadow-sm: 0 4px 12px rgba(10,10,10,0.1);
  }

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

/* ── Anchor reset: any anchor with a class doesn't inherit browser defaults ── */
a[class] {
  color: inherit;
  text-decoration: none;
}
a[class]:hover,
a[class]:focus {
  text-decoration: none;
}



  html { scroll-behavior: smooth; }

  body {
    font-family: 'Geist', system-ui, sans-serif;
    background: var(--paper);
    color: var(--text);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* Paper grain texture */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.6 0 0 0 0 0.55 0 0 0 0 0.45 0 0 0 0.25 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
  }

  .container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 72px;
    position: relative;
    z-index: 2;
  }
  @media (max-width: 1100px) {
    .container { padding: 0 48px; }
  }
  @media (max-width: 800px) {
    .container { padding: 0 32px; }
  }
  @media (max-width: 500px) {
    .container { padding: 0 22px; }
  }

  /* ── TYPE ─────────────────────────────────────── */
  .display {
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: 'opsz' 144;
    font-weight: 600;
    line-height: 0.94;
    letter-spacing: -0.025em;
  }
  .display em {
    font-family: 'Road Rage', 'Bangers', 'Impact', sans-serif;
    font-style: normal;
    color: var(--copper);
    font-weight: 400;
    letter-spacing: 0.01em;
  }
  .display-heavy {
    font-family: 'Anton', 'Impact', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: -0.005em;
    line-height: 0.92;
  }
  .display-heavy em {
    font-family: 'Road Rage', 'Bangers', 'Impact', sans-serif;
    font-style: normal;
    color: var(--copper);
    display: inline-block;
    letter-spacing: 0.01em;
  }
  .tagline {
    font-family: 'Road Rage', 'Bangers', 'Impact', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
    transform: skewX(-3deg);
    display: inline-block;
    white-space: nowrap;
  }
  .tagline.underlined {
    position: relative;
    padding-bottom: 0.18em;
  }
  .tagline.underlined::after {
    content: '';
    position: absolute;
    left: 4%;
    right: 4%;
    bottom: 0;
    height: 2px;
    background: currentColor;
    transform: skewX(-12deg);
  }
  .eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--copper);
    font-weight: 500;
  }
  .eyebrow .star {
    color: var(--copper);
    margin: 0 6px;
  }
  .lede {
    font-size: 19px;
    line-height: 1.55;
    color: var(--text-soft);
    max-width: 60ch;
  }

  /* ── ANNOUNCEMENT BAR ─────────────────────────── */
  .annc {
    background: var(--ink);
    color: var(--cream);
    padding: 14px 0;
    font-size: 13px;
    text-align: center;
    position: relative;
    z-index: 10;
    font-weight: 500;
  }
  .annc strong { color: var(--copper-glow); }
  .annc .pipe { opacity: 0.4; margin: 0 14px; }
  @media (max-width: 700px) {
    .annc .hide-mobile { display: none; }
  }

  /* ── HEADER ───────────────────────────────────── */
  .header {
    background: var(--ink);
    border-bottom: 1px solid rgba(250, 245, 234, 0.08);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background-color: rgba(10, 10, 10, 0.94);
    box-shadow: 0 1px 0 rgba(255, 107, 53, 0.18);
  }
  .header .logo {
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }
  .header.show-logo .logo {
    opacity: 1;
    pointer-events: auto;
  }
  /* Override .logo color for header (dark bg context) */
  .header .logo { color: var(--cream); }
  .header .logo .top { color: var(--cream); }
  .header .logo .bot { color: rgba(250, 245, 234, 0.55); }
  .header .logo-mark {
    background: transparent;
    border-color: rgba(255,255,255,0.1);
  }
  /* Header nav + CTAs on black */
  .header .nav a {
    color: rgba(250, 245, 234, 0.78);
  }
  .header .nav a:hover { color: var(--copper-glow); }
  .header .phone-link {
    color: var(--cream);
  }
  .header .phone-link svg { color: var(--copper-glow); }
  .header .menu-toggle {
    color: var(--cream);
    border-color: rgba(250, 245, 234, 0.3);
  }
  .header .menu-toggle:hover {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    padding-bottom: 24px;
    gap: 32px;
  }
  .logo {
    font-family: 'Anton', 'Impact', sans-serif;
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 0.02em;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    text-transform: uppercase;
  }
  .logo-mark {
    width: 92px;
    aspect-ratio: 900 / 463;
    background: transparent;
    border-radius: 3px;
    display: block;
    overflow: hidden;
    flex-shrink: 0;
  }
  .logo-mark img {
    width: 100%;
    height: auto;
    display: block;
  }
  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .logo-text .top {
    font-size: 22px;
    letter-spacing: 0.01em;
  }
  .logo-text .bot {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.25em;
    font-weight: 500;
    color: var(--text-soft);
    margin-top: 4px;
    text-transform: uppercase;
  }
  .nav { display: flex; align-items: center; gap: 36px; }
  .nav a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav a:hover { color: var(--copper); }
  .header-cta {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
  }
  .phone-link svg { color: var(--copper); }
  .btn-primary {
    background: var(--copper);
    color: var(--cream);
    padding: 14px 26px;
    border-radius: 2px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14.5px;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
  }
  .btn-primary:hover {
    background: var(--copper-deep);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }
  .btn-secondary {
    background: transparent;
    color: var(--ink);
    padding: 14px 26px;
    border-radius: 2px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14.5px;
    border: 1.5px solid var(--ink);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-secondary:hover { background: var(--ink); color: var(--cream); }
  .menu-toggle {
    display: none;
    background: none;
    border: 1.5px solid var(--ink);
    border-radius: 2px;
    cursor: pointer;
    color: var(--ink);
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s, color 0.2s;
  }
  .menu-toggle:hover { background: var(--ink); color: var(--cream); }
  .menu-toggle .x-icon { display: none; }
  body.menu-open .menu-toggle .bars-icon { display: none; }
  body.menu-open .menu-toggle .x-icon { display: block; }

  /* MOBILE DRAWER */
  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(380px, 88vw);
    background: var(--ink);
    border-left: 1px solid rgba(250, 245, 234, 0.08);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding: 32px 36px 40px;
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    color: var(--cream);
  }
  body.menu-open .mobile-nav { transform: translateX(0); }
  .mobile-nav .logo, .mobile-nav .logo .top { color: var(--cream); }
  .mobile-nav .logo .bot { color: rgba(250, 245, 234, 0.55); }
  .mobile-nav-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(250, 245, 234, 0.12);
    margin-bottom: 28px;
  }
  .mobile-nav-close {
    background: none;
    border: 1.5px solid rgba(250, 245, 234, 0.3);
    border-radius: 2px;
    cursor: pointer;
    color: var(--cream);
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    padding: 0;
    transition: background 0.2s, color 0.2s;
  }
  .mobile-nav-close:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
  .mobile-nav a.m-link {
    display: block;
    padding: 18px 0;
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--cream);
    text-decoration: none;
    border-bottom: 1px solid rgba(250, 245, 234, 0.1);
    letter-spacing: -0.01em;
    transition: color 0.2s, padding-left 0.2s;
  }
  .mobile-nav a.m-link:hover { color: var(--copper-glow); padding-left: 6px; }
  .mobile-nav-cta {
    margin-top: auto;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .mobile-nav-cta .phone-big {
    display: flex;
    flex-direction: column;
    padding: 18px 22px;
    background: rgba(250, 245, 234, 0.06);
    border: 1px solid rgba(250, 245, 234, 0.18);
    border-radius: 2px;
    text-decoration: none;
    color: var(--cream);
  }
  .mobile-nav-cta .phone-big small {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(250, 245, 234, 0.6);
    margin-bottom: 4px;
  }
  .mobile-nav-cta .phone-big strong {
    font-family: 'Anton', 'Impact', sans-serif;
    font-size: 26px;
    color: var(--cream);
    letter-spacing: 0.02em;
  }
  .mobile-nav-cta .btn-primary {
    justify-content: center;
    padding: 18px;
    font-size: 15px;
  }

  /* MOBILE OVERLAY */
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 150;
  }
  body.menu-open .mobile-overlay { opacity: 1; visibility: visible; }
  body.menu-open { overflow: hidden; }

  @media (max-width: 920px) {
    .nav { display: none; }
    .header-cta .btn-primary { display: none; }
    .menu-toggle { display: inline-flex; }
  }
  @media (max-width: 600px) {
    .header-cta .phone-link span:last-child { display: none; }
  }

  /* ── HERO ─────────────────────────────────────── */
  .hero {
    padding: 88px 0 110px;
    position: relative;
    overflow: hidden;
    background: #050505;
    color: var(--cream);
    isolation: isolate;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center right;
    z-index: -2;
    opacity: 0.95;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(100deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.78) 30%, rgba(0,0,0,0.52) 58%, rgba(0,0,0,0.35) 100%),
      linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, transparent 30%, rgba(0,0,0,0.5) 100%);
    z-index: -1;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(440px, 560px);
    gap: 56px;
    align-items: center;
    min-height: 70vh;
  }
  .hero-logo {
    display: block;
    width: clamp(300px, 36vw, 520px);
    aspect-ratio: 900 / 463;
    overflow: hidden;
    margin-bottom: 28px;
    transform-origin: 0 0;
    will-change: transform, opacity;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .hero-logo img {
    width: 100%;
    height: auto;
    display: block;
  }
  .hero-tagline {
    font-family: 'Road Rage', 'Bangers', 'Impact', sans-serif;
    font-size: min(46px, 5.2vw);
    letter-spacing: 0.02em;
    color: var(--cream);
    transform: skewX(-3deg);
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 40px;
    line-height: 1;
    white-space: nowrap;
  }
  .hero-tagline::after {
    content: '';
    position: absolute;
    left: 0;
    right: 8%;
    bottom: 0;
    height: 2px;
    background: var(--cream);
    transform: skewX(-12deg);
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--copper-glow);
  }
  .hero-eyebrow .eyebrow { color: var(--copper-glow); }
  .hero h1 {
    font-size: clamp(34px, 4vw, 56px);
    margin-bottom: 28px;
    color: var(--cream);
    font-family: 'Anton', 'Impact', sans-serif;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -0.005em;
    max-width: 18ch;
  }
  .hero h1 em {
    font-family: 'Road Rage', 'Bangers', 'Impact', sans-serif;
    font-style: normal;
    color: var(--copper-glow);
    display: inline-block;
    letter-spacing: 0.01em;
  }
  .hero h1 .underline { display: inline; }
  .hero h1 .underline::after { display: none; }
  .hero-sub {
    font-size: 17.5px;
    color: rgba(250, 245, 234, 0.85);
    margin-bottom: 40px;
    max-width: 52ch;
    line-height: 1.55;
  }
  .hero-ctas {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }
  .hero-ctas .btn-primary {
    padding: 20px 32px;
    font-size: 16px;
    box-shadow: 0 12px 30px -8px rgba(221, 75, 10, 0.5);
  }
  .hero-call {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
  }
  .hero-call strong {
    font-family: 'Anton', 'Impact', sans-serif;
    font-size: 24px;
    color: var(--cream);
    letter-spacing: 0.01em;
  }
  .hero-call small {
    display: block;
    font-size: 11px;
    color: rgba(250, 245, 234, 0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .hero-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    padding-top: 36px;
    border-top: 1px solid rgba(250, 245, 234, 0.18);
  }
  .trust-item .num {
    font-family: 'Anton', 'Impact', sans-serif;
    font-size: 38px;
    font-weight: 400;
    color: var(--cream);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
  }
  .trust-item .lbl {
    font-size: 11.5px;
    color: rgba(250, 245, 234, 0.65);
    margin-top: 8px;
    letter-spacing: 0.04em;
    line-height: 1.35;
  }
  .trust-item .stars {
    color: var(--copper-glow);
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 6px;
    line-height: 1;
  }

  /* HERO FORM */
  .hero-form-wrap {
    position: relative;
  }
  .hero-form {
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(32px) saturate(160%);
    -webkit-backdrop-filter: blur(32px) saturate(160%);
    border: 1px solid rgba(250, 245, 234, 0.22);
    padding: 44px 40px 40px;
    border-radius: 4px;
    position: relative;
    color: var(--cream);
    box-shadow:
      0 32px 80px -10px rgba(0, 0, 0, 0.7),
      0 8px 24px -4px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(250, 245, 234, 0.14);
  }
  .hero-form::before { display: none; }
  .form-eyebrow {
    display: inline-block;
    background: var(--copper);
    color: var(--cream);
    padding: 6px 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .form-headline {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -0.015em;
    color: var(--cream);
    font-weight: 500;
  }
  .form-sub {
    font-size: 13.5px;
    color: rgba(250, 245, 234, 0.7);
    margin-bottom: 28px;
    line-height: 1.55;
  }
  .form-row { margin-bottom: 14px; }
  .form-row label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: rgba(250, 245, 234, 0.65);
    margin-bottom: 7px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .form-row input,
  .form-row select {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid rgba(250, 245, 234, 0.18);
    background: rgba(250, 245, 234, 0.05);
    font-family: inherit;
    font-size: 15px;
    color: var(--cream);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  }
  .form-row input::placeholder { color: rgba(250, 245, 234, 0.35); }
  .form-row select { color: var(--cream); appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23FAF5EA' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 36px; }
  .form-row select option { background: var(--ink); color: var(--cream); }
  .form-row input:focus,
  .form-row select:focus {
    border-color: var(--copper-glow);
    background: rgba(250, 245, 234, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.18);
  }
  .form-submit {
    width: 100%;
    background: var(--copper);
    color: var(--cream);
    border: none;
    padding: 18px;
    font-size: 15.5px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    margin-top: 12px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 20px -4px rgba(221, 75, 10, 0.45);
  }
  .form-submit:hover {
    background: var(--copper-glow);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px -4px rgba(255, 107, 53, 0.55);
  }
  .form-finepoint {
    text-align: center;
    font-size: 11.5px;
    color: rgba(250, 245, 234, 0.5);
    margin-top: 16px;
    line-height: 1.5;
  }
  .form-finepoint svg { vertical-align: -2px; margin-right: 4px; color: var(--copper-glow); }
  /* Success state on glass form */
  .hero-form .success-state h3 { color: var(--cream); }
  .hero-form .success-state p { color: rgba(250, 245, 234, 0.78); }
  .hero-form .success-state svg { color: var(--copper-glow); }
  .hero-form .success-state p strong { color: var(--copper-glow); }
  .form-finepoint svg { vertical-align: -2px; margin-right: 4px; color: var(--moss); }

  @media (max-width: 980px) {
    .hero { padding: 60px 0 90px; }
    .hero-grid { grid-template-columns: 1fr; gap: 56px; min-height: auto; }
    .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .hero h1 { max-width: none; }
    .trust-item { text-align: center; }
  }
  @media (max-width: 600px) {
    .hero { padding: 44px 0 72px; }
    .hero h1 { font-size: 32px; }
    .hero-logo { width: 300px; margin-bottom: 20px; }
    .hero-tagline { font-size: 26px; margin-bottom: 28px; }
    .hero-form { padding: 36px 28px 32px; }
    .hero-form::before { inset: -6px -6px 6px 6px; }
    .trust-item .num { font-size: 30px; }
  }

  /* ── LOGOS / SOCIAL PROOF STRIP ───────────────── */
  .proof-strip {
    background: var(--ink);
    color: var(--cream);
    padding: 36px 0;
    position: relative;
  }
  .proof-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 36px;
  }
  .proof-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(250, 245, 234, 0.6);
  }
  .proof-badges {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    align-items: center;
  }
  .badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--cream);
    opacity: 0.92;
  }
  .badge svg { color: var(--copper-glow); flex-shrink: 0; }

  /* ── PAIN / PROBLEM SECTION ───────────────────── */
  .pain {
    padding: 140px 0 130px;
    position: relative;
  }
  .pain-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 96px;
    align-items: start;
  }
  .pain h2 {
    font-size: clamp(36px, 4.5vw, 56px);
    margin-bottom: 28px;
  }
  .pain-list {
    list-style: none;
    margin-top: 8px;
  }
  .pain-list li {
    display: flex;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .pain-list li:last-child { border-bottom: none; }
  .pain-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--paper-warm);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--copper);
    margin-top: 2px;
  }
  .pain-list h4 {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .pain-list p {
    color: var(--text-soft);
    font-size: 15.5px;
    line-height: 1.6;
  }
  @media (max-width: 900px) {
    .pain { padding: 88px 0 88px; }
    .pain-grid { grid-template-columns: 1fr; gap: 44px; }
  }

  /* ── SERVICES ─────────────────────────────────── */
  .services {
    background: var(--ink);
    color: var(--cream);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }
  .services::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 65, 12, 0.18) 0%, transparent 70%);
  }
  .services-head {
    max-width: 720px;
    margin-bottom: 80px;
  }
  .services-head .eyebrow { color: var(--copper-glow); }
  .services-head h2 {
    font-size: clamp(36px, 4.5vw, 56px);
    color: var(--cream);
    margin: 22px 0 22px;
  }
  .services-head .lede { color: rgba(250, 245, 234, 0.72); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(250, 245, 234, 0.1);
    border: 1px solid rgba(250, 245, 234, 0.1);
  }
  .service-card,
  a.service-card,
  a.service-card:link,
  a.service-card:visited,
  a.service-card:hover,
  a.service-card:active {
    background: var(--ink);
    padding: 56px 48px;
    position: relative;
    transition: background 0.3s;
    cursor: pointer;
    text-decoration: none !important;
    color: var(--cream);
    display: block;
  }
  .service-card *,
  a.service-card * {
    text-decoration: none !important;
  }
  .service-card:hover {
    background: var(--ink-soft);
  }
  .service-card:hover .service-arrow {
    transform: translateX(6px);
    color: var(--copper-glow);
  }
  .service-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--copper-glow);
    letter-spacing: 0.08em;
    margin-bottom: 24px;
  }
  .service-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--cream);
    letter-spacing: -0.015em;
    line-height: 1.1;
  }
  .service-card p {
    color: rgba(250, 245, 234, 0.7);
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 32px;
  }
  .service-arrow {
    color: var(--cream);
    transition: transform 0.3s, color 0.3s;
    display: inline-block;
  }
  @media (max-width: 800px) {
    .services { padding: 88px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 44px 32px; }
  }

  /* ── PROCESS ──────────────────────────────────── */
  .process {
    padding: 140px 0;
  }
  .process-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 88px;
  }
  .process-head h2 {
    font-size: clamp(36px, 4.5vw, 56px);
    margin: 20px 0 22px;
  }
  .process-head .eyebrow {
    display: inline-block;
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: repeating-linear-gradient(to right, var(--line) 0, var(--line) 6px, transparent 6px, transparent 12px);
  }
  .step {
    position: relative;
    text-align: left;
  }
  .step-num {
    width: 70px;
    height: 70px;
    background: var(--paper);
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
  }
  .step:nth-child(2) .step-num { background: var(--copper); color: var(--cream); border-color: var(--copper); }
  .step h4 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .step p {
    color: var(--text-soft);
    font-size: 14.5px;
    line-height: 1.6;
  }
  @media (max-width: 900px) {
    .process { padding: 88px 0; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 56px 36px; }
    .process-steps::before { display: none; }
  }
  @media (max-width: 500px) {
    .process-steps { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ── GALLERY / WORK ───────────────────────────── */
  .work {
    background: var(--paper-warm);
    padding: 140px 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
  }
  .work-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 72px;
    gap: 48px;
  }
  .work-head h2 {
    font-size: clamp(36px, 4.5vw, 54px);
    margin-top: 18px;
    max-width: 14ch;
  }
  .work-head p {
    color: var(--text-soft);
    font-size: 16px;
    max-width: 38ch;
    text-align: right;
    line-height: 1.6;
  }
  .work-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr;
    grid-template-rows: 340px 260px;
    gap: 24px;
  }
  .work-card {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background: var(--ink);
    cursor: pointer;
    transition: transform 0.4s;
  }
  .work-card:hover { transform: translateY(-4px); }
  .work-card:nth-child(1) { grid-row: span 2; }
  .work-img {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #1F2A3C 0%, #0E1A2B 100%);
    overflow: hidden;
  }
  .work-img svg, .work-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .work-tag {
    position: absolute;
    top: 22px;
    left: 22px;
    background: var(--cream);
    color: var(--ink);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    padding: 6px 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
  }
  .work-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 26px 28px;
    background: linear-gradient(to top, rgba(14, 26, 43, 0.95) 30%, transparent);
    color: var(--cream);
    z-index: 2;
  }
  .work-info h4 {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 6px;
  }
  .work-info p { font-size: 13px; color: rgba(250, 245, 234, 0.7); }
  @media (max-width: 900px) {
    .work { padding: 88px 0; }
    .work-head { flex-direction: column; align-items: start; gap: 20px; }
    .work-head p { text-align: left; }
    .work-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 240px 240px 240px;
    }
    .work-card:nth-child(1) { grid-row: span 1; grid-column: span 2; }
  }
  @media (max-width: 500px) {
    .work-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .work-card:nth-child(1) { grid-column: span 1; }
  }

  /* ── TESTIMONIALS ─────────────────────────────── */
  .testimonials {
    padding: 140px 0;
  }
  .testimonials-head {
    max-width: 680px;
    margin: 0 auto 76px;
    text-align: center;
  }
  .testimonials-head h2 {
    font-size: clamp(34px, 4.5vw, 52px);
    margin: 20px 0;
  }
  .testimonials-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--cream);
    border: 1px solid var(--line-soft);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 18px;
  }
  .testimonials-rating .stars { color: var(--copper); letter-spacing: 1.5px; }
  .testimonials-rating strong { color: var(--ink); font-weight: 600; }

  .t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .t-card {
    background: var(--cream);
    border: 1px solid var(--line-soft);
    padding: 40px 36px;
    border-radius: 2px;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .t-stars {
    color: var(--copper);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 22px;
  }
  .t-quote {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 32px;
    letter-spacing: -0.005em;
    font-weight: 400;
    flex: 1;
  }
  .t-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--line-soft);
  }
  .t-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--copper);
    color: var(--cream);
    display: grid;
    place-items: center;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
  }
  .t-meta {
    line-height: 1.3;
  }
  .t-name {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink);
  }
  .t-loc {
    font-size: 12.5px;
    color: var(--text-soft);
    margin-top: 2px;
  }
  .t-google {
    position: absolute;
    top: 28px;
    right: 28px;
    opacity: 0.85;
  }
  @media (max-width: 900px) {
    .testimonials { padding: 88px 0; }
    .t-grid { grid-template-columns: 1fr; }
  }

  /* ── GUARANTEE ────────────────────────────────── */
  .guarantee {
    background: var(--ink);
    color: var(--cream);
    padding: 130px 0;
    position: relative;
    overflow: hidden;
  }
  .guarantee::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 65, 12, 0.2) 0%, transparent 70%);
  }
  .guarantee-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 96px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .guarantee-seal {
    width: 280px;
    height: 280px;
    border: 2px solid var(--copper);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto;
    position: relative;
    text-align: center;
  }
  .guarantee-seal::before {
    content: '';
    position: absolute;
    inset: -16px;
    border: 1px solid rgba(184, 65, 12, 0.4);
    border-radius: 50%;
  }
  .seal-inner {
    text-align: center;
  }
  .seal-inner .top {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--copper-glow);
    margin-bottom: 10px;
  }
  .seal-inner .big {
    font-family: 'Fraunces', serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1;
    color: var(--cream);
  }
  .seal-inner .label {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 18px;
    margin-top: 8px;
    color: var(--cream);
  }
  .seal-inner .bottom {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--copper-glow);
    margin-top: 12px;
  }
  .guarantee h2 {
    font-size: clamp(34px, 4.2vw, 50px);
    color: var(--cream);
    margin: 20px 0 28px;
  }
  .guarantee h2 em {
    font-family: 'Road Rage', 'Bangers', 'Impact', sans-serif;
    font-style: normal;
    color: var(--copper-glow);
    letter-spacing: 0.01em;
  }
  .guarantee-promises {
    display: grid;
    gap: 24px;
    margin-top: 36px;
  }
  .promise {
    display: flex;
    gap: 22px;
    align-items: start;
  }
  .promise svg {
    color: var(--copper-glow);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .promise strong {
    display: block;
    color: var(--cream);
    font-size: 16px;
    margin-bottom: 4px;
  }
  .promise span {
    color: rgba(250, 245, 234, 0.7);
    font-size: 14.5px;
    line-height: 1.55;
  }
  @media (max-width: 900px) {
    .guarantee { padding: 88px 0; }
    .guarantee-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .promise { text-align: left; }
  }
  @media (max-width: 500px) {
    .guarantee-seal { width: 220px; height: 220px; }
    .seal-inner .big { font-size: 42px; }
  }

  /* ── FINANCING ────────────────────────────────── */
  .financing {
    padding: 120px 0;
    text-align: center;
  }
  .financing-inner {
    max-width: 720px;
    margin: 0 auto;
  }
  .financing h2 {
    font-size: clamp(34px, 4.2vw, 48px);
    margin: 20px 0 22px;
  }
  .financing p {
    color: var(--text-soft);
    font-size: 17px;
    margin-bottom: 36px;
    line-height: 1.6;
  }
  .financing-perks {
    display: flex;
    justify-content: center;
    gap: 44px;
    margin-top: 48px;
    flex-wrap: wrap;
  }
  .perk {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 500;
    font-size: 14.5px;
  }
  .perk svg { color: var(--moss); }

  /* ── SERVICE AREA ─────────────────────────────── */
  .area {
    background: var(--paper-warm);
    padding: 120px 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
  }
  .area-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
  }
  .area h2 {
    font-size: clamp(32px, 4vw, 46px);
    margin: 18px 0 22px;
  }
  .area p {
    color: var(--text-soft);
    font-size: 16.5px;
    line-height: 1.6;
  }
  .city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 28px;
  }
  .city {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 15px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .city::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--copper);
    border-radius: 50%;
    flex-shrink: 0;
  }
  @media (max-width: 900px) {
    .area { padding: 80px 0; }
    .area-grid { grid-template-columns: 1fr; gap: 44px; }
    .city-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .city-grid { grid-template-columns: 1fr; }
  }

  /* ── FAQ ──────────────────────────────────────── */
  .faq {
    padding: 140px 0;
  }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 88px;
    align-items: start;
  }
  .faq h2 {
    font-size: clamp(34px, 4.5vw, 52px);
    margin: 18px 0 24px;
  }
  .faq-side p {
    color: var(--text-soft);
    margin-bottom: 36px;
    line-height: 1.6;
  }
  .faq-list { }
  .faq-item {
    border-top: 1px solid var(--line);
  }
  .faq-item:last-child { border-bottom: 1px solid var(--line); }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 32px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    font-family: 'Fraunces', serif;
    font-size: 21px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.25;
  }
  .faq-q-icon {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: all 0.3s;
    color: var(--ink);
  }
  .faq-item.open .faq-q-icon {
    background: var(--copper);
    border-color: var(--copper);
    color: var(--cream);
    transform: rotate(45deg);
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .faq-a-inner {
    padding: 0 0 34px;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.65;
    max-width: 60ch;
  }
  .faq-item.open .faq-a { max-height: 400px; }
  @media (max-width: 900px) {
    .faq { padding: 88px 0; }
    .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  }

  /* ── FINAL CTA ────────────────────────────────── */
  .final-cta {
    background: var(--copper);
    color: var(--cream);
    padding: 130px 0;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
    opacity: 0.25;
    mix-blend-mode: overlay;
    pointer-events: none;
  }
  .final-inner {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .final-inner h2 {
    font-family: 'Anton', 'Impact', sans-serif;
    font-size: clamp(56px, 9vw, 116px);
    line-height: 0.92;
    margin-bottom: 28px;
    letter-spacing: -0.005em;
    font-weight: 400;
    text-transform: uppercase;
  }
  .final-inner h2 em {
    font-family: 'Road Rage', 'Bangers', 'Impact', sans-serif;
    font-style: normal;
    font-weight: 400;
    display: inline-block;
    letter-spacing: 0.01em;
  }
  .final-inner p {
    font-size: 19px;
    max-width: 52ch;
    margin: 0 auto 48px;
    color: rgba(250, 245, 234, 0.92);
    line-height: 1.6;
  }
  .final-ctas {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .btn-cream {
    background: var(--cream);
    color: var(--ink);
    padding: 22px 36px;
    font-size: 16.5px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
  }
  .btn-cream:hover {
    background: var(--ink);
    color: var(--cream);
    transform: translateY(-1px);
  }
  .btn-outline-cream {
    background: transparent;
    color: var(--cream);
    padding: 22px 32px;
    font-size: 16.5px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    border: 1.5px solid var(--cream);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
  }
  .btn-outline-cream:hover {
    background: var(--cream);
    color: var(--copper);
  }
  .final-meta {
    margin-top: 40px;
    font-size: 13.5px;
    color: rgba(250, 245, 234, 0.7);
    letter-spacing: 0.02em;
  }

  /* ── FOOTER ───────────────────────────────────── */
  .footer {
    background: var(--ink);
    color: rgba(250, 245, 234, 0.7);
    padding: 88px 0 36px;
    font-size: 14px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(250, 245, 234, 0.12);
  }
  .footer .logo { color: var(--cream); }
  .footer-about p {
    margin-top: 20px;
    line-height: 1.65;
    max-width: 36ch;
  }
  .footer h5 {
    color: var(--cream);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 22px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
  }
  .footer ul { list-style: none; }
  .footer li { margin-bottom: 12px; }
  .footer a { color: rgba(250, 245, 234, 0.7); text-decoration: none; transition: color 0.2s; }
  .footer a:hover { color: var(--copper-glow); }
  .footer-bottom {
    padding-top: 36px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: rgba(250, 245, 234, 0.5);
  }
  @media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  }
  @media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
  }

  /* ── STICKY MOBILE CTA ────────────────────────── */
  .mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 14px;
    z-index: 100;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.15);
    gap: 10px;
  }
  .mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 16px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .mobile-cta .m-call {
    background: var(--copper);
    color: var(--cream);
  }
  .mobile-cta .m-form {
    background: var(--cream);
    color: var(--ink);
  }
  @media (max-width: 700px) {
    .mobile-cta { display: flex; }
    body { padding-bottom: 84px; }
  }

  /* ── REVEAL ANIMATION ─────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* SUCCESS STATE */
  .success-state {
    text-align: center;
    padding: 20px 0;
  }
  .success-state svg {
    color: var(--moss);
    margin-bottom: 16px;
  }
  .success-state h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    color: var(--ink);
    margin-bottom: 8px;
  }
  .success-state p {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.5;
  }


/* ── PROJECT PAGE STYLES ─────────────────────── */
.project-hero {
  position: relative;
  min-height: 62vh;
  padding: 140px 0 80px;
  overflow: hidden;
  background: #050505;
  color: var(--cream);
  isolation: isolate;
  display: flex;
  align-items: flex-end;
}
.project-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 30%, rgba(0,0,0,0.92) 100%);
  z-index: -1;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(250,245,234,0.75);
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  transition: color 0.2s, gap 0.2s;
}
.back-link:hover { color: var(--copper-glow); gap: 12px; }
.project-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,245,234,0.7);
  flex-wrap: wrap;
}
.project-meta-row .tag {
  background: var(--copper);
  color: var(--cream);
  padding: 6px 12px;
  letter-spacing: 0.12em;
}
.project-meta-row .meta-divider { opacity: 0.4; }
.project-hero h1 {
  font-family: 'Anton', 'Impact', sans-serif;
  text-transform: uppercase;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin-bottom: 22px;
  max-width: 22ch;
}
.project-hero h1 em {
  font-family: 'Road Rage', 'Bangers', 'Impact', sans-serif;
  font-style: normal;
  color: var(--copper-glow);
  display: inline-block;
}
.project-hero-sub {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  color: rgba(250,245,234,0.85);
  max-width: 56ch;
  line-height: 1.45;
}

.project-story {
  padding: 110px 0;
  background: var(--paper);
}
.story-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-main h2 {
  font-family: 'Anton', 'Impact', sans-serif;
  text-transform: uppercase;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  margin: 56px 0 20px;
  color: var(--ink);
}
.story-main h2:first-child { margin-top: 0; }
.story-main h2 em {
  font-family: 'Road Rage', 'Bangers', 'Impact', sans-serif;
  font-style: normal;
  color: var(--copper);
}
.story-main p {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 62ch;
}
.story-main p strong { color: var(--ink); font-weight: 600; }
.project-quote {
  margin: 56px 0 0;
  padding: 36px 38px;
  background: var(--cream);
  border-left: 4px solid var(--copper);
  border-radius: 2px;
}
.project-quote p {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 18px;
  font-weight: 500;
}
.project-quote cite {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-style: normal;
}

.project-specs {
  position: sticky;
  top: 110px;
  background: var(--ink);
  color: var(--cream);
  padding: 36px 32px;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}
.project-specs h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--copper-glow);
  margin-bottom: 24px;
  font-weight: 500;
}
.project-specs dl { margin: 0 0 28px; }
.project-specs dt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250,245,234,0.55);
  margin-top: 16px;
}
.project-specs dt:first-child { margin-top: 0; }
.project-specs dd {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--cream);
  margin: 4px 0 0;
  line-height: 1.3;
  font-weight: 500;
}
.project-specs .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 16px;
  margin-bottom: 12px;
}
.project-specs .spec-phone {
  display: block;
  text-align: center;
  padding: 14px;
  color: var(--cream);
  text-decoration: none;
  border: 1px solid rgba(250,245,234,0.18);
  border-radius: 2px;
  font-family: 'Anton', 'Impact', sans-serif;
  letter-spacing: 0.02em;
  font-size: 18px;
  transition: background 0.2s;
}
.project-specs .spec-phone:hover { background: rgba(250,245,234,0.06); }
@media (max-width: 900px) {
  .project-story { padding: 72px 0; }
  .story-grid { grid-template-columns: 1fr; gap: 56px; }
  .project-specs { position: static; }
}

.related-work {
  padding: 110px 0;
  background: var(--paper-warm);
  border-top: 1px solid var(--line-soft);
}
.related-work .related-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.related-work .eyebrow { display: inline-block; margin-bottom: 14px; }
.related-work h2 {
  font-family: 'Anton', 'Impact', sans-serif;
  text-transform: uppercase;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.related-work h2 em {
  font-family: 'Road Rage', 'Bangers', 'Impact', sans-serif;
  font-style: normal;
  color: var(--copper);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--ink);
  text-decoration: none;
  aspect-ratio: 4/3;
  transition: transform 0.3s;
}
.related-card:hover { transform: translateY(-4px); }
.related-card img,
.related-card picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.related-card picture img { object-fit: cover; }
.related-card .work-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--cream);
  color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  padding: 5px 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.related-card .work-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 22px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 30%, transparent);
  color: var(--cream);
  z-index: 2;
}
.related-card .work-info h4 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.related-card .work-info p { font-size: 13px; color: rgba(250,245,234,0.7); }
.related-card.no-photo {
  background: linear-gradient(135deg, #1F2A3C 0%, #0E1A2B 100%);
}
.related-card.no-photo::after {
  content: 'Photo coming soon';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(250,245,234,0.3);
}
@media (max-width: 800px) {
  .related-work { padding: 72px 0; }
  .related-grid { grid-template-columns: 1fr; }
}

/* Make work cards on homepage clickable */
.work-card a, a.work-card {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}


/* ── SERVICE PAGE STYLES ─────────────────────── */
.service-hero {
  position: relative;
  padding: 140px 0 90px;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 75% 30%, rgba(221, 75, 10, 0.18), transparent 60%);
  z-index: -1;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-hero-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-glow);
  margin-bottom: 20px;
}
.service-hero h1 {
  font-family: 'Anton', 'Impact', sans-serif;
  text-transform: uppercase;
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin-bottom: 24px;
}
.service-hero h1 em {
  font-family: 'Road Rage', 'Bangers', 'Impact', sans-serif;
  font-style: normal;
  color: var(--copper-glow);
  display: inline-block;
}
.service-hero-sub {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(19px, 1.9vw, 26px);
  color: rgba(250,245,234,0.85);
  line-height: 1.45;
  margin-bottom: 36px;
  max-width: 56ch;
}
.service-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.service-hero-aside {
  background: rgba(250,245,234,0.04);
  border: 1px solid rgba(250,245,234,0.1);
  border-radius: 2px;
  padding: 32px;
  backdrop-filter: blur(8px);
}
.service-hero-aside h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--copper-glow);
  margin-bottom: 18px;
}
.service-hero-aside ul { list-style: none; padding: 0; margin: 0; }
.service-hero-aside li {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(250,245,234,0.08);
  color: var(--cream);
}
.service-hero-aside li:last-child { border-bottom: none; }
.service-hero-aside li::before {
  content: '★';
  color: var(--copper-glow);
  margin-right: 10px;
}
@media (max-width: 880px) {
  .service-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-hero { padding: 110px 0 64px; }
}

.svc-content {
  padding: 110px 0;
  background: var(--paper);
}
.svc-section { max-width: 760px; margin: 0 auto 72px; }
.svc-section:last-child { margin-bottom: 0; }
.svc-section .eyebrow { display: inline-block; margin-bottom: 14px; }
.svc-section h2 {
  font-family: 'Anton', 'Impact', sans-serif;
  text-transform: uppercase;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 28px;
}
.svc-section h2 em {
  font-family: 'Road Rage', 'Bangers', 'Impact', sans-serif;
  font-style: normal;
  color: var(--copper);
}
.svc-section > p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}
.svc-section > p strong { color: var(--ink); font-weight: 600; }
.svc-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.svc-list li {
  padding: 18px 0 18px 36px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
  font-size: 17px;
  line-height: 1.55;
}
.svc-list li:last-child { border-bottom: none; }
.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 26px;
  width: 18px;
  height: 2px;
  background: var(--copper);
}
.svc-list li strong {
  display: block;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 4px;
}
.svc-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.svc-steps li {
  counter-increment: step;
  position: relative;
  padding: 24px 0 24px 70px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 17px;
  line-height: 1.55;
}
.svc-steps li:last-child { border-bottom: none; }
.svc-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 24px;
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  color: var(--copper);
  line-height: 1;
}
.svc-steps li strong {
  display: block;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 6px;
}

.svc-callout {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 48px;
  border-radius: 2px;
  margin: 56px 0;
  text-align: center;
}
.svc-callout h3 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1;
  margin-bottom: 14px;
}
.svc-callout h3 em {
  font-family: 'Road Rage', 'Bangers', 'Impact', sans-serif;
  font-style: normal;
  color: var(--copper-glow);
}
.svc-callout p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 19px;
  color: rgba(250,245,234,0.85);
  margin-bottom: 28px;
}
.svc-callout .btn-cream { display: inline-flex; }
@media (max-width: 720px) {
  .svc-content { padding: 72px 0; }
  .svc-callout { padding: 40px 24px; }
}
