/* ==========================================================================
   Providence Detailing — shared stylesheet
   Breakpoints: mobile <640 / tablet 640–1023 / desktop 1024–1439 / large ≥1440
   ========================================================================== */

:root {
  --ink-950: #0a0a0c;
  --ink-900: #131317;
  --ink-800: #1e1e24;
  --red-700: #9c1a20;
  --red-600: #c6232a;
  --red-500: #dc2a32;
  --red-400: #ef4d55;
  --red-300: #f3a0a4;
  --red-50: #fceced;
  --surface-dark: #17171c;
  --paper: #f4f4f5;
  --card: #ffffff;
  --ink: #101012;
  --body: #45454b;
  --muted: #74747c;
  --line: #e3e3e6;
  --star: #f5b921;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 10px 30px rgba(10, 10, 12, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 10, 12, 0.20);
  --container: 1320px;
  --gutter: 20px;
  --header-h: 84px;
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
}

@media (min-width: 640px)  { :root { --gutter: 32px; } }
@media (min-width: 1024px) { :root { --gutter: 48px; } }
@media (min-width: 1440px) { :root { --container: 1480px; --gutter: 64px; } }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--card);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: 0.005em;
  color: var(--ink);
}
h1.display { font-size: clamp(42px, 7.2vw, 88px); }
h2.display { font-size: clamp(34px, 4.6vw, 60px); }
h3.display { font-size: clamp(21px, 2vw, 26px); line-height: 1.2; }
.display--sm { font-size: clamp(19px, 1.6vw, 23px); line-height: 1.25; }

.eyebrow { font-size: 18px; color: var(--ink); }
.section-head--center { text-align: center; }
.section-head--center .eyebrow { margin-bottom: 14px; }
.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink); }
.muted { color: var(--muted); }

section { padding: clamp(64px, 8vw, 120px) 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--red-600);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--red-700); }
.btn:active { transform: translateY(1px); }
.btn .arrow { width: 20px; height: 20px; flex: none; }
.btn--light { background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.btn--light:hover { background: #f0f0f1; }
.btn--phone {
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  box-shadow: var(--shadow);
}
.btn--phone:hover { background: #f0f0f1; }
.btn--phone svg { width: 18px; height: 18px; color: var(--red-600); }
.btn--block { width: 100%; }

.icon-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red-50);
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.icon-btn:hover, .icon-btn--solid { background: var(--red-600); color: #fff; }
.icon-btn svg { width: 20px; height: 20px; }

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 18px 0;
}
.site-header--solid { position: relative; background: var(--ink-950); }
.site-header .container {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* logo */
.logo { display: inline-flex; align-items: center; flex: none; }
.logo img {
  height: 58px;
  width: auto;
  transition: transform 0.2s ease;
}
.logo:hover img { transform: scale(1.04); }
@media (max-width: 639px) { .logo img { height: 42px; } }

/* primary nav */
.nav { display: none; }
.header-cta { display: none; margin-left: auto; align-items: center; gap: 12px; }

.nav-toggle {
  margin-left: auto;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-burger { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .nav {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .header-cta { display: flex; }
  .header-cta .btn { padding: 13px 22px; }
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-weight: 600;
  font-size: 16.5px;
  padding: 12px 14px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.nav__link:hover { background: rgba(255, 255, 255, 0.1); }
.nav__link .caret { width: 14px; height: 14px; transition: transform 0.2s ease; }

/* Desktop header squeeze bands. The nav carries seven items plus a phone button
   and a Book Now button, so it needs two steps of tightening before the hamburger
   takes over at 1023px. These sit after the base .nav__link rule so they win on
   source order. */
@media (min-width: 1340px) and (max-width: 1519px) {
  .site-header .container { gap: 16px; }
  .nav { gap: 2px; }
  .nav__link { font-size: 15px; padding: 11px 9px; }
  .header-cta { gap: 10px; }
  .header-cta .btn { padding: 12px 16px; font-size: 15px; }
}
@media (min-width: 1024px) and (max-width: 1339px) {
  .header-cta .btn--phone { display: none; }
  .site-header .container { gap: 10px; }
  .logo img { height: 44px; }
  .nav { gap: 0; }
  .nav__link { font-size: 14px; padding: 10px 7px; gap: 5px; }
  .nav__link .caret { width: 12px; height: 12px; }
  .header-cta .btn { padding: 11px 14px; font-size: 15px; }
}

/* desktop dropdowns */
.nav__item { position: relative; }
.nav__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 264px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 70;
}
.nav__menu--wide {
  min-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  left: 50%;
  margin-left: -280px; /* keep the wide menu centered under its item so it can't spill past the viewport edge */
}
.nav__item:hover > .nav__menu,
.nav__item:focus-within > .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__item:hover > .nav__link .caret { transform: rotate(180deg); }
.nav__menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 9px;
  color: var(--ink);
  font-weight: 600;
  font-size: 15.5px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav__menu a:hover { background: var(--red-50); color: var(--red-600); }
.nav__menu a svg { width: 17px; height: 17px; flex: none; }

/* mobile slide-down menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--ink-950);
  padding: calc(var(--header-h) + 12px) var(--gutter) 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
body.menu-open { overflow: hidden; }
body.menu-open .site-header { position: fixed; background: var(--ink-950); }

.mobile-menu__group { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.mobile-menu__top,
.mobile-menu__group > a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px 2px;
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  text-align: left;
}
.mobile-menu__top .caret { width: 18px; height: 18px; transition: transform 0.2s ease; }
.mobile-menu__group.is-open .mobile-menu__top .caret { transform: rotate(180deg); }
.mobile-menu__sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.mobile-menu__sub > div { overflow: hidden; }
.mobile-menu__group.is-open .mobile-menu__sub { grid-template-rows: 1fr; }
.mobile-menu__sub a {
  display: block;
  padding: 12px 2px 12px 16px;
  color: var(--red-300);
  font-weight: 600;
  font-size: 17px;
}
.mobile-menu__sub a:last-child { padding-bottom: 22px; }
.mobile-menu__cta { display: grid; gap: 12px; padding-top: 28px; }
@media (min-width: 640px) { .mobile-menu__cta { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* ==========================================================================
   Hero (home + location pages)
   ========================================================================== */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: calc(var(--header-h) + clamp(40px, 6vw, 84px)) 0 clamp(56px, 6vw, 96px);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 8, 10, 0.90) 0%, rgba(8, 8, 10, 0.72) 55%, rgba(20, 6, 8, 0.58) 100%);
}
.hero .container {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero .container { grid-template-columns: minmax(0, 1fr) 440px; gap: 64px; }
  .hero { min-height: 92vh; display: flex; align-items: center; }
}
@media (min-width: 1440px) {
  .hero .container { grid-template-columns: minmax(0, 1fr) 480px; }
}
.hero__eyebrow { font-size: clamp(17px, 1.5vw, 21px); margin-bottom: 18px; }
.hero h1 { color: #fff; margin-bottom: 22px; max-width: 20ch; }
.hero__sub { font-size: clamp(17px, 1.4vw, 20px); margin-bottom: 26px; max-width: 56ch; }
.hero__checks { display: grid; gap: 13px; margin-bottom: 34px; }
.hero__checks li { display: flex; align-items: center; gap: 12px; font-size: clamp(16px, 1.3vw, 19px); font-weight: 500; }
.check-ic {
  width: 24px;
  height: 24px;
  flex: none;
  border-radius: 50%;
  background: var(--red-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.check-ic svg { width: 13px; height: 13px; color: #fff; }

/* inspection form card */
.form-card {
  background: var(--surface-dark);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 40px) clamp(22px, 2.6vw, 34px);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.form-card__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(26px, 2.4vw, 34px);
  text-align: center;
  line-height: 1.1;
  margin-bottom: 12px;
}
.form-card__sub { text-align: center; font-size: 15.5px; margin-bottom: 24px; }
.form-card form { display: grid; gap: 14px; }
.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background-color: #fff;
  padding: 16px 18px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
}
.form-card select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233c3f43' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 46px;
}
/* show the "Service Needed*" prompt in placeholder grey until an option is picked */
.form-card select:invalid { color: var(--muted); }
.form-card select option { color: var(--ink); }
.form-card textarea { resize: vertical; min-height: 110px; }
.form-card input::placeholder,
.form-card textarea::placeholder { color: var(--muted); }
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus { box-shadow: 0 0 0 3px rgba(198, 35, 42, 0.55); }
/* Netlify drops the reCAPTCHA iframe in here; it is a fixed 302px wide, so
   let it scroll rather than blow out the card on small phones. */
.form-card__captcha { display: flex; justify-content: center; overflow-x: auto; }
.form-card__error {
  font-size: 13.5px;
  line-height: 1.4;
  text-align: center;
  color: #ffd3d5;
  margin: -4px 0 0;
}
.form-card__error[hidden] { display: none; }
.form-card .btn { background: var(--red-600); margin-top: 6px; padding: 17px 26px; }
.form-card .btn:hover { background: var(--red-700); }
.form-card__legal { font-size: 12.5px; text-align: center; margin-top: 16px; opacity: 0.92; }
.form-card__brands {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.form-card__brands > div { display: grid; gap: 5px; justify-items: center; }
.brand-note { font-size: 13.5px; opacity: 0.92; }
.brand-word { font-weight: 800; font-size: 19px; color: #fff; letter-spacing: 0.01em; }
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 15px; height: 15px; color: var(--star); }
.stars--lg svg { width: 21px; height: 21px; }

/* ==========================================================================
   Services cards
   ========================================================================== */
.services-grid {
  margin-top: clamp(36px, 4vw, 64px);
  display: grid;
  gap: 28px;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card { position: relative; }
.service-card__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.1;
  background: var(--paper);
}
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__icon {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-600);
  box-shadow: var(--shadow);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card__body {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 24px 26px;
  margin: -84px 16px 0;
}
.service-card__body h3 { margin-bottom: 8px; }
.service-card__body p { color: var(--body); font-size: 16px; margin-bottom: 18px; min-height: 52px; }

.services-foot {
  margin-top: clamp(40px, 4vw, 64px);
  display: grid;
  gap: 28px;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .services-foot { grid-template-columns: auto 1fr auto; text-align: left; gap: 56px; }
}
.laurel { display: inline-flex; align-items: center; gap: 4px; justify-self: center; color: var(--ink); }
.laurel svg { width: 46px; height: 88px; flex: none; }
.laurel span {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 11ch;
  text-align: center;
  line-height: 1.45;
}
.services-foot p { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink); max-width: 62ch; margin: 0 auto; }
.services-foot .btn { justify-self: center; }

/* ==========================================================================
   Why choose (accordion)
   ========================================================================== */
.why { background: var(--paper); }
.why__grid {
  margin-top: clamp(32px, 4vw, 56px);
  display: grid;
  gap: 48px;
}
@media (min-width: 1024px) {
  .why__grid { grid-template-columns: minmax(0, 460px) minmax(0, 1fr); gap: clamp(48px, 6vw, 110px); }
}
.why__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 0.92;
  max-width: 460px;
}
.why__media img { width: 100%; height: 100%; object-fit: cover; }
.why__list { margin-top: 28px; display: grid; gap: 10px; max-width: 460px; }
.why__tab {
  display: flex;
  align-items: baseline;
  gap: 16px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 15px 20px;
  font-weight: 600;
  font-size: 16.5px;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease;
  border-left: 5px solid transparent;
}
.why__tab .num { font-size: 15px; color: var(--muted); font-weight: 600; flex: none; }
.why__tab.is-active {
  background: var(--red-600);
  color: #fff;
  border-left-color: var(--ink-950);
}
.why__tab.is-active .num { color: rgba(255, 255, 255, 0.75); }
.why__content h3 { margin-bottom: 26px; }
.why__content p { color: var(--ink); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.65; margin-bottom: 24px; }
.why__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: clamp(17px, 1.5vw, 21px);
}
.reviews__source {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--muted);
}
.brand-word--ink { color: var(--ink); font-size: 21px; }

.reviews-grid {
  margin-top: clamp(36px, 4vw, 56px);
  display: grid;
  gap: 24px;
  align-items: start;
}
@media (min-width: 640px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.reviews-col { display: grid; gap: 24px; }
@media (min-width: 1024px) { .reviews-col--mid { margin-top: 0; } }

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.review-card .stars { margin-bottom: 14px; }
.review-card p { font-size: 17.5px; line-height: 1.55; margin-bottom: 26px; }
.review-card--hl { background: var(--surface-dark); border-color: var(--surface-dark); color: #fff; }
.review-card--hl p { color: #fff; }
.review-card__who { display: flex; align-items: center; gap: 13px; }
.review-card__who img,
.review-card__who .avatar-fallback {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red-600);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}
.review-card--hl .avatar-fallback { background: var(--red-600); }
.review-card__who strong { display: block; font-size: 16.5px; }
.review-card__who span { font-size: 14.5px; color: var(--muted); }
.review-card--hl .review-card__who span { color: rgba(255, 255, 255, 0.85); }

/* ==========================================================================
   Locations / map
   ========================================================================== */
.locations { background: #fff; }
.locations__intro { max-width: 720px; margin: 18px auto 0; text-align: center; font-size: clamp(17px, 1.5vw, 21px); }
.locations .btn { margin-top: 28px; }
.map-wrap { position: relative; margin-top: clamp(32px, 4vw, 56px); }

/* Google Maps iframe embeds */
.map-embed {
  display: block;
  width: 100%;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--red-50);
}
.map-embed--panel {
  aspect-ratio: 16 / 11;
  box-shadow: var(--shadow);
}
@media (min-width: 640px)  { .map-embed--panel { aspect-ratio: 16 / 8; } }
@media (min-width: 1024px) { .map-embed--panel { aspect-ratio: 16 / 6.5; } }

/* YouTube video embeds */
.video-wrap { margin-top: clamp(32px, 4vw, 56px); }
.video-embed {
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: #000;
}

.map-card {
  position: absolute;
  left: 0;
  bottom: clamp(-20px, -2vw, -10px);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 420px;
  width: calc(100% - 80px);
}
.map-card__thumb {
  width: 56px;
  height: 56px;
  flex: none;
  border-radius: 12px;
  background: var(--red-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-600);
  overflow: hidden;
}
.map-card__thumb svg { width: 30px; height: 30px; }
.map-card__text { flex: 1; min-width: 0; }
.map-card__text strong { display: block; font-size: clamp(15px, 1.4vw, 18px); }
.map-card__text span { color: var(--muted); font-size: clamp(14px, 1.3vw, 16px); }
.map-card__more {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red-600);
  font-weight: 800;
  letter-spacing: 0.08em;
}
.map-fab {
  position: absolute;
  right: 8px;
  bottom: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink-800);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  font-size: 30px;
  font-weight: 300;
}
@media (max-width: 639px) {
  .map-card { position: static; width: 100%; max-width: none; margin-top: 20px; }
  .map-fab { display: none; }
}

/* ==========================================================================
   Giving back
   ========================================================================== */
.giving__head { display: grid; gap: 24px; margin-bottom: clamp(40px, 5vw, 72px); }
@media (min-width: 1024px) {
  .giving__head { grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 64px; }
}
.giving__head .eyebrow { margin-bottom: 16px; }
.giving__head h2 { margin-bottom: 18px; max-width: 22ch; }
.giving__head p { font-size: clamp(17px, 1.5vw, 21px); max-width: 72ch; }
.giving-grid { display: grid; gap: 44px; }
@media (min-width: 640px)  { .giving-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.giving-item .giving-ic { display: block; margin-bottom: 28px; }
.giving-item .giving-ic svg { width: 84px; height: 84px; color: var(--red-600); }
.giving-item h3 { margin-bottom: 14px; max-width: 18ch; }
.giving-item p { color: var(--ink); font-size: clamp(16px, 1.4vw, 19px); }

/* ==========================================================================
   Resources / blog carousel
   ========================================================================== */
.resources { background: #fff; overflow: hidden; }
.resources__head { display: grid; gap: 24px; margin-bottom: clamp(36px, 4vw, 56px); }
@media (min-width: 1024px) {
  .resources__head { grid-template-columns: minmax(0, 1fr) minmax(0, 480px); align-items: end; gap: 80px; }
}
.resources__head .eyebrow { margin-bottom: 16px; }
.resources__head h2 { max-width: 18ch; }
.resources__side p { font-size: clamp(17px, 1.4vw, 20px); margin-bottom: 24px; }
.resources__controls { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.resources__controls .spacer { flex: 1; }

.blog-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  margin-right: calc(-1 * var(--gutter));
  padding-right: var(--gutter);
  scrollbar-width: none;
}
.blog-track::-webkit-scrollbar { display: none; }
.blog-card {
  position: relative;
  flex: 0 0 86%;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.4;
  background: var(--paper);
}
@media (min-width: 640px)  { .blog-card { flex-basis: 46%; } }
@media (min-width: 1024px) { .blog-card { flex-basis: 31.5%; } }
.blog-card > img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px;
}
.blog-card__overlay h3 { font-size: 19px; line-height: 1.4; font-weight: 600; margin-bottom: 16px; }
.blog-card__overlay .btn { width: 100%; }

/* blog post pages */
.post-meta { color: rgba(255, 255, 255, 0.85); font-size: 15.5px; }
.post-body { max-width: 780px; margin: 0 auto; }
.post-lead {
  font-size: clamp(19px, 1.7vw, 22px);
  line-height: 1.65;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 34px;
}
.post-body h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  margin: 44px 0 16px;
  line-height: 1.12;
}
.post-body p { font-size: 17.5px; line-height: 1.75; margin-bottom: 18px; }
.post-body p a,
.post-body li a {
  color: var(--red-600);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--red-300);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.post-body p a:hover,
.post-body li a:hover { color: var(--red-600); text-decoration-color: var(--red-600); }
.post-list { display: grid; gap: 12px; margin: 6px 0 22px; }
.post-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 17px; line-height: 1.6; }
.post-list .check-ic { margin-top: 3px; }
.post-figure { margin: 36px 0; }
.post-figure img { width: 100%; border-radius: var(--radius-lg); display: block; }
.post-figure figcaption { font-size: 13.5px; color: var(--muted); margin-top: 10px; text-align: center; }
.post-cta {
  margin-top: 46px;
  background: var(--red-50);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.post-cta strong { display: block; font-size: 19px; margin-bottom: 4px; color: var(--ink); }
.post-cta span { color: var(--body); font-size: 15.5px; }
.post-cta .btn { flex: none; }
.blog-grid { display: grid; gap: 24px; }
@media (min-width: 640px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-grid .blog-card { flex: initial; width: auto; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink-950); color: #fff; padding: clamp(56px, 7vw, 96px) 0 56px; }
.site-footer__grid { display: grid; gap: 48px; }
@media (min-width: 1024px) {
  .site-footer__grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr); gap: 80px; }
}
.site-footer address { font-style: normal; margin: 28px 0 18px; display: grid; gap: 14px; }
.site-footer address a, .site-footer address div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  line-height: 1.5;
}
.site-footer address svg { width: 19px; height: 19px; flex: none; margin-top: 4px; }
.site-footer address a[href^="tel"] { font-weight: 800; align-items: center; }
.site-footer .btn { margin-top: 12px; }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (min-width: 640px) { .footer-cols { grid-template-columns: repeat(3, 1fr); } }
.footer-cols ul { display: grid; gap: 16px; align-content: start; }
.footer-cols a { font-size: 17px; color: #fff; opacity: 0.95; transition: opacity 0.2s, color 0.2s; }
.footer-cols a:hover { color: var(--red-300); opacity: 1; }
.footer-social { display: flex; gap: 22px; justify-content: flex-end; margin-top: 40px; }
.footer-social a { color: #fff; opacity: 0.9; }
.footer-social a:hover { opacity: 1; color: var(--red-300); }
.footer-social svg { width: 21px; height: 21px; }
@media (max-width: 1023px) { .footer-social { justify-content: flex-start; } }
.copyright {
  background: #fff;
  text-align: center;
  padding: 22px var(--gutter);
  font-size: 16px;
  color: var(--ink);
}

/* ==========================================================================
   Inner pages
   ========================================================================== */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: calc(var(--header-h) + clamp(36px, 5vw, 72px)) 0 clamp(56px, 6vw, 88px);
}
.site-header--solid + .page-hero { padding-top: clamp(56px, 6vw, 88px); }
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 8, 10, 0.92) 0%, rgba(8, 8, 10, 0.76) 60%, rgba(20, 6, 8, 0.6) 100%);
}
.page-hero .container { position: relative; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb .sep { opacity: 0.6; }
.page-hero h1 { color: #fff; max-width: 17ch; margin-bottom: 20px; font-size: clamp(38px, 5.6vw, 72px); }
.page-hero p { font-size: clamp(17px, 1.5vw, 21px); max-width: 62ch; margin-bottom: 30px; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* two-column overview */
.overview__grid { display: grid; gap: 44px; align-items: center; }
@media (min-width: 1024px) {
  .overview__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(48px, 6vw, 96px); }
}
.overview__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3.4; }
.overview__media img { width: 100%; height: 100%; object-fit: cover; }
.overview__body .eyebrow { margin-bottom: 14px; }
.overview__body h2 { margin-bottom: 22px; }
.overview__body > p { color: var(--ink); font-size: clamp(17px, 1.4vw, 19.5px); margin-bottom: 18px; }
.check-list { display: grid; gap: 14px; margin: 26px 0 30px; }
@media (min-width: 640px) { .check-list--cols { grid-template-columns: 1fr 1fr; } }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; font-size: 16.5px; }
.check-list .check-ic { margin-top: 1px; }

/* feature cards */
.features { background: var(--paper); }
.features-grid { margin-top: clamp(36px, 4vw, 56px); display: grid; gap: 24px; }
@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.features-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px)  { .features-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.feature-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px 26px; }
.feature-card__ic {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--red-50);
  color: var(--red-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.feature-card__ic svg { width: 28px; height: 28px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--body); font-size: 16px; }

/* numbered process steps */
.steps-grid { margin-top: clamp(36px, 4vw, 56px); display: grid; gap: 24px; counter-reset: step; }
@media (min-width: 640px)  { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card { background: var(--paper); border-radius: var(--radius); padding: 30px 26px; }
.step-card .step-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--red-600);
  display: block;
  margin-bottom: 16px;
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { color: var(--body); font-size: 16px; }

/* stats band */
.stats-band { background: var(--ink-950); color: #fff; }
.stats-grid { display: grid; gap: 36px; grid-template-columns: repeat(2, 1fr); text-align: center; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 64px);
  color: var(--red-400);
  line-height: 1.1;
}
.stat span { font-size: clamp(15px, 1.4vw, 18px); opacity: 0.92; }

/* CTA section */
.cta {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.cta::before { content: ""; position: absolute; inset: 0; background: rgba(8, 8, 10, 0.86); }
.cta .container {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .cta .container { grid-template-columns: minmax(0, 1fr) 440px; gap: 80px; }
}
.cta h2 { color: #fff; margin-bottom: 18px; }
.cta p { font-size: clamp(17px, 1.4vw, 20px); margin-bottom: 26px; max-width: 56ch; }

/* location cards */
.loc-grid { margin-top: clamp(36px, 4vw, 56px); display: grid; gap: 24px; }
@media (min-width: 640px)  { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .loc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1440px) { .loc-grid { grid-template-columns: repeat(4, 1fr); } }
.loc-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.loc-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.loc-card__media img { width: 100%; height: 100%; object-fit: cover; }
.loc-card__body { padding: 22px 24px 26px; display: grid; gap: 6px; }
.loc-card__body span { color: var(--muted); font-size: 15px; }
.loc-card__body .go { margin-top: 10px; color: var(--red-600); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.loc-card__body .go svg { width: 18px; height: 18px; }

/* link pills (other service areas) */
.pill-links { margin-top: clamp(28px, 3vw, 44px); display: flex; flex-wrap: wrap; gap: 12px; }
.pill-links--center { justify-content: center; }
.pill-links a {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 600;
  font-size: 15.5px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pill-links a:hover { background: var(--red-600); border-color: var(--red-600); color: #fff; }

/* generic split head */
.split-head { display: grid; gap: 20px; }
@media (min-width: 1024px) {
  .split-head { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 64px; }
}

/* helpers */
.bg-paper { background: var(--paper); }
.mt-0 { margin-top: 0 !important; }
.section-tight { padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 80px); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-list { display: grid; gap: 22px; margin: 30px 0 8px; }
.contact-list li { display: flex; align-items: flex-start; gap: 16px; }
.contact-ic {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 14px;
  background: var(--red-50);
  color: var(--red-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-ic svg { width: 24px; height: 24px; }
.contact-list strong { display: block; font-size: 17px; margin-bottom: 2px; }
.contact-list span, .contact-list a { color: var(--body); font-size: 16px; line-height: 1.5; }
.contact-list span.contact-ic { color: var(--red-600); }
.contact-list a { font-weight: 600; transition: color 0.2s ease; }
.contact-list a:hover { color: var(--red-600); }

/* ==========================================================================
   Scroll-reveal animation (classes applied by js/main.js)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Dark estimate card refinements (the card now sits on a black hero)
   ========================================================================== */
.form-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-top: 4px solid var(--red-600);
}
.form-card__sub { color: rgba(255, 255, 255, 0.78); }
.form-card__legal { color: rgba(255, 255, 255, 0.62); opacity: 1; }
.brand-note { color: rgba(255, 255, 255, 0.78); opacity: 1; }

/* ==========================================================================
   Price pills — the "from $X" chip used in hero + card headers
   ========================================================================== */
.price-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: var(--red-600);
  color: #fff;
  border-radius: 999px;
  padding: 9px 20px;
  font-weight: 800;
  font-size: 16px;
  white-space: nowrap;
}
.price-pill span { font-weight: 600; font-size: 14px; opacity: 0.85; }
.page-hero .price-pill { margin-bottom: 22px; }

/* ==========================================================================
   Package cards — a category page listing the services inside it
   ========================================================================== */
.pkg-grid { margin-top: clamp(36px, 4vw, 56px); display: grid; gap: 24px; }
@media (min-width: 640px)  { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); } }

.pkg-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--red-300); }
.pkg-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper); }
.pkg-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.pkg-card:hover .pkg-card__media img { transform: scale(1.05); }
.pkg-card__body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.pkg-card__body h3 { margin-bottom: 10px; }
.pkg-card__body > p { color: var(--body); font-size: 16px; margin-bottom: 18px; }
.pkg-card .price-pill { align-self: flex-start; margin-bottom: 18px; }
.pkg-card__list { display: grid; gap: 9px; margin-bottom: 24px; }
.pkg-card__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--body);
}
.pkg-card__list li::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--red-600);
}
.pkg-card .btn { margin-top: auto; }

/* ==========================================================================
   Price table — what each package costs per vehicle size
   ========================================================================== */
.price-table {
  margin-top: clamp(28px, 3vw, 40px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.price-table__head {
  background: var(--ink-950);
  color: #fff;
  padding: 20px 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.price-table__head h3 { color: #fff; margin: 0; }
.price-table__head span { font-size: 15px; color: var(--red-300); font-weight: 600; }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 26px;
  border-top: 1px solid var(--line);
}
.price-row:first-child { border-top: 0; }
.price-row strong { font-size: 16.5px; font-weight: 700; }
.price-row .amount {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--red-600);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.price-row .amount--sm { font-family: var(--font-body); font-size: 17px; font-weight: 800; }
.price-note {
  padding: 16px 26px 20px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
@media (max-width: 479px) {
  .price-row { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* price tables sitting side by side in a section */
.price-grid { display: grid; gap: 28px; align-items: start; }
@media (min-width: 900px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
.price-grid .price-table { margin-top: 0; }

/* ==========================================================================
   Tier cards — ceramic coating durations
   ========================================================================== */
.tier-grid { margin-top: clamp(36px, 4vw, 56px); display: grid; gap: 24px; }
@media (min-width: 640px)  { .tier-grid { grid-template-columns: repeat(3, 1fr); } }
.tier-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.tier-card--featured { background: var(--ink-950); border-color: var(--ink-950); color: #fff; }
.tier-card--featured h3, .tier-card--featured .tier-card__years { color: #fff; }
.tier-card--featured p { color: rgba(255, 255, 255, 0.8); }
.tier-card__flag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--red-600);
  color: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tier-card__years {
  font-family: var(--font-display);
  font-size: clamp(46px, 5vw, 62px);
  line-height: 1;
  color: var(--red-600);
  margin-bottom: 6px;
}
.tier-card h3 { margin-bottom: 12px; }
.tier-card p { color: var(--body); font-size: 16px; margin-bottom: 22px; }
.tier-card ul { display: grid; gap: 10px; margin-bottom: 26px; }
.tier-card li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; line-height: 1.5; }
.tier-card li .check-ic { width: 20px; height: 20px; margin-top: 2px; }
.tier-card li .check-ic svg { width: 11px; height: 11px; }
.tier-card .btn { margin-top: auto; }
.tier-card--featured .btn { background: var(--red-600); }
.tier-card--featured .btn:hover { background: var(--red-500); }

/* ==========================================================================
   Add-on list — flat priced extras
   ========================================================================== */
.addon-grid { margin-top: clamp(36px, 4vw, 56px); display: grid; gap: 20px; }
@media (min-width: 640px)  { .addon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .addon-grid { grid-template-columns: repeat(3, 1fr); } }
.addon-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.addon-card:hover { border-color: var(--red-300); box-shadow: var(--shadow); }
.addon-card__ic {
  width: 50px;
  height: 50px;
  flex: none;
  border-radius: 13px;
  background: var(--red-50);
  color: var(--red-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.addon-card__ic svg { width: 24px; height: 24px; }
.addon-card__text { flex: 1; min-width: 0; }
.addon-card h3 { font-size: 18px; line-height: 1.3; margin-bottom: 4px; }
.addon-card p { color: var(--body); font-size: 15.5px; line-height: 1.5; margin-bottom: 8px; }
.addon-card .amount { font-weight: 800; color: var(--red-600); font-size: 18px; }

/* ==========================================================================
   Tint percentage swatches
   ========================================================================== */
.tint-grid {
  margin-top: clamp(32px, 4vw, 48px);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px)  { .tint-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .tint-grid { grid-template-columns: repeat(6, 1fr); } }
.tint-swatch {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}
.tint-swatch__film {
  height: 96px;
  background-image: linear-gradient(rgba(10, 10, 12, var(--vlt)), rgba(10, 10, 12, var(--vlt))),
    linear-gradient(120deg, #cfd6de 0%, #eef1f4 45%, #b9c3cd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}
.tint-swatch__label { padding: 12px 8px 14px; font-size: 14.5px; font-weight: 600; color: var(--body); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-filters {
  margin-top: clamp(28px, 3vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.gallery-filters button {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--body);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.gallery-filters button:hover { border-color: var(--red-300); color: var(--ink); }
.gallery-filters button.is-active { background: var(--red-600); border-color: var(--red-600); color: #fff; }

.gallery-grid {
  margin-top: clamp(28px, 3vw, 44px);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
@media (min-width: 1440px) { .gallery-grid { grid-template-columns: repeat(5, 1fr); } }

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 12, 0.5), rgba(10, 10, 12, 0) 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:focus-visible { outline: 3px solid var(--red-600); outline-offset: 3px; }
.gallery-item[hidden] { display: none; }
.gallery-empty { text-align: center; color: var(--muted); padding: 40px 0; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 6, 8, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(100%, 640px);
  max-height: 82vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}
.lightbox__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: max(18px, env(safe-area-inset-bottom));
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  padding: 0 20px;
}
.lightbox__btn {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lightbox__btn:hover { background: var(--red-600); }
.lightbox__btn svg { width: 24px; height: 24px; }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 12px; top: 50%; transform: translateY(-50%); }
@media (min-width: 1024px) {
  .lightbox__prev { left: 32px; }
  .lightbox__next { right: 32px; }
}
body.lightbox-open { overflow: hidden; }

/* ==========================================================================
   Booking page
   ========================================================================== */
.booking { background: var(--paper); }
.booking__frame-wrap {
  margin-top: clamp(28px, 3vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.booking__bar {
  background: var(--ink-950);
  color: #fff;
  padding: 16px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  font-size: 15.5px;
}
.booking__bar a { color: var(--red-300); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.booking__bar a:hover { color: #fff; }
.booking__bar svg { width: 16px; height: 16px; }
.booking-frame {
  display: block;
  width: 100%;
  border: 0;
  height: 1100px;
  background: #fff;
}
@media (min-width: 640px)  { .booking-frame { height: 1000px; } }
@media (min-width: 1024px) { .booking-frame { height: 1180px; } }

.booking-steps { display: grid; gap: 22px; margin: 30px 0 8px; }
.booking-steps li { display: flex; gap: 16px; align-items: flex-start; }
.booking-steps .num {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  background: var(--red-600);
  color: #fff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.booking-steps strong { display: block; font-size: 17px; margin-bottom: 2px; }
.booking-steps span { color: var(--body); font-size: 16px; line-height: 1.55; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq { margin-top: clamp(32px, 4vw, 48px); max-width: 860px; margin-inline: auto; display: grid; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  text-align: left;
  font-weight: 700;
  font-size: 17.5px;
  color: var(--ink);
}
.faq__q .caret { width: 20px; height: 20px; flex: none; color: var(--red-600); transition: transform 0.2s ease; }
.faq__item.is-open .faq__q .caret { transform: rotate(180deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.25s ease; }
.faq__a > div { overflow: hidden; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a p { padding: 0 24px 22px; color: var(--body); font-size: 16.5px; line-height: 1.65; }

/* ==========================================================================
   Misc helpers
   ========================================================================== */
.bg-ink { background: var(--ink-950); color: #fff; }
.bg-ink h2, .bg-ink h3, .bg-ink .eyebrow { color: #fff; }
.bg-ink p { color: rgba(255, 255, 255, 0.82); }
.section-head--center .lead { max-width: 720px; margin: 16px auto 0; }
.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;
}

/* ==========================================================================
   Blog — index cards and article pages (/blog, /blog/<slug>)
   Uses the same tokens, radii and shadows as the rest of the site.
   ========================================================================== */
.blog-index { padding-top: clamp(56px, 6vw, 96px); }
.blog-index--related { background: var(--paper); }

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 34px 28px;
}

.post-card { position: relative; display: flex; flex-direction: column; }
.post-card__media {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 2.7;
  background: var(--paper);
}
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red-600);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
}
.post-card__body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 24px 24px;
  margin: -34px 16px 0;
}
.post-card__meta { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.post-card__body h3 { margin-bottom: 10px; }
.post-card__body h3 a:hover { color: var(--red-600); }
.post-card__body p { font-size: 16px; margin-bottom: 18px; }
.post-card__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--red-600);
}
.post-card__more svg { width: 17px; height: 17px; }
.post-card__more:hover { gap: 12px; }

/* ---------- article ---------- */
.post { padding: clamp(40px, 5vw, 72px) 0 0; }
.post__head { max-width: 860px; text-align: center; }
.post__head .breadcrumb { color: var(--muted); justify-content: center; }
.post__head .breadcrumb a:hover { color: var(--red-600); }
.post__badge {
  display: inline-block;
  background: var(--red-50);
  color: var(--red-700);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.post__head h1 { font-size: clamp(34px, 4.6vw, 58px); margin-bottom: 14px; }
.post__meta { color: var(--muted); font-size: 15.5px; }

.post__hero {
  max-width: calc(1080px + var(--gutter) * 2);
  margin-top: clamp(28px, 3.5vw, 44px);
}
.post__hero img {
  width: 100%;
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.post__body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(36px, 4.5vw, 60px) 0 clamp(48px, 6vw, 84px);
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--body);
}
.post__body > * + * { margin-top: 22px; }
.post__body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
  margin-top: clamp(38px, 4vw, 54px);
}
.post__body h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 32px;
}
/* :not(.btn) matters - a bare `.post__body a` rule outranks `.btn`'s own
   color, which renders the CTA buttons red-on-red. */
.post__body a:not(.btn) { color: var(--red-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.post__body a:not(.btn):hover { color: var(--red-700); }
.post__body .btn { color: #fff; text-decoration: none; }
.post__body .btn--light, .post__body .btn--phone { color: var(--ink); }
.post__body strong { color: var(--ink); font-weight: 700; }
.post__body ul, .post__body ol { padding-left: 22px; }
.post__body ul { list-style: disc; }
.post__body ol { list-style: decimal; }
.post__body li + li { margin-top: 9px; }
.post__body li::marker { color: var(--red-600); }
.post__body blockquote {
  border-left: 4px solid var(--red-600);
  background: var(--paper);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  font-size: 18px;
  color: var(--ink);
}
.post__body figure { margin-top: clamp(30px, 3.5vw, 42px); }
.post__body figure img {
  width: 100%;
  aspect-ratio: 16 / 9.4;
  object-fit: cover;
  border-radius: var(--radius);
}
.post__body figcaption {
  margin-top: 11px;
  font-size: 14.5px;
  color: var(--muted);
  text-align: center;
}
.post__body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  display: block;
  overflow-x: auto;
}
.post__body th, .post__body td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; }
.post__body th { font-weight: 700; color: var(--ink); background: var(--paper); }
.post__credits { font-size: 14px; color: var(--muted); }

.post__cta {
  margin-top: clamp(38px, 4vw, 52px);
  background: var(--surface-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 40px);
}
.post__cta p { margin-bottom: 22px; font-size: 18px; color: rgba(255, 255, 255, 0.88); }
.post__back { display: inline-block; margin-top: 30px; font-weight: 700; color: var(--red-600); }
.post__back:hover { text-decoration: underline; }

@media (max-width: 639px) {
  .post__body { font-size: 17px; }
  .post-card__body { margin: -28px 12px 0; }
}

/* ==========================================================================
   promo popup — seasonal offer, home + window tinting
   The artwork is the whole message, so the panel is just the image plus a
   close button. Sits above the lightbox (z-index 200) and the header.
   ========================================================================== */
.promo {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.promo.is-open { opacity: 1; visibility: visible; }
.promo__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 8, 0.82);
}
.promo__panel {
  position: relative;
  width: min(100%, 880px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.25s ease;
}
.promo.is-open .promo__panel { transform: none; }
.promo__art { display: block; }
.promo__art img {
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}
.promo__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red-600);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(6, 6, 8, 0.45);
  transition: background 0.2s ease;
}
.promo__close:hover { background: var(--red-500); }
.promo__close svg { width: 22px; height: 22px; }
body.promo-open { overflow: hidden; }

@media (max-width: 639px) {
  .promo { padding: 20px 16px; }
  .promo__close { top: -12px; right: -6px; width: 40px; height: 40px; }
  .promo__close svg { width: 20px; height: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .promo, .promo__panel { transition: none; }
  .promo__panel { transform: none; }
}
