/* ==========================================================================
   AMAZING RV SOLUTIONS — STYLESHEET
   Clean white background, logo-blue headers, mobile-first.
   ========================================================================== */

:root {
  /* Brand blues — sampled directly from the Amazing RV Solutions logo */
  --navy:        #13273F;   /* logo wordmark navy */
  --navy-deep:   #0B1826;
  --navy-soft:   #21456B;
  --blue:        #005493;   /* logo road blue */
  --blue-hover:  #003E6D;
  --blue-light:  #E3EEF7;
  --blue-tint:   #F2F7FC;

  --accent:      #E8A33D;   /* warm CTA accent */
  --accent-dark: #C9861F;

  --ink:         #13273F;
  --body:        #45566B;
  --muted:       #5B6B82;   /* 4.9:1 on white — was #71829A at 3.92:1 (failed AA) */
  --line:        #E0E7EF;
  --white:       #FFFFFF;

  --shadow-sm: 0 1px 3px rgba(19,39,63,.07), 0 1px 2px rgba(19,39,63,.04);
  --shadow:    0 4px 16px rgba(19,39,63,.08);
  --shadow-lg: 0 12px 40px rgba(19,39,63,.12);

  --radius:    10px;
  --radius-lg: 16px;

  --wrap: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.35rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); }
h4 { font-size: 1.08rem; }
p  { margin: 0 0 1.15em; }
ul, ol { margin: 0 0 1.15em; padding-left: 1.3em; }
li { margin-bottom: .5em; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tint { background: var(--blue-tint); }
.section--navy { background: var(--navy); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p  { color: #C7D5E6; }
.section--tight { padding: 56px 0; }

.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head p { font-size: 1.09rem; color: var(--body); margin-bottom: 0; }
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: #7FB0E0; }

.lead { font-size: 1.16rem; color: var(--body); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 1.02rem;
  font-weight: 600;
  font-family: inherit;
  text-align: center;
  cursor: pointer;
  transition: all .18s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--sm svg { width: 16px; height: 16px; }
.btn--primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--primary:hover { background: var(--navy-deep); border-color: var(--navy-deep); color:#fff; box-shadow: var(--shadow); }
.btn--accent { background: var(--accent); color: var(--navy-deep); border-color: var(--accent); }
.btn--accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); background: var(--blue-tint); color: var(--navy); }
.btn--white { background: #fff; color: var(--navy); border-color: #fff; }
.btn--white:hover { background: var(--blue-light); border-color: var(--blue-light); color: var(--navy); }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; color:#fff; }
.btn--sm { padding: 11px 20px; font-size: .93rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy);
  color: #C7D5E6;
  font-size: .88rem;
  padding: 9px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 600; display: inline-block; padding: 5px 2px; }
.topbar-items { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 15px; height: 15px; flex: none; opacity: .85; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.brand:hover { text-decoration: none; }
.brand-mark { height: 52px; width: auto; flex: none; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.brand-name { font-size: 1.16rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.brand-tag { font-size: .72rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 1px; list-style: none; margin: 0; padding: 0; }
.nav-links li { margin: 0; }
.nav-links a {
  display: block;
  padding: 9px 11px;
  border-radius: 7px;
  font-size: .93rem;
  white-space: nowrap;
  font-weight: 600;
  color: var(--ink);
  transition: all .15s ease;
}
.nav-links a:hover { background: var(--blue-tint); color: var(--navy); text-decoration: none; }
.nav-links a.is-active { color: var(--blue); background: var(--blue-light); }
.nav-cta { margin-left: 8px; }
.nav-call { display: none; }   /* mobile-menu only — desktop has the top bar */

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 11px;
  cursor: pointer;
  color: var(--navy);
}
.nav-toggle svg { width: 22px; height: 22px; display: block; }

/* ---------- Hero (photo backdrop) ---------- */
.hero {
  position: relative;
  background-color: var(--navy);
  background-image:
    linear-gradient(100deg, rgba(10,22,36,.84) 0%, rgba(13,29,48,.58) 44%, rgba(19,39,63,.26) 100%),
    image-set(url("../img/hero.webp") type("image/webp"),
              url("../img/hero.jpg")  type("image/jpeg"));
  background-size: cover;
  background-position: center 52%;
  background-repeat: no-repeat;
  padding: 104px 0 96px;
  overflow: hidden;
}
.hero::after { content: none; }
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 60px; align-items: center; }

.hero h1 { color: #fff; margin-bottom: .5em; text-shadow: 0 2px 20px rgba(0,0,0,.32); }
.hero h1 .accent { color: #8FC3F0; }
.hero .eyebrow { color: #9DC8ED; }
.hero-sub {
  font-size: 1.19rem;
  color: #DEE8F2;
  max-width: 42ch;
  margin-bottom: 32px;
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.badge svg { width: 15px; height: 15px; color: var(--blue); flex: none; }
.hero .badge {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.28);
  color: #fff;
  backdrop-filter: blur(6px);
  box-shadow: none;
}
.hero .badge svg { color: #8FC3F0; }

.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); backdrop-filter: blur(6px); }
.hero .btn--ghost:hover { background: rgba(255,255,255,.18); border-color: #fff; color: #fff; }

.hero-proof { display: flex; align-items: center; gap: 12px; margin-top: 30px; font-size: .94rem; color: #C6D6E6; }
.hero-proof .stars { display: inline-flex; gap: 2px; }
.hero-proof .stars svg { width: 17px; height: 17px; color: var(--accent); }

/* Hero card (quick request) */
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
}
.hero-card h3 { margin-bottom: .35em; }
.hero-card p.small { font-size: .93rem; color: var(--muted); margin-bottom: 22px; }

.field { margin-bottom: 15px; }
.field label { display: block; font-size: .86rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: .97rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,84,147,.13);
}
.field textarea { min-height: 108px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--muted); margin: 12px 0 0; }

/* ---------- Page banner (interior pages) ---------- */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  padding: 68px 0 60px;
  text-align: center;
}
.page-banner h1 { color: #fff; margin-bottom: .4em; }
.page-banner p { color: #C7D5E6; font-size: 1.12rem; max-width: 64ch; margin: 0 auto; }
.crumbs { font-size: .85rem; color: #A8C1DA; margin-bottom: 16px; }
.crumbs a { color: #D6E3F0; display: inline-block; padding: 11px 2px; }
.crumbs span { opacity: .6; margin: 0 7px; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all .2s ease;
  display: flex;               /* lets .card-link pin to the bottom so the */
  flex-direction: column;      /* "See what's included" row lines up        */
}
.card:hover { border-color: #C9D8E9; box-shadow: var(--shadow); transform: translateY(-2px); }
.card h3 { margin-bottom: .45em; }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  width: 48px; height: 48px;
  flex: 0 0 auto;
  display: grid; place-items: center;
  background: var(--blue-light);
  border: 1px solid #D3E3F2;
  border-radius: 13px;
  margin-bottom: 18px;
}
.card-icon svg { width: 24px; height: 24px; color: var(--navy); }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;      /* don't stretch across the card */
  font-weight: 600; font-size: .94rem;
  min-height: 44px;            /* WCAG 2.5.8 target size */
  padding: 10px 2px;
  margin-top: auto;            /* pin to the bottom of the card */
}
.card-link svg { width: 15px; height: 15px; transition: transform .15s ease; }
.card-link:hover svg { transform: translateX(3px); }

.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 11px; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .45em;
  width: 18px; height: 18px;
  background: var(--blue-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23005493' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
  border-radius: 50%;
}

/* Numbered steps */
.steps, .grid { counter-reset: step; }
.steps { display: grid; gap: 22px; }
.step { position: relative; padding-left: 66px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 50%;
}
.step h3 { margin-bottom: .3em; font-size: 1.15rem; }
.step p { margin-bottom: 0; font-size: .97rem; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-num { font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -.03em; }
.stat-label { font-size: .89rem; color: #A8C0DA; font-weight: 500; }

/* ---------- Reviews carousel ---------- */
.reviews-head { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.google-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 18px; box-shadow: var(--shadow-sm);
  font-size: .93rem; font-weight: 600; color: var(--navy);
}
.google-badge .stars { display: inline-flex; gap: 1px; }
.google-badge .stars svg { width: 16px; height: 16px; color: var(--accent); }

.reviews-viewport { overflow: hidden; position: relative; padding: 8px 0 4px; }
.reviews-track { display: flex; gap: 24px; transition: transform .55s cubic-bezier(.4,0,.2,1); will-change: transform; }
.review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.review-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.review-stars svg { width: 18px; height: 18px; color: var(--accent); }
.review-text { font-size: .98rem; color: var(--body); flex: 1; margin-bottom: 20px; }
.review-more { color: var(--muted); }
.review-meta { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.review-avatar {
  width: 42px; height: 42px; flex: none;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: .95rem;
}
.review-name { font-weight: 700; color: var(--navy); font-size: .95rem; line-height: 1.3; }
.review-loc { font-size: .84rem; color: var(--muted); }

.reviews-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 34px; }
.rev-btn {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  color: var(--navy);
  transition: all .15s ease;
}
.rev-btn:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.rev-btn svg { width: 19px; height: 19px; }
.rev-dots { display: flex; gap: 8px; }
/* The dot itself stays 9px, but the hit area is padded out to 24px so it is
   actually tappable. background-clip keeps the visible dot small. */
.rev-dot {
  width: 9px; height: 9px;
  padding: 8px; background-clip: content-box;
  box-sizing: content-box;
  border-radius: 50%;
  background-color: #A9B7C7;
  border: none; cursor: pointer;
  transition: background-color .18s ease, width .18s ease;
}
.rev-dot.is-active { background-color: var(--navy); width: 26px; border-radius: 12px; }

/* ---------- Social feeds ---------- */
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.social-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.social-panel-head {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.social-icon { width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center; flex: none; color: #fff; }
.social-icon svg { width: 21px; height: 21px; }
.social-icon--tiktok { background: #010101; }
.social-icon--instagram { background: linear-gradient(45deg,#F58529,#DD2A7B,#8134AF,#515BD4); }
.social-handle { font-weight: 700; color: var(--navy); font-size: 1rem; line-height: 1.25; }
.social-plat { font-size: .84rem; color: var(--muted); }
.social-body { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.social-body p { font-size: .96rem; }
.social-embed-slot { min-height: 380px; }
/* An unfilled feed slot collapses instead of showing a placeholder. The
   previous rule printed "see SETUP-GUIDE.md" to customers via CSS content,
   which is invisible to a grep of the HTML — the "Watch on TikTok" /
   "Follow on Instagram" buttons below already carry the card on their own. */
.social-embed-slot:empty { min-height: 0; display: none; }
.social-embed-slot .tiktok-embed { margin: 0 auto; }

/* ---------- Embed slots ---------- */
.embed-slot {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.embed-slot iframe { display: block; width: 100%; border: 0; }
.embed-placeholder {
  padding: 56px 32px;
  text-align: center;
  background: var(--blue-tint);
}
.embed-placeholder h3 { margin-bottom: .5em; }
.embed-placeholder p { max-width: 52ch; margin: 0 auto 1em; font-size: .97rem; }
.embed-placeholder code {
  background: #fff; border: 1px solid var(--line); border-radius: 5px;
  padding: 2px 7px; font-size: .87em; color: var(--navy);
}

/* ---------- Fee callout ---------- */
.fee-box {
  display: flex; gap: 22px; align-items: flex-start;
  background: var(--blue-light);
  border: 1px solid #CFE0F2;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.fee-amount { font-size: 2.3rem; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -.03em; flex: none; }
.fee-amount svg { width: 44px; height: 44px; color: var(--blue); }
.fee-box h4 { margin-bottom: .35em; }
.fee-box p { margin-bottom: 0; font-size: .96rem; }

/* ---------- Area list ---------- */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.area-chip {
  display: flex; align-items: center; gap: 9px;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  transition: all .15s ease;
}
.area-chip:hover { border-color: var(--blue); background: var(--blue-tint); text-decoration: none; box-shadow: var(--shadow-sm); }
.area-chip svg { width: 15px; height: 15px; color: var(--blue); flex: none; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 0;
  background: none; border: none;
  font-family: inherit; font-size: 1.06rem; font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}
.faq-q svg { width: 20px; height: 20px; flex: none; color: var(--blue); transition: transform .2s ease; }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a-inner { padding: 0 0 22px; font-size: .99rem; }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  text-align: center;
  padding: 76px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #C7D5E6; font-size: 1.1rem; max-width: 58ch; margin: 0 auto 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #A8BDD4; padding: 66px 0 0; font-size: .94rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 46px; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: #A8BDD4; }
.site-footer a:hover { color: #fff; }
.site-footer a.btn--accent, .site-footer a.btn--accent:hover { color: var(--navy-deep); }
.site-footer a.btn--primary, .site-footer a.btn--primary:hover { color: #fff; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 10px; }
.footer-brand { display: flex; align-items: center; margin-bottom: 18px; }
.footer-brand .brand-mark { height: 66px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tag { color: #7C93AD; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; flex: none; margin-top: .3em; color: #6D93BF; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 10px;   /* WCAG 2.5.8 target size */
  display: grid; place-items: center;
  background: rgba(255,255,255,.08);
  color: #fff;
  transition: background .15s ease;
}
.footer-social a:hover { background: var(--blue); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .87rem; color: #9DB2C9;
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px 14px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(19,39,63,.1);
}
.mobile-bar .btn { flex: 1; padding: 13px 10px; font-size: .95rem; }

/* ---------- Prose (About / legal) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 1.7em; }
.prose h2:first-child { margin-top: 0; }
.prose blockquote {
  margin: 34px 0;
  padding: 24px 30px;
  border-left: 4px solid var(--blue);
  background: var(--blue-tint);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.1rem;
  color: var(--navy);
  font-style: italic;
}
.prose blockquote p:last-child { margin-bottom: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--wide-left { grid-template-columns: 1.15fr .85fr; }

.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--blue-tint);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
  padding: 24px;
  font-size: .92rem;
  border: 1px solid var(--line);
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .review-card { flex: 0 0 calc((100% - 24px) / 2); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 1080px) {
  body { font-size: 16px; }
  /* On phones the hero is far taller than the photo, so the photo fills the
     top at natural height and dissolves into solid navy behind the form. */
  .hero {
    padding: 60px 0 56px;
    background-color: var(--navy);
    background-image:
      linear-gradient(180deg,
        rgba(10,22,36,.66) 0%,
        rgba(11,24,38,.84) 28%,
        rgba(14,30,49,.93) 44%,
        rgba(17,35,57,.98) 54%,
        var(--navy) 64%,
        var(--navy) 100%),
      image-set(url("../img/hero-mobile.webp") type("image/webp"),
                url("../img/hero-mobile.jpg")  type("image/jpeg"));
    background-size: 100% 100%, 100% auto;
    background-position: center top, center top;
    background-repeat: no-repeat, no-repeat;
  }
  .section { padding: 48px 0; }
  .section--tight { padding: 36px 0; }
  .section-head { margin-bottom: 34px; }
  .topbar { display: none; }

  .nav-toggle { display: block; }
  .brand-mark { height: 46px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 12px 24px 20px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 13px 12px; font-size: 1.02rem; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; }
  .nav-call { display: block; margin: 6px 0 0; }
  .nav-call .btn { width: 100%; }
  .site-header { position: relative; }

  .grid--2, .grid--3, .split, .split--wide-left, .social-grid { grid-template-columns: 1fr; }
  .split { gap: 34px; }
  .review-card { flex: 0 0 100%; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .fee-box { flex-direction: column; gap: 12px; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 70px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .page-banner { padding: 52px 0 46px; }
}

@media (max-width: 520px) {
  .area-grid { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .mobile-bar .btn { width: auto; }
  .card { padding: 24px; }
}

@media print {
  .site-header, .topbar, .mobile-bar, .cta-band, .reviews-controls { display: none; }
}

/* ==========================================================================
   URGENT / AFTER-HOURS PATH
   A deliberately separate route for the customer who cannot wait for the
   next calendar slot. Visually distinct from the booking CTA so the two
   never compete.
   ========================================================================== */
.urgent-band {
  background: var(--navy-deep);
  color: #fff;
  border-top: 3px solid var(--accent);
}
.urgent-band h2,
.urgent-band h3,
.urgent-band h4 { color: #fff; }
.urgent-band p { color: #C3D3E5; }
.urgent-band a:not(.btn) { color: #9EC6EE; }

.urgent-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.urgent-flag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,163,61,.14);
  border: 1px solid rgba(232,163,61,.4);
  color: var(--accent);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.urgent-flag svg { width: 15px; height: 15px; }

.urgent-list { list-style: none; padding: 0; margin: 22px 0 0; }
.urgent-list li {
  position: relative; padding-left: 28px; margin-bottom: 12px; color: #C3D3E5;
}
.urgent-list li::before {
  content: ""; position: absolute; left: 0; top: .45em;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
}
.urgent-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.urgent-card .btn { width: 100%; margin-bottom: 10px; }
.urgent-card .btn:last-of-type { margin-bottom: 0; }
.urgent-hours {
  font-size: .88rem; color: #9DB4CD;
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 20px; padding-top: 18px;
}

/* ---------- Text-us button ---------- */
.btn--text {
  background: #fff; color: var(--navy); border: 1px solid var(--line);
}
.btn--text:hover { background: var(--blue-tint); color: var(--navy); }

/* ==========================================================================
   EMBED FALLBACK
   Shown only when a HighLevel iframe fails to load (ad-blockers, network).
   Prevents a silent dead end at the highest-intent moment on the site.
   ========================================================================== */
.embed-fallback {
  border: 1px solid var(--line);
  background: var(--blue-tint);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  text-align: center;
}
.embed-fallback h3 { margin-bottom: 10px; }
.embed-fallback p { max-width: 46ch; margin-left: auto; margin-right: auto; }
.embed-fallback[hidden] { display: none; }

/* ==========================================================================
   HIGHLEVEL CHAT WIDGET CLEARANCE
   The widget mounts bottom-right by default and would otherwise sit on top
   of the sticky call/book bar on phones.
   ========================================================================== */
/* Setting `bottom` on the host does NOT move the launcher — the launcher
   inside is position:fixed and resolves against the viewport. The actual
   offset is applied at runtime by liftChatWidgetAboveStickyBar() in main.js.
   What is left here is only a containing-block hint, harmless either way. */
@media (max-width: 860px) {
  chat-widget { z-index: 95; }   /* below the sticky bar (z-index 90 + stacking) */
}

/* ==========================================================================
   MOBILE BAR — three-up variant used on the booking page
   ========================================================================== */
.mobile-bar--trio .btn { font-size: .9rem; padding: 13px 6px; }
.mobile-bar--trio .btn svg { width: 16px; height: 16px; }


/* ---------- Owner portrait ---------- */
.portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: var(--blue-tint);
}
.portrait img { width: 100%; display: block; }
.portrait-caption {
  padding: 16px 22px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.portrait-name { font-weight: 700; color: var(--navy); font-size: 1.02rem; line-height: 1.3; }
.portrait-role { font-size: .87rem; color: var(--muted); }
.signature {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: .95rem;
  color: var(--muted);
}
.signature strong { color: var(--navy); }

/* ---------- Guides / articles ---------- */
.article { max-width: 760px; margin: 0 auto; }
.article-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
  font-size: .88rem; color: var(--muted);
  padding-bottom: 22px; margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.article-meta .dot { opacity: .5; }
.answer-box {
  background: var(--blue-light);
  border: 1px solid #CFE0F2;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 0 0 34px;
  font-size: 1.06rem;
}
.answer-box p { margin: 0; }
.answer-box strong { color: var(--navy); }
.article h2 { margin-top: 1.8em; }
.article h2:first-of-type { margin-top: 0; }

.author-box {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--blue-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 44px 0 0;
}
.author-box picture, .author-box img {
  width: 84px; height: 84px; flex: none;
  border-radius: 50%; object-fit: cover; object-position: 30% 30%;
}
.author-name { font-weight: 700; color: var(--navy); font-size: 1.02rem; }
.author-role { font-size: .87rem; color: var(--muted); margin-bottom: 8px; }
.author-box p { font-size: .92rem; margin: 0; }

.guide-card { display: flex; flex-direction: column; height: 100%; }
.guide-card .card-link { margin-top: auto; padding-top: 14px; }
.related-strip {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 22px; margin: 34px 0;
}
.related-strip strong { color: var(--navy); }

@media (max-width: 620px) {
  .author-box { flex-direction: column; }
  .author-box picture, .author-box img { width: 68px; height: 68px; }
}

/* ==========================================================================
   RV SYSTEMS TROUBLESHOOTER
   ========================================================================== */
.ts-wrap {
  max-width: 780px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px;
}
.ts-head h3 { font-size: clamp(1.3rem, 2.6vw, 1.65rem); margin-bottom: .4em; }
.ts-head p { font-size: 1rem; margin-bottom: 0; }
.ts-help {
  margin-top: 12px !important;
  font-size: .93rem; color: var(--muted);
  background: var(--blue-tint);
  border-radius: var(--radius);
  padding: 12px 16px;
}

.ts-progress { height: 5px; background: var(--line); border-radius: 3px; margin-bottom: 22px; overflow: hidden; }
.ts-progress span { display: block; height: 100%; background: var(--blue); border-radius: 3px; transition: width .3s ease; }

.ts-trail {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  font-size: .82rem; color: var(--muted); margin-bottom: 18px;
}
.ts-trail-sys { font-weight: 700; color: var(--navy); }
.ts-trail-sep { opacity: .5; }

.ts-systems { display: grid; gap: 12px; margin-top: 28px; }
.ts-system {
  display: flex; align-items: center; gap: 16px; width: 100%;
  padding: 16px 20px; text-align: left;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  cursor: pointer; font-family: inherit; transition: all .15s ease;
}
.ts-system:hover { border-color: var(--blue); background: var(--blue-tint); transform: translateX(2px); }
.ts-system-icon {
  width: 44px; height: 44px; flex: none; display: grid; place-items: center;
  background: var(--blue-light); border-radius: 11px; color: var(--navy);
}
.ts-system-icon svg { width: 22px; height: 22px; }
.ts-system-text { display: flex; flex-direction: column; gap: 2px; }
.ts-system-label { font-weight: 700; color: var(--navy); font-size: 1.02rem; }
.ts-system-desc { font-size: .87rem; color: var(--muted); }

.ts-answers { display: grid; gap: 10px; margin-top: 26px; }
.ts-answer {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  width: 100%; padding: 16px 20px; text-align: left;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  cursor: pointer; font-family: inherit; font-size: 1rem; font-weight: 500; color: var(--ink);
  transition: all .15s ease;
}
.ts-answer:hover { border-color: var(--blue); background: var(--blue-tint); color: var(--navy); }
.ts-answer svg { width: 18px; height: 18px; flex: none; color: var(--blue); }

.ts-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); }
.ts-back, .ts-restart {
  background: none; border: none; font-family: inherit; font-size: .93rem;
  font-weight: 600; color: var(--muted); cursor: pointer; padding: 6px 2px;
}
.ts-back:hover, .ts-restart:hover { color: var(--navy); text-decoration: underline; }

.ts-result { padding-top: 4px; }
.ts-badge {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 16px;
}
.ts-badge--diy      { background: #E3F3E8; color: #1B6B37; }
.ts-badge--tech     { background: var(--blue-light); color: var(--navy); }
.ts-badge--safety   { background: #FDEDE3; color: #A3410F; }
.ts-badge--redirect { background: var(--blue-light); color: var(--navy); }
.ts-result--safety  { border-left: 4px solid #D4691F; padding-left: 22px; }
.ts-result--diy     { border-left: 4px solid #2E8B52; padding-left: 22px; }
.ts-result--tech    { border-left: 4px solid var(--blue); padding-left: 22px; }
.ts-result h4 { margin: 26px 0 12px; font-size: 1.02rem; }
.ts-parts {
  font-size: .93rem; color: var(--body);
  background: var(--blue-tint); border-radius: var(--radius);
  padding: 14px 18px; margin-top: 18px;
}
.ts-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.ts-actions .ts-restart {
  border: 2px solid var(--line); border-radius: 8px; padding: 15px 30px;
  font-size: 1.02rem; font-weight: 600; color: var(--navy);
}
.ts-actions .ts-restart:hover { border-color: var(--navy); background: var(--blue-tint); text-decoration: none; }
.ts-handoff { font-size: .87rem; color: var(--muted); margin: 18px 0 0; }
.ts-disclaimer { font-size: .84rem; color: var(--muted); margin: 26px 0 0; text-align: center; }

/* Booking page handoff banner */
.ts-handoff-note {
  background: var(--blue-light); border: 1px solid #CFE0F2;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px; margin-bottom: 26px; font-size: .96rem;
}
.ts-handoff-note strong { color: var(--navy); }
.ts-handoff-detail { font-size: .89rem; color: var(--body); margin-top: 6px; }

@media (max-width: 620px) {
  .ts-wrap { padding: 24px 20px; border-radius: var(--radius); }
  .ts-system { padding: 14px 16px; gap: 13px; }
  .ts-system-icon { width: 38px; height: 38px; }
  .ts-answer { padding: 15px 16px; font-size: .96rem; }
  .ts-actions .btn, .ts-actions .ts-restart { width: 100%; }
  .ts-result--safety, .ts-result--diy, .ts-result--tech { padding-left: 16px; }
}

/* ==========================================================================
   STORE
   ========================================================================== */
.store-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px; flex-wrap: wrap; margin-bottom: 28px;
}
.pr-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.pr-filter {
  padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px;
  background: #fff; font-family: inherit; font-size: .9rem; font-weight: 600;
  color: var(--body); cursor: pointer; transition: all .15s ease;
}
.pr-filter:hover { border-color: var(--blue); color: var(--navy); }
.pr-filter.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.store-count { font-size: .88rem; color: var(--muted); }

.pr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pr-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all .2s ease;
}
.pr-card:hover { border-color: #C2D5E8; box-shadow: var(--shadow); transform: translateY(-2px); }
.pr-thumb {
  display: grid; place-items: center; height: 150px;
  background: linear-gradient(135deg, var(--blue-tint) 0%, var(--blue-light) 100%);
  border-bottom: 1px solid var(--line);
  color: var(--navy); font-weight: 800; font-size: 1.15rem;
  letter-spacing: .04em; text-decoration: none; opacity: .55;
}
.pr-thumb:hover { text-decoration: none; }
.pr-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.pr-brand {
  font-size: .74rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 7px;
}
.pr-card h3 { font-size: 1.04rem; margin-bottom: .45em; line-height: 1.3; }
.pr-card h3 a { color: var(--navy); }
.pr-card h3 a:hover { color: var(--blue); text-decoration: none; }
.pr-card p { font-size: .92rem; margin-bottom: 18px; }
.pr-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.pr-price { display: flex; flex-direction: column; gap: 4px; }
.pr-amt { font-size: 1.15rem; font-weight: 800; color: var(--navy); }
.pr-note { font-size: .8rem; color: var(--muted); font-weight: 500; }
.pr-ask { font-size: .92rem; font-weight: 600; color: var(--muted); }
.pr-badge {
  display: inline-block; padding: 3px 9px; border-radius: 5px;
  font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.pr-badge--install { background: var(--blue-light); color: var(--navy); }
.pr-badge--quote   { background: #FDEDE3; color: #A3410F; }

.store-empty {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: var(--blue-tint); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 54px 40px;
}
.store-empty h3 { margin-bottom: .6em; }
.store-empty p { font-size: 1.02rem; }
.store-empty .btn-row { margin-top: 26px; }

/* Product detail buy box */
.pd-buy {
  position: sticky; top: 100px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 26px;
}
.pd-price { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.pd-price .pr-amt { font-size: 1.6rem; }
.pd-price .pr-ask { font-size: 1.05rem; }
.pd-price .pr-badge { display: block; width: fit-content; margin-top: 8px; }
.pd-buy .btn { margin-bottom: 10px; }
.pd-fulfil { list-style: none; padding: 0; margin: 20px 0 0; border-top: 1px solid var(--line); padding-top: 18px; }
.pd-fulfil li { position: relative; padding-left: 24px; font-size: .9rem; margin-bottom: 8px; color: var(--body); }
.pd-fulfil li::before {
  content: ""; position: absolute; left: 0; top: .45em;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--blue-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23005493' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/9px no-repeat;
}
.pd-help { font-size: .86rem; color: var(--muted); margin: 18px 0 0; }

@media (max-width: 1024px) {
  .pr-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-buy { position: static; }
}
@media (max-width: 620px) {
  .pr-grid { grid-template-columns: 1fr; }
  .store-toolbar { flex-direction: column; align-items: flex-start; }
  .pr-foot { flex-direction: column; align-items: stretch; }
  .pr-foot .btn { width: 100%; }
}

/* ==========================================================================
   ACCESSIBILITY & MOTION
   ========================================================================== */

/* Keyboard focus — visible for keyboard users, invisible for mouse users */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
.hero :focus-visible,
.section--navy :focus-visible,
.cta-band :focus-visible,
.site-footer :focus-visible,
.page-banner :focus-visible {
  outline-color: #8FC3F0;
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible { outline: none; }

/* Skip to content — first tab stop for screen reader and keyboard users */
.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;                 /* clears the box even when the label wraps */
  white-space: nowrap;         /* stops a 2-line wrap on narrow phones from
                                  growing the box back into view */
  transform: translateX(-50%);
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: .95rem;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; text-decoration: none; color: #fff; }

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .btn:hover, .card:hover { transform: none; }
  .reviews-track { transition: none; }
}

/* Ensure tapped elements meet the 44px minimum touch target on phones */
@media (max-width: 1080px) {
  .nav-links a, .footer-list a, .faq-q { min-height: 44px; display: flex; align-items: center; }
  .footer-list li { margin-bottom: 4px; }
}

@media (max-width: 860px) {
  .urgent-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ==========================================================================
   FALLBACK FORM CONFIRMATION PANEL
   Replaces the old silent mailto: redirect. Shown in place of the form
   when HighLevel is not wired, so a submit never appears to do nothing.
   ========================================================================== */
.form-sent {
  border: 1px solid var(--line);
  background: var(--blue-tint);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.form-sent h3 { margin-bottom: 8px; }
.form-sent p { font-size: .95rem; }
.form-sent .btn { margin-bottom: 10px; }
.form-sent-back {
  background: none; border: 0; padding: 8px;
  color: var(--muted); font: inherit; font-size: .88rem;
  cursor: pointer; text-decoration: underline;
}

/* Quiet always-on escape hatch under the booking calendar */
.booking-help {
  text-align: center;
  font-size: .95rem;
  color: var(--muted);
  margin: 22px auto 0;
  max-width: 52ch;
}
.booking-help a { font-weight: 600; }

/* Fine print — legal/pricing qualifiers that must be readable, not hidden.
   Deliberately still meets AA contrast: small print that cannot be read is
   worse than no small print at all. */
.fineprint {
  display: inline-block;
  font-size: .82rem;
  line-height: 1.55;
  color: var(--muted);
}
.card .fineprint,
.fee-box .fineprint { margin-top: 2px; }

/* ==========================================================================
   PROJECT GALLERY — real job photography
   ========================================================================== */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}
.proj-grid--tight {
  /* auto-fit so a strip of 2 or 3 photos fills its container instead of
     being squeezed into a fixed 5-column track */
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.proj-item { margin: 0; }
.proj-item a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blue-light);
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.proj-item a:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.proj-item a:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.proj-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  /* The portrait shot is cropped to match the rest — a ragged grid reads as
     an accident rather than a sequence. object-position keeps the roof
     (the subject) in frame rather than centring on sky. */
  object-position: center 55%;
  display: block;
}
.proj-item figcaption {
  font-size: .92rem;
  line-height: 1.6;
  color: var(--body);
  margin-top: 12px;
}
.proj-item figcaption strong { color: var(--navy); display: block; margin-bottom: 2px; }
.proj-item--sm figcaption { font-size: .84rem; text-align: center; margin-top: 9px; }

@media (max-width: 1100px) {
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-grid--tight { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
}
@media (max-width: 700px) {
  .proj-grid { grid-template-columns: 1fr; gap: 22px; }
  .proj-grid--tight { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); }
}

/* Inline project gallery — sits inside a service section rather than
   taking a full section of its own, so the page doesn't become a chain
   of full-width galleries. */
.proj-inline {
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}
.proj-inline-head { text-align: center; margin-bottom: 6px; }
.proj-inline-sub {
  text-align: center; color: var(--muted);
  max-width: 60ch; margin: 0 auto 30px;
}
.proj-inline .split { align-items: center; gap: 44px; }
.proj-cap-body { display: block; }
.section--tint .proj-inline { border-top-color: #DCE7F2; }

/* A single project photo shouldn't inherit a multi-column grid width. */
.proj-solo {
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.proj-solo figcaption { text-align: center; }
.teaser .proj-solo figcaption { text-align: left; }   /* reads with the prose beside it */

/* Teaser — points from the services overview to a dedicated service page. */
.teaser { display: grid; grid-template-columns: 300px 1fr; gap: 32px; align-items: center; }
.teaser-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.teaser-thumbs .teaser-thumb:first-child { grid-column: 1 / -1; }
.teaser-thumb { display: block; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); }
.teaser-thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center 55%; }
@media (max-width: 760px) {
  .teaser { grid-template-columns: 1fr; gap: 22px; }
  .teaser-thumbs { grid-template-columns: repeat(3, 1fr); }
  .teaser-thumbs .teaser-thumb:first-child { grid-column: auto; }
}

/* A teaser with no thumbnail column should span the full width rather than
   squeeze its text into the 300px image track. */
.teaser > :only-child { grid-column: 1 / -1; }

/* Social embeds: TikTok and Instagram both replace their blockquote once
   their script loads. Until then (and if a blocker stops the script), the
   blockquote is what the visitor sees — so make that state look deliberate
   rather than like a blank panel. */
.social-embed-slot blockquote.tiktok-embed {
  display: grid;
  place-items: center;
  min-height: 240px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--blue-tint);
}
.social-embed-slot blockquote.tiktok-embed a { font-weight: 600; }
.social-embed-slot blockquote.instagram-media { margin: 0 auto !important; }

/* Media frame holding a real photograph rather than the placeholder state.
   The source image is only 480px wide, so it is capped to its native size —
   upscaling a small photo looks worse than showing it smaller. */
.media-frame--photo {
  margin: 0;
  aspect-ratio: auto;
  display: block;
  background: none;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.media-frame--photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}
.media-frame--photo figcaption {
  font-size: .9rem;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  padding: 0 8px;
}

/* ==========================================================================
   BEFORE / AFTER PAIRS
   Two or three shots of the same repair, labelled, so the comparison reads
   without the visitor having to work out which is which.
   ========================================================================== */
.ba-pair { margin-top: 34px; }
.ba-pair:first-of-type { margin-top: 26px; }
.ba-shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.ba-shot { margin: 0; }
.ba-shot a {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.ba-shot a:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.ba-shot a:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.ba-shot img { width: 100%; height: auto; object-fit: cover; object-position: center 50%; display: block; }
.ba-tag {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 1;
  background: var(--navy);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.ba-caption {
  font-size: .94rem;
  color: var(--body);
  margin: 14px 0 0;
  max-width: 74ch;
}

/* ---------- Real Repairs ---------- */
.job-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px 26px;
  background: var(--blue-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-bottom: 34px;
}
.job-facts > div { font-size: .96rem; color: var(--navy); font-weight: 600; }
.job-facts span {
  display: block; font-size: .74rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 3px;
}
.proj-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .proj-grid--2 { grid-template-columns: 1fr; } }
.repair-thumb { display: block; border-radius: var(--radius); overflow: hidden; }
.repair-thumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: center 55%; }
