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

    :root {
      --teal: #7A0019;
      --teal-dark: #5B0013;
      --dark: #111827;
      --dark2: #1c2636;
      --text: #374151;
      --muted: #6b7280;
      --white: #ffffff;
      --offwhite: #f8f9fb;
      --border: #e5e7eb;
      --head: 'Montserrat', sans-serif;
      --body: 'Inter', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--body); color: var(--text); background: var(--white); line-height: 1.65; }
    img { display: block; max-width: 100%; }

    /* ── NAV ── */
    nav {
      position: sticky; top: 0; z-index: 200;
      background: var(--dark);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 2.5rem; height: 68px;
      box-shadow: 0 2px 20px rgba(0,0,0,.35);
    }
    .nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-brand img { height: 40px; filter: brightness(0) invert(1); }
    .nav-brand span { font-family: var(--head); font-weight: 700; font-size: .95rem; color: var(--white); letter-spacing: .3px; }
    .nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
    .nav-links a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .88rem; font-weight: 500; transition: color .2s; }
    .nav-links a:hover { color: var(--teal); }
    .nav-cta { background: var(--teal) !important; color: var(--white) !important; padding: .45rem 1.2rem; border-radius: 6px; font-weight: 700 !important; transition: background .2s !important; }
    .nav-cta:hover { background: var(--teal-dark) !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .2s; }

    /* ── HERO ── */
    .hero {
      position: relative; min-height: 100svh;
      display: flex; align-items: stretch;
      background:
        radial-gradient(circle at 14% 18%, rgba(122,0,25,.22), transparent 32%),
        radial-gradient(circle at 82% 24%, rgba(255,255,255,.09), transparent 28%),
        linear-gradient(135deg, #04070b 0%, #0c1520 52%, #071218 100%);
      overflow: hidden;
      isolation: isolate;
    }
    .hero-slides { position: absolute; inset: 0; overflow: hidden; }
    .hero-slide {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      opacity: 0;
      transform: scale(1.05);
      transition: opacity 1.6s ease, transform 7s ease;
    }
    .hero-slide.active {
      opacity: 1;
      transform: scale(1);
    }
    .hero-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(4,7,11,.88) 0%, rgba(4,7,11,.62) 38%, rgba(4,7,11,.28) 64%, rgba(4,7,11,.72) 100%),
        linear-gradient(180deg, rgba(4,7,11,.2) 0%, rgba(4,7,11,.08) 42%, rgba(4,7,11,.82) 100%);
    }
    .hero-slide img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      filter: saturate(1.04) contrast(1.02);
    }
    .hero-ambient {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
    }
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
      background-size: 74px 74px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.85), transparent 88%);
      opacity: .22;
    }
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(10px);
    }
    .hero-orb.one {
      width: 360px;
      height: 360px;
      top: -72px;
      right: -60px;
      background: radial-gradient(circle, rgba(122,0,25,.46) 0%, rgba(122,0,25,0) 72%);
    }
    .hero-orb.two {
      width: 280px;
      height: 280px;
      bottom: -88px;
      left: 14%;
      background: radial-gradient(circle, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 72%);
    }
    .hero-content {
      position: relative; z-index: 2;
      width: min(1240px, 100%);
      margin: 0 auto;
      padding: 7.5rem 2.5rem 4.25rem;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
      gap: 2.25rem;
      align-items: end;
    }
    .hero-copy {
      max-width: 760px;
    }
    .chip {
      display: inline-flex; align-items: center; gap: .55rem;
      background: rgba(122,0,25,.16); color: var(--white);
      border: 1px solid rgba(122,0,25,.35);
      backdrop-filter: blur(10px);
      font-size: .75rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
      padding: .5rem 1rem; border-radius: 999px; margin-bottom: 1.2rem;
    }
    .chip::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #E4CCD1;
      box-shadow: 0 0 18px rgba(228,204,209,.7);
      flex: none;
    }
    .hero h1 {
      font-family: var(--head); font-weight: 800;
      font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.12;
      color: var(--white); max-width: 760px; margin-bottom: 1.1rem;
      text-wrap: balance;
    }
    .hero h1 em { color: var(--teal); font-style: normal; }
    .hero p {
      font-size: 1.1rem; color: rgba(255,255,255,.82);
      max-width: 600px; margin-bottom: 1.7rem; line-height: 1.8;
    }
    .btn-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
    .btn-teal {
      display: inline-flex; align-items: center; gap: .5rem;
      background: var(--teal); color: var(--white);
      padding: .9rem 2rem; border-radius: 8px;
      font-family: var(--head); font-weight: 700; font-size: .97rem;
      box-shadow: 0 16px 38px rgba(122,0,25,.28);
      text-decoration: none; transition: background .2s, transform .15s, box-shadow .2s;
    }
    .btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 18px 44px rgba(122,0,25,.36); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: .5rem;
      background: rgba(255,255,255,.06); color: var(--white);
      backdrop-filter: blur(10px);
      padding: .9rem 2rem; border-radius: 8px;
      font-family: var(--head); font-weight: 600; font-size: .97rem;
      text-decoration: none; border: 2px solid rgba(255,255,255,.35);
      transition: border-color .2s, background .2s, transform .15s;
    }
    .btn-ghost:hover { border-color: var(--teal); background: rgba(122,0,25,.14); transform: translateY(-2px); }
    .hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: .55rem 1.2rem;
      margin-bottom: 1.9rem;
    }
    .hero-point {
      color: rgba(255,255,255,.86);
      font-size: .86rem;
      font-weight: 700;
      letter-spacing: .2px;
    }
    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: .75rem 1.4rem;
      font-size: .82rem;
      color: rgba(255,255,255,.52);
      letter-spacing: .45px;
    }
    .hero-panel {
      justify-self: end;
      width: min(100%, 390px);
      border-radius: 24px;
      padding: 1.4rem;
      background: linear-gradient(180deg, rgba(7,18,24,.82) 0%, rgba(11,24,32,.74) 100%);
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: 0 24px 70px rgba(0,0,0,.34);
      backdrop-filter: blur(16px);
    }
    .hero-panel-tag {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      padding: .35rem .7rem;
      border-radius: 999px;
      background: rgba(228,204,209,.12);
      color: #EFE0E3;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: .95rem;
    }
    .hero-panel h3 {
      font-family: var(--head);
      font-size: 1.45rem;
      color: var(--white);
      margin-bottom: .45rem;
    }
    .hero-panel p {
      font-size: .96rem;
      line-height: 1.7;
      color: rgba(255,255,255,.72);
      margin-bottom: 1.35rem;
    }
    .hero-panel-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: .8rem;
      margin-bottom: 1.2rem;
    }
    .hero-stat {
      padding: .95rem 1rem;
      border-radius: 16px;
      background: rgba(255,255,255,.045);
      border: 1px solid rgba(255,255,255,.08);
    }
    .hero-stat strong {
      display: block;
      font-family: var(--head);
      color: var(--white);
      font-size: 1.15rem;
      margin-bottom: .25rem;
    }
    .hero-stat span {
      color: rgba(255,255,255,.64);
      font-size: .82rem;
      line-height: 1.55;
    }
    .hero-sequence {
      list-style: none;
      display: grid;
      gap: .7rem;
      padding: 0;
      margin: 0 0 1.2rem 0;
    }
    .hero-sequence li {
      display: flex;
      gap: .8rem;
      align-items: flex-start;
      color: rgba(255,255,255,.8);
      font-size: .9rem;
      line-height: 1.6;
    }
    .hero-sequence-index {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: none;
      background: rgba(122,0,25,.18);
      color: #EFE0E3;
      font-weight: 800;
      font-size: .8rem;
      border: 1px solid rgba(122,0,25,.28);
    }
    .hero-rotator {
      display: grid;
      gap: .55rem;
    }
    .hero-rotator-label {
      font-size: .8rem;
      letter-spacing: 1.15px;
      text-transform: uppercase;
      color: rgba(255,255,255,.48);
    }
    .hero-rotator-title {
      color: rgba(255,255,255,.92);
      font-weight: 700;
      min-height: 1.4em;
    }
    .hero-rotator-bars {
      display: grid;
      grid-template-columns: repeat(11, minmax(0, 1fr));
      gap: .35rem;
    }
    .hero-rotator-bar {
      height: 4px;
      border: 0;
      border-radius: 999px;
      background: rgba(255,255,255,.18);
      padding: 0;
      cursor: pointer;
      transition: background .25s ease, transform .25s ease;
    }
    .hero-rotator-bar.active {
      background: var(--teal);
      transform: scaleY(1.2);
    }

    /* ── TRUST STRIP ── */
    .trust {
      background: var(--teal);
      padding: 1.1rem 2.5rem;
    }
    .trust-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem;
    }
    .trust-item { display: flex; align-items: center; gap: .55rem; color: var(--white); font-weight: 600; font-size: .88rem; }
    .trust-link { text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s, opacity .2s; }
    .trust-link:hover { border-color: rgba(255,255,255,.75); opacity: .92; }

    /* ── SHARED SECTION ── */
    .section { padding: 5.5rem 2.5rem; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase; color: var(--teal); margin-bottom: .7rem; }
    .section-title { font-family: var(--head); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--dark); line-height: 1.2; margin-bottom: 1rem; }
    .section-sub { font-size: 1rem; color: var(--muted); max-width: 580px; line-height: 1.75; }

    /* ── ABOUT ── */
    .about { background: var(--offwhite); }
    .about-intro {
      max-width: 920px;
      margin: 0 auto;
      text-align: center;
    }
    .about-intro h3 {
      font-family: var(--head);
      font-size: clamp(1.25rem, 2vw, 1.8rem);
      color: var(--dark);
      margin-bottom: .8rem;
    }
    .about-intro p {
      line-height: 1.85;
      color: var(--text);
    }
    .about-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.5rem;
      align-items: stretch;
      margin-top: 3rem;
    }
    .about-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 1.8rem;
      box-shadow: 0 18px 46px rgba(15, 23, 42, .06);
    }
    .about-card h4 {
      font-family: var(--head);
      font-size: 1.5rem;
      color: var(--dark);
      margin-bottom: .9rem;
    }
    .about-card p {
      line-height: 1.85;
      color: var(--text);
      margin-bottom: 1rem;
    }
    .checklist { list-style: none; margin-top: 1.1rem; display: flex; flex-direction: column; gap: .7rem; }
    .checklist li { display: flex; align-items: flex-start; gap: .6rem; font-size: .93rem; line-height: 1.6; }
    .checklist li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .about-fine-print {
      margin-top: 1.5rem;
      text-align: center;
      color: var(--muted);
      font-size: .82rem;
      line-height: 1.8;
    }

    /* ── COMPLIANCE ── */
    .compliance {
      background:
        radial-gradient(circle at top right, rgba(122,0,25,.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
      border-top: 1px solid rgba(122,0,25,.12);
      border-bottom: 1px solid rgba(122,0,25,.12);
    }
    .compliance-intro {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
      gap: 2rem;
      align-items: end;
    }
    .compliance-callout {
      background: rgba(122,0,25,.08);
      border: 1px solid rgba(122,0,25,.18);
      border-radius: 18px;
      padding: 1.35rem 1.4rem;
      box-shadow: 0 18px 46px rgba(15, 23, 42, .05);
    }
    .compliance-callout strong {
      display: block;
      font-family: var(--head);
      color: var(--dark);
      font-size: 1rem;
      margin-bottom: .45rem;
    }
    .compliance-callout p {
      color: var(--text);
      font-size: .95rem;
      line-height: 1.75;
    }
    .compliance-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
      margin-top: 2.5rem;
    }
    .compliance-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 1.5rem;
      box-shadow: 0 18px 46px rgba(15, 23, 42, .05);
      display: flex;
      flex-direction: column;
      gap: .9rem;
    }
    .compliance-icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(122,0,25,.1);
      color: var(--teal);
    }
    .compliance-icon svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      stroke-width: 2.1;
      fill: none;
    }
    .compliance-card h3 {
      font-family: var(--head);
      font-size: 1.12rem;
      color: var(--dark);
    }
    .compliance-card p {
      color: var(--text);
      line-height: 1.75;
      font-size: .94rem;
    }
    .compliance-list {
      list-style: none;
      display: grid;
      gap: .65rem;
      font-size: .9rem;
      color: var(--text);
    }
    .compliance-list li {
      display: flex;
      gap: .55rem;
      align-items: flex-start;
      line-height: 1.6;
    }
    .compliance-list li::before {
      content: "•";
      color: var(--teal);
      font-weight: 800;
      flex: none;
      margin-top: 1px;
    }
    .compliance-links {
      display: flex;
      flex-wrap: wrap;
      gap: .75rem;
      margin-top: .25rem;
    }
    .compliance-link {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      text-decoration: none;
      font-weight: 700;
      font-size: .88rem;
      color: var(--dark);
      padding: .72rem 1rem;
      border-radius: 999px;
      border: 1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.8);
      transition: transform .15s ease, border-color .2s ease, color .2s ease, background .2s ease;
    }
    .compliance-link:hover {
      color: var(--teal-dark);
      border-color: rgba(122,0,25,.32);
      background: rgba(122,0,25,.08);
      transform: translateY(-1px);
    }
    .compliance-footnote {
      margin-top: 1.25rem;
      color: var(--muted);
      font-size: .82rem;
      line-height: 1.75;
    }

    /* ── PACKAGES ── */
    .packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .pkg {
      background: var(--white); border: 1.5px solid var(--border);
      border-radius: 14px; overflow: hidden;
      display: flex; flex-direction: column;
      transition: box-shadow .2s, transform .2s;
    }
    .pkg:hover { box-shadow: 0 16px 48px rgba(0,0,0,.11); transform: translateY(-3px); }
    .pkg.top { border-color: var(--teal); box-shadow: 0 8px 32px rgba(122,0,25,.18); }
    .pkg-badge { background: var(--teal); color: var(--white); text-align: center; font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: .38rem; }
    .pkg-photo { height: auto; aspect-ratio: 1 / 1; overflow: hidden; background: var(--offwhite); display: flex; align-items: stretch; justify-content: center; }
    .pkg-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .4s; }
    .pkg-photo img.full-photo { object-fit: contain; background: #f5f1ea; }
    .pkg:hover .pkg-photo img { transform: scale(1.03); }
    .pkg-body { padding: 1.4rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
    .pkg-name { font-family: var(--head); font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: .45rem; line-height: 1.35; }
    .pkg-context { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1.2px; font-weight: 700; margin-bottom: .55rem; }
    .pkg-price { font-family: var(--head); font-size: 2rem; font-weight: 800; color: var(--teal); margin-bottom: 1rem; }
    .pkg-price small { font-size: .85rem; color: var(--muted); font-weight: 400; }
    .pkg-list { list-style: none; font-size: .84rem; color: var(--text); flex: 1; margin-bottom: 1.1rem; }
    .pkg-list li { padding: .28rem 0; border-bottom: 1px solid var(--border); display: flex; gap: .5rem; line-height: 1.5; }
    .pkg-list li::before { content: '→'; color: var(--teal); flex-shrink: 0; }
    .pkg-note { font-size: .77rem; color: var(--muted); font-style: italic; margin-bottom: 1.1rem; line-height: 1.5; }
    .btn-pkg { display: block; text-align: center; background: var(--dark); color: var(--white); padding: .72rem; border-radius: 7px; font-weight: 600; font-size: .88rem; text-decoration: none; transition: background .2s; }
    .pkg.top .btn-pkg { background: var(--teal); }
    .btn-pkg:hover { background: var(--teal); }
    .pkg-disclaimer { text-align: center; font-size: .8rem; color: var(--muted); margin-top: 1.6rem; }

    /* ── GALLERY SLIDESHOW ── */
    .gallery { background: var(--dark2); }
    .gallery .section-title { color: var(--white); }
    .gallery .eyebrow { color: var(--teal); }
    .gallery .section-sub { color: rgba(255,255,255,.55); }

    .gss { margin-top: 3rem; }
    .gss-main {
      position: relative; width: 100%; height: 580px;
      background: #06090f; border-radius: 16px; overflow: hidden;
      box-shadow: 0 32px 80px rgba(0,0,0,.55);
    }
    .gss-slide {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity .75s ease-in-out; pointer-events: none;
    }
    .gss-slide.active { opacity: 1; pointer-events: auto; }
    .gss-slide img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }

    .gss-progress {
      position: absolute; bottom: 0; left: 0; height: 3px;
      background: var(--teal); width: 0%; z-index: 10;
    }

    .gss-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 52px; height: 52px; border-radius: 50%;
      background: rgba(0,0,0,.55); border: 2px solid rgba(255,255,255,.18);
      color: var(--white); cursor: pointer; z-index: 10;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s, border-color .2s, transform .2s;
    }
    .gss-btn svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2.5; fill: none; }
    .gss-btn:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-50%) scale(1.1); }
    .gss-prev { left: 1.1rem; }
    .gss-next { right: 1.1rem; }

    .gss-counter {
      position: absolute; top: 1rem; right: 1.2rem; z-index: 10;
      background: rgba(0,0,0,.52); color: rgba(255,255,255,.8);
      font-family: var(--head); font-weight: 600; font-size: .78rem;
      letter-spacing: .6px; padding: .3rem .85rem; border-radius: 20px;
    }

    .gss-dots {
      display: flex; justify-content: center; gap: .55rem; margin-top: 1.3rem;
    }
    .gss-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,.22); cursor: pointer;
      transition: background .2s, transform .2s;
    }
    .gss-dot.active { background: var(--teal); transform: scale(1.4); }

    .gss-thumbs {
      display: flex; gap: .55rem; margin-top: 1rem;
      overflow-x: auto; padding-bottom: .6rem;
      scrollbar-width: thin; scrollbar-color: var(--teal) rgba(255,255,255,.08);
    }
    .gss-thumbs::-webkit-scrollbar { height: 4px; }
    .gss-thumbs::-webkit-scrollbar-track { background: rgba(255,255,255,.06); border-radius: 4px; }
    .gss-thumbs::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; }
    .gss-thumb {
      flex-shrink: 0; width: 88px; height: 62px;
      border-radius: 7px; overflow: hidden; cursor: pointer;
      opacity: .38; border: 2px solid transparent;
      transition: opacity .2s, border-color .2s, transform .2s;
    }
    .gss-thumb.active { opacity: 1; border-color: var(--teal); transform: scale(1.06); }
    .gss-thumb:hover:not(.active) { opacity: .7; }
    .gss-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

    /* ── GOOGLE REVIEWS ── */
    .reviews {
      scroll-margin-top: 68px;
      background:
        radial-gradient(circle at 88% 12%, rgba(122,0,25,.1), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    }
    .reviews-heading {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 2rem;
      align-items: end;
    }
    .google-rating {
      display: flex;
      align-items: center;
      gap: 1rem;
      min-width: 235px;
      padding: 1rem 1.15rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      box-shadow: 0 16px 38px rgba(17,24,39,.07);
    }
    .google-mark {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: none;
      color: #4285f4;
      background: #fff;
      border: 1px solid var(--border);
      font-family: Arial, sans-serif;
      font-size: 1.65rem;
      font-weight: 700;
    }
    .google-rating strong {
      display: inline-block;
      margin-right: .45rem;
      color: var(--dark);
      font-family: var(--head);
      font-size: 1.35rem;
      line-height: 1;
    }
    .google-rating .review-stars { display: inline-block; }
    .google-rating span {
      display: block;
      margin-top: .18rem;
      color: var(--muted);
      font-size: .78rem;
    }
    .review-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
      margin-top: 2.75rem;
    }
    .review-card {
      display: flex;
      flex-direction: column;
      min-height: 250px;
      padding: 1.5rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 18px;
      box-shadow: 0 18px 44px rgba(17,24,39,.065);
    }
    .review-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1.2rem;
    }
    .review-stars {
      color: #f5a623;
      font-size: 1rem;
      letter-spacing: .12em;
      line-height: 1;
    }
    .review-source {
      color: var(--muted);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .review-card blockquote {
      color: var(--dark);
      font-family: var(--head);
      font-size: 1.08rem;
      font-weight: 600;
      line-height: 1.65;
    }
    .review-card footer {
      margin-top: auto;
      padding-top: 1.35rem;
      background: transparent;
      color: inherit;
    }
    .review-card footer strong {
      display: block;
      color: var(--dark);
      font-size: .88rem;
    }
    .review-card footer span {
      color: var(--muted);
      font-size: .76rem;
    }
    .review-actions {
      display: flex;
      align-items: center;
      gap: .85rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }
    .review-actions a {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      padding: .78rem 1.15rem;
      border-radius: 8px;
      font-family: var(--head);
      font-size: .86rem;
      font-weight: 700;
      text-decoration: none;
      transition: transform .15s, background .2s, border-color .2s;
    }
    .review-actions a:hover { transform: translateY(-2px); }
    .btn-review-primary { background: var(--dark); color: var(--white); border: 1px solid var(--dark); }
    .btn-review-primary:hover { background: var(--teal); border-color: var(--teal); }
    .btn-review-secondary { background: var(--white); color: var(--dark); border: 1px solid rgba(17,24,39,.18); }
    .btn-review-secondary:hover { border-color: var(--teal); color: var(--teal-dark); }
    .review-actions p {
      flex: 1 1 260px;
      margin-left: .4rem;
      color: var(--muted);
      font-size: .82rem;
      line-height: 1.6;
    }

    /* ── PROCESS ── */
    .process { background: var(--offwhite); }
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
    .step { background: var(--white); border-radius: 14px; padding: 2.2rem 1.8rem; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
    .step-num { width: 58px; height: 58px; background: var(--teal); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--head); font-weight: 800; font-size: 1.5rem; margin: 0 auto 1.3rem; }
    .step h3 { font-family: var(--head); font-weight: 700; font-size: 1.08rem; color: var(--dark); margin-bottom: .7rem; }
    .step p { font-size: .9rem; color: var(--muted); line-height: 1.75; }

    /* ── QUOTE FORM ── */
    .quote { background: linear-gradient(180deg, var(--white) 0%, var(--offwhite) 100%); }
    .quote-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; margin-top: 3rem; align-items: start; }
    .quote-card,
    .quote-side {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      box-shadow: 0 18px 48px rgba(17,24,39,.08);
    }
    .quote-card { padding: 2rem; }
    .quote-side { padding: 1.8rem; }
    .quote-kicker {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      background: rgba(122,0,25,.08);
      color: var(--teal-dark);
      border: 1px solid rgba(122,0,25,.18);
      border-radius: 999px;
      font-size: .78rem;
      font-weight: 700;
      padding: .45rem .8rem;
      margin-bottom: 1rem;
    }
    .quote-intro { color: var(--muted); font-size: .96rem; line-height: 1.75; margin-bottom: 1.6rem; }
    .quote-form-shell {
      display: grid;
      gap: 1.35rem;
    }
    .quote-progress {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: .7rem;
      position: sticky;
      top: 84px;
      z-index: 8;
    }
    .quote-progress-pill {
      padding: .9rem 1rem;
      border-radius: 14px;
      border: 1px solid rgba(122,0,25,.18);
      background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(246,250,252,.98) 100%);
      box-shadow: 0 12px 28px rgba(17,24,39,.06);
      transition: border-color .2s, box-shadow .2s, transform .2s, background .2s;
    }
    .quote-progress-pill.active {
      border-color: rgba(122,0,25,.42);
      background: linear-gradient(180deg, rgba(122,0,25,.12) 0%, rgba(122,0,25,.04) 100%);
      box-shadow: 0 16px 34px rgba(122,0,25,.12);
      transform: translateY(-1px);
    }
    .quote-progress-pill.active .quote-progress-step {
      background: var(--teal);
      color: var(--white);
    }
    .quote-progress-step {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: rgba(122,0,25,.14);
      color: var(--teal-dark);
      font-size: .74rem;
      font-weight: 800;
      margin-bottom: .45rem;
    }
    .quote-progress h4 {
      font-family: var(--head);
      font-size: .9rem;
      color: var(--dark);
      margin-bottom: .15rem;
    }
    .quote-progress p {
      font-size: .78rem;
      color: var(--muted);
      line-height: 1.5;
    }
    .form-sections {
      display: grid;
      gap: 1.15rem;
    }
    .form-section {
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.2rem;
      background: linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
    }
    .form-section-header {
      position: sticky;
      top: 176px;
      z-index: 4;
      background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 100%);
      padding-bottom: .8rem;
      margin-bottom: .95rem;
    }
    .form-section-kicker {
      display: inline-flex;
      align-items: center;
      gap: .42rem;
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--teal-dark);
      margin-bottom: .35rem;
    }
    .form-section-kicker::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 0 4px rgba(122,0,25,.12);
    }
    .form-section-title {
      font-family: var(--head);
      font-size: 1.15rem;
      color: var(--dark);
      margin-bottom: .25rem;
    }
    .form-section-copy {
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.65;
      max-width: 54ch;
    }
    .package-picker {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: .8rem;
      margin-bottom: 1rem;
    }
    .package-card {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: .7rem;
      border: 1.5px solid var(--border);
      border-radius: 18px;
      padding: 1rem 1rem 1.05rem;
      background: #fff;
      cursor: pointer;
      text-align: left;
      overflow: hidden;
      transition: border-color .2s, box-shadow .2s, transform .2s, background .2s;
    }
    .package-card-media {
      position: relative;
      z-index: 1;
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 14px;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(122,0,25,.14), rgba(7,18,24,.12));
      border: 1px solid rgba(15,23,42,.08);
    }
    .package-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .35s ease;
    }
    .package-card-media img.full-photo {
      object-fit: contain;
      background: #f5f1ea;
    }
    .package-card:hover .package-card-media img,
    .package-card.active .package-card-media img {
      transform: scale(1.04);
    }
    .package-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(122,0,25,.09), transparent 42%);
      opacity: 0;
      transition: opacity .2s;
      pointer-events: none;
    }
    .package-card:hover {
      border-color: rgba(122,0,25,.44);
      box-shadow: 0 14px 34px rgba(122,0,25,.1);
      transform: translateY(-2px);
    }
    .package-card:hover::after,
    .package-card.active::after {
      opacity: 1;
    }
    .package-card.active {
      border-color: var(--teal);
      background: linear-gradient(180deg, rgba(122,0,25,.08) 0%, rgba(122,0,25,.025) 100%);
      box-shadow: 0 16px 38px rgba(122,0,25,.12);
    }
    .package-card.featured {
      border-color: rgba(122,0,25,.34);
      box-shadow: 0 14px 34px rgba(122,0,25,.08);
    }
    .package-card-top {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: .75rem;
      width: 100%;
    }
    .package-card-badges {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: .4rem;
    }
    .package-badge {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: .32rem .62rem;
      font-size: .69rem;
      font-weight: 800;
      letter-spacing: .6px;
      text-transform: uppercase;
      background: rgba(15,23,42,.06);
      color: var(--dark);
    }
    .package-badge-accent {
      background: rgba(122,0,25,.12);
      color: var(--teal-dark);
    }
    .package-card-check {
      position: relative;
      z-index: 1;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.82);
      color: transparent;
      font-size: .92rem;
      font-weight: 900;
      box-shadow: 0 8px 18px rgba(15,23,42,.06);
      transition: background .2s, border-color .2s, color .2s, transform .2s;
    }
    .package-card.active .package-card-check {
      background: var(--teal);
      border-color: var(--teal);
      color: #fff;
      transform: scale(1.04);
    }
    .package-card-copy {
      position: relative;
      z-index: 1;
    }
    .package-card strong {
      display: block;
      font-family: var(--head);
      color: var(--dark);
      font-size: 1.02rem;
      margin-bottom: .28rem;
      line-height: 1.28;
    }
    .package-card span {
      display: block;
      font-size: .84rem;
      color: var(--muted);
      line-height: 1.6;
    }
    .package-card em {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      margin-top: auto;
      color: var(--teal-dark);
      font-style: normal;
      font-weight: 700;
      font-size: .78rem;
      letter-spacing: .2px;
    }
    .package-card em::before {
      content: "Best for:";
      margin-right: .3rem;
      color: var(--dark);
      font-weight: 800;
    }
    .package-helper {
      margin-bottom: 1rem;
      border: 1px solid rgba(122,0,25,.18);
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(122,0,25,.06) 0%, rgba(255,255,255,.98) 100%);
      box-shadow: 0 16px 38px rgba(17,24,39,.05);
      overflow: hidden;
    }
    .package-helper-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem 1.05rem;
    }
    .package-helper-title {
      display: grid;
      gap: .2rem;
    }
    .package-helper-title strong {
      font-family: var(--head);
      font-size: 1rem;
      color: var(--dark);
    }
    .package-helper-title span {
      font-size: .84rem;
      color: var(--muted);
      line-height: 1.55;
    }
    .package-helper-toggle {
      border: 1px solid rgba(122,0,25,.22);
      background: rgba(255,255,255,.9);
      color: var(--teal-dark);
      font: inherit;
      font-weight: 800;
      border-radius: 999px;
      padding: .65rem .95rem;
      cursor: pointer;
      transition: transform .15s, border-color .2s, background .2s;
    }
    .package-helper-toggle:hover {
      transform: translateY(-1px);
      border-color: rgba(122,0,25,.4);
      background: #fff;
    }
    .package-helper-body {
      display: grid;
      gap: 1rem;
      padding: 0 1.05rem 1.05rem;
    }
    .package-helper-body[hidden] {
      display: none;
    }
    .package-helper-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: .85rem;
    }
    .helper-question {
      border: 1px solid rgba(15,23,42,.08);
      border-radius: 16px;
      background: rgba(255,255,255,.82);
      padding: .9rem;
      display: grid;
      gap: .7rem;
    }
    .helper-question h4 {
      font-family: var(--head);
      font-size: .92rem;
      color: var(--dark);
      margin: 0;
    }
    .helper-options {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem;
    }
    .helper-option {
      border: 1px solid rgba(15,23,42,.1);
      background: #fff;
      color: var(--dark);
      font: inherit;
      font-size: .8rem;
      font-weight: 700;
      line-height: 1.4;
      border-radius: 999px;
      padding: .58rem .75rem;
      cursor: pointer;
      transition: border-color .2s, background .2s, color .2s, transform .15s, box-shadow .2s;
    }
    .helper-option:hover {
      transform: translateY(-1px);
      border-color: rgba(122,0,25,.28);
      box-shadow: 0 10px 24px rgba(122,0,25,.08);
    }
    .helper-option.active {
      border-color: var(--teal);
      background: rgba(122,0,25,.12);
      color: var(--teal-dark);
      box-shadow: 0 10px 22px rgba(122,0,25,.1);
    }
    .package-helper-result {
      border: 1px solid rgba(122,0,25,.18);
      border-radius: 16px;
      background: #fff;
      padding: 1rem;
      display: grid;
      gap: .7rem;
    }
    .package-helper-result-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .package-helper-result strong {
      display: block;
      font-family: var(--head);
      font-size: 1rem;
      color: var(--dark);
      margin-bottom: .2rem;
    }
    .package-helper-result p {
      font-size: .85rem;
      color: var(--muted);
      line-height: 1.6;
    }
    .package-helper-actions {
      display: flex;
      gap: .6rem;
      flex-wrap: wrap;
    }
    .package-helper-apply,
    .package-helper-reset {
      border-radius: 999px;
      padding: .65rem .9rem;
      font: inherit;
      font-weight: 800;
      cursor: pointer;
    }
    .package-helper-apply {
      border: none;
      background: var(--teal);
      color: #fff;
      box-shadow: 0 12px 28px rgba(122,0,25,.18);
    }
    .package-helper-reset {
      border: 1px solid rgba(15,23,42,.12);
      background: #fff;
      color: var(--dark);
    }
    .package-preview {
      margin-bottom: 1.15rem;
      border: 1px solid rgba(122,0,25,.16);
      border-radius: 18px;
      overflow: hidden;
      background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
      box-shadow: 0 18px 42px rgba(17,24,39,.06);
    }
    .package-preview[hidden] {
      display: none;
    }
    .package-preview-grid {
      display: grid;
      grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
      gap: 0;
      align-items: stretch;
    }
    .package-preview-media {
      min-height: 100%;
      background: #0b1420;
    }
    .package-preview-media img {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 220px;
      object-fit: cover;
    }
    .package-preview-media img.full-photo {
      object-fit: contain;
      background: #f5f1ea;
    }
    .package-preview-body {
      padding: 1.2rem 1.25rem 1.15rem;
      display: grid;
      gap: .8rem;
    }
    .package-preview-kicker {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem;
      align-items: center;
    }
    .package-preview-kicker .package-badge {
      font-size: .68rem;
    }
    .package-preview-title-row {
      display: flex;
      flex-wrap: wrap;
      gap: .7rem 1rem;
      align-items: baseline;
      justify-content: space-between;
    }
    .package-preview-title {
      font-family: var(--head);
      font-size: 1.2rem;
      color: var(--dark);
      margin: 0;
    }
    .package-preview-price {
      font-family: var(--head);
      font-size: 1.05rem;
      color: var(--teal-dark);
      font-weight: 800;
      white-space: nowrap;
    }
    .package-preview-text {
      font-size: .9rem;
      line-height: 1.7;
      color: var(--muted);
    }
    .package-preview-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: .55rem .9rem;
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .package-preview-list li {
      position: relative;
      padding-left: 1rem;
      font-size: .84rem;
      line-height: 1.55;
      color: var(--dark);
    }
    .package-preview-list li::before {
      content: "";
      position: absolute;
      top: .48rem;
      left: 0;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 0 4px rgba(122,0,25,.12);
    }
    .package-preview-note {
      padding-top: .15rem;
      font-size: .82rem;
      line-height: 1.6;
      color: var(--muted);
      border-top: 1px dashed rgba(15,23,42,.12);
    }
    .form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1rem; }
    .field,
    .field-full { display: flex; flex-direction: column; gap: .4rem; }
    .field-full { grid-column: 1 / -1; }
    .field label,
    .field-full label {
      font-size: .8rem;
      font-weight: 700;
      color: var(--dark);
      letter-spacing: .2px;
    }
    .field input,
    .field select,
    .field textarea,
    .field-full input,
    .field-full select,
    .field-full textarea {
      width: 100%;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: .9rem .95rem;
      font: inherit;
      color: var(--dark);
      background: var(--white);
      transition: border-color .2s, box-shadow .2s;
    }
    .field input:focus,
    .field select:focus,
    .field textarea:focus,
    .field-full input:focus,
    .field-full select:focus,
    .field-full textarea:focus {
      outline: none;
      border-color: var(--teal);
      box-shadow: 0 0 0 4px rgba(122,0,25,.12);
    }
    .field textarea,
    .field-full textarea { min-height: 118px; resize: vertical; }
    .field-help,
    .quote-note,
    .quote-list li,
    .quote-detail li { color: var(--muted); font-size: .83rem; line-height: 1.65; }
    .upload-help {
      display: block;
      margin-top: .55rem;
      color: var(--muted);
      font-size: .8rem;
      line-height: 1.6;
    }
    .upload-status {
      margin-top: .7rem;
      color: var(--text);
      font-size: .82rem;
      line-height: 1.6;
    }
    .upload-status.is-error {
      color: #991b1b;
    }
    .upload-list {
      list-style: none;
      display: grid;
      gap: .4rem;
      margin-top: .75rem;
    }
    .upload-list li {
      color: var(--text);
      font-size: .82rem;
      line-height: 1.5;
    }
    .quote-list,
    .quote-detail {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .75rem;
    }
    .quote-list { margin: 1.25rem 0 1.4rem; }
    .quote-list li,
    .quote-detail li {
      display: flex;
      align-items: flex-start;
      gap: .6rem;
    }
    .quote-list li::before,
    .quote-detail li::before {
      content: '•';
      color: var(--teal);
      font-weight: 800;
      flex-shrink: 0;
    }
    .quote-side h3 {
      font-family: var(--head);
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: .9rem;
    }
    .quote-side h4 {
      font-family: var(--head);
      font-size: .84rem;
      font-weight: 800;
      color: var(--teal);
      letter-spacing: 1.4px;
      text-transform: uppercase;
      margin: 1.5rem 0 .7rem;
    }
    .quote-actions {
      display: flex;
      align-items: center;
      gap: .9rem;
      flex-wrap: wrap;
      margin-top: 1.4rem;
    }
    .btn-submit {
      border: none;
      cursor: pointer;
    }
    .btn-submit[disabled] {
      cursor: wait;
      opacity: .72;
      transform: none;
    }
    .form-status {
      margin-top: 1rem;
      border-radius: 10px;
      padding: .9rem 1rem;
      font-size: .88rem;
      line-height: 1.6;
      display: none;
    }
    .form-status.show { display: block; }
    .form-status.success {
      background: #ecfdf5;
      border: 1px solid #86efac;
      color: #166534;
    }
    .form-status.error {
      background: #fef2f2;
      border: 1px solid #fca5a5;
      color: #991b1b;
    }
    .post-submit-options {
      display: none;
      margin-top: 1rem;
      padding: 1rem 1.1rem;
      border-radius: 14px;
      border: 1px solid rgba(27, 178, 211, .2);
      background: #f4fbfd;
    }
    .post-submit-options.show { display: block; }
    .post-submit-options h4 {
      margin: 0 0 .35rem;
      font-family: var(--head);
      font-size: 1rem;
      font-weight: 800;
      color: var(--dark);
    }
    .post-submit-options p {
      margin: 0 0 .9rem;
      font-size: .92rem;
      color: var(--body);
    }
    .post-submit-actions {
      display: flex;
      gap: .85rem;
      flex-wrap: wrap;
    }
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* ── CTA ── */
    .cta { background: var(--teal); padding: 5rem 2.5rem; text-align: center; }
    .cta h2 { font-family: var(--head); font-weight: 800; font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--white); margin-bottom: .75rem; }
    .cta p { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 1.8rem; }
    .btn-white { display: inline-flex; align-items: center; gap: .5rem; background: var(--white); color: var(--teal); padding: .9rem 2.4rem; border-radius: 8px; font-family: var(--head); font-weight: 700; font-size: .97rem; text-decoration: none; transition: background .2s, color .2s, transform .15s; }
    .btn-white:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }

    /* ── FOOTER ── */
    footer { background: #0f1623; color: rgba(255,255,255,.65); padding: 3.5rem 2.5rem 2rem; }
    .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
    .footer-brand img { height: 46px; filter: brightness(0) invert(1); margin-bottom: 1.1rem; }
    .nap { font-size: .87rem; line-height: 2.1; }
    .nap a { color: var(--teal); text-decoration: none; }
    .nap a:hover { text-decoration: underline; }
    .lic { display: block; margin-top: .4rem; font-size: .78rem; color: rgba(255,255,255,.3); }
    .footer-col h4 { font-family: var(--head); font-weight: 700; font-size: .8rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--white); margin-bottom: 1.1rem; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
    .footer-col a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .87rem; transition: color .2s; }
    .footer-col a:hover { color: var(--teal); }
    .footer-bottom { max-width: 1200px; margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: rgba(255,255,255,.28); }

    /* ── TRIM ADD-ONS ── */
    .addons { background: var(--offwhite); }
    .trim-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin-top: 3rem; }
    .trim-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; }
    .trim-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.09); transform: translateY(-2px); transition: box-shadow .2s, transform .2s; }
    .trim-photo { height: auto; aspect-ratio: 3 / 4; overflow: hidden; background: var(--offwhite); display: flex; align-items: center; justify-content: center; }
    .trim-photo-wide { aspect-ratio: 4 / 3; }
    .trim-photo img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform .4s; }
    .trim-card:hover .trim-photo img { transform: scale(1.03); }
    .trim-body { padding: 1.3rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
    .trim-name { font-family: var(--head); font-weight: 700; font-size: 1rem; color: var(--dark); }
    .trim-prices { display: flex; flex-direction: column; gap: .15rem; }
    .trim-prices span { font-size: .82rem; color: var(--muted); }
    .trim-prices strong { color: var(--teal); font-weight: 700; }
    .trim-includes { list-style: none; font-size: .82rem; color: var(--text); margin-top: .3rem; }
    .trim-includes li { padding: .22rem 0; border-bottom: 1px solid var(--border); display: flex; gap: .45rem; }
    .trim-includes li::before { content: '→'; color: var(--teal); flex-shrink: 0; }
    .trim-custom { border-color: var(--teal); }
    .trim-custom-inner { padding: 2rem 1.4rem; display: flex; flex-direction: column; justify-content: center; gap: 1rem; height: 100%; }
    .trim-custom-inner .trim-name { font-size: 1.05rem; }
    .trim-custom-inner p { font-size: .85rem; color: var(--muted); line-height: 1.75; }
    .trim-disclaimer { font-size: .8rem; color: var(--muted); font-style: italic; margin-top: 1.8rem; text-align: center; line-height: 1.8; }

    /* ── EXPENSES ── */
    .expenses { background: var(--white); }
    .expense-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
    .exp-card { background: var(--offwhite); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; }
    .exp-card h4 { font-family: var(--head); font-weight: 700; font-size: .75rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin-bottom: .9rem; padding-bottom: .6rem; border-bottom: 1px solid var(--border); }
    .exp-photo { aspect-ratio: 4 / 3; border-radius: 10px; overflow: hidden; background: var(--white); margin-bottom: 1rem; border: 1px solid var(--border); }
    .exp-photo img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
    .exp-row { display: flex; justify-content: space-between; align-items: flex-start; gap: .75rem; padding: .38rem 0; border-bottom: 1px solid var(--border); font-size: .83rem; }
    .exp-row:last-child { border-bottom: none; }
    .exp-label { color: var(--text); line-height: 1.5; }
    .exp-val { color: var(--dark); font-weight: 700; font-family: var(--head); white-space: nowrap; flex-shrink: 0; }
    .exp-val.incl { color: var(--teal); }
    .exp-sub { font-size: .74rem; color: var(--muted); font-style: italic; margin-top: .2rem; line-height: 1.5; }
    .exp-special { background: var(--dark2); border-radius: 12px; padding: 1.8rem 2rem; margin-top: 1.4rem; }
    .exp-special h4 { font-family: var(--head); font-weight: 700; font-size: .75rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin-bottom: .8rem; }
    .exp-special p { font-size: .87rem; color: rgba(255,255,255,.65); line-height: 1.8; }
    .expense-disclaimer { text-align: center; font-size: .88rem; font-weight: 700; color: var(--dark); margin-top: 2rem; padding: 1.2rem 2rem; background: #fef9ec; border: 1.5px solid #f5c842; border-radius: 8px; }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .packages-grid { grid-template-columns: repeat(2, 1fr); }
      .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .compliance-intro,
      .compliance-grid { grid-template-columns: 1fr; }
      .about-photo { order: -1; }
      .about-photo img { height: 320px; }
      .gss-main { height: 420px; }
      .gss-thumb { width: 74px; height: 52px; }
      .reviews-heading { grid-template-columns: 1fr; align-items: start; }
      .google-rating { justify-self: start; }
      .review-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      .trim-grid { grid-template-columns: repeat(2, 1fr); }
      .expense-grid { grid-template-columns: repeat(2, 1fr); }
      .quote-grid { grid-template-columns: 1fr; }
      .quote-progress { top: 76px; }
      .form-section-header { top: 154px; }
      .package-picker { grid-template-columns: 1fr; }
      .package-helper-grid { grid-template-columns: 1fr; }
      .package-preview-grid { grid-template-columns: 1fr; }
      .package-preview-media img { min-height: 210px; }
      .package-preview-list { grid-template-columns: 1fr; }
      .hero-content { grid-template-columns: 1fr; gap: 1.4rem; }
      .hero-panel { justify-self: start; }
    }
    @media (max-width: 640px) {
      nav { padding: 0 1.25rem; }
      .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--dark); padding: 2rem 1.5rem; gap: 1.5rem; z-index: 199; border-top: 1px solid rgba(255,255,255,.08); }
      .nav-links.open { display: flex; }
      .hamburger { display: flex; }
      .packages-grid { grid-template-columns: 1fr; }
      .trim-grid { grid-template-columns: 1fr; }
      .expense-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr; }
      .quote-form-shell { gap: 1rem; }
      .quote-progress {
        grid-template-columns: 1fr;
        position: static;
      }
      .quote-progress-pill { padding: .85rem .95rem; }
      .form-section {
        padding: 1rem;
      }
      .form-section-header {
        position: static;
        margin: -.1rem 0 .85rem;
      }
      .package-card {
        padding: .85rem .85rem .95rem;
      }
      .package-card-top {
        flex-direction: column;
        align-items: flex-start;
      }
      .package-card-badges {
        width: 100%;
        justify-content: space-between;
      }
      .package-preview-body {
        padding: 1rem;
      }
      .package-preview-title-row {
        flex-direction: column;
        align-items: flex-start;
      }
      .package-helper-head,
      .package-helper-result-top {
        flex-direction: column;
        align-items: flex-start;
      }
      .form-grid { grid-template-columns: 1fr; }
      .gss-main { height: 280px; }
      .gss-btn { width: 40px; height: 40px; }
      .gss-thumb { width: 60px; height: 44px; }
      .google-rating { width: 100%; min-width: 0; }
      .review-card { min-height: 0; }
      .review-actions { align-items: stretch; }
      .review-actions a { justify-content: center; width: 100%; }
      .review-actions p { margin-left: 0; text-align: center; }
      .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
      .trust-inner { flex-direction: column; gap: .6rem; }
      .section { padding: 4rem 1.5rem; }
      .hero {
        min-height: 100svh;
      }
      .hero-slides {
        inset: 0 0 30% 0;
      }
      .hero-slide {
        align-items: center;
      }
      .hero-slide::after {
        background:
          linear-gradient(180deg, rgba(4,7,11,.7) 0%, rgba(4,7,11,.22) 34%, rgba(4,7,11,.14) 58%, rgba(4,7,11,.94) 100%),
          linear-gradient(90deg, rgba(4,7,11,.56) 0%, rgba(4,7,11,.16) 42%, rgba(4,7,11,.14) 68%, rgba(4,7,11,.52) 100%);
      }
      .hero-slide img {
        width: 100%;
        height: 100%;
        padding: 4.35rem .85rem 0;
        object-fit: contain;
        object-position: center 42%;
        filter: saturate(1.04) contrast(1.02);
        opacity: .96;
      }
      .hero-content {
        min-height: 100svh;
        padding: 6rem 1.5rem 2.5rem;
        align-items: end;
      }
      .hero-panel { width: 100%; padding: 1.1rem; }
      .hero-panel-grid { grid-template-columns: 1fr 1fr; }
      .hero-rotator-bars { gap: .22rem; }
      .hero h1 { font-size: clamp(2.15rem, 10vw, 3.25rem); }
      .hero p { font-size: 1rem; }
      .hero-meta { flex-direction: column; gap: .4rem; }
      nav { padding: 0 1.25rem; }
    }
