/* ==========================================================================
   Bay Area Appliance Installation — shared stylesheet
   Breakpoints: mobile <640 / tablet 640–1023 / desktop 1024–1439 / large ≥1440
   ========================================================================== */

:root {
  --ink-950: #17100E;
  --ink-900: #241A16;
  --red-800: #7E1710;
  --red-700: #9E2418;
  --red-600: #B32A1B;
  --red-500: #D2452F;
  --gold-600: #C0870B;
  --gold-500: #E8A81C;
  --gold-300: #F5CE7C;
  --cream-100: #FBF0DE;
  --paper: #F7F2EB;
  --card: #ffffff;
  --ink: #17110F;
  --body: #4A403B;
  --muted: #7C6F68;
  --line: #E7DED3;
  --star: #F5B622;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 10px 30px rgba(40, 20, 14, 0.09);
  --shadow-lg: 0 24px 60px rgba(40, 20, 14, 0.16);
  --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-800); }
.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: #f4f4f0; }
.btn--phone {
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  box-shadow: var(--shadow);
}
.btn--phone:hover { background: #f4f4f0; }
.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(--cream-100);
  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: 62px;
  width: auto;
  background: #fff;
  border-radius: 10px;
  padding: 6px 12px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.logo:hover img { transform: scale(1.04); }
@media (max-width: 639px) { .logo img { height: 50px; padding: 5px 10px; } }

/* 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; }
}
/* early-desktop band: everything must fit on one row with room to spare */
@media (min-width: 1024px) and (max-width: 1279px) {
  .header-cta .btn--phone { display: none; }
  .site-header .container { gap: 14px; }
  .nav { gap: 2px; }
  .nav__link { font-size: 15px; padding: 11px 10px; }
  .header-cta .btn { padding: 12px 16px; }
}

.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;
  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 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(--cream-100); 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(--gold-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(20, 10, 8, 0.86) 0%, rgba(30, 12, 9, 0.60) 52%, rgba(60, 20, 12, 0.34) 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-500);
  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(--gold-500);
  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(29, 74, 116, 0.55); }
.form-card .btn { background: var(--red-800); margin-top: 6px; padding: 17px 26px; }
.form-card .btn:hover { background: var(--ink-950); }
.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(--gold-500); border-color: var(--gold-500); 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(--ink-950); }
.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(--cream-100);
}
.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(--cream-100);
  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(--red-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(--gold-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-500); text-decoration-color: var(--red-500); }
.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(--cream-100);
  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, minmax(0, 1fr)); gap: 32px 26px; }
@media (min-width: 640px)  { .footer-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .footer-cols { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 28px 22px; } }
.footer-cols ul { display: grid; gap: 13px; align-content: start; }
.footer-cols a { line-height: 1.35; display: inline-block; }
.footer-cols a { font-size: 15.5px; color: #fff; opacity: 0.95; transition: opacity 0.2s, color 0.2s; }
.footer-cols a:hover { color: var(--gold-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(--gold-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(20, 10, 8, 0.88) 0%, rgba(32, 13, 9, 0.62) 58%, rgba(64, 22, 13, 0.38) 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(--cream-100);
  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(--gold-500);
  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(--gold-300);
  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: linear-gradient(100deg, rgba(20, 10, 8, 0.88) 0%, rgba(40, 14, 10, 0.72) 100%); }
.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(--cream-100);
  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; }
}

/* ==========================================================================
   Bay Area Appliance Installation — brand refinements & new components
   ========================================================================== */

/* ---------- brand-specific overrides on inherited components ---------- */
.logo img { padding: 8px 15px; }
.logo--footer img { height: 70px; }
.logo--footer img { background: #fff; }

.btn { box-shadow: 0 8px 20px rgba(126, 23, 16, 0.22); }
.btn--phone { box-shadow: none; }
.btn--phone svg { color: var(--red-600); }

.form-card { background: var(--red-700); }
.form-card .btn { background: var(--gold-500); color: var(--ink-950); box-shadow: none; }
.form-card .btn:hover { background: var(--gold-300); color: var(--ink-950); }
.form-card .btn svg { color: var(--ink-950); }

.review-card--hl { background: var(--red-600); border-color: var(--red-600); }
.review-card--hl .avatar-fallback { background: var(--gold-500); color: var(--ink-950); }

.why__tab.is-active { border-left-color: var(--gold-500); }
.step-card .step-num { color: var(--gold-600); }
.stat strong { color: var(--gold-300); }
.check-ic { background: var(--gold-500); }
.check-ic svg { color: var(--ink-950); }
.hero__checks .check-ic { background: var(--gold-500); }

.site-header { border-bottom: 1px solid transparent; }
.site-header--solid { border-bottom-color: rgba(255, 255, 255, 0.08); }

/* location cards render a bare <img> child */
.loc-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.loc-card { overflow: hidden; }
.loc-card:hover > img { transform: scale(1.04); }
.loc-card__body p { color: var(--body); font-size: 15.5px; }

/* ---------- desktop mega menu ---------- */
.site-header .container { position: relative; }
.nav__item--mega { position: static; }
.nav__menu--mega {
  --mega-cols: 4;
  display: grid;
  grid-template-columns: repeat(var(--mega-cols), minmax(0, 1fr));
  gap: 4px 12px;
  top: 100%;
  left: var(--gutter);
  right: var(--gutter);
  min-width: 0;
  width: auto;
  padding: 26px 26px 24px;
  margin-top: 12px;
  transform: translateY(8px);
}
/* invisible bridge so the pointer can travel from the link into the panel */
.nav__menu--mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.nav__item--mega:hover > .nav__menu--mega,
.nav__item--mega:focus-within > .nav__menu--mega { transform: translateY(0); }
.nav__col { display: flex; flex-direction: column; min-width: 0; }
.nav__col-head {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 15.5px;
  letter-spacing: 0.03em;
  color: var(--red-600) !important;
  padding: 6px 10px 10px;
  margin-bottom: 6px;
  border-bottom: 2px solid var(--cream-100);
  border-radius: 0;
}
.nav__col-head:hover { background: transparent !important; color: var(--red-800) !important; border-bottom-color: var(--gold-500); }
.nav__menu--mega a { font-size: 15px; padding: 8px 10px; font-weight: 600; line-height: 1.3; }
.nav__menu--mega a:hover { background: var(--cream-100); color: var(--red-600); }
@media (min-width: 1024px) and (max-width: 1279px) {
  .nav__menu--mega { padding: 20px; gap: 2px 8px; }
  .nav__menu--mega a { font-size: 14px; padding: 7px 8px; }
  .nav__col-head { font-size: 14.5px; padding: 6px 8px 9px; }
}

/* ---------- mobile menu: second level ---------- */
.mobile-menu__all {
  display: block;
  padding: 12px 2px 12px 16px;
  color: var(--gold-500);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
}
.mobile-menu__subgroup { border-top: 1px solid rgba(255, 255, 255, 0.09); }
.mobile-menu__sub-top {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 14px 2px 14px 16px;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  text-align: left;
}
.mobile-menu__sub-top .caret { width: 16px; height: 16px; transition: transform 0.2s ease; flex: none; }
.mobile-menu__subgroup.is-open .mobile-menu__sub-top .caret { transform: rotate(180deg); }
.mobile-menu__sub2 { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.25s ease; }
.mobile-menu__sub2 > div { overflow: hidden; }
.mobile-menu__subgroup.is-open .mobile-menu__sub2 { grid-template-rows: 1fr; }
.mobile-menu__sub2 a {
  display: block;
  padding: 11px 2px 11px 32px;
  color: var(--gold-300);
  font-weight: 600;
  font-size: 16px;
}
.mobile-menu__sub2 a:last-child { padding-bottom: 18px; }
.mobile-menu__sub a:last-child { padding-bottom: 12px; }

/* ---------- service category cards ---------- */
.services-grid--5 { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px)  { .services-grid--5 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .services-grid--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1560px) { .services-grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.service-card { min-width: 0; display: flex; flex-direction: column; }
.service-card__body { display: flex; flex-direction: column; flex: 1; }
.service-card__list { flex: 1; align-content: start; }
.service-card__body .btn { min-width: 0; white-space: normal; text-align: center; }
.service-card__list a { min-width: 0; overflow-wrap: anywhere; }
.service-card__list { margin: 0 0 20px; display: grid; gap: 2px; }
.service-card__list a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--body);
  padding: 5px 0;
  transition: color 0.15s ease;
}
.service-card__list a:hover { color: var(--red-600); }
.service-card__list svg { width: 15px; height: 15px; flex: none; color: var(--gold-600); }
.service-card__body p { min-height: 0; margin-bottom: 14px; }
@media (min-width: 1560px) {
  .services-grid--5 .service-card__body { margin: -60px 12px 0; padding: 20px 18px 22px; }
  .services-grid--5 .service-card__body h3 { font-size: 21px; }
  .services-grid--5 .service-card__list a { font-size: 14px; }
}

/* ---------- brand logo strip ---------- */
.brands__intro { max-width: 760px; margin: 18px auto 0; text-align: center; font-size: clamp(16px, 1.4vw, 19px); color: var(--body); }
.brand-grid {
  margin-top: clamp(32px, 4vw, 52px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 480px)  { .brand-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px)  { .brand-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .brand-grid { grid-template-columns: repeat(6, 1fr); } }
.brand-logo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand-logo:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.brand-logo img {
  max-height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.brands__note {
  margin-top: clamp(24px, 3vw, 36px);
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

/* ---------- mini service cards ---------- */
.mini-grid { margin-top: clamp(32px, 4vw, 52px); display: grid; gap: 20px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 560px)  { .mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .mini-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .mini-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.mini-card { min-width: 0; }
.mini-card strong { overflow-wrap: anywhere; }
.mini-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.mini-card__ic {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--cream-100);
  color: var(--red-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.mini-card__ic svg { width: 26px; height: 26px; }
.mini-card strong { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 20px; line-height: 1.15; letter-spacing: 0.005em; }
.mini-card__text { color: var(--body); font-size: 15.5px; line-height: 1.5; flex: 1; }
.mini-card .go { margin-top: 4px; color: var(--red-600); font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; }
.mini-card .go svg { width: 17px; height: 17px; }
.bg-paper .mini-card { background: #fff; }

/* ---------- region grid ---------- */
.region-grid { margin-top: clamp(32px, 4vw, 52px); display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 640px)  { .region-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .region-grid { grid-template-columns: repeat(4, 1fr); } }
.region-card h3 { margin-bottom: 14px; padding-bottom: 12px; border-bottom: 2px solid var(--cream-100); }
.region-card h3 a { transition: color 0.15s ease; }
.region-card h3 a:hover { color: var(--red-600); }
.region-card .pill-links { margin-top: 0; gap: 9px; }
.region-card .pill-links a { font-size: 14.5px; padding: 8px 14px; }
.pill-links--muted { margin-top: 14px; opacity: 0.72; }
.pill-links--muted a { font-size: 14px; padding: 7px 13px; }

/* ---------- services hub blocks ---------- */
.svc-block + .svc-block { padding-top: 0; }
.svc-block:nth-of-type(even) { background: var(--paper); }
.svc-block:nth-of-type(even) + .svc-block { padding-top: clamp(56px, 7vw, 96px); }
.split-head h2 { max-width: 22ch; }
.split-head__text { margin-top: 14px; color: var(--body); font-size: clamp(16px, 1.4vw, 19px); max-width: 54ch; line-height: 1.55; }

/* ---------- FAQ accordion ---------- */
.faq-list {
  margin-top: clamp(32px, 4vw, 52px);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: clamp(16.5px, 1.4vw, 18.5px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--red-600); }
.faq-item__ic {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--red-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq-item__ic svg { width: 17px; height: 17px; }
.faq-item[open] .faq-item__ic { transform: rotate(180deg); background: var(--red-600); color: #fff; }
.faq-item__body { padding: 0 24px 22px; }
.faq-item__body p { color: var(--body); font-size: 16.5px; line-height: 1.62; max-width: 76ch; }

/* ---------- footer additions ---------- */
.site-footer__blurb { color: rgba(255, 255, 255, 0.72); font-size: 15.5px; line-height: 1.6; margin: 18px 0 20px; max-width: 42ch; }
.footer-cols h4,
.footer-areas h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--gold-300);
  margin-bottom: 14px;
}
.footer-areas { margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.footer-areas__list { display: flex; flex-wrap: wrap; gap: 8px 6px; }
.footer-areas__list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.footer-areas__list a:hover { background: var(--red-600); border-color: var(--red-600); color: #fff; }

/* ---------- thank-you page ---------- */
.thanks { text-align: center; padding: clamp(70px, 10vw, 140px) 0; }
.thanks__ic {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--red-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.thanks__ic svg { width: 44px; height: 44px; }
.thanks h1 { margin-bottom: 18px; }
.thanks p { max-width: 60ch; margin: 0 auto 32px; font-size: clamp(17px, 1.4vw, 20px); color: var(--body); }
.thanks .page-hero__actions { justify-content: center; }
.header-cta--always { display: flex !important; margin-left: auto; }
@media (max-width: 519px) { .header-cta--always .btn--phone { padding: 12px 16px; font-size: 15px; } }

/* ---------- large-desktop polish ---------- */
@media (min-width: 1440px) {
  .mini-grid--4 { gap: 24px; }
  .brand-grid { gap: 18px; }
  .brand-logo { min-height: 104px; }
  .brand-logo img { max-height: 46px; }
}

/* ==========================================================================
   Project gallery + lightbox
   ========================================================================== */
.gallery__intro {
  max-width: 720px;
  margin: 18px auto 0;
  text-align: center;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--body);
}

/* ---------- filter pills ---------- */
.gallery__filters {
  margin-top: clamp(28px, 3vw, 40px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.gallery__filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.gallery__filter:hover { border-color: var(--red-600); color: var(--red-600); }
.gallery__filter .count {
  font-size: 12.5px;
  font-weight: 800;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--cream-100);
  color: var(--red-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gallery__filter.is-active {
  background: var(--red-600);
  border-color: var(--red-600);
  color: #fff;
}
.gallery__filter.is-active .count { background: rgba(255, 255, 255, 0.22); color: #fff; }

/* ---------- masonry grid ---------- */
.shot-grid {
  margin-top: clamp(30px, 3.5vw, 46px);
  columns: 1;
  column-gap: 22px;
}
@media (min-width: 560px)  { .shot-grid { columns: 2; } }
@media (min-width: 1024px) { .shot-grid { columns: 3; } }
@media (min-width: 1560px) { .shot-grid { columns: 4; column-gap: 26px; } }

.shot {
  break-inside: avoid;
  margin: 0 0 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
@media (min-width: 1560px) { .shot { margin-bottom: 26px; } }
.shot:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.shot.is-hidden { display: none; }

.shot__btn {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  line-height: 0;
  background: var(--paper);
}
.shot__btn img { width: 100%; height: auto; transition: transform 0.5s ease; }
.shot:hover .shot__btn img { transform: scale(1.04); }
.shot__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 16, 14, 0) 55%, rgba(23, 16, 14, 0.45) 100%);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.shot:hover .shot__btn::after { opacity: 1; }
.shot__zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--red-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.22s ease, transform 0.22s ease;
  box-shadow: var(--shadow);
}
.shot__zoom svg { width: 20px; height: 20px; }
.shot:hover .shot__zoom,
.shot__btn:focus-visible .shot__zoom { opacity: 1; transform: scale(1); }

.shot__cap { padding: 18px 20px 20px; display: grid; gap: 7px; }
.shot__cap strong {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: 0.005em;
}
.shot__cap > span { color: var(--body); font-size: 15px; line-height: 1.5; }
.shot__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.shot__tags a {
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--cream-100);
  color: var(--red-600);
  transition: background 0.15s ease, color 0.15s ease;
}
.shot__tags a:hover { background: var(--red-600); color: #fff; }

.gallery__cta { margin-top: clamp(30px, 3.5vw, 44px); display: flex; justify-content: center; }
.gallery__empty { margin-top: 40px; text-align: center; color: var(--muted); font-size: 17px; }
.gallery__empty button { color: var(--red-600); font-weight: 700; text-decoration: underline; }

/* ---------- lightbox ---------- */
/* `display:flex` below would otherwise beat the UA `[hidden]{display:none}` rule and
   leave a transparent full-screen overlay swallowing every click on the page. */
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(14, 8, 6, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 56px);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.lightbox.is-open { opacity: 1; }
body.lightbox-open { overflow: hidden; }

.lightbox__inner {
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.lightbox__inner img {
  max-width: 100%;
  max-height: min(68vh, 760px);
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  background: var(--ink-950);
}
.lightbox__inner figcaption {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  color: #fff;
  max-width: 62ch;
}
.lightbox__inner figcaption strong {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.15;
}
.lightbox__text { color: rgba(255, 255, 255, 0.78); font-size: clamp(15px, 1.3vw, 17px); line-height: 1.55; }
.lightbox__links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 2px; }
.lightbox__links a {
  font-size: 13.5px;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: background 0.15s ease, color 0.15s ease;
}
.lightbox__links a:hover { background: var(--gold-500); color: var(--ink-950); }
.lightbox__count { font-size: 13px; color: rgba(255, 255, 255, 0.5); letter-spacing: 0.06em; }

.lightbox__close,
.lightbox__nav {
  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.18s ease, color 0.18s ease;
  z-index: 2;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--gold-500); color: var(--ink-950); }
.lightbox__close svg,
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__close { top: clamp(14px, 2.5vw, 30px); right: clamp(14px, 2.5vw, 30px); }
.lightbox__nav--prev { left: clamp(10px, 2vw, 30px); top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: clamp(10px, 2vw, 30px); top: 50%; transform: translateY(-50%); }
@media (max-width: 639px) {
  .lightbox__nav { width: 44px; height: 44px; top: auto; bottom: 16px; transform: none; }
  .lightbox__nav--prev { left: 50%; margin-left: -52px; }
  .lightbox__nav--next { right: 50%; margin-right: -52px; }
  .lightbox { padding-bottom: 78px; }
  .lightbox__inner img { max-height: 46vh; }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox, .shot, .shot__btn img, .shot__zoom { transition: none; }
}
