  :root {
    --g-900: #0D301C;
    --g-800: #154528;
    --g-700: #1A5634;
    --g-600: #206A40;
    --g-500: #27804E;
    --g-100: #D5EADC;
    --g-050: #F0F7F2;
    --accent: #FFFFFF;
    --accent-soft: #F0F7F2;
    --n-900: #0A0C0A;
    --n-800: #1A1F1B;
    --n-700: #252A27;
    --n-600: #5C655E;
    --n-400: #939C96;
    --n-200: #D1D6D2;
    --n-100: #E8ECEA;
    --n-050: #F7F8F7;
    --display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --body: 'Inter', system-ui, sans-serif;
    --mono: 'JetBrains Mono', Consolas, monospace;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--body); color: var(--n-900); background: #fff; line-height: 1.5; overflow-x: hidden; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; border: none; background: none; cursor: pointer; }

  /* ─── NAV ─────────────────────────────────────────────────── */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    mix-blend-mode: normal;
  }
  .nav.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 0 32px;
  }
  .nav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; width: 100%; }
  .logo-mark {
    display: flex; align-items: center;
    transition: opacity 200ms;
  }
  .logo-mark:hover { opacity: 0.85; }
  .logo-img {
    height: 90px; width: auto; display: block;
    transition: all 300ms;
  }
  /* When nav is scrolled (white bg), show logo clean — its green box reads naturally.
     When transparent-over-hero (dark green bg), subtle white halo keeps it sharp. */
  .nav:not(.scrolled) .logo-img {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .nav.scrolled .logo-img {
    height: 90px;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }
  .footer .logo-img {
    background: transparent;
    padding: 0;
    border-radius: 0;
    height: 90px;
  }

  .nav-links { display: flex; align-items: center; gap: 2px; }
  .nav-link {
    font-family: var(--display); font-size: 19px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.02em;
    color: rgba(255,255,255,0.9);
    padding: 10px 14px; border-radius: 4px; transition: all 150ms;
  }
  .scrolled .nav-link { color: var(--n-700); }
  .nav-link:hover { background: rgba(255,255,255,0.1); color: #fff; }
  .scrolled .nav-link:hover { background: var(--g-050); color: var(--g-800); }

  .nav-cta {
    font-family: var(--display);
    background: var(--g-500); color: #fff; font-weight: 700; font-size: 15px;
    text-transform: uppercase; letter-spacing: 0.03em;
    padding: 12px 22px; border-radius: 4px; display: inline-flex; align-items: center; gap: 8px;
    margin-left: 12px; transition: all 200ms;
    box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 4px 12px rgba(39,128,78,0.25);
  }
  .nav-cta:hover { transform: translateY(-1px); background: var(--g-600); box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 8px 20px rgba(39,128,78,0.4); }
  .nav-cta svg { width: 14px; height: 14px; }

  .menu-btn { display: none; color: #fff; padding: 8px; }
  .scrolled .menu-btn { color: var(--n-900); }

  /* ─── HERO ─────────────────────────────────────────────────── */
  .hero {
    position: relative; min-height: 82vh; display: flex; align-items: center;
    background: #0D301C;
    overflow: hidden; color: #fff;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 20% 30%, rgba(39,128,78,0.4) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 70%, rgba(111,186,138,0.15) 0%, transparent 50%),
      linear-gradient(135deg, #0D301C 0%, #154528 50%, #1A5634 100%);
  }
  /* Chain-link mesh — diagonal diamond weave */
  .hero-grid {
    position: absolute; inset: 0; opacity: 0.18;
    background-image:
      linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.35) 49%, rgba(255,255,255,0.35) 51%, transparent 52%),
      linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.35) 49%, rgba(255,255,255,0.35) 51%, transparent 52%);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 85%);
  }
  /* Thicker chain knuckles at intersections */
  .hero-knuckles {
    position: absolute; inset: 0; opacity: 0.22;
    background-image: radial-gradient(circle at 22px 22px, rgba(255,255,255,0.5) 1.5px, transparent 2.5px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  }
  .hero-noise {
    position: absolute; inset: 0; opacity: 0.4; pointer-events: none; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  }

  .hero-inner { position: relative; max-width: 1400px; margin: 0 auto; padding: 120px 32px 80px; width: 100%; z-index: 2; }

  .hero h1 {
    font-family: var(--display); font-weight: 800; text-transform: uppercase;
    font-size: clamp(56px, 11vw, 180px); line-height: 0.9; letter-spacing: -0.02em;
    margin-bottom: 48px; margin-top: 0;
  }
  .hero h1 .line { display: block; opacity: 0; transform: translateY(30px); animation: fadeUp 1s forwards; }
  .hero h1 .line:nth-child(1) { animation-delay: 0.1s; }
  .hero h1 .line:nth-child(2) {
    animation-delay: 0.25s;
    color: var(--g-100);
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0;
  }
  .hero h1 .line em {
    font-style: inherit; font-weight: inherit; position: relative; display: inline-block; margin-left: -0.13em;
  }
  .hero h1 .line em::after {
    content: ''; position: absolute; left: 0.13em; right: 0; bottom: -0.08em; height: 0.06em;
    background: rgba(255,255,255,0.25); transform: scaleX(0); transform-origin: left;
    animation: underline 1s 1.1s forwards;
  }

  .hero-services {
    font-family: var(--display); font-weight: 800; text-transform: uppercase;
    font-size: clamp(18px, 3.45vw, 51px); line-height: 1; letter-spacing: 0.02em;
    color: #fff; margin-bottom: 48px; white-space: nowrap;
    opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
  }
  .hero-sub {
    max-width: 1280px; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6;
    color: rgba(255,255,255,0.75); font-weight: 400; margin-bottom: 48px;
    opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
  }

  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; opacity: 0; animation: fadeUp 0.8s 0.8s forwards; }
  .btn-primary {
    font-family: var(--display);
    background: #fff; color: var(--g-900); font-weight: 800; font-size: 16px;
    text-transform: uppercase; letter-spacing: 0.03em;
    padding: 18px 32px; border-radius: 4px; display: inline-flex; align-items: center; gap: 10px;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.8);
    position: relative; overflow: hidden;
  }
  .btn-primary::before {
    content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(39,128,78,0.15), transparent);
    transform: translateX(-100%); transition: transform 600ms;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 50px rgba(0,0,0,0.25); }
  .btn-primary:hover::before { transform: translateX(100%); }
  .btn-primary svg { width: 16px; height: 16px; transition: transform 250ms; }
  .btn-primary:hover svg { transform: translateX(3px); }

  .btn-ghost {
    font-family: var(--display);
    color: #fff; font-weight: 700; font-size: 16px;
    text-transform: uppercase; letter-spacing: 0.03em;
    padding: 17px 28px;
    border: 1.5px solid rgba(255,255,255,0.3); border-radius: 4px;
    display: inline-flex; align-items: center; gap: 10px; transition: all 200ms;
    backdrop-filter: blur(10px);
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
  .btn-ghost svg { width: 14px; height: 14px; }

  .hero-stats {
    margin-top: 100px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.12);
    opacity: 0; animation: fadeUp 0.8s 1s forwards;
  }
  .hero-stat { padding-right: 24px; border-right: 1px solid rgba(255,255,255,0.08); }
  .hero-stat:last-child { border-right: none; }
  .hero-stat-n { font-family: var(--display); font-weight: 800; font-size: clamp(36px, 5vw, 56px); color: #fff; line-height: 1; letter-spacing: -0.02em; }
  .hero-stat-n em { font-style: normal; color: var(--g-100); opacity: 0.7; }
  .hero-stat-l { font-family: var(--mono); font-size: 14px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 10px; font-weight: 500; }

  .scroll-cue {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.4); font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
  }
  .scroll-cue-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4)); animation: scrollLine 2s infinite; }

  /* ─── SECTION BASE ─────────────────────────────────────────── */
  section { padding: 140px 32px; position: relative; }
  .section-inner { max-width: 1400px; margin: 0 auto; }
  .eyebrow {
    font-family: var(--mono); font-size: 14px; font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--g-500); margin-bottom: 24px;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--g-500); }
  .section-title {
    font-family: var(--display); font-weight: 800; text-transform: uppercase;
    font-size: clamp(48px, 7vw, 96px); line-height: 0.92; letter-spacing: -0.02em;
    margin-bottom: 32px; color: var(--n-900);
  }
  .section-title em { font-style: italic; color: #004B2D; font-weight: 800; }
  .section-lede { font-size: 19px; line-height: 1.6; color: var(--n-600); max-width: 1100px; font-weight: 400; }

  /* Reveal animation */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s, transform 0.8s; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── SERVICES ─────────────────────────────────────────────── */
  .services { background: #fff; position: relative; overflow: hidden; padding-top: 80px; }
  .services::before {
    content: ''; position: absolute; inset: 0; opacity: 0.035; pointer-events: none;
    background-image:
      linear-gradient(45deg, transparent 48%, var(--g-800) 49%, var(--g-800) 51%, transparent 52%),
      linear-gradient(-45deg, transparent 48%, var(--g-800) 49%, var(--g-800) 51%, transparent 52%);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  }
  .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 72px; position: relative; z-index: 1; }

  /* Data center vertical callout */
  .dc-callout {
    margin-top: 64px; position: relative; z-index: 1; overflow: hidden;
    background: var(--g-900); color: #fff;
    border-radius: 20px; padding: 48px 56px;
    display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center;
  }
  .dc-callout::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.08;
    background-image:
      linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.6) 49%, rgba(255,255,255,0.6) 51%, transparent 52%),
      linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.6) 49%, rgba(255,255,255,0.6) 51%, transparent 52%);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at right, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at right, black 30%, transparent 80%);
  }
  .dc-icon {
    width: 72px; height: 72px; border-radius: 12px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: #fff; flex-shrink: 0; position: relative; z-index: 1;
  }
  .dc-icon svg { width: 36px; height: 36px; }
  .dc-copy { position: relative; z-index: 1; }
  .dc-kicker {
    font-family: var(--mono); font-size: 14px; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--g-100); margin-bottom: 8px;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .dc-kicker::before { content: ''; width: 20px; height: 1px; background: var(--g-100); }
  .dc-callout h3 {
    font-family: var(--display); font-weight: 800; text-transform: uppercase;
    font-size: clamp(28px, 3.4vw, 40px); line-height: 0.95; letter-spacing: -0.01em;
    margin-bottom: 10px; color: #fff;
  }
  .dc-callout p {
    font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.75); max-width: 640px;
  }
  .dc-callout-cta {
    font-family: var(--display); background: #fff; color: var(--g-900);
    font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: 0.03em;
    padding: 16px 28px; border-radius: 4px; border: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 10px; transition: all 200ms;
    position: relative; z-index: 1; flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  }
  .dc-callout-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.8); }
  .dc-callout-cta svg { width: 14px; height: 14px; transition: transform 200ms; }
  .dc-callout-cta:hover svg { transform: translateX(3px); }

  /* ─── SOLAR SPECIALTY ─── */
  .solar-specialty { background: #fff; padding: 80px 32px; }
  .solar-callout {
    position: relative; overflow: hidden;
    background: var(--g-900); color: #fff;
    border-radius: 20px; padding: 48px 56px;
    display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center;
  }
  .solar-right {
    display: flex; align-items: center; gap: 40px; justify-content: flex-end;
  }
  .solar-callout::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.08;
    background-image:
      linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.6) 49%, rgba(255,255,255,0.6) 51%, transparent 52%),
      linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.6) 49%, rgba(255,255,255,0.6) 51%, transparent 52%);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at left, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at left, black 30%, transparent 80%);
  }
  .solar-icon {
    width: 72px; height: 72px; border-radius: 12px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: #fff; flex-shrink: 0; position: relative; z-index: 1;
  }
  .solar-icon svg { width: 36px; height: 36px; }
  .solar-callout h3 {
    font-family: var(--display); font-weight: 800; text-transform: uppercase;
    font-size: clamp(28px, 3.4vw, 40px); line-height: 0.95; letter-spacing: -0.01em;
    margin-bottom: 10px; color: #fff;
  }
  .solar-callout p {
    font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.75); max-width: 640px;
  }

  .service-card {
    background: var(--n-050); border-radius: 20px; padding: 40px; position: relative; overflow: hidden;
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer;
    border: 1px solid transparent;
    display: flex; flex-direction: column;
  }
  .service-card::before {
    content: ''; position: absolute; inset: 0; background: var(--g-800);
    transform: translateY(100%); transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1); z-index: 0;
  }
  .service-card:hover { transform: translateY(-8px); }
  .service-card:hover::before { transform: translateY(0); }
  .service-card:hover * { color: #fff !important; }
  .service-card:hover .service-icon-wrap { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
  .service-card:hover .service-icon-wrap svg { color: var(--accent) !important; }
  .service-card:hover .service-num { color: var(--accent) !important; }
  .service-card:hover .service-check { color: var(--accent) !important; }
  .service-card > * { position: relative; z-index: 1; transition: color 400ms; }

  .service-num {
    font-family: var(--mono); font-size: 14px; font-weight: 500; letter-spacing: 0.15em;
    color: var(--n-400); margin-bottom: 24px; text-transform: uppercase;
  }
  .service-icon-wrap {
    width: 56px; height: 56px; border-radius: 14px; background: #fff;
    display: flex; align-items: center; justify-content: center; margin-bottom: 28px;
    border: 1px solid var(--n-100); transition: all 400ms;
  }
  .service-icon-wrap svg { width: 24px; height: 24px; color: var(--g-500); transition: color 400ms; }
  .service-card h3 {
    font-family: var(--display); font-weight: 800; font-size: 40px; text-transform: uppercase;
    line-height: 0.95; letter-spacing: -0.01em; margin-bottom: 16px; color: var(--n-900);
  }
  .service-card p { color: var(--n-600); font-size: 15px; line-height: 1.6; margin-bottom: 28px; }
  .service-features { list-style: none; margin-bottom: 32px; }
  .service-features li {
    display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--n-700);
    margin-bottom: 10px; font-weight: 500;
  }
  .service-check { color: var(--g-500); flex-shrink: 0; margin-top: 2px; transition: color 400ms; }
  .service-check svg { width: 16px; height: 16px; }
  .service-arrow {
    display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600;
    color: var(--g-500); transition: gap 250ms, color 400ms;
    margin-top: auto;
  }
  .service-card:hover .service-arrow { gap: 14px; }
  .service-arrow svg { width: 16px; height: 16px; }

  /* ─── WHY US ─────────────────────────────────────────────── */
  .why { background: var(--n-050); position: relative; overflow: hidden; }
  .why::before {
    content: ''; position: absolute; inset: 0; opacity: 0.04; pointer-events: none;
    background-image:
      linear-gradient(45deg, transparent 48%, var(--g-800) 49%, var(--g-800) 51%, transparent 52%),
      linear-gradient(-45deg, transparent 48%, var(--g-800) 49%, var(--g-800) 51%, transparent 52%);
    background-size: 50px 50px;
  }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 72px; border-top: 1px solid var(--n-100); border-left: 1px solid var(--n-100); position: relative; z-index: 1; }
  .why-item {
    padding: 40px; background: #fff; border-right: 1px solid var(--n-100); border-bottom: 1px solid var(--n-100);
    transition: background 300ms; position: relative; overflow: hidden;
  }
  .why-item:hover { background: var(--g-050); }
  .why-item-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--g-050); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--g-500); }
  .why-item-icon svg { width: 22px; height: 22px; }
  .why-item h3 { font-size: 17px; font-weight: 600; color: var(--n-900); margin-bottom: 8px; letter-spacing: -0.01em; }
  .why-item p { font-size: 14px; color: var(--n-600); line-height: 1.6; }
  /* Lets an odd last card fill its row rather than sitting alone next to empty
     space, which would break the grid's border lines. Careers runs 7 quotes, so
     the 7th needs this at both the 3-column and 2-column breakpoints. */
  .why-item--full { grid-column: 1 / -1; }

  /* ─── LOCATIONS ─────────────────────────────────────────────── */
  .locations { background: #fff; }
  .loc-layout { display: grid; grid-template-columns: 320px 1fr; gap: 32px; margin-top: 72px; }
  .loc-tabs { display: flex; flex-direction: column; gap: 8px; }
  .loc-tab {
    padding: 20px 24px; text-align: left; border-radius: 14px; background: var(--n-050);
    font-weight: 600; font-size: 16px; color: var(--n-700); display: flex; align-items: center; justify-content: space-between;
    transition: all 250ms; border: 1px solid transparent;
  }
  .loc-tab:hover { background: var(--n-100); }
  .loc-tab.active { background: var(--n-900); color: #fff; }
  .loc-tab.active .loc-tab-arrow { opacity: 1; transform: translateX(0); color: var(--accent); }
  .loc-tab-arrow { opacity: 0.3; transition: all 250ms; transform: translateX(-4px); }
  .loc-tab-arrow svg { width: 16px; height: 16px; }

  .loc-panel {
    background: linear-gradient(135deg, var(--g-050) 0%, #fff 100%);
    border: 1px solid var(--g-100); border-radius: 20px; padding: 48px; min-height: 420px;
    position: relative; overflow: hidden;
  }
  .loc-panel::before {
    content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(39,128,78,0.08), transparent 70%); border-radius: 50%;
  }
  /* Chain-link texture fade in lower-left */
  .loc-panel::after {
    content: ''; position: absolute; inset: 0;
    opacity: 0.06; pointer-events: none;
    background-image:
      linear-gradient(45deg, transparent 48%, var(--g-800) 49%, var(--g-800) 51%, transparent 52%),
      linear-gradient(-45deg, transparent 48%, var(--g-800) 49%, var(--g-800) 51%, transparent 52%);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse at bottom left, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at bottom left, black 0%, transparent 70%);
  }
  .loc-panel-eyebrow { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.15em; color: var(--g-500); text-transform: uppercase; margin-bottom: 8px; }
  .loc-panel h3 { font-family: var(--display); font-weight: 800; font-size: 72px; text-transform: uppercase; color: var(--g-900); line-height: 1; margin-bottom: 40px; letter-spacing: -0.02em; }
  .loc-cities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; position: relative; z-index: 1; }
  .loc-city { background: #fff; padding: 18px 20px; border-radius: 12px; border: 1px solid var(--g-100); display: flex; align-items: center; gap: 14px; transition: all 200ms; }
  .loc-city:hover { border-color: var(--g-500); transform: translateX(4px); }
  .loc-city-pin {
    width: 36px; height: 36px; background: var(--g-050); border-radius: 8px; color: var(--g-500);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .loc-city-pin svg { width: 16px; height: 16px; }
  .loc-city-name { font-weight: 600; font-size: 14px; color: var(--n-900); }
  .loc-city-meta { font-family: var(--mono); font-size: 10px; color: var(--n-400); letter-spacing: 0.08em; margin-top: 2px; }

  /* ─── LOCATIONS MAP ─────────────────────────────────────────── */
  .locations-map-wrap { position: relative; margin-top: 48px; margin-left: -32px; margin-right: -32px; overflow: hidden; }
  .locations-map { width: 100%; height: 540px; display: block; }
  .locations-map-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: var(--n-50); }
  .map-fallback-content { text-align: center; padding: 40px; max-width: 400px; }
  .map-fallback-content h3 { font-family: var(--display); font-size: 24px; margin-bottom: 12px; }
  .map-fallback-content p { color: var(--n-500); font-size: 14px; line-height: 1.6; margin-bottom: 8px; }

  /* Google Maps InfoWindow */
  .iw { font-family: var(--body); padding: 4px 2px; min-width: 200px; }
  .iw-name { font-weight: 700; font-size: 15px; color: var(--n-900); margin-bottom: 10px; }
  .iw-row { display: flex; gap: 8px; font-size: 13px; color: var(--n-600); margin-bottom: 6px; line-height: 1.4; }
  .iw-label { font-weight: 600; color: var(--n-400); min-width: 52px; flex-shrink: 0; }
  .iw-row a { color: var(--g-700); text-decoration: none; }
  .iw-row a:hover { text-decoration: underline; }
  .iw-link { display: inline-flex; align-items: center; gap: 4px; margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--g-700); text-decoration: none; }
  .iw-link:hover { text-decoration: underline; }

  /* ─── TESTIMONIALS ─────────────────────────────────────────── */
  .testimonials {
    background: var(--n-900); color: #fff; position: relative; overflow: hidden;
  }
  .testimonials::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at top, rgba(39,128,78,0.15), transparent 60%);
  }
  .testimonials::after {
    content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.08;
    background-image:
      linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.6) 49%, rgba(255,255,255,0.6) 51%, transparent 52%),
      linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.6) 49%, rgba(255,255,255,0.6) 51%, transparent 52%);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, transparent 30%, black 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, transparent 30%, black 80%);
  }
  .test-inner { position: relative; max-width: 1000px; margin: 0 auto; text-align: center; }
  .test-eyebrow { color: var(--accent); }
  .test-eyebrow::before { background: var(--accent); }
  .test-quote-mark {
    font-family: var(--display); font-size: 120px; color: var(--accent); line-height: 0.8;
    margin-bottom: 24px; opacity: 0.4; font-weight: 800;
  }
  .test-text {
    font-size: clamp(22px, 3vw, 36px); line-height: 1.4; font-weight: 400; font-style: italic;
    margin-bottom: 40px; color: #fff; min-height: 180px;
    transition: opacity 400ms;
  }
  .test-text.changing { opacity: 0; }
  .test-author { margin-bottom: 40px; }
  .test-name { font-weight: 600; font-size: 17px; color: #fff; }
  .test-role { font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 6px; }

  .test-nav { display: flex; gap: 12px; justify-content: center; align-items: center; }
  .test-arrow {
    width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center; color: #fff; transition: all 200ms;
  }
  .test-arrow:hover { background: var(--g-500); border-color: var(--g-500); color: #fff; }
  .test-arrow svg { width: 18px; height: 18px; }
  .test-dots { display: flex; gap: 8px; padding: 0 20px; }
  .test-dot {
    width: 8px; height: 8px; border-radius: 4px; background: rgba(255,255,255,0.25);
    transition: all 300ms;
  }
  .test-dot.active { width: 32px; background: var(--accent); }

  /* ─── ABOUT ─────────────────────────────────────────────── */
  .about { background: #fff; }
  .about-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: center; margin-top: 72px; }
  .about-copy p { font-size: 18px; line-height: 1.75; color: var(--n-600); margin-bottom: 20px; }
  .about-card {
    background: var(--n-900); color: #fff; padding: 48px; border-radius: 24px;
    position: relative; overflow: hidden;
  }
  .about-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at top right, rgba(39,128,78,0.25), transparent 60%);
  }
  .about-card-eyebrow { font-family: var(--mono); font-size: 14px; font-weight: 500; color: var(--accent); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 32px; display: flex; align-items: center; gap: 10px; position: relative; }
  .about-card-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--accent); }
  .about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; position: relative; }
  .about-stat { padding-left: 16px; border-left: 2px solid var(--accent); }
  .about-stat-n { font-family: var(--display); font-weight: 800; font-size: 44px; color: #fff; line-height: 1; letter-spacing: -0.02em; }
  .about-stat-l { font-family: var(--mono); font-size: 14px; color: rgba(255,255,255,0.5); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 8px; font-weight: 500; }

  /* ─── CTA BANNER ───────────────────────────────────────── */
  .cta-banner {
    background: var(--g-900); color: #fff; padding: 100px 32px; text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(111,186,138,0.12), transparent 60%),
      radial-gradient(ellipse at 80% 50%, rgba(39,128,78,0.2), transparent 60%);
  }
  .cta-banner::after {
    content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.1;
    background-image:
      linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.5) 49%, rgba(255,255,255,0.5) 51%, transparent 52%),
      linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.5) 49%, rgba(255,255,255,0.5) 51%, transparent 52%);
    background-size: 50px 50px;
    mask-image: linear-gradient(to right, transparent 0%, black 30%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%, black 70%, transparent 100%);
  }
  .cta-inner { position: relative; max-width: 900px; margin: 0 auto; }
  .cta-title { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(48px, 7vw, 88px); line-height: 0.92; letter-spacing: -0.02em; margin-bottom: 24px; }
  .cta-title em { font-style: italic; color: var(--g-100); font-weight: 800; }
  .cta-sub { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 40px; }

  /* ─── PREQUALIFICATION FORM ───────────────────────────────────────── */
  .prequal-section { background: var(--n-050); padding: 80px 32px 100px; }
  .prequal-inner { max-width: 860px; margin: 0 auto; }
  .prequal-intro { margin-bottom: 48px; }
  .prequal-intro p { font-size: 16px; color: var(--n-600); line-height: 1.6; margin-top: 16px; }

  .prequal-block { background: #fff; border: 1px solid var(--n-100); border-radius: 12px; padding: 40px; margin-bottom: 24px; }
  .prequal-block-heading { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 20px; letter-spacing: 0.02em; color: var(--g-900); margin-bottom: 28px; padding-bottom: 16px; border-bottom: 2px solid var(--g-100); }

  .prequal-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .prequal-field.full { grid-column: 1 / -1; }
  .prequal-field.half { max-width: 420px; }
  .prequal-field label { font-size: 13px; font-weight: 600; color: var(--n-700); line-height: 1.4; }
  .prequal-field input, .prequal-field textarea, .prequal-field select { font-family: var(--body); font-size: 15px; color: var(--n-900); background: #fff; border: 1.5px solid var(--n-200); border-radius: 6px; padding: 10px 14px; width: 100%; transition: border-color 200ms; outline: none; }
  .prequal-field input:focus, .prequal-field textarea:focus, .prequal-field select:focus { border-color: var(--g-500); }
  .prequal-field textarea { resize: vertical; }
  .prequal-invalid { border-color: #dc2626 !important; }

  .prequal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .prequal-row.three { grid-template-columns: 1fr 1fr 1fr; }

  .prequal-sub-label { font-family: var(--mono); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--g-600); margin: 24px 0 12px; }
  .prequal-note { font-size: 13px; color: var(--n-500); line-height: 1.6; margin-bottom: 20px; }

  .prequal-radio-group { display: flex; flex-wrap: wrap; gap: 20px; padding: 4px 0; }
  .prequal-radio { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--n-800); cursor: pointer; }
  .prequal-radio input { width: auto; margin: 0; accent-color: var(--g-500); }

  .prequal-checkbox-group { display: flex; flex-wrap: wrap; gap: 12px 28px; padding: 4px 0; }
  .prequal-check { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--n-800); cursor: pointer; }
  .prequal-check input { width: auto; margin: 0; accent-color: var(--g-500); }

  .prequal-emr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 8px; }

  .prequal-osha-table { border: 1px solid var(--n-100); border-radius: 8px; overflow: hidden; margin-bottom: 24px; }
  .prequal-osha-head, .prequal-osha-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 0; }
  .prequal-osha-head { background: var(--n-050); padding: 10px 14px; font-family: var(--mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--n-500); }
  .prequal-osha-head span, .prequal-osha-row label { padding: 0 4px; }
  .prequal-osha-row { padding: 8px 14px; border-top: 1px solid var(--n-100); align-items: center; gap: 8px; }
  .prequal-osha-row label { font-size: 13px; color: var(--n-700); font-weight: 500; }
  .prequal-osha-row input { border: 1.5px solid var(--n-200); border-radius: 4px; padding: 6px 10px; font-size: 14px; width: 100%; outline: none; font-family: var(--body); }
  .prequal-osha-row input:focus { border-color: var(--g-500); }
  .prequal-osha-row input[readonly] { background: var(--n-050); color: var(--n-500); border-style: dashed; cursor: default; }

  .prequal-yn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .prequal-yn-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; grid-column: 1 / -1; }
  .prequal-yn-pair .prequal-field { margin-bottom: 0; }

  .prequal-certify { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--n-700); line-height: 1.5; cursor: pointer; margin-top: 20px; padding: 16px; background: var(--n-050); border-radius: 8px; border: 1.5px solid var(--n-100); }
  .prequal-certify input { width: auto; flex-shrink: 0; margin-top: 2px; accent-color: var(--g-500); }
  .prequal-certify.prequal-invalid { border-color: #dc2626; background: #fef2f2; }

  .prequal-inline-select { display: inline-block; width: auto; padding: 2px 8px; font-size: 13px; border: 1.5px solid var(--n-200); border-radius: 4px; vertical-align: middle; margin: 0 2px; accent-color: var(--g-500); }
  .prequal-error { font-size: 14px; color: #dc2626; font-weight: 500; margin-top: 12px; }

  .prequal-submit-row { display: flex; justify-content: flex-end; margin-top: 8px; }

  .prequal-confirm-wrap { max-width: 560px; margin: 80px auto; text-align: center; padding: 64px 40px; background: #fff; border-radius: 16px; border: 1px solid var(--n-100); }
  .prequal-confirm-icon { width: 72px; height: 72px; background: var(--g-050); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; color: var(--g-600); }
  .prequal-confirm-icon svg { width: 36px; height: 36px; }
  .prequal-confirm-wrap h2 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 36px; color: var(--g-900); margin-bottom: 16px; }
  .prequal-confirm-wrap p { font-size: 16px; color: var(--n-600); line-height: 1.6; margin-bottom: 12px; }
  .prequal-confirm-wrap a { color: var(--g-600); font-weight: 600; }

  /* ─── FOOTER MFG BAND ───────────────────────────────────────── */
  .footer-mfg { display: flex; align-items: center; gap: 40px; padding-bottom: 48px; margin-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap; }
  .footer-mfg-text { font-family: var(--display); font-weight: 800; font-size: clamp(24px, 3vw, 42px); text-transform: uppercase; color: #fff; line-height: 1; letter-spacing: -0.01em; }
  .footer-mfg-logo { height: 106px; width: auto; display: block; }

  /* ─── FOOTER ───────────────────────────────────────── */
  .footer { background: var(--n-900); color: #fff; padding: 80px 32px 32px; position: relative; overflow: hidden; }
  .footer::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.06;
    background-image:
      linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.6) 49%, rgba(255,255,255,0.6) 51%, transparent 52%),
      linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.6) 49%, rgba(255,255,255,0.6) 51%, transparent 52%);
    background-size: 40px 40px;
  }
  .footer-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 60px; margin-bottom: 64px; }
  .footer-brand p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6; margin-top: 20px; max-width: 320px; }
  .footer-col h4 {
    font-family: var(--mono); font-size: 11px; font-weight: 500; color: var(--accent);
    letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color 200ms; }
  .footer-col a:hover { color: #fff; }
  .footer-contact { display: flex; flex-direction: column; gap: 14px; }
  .footer-contact a { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.7); font-size: 14px; }
  .footer-contact a:hover { color: #fff; }
  .footer-contact svg { width: 16px; height: 16px; color: var(--accent); }
  .footer-affiliates {
    display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
  }
  .footer-affiliates-logos { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
  .affiliate-logo { height: 48px; width: auto; display: block; }
  .avetta-logo { height: 32px; }
  .twp-logo { height: 72px; }
  .affiliate-logo-wrap { display: inline-flex; align-items: flex-start; color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1; }
  .affiliate-logo-wrap .affiliate-logo { margin-right: 2px; }
  .footer-bottom {
    padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  }
  .footer-bottom p, .footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.4); font-family: var(--mono); letter-spacing: 0.08em; }
  .footer-social { display: flex; align-items: center; gap: 16px; }
  .footer-social-link { color: rgba(255,255,255,0.4); transition: color 0.2s; display: flex; align-items: center; line-height: 0; }
  .footer-social-facebook:hover { color: #1877F2; }
  .footer-social-linkedin:hover { color: #0A66C2; }
  .footer-social-twitter:hover { color: #1DA1F2; }
  .footer-social-youtube:hover { color: #FF0000; }
  .footer-social-blog:hover { color: var(--brand); }
  .footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.3); line-height: 1.5; margin-top: 16px; }

  /* ─── MODAL ───────────────────────────────────────── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 100; background: rgba(10,12,10,0.85);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    display: none; align-items: center; justify-content: center; padding: 16px;
    animation: fadeIn 300ms;
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: #fff; border-radius: 24px; width: 100%; max-width: 680px;
    max-height: 92vh; display: flex; flex-direction: column; overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    animation: slideUp 400ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .modal-header {
    padding: 28px 32px 20px; border-bottom: 1px solid var(--n-100);
    display: flex; justify-content: space-between; align-items: flex-start;
  }
  .modal-step-label { font-family: var(--mono); font-size: 11px; font-weight: 500; color: var(--g-500); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 6px; }
  .modal-title { font-family: var(--display); font-weight: 800; font-size: 36px; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1; color: var(--n-900); }
  .modal-close {
    width: 40px; height: 40px; border-radius: 50%; background: var(--n-050);
    display: flex; align-items: center; justify-content: center; color: var(--n-600); transition: all 200ms;
  }
  .modal-close:hover { background: var(--n-100); color: var(--n-900); }
  .modal-close svg { width: 18px; height: 18px; }

  .modal-progress { padding: 0 32px; }
  .progress-track { height: 3px; background: var(--n-100); border-radius: 2px; overflow: hidden; }
  .progress-fill { height: 100%; background: var(--g-500); transition: width 400ms cubic-bezier(0.4, 0, 0.2, 1); }

  .modal-body { padding: 32px; overflow-y: auto; flex: 1; }
  .modal-body .step { display: flex; flex-direction: column; gap: 24px; }
  .field-group-label { font-weight: 600; font-size: 14px; color: var(--n-900); margin-bottom: 12px; }
  .option-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; }
  .option-card {
    padding: 18px 16px; text-align: left; background: #fff;
    border: 1.5px solid var(--n-100); border-radius: 12px; transition: all 200ms; cursor: pointer;
    font-family: inherit;
  }
  .option-card:hover { border-color: var(--n-200); }
  .option-card.active { background: var(--g-050); border-color: var(--g-500); box-shadow: 0 0 0 4px rgba(39,128,78,0.08); }
  .option-card-title { font-weight: 600; font-size: 14px; color: var(--n-900); }
  .option-card-sub { font-size: 12px; color: var(--n-600); margin-top: 3px; }
  .option-chip {
    padding: 12px 14px; border: 1.5px solid var(--n-100); border-radius: 10px;
    background: #fff; color: var(--n-900); font-weight: 600; font-size: 13px;
    transition: all 200ms; cursor: pointer; font-family: inherit;
  }
  .option-chip:hover { border-color: var(--n-200); }
  .option-chip.active { background: var(--n-900); border-color: var(--n-900); color: #fff; }

  .form-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .form-row.two { grid-template-columns: 1fr 1fr; }
  .form-row.three { grid-template-columns: 2fr 1fr 1fr; }
  .input-wrap label { display: block; font-weight: 600; font-size: 13px; color: var(--n-900); margin-bottom: 8px; }
  .input-wrap input, .input-wrap textarea {
    width: 100%; padding: 14px 16px; font-size: 15px; font-family: inherit;
    border: 1.5px solid var(--n-100); border-radius: 10px; background: #fff; color: var(--n-900);
    outline: none; transition: all 200ms;
  }
  .input-wrap input:focus, .input-wrap textarea:focus { border-color: var(--g-500); box-shadow: 0 0 0 4px rgba(39,128,78,0.08); }
  .input-wrap input.error, .input-wrap textarea.error { border-color: #DC2626; }
  .input-wrap .err-msg { color: #DC2626; font-size: 12px; margin-top: 6px; font-weight: 500; display: none; }
  .input-wrap input.error + .err-msg, .input-wrap textarea.error + .err-msg { display: block; }
  .input-wrap textarea { resize: vertical; min-height: 100px; font-family: inherit; }

  .review-table { border: 1px solid var(--n-100); border-radius: 12px; overflow: hidden; }
  .review-row { display: grid; grid-template-columns: 160px 1fr; padding: 14px 18px; font-size: 14px; border-bottom: 1px solid var(--n-100); }
  .review-row:last-child { border-bottom: none; }
  .review-row:nth-child(even) { background: var(--n-050); }
  .review-key { font-family: var(--mono); font-size: 11px; font-weight: 500; color: var(--n-400); letter-spacing: 0.1em; text-transform: uppercase; }
  .review-val { color: var(--n-900); }

  .modal-footer {
    padding: 20px 32px; border-top: 1px solid var(--n-100); background: var(--n-050);
    display: flex; justify-content: space-between; align-items: center;
  }
  .btn-back { color: var(--n-600); font-size: 14px; font-weight: 600; padding: 10px 0; display: flex; align-items: center; gap: 6px; }
  .btn-back:hover { color: var(--n-900); }
  .btn-back svg { width: 16px; height: 16px; }
  .btn-next {
    background: var(--n-900); color: #fff; padding: 14px 28px; border-radius: 100px;
    font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px;
    transition: all 200ms;
  }
  .btn-next:hover { background: var(--g-900); transform: translateY(-1px); }
  .btn-next svg { width: 14px; height: 14px; }
  .btn-submit { background: var(--g-500); color: #fff; font-weight: 700; }
  .btn-submit:hover { background: var(--g-600); }
  .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

  .spinner { width: 14px; height: 14px; border: 2px solid currentColor; border-top-color: transparent; border-radius: 50%; animation: spin 0.8s linear infinite; }

  .success-panel { text-align: center; padding: 32px 0 16px; }
  .success-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--g-050); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; animation: popIn 500ms cubic-bezier(0.34, 1.56, 0.64, 1); }
  .success-icon svg { width: 40px; height: 40px; color: var(--g-500); }
  .success-panel h3 { font-family: var(--display); font-weight: 800; font-size: 36px; text-transform: uppercase; letter-spacing: -0.01em; color: var(--n-900); margin-bottom: 12px; }
  .success-panel p { color: var(--n-600); font-size: 16px; line-height: 1.6; max-width: 420px; margin: 0 auto 28px; }
  .success-panel p strong { color: var(--n-900); font-weight: 600; }
  .ref-id { background: var(--n-050); border: 1px solid var(--n-100); border-radius: 12px; padding: 16px 24px; max-width: 320px; margin: 0 auto 28px; text-align: left; }
  .ref-id-label { font-family: var(--mono); font-size: 10px; font-weight: 500; color: var(--n-400); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 4px; }
  .ref-id-val { font-family: var(--mono); font-size: 16px; color: var(--n-900); font-weight: 500; }
  .btn-done {
    background: var(--n-900); color: #fff; padding: 14px 32px; border-radius: 100px;
    font-weight: 600; font-size: 14px; transition: all 200ms;
  }
  .btn-done:hover { background: var(--g-900); }

  /* ─── BACK TO TOP ───────────────────────────────────── */
  .top-btn {
    position: fixed; bottom: 24px; right: 24px; z-index: 40;
    width: 48px; height: 48px; border-radius: 50%; background: var(--n-900); color: #fff;
    display: none; align-items: center; justify-content: center; transition: all 200ms;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  .top-btn.visible { display: flex; animation: fadeIn 300ms; }
  .top-btn:hover { background: var(--g-500); color: #fff; }
  .top-btn svg { width: 20px; height: 20px; }

  /* ─── ANIMATIONS ───────────────────────────────────── */
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes slideUp { from { opacity: 0; transform: translateY(24px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
  @keyframes popIn { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
  @keyframes underline { to { transform: scaleX(1); } }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
  @keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* ─── RESPONSIVE ───────────────────────────────────── */
  @media (max-width: 980px) {
    .nav-links, .nav-cta { display: none; }
    .menu-btn { display: flex; }
    .nav-links.mobile-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 16px; gap: 4px; border-top: 1px solid var(--n-100); }
    .nav-links.mobile-open .nav-link { color: var(--n-700); text-align: left; padding: 14px 16px; }
    .nav-links.mobile-open .nav-cta { display: inline-flex; margin: 8px 0 0; justify-content: center; }
    .service-grid { grid-template-columns: 1fr; }
    .dc-callout { grid-template-columns: 1fr; gap: 24px; padding: 36px 32px; text-align: left; }
    .dc-callout-cta { justify-self: start; }
    .solar-specialty { padding: 60px 24px; }
    .solar-callout { grid-template-columns: 1fr; gap: 24px; padding: 36px 32px; }
    .solar-callout .dc-callout-cta { justify-self: start; }
    .solar-right { flex-direction: row; justify-content: flex-start; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .loc-layout { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
    .hero-stat { border-right: none; }
    .hero-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
    section { padding: 80px 24px; }
    .form-row.two, .form-row.three { grid-template-columns: 1fr; }
    .loc-panel h3 { font-size: 48px; }
    .loc-cities { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .why-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .nav { padding: 0 20px; }
    section { padding: 64px 20px; }
  }

  /* ─── BRANCH / SUBPAGE STYLES ─────────────────────────────────── */
  
  /* Subpage hero: shorter than homepage hero */
  .subhero {
    position: relative;
    background: var(--g-900);
    color: #fff;
    padding: 140px 32px 80px;
    overflow: hidden;
  }
  .subhero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
      radial-gradient(circle at 20% 50%, rgba(39,128,78,0.4) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(26,86,52,0.3) 0%, transparent 50%);
    opacity: 0.6;
  }
  .subhero-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  .subhero-eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--g-100);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .subhero-eyebrow a {
    color: var(--g-100);
    opacity: 0.7;
    transition: opacity 200ms;
  }
  .subhero-eyebrow a:hover { opacity: 1; }
  .subhero-eyebrow span.sep { opacity: 0.4; }
  .subhero h1 {
    font-family: var(--display);
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .subhero h1 em {
    font-style: italic;
    font-weight: 600;
    color: var(--g-100);
  }
  .subhero-city {
    display: block;
    font-size: clamp(64px, 10vw, 120px);
    line-height: 0.9;
    margin-bottom: 0.08em;
  }
  .subhero p {
    font-size: 20px;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    max-width: 720px;
    margin-bottom: 32px;
  }
  .subhero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .subhero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .subhero-meta-label {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--g-100);
    opacity: 0.7;
  }
  .subhero-meta-value {
    font-size: 16px;
    font-weight: 500;
  }
  .subhero-meta-value a:hover { color: var(--g-100); }
  
  /* CTA buttons (used everywhere now) */
  .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 200ms;
    cursor: pointer;
    text-decoration: none;
  }
  .btn-primary {
    background: var(--g-500);
    color: #fff;
  }
  .btn-primary:hover {
    background: var(--g-600);
    transform: translateY(-1px);
  }
  .btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
  }
  .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
  }
  .btn-tertiary {
    background: var(--n-100);
    color: var(--n-900);
  }
  .btn-tertiary:hover {
    background: var(--n-200);
  }
  .btn-white {
    background: #fff;
    color: var(--g-700);
  }
  .btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
  }
  .btn-white svg { width: 16px; height: 16px; transition: transform 250ms; }
  .btn-white:hover svg { transform: translateX(3px); }
  
  /* Branch page intro section (always-visible content) */
  .branch-intro {
    /* bottom is tighter than top: .deep-sections adds its own 48px below this,
       so a full 80px here left a ~195px void before "Detailed Information" */
    padding: 80px 32px 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }
  .branch-disclaimer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 32px;
  }
  .branch-disclaimer p {
    font-size: 12px;
    line-height: 1.7;
    color: var(--n-400);
    font-style: italic;
  }
  .branch-intro-grid {
    /* Single-column layout; sticky aside is handled separately */
    max-width: 760px;
  }
  /* On desktop, reserve right-side space for the floating aside on all branch-page main content */
  @media (min-width: 1100px) {
    .branch-intro {
      max-width: 1280px;
      padding-right: 360px;
    }
    .deep-sections-inner {
      max-width: 1280px;
      padding-right: 360px;
    }
    /* The hero was the one block that never reserved this space, so long city
       names and subtitles ran underneath the floating card ("Dallas / Fort
       Worth, TX" lost the ", TX"; Phoenix/Tucson/Salt Lake lost the end of
       "Commercial Fence Installation,"). Reserving the gutter makes it
       impossible for anything to hide behind the card on any city page. */
    .subhero-inner {
      max-width: 1280px;
      padding-right: 360px;
    }
    /* Re-tuned for the narrower column (920px at >=1344px wide, less below).
       Sizes measured off the rendered page, not a canvas probe. The city line
       keeps its approved 120px -- every city still fits on one line there, with
       Dallas explicitly broken in its own markup. Only the subtitle needed to
       come down (88px -> 76px) so "Commercial Fence Installation," stays on one
       line on Phoenix/Tucson/Salt Lake. The vw terms scale both back as the
       reserved column narrows toward 1100px. Below 1100px the aside is hidden,
       so the original mobile/tablet sizes above still apply untouched. */
    .subhero-city { font-size: clamp(72px, 8.5vw, 120px); }
    .subhero h1 { font-size: clamp(52px, 5.3vw, 76px); }
  }
  .branch-intro h2 {
    font-family: var(--display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    color: var(--n-900);
  }
  .branch-intro p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--n-800);
    margin-bottom: 16px;
  }
  .branch-intro ul.svc-list {
    list-style: none;
    margin: 24px 0;
    padding: 24px;
    background: var(--g-050);
    border-left: 3px solid var(--g-500);
    border-radius: 4px;
  }
  .branch-intro ul.svc-list li {
    padding: 6px 0;
    font-size: 16px;
    color: var(--n-800);
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }
  .branch-intro ul.svc-list li::before {
    content: '→';
    color: var(--g-500);
    font-weight: 700;
    flex-shrink: 0;
  }

  /* Floating sticky aside (contact card + photo) - only on desktop */
  .branch-aside {
    display: none;
  }
  @media (min-width: 1100px) {
    .branch-aside {
      display: block;
      position: fixed;
      right: max(20px, calc((100vw - 1400px) / 2 + 20px));
      top: 110px;
      width: 300px;
      z-index: 30;
      max-height: calc(100vh - 130px);
      overflow-y: auto;
      transition: opacity 200ms;
    }
    .branch-aside.faded {
      opacity: 0;
      pointer-events: none;
    }
    .branch-aside:hover {
      opacity: 1;
    }
  }
  .branch-aside-card {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(13,48,28,0.10), 0 2px 8px rgba(13,48,28,0.06);
    border: 1px solid var(--n-100);
  }
  .branch-aside-card h3 {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    color: var(--n-900);
  }
  .branch-aside-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--n-100);
    font-size: 13px;
    color: var(--n-800);
    line-height: 1.5;
  }
  .branch-aside-row:last-of-type {
    border-bottom: none;
  }
  .branch-aside-label {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--n-600);
    flex-shrink: 0;
    min-width: 50px;
    padding-top: 2px;
  }
  .branch-aside-value {
    flex: 1;
    word-wrap: break-word;
  }
  .branch-aside-value a {
    color: var(--g-700);
    font-weight: 500;
  }
  .branch-aside-value a:hover {
    color: var(--g-500);
    text-decoration: underline;
  }
  .branch-aside-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Mobile/tablet contact card (inline, not floating) */
  .branch-contact-inline {
    display: block;
    background: var(--n-050);
    border-radius: 8px;
    padding: 28px;
    margin: 32px 0;
  }
  @media (min-width: 1100px) {
    .branch-contact-inline {
      display: none;
    }
  }
  .branch-contact-inline h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    color: var(--n-900);
  }
  
  /* Trust chips (Section 3 from content files) */
  .trust-chips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    padding: 24px 0;
  }
  .trust-chip {
    background: #fff;
    border: 1px solid var(--n-100);
    border-radius: 6px;
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: all 200ms;
  }
  .trust-chip-icon {
    width: 32px;
    height: 32px;
    background: var(--g-100);
    color: var(--g-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 14px;
  }
  .trust-chip-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--n-800);
  }
  
  /* Branch contact card (sticky sidebar) */
  .branch-contact-card {
    background: var(--n-050);
    border-radius: 8px;
    padding: 32px;
    position: sticky;
    top: 100px;
  }
  .branch-contact-card h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    color: var(--n-900);
  }
  .branch-contact-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--n-100);
    font-size: 14px;
    color: var(--n-800);
    line-height: 1.5;
  }
  .branch-contact-row:last-of-type {
    border-bottom: none;
  }
  .branch-contact-label {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--n-600);
    flex-shrink: 0;
    min-width: 60px;
    padding-top: 2px;
  }
  .branch-contact-value {
    flex: 1;
  }
  .branch-contact-value a {
    color: var(--g-700);
    font-weight: 500;
  }
  .branch-contact-value a:hover {
    color: var(--g-500);
    text-decoration: underline;
  }
  .branch-contact-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }
  
  /* Collapsible deep-dive sections */
  .deep-sections {
    background: var(--n-050);
    /* top is tighter than bottom -- see .branch-intro */
    padding: 48px 32px 80px;
  }
  .deep-sections-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .deep-sections-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--n-200);
  }
  .deep-sections-header h2 {
    font-family: var(--display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--n-900);
  }
  .deep-sections-header p {
    margin-top: 12px;
    font-size: 15px;
    color: var(--n-600);
  }
  details.deep-section {
    background: #fff;
    border: 1px solid var(--n-100);
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 200ms;
  }
  details.deep-section[open] {
    border-color: var(--g-500);
    box-shadow: 0 2px 8px rgba(13,48,28,0.06);
  }
  details.deep-section summary {
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--n-900);
    transition: background 200ms;
  }
  details.deep-section summary::-webkit-details-marker { display: none; }
  details.deep-section summary:hover { background: var(--n-050); }
  details.deep-section summary::after {
    content: '+';
    font-family: var(--display);
    font-size: 28px;
    font-weight: 400;
    color: var(--g-500);
    flex-shrink: 0;
    transition: transform 200ms;
    line-height: 1;
  }
  details.deep-section[open] summary::after {
    content: '−';
  }
  .deep-section-body {
    padding: 8px 24px 28px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--n-800);
  }
  .deep-section-body h4 {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--n-900);
    margin: 24px 0 12px;
  }
  .deep-section-body p { margin-bottom: 14px; }
  .deep-section-body ul {
    margin: 12px 0 16px 20px;
  }
  .deep-section-body ul li {
    margin-bottom: 8px;
  }
  .deep-section-body ol {
    margin: 12px 0 16px 24px;
    counter-reset: step;
    list-style: none;
  }
  .deep-section-body ol li {
    counter-increment: step;
    margin-bottom: 10px;
    padding-left: 8px;
    position: relative;
  }
  .deep-section-body ol li::before {
    content: counter(step) '.';
    position: absolute;
    left: -24px;
    color: var(--g-500);
    font-weight: 700;
  }
  
  /* FAQ blocks inside deep sections - classic Q/A format, always visible */
  .faq-block {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--n-100);
  }
  .faq-block-heading {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--g-700);
    margin-bottom: 20px;
    font-weight: 600;
  }
  .faq-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--n-100);
  }
  .faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .faq-q {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 600;
    color: var(--n-900);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .faq-q::before {
    content: 'Q:';
    color: var(--g-500);
    font-family: var(--mono);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 14px;
    padding-top: 2px;
  }
  .faq-a {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--n-700);
    font-size: 15px;
    line-height: 1.6;
  }
  .faq-a::before {
    content: 'A:';
    color: var(--n-600);
    font-family: var(--mono);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 14px;
    padding-top: 2px;
  }
  
  /* Photo placeholder slots */
  .photo-slot {
    background: var(--n-050);
    border: 2px dashed var(--n-200);
    border-radius: 6px;
    padding: 24px;
    text-align: center;
    margin: 24px 0;
    color: var(--n-600);
  }
  .photo-slot-label {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--n-400);
    margin-bottom: 6px;
  }
  .photo-slot-desc {
    font-size: 14px;
    color: var(--n-700);
    line-height: 1.5;
  }
  .photo-slot.aspect-wide {
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .photo-slot.aspect-square {
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  /* Issue flags - REVIEW BEFORE PUBLISHING */
  .review-flag {
    background: #FFF8E6;
    border-left: 3px solid #E6A500;
    padding: 10px 14px;
    margin: 12px 0;
    font-size: 13px;
    color: #6B4F00;
    border-radius: 0 4px 4px 0;
  }
  .review-flag-label {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #B58200;
    font-weight: 700;
    margin-right: 8px;
  }
  
  /* Quick-answer block inside intro */
  .quick-answer {
    background: linear-gradient(135deg, var(--g-050), #fff);
    border: 1px solid var(--g-100);
    border-radius: 8px;
    padding: 28px;
    margin: 32px 0;
  }
  .quick-answer-label {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--g-700);
    margin-bottom: 8px;
    font-weight: 600;
  }
  .quick-answer h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--n-900);
    margin-bottom: 12px;
  }
  .quick-answer p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--n-800);
    margin-bottom: 12px;
  }
  /* Match the surrounding .quick-answer p (15px). Without an explicit size the
     list inherited 16px from the body and read larger than the copy around it.
     The 20px left margin mirrors .deep-section-body ul -- it also gives the disc
     markers somewhere to sit, since the global reset zeroes ul padding. */
  .quick-answer ul {
    margin: 0 0 20px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--n-800);
  }
  .quick-answer li {
    margin-bottom: 6px;
  }
  
  /* Mobile adjustments */
  @media (max-width: 900px) {
    .subhero { padding: 120px 20px 60px; }
    .branch-intro { padding: 60px 20px 32px; }
    .branch-intro-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .branch-contact-card {
      position: static;
    }
    .deep-sections { padding: 36px 20px 60px; }
    details.deep-section summary {
      padding: 16px 18px;
      font-size: 17px;
    }
    .deep-section-body { padding: 4px 18px 22px; font-size: 15px; }
    .subhero-meta { gap: 20px; }
  }

  /* ─── INLINE CONTACT FORM SECTION ─────────────────────────────── */
  .contact-section {
    background: var(--n-050);
    padding: 96px 32px;
  }
  .contact-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .contact-section-header {
    grid-column: 1 / -1;
    margin-bottom: 32px;
  }
  .contact-section-header .eyebrow {
    font-family: var(--mono);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--g-700);
    margin-bottom: 16px;
    font-weight: 600;
  }
  .contact-section-header h2 {
    font-family: var(--display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--n-900);
    margin-bottom: 20px;
  }
  .contact-section-header h2 em {
    font-style: italic;
    font-weight: 800;
    color: #004B2D;
  }
  .contact-section-header p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--n-700);
    max-width: 720px;
  }

  /* Inline form host container */
  #inlineContactForm {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(13,48,28,0.06);
    border: 1px solid var(--n-100);
  }
  .inline-form .form-section {
    margin-bottom: 28px;
  }
  .inline-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .inline-form .form-row-three {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .inline-form .form-row .input-wrap {
    display: flex;
    flex-direction: column;
  }
  .inline-form .form-row > .input-wrap:only-child {
    grid-column: 1 / -1;
  }
  .inline-form label {
    font-size: 13px;
    font-weight: 500;
    color: var(--n-700);
    margin-bottom: 6px;
  }
  .inline-form input,
  .inline-form textarea {
    font-family: var(--body);
    font-size: 15px;
    padding: 12px 14px;
    border: 1px solid var(--n-200);
    border-radius: 6px;
    background: #fff;
    transition: border-color 200ms, box-shadow 200ms;
    width: 100%;
  }
  .inline-form input:focus,
  .inline-form textarea:focus {
    outline: none;
    border-color: var(--g-500);
    box-shadow: 0 0 0 3px rgba(39,128,78,0.12);
  }
  .inline-form input.error,
  .inline-form textarea.error {
    border-color: #DC2626;
  }
  .inline-form textarea {
    resize: vertical;
    min-height: 100px;
    font-family: var(--body);
  }
  .inline-form .field-group-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--n-800);
    margin-bottom: 12px;
  }
  .inline-form .option-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .inline-form .option-card {
    background: #fff;
    border: 1px solid var(--n-200);
    border-radius: 8px;
    padding: 16px 20px;
    cursor: pointer;
    text-align: left;
    transition: all 200ms;
    flex: 1;
    min-width: 180px;
  }
  .inline-form .option-card:hover {
    border-color: var(--g-500);
    background: var(--g-050);
  }
  .inline-form .option-card.active {
    border-color: var(--g-500);
    background: var(--g-050);
    box-shadow: 0 0 0 1px var(--g-500);
  }
  .inline-form .option-card-title {
    font-weight: 600;
    color: var(--n-900);
    font-size: 15px;
    margin-bottom: 2px;
  }
  .inline-form .option-card-sub {
    font-size: 12px;
    color: var(--n-600);
  }
  .inline-form .option-chip {
    background: #fff;
    border: 1px solid var(--n-200);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--n-800);
    cursor: pointer;
    transition: all 200ms;
  }
  .inline-form .option-chip:hover {
    border-color: var(--g-500);
    background: var(--g-050);
  }
  .inline-form .option-chip.active {
    border-color: var(--g-500);
    background: var(--g-700);
    color: #fff;
  }
  .inline-submit-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--n-100);
    flex-wrap: wrap;
  }
  .inline-submit-note {
    font-size: 13px;
    color: var(--n-600);
    flex: 1;
  }

  /* Contact info card (right column on desktop) */
  .contact-info-card {
    background: var(--g-900);
    color: #fff;
    border-radius: 12px;
    padding: 40px;
    position: sticky;
    top: 110px;
  }
  .contact-info-card h3 {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    color: #fff;
  }
  .contact-info-row {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .contact-info-row:last-of-type {
    border-bottom: none;
  }
  .contact-info-label {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--g-100);
    margin-bottom: 6px;
    font-weight: 600;
  }
  .contact-info-value {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255,255,255,0.92);
  }
  .contact-info-value a {
    color: #fff;
    font-weight: 500;
    transition: color 200ms;
  }
  .contact-info-value a:hover {
    color: var(--g-100);
  }

  /* Mobile/tablet adjustments for contact section */
  @media (max-width: 900px) {
    .contact-section { padding: 64px 20px; }
    .contact-section-inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    #inlineContactForm { padding: 24px; }
    .inline-form .form-row {
      grid-template-columns: 1fr;
    }
    .inline-form .form-row-three {
      grid-template-columns: 2fr 1fr 1fr;
    }
    .contact-info-card {
      position: static;
      padding: 28px;
    }
    .inline-form .option-card {
      flex: 1 1 100%;
    }
  }
