    /* ===============================================
       CSS VARIABLES
    =============================================== */
    :root {
      --red:       #C8102E;
      --red-dark:  #9E0B22;
      --navy:      #002868;
      --navy-dark: #001845;
      --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: 80px 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;
    }
    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
    =============================================== */
    section[id] { scroll-margin-top: 20px; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
    .container-narrow { max-width: 820px; margin: 0 auto; padding: 0 32px; }
    .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
    .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;
    }
    .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(--red); outline-offset: 3px; }
    .btn:active { transform: translateY(1px) scale(0.97); }
    .btn-red    { background: var(--red); color: var(--white); }
    .btn-red:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(200,16,46,.3); }
    .btn-navy   { background: var(--navy); color: var(--white); }
    .btn-navy:hover { background: var(--navy-dark); transform: translateY(-3px); 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); }

    /* 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; }
    .hcp-widget:not(.hcp-widget--visible) { display: none !important; }
    .hero-book {
      font-size: 1rem !important;
      padding: 16px 36px !important;
    }

    .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-sub {
      font-size: 1.08rem; color: var(--text-muted);
      max-width: 600px; line-height: 1.75;
      text-wrap: pretty;
    }

    /* ===============================================
       HERO (Service page variant — no right panel)
    =============================================== */
    .hero {
      background: var(--navy-dark);
      position: relative; overflow: hidden;
      padding: 80px 0 72px;
    }
    .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
        );
    }
    .hero .container {
      position: relative; z-index: 2;
      max-width: 820px;
    }
    .hero-tag {
      font-family: var(--font-sub); font-weight: 700; font-size: .78rem;
      letter-spacing: .22em; text-transform: uppercase;
      color: var(--silver); display: flex; align-items: center; gap: 8px;
      margin-bottom: 16px;
    }
    .hero-tag::before {
      content: ''; width: 24px; height: 2px;
      background: var(--red);
    }
    .hero h1 {
      font-family: var(--font-display); font-weight: 700;
      font-size: clamp(2.4rem, 5vw, 3.4rem);
      line-height: 1.06; letter-spacing: -.02em;
      color: var(--white);
      margin-bottom: 20px;
      text-wrap: balance;
    }
    .hero h1 .accent { color: var(--red); }
    .hero-sub {
      color: rgba(255,255,255,.72); font-size: 1.08rem;
      line-height: 1.7; margin-bottom: 32px;
      max-width: 600px; text-wrap: pretty;
    }
    .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
    .hero-trust { display: flex; gap: 28px; 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 phone callout (for emergency page) */
    .hero-phone {
      display: inline-flex; align-items: center; gap: 12px;
      font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 700; color: var(--white);
      margin-bottom: 24px;
      font-variant-numeric: tabular-nums;
      transition: color .15s;
    }
    .hero-phone:hover { color: var(--red); }

    /* ===============================================
       ARTICLE CONTENT SECTIONS
    =============================================== */
    .content-section {
      padding: var(--section-pad);
    }
    .content-section:nth-child(even) {
      background: var(--off-white);
    }
    .content-section .container-narrow h2 {
      font-family: var(--font-display); font-weight: 700;
      font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.12;
      letter-spacing: -.01em; color: var(--charcoal);
      margin-bottom: 16px;
    }
    .content-section .container-narrow h3 {
      font-family: var(--font-display); font-weight: 700;
      font-size: 1.3rem; color: var(--charcoal);
      margin: 28px 0 12px; line-height: 1.2;
    }
    .content-section .container-narrow p {
      font-size: 1rem; color: var(--text-muted);
      line-height: 1.8; margin-bottom: 16px;
      text-wrap: pretty;
    }
    .content-section .container-narrow ul {
      display: flex; flex-direction: column; gap: 10px;
      margin-bottom: 20px;
    }
    .content-section .container-narrow li {
      font-size: .95rem; color: var(--text);
      display: flex; align-items: flex-start; gap: 10px;
      line-height: 1.6;
    }
    .content-section .container-narrow li::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--red); flex-shrink: 0; margin-top: 9px;
    }
    .content-section .container-narrow li > span {
      flex: 1; min-width: 0;
    }
    .content-section .container-narrow li > span > strong:first-child {
      display: block; font-size: 1rem;
      color: var(--navy);
    }
    .content-section .container-narrow ol {
      counter-reset: step;
      display: flex; flex-direction: column; gap: 16px;
      margin-bottom: 20px;
    }
    .content-section .container-narrow ol li {
      counter-increment: step;
      display: flex; align-items: flex-start; gap: 14px;
      font-size: .95rem; color: var(--text); line-height: 1.6;
    }
    .content-section .container-narrow ol li > span {
      flex: 1; min-width: 0;
    }
    .content-section .container-narrow ol li > span > strong:first-child {
      display: block; font-size: 1rem;
      color: var(--navy);
    }
    .content-section .container-narrow ol li::before {
      content: counter(step);
      width: 32px; height: 32px; border-radius: 50%;
      background: var(--red); color: var(--white);
      font-family: var(--font-display); font-weight: 700; font-size: .9rem;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 2px;
    }
    .content-section a {
      color: var(--red); font-weight: 600;
      transition: color .15s;
    }
    .content-section a:hover { color: var(--red-dark); text-decoration: underline; }

    /* Checklist variant */
    .checklist {
      display: flex; flex-direction: column; gap: 12px;
      margin-bottom: 20px;
    }
    .checklist li {
      display: flex; align-items: flex-start; gap: 12px;
      background: var(--white); border: 1px solid var(--silver-lt);
      border-radius: var(--radius); padding: 16px 20px;
      font-size: .95rem; color: var(--text); line-height: 1.6;
    }
    .checklist li > span {
      flex: 1; min-width: 0;
    }
    .checklist li > span > strong:first-child {
      display: block; font-size: 1rem;
      color: var(--navy);
    }
    .checklist li::before {
      content: '';
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--navy); flex-shrink: 0; margin-top: 1px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 14px;
    }

    /* Brand callouts (reused from location.css) */
    .brand-callout {
      margin: 24px 0; padding: 20px 24px;
      background: var(--off-white); border-left: 3px solid var(--red);
      border-radius: 0 var(--radius) var(--radius) 0;
      display: flex; align-items: flex-start; gap: 16px;
    }
    .brand-callout img { height: 36px; width: auto; flex-shrink: 0; margin-top: 2px; }
    .brand-callout strong {
      display: block; font-family: var(--font-sub); font-weight: 700;
      font-size: .88rem; letter-spacing: .04em; color: var(--charcoal); margin-bottom: 4px;
    }
    .brand-callout p {
      font-size: .88rem !important; color: var(--text-muted) !important;
      line-height: 1.6 !important; margin: 0 !important;
    }

    /* ===============================================
       FAQ ACCORDION
    =============================================== */
    .faq-section {
      padding: var(--section-pad);
      background: var(--off-white);
    }
    .faq-section .container-narrow h2 {
      font-family: var(--font-display); font-weight: 700;
      font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.12;
      color: var(--charcoal); margin-bottom: 32px;
    }
    .faq-list {
      display: flex; flex-direction: column; gap: 8px;
    }
    .faq-item {
      background: var(--white); border: 1px solid var(--silver-lt);
      border-radius: var(--radius-lg); overflow: hidden;
      transition: box-shadow .2s;
    }
    .faq-item:hover { box-shadow: var(--shadow); }
    .faq-question {
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px; padding: 20px 24px;
      font-family: var(--font-body); font-weight: 600; font-size: 1rem;
      color: var(--charcoal); cursor: pointer;
      background: none; border: none; width: 100%; text-align: left;
    }
    .faq-question:focus-visible { outline: 2px solid var(--red); outline-offset: -2px; }
    .faq-chevron {
      width: 20px; height: 20px; flex-shrink: 0;
      color: var(--text-muted);
      transition: transform .3s ease;
    }
    .faq-item.is-open .faq-chevron { transform: rotate(180deg); }
    .faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease, padding .35s ease;
    }
    .faq-item.is-open .faq-answer {
      max-height: 500px;
    }
    .faq-answer-inner {
      padding: 0 24px 20px;
      font-size: .95rem; color: var(--text-muted);
      line-height: 1.75;
    }
    .faq-answer-inner p { margin-bottom: 12px; }
    .faq-answer-inner p:last-child { margin-bottom: 0; }

    /* ===============================================
       SERVICE AREA GRID
    =============================================== */
    .area-section {
      padding: var(--section-pad);
    }
    .area-section h2 {
      font-family: var(--font-display); font-weight: 700;
      font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.12;
      color: var(--charcoal); margin-bottom: 16px;
    }
    .area-section p {
      font-size: 1rem; color: var(--text-muted); line-height: 1.75;
      margin-bottom: 24px; max-width: 600px;
    }
    .area-grid {
      display: flex; flex-wrap: wrap; gap: 10px;
    }
    .area-pill {
      background: var(--white); border: 1px solid var(--silver-lt);
      border-radius: 3px; padding: 8px 16px;
      font-family: var(--font-sub); font-size: .88rem; font-weight: 600;
      color: var(--navy); transition: all .15s;
    }
    a.area-pill:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

    /* ===============================================
       CONTACT (same as location pages)
    =============================================== */
    .contact { padding: 80px 0; background: var(--navy); }
    .contact .container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
    .contact-info .section-title { color: var(--white); }
    .contact-info .section-sub { color: var(--silver); }
    .contact-blocks { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
    .contact-block { display: flex; gap: 14px; align-items: flex-start; }
    .contact-block-icon {
      width: 44px; height: 44px; background: var(--red); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
    }
    .contact-block-text strong {
      display: block; font-family: var(--font-sub); font-weight: 700; font-size: .82rem;
      letter-spacing: .12em; text-transform: uppercase; color: var(--silver);
    }
    .contact-block-text a, .contact-block-text p {
      color: var(--white); font-size: 1.05rem; font-weight: 500;
      transition: color .15s;
    }
    .contact-block-text a:hover { color: var(--silver-lt); }
    .contact-block-text .hours { font-size: .88rem; color: rgba(255,255,255,.6); }
    .contact-form-wrap {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 44px; box-shadow: 0 24px 64px rgba(0,24,69,.25);
    }
    .contact-form-wrap h3 {
      font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
      color: var(--charcoal); margin-bottom: 6px; letter-spacing: -.01em;
    }
    .contact-form-wrap > p { font-size: .9rem; color: var(--text-muted); margin-bottom: 28px; }
    .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: 13px 16px; border-radius: var(--radius);
      border: 1.5px solid var(--silver-lt); color: var(--charcoal);
      background: var(--off-white); outline: none;
      transition: border-color .2s, box-shadow .2s, background .2s;
      width: 100%;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--navy); border-left: 3px solid var(--navy); background: var(--white);
      box-shadow: 0 0 0 3px rgba(0,40,104,.12);
    }
    .form-group input.error,
    .form-group select.error,
    .form-group textarea.error {
      border-color: var(--red); background: #FFF5F5;
    }
    .form-error {
      font-size: .78rem; color: var(--red); margin-top: 2px;
      font-weight: 500; display: none;
    }
    .form-group.has-error .form-error { display: block; }
    .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: 64px 0 28px; }
    .footer-grid {
      display: grid; grid-template-columns: 1.5fr 2fr; gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand p {
      font-size: .88rem; color: var(--silver); line-height: 1.6; margin-top: 12px;
    }
    .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 .15s;
    }
    .footer-links a:hover { color: var(--white); }
    .footer-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

    .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); }
    .footer-bottom a:hover { color: var(--silver); }
    .footer-flag {
      display: flex; gap: 4px; align-items: center;
    }
    .flag-stripe {
      width: 8px; height: 16px; border-radius: 1px;
    }

    /* ===============================================
       ANIMATIONS
    =============================================== */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .fade-up { animation: fadeUp .6s cubic-bezier(.16,1,.3,1) both; }
    .fade-up-1 { animation-delay: .1s; }
    .fade-up-2 { animation-delay: .2s; }
    .fade-up-3 { animation-delay: .3s; }

    .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);
    }

    /* ===============================================
       RESPONSIVE
    =============================================== */
    @media (max-width: 960px) {
      body { padding-bottom: 68px; }
    }

    @media (max-width: 900px) {
      .contact .container { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 640px) {
      :root { --section-pad: 48px 0; }
      .container { padding: 0 20px; }
      .container-narrow { padding: 0 20px; }
      .hero { padding: 56px 0 48px; }
      .form-row { grid-template-columns: 1fr; }
      .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; }
      .hero-call-btn { display: none; }
      .hero-btns { margin-bottom: 28px; }
      .hero-book { 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(3) { 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;
      }
      .contact { padding: 48px 0; }
      .contact-form-header { justify-content: center !important; text-align: center; }
      .contact-form-header .hcp-button { width: 100%; text-align: center; justify-content: center; }
      .contact-form-wrap { padding: 28px; }
      .brand-callout { flex-direction: column; gap: 12px; }
      .checklist li { padding: 14px 16px; }
    }
