  /* ============================================================
       DESIGN TOKENS
       ============================================================ */
  :root {
      /* Logo red #E31B23 + warm red-tinted neutrals (no pure white/black) */
      --crimson: #E31B23;
      --crimson-dark: #C41920;
      --crimson-light: #EF5056;
      --crimson-muted: #A84850;
      --crimson-pale: #FAD4D2;
      --crimson-blush: #FAEFED;
      --crimson-rose: #F5E0DD;
      --crimson-wine: #6B2E34;
      --crimson-wine-deep: #5A252B;
      --crimson-wine-darker: #4A1E24;
      --crimson-ink: #3D181C;
      --text-on-dark: #FFF2F0;
      --text-on-light: #4A2226;
      --hero-surface: #FDF6F5;
      --hero-bg: #FAEFED;
      --hero-muted: #F0D8D5;
      --hero-card: #FDF8F7;
      --header-bg: #6B2E34;
      --header-bg-scrolled: #5A252B;
      --black: #5A252B;
      --ink: #5A252B;
      --ink2: #6B3238;
      --white: #FFF5F3;
      --beige: #F0DDD9;
      --olive: #6b7a3d;
      --cream: #FAEFED;
      --gold: #E8A84A;
      --gray: #9A7074;
      --text-muted: #7A5256;
      --glass: rgba(255, 242, 240, 0.08);
      --glass-border: rgba(255, 230, 228, 0.14);
      --shadow-red: rgba(227, 27, 35, 0.28);
  }

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

  html {
      scroll-behavior: smooth;
  }

  .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
  }

  body {
      font-family: 'DM Sans', sans-serif;
      background: var(--hero-bg);
      color: var(--text-on-light);
      overflow-x: hidden;
  }

  /* Wine-tinted dark sections (logo palette, not black) */
  .section-wine,
  .services-section,
  .service-area-section,
  .feat-section,
  .faq-section,
  .contact-section {
      background: linear-gradient(165deg, var(--crimson-wine-darker) 0%, var(--crimson-wine-deep) 45%, var(--crimson-wine) 100%);
      color: var(--text-on-dark);
  }

  .section-wine .section-title,
  .services-section .section-title,
  .service-area-section .section-title,
  .feat-section .section-title,
  .faq-section .section-title,
  .contact-section .section-title {
      color: var(--text-on-dark);
  }

  .section-wine .body-text,
  .services-section .body-text,
  .service-area-section .body-text,
  .faq-section .body-text,
  .contact-section .body-text {
      color: rgba(255, 242, 240, 0.78);
  }

  /* ============================================================
       HEADER — Full-width wine bar (logo red accents)
       ============================================================ */
  .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: var(--header-bg);
      border-bottom: 1px solid rgba(227, 27, 35, 0.28);
      transition: background 0.35s ease, box-shadow 0.35s ease;
  }

  .navbar.scrolled {
      background: var(--header-bg-scrolled);
      box-shadow: 0 10px 40px rgba(74, 30, 36, 0.45);
      border-bottom-color: rgba(227, 27, 35, 0.5);
  }

  .navbar-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 10px clamp(20px, 4vw, 40px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
  }

  .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
  }

  .nav-logo-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, var(--hero-surface) 0%, var(--crimson-blush) 100%);
      border-radius: 12px;
      padding: 6px 14px;
      border: 1px solid rgba(227, 27, 35, 0.2);
      box-shadow: 0 4px 18px rgba(74, 30, 36, 0.25);
  }

  .nav-logo-img {
      height: 52px;
      width: auto;
      max-width: 180px;
      display: block;
      object-fit: contain;
  }

  .nav-main {
      flex: 1;
      display: flex;
      justify-content: center;
  }

  .nav-links {
      display: flex;
      align-items: center;
      gap: clamp(18px, 3vw, 36px);
      list-style: none;
      margin: 0;
      padding: 0;
  }

  .nav-links a {
      color: rgba(255, 242, 240, 0.85);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.03em;
      transition: color 0.2s;
  }

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

  .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
  }

  .nav-phone {
      color: var(--gold);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: clamp(15px, 2vw, 18px);
      letter-spacing: 0.04em;
      text-decoration: none;
      white-space: nowrap;
      transition: opacity 0.2s;
  }

  .nav-phone:hover {
      opacity: 0.88;
      color: #f5cc6a;
  }

  .nav-cta {
      background: var(--crimson);
      color: var(--white) !important;
      padding: 11px 22px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 13px;
      text-decoration: none;
      letter-spacing: 0.04em;
      white-space: nowrap;
      box-shadow: 0 4px 20px var(--shadow-red);
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  }

  .nav-cta:hover {
      background: var(--crimson-dark);
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(227, 38, 42, 0.5);
  }

  /* ============================================================
       HERO — Split brutalist (cream + charcoal, logo palette)
       ============================================================ */
  .hero {
      min-height: 100vh;
      background: var(--hero-bg);
      padding: 76px 0 56px;
      position: relative;
      overflow: hidden;
  }

  .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
          radial-gradient(ellipse 55% 40% at 12% 20%, rgba(227, 27, 35, 0.09), transparent 55%),
          radial-gradient(ellipse 40% 35% at 88% 80%, rgba(107, 46, 52, 0.08), transparent 50%);
      pointer-events: none;
  }

  .hero-brutalist {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.42fr);
      min-height: calc(100vh - 76px);
      max-width: 1440px;
      margin: 0 auto;
      box-shadow: 0 24px 80px rgba(107, 46, 52, 0.14);
  }

  .hero-panel--light {
      background: linear-gradient(180deg, var(--hero-bg) 0%, var(--crimson-blush) 100%);
      padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 56px) clamp(24px, 3vw, 40px);
      display: flex;
      flex-direction: column;
      gap: clamp(16px, 2.5vh, 24px);
      border-right: 1px solid rgba(227, 27, 35, 0.1);
  }

  .hero-panel-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
  }

  .hero-mini-logo {
      height: 48px;
      width: auto;
      object-fit: contain;
      opacity: 0.95;
  }

  .hero-brand-pill {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--crimson-muted);
      background: rgba(227, 27, 35, 0.1);
      border: 1px solid rgba(227, 27, 35, 0.22);
      padding: 8px 14px;
      border-radius: 999px;
  }

  .hero-kicker {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--crimson-muted);
      margin: 0;
  }

  .hero-headline {
      margin: 0;
      line-height: 1.08;
      max-width: 640px;
  }

  .hero-headline-dark {
      display: block;
      font-family: 'Crimson Pro', Georgia, serif;
      font-weight: 600;
      font-size: clamp(36px, 5.2vw, 58px);
      color: var(--crimson-ink);
      letter-spacing: -0.02em;
  }

  .hero-headline-accent {
      display: block;
      font-family: 'Crimson Pro', Georgia, serif;
      font-style: italic;
      font-weight: 400;
      font-size: clamp(40px, 5.8vw, 64px);
      color: var(--crimson);
      margin-top: -2px;
  }

  .hero-headline-loc {
      display: block;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: clamp(18px, 2.2vw, 24px);
      color: var(--text-muted);
      margin-top: 8px;
      letter-spacing: 0.01em;
  }

  .hero-subline {
      font-size: clamp(14px, 1.6vw, 16px);
      color: var(--text-muted);
      line-height: 1.65;
      max-width: 520px;
      margin: 0;
  }

  .hero-services-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
  }

  .hero-svc-card {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      padding: 16px 14px;
      background: var(--hero-card);
      border: 1px solid rgba(227, 27, 35, 0.12);
      border-radius: 12px;
      text-decoration: none;
      box-shadow: 0 4px 18px rgba(107, 46, 52, 0.08);
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  }

  .hero-svc-card:hover {
      transform: translateY(-3px);
      border-color: rgba(227, 27, 35, 0.32);
      box-shadow: 0 10px 28px rgba(227, 27, 35, 0.14);
  }

  .hero-svc-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
  }

  .hero-svc-icon--duct { background: var(--crimson-pale); color: var(--crimson); }
  .hero-svc-icon--hvac { background: #F5D8D6; color: var(--crimson-wine); }
  .hero-svc-icon--dryer { background: #F8E0DC; color: var(--crimson-muted); }
  .hero-svc-icon--air { background: #F0D4D2; color: var(--crimson-dark); }

  .hero-svc-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
  }

  .hero-svc-label {
      font-weight: 600;
      font-size: 13px;
      color: var(--crimson-ink);
      line-height: 1.25;
  }

  .hero-svc-meta {
      font-size: 9px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
  }

  .hero-action-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 20px;
  }

  .hero-quote-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 15px 32px;
      background: var(--crimson);
      color: var(--text-on-dark);
      border-radius: 12px;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      box-shadow: 0 8px 28px var(--shadow-red);
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  }

  .hero-quote-btn:hover {
      background: var(--crimson-dark);
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(227, 27, 35, 0.4);
  }

  .hero-reviews {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
  }

  .hero-reviews-star {
      color: var(--gold);
      font-size: 18px;
      line-height: 1;
  }

  .hero-photo-strip {
      margin-top: auto;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(227, 27, 35, 0.14);
      box-shadow: 0 12px 40px rgba(107, 46, 52, 0.12);
      aspect-ratio: 21 / 9;
      max-height: 280px;
      background: var(--hero-muted);
  }

  .hero-photo-strip img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 35%;
      display: block;
  }

  .hero-panel--right {
      background: linear-gradient(180deg, var(--crimson-wine) 0%, var(--crimson-wine-deep) 100%);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 32px);
      color: var(--text-on-dark);
  }

  .hero-panel-stats {
      display: flex;
      flex-direction: column;
      gap: 28px;
  }

  .hero-book-outline {
      align-self: flex-start;
      padding: 10px 22px;
      border: 1.5px solid rgba(255, 242, 240, 0.4);
      border-radius: 999px;
      color: var(--text-on-dark);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s;
  }

  .hero-book-outline:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--crimson);
  }

  .hero-expert-badge {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--crimson-light);
  }

  .hero-stats-row {
      display: flex;
      align-items: stretch;
      gap: 0;
  }

  .hero-stat {
      flex: 1;
      text-align: center;
      padding: 0 8px;
  }

  .hero-stat-num {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: clamp(28px, 4vw, 38px);
      color: var(--text-on-dark);
      line-height: 1;
  }

  .hero-stat-label {
      display: block;
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255, 242, 240, 0.55);
      margin-top: 8px;
      line-height: 1.35;
  }

  .hero-stat-divider {
      width: 1px;
      background: rgba(255, 255, 255, 0.12);
      align-self: stretch;
      margin: 4px 0;
  }

  .hero-trust-copy {
      font-size: 12px;
      line-height: 1.6;
      color: rgba(255, 242, 240, 0.65);
      margin: 0;
  }

  .hero-panel-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 6px;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 24px;
  }

  .hero-avail-label {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 242, 240, 0.5);
      margin: 0;
  }

  .hero-avail-big {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: clamp(36px, 5vw, 48px);
      color: rgba(255, 242, 240, 0.25);
      line-height: 1;
      margin: 0 0 16px;
      letter-spacing: 0.02em;
  }

  .hero-call-label {
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255, 242, 240, 0.6);
      margin: 0;
  }

  .hero-phone {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: clamp(26px, 3.5vw, 34px);
      color: var(--gold);
      text-decoration: none;
      letter-spacing: 0.03em;
      line-height: 1.2;
      margin: 4px 0 16px;
      transition: color 0.2s;
  }

  .hero-phone:hover {
      color: #f5cc6a;
  }

  .hero-book-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 220px;
      padding: 14px 24px;
      background: var(--crimson);
      color: var(--white);
      border-radius: 10px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      box-shadow: 0 8px 28px var(--shadow-red);
      transition: background 0.2s, transform 0.2s;
  }

  .hero-book-btn:hover {
      background: var(--crimson-dark);
      transform: translateY(-2px);
  }

  .hero-link-services {
      font-size: 12px;
      color: rgba(255, 242, 240, 0.55);
      text-decoration: none;
      margin-top: 8px;
      letter-spacing: 0.04em;
      transition: color 0.2s;
  }

  .hero-link-services:hover {
      color: var(--text-on-dark);
  }

  /* ============================================================
       BUTTONS
       ============================================================ */
  .btn-p {
      background: var(--crimson);
      color: var(--text-on-dark);
      padding: 15px 36px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      letter-spacing: 0.03em;
      transition: all 0.3s;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      box-shadow: 0 6px 28px rgba(215, 38, 61, 0.38);
  }

  .btn-p:hover {
      background: var(--crimson-dark);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(215, 38, 61, 0.5);
  }

  .btn-s {
      background: transparent;
      color: var(--text-on-dark);
      padding: 15px 36px;
      border-radius: 50px;
      font-weight: 500;
      font-size: 15px;
      text-decoration: none;
      letter-spacing: 0.03em;
      transition: all 0.3s;
      border: 1px solid rgba(255, 255, 255, 0.22);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 9px;
  }

  .btn-s:hover {
      border-color: var(--crimson);
      color: var(--crimson);
  }

  /* ============================================================
       SHARED SECTION HELPERS
       ============================================================ */
  .section-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--crimson);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .section-label::before {
      content: '';
      width: 28px;
      height: 2px;
      background: var(--crimson);
  }

  .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: clamp(36px, 4.5vw, 62px);
      line-height: 1.0;
      margin-bottom: 26px;
      letter-spacing: -0.01em;
  }

  .section-title em {
      color: var(--crimson);
      font-style: normal;
  }

  .body-text {
      color: var(--text-muted);
      line-height: 1.78;
      font-size: 16px;
      margin-bottom: 18px;
  }

  .fade-in {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.75s ease, transform 0.75s ease;
  }

  .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
  }

  /* ============================================================
       ABOUT
       ============================================================ */
  .about {
      padding: 130px 40px;
      max-width: 1320px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 90px;
      align-items: center;
  }

  .about-img-wrap {
      position: relative;
  }

  .about-img-box {
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: 4px;
      background: linear-gradient(145deg, #5A252B 0%, #6B3238 50%, #4A1E24 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .about-img-box::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(-45deg, transparent, transparent 22px,
              rgba(215, 38, 61, 0.035) 22px, rgba(215, 38, 61, 0.035) 23px);
  }

  .about-img-box svg {
      width: 110px;
      height: 110px;
      opacity: 0.25;
      fill: var(--crimson);
      position: relative;
      z-index: 1;
  }

  .about-badge {
      position: absolute;
      top: -22px;
      right: -22px;
      width: 108px;
      height: 108px;
      background: var(--crimson);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 30px;
      color: var(--text-on-dark);
      box-shadow: 0 8px 36px rgba(227, 27, 35, 0.45);
      line-height: 1;
  }

  .about-badge small {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-align: center;
      margin-top: 2px;
  }

  .about-list {
      list-style: none;
      margin: 28px 0;
      display: flex;
      flex-direction: column;
      gap: 13px;
  }

  .about-list li {
      display: flex;
      align-items: flex-start;
      gap: 13px;
      font-size: 15px;
      color: rgba(255, 242, 240, 0.9);
      font-weight: 500;
  }

  .about-list li .chk {
      width: 22px;
      height: 22px;
      background: var(--crimson);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
  }

  .about-list li .chk svg {
      width: 12px;
      height: 12px;
      stroke: var(--text-on-dark);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
  }

  /* ============================================================
       STATS
       ============================================================ */
  .stats {
      background: var(--crimson);
      padding: 64px 40px;
      position: relative;
      overflow: hidden;
  }

  .stats::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(90deg, transparent, transparent 88px,
              rgba(255, 255, 255, 0.045) 88px, rgba(255, 255, 255, 0.045) 89px);
  }

  .stats::after {
      content: 'EVANSTON';
      position: absolute;
      right: -40px;
      top: 50%;
      transform: translateY(-50%);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 160px;
      line-height: 1;
      color: rgba(255, 255, 255, 0.06);
      pointer-events: none;
      white-space: nowrap;
  }

  .stats-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      z-index: 1;
  }

  .stat-item {
      text-align: center;
      padding: 24px 20px;
      border-right: 1px solid rgba(255, 255, 255, 0.22);
  }

  .stat-item:last-child {
      border-right: none;
  }

  .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(48px, 5.5vw, 80px);
      color: var(--text-on-dark);
      line-height: 1;
      margin-bottom: 6px;
  }

  .stat-lbl {
      font-size: 12px;
      color: rgba(255, 242, 240, 0.82);
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
  }

  /* ============================================================
       SERVICES — Cinematic Horizontal Scroll
       ============================================================ */
  .services-section {
      padding: 120px 0 0;
  }

  .services-head {
      max-width: 1220px;
      margin: 0 auto 60px;
      padding: 0 44px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
  }

  .scroll-hint {
      font-size: 13px;
      color: rgba(255, 242, 240, 0.5);
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .scroll-hint svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
  }

  .cin-wrap {
      position: relative;
      overflow: hidden;
  }

  .cin-counter {
      position: absolute;
      top: 28px;
      right: 40px;
      z-index: 20;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 17px;
      letter-spacing: 0.12em;
      color: var(--text-on-dark);
      background: rgba(90, 37, 43, 0.75);
      backdrop-filter: blur(12px);
      padding: 8px 18px;
      border-radius: 30px;
      border: 1px solid rgba(255, 242, 240, 0.12);
      pointer-events: none;
  }

  .cin-track {
      display: flex;
      overflow-x: scroll;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      height: 80vh;
      min-height: 520px;
      max-height: 700px;
      cursor: grab;
  }

  .cin-track::-webkit-scrollbar {
      display: none;
  }

  .cin-track {
      scrollbar-width: none;
  }

  .cin-track.grabbing {
      cursor: grabbing;
  }

  .cin-card {
      flex: 0 0 clamp(420px, 58vw, 620px);
      height: 100%;
      position: relative;
      scroll-snap-align: start;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 52px 44px;
      border-right: 1px solid rgba(255, 255, 255, 0.05);
      overflow: hidden;
  }

  .cin-card.dk {
      background: linear-gradient(160deg, #4A1E24 0%, #5A252B 100%);
  }

  .cin-card.lt {
      background: linear-gradient(160deg, #5A252B 0%, #6B3238 100%);
  }

  .cin-bg-num {
      position: absolute;
      top: 16px;
      left: 28px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(110px, 14vw, 200px);
      color: var(--crimson);
      opacity: 0.055;
      line-height: 1;
      pointer-events: none;
      user-select: none;
  }

  .cin-icon {
      width: 54px;
      height: 54px;
      background: rgba(215, 38, 61, 0.13);
      border: 1px solid rgba(215, 38, 61, 0.26);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
  }

  .cin-icon svg {
      width: 28px;
      height: 28px;
      stroke: var(--crimson);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
  }

  .cin-snum {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      color: var(--crimson);
      margin-bottom: 10px;
  }

  .cin-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: clamp(34px, 4vw, 58px);
      line-height: 1.0;
      margin-bottom: 18px;
      letter-spacing: -0.01em;
      color: var(--text-on-dark);
  }

  .cin-desc {
      color: rgba(255, 242, 240, 0.72);
      font-size: 15px;
      line-height: 1.68;
      max-width: 400px;
      margin-bottom: 30px;
  }

  .cin-arrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--crimson);
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-decoration: none;
      text-transform: uppercase;
      transition: gap 0.25s;
  }

  .cin-arrow:hover {
      gap: 18px;
  }

  .cin-arrow svg {
      width: 17px;
      height: 17px;
      stroke: var(--crimson);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
  }

  /* ============================================================
       SERVICE AREA
       ============================================================ */
  .service-area {
      max-width: 1320px;
      margin: 0 auto;
      padding: 130px 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 90px;
      align-items: center;
  }

  .area-dial {
      position: relative;
      width: clamp(280px, 36vw, 500px);
      height: clamp(280px, 36vw, 500px);
      margin: 0 auto;
  }

  .area-ring {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 1px solid rgba(215, 38, 61, 0.18);
  }

  .area-ring-2 {
      inset: 16px;
      border: 1px dashed rgba(215, 38, 61, 0.1);
  }

  .area-ring-3 {
      inset: 32px;
      border: 1px solid rgba(215, 38, 61, 0.06);
  }

  .area-center-badge {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 84px;
      height: 84px;
      background: var(--crimson);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 48px rgba(215, 38, 61, 0.5), 0 0 0 8px rgba(215, 38, 61, 0.08);
      z-index: 2;
      text-align: center;
      padding: 10px;
  }

  .area-center-badge svg {
      width: 30px;
      height: 30px;
      fill: white;
  }

  .area-center-badge span {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.85);
      margin-top: 3px;
  }

  .area-city-dot {
      position: absolute;
      transform: translate(-50%, -50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
  }

  .city-pill {
      background: rgba(90, 37, 43, 0.92);
      border: 1px solid rgba(227, 27, 35, 0.35);
      border-radius: 20px;
      padding: 5px 13px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: rgba(255, 242, 240, 0.9);
      backdrop-filter: blur(10px);
      white-space: nowrap;
  }

  .city-pulse {
      width: 8px;
      height: 8px;
      background: var(--crimson);
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(215, 38, 61, 0.2);
      animation: cityPulse 2.4s ease infinite;
  }

  @keyframes cityPulse {

      0%,
      100% {
          box-shadow: 0 0 0 3px rgba(215, 38, 61, 0.2)
      }

      50% {
          box-shadow: 0 0 0 6px rgba(215, 38, 61, 0.35)
      }
  }

  .cities-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 11px;
      margin-top: 28px;
  }

  .city-tag {
      background: rgba(215, 38, 61, 0.07);
      border: 1px solid rgba(215, 38, 61, 0.18);
      border-radius: 8px;
      padding: 12px 16px;
      font-size: 14px;
      font-weight: 500;
      color: rgba(255, 242, 240, 0.88);
      display: flex;
      align-items: center;
      gap: 9px;
      transition: background 0.2s, border-color 0.2s;
  }

  .city-tag:hover {
      background: rgba(215, 38, 61, 0.14);
      border-color: rgba(215, 38, 61, 0.36);
  }

  .city-tag::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--crimson);
      border-radius: 50%;
      flex-shrink: 0;
  }

  /* ============================================================
       FEATURED SERVICE — Stage
       ============================================================ */
  .feat-head {
      max-width: 1220px;
      margin: 0 auto;
      padding: 110px 44px 52px;
  }

  .stage-wrap {
      position: relative;
      width: 100%;
      height: 600px;
      overflow: hidden;
  }

  .stage-layer {
      position: absolute;
      inset: 0;
      transition: opacity 0.4s ease;
  }

  .stage-layer-1 {
      background: linear-gradient(135deg, #4A1E24 0%, #6B2E34 40%, #5A252B 100%);
      opacity: 1;
  }

  .stage-layer-2 {
      background: linear-gradient(135deg, #5A252B 0%, #7A3840 40%, #4A1E24 100%);
      opacity: 0;
  }

  /* SVG decorative pattern on stage */
  .stage-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.04;
      pointer-events: none;
      background-image: repeating-linear-gradient(0deg, transparent, transparent 60px,
              rgba(215, 38, 61, 1) 60px, rgba(215, 38, 61, 1) 61px), repeating-linear-gradient(90deg, transparent, transparent 60px,
              rgba(215, 38, 61, 1) 60px, rgba(215, 38, 61, 1) 61px);
  }

  .stage-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(74, 30, 36, 0.92) 0%, rgba(90, 37, 43, 0.35) 55%, transparent 100%);
  }

  .stage-svc-name {
      position: absolute;
      bottom: 90px;
      left: 60px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(54px, 7vw, 100px);
      color: var(--text-on-dark);
      line-height: 1.0;
      letter-spacing: -0.02em;
      transition: transform 0.35s ease, opacity 0.35s ease;
      max-width: 60%;
  }

  .stage-faded-n {
      position: absolute;
      bottom: 24px;
      right: 54px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 150px;
      color: var(--crimson);
      opacity: 0.07;
      line-height: 1;
      pointer-events: none;
  }

  /* Glass panel */
  .stage-glass {
      position: absolute;
      top: 50%;
      right: 44px;
      transform: translateY(-50%);
      width: 340px;
      background: rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 6px;
      padding: 34px;
  }

  .glass-cat {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      color: var(--crimson);
      text-transform: uppercase;
      margin-bottom: 14px;
  }

  .glass-desc {
      color: rgba(255, 255, 255, 0.72);
      font-size: 14px;
      line-height: 1.68;
      margin-bottom: 22px;
  }

  .glass-steps {
      list-style: none;
      margin-bottom: 26px;
      display: flex;
      flex-direction: column;
      gap: 11px;
  }

  .glass-steps li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.62);
  }

  .gs-num {
      width: 22px;
      height: 22px;
      background: var(--crimson);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 700;
      flex-shrink: 0;
      color: var(--text-on-dark);
  }

  /* Progress bar */
  .stage-progress {
      height: 3px;
      background: rgba(255, 255, 255, 0.08);
      position: relative;
      overflow: hidden;
  }

  .stage-prog-fill {
      height: 100%;
      background: var(--crimson);
      width: 0;
  }

  @keyframes progFill {
      0% {
          width: 0%
      }

      100% {
          width: 100%
      }
  }

  /* Selector row */
  .stage-selector {
      display: flex;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      background: rgba(74, 30, 36, 0.97);
  }

  .sel-tab {
      flex: 1;
      padding: 22px 16px;
      border-right: 1px solid rgba(255, 255, 255, 0.05);
      cursor: pointer;
      position: relative;
      transition: background 0.25s;
  }

  .sel-tab:last-child {
      border-right: none;
  }

  .sel-tab::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--crimson);
      transform: scaleX(0);
      transition: transform 0.3s;
      transform-origin: left;
  }

  .sel-tab.active::after {
      transform: scaleX(1);
  }

  .sel-tab:hover {
      background: rgba(215, 38, 61, 0.05);
  }

  .sel-tab-n {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.15em;
      color: rgba(255, 255, 255, 0.3);
      margin-bottom: 5px;
  }

  .sel-tab-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.04em;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      transition: color 0.25s;
      font-size: 13px;
  }

  .sel-tab.active .sel-tab-name {
      color: var(--text-on-dark);
      font-size: 14px;
  }

  /* ============================================================
       FAQ — Rotating Wheel
       ============================================================ */
  .faq-section {
      padding: 130px 40px;
      overflow: hidden;
  }

  .faq-inner {
      max-width: 1220px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 90px;
      align-items: center;
  }

  .faq-wheel-wrap {
      position: relative;
      width: clamp(300px, 36vw, 500px);
      height: clamp(300px, 36vw, 500px);
      margin: 0 auto;
  }

  .faq-wheel {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 1px solid rgba(215, 38, 61, 0.18);
      position: relative;
      transition: transform 0.65s cubic-bezier(0.34, 1.3, 0.64, 1);
  }

  .faq-wheel::before {
      content: '';
      position: absolute;
      inset: 12px;
      border-radius: 50%;
      border: 1px dashed rgba(215, 38, 61, 0.10);
  }

  .faq-wheel::after {
      content: '';
      position: absolute;
      inset: 24px;
      border-radius: 50%;
      border: 1px solid rgba(215, 38, 61, 0.06);
  }

  .faq-spoke {
      position: absolute;
      top: 50%;
      left: 50%;
      height: 1px;
      width: calc(50% - 58px);
      background: rgba(215, 38, 61, 0.16);
      transform-origin: 0 0;
  }

  .faq-wheel-hub {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 92px;
      height: 92px;
      background: var(--crimson);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 12px;
      z-index: 3;
      box-shadow: 0 0 48px rgba(215, 38, 61, 0.45);
  }

  .hub-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-on-dark);
      line-height: 1.3;
  }

  .faq-cat {
      position: absolute;
      transform: translate(-50%, -50%);
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      transition: transform 0.2s;
  }

  .faq-cat:hover {
      transform: translate(-50%, -50%) scale(1.08);
  }

  .faq-cat-orb {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(90, 37, 43, 0.92);
      border: 1.5px solid rgba(227, 27, 35, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(10px);
      transition: all 0.3s;
  }

  .faq-cat-orb svg {
      width: 20px;
      height: 20px;
      stroke: rgba(255, 255, 255, 0.55);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
  }

  .faq-cat.active .faq-cat-orb {
      background: var(--crimson);
      border-color: var(--crimson);
      box-shadow: 0 0 22px rgba(215, 38, 61, 0.55);
  }

  .faq-cat.active .faq-cat-orb svg {
      stroke: var(--text-on-dark);
  }

  .faq-cat-lbl {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.42);
      text-align: center;
      max-width: 64px;
      line-height: 1.35;
  }

  .faq-cat.active .faq-cat-lbl {
      color: var(--crimson);
  }

  .faq-qa-side {}

  .faq-active-lbl {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--crimson);
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .faq-active-lbl::before {
      content: '';
      width: 22px;
      height: 2px;
      background: var(--crimson);
  }

  .faq-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
      cursor: pointer;
      gap: 18px;
  }

  .faq-q-txt {
      font-size: 15px;
      font-weight: 600;
      color: rgba(255, 242, 240, 0.95);
      line-height: 1.45;
  }

  .faq-tog {
      width: 30px;
      height: 30px;
      flex-shrink: 0;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      line-height: 1;
      color: rgba(255, 255, 255, 0.4);
      transition: all 0.3s;
  }

  .faq-item.open .faq-tog {
      background: var(--crimson);
      border-color: var(--crimson);
      color: var(--text-on-dark);
      transform: rotate(45deg);
  }

  .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.38s ease, padding 0.38s ease;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.52);
      line-height: 1.72;
  }

  .faq-item.open .faq-a {
      max-height: 220px;
      padding-bottom: 18px;
  }

  /* ============================================================
       CONTACT
       ============================================================ */
  .contact-section {
      padding: 130px 40px 0;
  }

  .contact-top {
      max-width: 1220px;
      margin: 0 auto 72px;
      text-align: center;
  }

  .contact-grid {
      max-width: 1220px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      border: 1px solid rgba(227, 27, 35, 0.2);
      border-radius: 4px;
      overflow: hidden;
  }

  .contact-map {
      min-height: 480px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(145deg, #4A1E24 0%, #5A252B 50%, #6B2E34 100%);
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .contact-map-grid {
      position: absolute;
      inset: 0;
      background-image:
          repeating-linear-gradient(0deg, transparent, transparent 44px, rgba(215, 38, 61, 0.04) 44px, rgba(215, 38, 61, 0.04) 45px),
          repeating-linear-gradient(90deg, transparent, transparent 44px, rgba(215, 38, 61, 0.04) 44px, rgba(215, 38, 61, 0.04) 45px);
  }

  .map-pin-center {
      position: relative;
      z-index: 2;
      text-align: center;
  }

  .map-pin-ring {
      width: 22px;
      height: 22px;
      background: var(--crimson);
      border-radius: 50%;
      margin: 0 auto 14px;
      box-shadow: 0 0 0 8px rgba(215, 38, 61, 0.18), 0 0 0 16px rgba(215, 38, 61, 0.08);
      animation: mapPulse 2.2s ease infinite;
  }

  @keyframes mapPulse {

      0%,
      100% {
          box-shadow: 0 0 0 8px rgba(215, 38, 61, 0.18), 0 0 0 16px rgba(215, 38, 61, 0.08)
      }

      50% {
          box-shadow: 0 0 0 12px rgba(215, 38, 61, 0.24), 0 0 0 24px rgba(215, 38, 61, 0.10)
      }
  }

  .map-pin-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 0.05em;
      color: var(--text-on-dark);
  }

  .map-pin-addr {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 5px;
      font-family: 'IBM Plex Mono', monospace;
  }

  .contact-info-col {
      padding: 64px 54px;
      border-left: 1px solid rgba(255, 255, 255, 0.07);
  }

  .contact-items {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 38px;
  }

  .cinfo-item {
      display: flex;
      align-items: flex-start;
      gap: 18px;
  }

  .cinfo-icon {
      width: 50px;
      height: 50px;
      background: rgba(215, 38, 61, 0.10);
      border: 1px solid rgba(215, 38, 61, 0.24);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .cinfo-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--crimson);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
  }

  .cinfo-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--crimson);
      margin-bottom: 5px;
      font-family: 'IBM Plex Mono', monospace;
  }

  .cinfo-val {
      font-size: 15px;
      color: rgba(255, 242, 240, 0.9);
      font-weight: 500;
      line-height: 1.5;
  }

  .cinfo-val a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s;
  }

  .cinfo-val a:hover {
      color: var(--crimson);
  }

  /* ============================================================
       FOOTER — Glassmorphic Islands
       ============================================================ */
  .footer {
      background: linear-gradient(135deg, #8f0e20 0%, var(--crimson) 42%, #b51e31 72%, #8a0d1f 100%);
      padding: 80px 40px 44px;
      position: relative;
      overflow: hidden;
  }

  .footer::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(135deg, transparent, transparent 32px,
              rgba(0, 0, 0, 0.04) 32px, rgba(0, 0, 0, 0.04) 33px);
  }

  .footer::after {
      content: 'AIR DUCT';
      position: absolute;
      bottom: -30px;
      right: -20px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 200px;
      line-height: 1;
      color: rgba(0, 0, 0, 0.08);
      pointer-events: none;
      white-space: nowrap;
  }

  .footer-brand-name {
      position: relative;
      z-index: 1;
      text-align: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(46px, 7vw, 96px);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.13);
      margin-bottom: 54px;
      line-height: 1;
  }

  .footer-islands {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      max-width: 1200px;
      margin: 0 auto 52px;
  }

  .f-island {
      background: rgba(0, 0, 0, 0.28);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 18px;
      padding: 30px 26px;
      box-shadow: 0 6px 32px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  }

  .f-island-title {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 18px;
  }

  .f-nav-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
  }

  .f-nav-links a {
      color: rgba(255, 255, 255, 0.80);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 7px;
  }

  .f-nav-links a::before {
      content: '→';
      font-size: 12px;
      opacity: 0.45;
  }

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

  .f-cinfo {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.78);
      margin-bottom: 11px;
      line-height: 1.45;
  }

  .f-cinfo svg {
      width: 14px;
      height: 14px;
      stroke: rgba(255, 255, 255, 0.45);
      fill: none;
      stroke-width: 1.5;
      flex-shrink: 0;
      margin-top: 2px;
  }

  .f-newsletter-input {
      width: 100%;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.20);
      border-radius: 8px;
      padding: 10px 14px;
      color: var(--text-on-dark);
      font-size: 13px;
      margin-bottom: 10px;
      outline: none;
      font-family: inherit;
      transition: border-color 0.2s;
  }

  .f-newsletter-input::placeholder {
      color: rgba(255, 255, 255, 0.38);
  }

  .f-newsletter-input:focus {
      border-color: rgba(255, 255, 255, 0.42);
  }

  .f-newsletter-btn {
      width: 100%;
      background: var(--hero-surface);
      color: var(--crimson);
      border: none;
      border-radius: 8px;
      padding: 11px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      letter-spacing: 0.06em;
      transition: opacity 0.2s;
  }

  .f-newsletter-btn:hover {
      opacity: 0.9;
  }

  .f-social {
      display: flex;
      flex-direction: column;
      gap: 11px;
  }

  .f-social-link {
      display: flex;
      align-items: center;
      gap: 11px;
      color: rgba(255, 255, 255, 0.80);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: color 0.2s;
  }

  .f-social-link:hover {
      color: var(--text-on-dark);
  }

  .f-social-icon {
      width: 34px;
      height: 34px;
      background: rgba(255, 255, 255, 0.10);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .f-social-icon svg {
      width: 16px;
      height: 16px;
      stroke: var(--text-on-dark);
      fill: none;
      stroke-width: 1.5;
  }

  .footer-copy {
      position: relative;
      z-index: 1;
      text-align: center;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.38);
      border-top: 1px solid rgba(255, 255, 255, 0.10);
      padding-top: 26px;
      max-width: 1200px;
      margin: 0 auto;
  }

  .footer-copy a {
      color: rgba(255, 255, 255, 0.38);
      text-decoration: none;
  }

  /* ============================================================
       HERO SCROLL INDICATOR
       ============================================================ */
  .hero-scroll-ind {
      position: absolute;
      bottom: 20px;
      left: 28%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 7px;
      opacity: 0.45;
      animation: scrollBob 2s ease-in-out infinite;
      z-index: 2;
      color: var(--crimson-muted);
  }

  .hero-scroll-ind span {
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--crimson-muted);
  }

  @media (max-width: 1100px) {
      .hero-scroll-ind {
          left: 50%;
      }
  }

  @keyframes scrollBob {

      0%,
      100% {
          transform: translateX(-50%) translateY(0)
      }

      50% {
          transform: translateX(-50%) translateY(7px)
      }
  }

  /* ============================================================
       RESPONSIVE
       ============================================================ */
  @media (max-width: 1100px) {
      .hero-brutalist {
          grid-template-columns: 1fr;
          min-height: auto;
      }

      .hero-panel--right {
          flex-direction: row;
          flex-wrap: wrap;
          gap: 24px;
      }

      .hero-panel-stats,
      .hero-panel-cta {
          flex: 1;
          min-width: 260px;
      }

      .hero-panel-cta {
          border-top: none;
          margin-top: 0;
          padding-top: 0;
          align-items: flex-start;
          text-align: left;
      }

      .hero-services-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 920px) {
      .nav-main,
      .nav-phone {
          display: none;
      }

      .navbar-inner {
          padding: 10px 18px;
      }

      .nav-logo-img {
          height: 44px;
      }

      .about {
          grid-template-columns: 1fr;
          gap: 44px;
      }

      .stats-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .stat-item:nth-child(2) {
          border-right: none;
      }

      .stat-item:nth-child(3),
      .stat-item:nth-child(4) {
          border-top: 1px solid rgba(255, 255, 255, 0.18);
      }

      .stat-item:nth-child(4) {
          border-right: none;
      }

      .service-area {
          grid-template-columns: 1fr;
          gap: 50px;
      }

      .faq-inner {
          grid-template-columns: 1fr;
      }

      .faq-wheel-wrap {
          display: none;
      }

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

      .footer-islands {
          grid-template-columns: 1fr 1fr;
      }

      .stage-glass {
          display: none;
      }

      .hero {
          padding-top: 72px;
      }

      .hero-panel--light {
          padding: 24px 20px;
      }

      .hero-panel--right {
          flex-direction: column;
          padding: 28px 20px 36px;
      }

      .hero-panel-cta {
          align-items: center;
          text-align: center;
          border-top: 1px solid rgba(255, 255, 255, 0.1);
          margin-top: 8px;
          padding-top: 24px;
      }

      .hero-mini-logo {
          display: none;
      }

      .hero-photo-strip {
          max-height: 220px;
      }
  }

  @media (max-width: 560px) {
      .hero-services-grid {
          grid-template-columns: 1fr;
      }

      .hero-stats-row {
          flex-wrap: wrap;
          gap: 16px;
      }

      .hero-stat-divider {
          display: none;
      }

      .hero-stat {
          flex: 1 1 28%;
      }

      .nav-cta {
          padding: 10px 16px;
          font-size: 12px;
      }
  }