/* ============================================================
   TAMPA BODY SHOP — Tampa, FL
   Direction: "SHOWROOM LIGHT" — a bright, airy editorial system.
   Deliberately the inverse of a dark performance-garage site:
   paper-white surfaces, ink type, and the brand's electric lime
   as the single accent. Signature motif: the logo's brush ARC.
   Type: Bricolage Grotesque (display) · DM Sans (text)
   ============================================================ */

@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('assets/fonts/BricolageGrotesque-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('assets/fonts/BricolageGrotesque-800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/DMSans-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/DMSans-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/DMSans-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --paper: #f6f6f2;
  --paper-2: #fffffd;
  --card: #ffffff;
  --ink: #14161a;
  --ink-2: #3d434c;
  --ink-3: #767d88;
  --hair: #e2e2db;
  --hair-2: #cfcfc6;

  --lime: #88f101;          /* exact brand green, sampled from the logo */
  --lime-deep: #5cab00;     /* accessible text/link variant of the same hue */
  --lime-wash: #f0fddb;

  --font-display: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
  --font-text: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --wrap: 1300px;
  --pad: clamp(1.15rem, 4vw, 3rem);
  --sec: clamp(4rem, 9vw, 7.5rem);
  --nav-h: 5.25rem;
  --bar-h: 2.4rem;

  --r-lg: 26px;
  --r-md: 16px;
  --r-sm: 10px;

  --shadow: 0 1px 2px rgba(20, 22, 26, 0.04), 0 12px 32px -12px rgba(20, 22, 26, 0.12);
  --shadow-lift: 0 2px 4px rgba(20, 22, 26, 0.05), 0 26px 50px -18px rgba(20, 22, 26, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-h) + var(--bar-h) + 1rem);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, picture, svg, video { display: block; max-width: 100%; }
/* <picture> must fill its frame so object-fit on the inner <img> works
   inside every aspect-ratio box (mosaic tiles, cards, hero, rows). */
picture { width: 100%; height: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { line-height: 1.06; overflow-wrap: break-word; }
address { font-style: normal; }
ul, ol { padding: 0; }
a { color: inherit; }

::selection { background: var(--lime); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--lime-deep);
  outline-offset: 2px;
  border-radius: 3px;
}

html.nav-open, html.nav-open body { overflow: hidden; }

.vh {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.skip {
  position: fixed; top: .7rem; left: .7rem; z-index: 300;
  padding: .7em 1.2em; border-radius: var(--r-sm);
  background: var(--ink); color: var(--paper-2);
  font-weight: 700; font-size: .9rem; text-decoration: none;
  transform: translateY(-400%);
}
.skip:focus { transform: none; }

/* ---------- Layout atoms ---------- */
.wrap {
  width: min(100% - 2 * var(--pad), var(--wrap));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 26px;
  flex-shrink: 0;
  border: 3px solid var(--lime);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
}

/* The brush ARC — signature shape lifted from the logo */
.arc {
  position: absolute;
  border-radius: 50%;
  border: clamp(10px, 2.4vw, 22px) solid var(--lime);
  border-right-color: transparent;
  border-top-color: transparent;
  opacity: .95;
  pointer-events: none;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em; }

.h1 { font-size: clamp(2.5rem, 6.6vw, 5.4rem); }
.h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); }
.h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); font-weight: 700; letter-spacing: -.01em; }

.lede {
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  color: var(--ink-2);
  max-width: 62ch;
}

.mark { color: var(--lime-deep); }
.hl {
  background: linear-gradient(var(--lime), var(--lime)) no-repeat left 92% / 100% .32em;
  padding-inline: .05em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .95em 1.7em;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: none; }

.btn--lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 10px 24px -10px rgba(136, 241, 1, .75);
}
.btn--lime:hover { background: #97ff14; box-shadow: 0 16px 30px -10px rgba(136, 241, 1, .85); }

.btn--ink { background: var(--ink); color: var(--paper-2); }
.btn--ink:hover { background: #23262c; }

.btn--outline {
  border-color: var(--hair-2);
  background: transparent;
  color: var(--ink);
}
.btn--outline:hover { border-color: var(--ink); background: var(--card); }

.btn--sm { padding: .68em 1.25em; font-size: .9rem; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--lime);
  padding-bottom: 1px;
  transition: gap .25s var(--ease), color .2s ease;
}
.textlink:hover { gap: .8em; color: var(--lime-deep); }

/* ---------- Reveals ---------- */
html.js .rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s var(--ease);
}
html.js .rv.seen { opacity: 1; transform: none; }

/* ============================================================
   UTILITY BAR + NAV
   ============================================================ */
.ubar {
  height: var(--bar-h);
  background: var(--ink);
  color: rgba(246, 246, 242, .82);
  font-size: .82rem;
  display: flex;
  align-items: center;
}
.ubar__in {
  width: min(100% - 2 * var(--pad), var(--wrap));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
}
.ubar a { color: inherit; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; }
.ubar a:hover { color: var(--lime); }
.ubar__hours { margin-left: auto; color: rgba(246, 246, 242, .58); }
.ubar svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; flex-shrink: 0; }

.nav {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(246, 246, 242, .88);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background-color .3s ease;
}
.nav.stuck {
  border-bottom-color: var(--hair);
  background: rgba(246, 246, 242, .96);
}
.nav__in {
  width: min(100% - 2 * var(--pad), var(--wrap));
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 2.2vw, 2rem);
}
.nav__logo { flex-shrink: 0; display: block; }
.nav__logo img { height: 64px; width: auto; }

.nav__links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(.7rem, 1.7vw, 1.7rem);
  list-style: none;
}
.nav__links a {
  position: relative;
  display: block;
  padding: .5rem .1rem;
  font-weight: 500;
  font-size: .97rem;
  color: var(--ink-2);
  text-decoration: none;
  transition: color .2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .15rem;
  height: 3px;
  border-radius: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: var(--ink); font-weight: 700; }

.nav__cta { flex-shrink: 0; }

.burger {
  display: none;
  width: 46px; height: 46px;
  flex-shrink: 0;
  border: 1px solid var(--hair-2);
  border-radius: 50%;
  background: var(--card);
  position: relative;
  cursor: pointer;
}
.burger span {
  position: absolute;
  left: 13px; right: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), top .3s var(--ease), opacity .2s ease;
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 29px; }
.burger.on span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.burger.on span:nth-child(2) { opacity: 0; }
.burger.on span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* Mobile sheet */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 115;
  background: var(--paper);
  padding: calc(var(--nav-h) + var(--bar-h) + 1.5rem) var(--pad) 2rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  transition: opacity .28s ease;
}
.sheet[hidden] { display: none; }
.sheet.on { opacity: 1; }
.sheet ol { list-style: none; }
.sheet li { border-bottom: 1px solid var(--hair); }
.sheet a {
  display: flex;
  align-items: baseline;
  gap: .9rem;
  padding: 1rem .2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -.02em;
  text-decoration: none;
}
.sheet a span {
  font-family: var(--font-text);
  font-size: .8rem;
  font-weight: 700;
  color: var(--lime-deep);
}
.sheet a:hover, .sheet a[aria-current="page"] { color: var(--lime-deep); }
.sheet__foot { margin-top: auto; padding-top: 1.75rem; display: grid; gap: .7rem; }
.sheet__foot .btn { justify-content: center; }
.sheet__foot p { color: var(--ink-3); font-size: .9rem; text-align: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: var(--sec);
  overflow: clip;
}
.hero__arc {
  top: -14vw; right: -12vw;
  width: 46vw; height: 46vw;
  transform: rotate(35deg);
  opacity: .16;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
/* Sized so the three headline lines never re-wrap on their own */
.hero__title {
  font-size: clamp(2.35rem, 5vw, 4.15rem);
  margin-bottom: 1.4rem;
}
.hero__title .ln { display: block; }
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2rem;
  margin-top: 2.25rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--hair);
  font-size: .93rem;
  color: var(--ink-2);
}
.hero__meta b { color: var(--ink); }

.hero__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 3.2;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* Floating stat chip over the hero photo */
.chip {
  position: absolute;
  left: -1.1rem; bottom: 1.5rem;
  background: var(--card);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lift);
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  max-width: 17rem;
}
.chip__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.35rem;
  line-height: .9;
  letter-spacing: -.03em;
}
.chip__txt { font-size: .84rem; line-height: 1.35; color: var(--ink-2); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  border-block: 1px solid var(--hair);
  background: var(--paper-2);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.trust__item {
  padding: clamp(1.5rem, 3vw, 2.1rem) clamp(1rem, 2vw, 1.6rem);
  border-left: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.trust__item:first-child { border-left: 0; }
.trust__item b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.01em;
}
.trust__item span { font-size: .89rem; color: var(--ink-3); }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.sec { padding-block: var(--sec); }
.sec--paper2 { background: var(--paper-2); border-block: 1px solid var(--hair); }
.sec--ink {
  background: var(--ink);
  color: var(--paper);
}
.sec--ink .lede, .sec--ink .eyebrow { color: rgba(246, 246, 242, .68); }

.sec__head { margin-bottom: clamp(2.25rem, 5vw, 3.75rem); }
.sec__head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
}
.sec__head p { margin-top: .9rem; }

/* ============================================================
   ABOUT SPLIT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about__stack { display: grid; gap: 1rem; }
.about__stack figure { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow); }
.about__stack img { width: 100%; height: 100%; object-fit: cover; }
.about__stack--duo {
  grid-template-columns: 1fr 1fr;
}
.about__stack--duo figure:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.about__stack--duo figure:not(:first-child) { aspect-ratio: 1; }
.about__body p + p { margin-top: 1rem; }
.about__body .btn { margin-top: 1.8rem; }

.ticks { list-style: none; margin-top: 1.5rem; display: grid; gap: .6rem; }
.ticks li { display: flex; gap: .8rem; align-items: flex-start; font-weight: 500; }
.ticks li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: .15rem;
  border-radius: 50%;
  background: var(--lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7' fill='none' stroke='%2314161a' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 15px no-repeat;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.svcs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}
.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: transparent; }
.svc__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper);
}
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.svc:hover .svc__img img { transform: scale(1.05); }
.svc__body { padding: 1.25rem 1.35rem 1.5rem; display: flex; flex-direction: column; flex: 1; gap: .5rem; }
.svc__n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .82rem;
  color: var(--lime-deep);
  letter-spacing: .04em;
}
.svc__body h3 { font-size: 1.16rem; font-weight: 700; letter-spacing: -.01em; }
.svc__body p { font-size: .94rem; color: var(--ink-2); }
.svc__body .textlink { margin-top: auto; padding-top: .9rem; align-self: flex-start; font-size: .9rem; }

/* ============================================================
   WHY / VALUE TRIO
   ============================================================ */
.why {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
}
.why__item {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid var(--hair);
}
.why__item img { width: 46px; height: 46px; margin-bottom: 1.15rem; }
.why__item h3 { font-size: 1.24rem; font-weight: 700; margin-bottom: .5rem; }
.why__item p { color: var(--ink-2); font-size: .96rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.tabs {
  display: inline-flex;
  gap: .3rem;
  padding: .3rem;
  background: var(--paper-2);
  border: 1px solid var(--hair);
  border-radius: 999px;
}
.tab {
  padding: .55em 1.25em;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink-2);
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease;
}
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] { background: var(--ink); color: var(--paper-2); }

.mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.6rem, 1.2vw, 1rem);
}
.mosaic button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--hair);
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
}
.mosaic button.tall { grid-row: span 2; aspect-ratio: 4 / 6.2; }
.mosaic button.wide { grid-column: span 2; aspect-ratio: 8 / 3; }
.mosaic img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease), opacity .3s ease;
}
.mosaic button:hover img { transform: scale(1.05); }
.mosaic button::after {
  content: attr(data-cap);
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.2rem .9rem .8rem;
  background: linear-gradient(transparent, rgba(10, 11, 13, .82));
  color: #fff;
  font-size: .84rem;
  font-weight: 500;
  text-align: left;
  opacity: 0;
  transition: opacity .3s ease;
}
.mosaic button:hover::after, .mosaic button:focus-visible::after { opacity: 1; }

/* Lightbox */
.lb {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(14, 15, 17, .93);
  display: grid;
  place-items: center;
  padding: 4rem 1rem 2rem;
}
.lb[hidden] { display: none; }
.lb img { max-width: min(94vw, 1150px); max-height: 80vh; border-radius: var(--r-sm); object-fit: contain; }
.lb__cap {
  margin-top: 1rem;
  color: rgba(255, 255, 255, .78);
  font-size: .92rem;
  text-align: center;
}
.lb__btn {
  position: absolute;
  width: 46px; height: 46px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lb__btn:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.lb__x { top: 1.1rem; right: 1.1rem; }
.lb__p { left: 1.1rem; top: 50%; transform: translateY(-50%); }
.lb__n { right: 1.1rem; top: 50%; transform: translateY(-50%); }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.quote__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.quote blockquote p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.7vw, 2.15rem);
  line-height: 1.24;
  letter-spacing: -.02em;
}
.quote__stars { display: flex; gap: .2rem; margin-bottom: 1.4rem; }
.quote__stars svg { width: 22px; height: 22px; fill: var(--lime); }
.sec--ink .quote__stars svg { fill: var(--lime); }
.quote figcaption { margin-top: 1.6rem; font-size: .96rem; }
.quote figcaption b { display: block; font-size: 1.05rem; }
.quote figcaption span { color: var(--ink-3); }
.sec--ink .quote figcaption span { color: rgba(246, 246, 242, .55); }
.quote__media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; }
.quote__media img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   ESTIMATE / CTA BAND
   ============================================================ */
.band {
  position: relative;
  overflow: clip;
  background: var(--lime);
  color: var(--ink);
}
.band__arc {
  bottom: -22vw; left: -8vw;
  width: 40vw; height: 40vw;
  border-color: rgba(20, 22, 26, .12);
  border-right-color: transparent;
  border-top-color: transparent;
  transform: rotate(120deg);
}
.band__in {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem 3rem;
  align-items: center;
}
.band h2 { font-size: clamp(1.9rem, 4.4vw, 3.3rem); }
.band p { margin-top: .8rem; font-size: clamp(1rem, 1.4vw, 1.18rem); max-width: 48ch; }
.band__act { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ============================================================
   FORMS
   ============================================================ */
.form {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow);
}
.form h2 { font-size: 1.6rem; margin-bottom: .4rem; }
.form > p { color: var(--ink-2); font-size: .96rem; margin-bottom: 1.6rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f { margin-bottom: 1.1rem; }
.f label {
  display: block;
  font-weight: 700;
  font-size: .86rem;
  margin-bottom: .35rem;
}
.f label i { font-style: normal; color: var(--lime-deep); }
.f input, .f select, .f textarea {
  width: 100%;
  padding: .8em 1em;
  background: var(--paper);
  border: 1px solid var(--hair-2);
  border-radius: var(--r-sm);
  transition: border-color .2s ease, background-color .2s ease;
}
.f input:focus-visible, .f select:focus-visible, .f textarea:focus-visible {
  outline: none;
  border-color: var(--lime-deep);
  background: var(--card);
  box-shadow: 0 0 0 3px var(--lime-wash);
}
.f textarea { resize: vertical; min-height: 6.5rem; }
.f select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2314161a' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
}
.f-hint { font-size: .84rem; color: var(--ink-3); margin-top: .35rem; }
.f-err {
  background: #fff4f4;
  border: 1px solid #f3c9c9;
  border-radius: var(--r-sm);
  padding: .75rem 1rem;
  font-size: .92rem;
  margin-bottom: 1.1rem;
}
.f-ok {
  background: var(--lime-wash);
  border: 1px solid #cdea9a;
  border-radius: var(--r-sm);
  padding: 1rem 1.15rem;
  font-size: .95rem;
  margin-top: 1.2rem;
}
.f-ok a { font-weight: 700; color: var(--ink); }
.form .btn { width: 100%; justify-content: center; }

/* Damage-type picker */
.picks { display: flex; flex-wrap: wrap; gap: .5rem; }
.picks input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.picks label {
  display: inline-block;
  padding: .5em 1em;
  border: 1px solid var(--hair-2);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
  margin: 0;
}
.picks label:hover { border-color: var(--ink); }
.picks input:checked + label {
  background: var(--lime);
  border-color: var(--lime);
  font-weight: 700;
}
.picks input:focus-visible + label { outline: 3px solid var(--lime-deep); outline-offset: 2px; }

/* ============================================================
   CONTACT / INFO CARDS
   ============================================================ */
.info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.info__card {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  padding: 1.5rem 1.6rem 1.7rem;
}
.info__card h3 {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: .6rem;
}
.info__card p, .info__card a { font-size: 1.12rem; font-weight: 500; text-decoration: none; }
.info__card a:hover { color: var(--lime-deep); }
.info__big {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  font-size: clamp(1.5rem, 2.6vw, 2rem) !important;
  letter-spacing: -.02em;
}

.pay { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.2rem; list-style: none; }
.pay li {
  padding: .35em .85em;
  border: 1px solid var(--hair-2);
  border-radius: 999px;
  font-size: .84rem;
  color: var(--ink-2);
  background: var(--card);
}

.mapcard {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hair);
  background: var(--card);
}
.mapcard iframe, .mapcard img { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   SERVICE LIST (services page)
   ============================================================ */
.slist { display: grid; gap: 0; }
.srow {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding-block: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid var(--hair);
}
.slist .srow:last-child { border-bottom: 1px solid var(--hair); }
.srow__n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--hair-2);
  letter-spacing: -.03em;
  transition: color .3s ease;
}
.srow:hover .srow__n { color: var(--lime-deep); }
.srow__t h3 { font-size: clamp(1.2rem, 2.1vw, 1.6rem); font-weight: 700; }
.srow__t p { margin-top: .45rem; color: var(--ink-2); font-size: .96rem; max-width: 46ch; }
.srow__t .btn { margin-top: 1rem; }
.srow__img {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}
.srow__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.srow:hover .srow__img img { transform: scale(1.04); }

/* ============================================================
   PAGE HEAD
   ============================================================ */
.phead {
  position: relative;
  overflow: clip;
  padding-block: clamp(2.75rem, 6vw, 4.5rem) clamp(2.25rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--hair);
  background: var(--paper-2);
}
.phead__arc {
  top: -18vw; right: -10vw;
  width: 38vw; height: 38vw;
  transform: rotate(50deg);
  opacity: .13;
}
.phead__in { position: relative; }
.crumb {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .86rem;
  color: var(--ink-3);
  margin-bottom: 1rem;
  list-style: none;
  flex-wrap: wrap;
}
.crumb a { text-decoration: none; }
.crumb a:hover { color: var(--lime-deep); }
.crumb li:not(:last-child)::after { content: "/"; margin-left: .5rem; color: var(--hair-2); }

/* ============================================================
   LEGAL
   ============================================================ */
.legal { max-width: 74ch; }
.legal h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2.2rem 0 .6rem;
}
.legal p { color: var(--ink-2); margin-bottom: .9rem; }
.legal ul { margin: 0 0 1rem 1.15rem; color: var(--ink-2); }
.legal li { margin-bottom: .3rem; }
.legal a { color: var(--lime-deep); font-weight: 500; }
.legal__meta { color: var(--ink-3); font-size: .92rem; margin-bottom: 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--ink);
  color: rgba(246, 246, 242, .74);
}
.foot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .7fr) minmax(0, .7fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-block: clamp(2.75rem, 6vw, 4.25rem) clamp(1.75rem, 4vw, 2.5rem);
}
.foot__logo { height: 88px; width: auto; margin-bottom: 1.1rem; }
.foot p { font-size: .95rem; }
.foot h3 {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem;
}
.foot ul { list-style: none; display: grid; gap: .5rem; }
.foot a { text-decoration: none; transition: color .2s ease; }
.foot a:hover { color: var(--lime); }
.foot address p + p { margin-top: .55rem; }
.foot__bot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .6rem 1.5rem;
  padding-block: 1.2rem;
  border-top: 1px solid rgba(246, 246, 242, .12);
  font-size: .86rem;
  color: rgba(246, 246, 242, .5);
}
.foot__bot ul { display: flex; gap: 1.2rem; list-style: none; }

/* ============================================================
   STICKY MOBILE ACTION BAR
   ============================================================ */
.dock {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 110;
  padding: .6rem .7rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(246, 246, 242, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--hair);
  gap: .5rem;
}
.dock .btn { flex: 1; justify-content: center; padding: .85em 1em; font-size: .93rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__cta { margin-left: auto; }
  .burger { display: block; }
  .mosaic { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust__item:nth-child(3) { border-left: 0; }
  .trust__item:nth-child(n+3) { border-top: 1px solid var(--hair); }
}

@media (max-width: 900px) {
  .hero__grid, .about__grid, .quote__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__media { aspect-ratio: 16 / 11; }
  .chip { left: auto; right: 1rem; bottom: 1rem; }
  .why { grid-template-columns: minmax(0, 1fr); }
  .info { grid-template-columns: minmax(0, 1fr); }
  .band__in { grid-template-columns: minmax(0, 1fr); }
  .srow { grid-template-columns: 3rem minmax(0, 1fr); }
  .srow__img { grid-column: 1 / -1; }
  .foot__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote__media { order: -1; }
}

@media (max-width: 700px) {
  .ubar__hours { display: none; }
  .mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mosaic button.wide { grid-column: span 2; }
  .mosaic button.tall { grid-row: span 1; aspect-ratio: 4 / 3; }
  .f-row { grid-template-columns: minmax(0, 1fr); }
  .dock { display: flex; }
  body { padding-bottom: 4.6rem; }
  .nav__cta { display: none; }
  .foot__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__cta .btn { flex: 1; justify-content: center; }
}

@media (max-width: 560px) {
  /* Keep the phone number readable; the email lives in the footer and dock.
     Needs `.ubar a` specificity to beat the base display rule. */
  .ubar a.ubar__mail { display: none; }
  .ubar__in { justify-content: center; }
}

@media (max-width: 430px) {
  .ubar__in { gap: .9rem; font-size: .76rem; }
  .nav__logo img { height: 44px; }
  .chip { position: static; margin-top: -2.5rem; margin-inline: 1rem; max-width: none; }
}

@media (min-width: 1700px) {
  :root { --wrap: 1440px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
  html { scroll-behavior: auto; }
  html.js .rv { opacity: 1; transform: none; }
  .btn:hover { transform: none; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .ubar, .nav, .sheet, .dock, .band, .lb { display: none !important; }
  body { background: #fff; }
}
