    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 100px; background: #162640; }
    html, body {
      margin: 0; padding: 0;
      font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: #162640; background: #162640;
      -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }
    /* Force Montserrat everywhere */
    body, h1, h2, h3, h4, h5, h6, p, a, button, input, select, textarea,
    span, div, li, label, blockquote {
      font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    button { font-family: inherit; }
    img { max-width: 100%; }

    /* ── Container ── */
    .swc-container {
      max-width: 1280px;
      margin: 0 auto;
      padding-inline: clamp(20px, 4vw, 48px);
    }
    .swc-section {
      padding-block: clamp(72px, 10vw, 128px);
    }

    /* ── Eyebrow ── */
    .swc-eyebrow {
      font-size: clamp(11px, 1vw, 12px);
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    /* ── Buttons ── */
    .swc-btn .swc-btn-icon { transition: transform .25s cubic-bezier(.2,.7,.2,1); }
    .swc-btn:hover .swc-btn-icon { transform: translateX(3px); }
    .swc-btn[data-variant="primary"]:active { background: #A87214 !important; }
    /* invertGhost (e.g. hero/CTA phone buttons): turn gold on hover (desktop)
       and on :active tap (mobile) for consistent visual feedback. */
    @media (hover: hover) {
      .swc-btn[data-variant="invertGhost"]:hover {
        color: #C8861A !important;
        box-shadow: inset 0 0 0 1px #C8861A !important;
      }
    }
    .swc-btn[data-variant="invertGhost"]:active {
      color: #C8861A !important;
      box-shadow: inset 0 0 0 1px #C8861A !important;
    }

    /* Hero CTA row — keep buttons side-by-side on mobile; only stack on very small phones */
    .swc-hero-cta-row { flex-wrap: nowrap; }
    @media (max-width: 720px) {
      .swc-hero-cta-row > .swc-btn {
        font-size: 13px !important;
        padding: 13px 16px !important;
        white-space: nowrap;
        flex: 1 1 auto;
        justify-content: center;
        min-width: 0;
      }
    }
    @media (max-width: 359px) {
      .swc-hero-cta-row { flex-wrap: wrap !important; }
      .swc-hero-cta-row > .swc-btn { width: 100%; flex: 1 1 100%; }
    }

    /* ── Service card link hover (triggered by whole card) ── */
    .swc-svc-card:hover .swc-svc-link { color: #C8861A !important; }
    .swc-svc-card:hover .swc-svc-arrow { transform: translateX(4px); }
    /* Subtle shadow lift on whole card */
    .swc-svc-card { transition: box-shadow .3s ease !important; }
    .swc-svc-card:hover { box-shadow: 0 1px 0 rgba(22,38,64,.04), 0 24px 48px -16px rgba(22,38,64,.22) !important; }
    .swc-svc-card:focus-visible { outline: 2px solid #C8861A; outline-offset: 4px; }

    /* ── Services 3-col responsive collapse ── */
    @media (max-width: 980px) {
      .swc-svc-grid { grid-template-columns: 1fr 1fr !important; }
    }
    @media (max-width: 640px) {
      .swc-svc-grid { grid-template-columns: 1fr !important; }
    }
    /* ── Mobile sheet animation ── */
    .swc-nav-sheet {
      max-height: 0;
      opacity: 0;
      pointer-events: none;
      transition: max-height .45s cubic-bezier(.2,.7,.2,1),
                  opacity .3s ease,
                  border-color .3s ease;
      border-top-color: transparent !important;
    }
    .swc-nav-sheet[data-open="true"] {
      max-height: 560px;
      opacity: 1;
      pointer-events: auto;
      border-top-color: rgba(255,255,255,.08) !important;
    }
    .swc-nav-item {
      opacity: 0;
      transform: translateY(8px);
      transition: opacity .35s cubic-bezier(.2,.7,.2,1),
                  transform .35s cubic-bezier(.2,.7,.2,1);
      transition-delay: calc(60ms * var(--i, 0));
    }
    .swc-nav-sheet[data-open="true"] .swc-nav-item {
      opacity: 1;
      transform: translateY(0);
    }

    /* Animated hamburger → X */
    .swc-burger-icon {
      width: 22px; height: 22px;
      display: inline-flex; flex-direction: column;
      justify-content: center; align-items: center; gap: 5px;
      position: relative;
    }
    .swc-burger-icon span {
      display: block; width: 22px; height: 2px;
      background: currentColor; border-radius: 2px;
      transition: transform .35s cubic-bezier(.7,-0.25,.25,1.3),
                  opacity .25s ease,
                  top .35s cubic-bezier(.7,-0.25,.25,1.3);
      position: relative; top: 0;
    }
    .swc-nav-burger[data-open="true"] .swc-burger-icon span:nth-child(1) {
      transform: translateY(3.5px) rotate(45deg);
    }
    .swc-nav-burger[data-open="true"] .swc-burger-icon span:nth-child(2) {
      transform: translateY(-3.5px) rotate(-45deg);
    }

    /* ── Step animation (reveal + hover) ── */
    .swc-step { cursor: default; }
    .swc-step:hover .swc-step-icon { transform: rotate(-6deg); }
    .swc-step:hover .swc-step-bar { width: 80px; }
    .swc-step-icon { transition: transform .35s cubic-bezier(.5,1.5,.4,1); }
    .swc-step-bar {
      width: 0; height: 2px; background: #C8861A;
      border-radius: 2px;
      transition: width 1s cubic-bezier(.2,.7,.2,1) .35s;
    }
    [data-revealed="true"] .swc-step-bar { width: 48px; }

    /* ── Town chip (static — not interactive, no hover) ── */

    /* ── Nav link hover ── */
    nav a { transition: color .15s ease; }
    nav a:hover { color: #C8861A !important; }
    /* Phone number gets a slower, softer color transition */
    .swc-nav-phone, .swc-nav-phone svg { transition: color .35s cubic-bezier(.2,.7,.2,1) !important; }
    .swc-nav-phone:hover, .swc-nav-phone:hover svg { color: #E8A830 !important; }
    /* Mobile sheet links — hover on desktop, :active on tap for mobile.
       Anchor tap target = text width via align-self: flex-start.
       Color set in CSS (not inline) so :active rule can override. */
    .swc-nav-sheet a, .swc-nav-sheet a svg { color: #fff; }
    .swc-nav-sheet a { align-self: flex-start; transition: color .2s ease; }
    .swc-nav-sheet a { -webkit-tap-highlight-color: transparent; }
    /* Full-width divider under each regular nav link — drawn via a pseudo-element
       that extends past the anchor's text-width box. Clipped by the sheet's
       overflow-x: hidden so it doesn't spill beyond the menu. */
    .swc-nav-sheet .swc-nav-link { position: relative; }
    .swc-nav-sheet .swc-nav-link::after {
      content: "";
      position: absolute;
      left: -100vw; right: -100vw;
      bottom: 0;
      height: 1px;
      background: rgba(255,255,255,.08);
      pointer-events: none;
    }
    .swc-nav-sheet a[href^="tel:"],
    .swc-nav-sheet a[href^="tel:"] * { transition: color .35s cubic-bezier(.2,.7,.2,1); }
    @media (hover: hover) {
      .swc-nav-sheet a:hover { color: #C8861A !important; }
      .swc-nav-sheet a[href^="tel:"]:hover,
      .swc-nav-sheet a[href^="tel:"]:hover * { color: #E8A830 !important; }
    }
    /* Tap-active = instant gold flash (no transition) so quick taps show feedback. */
    .swc-nav-sheet a:active { color: #C8861A !important; transition: none !important; }
    .swc-nav-sheet a[href^="tel:"]:active,
    .swc-nav-sheet a[href^="tel:"]:active * { color: #E8A830 !important; transition: none !important; }

    /* ── Footer link hover ── */
    footer a { transition: color .15s ease; }
    footer a:hover { color: #E8A830 !important; }
    /* Only highlight contact rows that are clickable (have an <a> inside) */
    .swc-contact-item:has(a):hover { color: #E8A830 !important; }
    .swc-contact-item:has(a) { cursor: pointer; }

    /* ── Responsive: tablet ── */
    @media (max-width: 960px) {
      .swc-hero-grid { grid-template-columns: 1fr !important; }
      .swc-hero-visual { max-width: 480px; margin: 0 auto; }
      .swc-footer-grid { grid-template-columns: 1fr 1fr !important; }
    }

    /* ── Responsive: mobile ── */
    @media (max-width: 720px) {
      .swc-nav-links { display: none !important; }
      .swc-nav-burger { display: inline-flex !important; }
      .swc-nav-sheet {
        display: block !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-height: none !important;
        background: rgba(13,24,40,.98) !important;
        padding-block: 8px max(16px, env(safe-area-inset-bottom)) !important;
        overflow-y: auto !important;
      }
      .swc-nav-sheet .swc-container {
        height: 100%;
        padding-top: 4px !important;
        gap: 4px !important;
      }
      .swc-nav-item {
        font-size: 22px !important;
        padding: 18px 4px !important;
      }
      .swc-footer-grid { grid-template-columns: 1fr !important; }
      .swc-nav-phone { display: none !important; }
      .swc-nav-logo img { height: 40px !important; }
      /* Lock body scroll when nav is open */
      body:has(.swc-nav-sheet[data-open="true"]) { overflow: hidden; }
      /* Hide floating phone button when nav is open */
      body:has(.swc-nav-sheet[data-open="true"]) .swc-fab-phone { display: none !important; }
    }

    @media (max-width: 480px) {
      .swc-hero-visual { display: none; }
    }

    /* Desktop nav — scale up link text, phone, and the CTA */
    @media (min-width: 721px) {
      .swc-nav-links a { font-size: 15px !important; }
      .swc-nav-phone { font-size: 15px !important; }
      .swc-nav-phone + .swc-btn { font-size: 15px !important; padding: 11px 22px !important; }
    }

    /* Bottom-CTA buttons — stack and equal-width on mobile */
    @media (max-width: 720px) {
      .swc-cta-row {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
      }
      .swc-cta-row > .swc-btn { width: 100%; justify-content: center; min-height: 52px; }
    }

    /* Announcement-bar twinkling stars */
    .swc-twinkle-big, .swc-twinkle-small {
      transform-box: fill-box;
      transform-origin: center;
    }
    .swc-twinkle-big {
      animation: swc-twinkle-big 3.6s ease-in-out infinite;
    }
    .swc-twinkle-small {
      animation: swc-twinkle-small 2.4s ease-in-out infinite;
      animation-delay: 0.7s;
    }
    @keyframes swc-twinkle-big {
      0%, 100% { opacity: 0.85; transform: scale(0.96); }
      50%      { opacity: 1;    transform: scale(1.06); }
    }
    @keyframes swc-twinkle-small {
      0%, 100% { opacity: 0.4;  transform: scale(0.8); }
      50%      { opacity: 1;    transform: scale(1.15); }
    }

    /* Hero sun glow — aggressive breathing */
    .swc-hero-glow {
      animation: swc-sun-breathe 4.5s ease-in-out infinite;
    }
    @keyframes swc-sun-breathe {
      0%, 100% { transform: scale(0.92) translate(0, 0); opacity: 0.55; }
      50%      { transform: scale(1.18) translate(-3%, 2%); opacity: 1; }
    }

    /* Floating phone button — mobile only */
    .swc-fab-phone {
      position: fixed; bottom: 20px; right: 20px;
      width: 56px; height: 56px; border-radius: 50%;
      background: #C8861A; color: #fff;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      box-shadow: 0 2px 6px rgba(22,38,64,.18);
      z-index: 100;
      transition: background .2s ease, transform .2s ease;
    }
    .swc-fab-phone:hover,
    .swc-fab-phone:focus-visible,
    .swc-fab-phone:active {
      background: #C8861A;
      box-shadow: 0 2px 6px rgba(22,38,64,.18), 0 0 0 6px rgba(232,168,48,.22), 0 0 18px rgba(232,168,48,.35);
      outline: none;
    }
    @media (min-width: 721px) {
      .swc-fab-phone { display: none; }
    }
    /* Hide floating phone button when quote modal is open */
    body:has(.swc-quote-modal) .swc-fab-phone { display: none !important; }

    /* Reduce motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
    }
