
  :root {
    --bg: #0a0a0a;
    --surface: #141414;
    --surface-2: #1c1c1c;
    --border: #2a2a2a;
    --text: #f5f5f5;
    --muted: #8a8a8a;
    --accent: #ff5b1f;
    --accent-hover: #ff7340;
    --gold: #c8a25c;
    --display: 'Fraunces', Georgia, serif;
    --body: 'Manrope', system-ui, sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  a { color: inherit; text-decoration: none; }

  img { max-width: 100%; display: block; }

  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
  }

  /* === HEADER === */
  header {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    max-width: 1280px;
    margin: 0 auto;
  }



  .logo {
    display: flex;
    align-items: center;
  }
  .logo img {
    height: 52px;
    width: auto;
    display: block;
  }

  .header-cta {
    display: flex;
    align-items: center;
    gap: 22px;
  }

  .header-cta .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 2px;
    transition: all 0.2s;
  }

  .header-cta .phone-link:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  .phone-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  /* === HERO === */
  .hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(255, 91, 31, 0.08) 0%, transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(200, 162, 92, 0.05) 0%, transparent 50%);
    z-index: 0;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid var(--gold);
    border-radius: 100px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }

  .hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
  }

  .hero h1 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
  }

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

  .hero-sub {
    font-size: 20px;
    color: var(--muted);
    margin-bottom: 14px;
    max-width: 500px;
  }

  .hero-locations {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 38px;
    letter-spacing: 0.04em;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: var(--bg);
    padding: 18px 28px;
    border-radius: 2px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    box-shadow: 0 0 0 0 rgba(255, 91, 31, 0.4);
  }

  .btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -8px rgba(255, 91, 31, 0.5);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    padding: 18px 28px;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
  }

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

  .hero-credentials {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
  }

  .credential {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.04em;
  }

  .credential strong { color: var(--text); }

  .stars { color: var(--gold); letter-spacing: 1px; }

  .hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 2px;
    overflow: hidden;
    background: var(--surface);
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) brightness(0.92);
  }

  .hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--border);
    pointer-events: none;
  }

  .hero-visual-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    padding: 14px 18px;
    border-left: 2px solid var(--accent);
    font-size: 13px;
    color: var(--text);
  }

  .hero-visual-caption strong { color: var(--gold); display: block; margin-bottom: 2px; font-family: var(--display); font-size: 14px; letter-spacing: 0.04em; }

  /* === TRUST STRIP === */
  .trust-strip {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
  }

  .trust-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    text-align: center;
  }

  .trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .trust-item strong {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
  }

  .trust-item span {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  /* === SECTION DEFAULTS === */
  section.content { padding: 100px 0; }

  .section-header {
    max-width: 760px;
    margin-bottom: 64px;
  }

  .eyebrow {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: inline-block;
  }

  .section-header h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 20px;
  }

  .section-header h2 em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
  }

  .section-header p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.65;
  }

  /* === WHY US === */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .why-card {
    background: var(--bg);
    padding: 44px 36px;
    transition: background 0.2s;
  }

  .why-card:hover { background: var(--surface); }

  .why-num {
    font-family: var(--display);
    font-weight: 300;
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 18px;
    line-height: 1;
  }

  .why-card h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
  }

  .why-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
  }

  /* === CHARGER TYPES === */
  .types-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .type-card {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
  }

  .type-card.featured {
    border-color: var(--accent);
  }

  .type-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--accent);
    color: var(--bg);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 5px 9px;
    border-radius: 2px;
  }

  .type-label {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .type-card h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }

  .type-speed {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
  }

  .type-specs {
    list-style: none;
    margin: 0;
  }

  .type-specs li {
    font-size: 14px;
    color: var(--text);
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .type-specs li::before {
    content: '—';
    color: var(--gold);
    flex-shrink: 0;
  }

  /* === PROCESS === */
  .process-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    padding: 36px 0;
    border-top: 1px solid var(--border);
    align-items: start;
  }

  .process-step:last-child { border-bottom: 1px solid var(--border); }

  .step-num {
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: 48px;
    color: var(--gold);
    line-height: 1;
  }

  .step-content h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }

  .step-content p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 680px;
  }

  /* BRANDS / GALLERY */
  .brands-section { background: var(--surface); border-top: 1px solid var(--border); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 50px;
  }
  .gallery-item {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--bg);
    border: 1px solid var(--border);
    overflow: hidden;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
  }
  .gallery-item:hover img { transform: scale(1.03); }
  .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.95) 100%);
    padding: 60px 20px 18px;
    color: var(--text);
  }
  .gallery-caption strong {
    font-family: var(--display);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.005em;
    display: block;
    margin-bottom: 4px;
  }
  .gallery-caption span {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* BEFORE / AFTER */
  .ba-section { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 50px;
  }
  .ba-card {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
  }
  .ba-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .ba-label {
    position: absolute;
    top: 18px;
    left: 18px;
    font-family: var(--display);
    font-style: italic;
    font-size: 14px;
    color: var(--bg);
    background: var(--gold);
    padding: 6px 14px;
    border-radius: 2px;
    letter-spacing: 0.04em;
    z-index: 2;
  }
  .ba-card.after .ba-label { background: var(--accent); color: var(--bg); }
  .ba-caption-block {
    margin-top: 36px;
    max-width: 700px;
  }
  .ba-caption-block p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
  }

  /* PROCESS DETAIL (single feature shot) */
  .craft-section { background: var(--surface); border-top: 1px solid var(--border); }
  .craft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .craft-visual {
    aspect-ratio: 4 / 5;
    background: var(--bg);
    border: 1px solid var(--border);
    overflow: hidden;
  }
  .craft-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .craft-content h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 22px;
  }
  .craft-content h2 em { font-style: italic; font-weight: 300; color: var(--gold); }
  .craft-content p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 22px;
  }
  .craft-content .spec-list {
    list-style: none;
    margin-top: 24px;
  }
  .craft-content .spec-list li {
    padding: 12px 0;
    border-top: 1px solid var(--border);
    color: var(--text);
    font-size: 15px;
    display: flex;
    gap: 12px;
  }
  .craft-content .spec-list li:last-child { border-bottom: 1px solid var(--border); }
  .craft-content .spec-list li strong {
    color: var(--gold);
    font-family: var(--display);
    font-weight: 600;
    min-width: 60px;
  }

  /* OLD BRANDS-ROW (kept for any fallback) */
  .brands-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 900px; margin: 40px auto 0; }
  .brand-tag { background: var(--bg); border: 1px solid var(--border); padding: 12px 22px; font-family: var(--display); font-weight: 500; font-size: 16px; letter-spacing: 0.02em; }

  /* === FAQ === */
  .faq-list {
    display: flex;
    flex-direction: column;
  }

  .faq-item {
    border-top: 1px solid var(--border);
    padding: 28px 0;
  }

  .faq-item:last-child { border-bottom: 1px solid var(--border); }

  .faq-q {
    font-family: var(--display);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
  }

  .faq-q::after {
    content: '+';
    font-size: 28px;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
  }

  .faq-a {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 800px;
  }

  /* === BIG CTA === */
  .cta-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #050505 100%);
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 50% 50%, rgba(255, 91, 31, 0.12) 0%, transparent 60%);
  }

  .cta-section > .container { position: relative; z-index: 1; }

  .cta-section h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(38px, 5.5vw, 64px);
    line-height: 1.05;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
  }

  .cta-section h2 em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
  }

  .cta-section p {
    font-size: 19px;
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-phone {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
  }

  .cta-phone-label {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .cta-phone-num {
    font-family: var(--display);
    font-weight: 400;
    font-size: 44px;
    color: var(--text);
    letter-spacing: -0.01em;
  }

  /* === SERVICE AREA === */
  .area-section {
    border-top: 1px solid var(--border);
    padding: 80px 0;
    background: var(--bg);
  }

  .area-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
  }

  .area-grid h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 36px;
    letter-spacing: -0.015em;
  }

  .area-grid h3 em {
    font-style: italic;
    color: var(--gold);
  }

  .city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 24px;
  }

  .city-grid div {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text);
    border-top: 1px solid var(--border);
  }

  /* === FOOTER === */
  footer {
    background: #050505;
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
  }

  .footer-brand { margin-bottom: 14px; }

  .footer-tag {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    max-width: 380px;
  }

  .footer-col h4 {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
  }

  .footer-col p, .footer-col a {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
    display: block;
  }

  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.04em;
  }

  .footer-licenses {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  /* === STICKY MOBILE CTA === */
  .mobile-call-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    color: var(--bg);
    padding: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 17px;
    z-index: 999;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
  }

  /* === RESPONSIVE === */
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { aspect-ratio: 3 / 2; max-width: 500px; }
    .why-grid { grid-template-columns: 1fr; }
    .types-grid { grid-template-columns: 1fr; }
    .process-step { grid-template-columns: 60px 1fr; gap: 20px; }
    .step-num { font-size: 36px; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .area-grid { grid-template-columns: 1fr; gap: 30px; }
    .city-grid { grid-template-columns: repeat(2, 1fr); }
    .header-cta .phone-link span { display: none; }
    .mobile-call-cta { display: block; }
    body { padding-bottom: 64px; }
    section.content { padding: 70px 0; }
    .trust-row { gap: 20px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .craft-grid { grid-template-columns: 1fr; gap: 40px; }
    .ba-grid { gap: 12px; }
  }

  @media (max-width: 600px) {
    .container { padding: 0 20px; }
    .header-inner { padding: 14px 20px; }
    .hero { padding: 60px 0 50px; }
    /* Audiowide is a wide display face — keep it small enough on
       narrow phones that no word clips past the screen edge. */
    /* Audiowide is a wide display face — overflow-wrap keeps any
       long word from spilling past the screen edge on small phones. */
    .hero h1 { font-size: 32px; line-height: 1.12; overflow-wrap: break-word; }
    .page-hero h1 { font-size: 30px; line-height: 1.1; overflow-wrap: break-word; }
    .btn-primary, .btn-secondary { padding: 16px 22px; font-size: 15px; width: 100%; justify-content: center; }
    .hero-actions { flex-direction: column; }
    .city-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 360px) {
    .hero h1 { font-size: 28px; }
    .page-hero h1 { font-size: 27px; }
  }

  /* === EDITOR NOTES === */
  .editor-note {
    background: rgba(255, 91, 31, 0.06);
    border: 1px dashed var(--accent);
    color: var(--accent);
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 2px;
    font-family: var(--body);
    letter-spacing: 0.02em;
    display: inline-block;
    margin-top: 8px;
  }

  /* === QUOTE FORM === */
  .form-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
  .form-intro .eyebrow { color: var(--accent); font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; display: inline-block; }
  .form-intro h2 { font-family: var(--display); font-weight: 400; font-size: clamp(32px, 4.5vw, 52px); line-height: 1.1; letter-spacing: -0.015em; margin-bottom: 20px; }
  .form-intro h2 em { font-style: italic; font-weight: 300; color: var(--gold); }
  .form-intro p { font-size: 18px; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
  .form-intro .form-phone { display: flex; align-items: center; gap: 12px; padding: 18px 22px; background: var(--bg); border: 1px solid var(--border); border-left: 2px solid var(--accent); }
  .form-intro .form-phone strong { font-family: var(--display); font-size: 22px; color: var(--text); display: block; }
  .form-intro .form-phone span { font-size: 11px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 4px; }
  .quote-form { background: var(--bg); border: 1px solid var(--border); padding: 36px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-field { margin-bottom: 20px; }
  .form-field label { display: block; font-size: 11px; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; font-weight: 600; }
  .form-field label span { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
  .form-field input, .form-field textarea {
    width: 100%; background: var(--surface); border: 1px solid var(--border); color: var(--text);
    padding: 14px 16px; font-family: var(--body); font-size: 15px; border-radius: 2px;
    transition: border-color 0.2s; box-sizing: border-box;
  }
  .form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); }
  .form-field input::placeholder, .form-field textarea::placeholder { color: var(--muted); opacity: 0.6; }
  .form-field textarea { resize: vertical; min-height: 110px; font-family: var(--body); }
  .form-submit {
    width: 100%; background: var(--accent); color: var(--bg); padding: 18px;
    border: none; border-radius: 2px; font-family: var(--body); font-weight: 700;
    font-size: 16px; letter-spacing: 0.02em; cursor: pointer; transition: all 0.2s;
  }
  .form-submit:hover:not(:disabled) { background: var(--accent-hover); transform: translateY(-1px); }
  .form-submit:disabled { background: var(--gold); color: var(--bg); cursor: default; }
  .form-disclaimer { font-size: 12px; color: var(--muted); margin-top: 16px; line-height: 1.5; }
  @media (max-width: 900px) {
    .form-grid { grid-template-columns: 1fr; gap: 36px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .quote-form { padding: 28px 24px; }
  }


  /* === EVIDENCE SHOT (horror stories visual) === */
  .evidence-block { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; margin: 50px 0 0; padding: 40px; background: var(--bg); border: 1px solid var(--border); border-left: 3px solid var(--accent); }
  .evidence-block img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
  .evidence-block .evidence-caption { color: var(--text); }
  .evidence-block .evidence-caption .eyebrow { color: var(--accent); display: block; margin-bottom: 12px; }
  .evidence-block .evidence-caption h3 { font-family: var(--display); font-weight: 600; font-size: 22px; margin-bottom: 12px; letter-spacing: -0.01em; }
  .evidence-block .evidence-caption p { color: var(--muted); font-size: 15px; line-height: 1.65; margin-bottom: 0; }
  @media (max-width: 760px) {
    .evidence-block { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  }








  /* === AUDIOWIDE — sprinkled (Jason's trade dress font) === */
  :root { --audiowide: 'Audiowide', 'Manrope', sans-serif; }
  .eyebrow,
  .why-num,
  .step-num,
  .type-label,
  .trust-item strong,
  .hero h1 { font-family: var(--audiowide) !important; }
  .hero h1 { letter-spacing: 0 !important; }
  .hero h1 em { font-family: var(--audiowide) !important; font-style: normal !important; letter-spacing: 0 !important; }



  /* ============================================================= */
  /* === ADDITIONS FOR HOMEPAGE / ABOUT / CONTACT / SERVICES   === */
  /* === (new pages — service detail pages are self-contained) === */
  /* ============================================================= */

  /* --- Header navigation --- */
  .main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .main-nav a.nav-link {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--muted);
    transition: color 0.2s;
  }
  .main-nav a.nav-link:hover,
  .main-nav a.nav-link.active { color: var(--text); }

  .nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 8px 10px;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    margin: 4px 0;
    transition: 0.2s;
  }

  /* --- Service cards (homepage + services index) --- */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 38px 32px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s;
  }
  .service-card:hover { border-color: var(--accent); transform: translateY(-3px); }
  .service-card .svc-icon {
    width: 44px; height: 44px;
    margin-bottom: 22px;
    color: var(--accent);
  }
  .service-card .svc-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; }
  .service-card h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
  }
  .service-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 22px;
    flex-grow: 1;
  }
  .service-card .svc-link {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .service-card .svc-link::after { content: '\2192'; transition: transform 0.2s; }
  .service-card:hover .svc-link::after { transform: translateX(4px); }

  .service-card.coming { opacity: 0.96; }
  .service-card.coming .svc-icon { color: var(--gold); }
  .service-card .svc-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 100px;
    padding: 4px 10px;
    margin-bottom: 16px;
    width: fit-content;
  }

  /* --- Reviews / social-proof band (homepage, under hero) --- */
  .reviews-section {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
  }
  .reviews-section [class*="elfsight-app-"] {
    max-width: 100%;
    min-width: 0;
  }
  .reviews-band {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    text-align: center;
    transition: opacity 0.2s;
  }
  .reviews-band:hover { opacity: 0.92; }
  .reviews-band .reviews-stars {
    color: var(--gold);
    font-size: 22px;
    letter-spacing: 3px;
    line-height: 1;
  }
  .reviews-band .reviews-rating {
    font-family: var(--audiowide);
    font-size: 20px;
    color: var(--text);
    line-height: 1;
  }
  .reviews-band .reviews-text {
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
  }
  .reviews-band .reviews-divider {
    color: var(--border);
  }
  .reviews-band .reviews-cta {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .reviews-band .reviews-cta::after { content: '\2192'; transition: transform 0.2s; }
  .reviews-band:hover .reviews-cta::after { transform: translateX(3px); }
  @media (max-width: 480px) {
    .reviews-band .reviews-divider { display: none; }
    .reviews-band .reviews-text { width: 100%; }
  }

  /* --- "Our work" masonry gallery (homepage) ---
     CSS multi-column masonry: handles mixed portrait/landscape
     aspect ratios with no cropping. Contained in .container. */
  .work-masonry {
    margin-top: 50px;
    column-count: 3;
    column-gap: 18px;
  }
  .work-tile {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    margin: 0 0 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    overflow: hidden;
  }
  .work-tile img {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.05) brightness(0.95);
  }
  .work-tile figcaption {
    padding: 12px 16px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-left: 2px solid var(--gold);
    font-family: var(--display);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.005em;
    color: var(--text);
  }
  @media (max-width: 900px) {
    .work-masonry { column-count: 2; column-gap: 14px; }
    .work-tile { margin-bottom: 14px; }
  }
  @media (max-width: 600px) {
    .work-masonry { column-count: 1; }
  }

  /* --- About: founder headshot (placeholder until photo is added) --- */
  .headshot {
    position: relative;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--border);
    background: var(--surface-2);
    overflow: hidden;
    margin: 0 0 24px;
  }
  .headshot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  .headshot .headshot-empty {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    color: var(--muted);
    padding: 20px;
  }
  .headshot .headshot-empty svg { width: 64px; height: 64px; stroke: var(--border); fill: none; stroke-width: 1.4; }
  .headshot .headshot-empty span {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  /* --- About: supporting "real work" figure --- */
  .about-figure {
    margin: 50px 0 0;
    border: 1px solid var(--border);
    overflow: hidden;
  }
  .about-figure img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) brightness(0.95);
  }
  .about-figure figcaption {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 14px 18px;
    font-size: 13px;
    color: var(--muted);
    border-left: 2px solid var(--accent);
  }
  .about-figure figcaption strong { color: var(--gold); font-family: var(--display); }

  /* --- Services index: anchored detail rows --- */
  .svc-details { margin-top: 6px; }
  .svc-detail {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    padding: 42px 0;
    border-top: 1px solid var(--border);
    scroll-margin-top: 96px; /* clears the sticky header on anchor jump */
  }
  .svc-details .svc-detail:last-child { border-bottom: 1px solid var(--border); }
  .svc-detail .svc-kicker {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
  }
  .svc-detail h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 26px;
    letter-spacing: -0.01em;
  }
  .svc-detail p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 18px; }
  /* Services deep-dive photos: cap height so tall portraits don't leave
     whitespace beside the shorter copy. Scoped to .svc-detail so the
     homepage Our Work gallery (.work-masonry .work-tile) is unaffected. */
  .svc-detail .work-tile img {
    max-height: 460px;
    object-fit: cover;
    object-position: center;
  }
  @media (max-width: 760px) {
    .svc-detail { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  }

  /* --- Page hero (smaller, for inner pages) --- */
  .page-hero {
    position: relative;
    padding: 80px 0 50px;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 25% 30%, rgba(255,91,31,0.07) 0%, transparent 45%);
    z-index: 0;
  }
  .page-hero .container { position: relative; z-index: 1; }
  .page-hero h1 {
    font-family: var(--audiowide), var(--display);
    font-weight: 400;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.05;
    margin-bottom: 18px;
  }
  .page-hero h1 em { font-style: normal; color: var(--gold); }
  .page-hero p {
    font-size: 19px;
    color: var(--muted);
    max-width: 620px;
    line-height: 1.6;
  }

  /* --- Breadcrumb --- */
  .breadcrumb {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 24px;
  }
  .breadcrumb a { color: var(--gold); }
  .breadcrumb span { margin: 0 8px; opacity: 0.5; }

  /* --- About: story + values --- */
  .about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .about-grid .about-body p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 20px;
  }
  .about-grid .about-body p strong { color: var(--text); }
  .about-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 34px 30px;
  }
  .about-card h4 {
    font-size: 12px; color: var(--gold);
    letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 18px; font-weight: 600;
  }
  .about-card .cred-row {
    display: flex; justify-content: space-between;
    padding: 14px 0; border-top: 1px solid var(--border);
    font-size: 14px;
  }
  .about-card .cred-row:first-of-type { border-top: none; }
  .about-card .cred-row span:first-child { color: var(--muted); }
  .about-card .cred-row span:last-child { color: var(--text); font-weight: 600; }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 50px;
  }
  .value-card { background: var(--bg); padding: 36px 30px; }
  .value-card h3 { font-family: var(--display); font-weight: 600; font-size: 20px; margin-bottom: 12px; }
  .value-card p { color: var(--muted); font-size: 15px; line-height: 1.7; }

  /* --- Contact page --- */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: start;
  }
  .contact-method {
    display: flex;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
  }
  .contact-method:last-of-type { border-bottom: 1px solid var(--border); }
  .contact-method .cm-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    color: var(--accent);
  }
  .contact-method .cm-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; }
  .contact-method h4 {
    font-size: 11px; color: var(--gold); letter-spacing: 0.14em;
    text-transform: uppercase; margin-bottom: 6px; font-weight: 600;
  }
  .contact-method .cm-value {
    font-family: var(--display); font-size: 22px; color: var(--text);
  }
  .contact-method .cm-value a:hover { color: var(--accent); }
  .contact-method p { color: var(--muted); font-size: 14px; margin-top: 2px; }

  /* --- Form success / error states --- */
  .form-status { display: none; padding: 16px 18px; border-radius: 2px; font-size: 15px; margin-bottom: 20px; }
  .form-status.ok { display: block; background: rgba(200,162,92,0.1); border: 1px solid var(--gold); color: var(--gold); }
  .form-status.err { display: block; background: rgba(255,91,31,0.08); border: 1px solid var(--accent); color: var(--accent-hover); }

  @media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .main-nav {
      display: none;
      position: absolute;
      top: 100%; left: 0; right: 0;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      padding: 8px 20px 16px;
    }
    .main-nav.open { display: flex; }
    .main-nav a.nav-link { padding: 14px 0; width: 100%; border-top: 1px solid var(--border); font-size: 16px; }
    .nav-toggle { display: block; }
  }

  /* ============================================================= */
  /* === FULL-BLEED HOMEPAGE HERO (index only) ================== */
  /* hero-home.jpg (2000x1089) covers the whole section edge to    */
  /* edge; a dark scrim sits over it so light-on-dark text stays   */
  /* legible and the hero flows straight into the dark body.       */
  /* ============================================================= */
  .hero.hero--bleed {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 82vh;
    padding: 110px 0 96px;
    overflow: hidden;
    background: var(--bg);
  }
  .hero.hero--bleed::before { display: none; }

  .hero--bleed .hero-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0; /* explicit offsets — `inset` shorthand unsupported on Safari <14.1 / Chrome <87 */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: none;
    z-index: 0;
  }

  .hero--bleed .hero-scrim {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0; /* explicit offsets — `inset` shorthand unsupported on Safari <14.1 / Chrome <87 */
    z-index: 1;
    background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.55) 0%,
      rgba(10, 10, 10, 0.60) 42%,
      rgba(10, 10, 10, 0.82) 100%);
  }

  .hero--bleed .container { position: relative; z-index: 2; }
  .hero--bleed .hero-content { max-width: 700px; }

  .hero--bleed .hero-tag {
    color: var(--gold);
    border-color: rgba(200, 162, 92, 0.7);
    background: rgba(10, 10, 10, 0.35);
  }

  .hero--bleed .hero-brand {
    font-family: var(--audiowide);
    font-size: clamp(34px, 7vw, 72px);
    line-height: 1;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin: 0 0 16px;
    overflow-wrap: break-word;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
  }

  /* Headline in the serif display face — overrides the global
     Audiowide hero rule; light-on-dark over the scrim. */
  .hero--bleed h1 {
    font-family: var(--display) !important;
    font-weight: 400;
    font-size: clamp(32px, 4.6vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.015em !important;
    color: #f7f6f4;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  }
  .hero--bleed h1 em {
    font-family: var(--display) !important;
    font-style: italic !important;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: -0.015em !important;
  }

  .hero--bleed .hero-sub {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
  }
  .hero--bleed .hero-locations {
    color: rgba(255, 255, 255, 0.78);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
  }

  .hero--bleed .btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(10, 10, 10, 0.2);
  }
  .hero--bleed .btn-secondary:hover { border-color: #ffffff; }

  .hero--bleed .hero-credentials { border-top-color: rgba(255, 255, 255, 0.2); }
  .hero--bleed .credential { color: rgba(255, 255, 255, 0.82); }
  .hero--bleed .credential strong { color: #ffffff; }
  .hero--bleed .stars { color: var(--gold); }

  @media (max-width: 900px) {
    .hero.hero--bleed { min-height: 70vh; padding: 96px 0 72px; }
  }

  @media (max-width: 600px) {
    .hero.hero--bleed { min-height: 64vh; padding: 84px 0 56px; }
    .hero--bleed .hero-scrim {
      background: linear-gradient(180deg,
        rgba(10, 10, 10, 0.6) 0%,
        rgba(10, 10, 10, 0.66) 45%,
        rgba(10, 10, 10, 0.85) 100%);
    }
  }
