    /* ═══════════════════════════════════════════════
       CSS VARIABLES
    ═══════════════════════════════════════════════ */
    :root {
      --red:       #C8102E;
      --red-dark:  #9E0B22;
      --navy:      #002868;
      --navy-dark: #001845;
      --ek-yellow: #F5C400;
      --ek-yellow-dark: #D4A800;
      --silver:    #B0B8C4;
      --silver-lt: #E4E8EE;
      --white:     #FFFFFF;
      --off-white: #F5F6F8;
      --charcoal:  #1C2228;
      --text:      #2A3240;
      --text-muted:#4A5461;
      --ek-gold:   #F5C400;
      --roth-blue: #4DA3E8;
      --font-display: 'Oswald', sans-serif;
      --font-sub:     'Barlow Condensed', sans-serif;
      --font-body:    'Barlow', sans-serif;
      --section-pad: 100px 0;
      --radius:      6px;
      --radius-lg:   12px;
      --shadow:      0 4px 24px rgba(0,40,104,.08);
      --shadow-lg:   0 16px 48px rgba(0,40,104,.14);
    }
    /* ═══════════════════════════════════════════════
       RESET
    ═══════════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }
    /* Subtle grain texture overlay */
    body::after {
      content: '';
      position: fixed; inset: 0; z-index: 1;
      pointer-events: none;
      opacity: 0.028;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 256px 256px;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    /* ═══════════════════════════════════════════════
       UTILITIES
    ═══════════════════════════════════════════════ */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
    .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
    /* Skip to content link for accessibility */
    .skip-link {
      position: absolute; top: -100%; left: 16px;
      background: var(--red); color: var(--white);
      padding: 12px 24px; border-radius: var(--radius);
      font-family: var(--font-sub); font-weight: 700; font-size: .9rem;
      letter-spacing: .05em; text-transform: uppercase;
      z-index: 10000; transition: top .2s; text-decoration: none;
    }
    .skip-link:focus { top: 12px; }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-sub); font-weight: 700; font-size: 1rem;
      letter-spacing: .05em; text-transform: uppercase;
      padding: 16px 36px; border-radius: var(--radius);
      cursor: pointer; border: none;
      transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s cubic-bezier(.16,1,.3,1), background .2s, border-color .2s, color .2s;
    }
    .btn:focus-visible { outline: 2px solid var(--ek-yellow); outline-offset: 3px; }
    .btn:hover { transform: translateY(-2px); }
    .btn:active { transform: translateY(1px) scale(0.98); }
    .btn-red    { background: var(--red); color: var(--white); }
    .btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,16,46,.3); }
    .btn-ek { background: var(--ek-yellow); color: var(--charcoal); }
    .btn-ek:hover { background: var(--ek-yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,196,0,.3); }
    /* HouseCall Pro booking button */
    .hcp-button,
    button.hcp-button {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-sub) !important; font-weight: 700 !important; font-size: 1rem !important;
      letter-spacing: .05em; text-transform: uppercase;
      padding: 16px 36px !important; border-radius: var(--radius) !important;
      cursor: pointer; border: none !important;
      background: var(--red) !important; color: var(--white) !important;
      transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s cubic-bezier(.16,1,.3,1), background .2s !important;
      line-height: 1 !important;
    }
    .hcp-button:hover,
    button.hcp-button:hover {
      background: var(--red-dark) !important;
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(200,16,46,.3) !important;
    }
    .hcp-button:active,
    button.hcp-button:active { transform: translateY(1px) scale(0.97); }
    .hcp-button:focus-visible,
    button.hcp-button:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
    /* Nav styles moved to nav.css */
    /* Offset anchors for sticky nav */
    section[id] { scroll-margin-top: 20px; }
    .service-card[id] { scroll-margin-top: 80px; }
    .btn-navy   { background: var(--navy); color: var(--white); }
    .btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,40,104,.2); }
    .btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
    .btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-2px); }
    .section-label {
      font-family: var(--font-sub); font-weight: 700; font-size: .8rem;
      letter-spacing: .2em; text-transform: uppercase; color: var(--red);
      display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
    }
    .section-label::before { content: ''; display: block; width: 32px; height: 2px; background: var(--red); }
    .section-title {
      font-family: var(--font-display); font-weight: 700;
      font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08;
      letter-spacing: -.01em;
      color: var(--charcoal); margin-bottom: 18px;
      text-wrap: balance;
    }
    .section-title span { color: var(--red); }
    .section-title .ek { color: var(--ek-yellow-dark); }
    .section-sub {
      font-size: 1.08rem; color: var(--text-muted);
      max-width: 640px; line-height: 1.75;
      text-wrap: pretty;
    }
    /* Nav styles moved to nav.css */
    /* ═══════════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════════ */
    .hero {
      background: var(--navy-dark);
      position: relative; overflow: hidden;
      min-height: 540px; display: flex; align-items: center;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(-55deg, transparent 0, transparent 30px, rgba(255,255,255,.015) 30px, rgba(255,255,255,.015) 60px);
    }
    /* EK yellow accent stripe */
    .hero::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 5px;
      background: linear-gradient(90deg, var(--ek-yellow) 0%, var(--ek-yellow-dark) 100%);
    }
    .hero .container {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 56px; align-items: center;
      padding-top: 64px; padding-bottom: 64px;
    }
    .hero-breadcrumb { font-family: var(--font-sub); font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: 14px; letter-spacing: .05em; }
    .hero-breadcrumb a { color: rgba(255,255,255,.45); transition: color .15s; }
    .hero-breadcrumb a:hover { color: var(--white); }
    .hero-breadcrumb span { color: rgba(255,255,255,.25); margin: 0 6px; }
    .dealer-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--ek-yellow); color: var(--charcoal);
      font-family: var(--font-sub); font-weight: 700; font-size: .78rem;
      letter-spacing: .14em; text-transform: uppercase;
      padding: 5px 14px; border-radius: 2px; margin-bottom: 16px;
    }
    .hero h1 {
      font-family: var(--font-display); font-weight: 700;
      font-size: clamp(2.4rem, 4.5vw, 3.6rem); line-height: 1.05;
      letter-spacing: -.02em;
      color: var(--white); margin-bottom: 22px;
      text-wrap: balance;
    }
    .hero h1 .ek-name { color: var(--ek-yellow); }
    .hero-sub {
      color: rgba(255,255,255,.72); font-size: 1.08rem; line-height: 1.7;
      margin-bottom: 36px; max-width: 520px;
      text-wrap: pretty;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
    .hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
    .hero-trust-item { display: flex; flex-direction: column; }
    .hero-trust-item strong {
      font-family: var(--font-display); font-size: 1.6rem;
      color: var(--white); line-height: 1;
      font-variant-numeric: tabular-nums;
    }
    .hero-trust-item span { font-size: .78rem; color: rgba(255,255,255,.55); letter-spacing: .05em; text-transform: uppercase; }
    .hero-trust-icon { display: none; }
    /* Hero right — EK logo + product image */
    .hero-right { display: flex; flex-direction: column; align-items: center; gap: 20px; }
    .ek-logo-hero { max-width: 280px; width: 100%; background: var(--white); padding: 18px 24px; border-radius: var(--radius-lg); }
    .hero-product-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); max-width: 100%; }
    /* ═══════════════════════════════════════════════
       TRUST STRIP
    ═══════════════════════════════════════════════ */
    .trust-strip { background: var(--silver-lt); border-top: 4px solid var(--ek-yellow); padding: 22px 0; }
    .trust-strip .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
    .trust-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-sub); font-size: .9rem; font-weight: 600; letter-spacing: .04em; color: var(--charcoal); }
    .trust-item .icon { font-size: 1.3rem; }
    /* ═══════════════════════════════════════════════
       DEALER INTRO
    ═══════════════════════════════════════════════ */
    .dealer-intro { padding: var(--section-pad); background: var(--white); }
    .dealer-intro .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .dealer-badge-box {
      background: var(--navy); border-radius: var(--radius-lg); padding: 40px 36px;
      border-top: 5px solid var(--ek-yellow);
      box-shadow: var(--shadow-lg);
    }
    .dealer-badge-box h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--white); margin-bottom: 14px; text-wrap: balance; }
    .dealer-badge-box p { color: rgba(255,255,255,.72); font-size: .95rem; line-height: 1.7; margin-bottom: 16px; text-wrap: pretty; }
    .dealer-badge-box .ek-logo-small { max-width: 200px; background: var(--white); padding: 12px 18px; border-radius: var(--radius); margin-bottom: 20px; }
    .ek-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
    .ek-fact {
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
      border-left: 3px solid var(--ek-yellow); border-radius: var(--radius); padding: 12px 14px;
      transition: background .25s cubic-bezier(.16,1,.3,1);
    }
    .ek-fact:hover { background: rgba(255,255,255,.12); }
    .ek-fact strong { display: block; font-family: var(--font-sub); font-weight: 700; font-size: .88rem; color: var(--ek-yellow); letter-spacing: .04em; font-variant-numeric: tabular-nums; }
    .ek-fact span { font-size: .82rem; color: rgba(255,255,255,.6); }
    /* ═══════════════════════════════════════════════
       PRODUCT CARDS
    ═══════════════════════════════════════════════ */
    .products { padding: var(--section-pad); background: var(--off-white); }
    .products-head { margin-bottom: 56px; }
    .product-card {
      background: var(--white); border-radius: var(--radius-lg);
      overflow: hidden;
      display: grid; grid-template-columns: 1fr 1.2fr;
      margin-bottom: 36px;
      box-shadow: var(--shadow);
      transition: box-shadow .35s cubic-bezier(.16,1,.3,1), transform .35s cubic-bezier(.16,1,.3,1);
    }
    .product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .product-card.reverse { grid-template-columns: 1.2fr 1fr; }
    .product-card.reverse .product-img { order: 2; }
    .product-card.reverse .product-info { order: 1; }
    .product-img {
      background: var(--charcoal);
      display: flex; align-items: center; justify-content: center;
      padding: 32px; min-height: 320px;
    }
    .product-img img { max-height: 280px; width: auto; object-fit: contain; }
    .product-info { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
    .product-model-tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--ek-yellow); color: var(--charcoal);
      font-family: var(--font-sub); font-weight: 700; font-size: .72rem;
      letter-spacing: .14em; text-transform: uppercase;
      padding: 4px 12px; border-radius: 2px; width: fit-content;
    }
    .product-info h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--charcoal); line-height: 1.1; text-wrap: balance; }
    .product-info .tagline { font-family: var(--font-sub); font-size: 1rem; font-weight: 600; color: var(--text-muted); letter-spacing: .04em; }
    .product-info p { font-size: .95rem; color: var(--text-muted); line-height: 1.7; text-wrap: pretty; }
    .product-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .product-spec { background: var(--off-white); border-radius: var(--radius); padding: 10px 14px; }
    .product-spec strong { display: block; font-family: var(--font-sub); font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
    .product-spec span { font-size: .9rem; color: var(--charcoal); font-weight: 500; }
    .product-bullets { display: flex; flex-direction: column; gap: 8px; }
    .product-bullets li { font-size: .9rem; color: var(--text); display: flex; align-items: flex-start; gap: 10px; }
    .product-bullets li::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--red); flex-shrink: 0; margin-top: 8px;
    }
    /* ═══════════════════════════════════════════════
       WHY EK
    ═══════════════════════════════════════════════ */
    .why-ek { padding: var(--section-pad); background: var(--charcoal); }
    .why-ek .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
    .why-ek-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .why-ek-card {
      background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
      border-top: 3px solid var(--ek-yellow); border-radius: var(--radius-lg); padding: 24px;
      transition: background .3s cubic-bezier(.16,1,.3,1), transform .3s cubic-bezier(.16,1,.3,1);
    }
    .why-ek-card:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
    .why-ek-card .icon { font-size: 1.8rem; margin-bottom: 10px; }
    .why-ek-card h4 { font-family: var(--font-sub); font-weight: 700; font-size: .96rem; letter-spacing: .04em; color: var(--white); margin-bottom: 6px; }
    .why-ek-card p { font-size: .86rem; color: var(--silver); line-height: 1.6; text-wrap: pretty; }
    /* ═══════════════════════════════════════════════
       EMERGENCY BANNER
    ═══════════════════════════════════════════════ */
    .emerg-banner { background: var(--red); padding: 28px 0; }
    .emerg-banner .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
    .emerg-banner-text { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 3vw, 1.8rem); color: var(--white); line-height: 1.2; text-wrap: balance; }
    .emerg-banner-text span { font-family: var(--font-body); font-weight: 300; font-size: .95rem; display: block; color: rgba(255,255,255,.8); margin-bottom: 4px; }
    /* ═══════════════════════════════════════════════
       CONTACT
    ═══════════════════════════════════════════════ */
    .contact { padding: var(--section-pad); background: var(--navy); }
    .contact .container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
    .contact-info .section-title { color: var(--white); }
    .contact-info .section-sub { color: var(--silver); }
    .contact-blocks { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
    .contact-block { display: flex; gap: 14px; align-items: flex-start; }
    .contact-block-icon { width: 42px; height: 42px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
    .contact-block-text strong { display: block; font-family: var(--font-sub); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--silver); }
    .contact-block-text a, .contact-block-text p { color: var(--white); font-size: 1rem; font-weight: 500; transition: color .2s cubic-bezier(.16,1,.3,1); }
    .contact-block-text a:hover { color: var(--silver-lt); }
    .contact-block-text .hours { font-size: .86rem; color: rgba(255,255,255,.5); }
    .contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
    .contact-form-wrap h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; color: var(--charcoal); margin-bottom: 6px; text-wrap: balance; }
    .contact-form-wrap p { font-size: .9rem; color: var(--text-muted); margin-bottom: 22px; text-wrap: pretty; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { display: flex; flex-direction: column; gap: 5px; }
    .form-group label { font-family: var(--font-sub); font-weight: 600; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
    .form-group input, .form-group select, .form-group textarea { font-family: var(--font-body); font-size: .95rem; padding: 11px 14px; border-radius: var(--radius); border: 1.5px solid var(--silver-lt); color: var(--charcoal); background: var(--off-white); outline: none; transition: border-color .2s cubic-bezier(.16,1,.3,1), background .2s, box-shadow .2s; width: 100%; }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); background: var(--white); box-shadow: 0 0 0 3px rgba(0,40,104,.12); border-left: 3px solid var(--navy); }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-full { grid-column: 1 / -1; }
    .form-submit { margin-top: 8px; width: 100%; justify-content: center; font-size: 1rem; padding: 15px; }
    /* ═══════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════ */
    .footer { background: var(--charcoal); padding: 48px 0 24px; }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 2fr; gap: 40px; margin-bottom: 40px; }
    .footer-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand p { font-size: .88rem; color: var(--silver); line-height: 1.6; margin-top: 12px; text-wrap: pretty; }
    .footer h4, .footer-heading { font-family: var(--font-sub); font-weight: 700; font-size: .82rem; letter-spacing: .15em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
    .footer-links { display: flex; flex-direction: column; gap: 8px; }
    .footer-links a { font-size: .9rem; color: var(--silver); transition: color .2s cubic-bezier(.16,1,.3,1); }
    .footer-links a:hover { color: var(--white); }

    .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.35); }
    .footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s cubic-bezier(.16,1,.3,1); }
    .footer-bottom a:hover { color: rgba(255,255,255,.7); }
    /* ═══════════════════════════════════════════════
       FORM ERROR STYLES
    ═══════════════════════════════════════════════ */
    .form-group input.error, .form-group select.error, .form-group textarea.error { border-color: var(--red); background: #FFF5F5; }
    .form-error { font-size: .8rem; color: var(--red); margin-top: 2px; font-weight: 500; }
    .form-group.has-error label { color: var(--red); }
    /* ═══════════════════════════════════════════════
       SCROLL-TRIGGERED REVEALS
    ═══════════════════════════════════════════════ */
    .reveal {
      opacity: 0; transform: translateY(32px);
      transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
    }
    .reveal.visible {
      opacity: 1; transform: translateY(0);
    }
    .reveal-stagger > .reveal { transition-delay: calc(var(--i, 0) * 100ms); }
    /* ═══════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════ */
    @media (max-width: 900px) {
      .hero .container { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .dealer-intro .container { grid-template-columns: 1fr; }
      .product-card, .product-card.reverse { grid-template-columns: 1fr; }
      .product-card.reverse .product-img, .product-card.reverse .product-info { order: unset; }
      .why-ek .container { grid-template-columns: 1fr; }
      .contact .container { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    /* Nav styles moved to nav.css */
    @media (max-width: 960px) {
      /* Nav styles moved to nav.css */
      body { padding-bottom: 68px; }
    }

    @media (max-width: 640px) {
      .form-row { grid-template-columns: 1fr 1fr; gap: 10px; }
      .before-after-item img { height: auto; aspect-ratio: 4/3; }
      .why-ek .btn-outline { display: none; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-brand { text-align: center; }
      .footer-brand a { display: inline-block; }
      .footer-columns { grid-template-columns: 1fr 1fr; gap: 24px; }
      .why-ek-grid { grid-template-columns: 1fr; }
      .product-specs { grid-template-columns: 1fr; }
      .ek-facts { grid-template-columns: 1fr; }
      /* Hero mobile */
      .hero-call-btn { display: none; }
      .hero-btns { margin-bottom: 32px; }
      .hero-book, .btn-ek { width: 100%; text-align: center; justify-content: center; }
      .hero-trust {
        display: grid; grid-template-columns: repeat(3, 1fr);
        gap: 16px; text-align: center; margin-top: 8px; justify-items: center;
      }
      .hero-trust-item { align-items: center; justify-content: flex-start; }
      .hero-trust-item:nth-child(4) { display: none; }
      .hero-trust-item strong { font-size: 1.8rem; }
      .hero-trust-item span { font-size: .65rem; line-height: 1.2; }
      .hero-trust-icon {
        display: flex; align-items: center; justify-content: center;
        width: 48px; height: 48px; background: var(--red);
        border-radius: 50%; margin: 0 auto 10px;
      }
      .emerg-banner { display: none; }
      .trust-strip { display: none; }
      .hero-trust { display: none; }
      .dealer-intro .btn { display: none; }
      .contact { padding: 48px 0; }
      .contact-blocks { display: none; }
      /* Why EK accordion */
      .why-ek-grid { grid-template-columns: 1fr; gap: 0; }
      .why-ek-card { padding: 0; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
      .why-ek-card .card-top {
        display: flex; align-items: center; gap: 12px;
        cursor: pointer; padding: 16px 20px;
      }
      .why-ek-card .card-top h4 { flex: 1; font-size: 1rem; margin: 0; }
      .why-ek-card .card-top .icon { width: 36px; height: 36px; flex-shrink: 0; margin: 0; display: flex; align-items: center; justify-content: center; }
      .card-chevron { width: 24px; height: 24px; flex-shrink: 0; transition: transform .3s ease; color: var(--ek-yellow); }
      .why-ek-card.is-open .card-chevron { transform: rotate(90deg); }
      .why-ek-card .card-body {
        max-height: 0; overflow: hidden;
        padding: 0 20px; transition: max-height .35s ease, padding .35s ease;
      }
      .why-ek-card.is-open .card-body {
        max-height: none; padding: 0 20px 20px;
      }
      .contact-form-header { justify-content: center !important; text-align: center; }
      .contact-form-header .hcp-button { width: 100%; text-align: center; justify-content: center; }
    }

    /* ═══════════════════════════════════════════════
       OUR WORK / INSTALL GALLERY
    ═══════════════════════════════════════════════ */
    .our-work { padding: var(--section-pad); background: var(--off-white); }
    .our-work .section-sub {
      max-width: 600px; margin: 0 auto 40px; text-align: center;
      color: var(--text-muted); font-size: 1.05rem;
    }
    .install-gallery {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
    }
    .install-gallery figure {
      margin: 0; position: relative; overflow: hidden;
      border-radius: var(--radius-lg); background: var(--silver-lt);
    }
    .install-gallery img {
      width: 100%; height: 480px; object-fit: cover;
      display: block; border-radius: var(--radius-lg);
      transition: transform .3s ease;
    }
    .install-gallery figure:hover img { transform: scale(1.03); }
    .install-gallery figcaption {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 8px 12px; font-family: var(--font-sub);
      font-size: .75rem; font-weight: 600; letter-spacing: .04em;
      color: var(--white); background: linear-gradient(transparent, rgba(0,0,0,.6));
      border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    /* Before/After Pair */
    .before-after-pair {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
      margin-top: 32px;
    }
    .before-after-item {
      position: relative; overflow: hidden;
      border-radius: var(--radius-lg); background: var(--silver-lt);
    }
    .before-after-item img {
      width: 100%; height: 360px; object-fit: cover; display: block;
      border-radius: var(--radius-lg);
    }
    .before-after-label {
      position: absolute; top: 12px; left: 12px;
      padding: 4px 14px; border-radius: 20px;
      font-family: var(--font-sub); font-weight: 700;
      font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
    }
    .before-after-label--before {
      background: rgba(200,16,46,.9); color: var(--white);
    }
    .before-after-label--after {
      background: rgba(16,140,60,.9); color: var(--white);
    }
    @media (max-width: 640px) {
      :root { --section-pad: 48px 0; }
      .install-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
      .install-gallery img { height: auto; aspect-ratio: 1 / 1; }
      .before-after-pair { grid-template-columns: 1fr 1fr; gap: 8px; }
      /* Nav styles moved to nav.css */
    }

    /* Nav styles moved to nav.css */
