/* ==========================================================================
   Bayshore Demolition & Construction — shared stylesheet
   Palette: charcoal/steel structure + navy-blue accent
   Breakpoints: mobile <640 / tablet 640–1023 / desktop 1024–1439 / large ≥1440
   ========================================================================== */

:root {
  --ink-950: #16181a;
  --ink-900: #1e2124;
  --ink-800: #292d30;
  --brand-700: #1d4ed8;
  --brand-800: #1738a8;
  --steel-500: #55606b;
  --steel-300: #aab4bc;
  --tint-100: #e7edf7;
  --red-500: #c8402c;
  --paper: #f3f1ec;
  --card: #ffffff;
  --ink: #17191b;
  --body: #3c3f43;
  --muted: #6f7479;
  --line: #e3e0da;
  --star: #f5b921;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 10px 30px rgba(20, 20, 18, 0.08);
  --shadow-lg: 0 24px 60px rgba(20, 20, 18, 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(--brand-700);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--brand-800); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(1px); box-shadow: none; }
.btn .arrow { width: 20px; height: 20px; flex: none; transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.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(--brand-700); }
.btn--phone-lg { font-size: 18px; }
.btn--phone-lg svg { width: 20px; height: 20px; }
.btn--block { width: 100%; }

.icon-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tint-100);
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.icon-btn:hover, .icon-btn--solid { background: var(--brand-700); 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: 54px;
  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: 46px; padding: 5px 9px; } }

/* 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: 1199px) {
  .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(--tint-100); color: var(--brand-700); }
.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(--steel-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(6, 14, 26, 0.78) 0%, rgba(6, 14, 26, 0.45) 55%, rgba(6, 14, 26, 0.25) 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(--steel-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(--ink-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; }
.form-card__brands .check-ic { flex: none; }

/* ==========================================================================
   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(--brand-700);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.service-card:hover .service-card__icon { background: var(--brand-700); color: #fff; transform: rotate(-10deg) scale(1.08); }
.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(--brand-700);
  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; }

/* ==========================================================================
   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(--tint-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(--tint-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-700);
  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(--brand-700);
  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(--brand-700); }
.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; transition: transform 0.4s ease; }
.blog-card:hover > img { transform: scale(1.06); }
.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(--brand-700);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--steel-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(--tint-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 address .footer-license { font-size: 14px; opacity: 0.7; }
.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(--steel-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(--steel-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(6, 14, 26, 0.82) 0%, rgba(6, 14, 26, 0.5) 60%, rgba(6, 14, 26, 0.3) 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;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature-card__ic {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--tint-100);
  color: var(--brand-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.feature-card:hover .feature-card__ic { background: var(--brand-700); color: #fff; transform: rotate(-6deg) scale(1.05); }
.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); } }
.steps-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px)  { .steps-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); background: #fff; }
.step-card .step-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--brand-700);
  display: block;
  margin-bottom: 16px;
  transition: transform 0.25s ease;
}
.step-card:hover .step-num { transform: scale(1.08); }
.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(--steel-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: rgba(8, 16, 30, 0.8); }
.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(--brand-700); 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(--brand-700); border-color: var(--brand-700); 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(--tint-100);
  color: var(--brand-700);
  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(--brand-700); }
.contact-list a { font-weight: 600; transition: color 0.2s ease; }
.contact-list a:hover { color: var(--brand-700); }

/* ==========================================================================
   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; }
}
