/* Knoxville Epoxy Pros - shared site stylesheet (extracted from the canonical homepage system; STYLE-GUIDE.md palette) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* skip-link (GPT-review fix, S313/S314): visually hidden until keyboard-focused */
.skip-link{position:absolute;left:-9999px;top:0;z-index:2000;background:#fff;color:#1f2733;
  padding:.75rem 1.25rem;border-radius:0 0 8px 0;font-weight:700;text-decoration:none;}
.skip-link:focus{left:0;}

    :root {
      /* Light Fortun8 token adaptation */
      --bg:        #ffffff;
      --bg-soft:   #f6f7f9;
      --bg-cool:   #eef2f5;
      --teal:      #00d4aa;
      --teal-dark: #00b894;
      --cyan:      #4dd0e1;
      --navy:      #0e131c;
      --charcoal:  #1a1a2e;
      --ink:       #1f2733;
      --muted:     #5c6b7a;
      --line:      #e2e8ee;
      --gold:      #d4a500;
      --mark-fail: #c0392b;
      --link-hover: #5fe0c4;
      /* type scale */
      --display-xl: clamp(2.6rem, 6.5vw, 5.25rem);
      --display-lg: clamp(2rem, 4.5vw, 3.25rem);
      --h2:         clamp(1.7rem, 3.2vw, 2.5rem);
      /* radii */
      --r-md: 10px; --r-lg: 14px; --r-xl: 20px; --r-full: 999px;
      /* shadow */
      --sh-sm: 0 1px 3px rgba(14,19,28,.06), 0 1px 2px rgba(14,19,28,.04);
      --sh-md: 0 8px 24px rgba(14,19,28,.08);
      --sh-lg: 0 20px 50px rgba(14,19,28,.14);
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      color: var(--ink);
      background: var(--bg);
      line-height: 1.65;
      font-size: 17px;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }

    /* ---------- NAV ---------- */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,.88);
      backdrop-filter: saturate(180%) blur(12px);
      border-bottom: 1px solid var(--line);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 1rem; padding: .8rem 1.25rem; max-width: 1120px; margin: 0 auto;
    }
    .brand { display: flex; align-items: center; gap: .55rem; font-weight: 800; font-size: 1.12rem; letter-spacing: -.02em; color: var(--navy); }
    .brand .dot { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--teal), var(--cyan)); display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--sh-sm); }
    .brand .dot svg { width: 17px; height: 17px; }
    .brand span { color: var(--teal-dark); }
    .nav-links { display: flex; flex-wrap: wrap; gap: .1rem; list-style: none; margin: 0; padding: 0; }
    .nav-links a { color: var(--navy); font-weight: 600; font-size: .93rem; padding: .4rem .8rem; border-radius: 8px; text-decoration: none; transition: background .2s, color .2s; }
    .nav-links a:hover, .nav-links a.active { background: var(--teal); color: #06241d; }
    @media (max-width: 880px) { .nav-links { display: none; } }
    .nav-right { display: flex; align-items: center; gap: 1rem; }
    .nav-phone { font-weight: 800; font-size: 1.02rem; color: var(--navy); letter-spacing: -.01em; white-space: nowrap; }
    .nav-phone:hover { color: var(--teal-dark); }
    .nav-cta {
      background: var(--teal); color: #06241d; font-weight: 800; font-size: .95rem;
      padding: .6rem 1.15rem; border-radius: var(--r-full); box-shadow: var(--sh-sm);
      transition: transform .12s, background .2s, box-shadow .2s; white-space: nowrap;
    }
    .nav-cta:hover { background: var(--teal-dark); color: #04211a; transform: translateY(-1px); box-shadow: var(--sh-md); }
    .nav-phone-label { display: none; }

    /* ---------- HERO (full-width slider banner) ---------- */
    .hero { position: relative; overflow: hidden; background: var(--navy); border-bottom: 1px solid var(--line); }
    /* the slider IS the hero media; it fills the banner edge-to-edge */
    .hero .ba2.ba2-hero { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; aspect-ratio: auto; border-radius: 0; border: 0; box-shadow: none; z-index: 0; }
    .hero-banner { position: relative; min-height: clamp(460px, 60vh, 600px); display: flex; align-items: flex-end; }
    /* readable scrim over the image so the copy stays WCAG-legible */
    .hero-scrim { position: absolute; inset: 0; z-index: 3; pointer-events: none; background:
        linear-gradient(90deg, rgba(8,11,16,.86) 0%, rgba(8,11,16,.68) 38%, rgba(8,11,16,.20) 66%, rgba(8,11,16,0) 100%),
        linear-gradient(0deg, rgba(8,11,16,.62) 0%, rgba(8,11,16,0) 42%); }
    .hero-content { position: relative; z-index: 5; width: 100%; max-width: 1120px; margin: 0 auto; padding: 2.5rem 1.25rem 2.75rem; pointer-events: none; }
    .hero-content a, .hero-content button, .hero-content .stat-card, .hero-content input, .hero-content label { pointer-events: auto; }
    .hero-copy { max-width: 36rem; }
    /* let pointer events pass through the copy column to the slider EXCEPT on interactive bits */
    .hero-copy { pointer-events: none; }
    .hero-copy a, .hero-copy .eyebrow, .hero-copy .float-stat { pointer-events: auto; }
    .eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #062a22; background: rgba(0,212,170,.92); border: 1px solid rgba(0,212,170,.5); padding: .35rem .8rem; border-radius: var(--r-full); margin-bottom: 1.25rem; box-shadow: 0 2px 10px rgba(0,0,0,.25); }
    .hero h1 { font-size: var(--display-lg); font-weight: 900; line-height: 1.05; letter-spacing: -.035em; color: #fff; margin-bottom: 1.1rem; text-shadow: 0 2px 18px rgba(0,0,0,.55); }
    .hero h1 .hl { color: var(--teal); }
    /* reveal-on-sweep: start teal, flip to white/navy (one-way) as the slider bar passes */
    .rv { color: var(--teal) !important; transition: color .4s ease; }
    .rv.rv-done { color: #fff !important; }
    .rv-dark { color: var(--teal) !important; transition: color .4s ease; }
    .rv-dark.rv-done { color: var(--navy) !important; }
    /* hero-sec CTA: black text, bg sweep green->white (Nate S264) */
    .btn-hero-sec.rv-dark, .btn-hero-sec.rv-dark.rv-done { color: var(--navy) !important; }
    .btn-hero-sec.btn-ghost { background: var(--teal) !important; border-color: var(--teal) !important; transition: background .4s ease, border-color .4s ease, transform .12s, box-shadow .2s; }
    .btn-hero-sec.btn-ghost.rv-done { background: #fff !important; border-color: var(--line) !important; }
    .btn-hero-sec.btn-ghost:hover { color: var(--navy) !important; border-color: var(--teal) !important; }
    .eyebrow.rv-pill { transition: background .4s ease, color .4s ease, border-color .4s ease; }
    .eyebrow.rv-pill.rv-done { background: rgba(14,19,28,.82); color: #fff; border-color: rgba(255,255,255,.28); }
    /* send-a-photo modal */
    .photo-modal { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; background: rgba(7,10,18,.62); backdrop-filter: blur(3px); padding: 1.25rem; }
    .photo-modal.show { display: flex; }
    .photo-box { position: relative; background: #fff; border-radius: var(--r-xl); padding: 2.4rem 2rem 2rem; max-width: 26rem; width: 100%; text-align: center; box-shadow: var(--sh-lg); }
    .photo-close { position: absolute; top: .85rem; right: 1rem; background: none; border: 0; font-size: 1.4rem; line-height: 1; color: var(--muted); cursor: pointer; }
    .photo-close:hover { color: var(--ink); }
    .photo-ic { width: 58px; height: 58px; border-radius: 16px; background: rgba(0,212,170,.14); color: var(--teal-dark); display: grid; place-items: center; margin: 0 auto 1rem; }
    .photo-box h3 { font-size: 1.35rem; font-weight: 800; color: var(--navy); margin-bottom: .6rem; letter-spacing: -.01em; }
    .photo-box p { color: var(--muted); font-size: 1rem; line-height: 1.5; margin-bottom: 1.25rem; }
    .photo-num { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; background: var(--teal); color: #06241d; font-weight: 800; font-size: 1.1rem; padding: .9rem 1.6rem; border-radius: var(--r-full); text-decoration: none; box-shadow: var(--sh-md); }
    .photo-num:hover { background: var(--teal-dark); color: #fff; transform: translateY(-2px); }
    .photo-sub { font-size: .82rem !important; color: var(--muted); margin: 1rem 0 0 !important; }
    .photo-example { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin: 0 0 1.1rem; }
    .photo-example figure { margin: 0; position: relative; border-radius: 10px; overflow: hidden; box-shadow: 0 6px 18px rgba(7,10,18,.15); }
    .photo-example img { width: 100%; height: 110px; object-fit: cover; display: block; }
    .photo-example figcaption { position: absolute; top: .35rem; left: .4rem; background: rgba(7,10,18,.74); color: #fff; font-size: .68rem; font-weight: 700; padding: .15rem .45rem; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase; }
    .photo-example .ex-after figcaption { background: var(--teal); color: #06241d; }
    .photo-example .ex-price { position: absolute; bottom: .4rem; right: .4rem; background: rgba(7,10,18,.86); color: #fff; font-size: .82rem; font-weight: 800; padding: .22rem .55rem; border-radius: 6px; letter-spacing: .01em; box-shadow: 0 2px 8px rgba(0,0,0,.35); }
    .photo-example-label { font-size: .72rem !important; color: var(--muted); margin: 0 0 .55rem !important; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
    .photo-example-combined { position: relative; border-radius: 10px; overflow: hidden; box-shadow: 0 6px 18px rgba(7,10,18,.15); margin: 0 0 1.1rem; }
    .photo-example-combined img { width: 100%; display: block; }
    .ex-lbl { position: absolute; top: .45rem; font-size: .68rem; font-weight: 700; padding: .15rem .5rem; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase; }
    .ex-lbl-l { left: .5rem; background: rgba(7,10,18,.74); color: #fff; }
    .ex-lbl-r { left: 50%; margin-left: .5rem; background: var(--teal); color: #06241d; }
    .hero-sub { font-size: 1.18rem; color: #dbe6ef; max-width: 38ch; margin-bottom: 1.9rem; text-shadow: 0 1px 10px rgba(0,0,0,.6); }
    .hero-actions { display: grid; gap: .7rem; margin-bottom: 1rem; max-width: 524px; }
    .hero-actions-3 { grid-template-columns: 1fr; grid-template-areas: none; }
    .hero-actions .btn { width: 100%; justify-content: flex-start; padding: .85rem 1.2rem; gap: .7rem; }
    .hero-actions .btn-hero-primary { padding: 1.1rem 1.4rem; }
    .btn-stack { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; text-align: left; }
    .btn-main { font-weight: 800; font-size: 1.04rem; white-space: nowrap; }
    .btn-hero-primary .btn-main { font-size: 1.15rem; }
    .btn-sub { font-size: .76rem; font-weight: 500; opacity: .82; margin-top: .15rem; }
    .btn-hero-primary .btn-sub { opacity: .9; }
    /* Treatment A (approved): mini before/after auto-sweep chip on the photo CTA. Teases the AI smart-preview the modal delivers. */
    #photoBtn { position: relative; padding-right: 8.4rem; }
    .cta-ba { position: absolute; right: .7rem; top: 50%; transform: translateY(-50%); width: 122px; height: 60px; border-radius: 9px; overflow: hidden; border: 1.5px solid rgba(255,255,255,.6); box-shadow: 0 3px 11px rgba(7,10,18,.45); }
    .cta-ba img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .cta-ba .cta-ba-tag { position: absolute; right: 4px; bottom: 3px; font-size: 8px; font-weight: 800; color: #06241d; background: var(--teal); padding: 0 4px; border-radius: 3px; letter-spacing: .04em; }
    @media (max-width: 560px) { .hero-actions-3 { grid-template-columns: 1fr; grid-template-areas: "primary" "sec1" "sec2"; } }
    .btn { display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; border-radius: var(--r-full); cursor: pointer; transition: transform .12s, background .2s, box-shadow .2s, border-color .2s; border: 2px solid transparent; }
    .btn-lg { font-size: 1.08rem; padding: .95rem 1.7rem; }
    .btn-primary { background: var(--teal); color: #06241d; box-shadow: var(--sh-md); }
    .btn-primary:hover { background: var(--teal-dark); color: #04211a; transform: translateY(-2px); box-shadow: var(--sh-lg); }
    .btn-ghost { background: #fff; color: var(--navy); border-color: var(--teal); box-shadow: var(--sh-sm); }
    .btn-ghost:hover { background: var(--teal); color: var(--navy); border-color: var(--teal); }
    .btn-ghost:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-2px); }
    .hero-reassure { font-size: .92rem; color: #cdd9e4; display: flex; align-items: center; gap: .45rem; text-shadow: 0 1px 8px rgba(0,0,0,.6); }
    .hero-reassure b { color: #fff; font-weight: 700; }

    /* floating stat card, anchored to the banner */
    .float-stat { display: inline-flex; margin-top: 1.4rem; background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.5); border-radius: var(--r-lg); padding: .85rem 1.1rem; box-shadow: var(--sh-lg); align-items: center; gap: .7rem; backdrop-filter: blur(4px); }
    .float-stat .ic { width: 38px; height: 38px; border-radius: 11px; background: rgba(0,212,170,.14); display: grid; place-items: center; color: var(--teal-dark); flex-shrink: 0; }
    .float-stat .t1 { font-weight: 800; color: var(--navy); font-size: .98rem; line-height: 1.1; }
    .float-stat .t2 { font-size: .78rem; color: var(--muted); }

    /* ---------- TRUST STRIP ---------- */
    .trust { background: var(--navy); color: #cfe9e2; }
    .trust-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.25rem; padding: 1rem 1.25rem; max-width: 1120px; margin: 0 auto; }
    .trust-item { display: flex; align-items: center; gap: .5rem; font-size: .92rem; font-weight: 600; }
    .trust-item svg { width: 17px; height: 17px; color: var(--teal); flex-shrink: 0; }

    /* ---------- SECTIONS ---------- */
    section.band { padding: 4.5rem 0; }
    .band-soft { background: var(--bg-soft); }
    .sec-head { text-align: center; max-width: 640px; margin: 0 auto 2.75rem; }
    .sec-head .kick { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: .6rem; }
    h2 { font-size: var(--h2); font-weight: 900; letter-spacing: -.03em; color: var(--navy); line-height: 1.12; }
    .sec-head p { color: var(--muted); margin-top: .75rem; font-size: 1.05rem; }
    .lead { max-width: 760px; margin: 0 auto; }
    .lead p { color: #41505f; margin-bottom: 1.1rem; }
    .lead p:last-child { margin-bottom: 0; }
    .lead h3 { color: var(--navy); font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em; margin: 2rem 0 .6rem; }
    .lead a.inline { color: #00795f; font-weight: 700; } /* contrast: teal-dark fails on white */

    /* ---------- SERVICES (image-top light cards) ---------- */
    .svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.25rem; }
    .svc { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .15s, box-shadow .2s, border-color .2s; display: flex; flex-direction: column; }
    .svc:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: rgba(0,212,170,.4); }
    .svc img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
    .svc-content { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
    .svc h3 { font-size: 1.18rem; font-weight: 800; color: var(--navy); margin-bottom: .4rem; letter-spacing: -.01em; }
    .svc p { color: var(--muted); font-size: .96rem; margin-bottom: .9rem; flex: 1; }
    .svc .more { color: #00795f; font-weight: 700; font-size: .92rem; display: inline-flex; align-items: center; gap: .3rem; } /* contrast: teal-dark fails on white */
    .svc:hover .more { gap: .55rem; }

    /* ---------- BEFORE / AFTER ---------- */
    .ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 900px; margin: 0 auto; }
    .ba-card { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-md); background: #fff; }
    .ba-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
    .ba-tag { position: absolute; top: .75rem; left: .75rem; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .75rem; border-radius: var(--r-full); }
    .ba-tag.before { background: rgba(14,19,28,.82); color: #fff; }
    .ba-tag.after { background: var(--teal); color: #06241d; }
    .ba-note { text-align: center; margin-top: 1.25rem; font-size: .85rem; color: var(--muted); }

    /* ---------- BEFORE/AFTER INTERACTIVE (drag slider) ---------- */
    .ba2 { position: relative; width: 100%; max-width: 760px; margin: 0 auto; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-md); background: var(--bg-soft); aspect-ratio: 4/3; user-select: none; -webkit-user-select: none; touch-action: pan-y; }
    .ba2 img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; -webkit-user-drag: none; }
    .ba2 .ba2-before { z-index: 1; }
    .ba2 .ba2-after { z-index: 2; clip-path: inset(0 0 0 var(--ba2-pos, 50%)); }
    .ba2 .ba2-label { position: absolute; top: .75rem; z-index: 3; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .75rem; border-radius: var(--r-full); pointer-events: none; }
    .ba2 .ba2-label.before { left: .75rem; background: rgba(14,19,28,.82); color: #fff; }
    .ba2 .ba2-label.after { right: .75rem; background: var(--teal); color: #06241d; }
    .ba2 .ba2-illus { position: absolute; bottom: .7rem; right: .7rem; z-index: 3; background: rgba(14,19,28,.72); color: #e9eef3; font-size: .62rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: .24rem .6rem; border-radius: var(--r-full); pointer-events: none; }
    /* hero already states "Illustrative example" in .hero-ba-note, so the standalone pill is redundant here and was overlapping that text */
    .ba2-hero .ba2-illus { display: none; }
    /* hero variant: slider fills the hero media slot, dominant above the fold */
    .ba2.ba2-hero { max-width: none; width: 100%; aspect-ratio: 16/11; border-radius: var(--r-xl); box-shadow: var(--sh-lg); }
    .ba2.ba2-hero img { object-position: center; }
    /* drag hint pinned to the slider, on the clean (right) side away from the copy */
    .hero-ba-note { position: absolute; right: 1rem; bottom: 1rem; z-index: 6; margin: 0; max-width: 19rem; text-align: right; font-size: .76rem; color: #eaf1f7; text-shadow: 0 1px 6px rgba(0,0,0,.7); pointer-events: none; }
    @media (max-width: 900px) { .hero-ba-note { left: 1rem; right: 1rem; max-width: none; text-align: center; bottom: .75rem; } }
    .ba2[data-ba2="drag"] { cursor: ew-resize; }
    .ba2[data-ba2="drag"] .ba2-handle { position: absolute; top: 0; bottom: 0; z-index: 4; left: var(--ba2-pos, 50%); width: 0; transform: translateX(-50%); pointer-events: none; }
    .ba2[data-ba2="drag"] .ba2-handle::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; transform: translateX(-50%); background: var(--teal); box-shadow: 0 0 0 1px rgba(255,255,255,.5); }
    .ba2[data-ba2="drag"] .ba2-grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--teal); border: 3px solid #fff; box-shadow: 0 3px 10px rgba(14,19,28,.3); display: grid; place-items: center; pointer-events: auto; cursor: ew-resize; outline: none; }
    .ba2[data-ba2="drag"] .ba2-grip:focus-visible { box-shadow: 0 0 0 4px rgba(0,212,170,.4), 0 3px 10px rgba(14,19,28,.3); }
    .ba2[data-ba2="drag"] .ba2-grip svg { width: 22px; height: 22px; color: #06241d; }
    /* intro auto-demo: smooth tween while animating, instant while user drags */
    .ba2.ba2-anim .ba2-after { transition: clip-path var(--ba2-dur, .6s) cubic-bezier(.45,.05,.3,1); }
    .ba2.ba2-anim .ba2-handle { transition: left var(--ba2-dur, .6s) cubic-bezier(.45,.05,.3,1); }
    .ba2.ba2-flash .ba2-grip { animation: ba2flash .28s ease-in-out 3; }
    @keyframes ba2flash {
      0%, 100% { transform: translate(-50%,-50%) scale(1); box-shadow: 0 3px 10px rgba(14,19,28,.3); }
      50% { transform: translate(-50%,-50%) scale(1.28); box-shadow: 0 0 0 10px rgba(0,212,170,.28), 0 3px 14px rgba(14,19,28,.35); }
    }

    /* ---------- HOW IT WORKS ---------- */
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 980px; margin: 0 auto; }
    .step { text-align: center; padding: 1.5rem 1rem; }
    .step .num { width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: var(--r-full); background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #06241d; font-weight: 900; font-size: 1.5rem; display: grid; place-items: center; box-shadow: var(--sh-md); }
    .step h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: .4rem; }
    .step p { color: var(--muted); font-size: .96rem; }

    /* ---------- WHY US ---------- */
    .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
    .why { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--teal); border-radius: var(--r-md); padding: 1.4rem 1.5rem; }
    .why h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: .4rem; }
    .why p { color: var(--muted); font-size: .96rem; }
    .guarantee { max-width: 760px; margin: 2.25rem auto 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem 1.75rem; display: flex; gap: 1.25rem; align-items: center; box-shadow: var(--sh-sm); }
    .guarantee .seal { width: 60px; height: 60px; border-radius: var(--r-full); background: rgba(212,165,0,.12); border: 2px solid var(--gold); color: var(--gold); display: grid; place-items: center; flex-shrink: 0; }
    .guarantee .seal svg { width: 30px; height: 30px; }
    .guarantee h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: .25rem; }
    .guarantee p { color: var(--muted); font-size: .96rem; }

    /* ---------- COMPARISON TABLE ---------- */
    .cmp-wrap { max-width: 820px; margin: 0 auto; overflow-x: auto; }
    .cmp { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); font-size: .96rem; }
    .cmp th, .cmp td { padding: .9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
    .cmp thead th { background: var(--bg-cool); color: var(--navy); font-weight: 800; font-size: .9rem; letter-spacing: -.01em; }
    .cmp thead th.col-us { background: rgba(0,212,170,.12); color: var(--teal-dark); }
    .cmp tbody th { font-weight: 700; color: var(--navy); width: 34%; }
    .cmp td.us { color: var(--ink); font-weight: 600; }
    .cmp td.them { color: var(--muted); }
    .cmp tr:last-child th, .cmp tr:last-child td { border-bottom: 0; }
    .cmp .ck { color: var(--teal-dark); font-weight: 800; }
    .cmp .xm { color: var(--mark-fail); font-weight: 800; }
    @media (max-width: 560px) { .cmp th, .cmp td { padding: .7rem .65rem; font-size: .88rem; } }

    /* ---------- FAQ ---------- */
    .faq { max-width: 760px; margin: 0 auto; }
    details { border: 1px solid var(--line); border-radius: var(--r-md); padding: 0 1.25rem; margin-bottom: .75rem; background: #fff; transition: border-color .2s, box-shadow .2s; }
    details[open] { border-color: rgba(0,212,170,.45); box-shadow: var(--sh-sm); }
    summary { font-weight: 700; color: var(--navy); cursor: pointer; font-size: 1.03rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 0; }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: "+"; font-size: 1.5rem; color: var(--teal-dark); flex-shrink: 0; font-weight: 400; line-height: 1; transition: transform .2s; }
    details[open] summary::after { content: "\2013"; }
    .faq-a { color: #41505f; font-size: .98rem; padding: 0 0 1.2rem; }

    /* ---------- FINAL CTA ---------- */
    .final { background: linear-gradient(135deg, var(--navy), var(--charcoal)); color: #fff; text-align: center; }
    .final h2 { color: #fff; }
    .final p { color: #aebfcf; max-width: 540px; margin: .9rem auto 2rem; font-size: 1.08rem; }
    .final .phone-big { font-family: 'JetBrains Mono', monospace; font-size: clamp(1.9rem, 5vw, 2.9rem); font-weight: 700; color: var(--teal); letter-spacing: -.01em; display: inline-block; margin-bottom: 1.5rem; }
    .final .phone-big:hover { color: var(--cyan); }
    .final .btn-ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.25); }
    .final .btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

    /* ---------- SECTION H2 SPACING ---------- */
    .h2-section { margin-bottom: 1rem; }

    /* ---------- FOOTER ---------- */
    footer { background: var(--navy); color: #8aa0b4; padding: 2.75rem 1.25rem; }
    .foot-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
    .foot-inner .brand { color: #fff; margin-bottom: .75rem; }
    .foot-inner .brand span { color: var(--teal); }
    .foot-blurb { font-size: .92rem; color: #8aa0b4; max-width: 32ch; }
    .foot-col h4 { color: #fff; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .75rem; }
    .foot-col a, .foot-col p { display: block; color: #8aa0b4; font-size: .94rem; margin-bottom: .45rem; }
    .foot-col a:hover { color: var(--teal); }
    .foot-phone { color: var(--teal) !important; font-weight: 800; font-size: 1.05rem; }
    .foot-bottom { max-width: 1120px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); text-align: center; font-size: .85rem; color: #6c8197; }

    /* ---------- ESTIMATE CALCULATOR ---------- */
    .calc-card { max-width: 660px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 2.25rem; box-shadow: var(--sh-lg); }
    .calc-step { font-weight: 800; color: var(--navy); font-size: 1rem; margin-bottom: .85rem; letter-spacing: -.01em; }
    .calc-step .n { display: inline-grid; place-items: center; width: 23px; height: 23px; border-radius: var(--r-full); background: var(--teal); color: #06241d; font-size: .82rem; font-weight: 900; margin-right: .5rem; }
    .surf-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(135px, 1fr)); gap: .7rem; margin-bottom: 1.9rem; }
    .surf-card { display: flex; flex-direction: column; align-items: center; gap: .35rem; padding: .95rem .6rem; border: 1.5px solid var(--line); border-radius: var(--r-md); cursor: pointer; text-align: center; background: var(--bg-soft); transition: border-color .15s, background .15s, transform .12s; }
    .surf-card:hover { border-color: var(--teal); transform: translateY(-2px); }
    .surf-card.active { border-color: var(--teal); background: rgba(0,212,170,.09); box-shadow: 0 0 0 3px rgba(0,212,170,.12); }
    .surf-card .si { width: 30px; height: 30px; color: var(--teal-dark); }
    .surf-card .sl { font-size: .88rem; font-weight: 700; color: var(--navy); line-height: 1.15; }
    .surf-card .sf { font-size: .76rem; color: var(--muted); font-weight: 600; }
    .calc-range-row { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.9rem; }
    .calc-range-row input[type=range] { flex: 1; accent-color: var(--teal-dark); }
    .calc-range-row input[type=number] { width: 86px; text-align: center; padding: .55rem; }
    .calc-range-row .unit { color: var(--muted); font-weight: 600; white-space: nowrap; }
    .calc-mods { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.8rem; }
    .calc-mods label { display: flex; align-items: center; gap: .6rem; cursor: pointer; font-weight: 500; color: var(--ink); margin-bottom: 0; font-size: .96rem; }
    .calc-mods input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--teal-dark); flex-shrink: 0; }
    .calc-out { text-align: center; padding: 1.4rem 0 .4rem; border-top: 1px solid var(--line); }
    .calc-out .lbl { color: var(--muted); font-size: .9rem; margin-bottom: .25rem; }
    .calc-out .price { font-size: clamp(2rem, 6vw, 2.7rem); font-weight: 900; color: var(--teal-dark); letter-spacing: -.02em; line-height: 1.05; }
    .calc-out .disc { color: var(--muted); font-size: .84rem; margin-top: .5rem; max-width: 46ch; margin-left: auto; margin-right: auto; }
    .calc-cta { display: flex; flex-direction: column; align-items: center; gap: .75rem; margin-top: 1.5rem; }

    /* ---------- STICKY MOBILE CALL BAR ---------- */
    #rnr-callbar { display: none; }
    @media (max-width: 768px) {
      #rnr-callbar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 9998;
        align-items: center; justify-content: center; gap: .5rem; height: 58px;
        background: var(--teal); color: #06241d; font-weight: 800; font-size: 1.08rem;
        text-decoration: none; letter-spacing: .01em; box-shadow: 0 -3px 16px rgba(14,19,28,.28); }
      #rnr-callbar svg { width: 19px; height: 19px; }
      body { padding-bottom: 58px; }
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 900px) {
      .hero-banner { min-height: clamp(480px, 72vh, 600px); }
      .hero-content { padding: 2rem 1.25rem 2.25rem; }
      /* strengthen the bottom scrim on narrow viewports where copy sits lower */
      .hero-scrim { background:
        linear-gradient(0deg, rgba(8,11,16,.88) 0%, rgba(8,11,16,.55) 34%, rgba(8,11,16,.12) 64%, rgba(8,11,16,0) 100%); }
      .hero-content { display: flex; align-items: flex-end; min-height: inherit; }
      .hero-copy { max-width: 100%; }
      .hero-sub { max-width: 50ch; margin-bottom: 1.3rem; }
      .ba2.ba2-hero { aspect-ratio: auto; }
      .steps { grid-template-columns: 1fr; max-width: 420px; }
      .foot-inner { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 560px) {
      body { font-size: 16px; }
      .nav-cta { display: none; }
      .nav-phone-label { display: inline; }
      .hero-banner { min-height: 88vh; }
      .hero h1 { margin-bottom: .7rem; }
      .hero-sub { font-size: 1.04rem; margin-bottom: 1.1rem; }
      .hero-actions { margin-bottom: 1rem; gap: .6rem; }
      .hero-actions .btn-lg { font-size: 1rem; padding: .85rem 1.3rem; }
      .float-stat { margin-top: 1rem; }
      .ba-grid { grid-template-columns: 1fr; }
      .foot-inner { grid-template-columns: 1fr; }
      .guarantee { flex-direction: column; text-align: center; }
      section.band { padding: 3.25rem 0; }
    }
/* ===== Canonical site header (white bar, dark text, teal accent) ===== */
nav.canon-nav{position:sticky;top:0;z-index:1000;background:#ffffff !important;
  border-bottom:1px solid #e2e8ee !important;box-shadow:0 1px 3px rgba(14,19,28,.05);}
nav.canon-nav *{box-sizing:border-box;}
.canon-inner{max-width:1180px;margin:0 auto;display:flex;align-items:center;
  gap:.9rem;padding:.7rem 1.25rem;}
.canon-brand{display:flex;align-items:center;gap:.5rem;font-weight:800;font-size:1.16rem;
  letter-spacing:-.02em;color:#1f2733 !important;white-space:nowrap;text-decoration:none;}
.canon-brand:hover{text-decoration:none;}
.canon-brand .canon-dot{width:30px;height:30px;border-radius:9px;flex-shrink:0;
  background:linear-gradient(135deg,#00d4aa,#4dd0e1);display:grid;place-items:center;
  box-shadow:0 1px 3px rgba(14,19,28,.18);}
.canon-brand .canon-dot svg{width:17px;height:17px;}
.canon-brand b{font-weight:800;color:#1f2733 !important;}
.canon-brand span{color:#00b894 !important;}
.canon-links{display:flex;align-items:center;gap:.15rem;list-style:none;margin:0;padding:0;
  flex-wrap:nowrap;}
.canon-links>li{position:relative;}
.canon-links>li>a,.canon-drop-btn{display:inline-flex;align-items:center;gap:.25rem;
  color:#1f2733 !important;font-weight:600;font-size:.93rem;line-height:1;
  padding:.55rem .7rem;border-radius:8px;text-decoration:none;white-space:nowrap;
  background:none;border:0;cursor:pointer;font-family:inherit;transition:background .15s,color .15s;}
.canon-links>li>a:hover,.canon-links>li>a.active,.canon-drop-btn:hover{
  background:#00d4aa !important;color:#06241d !important;text-decoration:none;}
.canon-drop-btn .canon-caret{width:11px;height:11px;transition:transform .2s;}
.canon-drop{position:relative;}
.canon-drop-panel{position:absolute;top:calc(100% + 6px);left:0;min-width:188px;
  background:#ffffff;border:1px solid #e2e8ee;border-radius:11px;
  box-shadow:0 14px 38px rgba(14,19,28,.16);padding:.4rem;
  opacity:0;visibility:hidden;transform:translateY(-6px);transition:opacity .16s,transform .16s,visibility .16s;
  z-index:1100;}
.canon-drop:hover .canon-drop-panel,.canon-drop:focus-within .canon-drop-panel,
.canon-drop.open .canon-drop-panel{opacity:1;visibility:visible;transform:translateY(0);}
.canon-drop:hover .canon-caret,.canon-drop.open .canon-caret{transform:rotate(180deg);}
.canon-drop-panel a{display:block;color:#1f2733 !important;font-weight:600;font-size:.92rem;
  padding:.55rem .75rem;border-radius:7px;text-decoration:none;white-space:nowrap;}
.canon-drop-panel a:hover{background:#00d4aa !important;color:#06241d !important;text-decoration:none;}
.canon-right{display:flex;align-items:center;gap:.9rem;margin-left:auto;}
.canon-phone{font-weight:800;font-size:1rem;color:#1f2733 !important;white-space:nowrap;text-decoration:none;}
.canon-phone:hover{color:#00b894 !important;text-decoration:none;}
.canon-cta{background:#00d4aa !important;color:#06241d !important;font-weight:800;font-size:.93rem;
  padding:.6rem 1.1rem;border-radius:999px;white-space:nowrap;text-decoration:none;
  box-shadow:0 1px 3px rgba(14,19,28,.12);transition:background .18s,transform .12s,box-shadow .18s;}
.canon-cta:hover{background:#00b894 !important;color:#fff !important;transform:translateY(-1px);
  box-shadow:0 8px 20px rgba(14,19,28,.14);text-decoration:none;}
.canon-burger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:8px;
  background:none;border:0;margin-left:.25rem;}
.canon-burger span{display:block;width:24px;height:2px;background:#1f2733;border-radius:2px;transition:.25s;}
@media (max-width:1240px){
  .canon-links{display:none;position:absolute;top:100%;left:0;right:0;flex-direction:column;
    align-items:stretch;background:#fff;border-bottom:1px solid #e2e8ee;
    box-shadow:0 12px 28px rgba(14,19,28,.12);padding:.5rem .75rem .9rem;gap:.1rem;}
  .canon-links.open{display:flex;}
  .canon-links>li>a,.canon-drop-btn{width:100%;font-size:1rem;padding:.7rem .8rem;}
  .canon-drop-panel{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;
    border:0;border-left:2px solid #e2e8ee;border-radius:0;margin:.1rem 0 .3rem .8rem;padding:.1rem 0;}
  .canon-drop-panel a{padding:.55rem .8rem;}
  .canon-burger{display:flex;}
  .canon-phone{display:none;}
}
@media (max-width:480px){ .canon-cta{display:none;} }
/* Contrast: dark text ONLY on light backgrounds. Light text explicitly on dark sections. */
:root{ --ink:#1f2733 !important; --body-text:#1f2733 !important; }
body{ color:#1f2733; }
/* light-background content = dark readable text */
.body-copy,.body-copy p,.body-copy li,.lead,.lead p,.container p,.container li,
.step-text,.benefit-card p,.faq-answer,.faq-a,.svc p,.svc li,
.section p,.section li,.content p,.content li{ color:#1f2733; }
.benefit-card h3,.body-copy h2,.body-copy h3,.section-title{ color:#0e131c; }
/* DARK navy sections -> light text (hero, final CTA, footer, dark cards, services-links band) */
.hero,.hero p,.hero li,.hero h1,.hero h2,.hero h3,
.final,.final p,.final li,.final h2,.final h3,
footer,footer p,footer a,footer li,footer span,footer h3,
.rnr-cta-card,.rnr-cta-card p,.rnr-cta-card h3,.rnr-cta-card li,
.services-links,.services-links p,.services-links li,.services-links .section-title,
.trust-bar,.trust-bar p,.trust-bar li,
.cta-band,.cta-band p,.cta-band li,
.dark,.dark p,.dark li{ color:#e8f0f7 !important; }
.hero h1 .hl,.rnr-cta-card h3,.final h2{ color:#fff !important; }
/* b15 hero 2-tone (Nate 2026-07-01): brand line stays accent ALWAYS; tagline starts accent,
   sweeps to white with the image transition and STAYS white. Resting design = 2-tone. */
.hero h1 .hl-stay, .hero h1 .hl-stay.rv-done { color: var(--teal) !important; }
.hero h1 { font-size: clamp(2rem, 4.2vw, 3.15rem); }
.hero-copy { max-width: 42rem; }
footer a:hover,.hero a:not(.btn){ color:var(--link-hover) !important; }
/* primary hero buttons keep their dark-on-teal label (was overridden to light = low contrast) */
.hero a.btn-primary, .hero a.btn-primary .btn-main, .hero a.btn-primary .btn-sub { color:#06241d !important; }

/* ===================== SUB-PAGE ADDITIONS (shared) ===================== */
/* page header band */
.page-head { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy), var(--charcoal)); color: #fff; padding: 4rem 0 3.5rem; }
.page-head .ph-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .32; }
.page-head::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,11,16,.82) 0%, rgba(8,11,16,.55) 45%, rgba(8,11,16,.25) 100%); }
.page-head .wrap { position: relative; z-index: 2; }
.page-head .kick { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: .6rem; }
.page-head h1 { font-size: clamp(2rem, 4.2vw, 3.05rem); font-weight: 900; line-height: 1.08; letter-spacing: -.03em; color: #fff; max-width: 24ch; text-shadow: 0 2px 14px rgba(0,0,0,.45); }
.page-head h1 .hl { color: var(--teal); }
.page-head .sub { font-size: 1.13rem; color: #dbe6ef; max-width: 60ch; margin: 1rem 0 1.6rem; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.page-head-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* small shared bits used by the guide pages */
.tag { display: inline-block; background: rgba(0,212,170,.12); color: #00795f; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: .2rem .6rem; border-radius: var(--r-full); margin-bottom: .6rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.25rem; }
.tbl-note { text-align: center; color: var(--muted); font-size: .92rem; max-width: 680px; margin: 1.25rem auto 0; }
.calc-pointer { max-width: 720px; margin: 0 auto; text-align: center; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 2.25rem 1.75rem; }
.calc-pointer h3 { font-size: 1.35rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem; }
.calc-pointer p { color: var(--muted); }
.range { font-weight: 800; color: #00795f; white-space: nowrap; }

/* service-page compat (garage / commercial / basement bodies) */
.container, .section-inner { max-width: 860px; margin: 0 auto; padding: 0 1.25rem; }
.container-wide, .section-inner-wide { max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }
section.pad, main .section { padding: 4.5rem 0; }
.section-label { display: block; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-dark); margin: 2.4rem 0 .35rem; }
.section-label:first-child { margin-top: 0; }
.section-title { font-size: var(--h2); font-weight: 900; letter-spacing: -.03em; color: var(--navy); line-height: 1.12; margin-bottom: 1.25rem; }
.body-copy h2 { margin: .2rem 0 .9rem; font-size: clamp(1.45rem, 2.6vw, 1.95rem); }
.body-copy h3 { color: var(--navy); font-size: 1.28rem; font-weight: 800; letter-spacing: -.01em; margin: 1.9rem 0 .6rem; }
.body-copy p { color: #41505f; margin-bottom: 1.1rem; }
.body-copy a { color: #00795f; font-weight: 700; }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: .9rem; margin-top: 1.5rem; }
.industry-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1rem .95rem; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: .6rem; box-shadow: var(--sh-sm); }
.industry-icon { font-size: 1.25rem; }
.highlight-box { background: rgba(0,212,170,.08); border-left: 4px solid var(--teal); border-radius: var(--r-md); padding: 1.1rem 1.3rem; margin: 1.4rem 0; }
.highlight-box p { color: #41505f; margin: 0; }
.use-case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; margin: 1.4rem 0 2rem; }
.use-case-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--teal); border-radius: var(--r-md); padding: 1.2rem 1.3rem; }
.use-case-card h4 { color: var(--navy); font-weight: 800; margin-bottom: .35rem; }
.use-case-card p { color: var(--muted); font-size: .95rem; margin: 0; }
.service-cards, .crosslinks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.1rem; margin-top: 1.5rem; }
.service-card, .crosslink-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem 1.5rem; transition: transform .15s, box-shadow .2s, border-color .2s; }
.service-card:hover, .crosslink-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: rgba(0,212,170,.4); }
.service-card h3, .crosslink-card h3 { color: var(--navy); font-size: 1.1rem; font-weight: 800; margin-bottom: .4rem; }
.service-card p, .crosslink-card p { color: var(--muted); font-size: .95rem; margin-bottom: .7rem; }
.service-card a, .crosslink-card a { color: #00795f; font-weight: 700; font-size: .93rem; }
.crosslink-card > span { font-size: 1.5rem; display: block; margin-bottom: .4rem; }
.crosslinks-heading, .faq-heading { font-size: var(--h2); font-weight: 900; letter-spacing: -.03em; color: var(--navy); line-height: 1.12; margin-bottom: 1.5rem; text-align: center; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-answer { color: #41505f; font-size: .98rem; padding: 0 0 1.2rem; }

/* photo band on service pages */
.page-photo { margin: 0 auto 2rem; max-width: 860px; padding: 0 1.25rem; }
.page-photo img { width: 100%; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--sh-md); display: block; }
.page-photo figcaption { text-align: center; color: var(--muted); font-size: .85rem; margin-top: .6rem; }

/* call/text CTA card (replaces unwired lead forms) */
.cta-card { max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 2.25rem 2rem; text-align: center; box-shadow: var(--sh-md); }
.cta-card h3 { font-size: 1.35rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem; }
.cta-card p { color: var(--muted); margin-bottom: 1.25rem; }
.cta-card .btn-col { display: flex; flex-direction: column; gap: .75rem; align-items: center; }

/* 404 helpers */
.err-code { font-family: 'JetBrains Mono', monospace; font-size: clamp(4rem, 12vw, 7rem); font-weight: 700; color: var(--teal); line-height: 1; }
.recover { padding: 4.5rem 0; text-align: center; }
.recover-head h1 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 900; color: var(--navy); margin: .5rem 0 1rem; }
.recover-head p { color: var(--muted); max-width: 46ch; margin: 0 auto 1.5rem; }
.err-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-bottom: 2.5rem; }
.recover-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; max-width: 880px; margin: 0 auto; text-align: left; }

/* narrow-phone fix: keep old-nav phone inside 375px viewports */
@media (max-width: 430px) {
  .nav-phone-label { display: none; }
  .nav-phone { font-size: .95rem; }
}
