/* Trident HVAC — section styles */

/* ── NAV (floating pill, over hero) ───────────────── */
.nav-float {
  position: absolute;
  top: 24px; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
/* Push nav below the announcement bar when present (offer-bar.js sets --offer-bar-h) */
.has-offer-bar .nav-float { top: calc(24px + var(--offer-bar-h, 40px)); }
.nav-float-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 48px);
  max-width: 1320px;
  pointer-events: auto;
}
.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.nav-pill a {
  display: inline-block;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 999px;
  transition: background .15s;
}
.nav-pill a:hover { background: var(--bg-3); }

/* ── Services dropdown (desktop) ──────────────────── */
.nav-services-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-services-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav-services-trigger.active { color: var(--accent); }
.nav-services-chevron {
  transition: transform .18s ease;
  color: currentColor;
  opacity: .7;
}
.nav-services-wrap.is-open .nav-services-chevron,
.nav-services-wrap:hover .nav-services-chevron { transform: rotate(180deg); opacity: 1; }

.nav-services-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 480px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(5, 29, 62, 0.18);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  z-index: 60;
}
.nav-services-wrap.is-open .nav-services-panel,
.nav-services-wrap:hover .nav-services-panel,
.nav-services-wrap:focus-within .nav-services-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .18s ease, transform .18s ease;
}
.nav-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.nav-services-item {
  display: flex !important;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px !important;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  background: transparent;
  transition: background .15s, transform .15s;
}
.nav-services-item:hover { background: var(--bg-2); transform: translateX(2px); }
.nav-services-item-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.nav-services-item-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink-3);
}
.nav-services-all {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 12px 14px !important;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent) !important;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
}
.nav-services-all:hover { background: var(--accent-soft); }
.nav-services-all svg { color: currentColor; }

@media (max-width: 1180px) {
  .nav-services-panel { width: 380px; }
  .nav-services-grid { grid-template-columns: 1fr; }
}

.nav-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 0 8px 0 22px;
  background: var(--navy-950);
  border-radius: 999px;
  color: #fff;
  font: 600 14px var(--font-display);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.nav-book-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo {
  height: 99px;
  width: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  /* Nudge the nav logo up + right of its natural flex slot so the
     wordmark sits a bit prouder over the page edge. */
  transform: translate(10px, -8px);
}
@media (max-width: 768px) {
  .brand-logo { height: 86px; transform: translate(8px, -6px); }
}
@media (max-width: 480px) {
  .brand-logo { height: 75px; transform: translate(6px, -4px); }
}

/* Footer logo: bigger on the dark surface where it's the focal element,
   and no nudge — it sits inside a column, not against a page edge. */
.brand-logo.brand-logo-footer { height: 147px; transform: none; }
@media (max-width: 768px) {
  .brand-logo.brand-logo-footer { height: 123px; }
}
@media (max-width: 480px) {
  .brand-logo.brand-logo-footer { height: 99px; }
}
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(214,51,67,.32);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand-text em {
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }

/* ── Mobile hamburger toggle ───────────────────────── */
.nav-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  margin-left: 8px;
}
.nav-mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

@media (max-width: 920px) {
  .nav-pill { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
}
@media (max-width: 480px) {
  .nav-book-btn { display: none; }
}

/* ── Mobile nav drawer ─────────────────────────────── */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 18px 22px 28px;
  animation: nav-drawer-in .22s cubic-bezier(.2,.7,.2,1);
  overscroll-behavior: contain;
}
@keyframes nav-drawer-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.nav-drawer-head .brand {
  text-decoration: none;
  color: inherit;
}
.nav-drawer-head .brand-text b { color: var(--ink); }
.nav-drawer-head .brand-text em { color: var(--ink-3); }
.nav-drawer-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--bg-2);
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s;
}
.nav-drawer-close:hover { background: var(--bg-3); }

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
}
.nav-drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 4px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color .15s;
}
.nav-drawer-links a:hover { color: var(--accent); }
.nav-drawer-links a svg { color: var(--ink-4); }

/* Expandable section (Services) inside the mobile drawer */
.nav-drawer-section { border-bottom: 1px solid var(--line); }
.nav-drawer-section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 4px;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.nav-drawer-section-toggle:hover { color: var(--accent); }
.nav-drawer-section-chevron {
  color: var(--ink-4);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.nav-drawer-section.is-open .nav-drawer-section-chevron { transform: rotate(180deg); }
.nav-drawer-section-children {
  display: flex;
  flex-direction: column;
  padding: 4px 0 18px;
}
.nav-drawer-section-children a {
  padding: 12px 4px !important;
  font-family: var(--font-display);
  font-size: 16px !important;
  font-weight: 500 !important;
  color: var(--ink-2) !important;
  border-bottom: 0 !important;
  text-decoration: none;
}
.nav-drawer-section-children a:hover { color: var(--accent) !important; }
.nav-drawer-section-overview { color: var(--accent) !important; font-weight: 600 !important; }

.nav-drawer-foot {
  margin-top: auto;
  padding-top: 22px;
}
.nav-drawer-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 56px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(214, 51, 67, 0.32);
}
.nav-drawer-call:hover {
  filter: brightness(1.05);
}

/* ── Mobile sticky CTA (Call / WhatsApp / Quote) ──── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(5, 29, 62, 0.10);
  gap: 8px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity .22s ease, transform .22s ease;
}
@media (max-width: 768px) {
  .mobile-sticky-cta { display: flex; }
}
.mobile-sticky-cta.is-shown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* Hide when a modal/drawer is open so we never stack over them */
body.is-modal-open .mobile-sticky-cta {
  opacity: 0 !important;
  transform: translateY(110%) !important;
  pointer-events: none !important;
}
/* Reserve space at the bottom of the page so content isn't covered */
@media (max-width: 768px) {
  body.has-mobile-sticky-cta { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
}

.mobile-sticky-cta-btn {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 48px;
  border: 0;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: filter .15s ease, transform .15s ease;
}
.mobile-sticky-cta-btn:active { transform: scale(0.98); }
.mobile-sticky-cta-btn:focus-visible {
  outline: 3px solid rgba(214, 51, 67, 0.35);
  outline-offset: 2px;
}
.mobile-sticky-cta-btn span { white-space: nowrap; }

.mobile-sticky-cta-call {
  color: #fff;
  box-shadow: 0 6px 16px rgba(214, 51, 67, 0.25);
}
.mobile-sticky-cta-call:hover { filter: brightness(1.04); }

.mobile-sticky-cta-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.25);
}
.mobile-sticky-cta-wa:hover { filter: brightness(1.04); }

.mobile-sticky-cta-quote {
  background: var(--ink);
  color: #fff;
}
.mobile-sticky-cta-quote:hover { filter: brightness(1.1); }

/* On very small phones drop the labels to keep buttons tappable */
@media (max-width: 360px) {
  .mobile-sticky-cta-btn { font-size: 13px; padding: 0 8px; }
}

/* ── HERO (full-bleed photo) ───────────────────────── */
.hero-photo {
  position: relative;
  /* min-height instead of fixed height — content can push it taller if needed,
     so the estimator pill and rating never get clipped on shorter laptop screens. */
  min-height: clamp(640px, 88vh, 880px);
  padding: 0;
  overflow: hidden;
  color: #fff;
}
.hero-photo-bg {
  position: absolute; inset: 0;
}
.hero-svg { width: 100%; height: 100%; display: block; }
.hero-photo-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,15,25,.65) 0%, rgba(10,15,25,.4) 45%, rgba(10,15,25,.15) 80%);
}

.hero-photo-inner {
  position: relative;
  min-height: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 140px 32px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-photo-copy {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Short-laptop tightening: 1366×768, 1440×768 etc.
   Reduce top padding + gap so all content fits inside 88vh on these heights. */
@media (min-width: 981px) and (max-height: 820px) {
  .hero-photo-inner { padding-top: 110px; padding-bottom: 48px; }
  .hero-photo-copy { gap: 18px; }
  .hero-photo-copy h1 { font-size: clamp(40px, 4.8vw, 64px); }
}
.hero-photo-copy h1 {
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  font-weight: 700;
}
.hero-photo-copy p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  max-width: 520px;
}

.hero-photo-cta { margin-top: 8px; }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 8px 0 26px;
  background: #fff;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  font: 600 15px var(--font-display);
  letter-spacing: -0.005em;
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
  transition: transform .15s;
  cursor: pointer;
}
.btn-pill:hover { transform: translateY(-2px); }
.btn-pill-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
}

.hero-photo-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  margin-top: 8px;
}

/* Floating stat card */
.hero-photo-card {
  position: absolute;
  right: 32px;
  bottom: 56px;
  width: clamp(360px, 36vw, 460px);
  background: rgba(20, 24, 32, 0.6);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 20px 24px;
  align-items: center;
  color: #fff;
}
.hpc-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.hpc-plus { font-weight: 800; }
.hpc-mid { display: flex; align-items: center; }
.hpc-mid p {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,.78);
}
.hpc-foot {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hpc-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hpc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  white-space: nowrap;
}
.hpc-badge svg { color: rgba(255,255,255,.55); flex-shrink: 0; }
.hpc-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 6px 0 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  color: #fff;
  font: 600 13px var(--font-display);
}
.hpc-call:hover { background: rgba(255,255,255,.14); }
.hpc-call-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
}

@media (max-width: 980px) {
  .hero-photo { height: auto; min-height: 720px; }
  .hero-photo-inner { padding-top: 120px; padding-bottom: 380px; }
  .hero-photo-card {
    right: 24px; left: 24px; bottom: 24px;
    width: auto;
  }
}

/* ── BRANDS PILL BAND ──────────────────────────────── */
.brands-band {
  padding: 80px 0 72px;
  background: var(--bg-2); /* warm off-white — makes the white logo cards pop */
}
.brands-band-lbl {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 36px;
}
.brands-pills {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .brands-pills { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .brands-pills { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(180deg, #f4ede0, #ece4d3);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  border: 1px solid rgba(0,0,0,.04);
}
.brand-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* Logo-branded variant — uniform white cards normalize mixed-color logos */
.brand-pill-has-logo {
  background: #fff;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  height: 108px;
  display: grid;
  place-items: center;
  box-shadow: 0 1px 2px rgba(5, 29, 62, 0.04);
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, border-color .2s;
  width: 100%;
  gap: 0;
  text-decoration: none;
  color: inherit;
}
a.brand-pill-has-logo:focus-visible {
  outline: 2px solid var(--accent, #d6452c);
  outline-offset: 2px;
}
.brand-pill-has-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(5, 29, 62, 0.08);
  border-color: var(--line-2);
}
.brand-pill-img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 720px) {
  .brand-pill-has-logo { height: 92px; padding: 14px 18px; }
  .brand-pill-img { max-height: 60px; }
}

.brand-pill-mark {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--navy-950);
  color: #fff;
  display: grid; place-items: center;
}

/* ── ABOUT (Aquora-spirit) ─────────────────────────── */
.about {
  padding: 80px 0 120px;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-copy { display: flex; flex-direction: column; gap: 22px; max-width: 540px; }
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.about h2 {
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.about-num { font-style: italic; }
.about-lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-3);
  max-width: 480px;
}
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 0 8px 0 22px;
  background: var(--navy-950);
  color: #fff;
  border-radius: 999px;
  font: 600 14px var(--font-display);
  width: fit-content;
  margin-top: 8px;
  transition: transform .2s;
}
.about-cta:hover { transform: translateY(-2px); }
.about-cta-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
}

.about-trust {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.about-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}
.about-trust-item svg { color: var(--accent); flex-shrink: 0; }
@media (max-width: 640px) {
  .about-trust { gap: 6px 14px; }
  .about-trust-item { font-size: 12px; }
}

.about-photo-wrap { position: relative; }
.about-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 5/6;
  max-height: 640px;
  box-shadow: var(--shadow-lg);
}
.about-svg { width: 100%; height: 100%; display: block; }
.about-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-chip {
  position: absolute;
  left: 20px; bottom: 20px;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(20, 24, 32, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  color: #fff;
}
.about-chip-stars { color: #ffb400; }
.about-chip div { display: flex; flex-direction: column; line-height: 1.3; }
.about-chip b { font-size: 13px; font-weight: 600; }
.about-chip span { font-size: 11px; color: rgba(255,255,255,.65); font-family: var(--font-mono); }

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}
.services { background: var(--bg); }

/* ── Services as stacked rows ─────────────────────────────────── */
.services-rows { background: var(--bg); padding: 120px 0; }
.svc-rows-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.svc-rows-head h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--ink);
}
.svc-rows-head p {
  font-size: 18px;
  line-height: 1.56;
  color: var(--muted);
  margin: 0;
}
.svc-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-row {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
.svc-row:last-child { border-bottom: 1px solid var(--line); }
.svc-row-copy h3 {
  font-family: var(--display);
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--ink);
}
.svc-row-copy p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 360px;
}
.svc-row-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0d1424;
  color: #fff;
  padding: 10px 10px 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.svc-row-cta:hover { transform: translateX(2px); background: #000; }
.svc-row-cta-arrow {
  width: 28px; height: 28px;
  border-radius: 999px;
  display: grid; place-items: center;
  color: #fff;
}
.svc-row-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #d8cfbc;
}
.svc-svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 900px) {
  .services-rows { padding: 80px 0; }
  .svc-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }
  .svc-row-copy p { max-width: none; }
}

/* ── Services accordion (Aquora-style: rows + synced preview image) ── */
.svc-acc {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

/* Left rail — list of expandable rows */
.svc-acc-list {
  display: flex;
  flex-direction: column;
}
.svc-acc-item {
  border-top: 1px solid var(--line);
  transition: border-color .35s ease;
}
.svc-acc-item:last-child { border-bottom: 1px solid var(--line); }
.svc-acc-item.active { border-color: var(--line-2); }

.svc-acc-head {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr 40px;
  gap: 20px;
  align-items: center;
  padding: 26px 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: padding .45s cubic-bezier(.2,.7,.2,1);
}
.svc-acc-item.active .svc-acc-head { padding-bottom: 14px; }

.svc-acc-n {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  transition: color .35s ease;
}
.svc-acc-item.active .svc-acc-n,
.svc-acc-item:hover .svc-acc-n { color: var(--accent); }

.svc-acc-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), color .35s ease;
  transform-origin: left center;
}
.svc-acc-item.active .svc-acc-title { transform: translateX(4px); }

/* Toggle (+ → ×) */
.svc-acc-tog {
  width: 36px; height: 36px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: all .45s cubic-bezier(.2,.7,.2,1);
  justify-self: end;
}
.svc-acc-tog-bar {
  position: absolute;
  left: 50%; top: 50%;
  width: 12px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .45s cubic-bezier(.2,.7,.2,1);
}
.svc-acc-tog-bar.h { transform: translate(-50%, -50%); }
.svc-acc-tog-bar.v { transform: translate(-50%, -50%) rotate(90deg); }
.svc-acc-item.active .svc-acc-tog-bar { background: #fff; }
.svc-acc-item.active .svc-acc-tog-bar.v { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }
.svc-acc-item.active .svc-acc-tog { transform: rotate(135deg); }

/* Body — height + opacity transition */
.svc-acc-body {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .55s cubic-bezier(.2,.7,.2,1), opacity .35s ease .05s;
  overflow: hidden;
}
.svc-acc-body-inner {
  min-height: 0;
  padding: 0 40px 28px 76px;
}
.svc-acc-item.active .svc-acc-body {
  grid-template-rows: 1fr;
  opacity: 1;
}
.svc-acc-body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0 0 22px;
  max-width: 480px;
  transform: translateY(8px);
  transition: transform .55s cubic-bezier(.2,.7,.2,1) .05s;
}
.svc-acc-item.active .svc-acc-body p { transform: translateY(0); }

/* Right rail — synced preview image (cross-fades when active changes) */
.svc-acc-preview {
  position: sticky;
  top: 100px;
}
.svc-acc-preview-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 580px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: 0 24px 60px rgba(5,29,62,.08);
}
.svc-acc-art {
  position: absolute; inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity .6s cubic-bezier(.2,.7,.2,1),
    transform .9s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.svc-acc-art.active {
  opacity: 1;
  transform: scale(1);
}
.svc-acc-art svg { width: 100%; height: 100%; display: block; }
.svc-acc-art img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 980px) {
  .svc-acc { grid-template-columns: 1fr; gap: 40px; }
  .svc-acc-preview { position: static; order: -1; }
  .svc-acc-preview-frame { aspect-ratio: 16 / 11; max-height: 360px; }
  .svc-acc-body-inner { padding: 0 0 24px 76px; }
}
@media (max-width: 600px) {
  .svc-acc-head { grid-template-columns: 36px 1fr 32px; gap: 14px; }
  .svc-acc-body-inner { padding: 0 0 24px 50px; }
}

/* ── Recent Projects (homepage teaser) ──────────────────────── */
.recent-projects {
  background: var(--bg);
  padding: 100px 0;
}
.recent-projects-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
  margin-bottom: 56px;
}
.recent-projects-head-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
}
.recent-projects-head-text h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
}
.recent-projects-head-text .lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-3);
}
.recent-projects-head-cta { flex-shrink: 0; }

.recent-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* The card styles (.project-card, .project-card-ba, .thumb-half, etc.) are inherited
   from projects-page.css which is also loaded on the homepage. */
.recent-project-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

@media (max-width: 980px) {
  .recent-projects-head { flex-direction: column; align-items: flex-start; gap: 24px; }
  .recent-projects-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .recent-projects-grid { grid-template-columns: 1fr; }
  .recent-projects { padding: 64px 0; }
}

/* (old marquee brands styles removed — replaced by .brands-band pills) */

/* ── BLOG / RESOURCES ─────────────────────────────── */
.blog {
  background: #fff;
  padding: 120px 0;
}
.blog-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.blog-eyebrow {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-3);
}
.blog-head h2 {
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
.blog-head p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-3);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #f4ede0;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--ink);
  min-height: 50px;
}
.blog-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: #d8cfbc;
}
.blog-svg { width: 100%; height: 100%; display: block; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.blog-card:hover .blog-svg { transform: scale(1.04); }
.blog-date {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-3);
}
.blog-excerpt {
  font-size: 16px;
  line-height: 1.56;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 4px;
}
.blog-link:hover { color: var(--accent); }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog { padding: 80px 0; }
}

/* ── HOW IT WORKS (dark, timeline) ─────────────────── */
.how {
  background: #0a0d12;
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.how-copy { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 22px; max-width: 460px; padding-top: 8px; }
.how-eyebrow {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.02em;
}
.how-copy h2 {
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
}
.how-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.65);
  max-width: 380px;
}
.how-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 0 8px 0 22px;
  background: #fff;
  color: #0a0d12;
  border-radius: 999px;
  font: 600 14px var(--font-display);
  width: fit-content;
  margin-top: 8px;
  transition: transform .2s;
}
.how-cta:hover { transform: translateY(-2px); }
.how-cta-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #0a0d12;
  color: #fff;
  display: grid; place-items: center;
}

.how-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 36px;
}
.how-line {
  position: absolute;
  top: 28px; bottom: 28px;
  left: 6px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.18) 0 4px, transparent 4px 10px);
  overflow: hidden;
}
.how-line-fill {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: 0;
  animation: how-line-grow 2s cubic-bezier(.2,.7,.2,1) .4s forwards;
  opacity: .55;
}
@keyframes how-line-grow {
  to { height: 100%; }
}

.how-step {
  position: relative;
}
.how-dot {
  position: absolute;
  left: -36px;
  top: 32px;
  width: 14px; height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(214,51,67,.18), 0 0 20px rgba(214,51,67,.4);
}
.how-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: how-pulse 2.4s ease-out infinite;
}
@keyframes how-pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(2.4); opacity: 0; }
}
.how-card {
  background: #15191f;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 28px 30px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .25s, background .25s;
}
.how-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214,51,67,.3);
  background: #1a1f27;
}
.how-card-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(214,51,67,.1);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.how-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 10px;
}
.how-card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.62);
  margin: 0;
}

@media (max-width: 980px) {
  .how-grid { grid-template-columns: 1fr; gap: 48px; }
  .how-copy { position: static; }
}

/* ── WHY ───────────────────────────────────────────── */
.why { background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.why-head { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 100px; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 16px; }
.why-stats > div { display: flex; flex-direction: column; gap: 2px; padding-right: 16px; border-left: 2px solid var(--accent); padding-left: 14px; }
.why-stats b { font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: -.03em; }
.why-stats span { font-size: 12px; color: var(--ink-3); }

.why-list { display: flex; flex-direction: column; }
.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.why-item:first-child { border-top: 0; padding-top: 0; }
.why-n {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}
.why-item h3 { font-size: 22px; margin-bottom: 6px; }

@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-head { position: static; }
}

/* ── SERVICE AREA ──────────────────────────────────── */
.area { background: var(--bg-2); }
.area .section-head { text-align: center; max-width: 780px; margin: 0 auto 48px; }
.area-support {
  font-size: 14px;
  color: var(--ink-3);
  margin-top: 10px;
}

.area-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.area-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--navy-800);
}
.area-svg { width: 100%; display: block; }

/* Card list (replaces percentage bars) */
.area-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.area-card {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.area-card:hover {
  border-color: var(--line-2);
  box-shadow: 0 12px 24px rgba(5, 29, 62, 0.06);
  transform: translateY(-1px);
}
.area-card-pin {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-soft);
  margin-top: 2px;
}
.area-card-body { min-width: 0; }
.area-card-city {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 2px;
}
.area-card-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.area-card-copy {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
}

/* Compact CTA below the cards */
.area-cta {
  margin-top: 40px;
  padding: 24px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 28px rgba(5, 29, 62, 0.05);
}
.area-cta-copy h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
.area-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.area-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 0;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease;
}
.area-cta-btn-primary { color: #fff; box-shadow: 0 8px 18px rgba(214, 51, 67, 0.22); }
.area-cta-btn-primary:hover { transform: translateY(-1px); filter: brightness(1.04); }
.area-cta-btn-ghost { background: var(--bg-2); color: var(--ink); border: 1px solid var(--line-2); }
.area-cta-btn-ghost:hover { border-color: var(--ink-3); transform: translateY(-1px); }
.area-cta-btn-ghost svg { color: var(--accent); }

.area-also-serving {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-3);
  text-align: center;
}

@media (max-width: 980px) {
  .area-grid { grid-template-columns: 1fr; gap: 28px; }
  .area-cards { gap: 10px; }
}
@media (max-width: 640px) {
  .area-cta { flex-direction: column; align-items: stretch; padding: 20px; }
  .area-cta-actions { flex-direction: column; width: 100%; }
  .area-cta-btn { width: 100%; padding: 14px 18px; }
  .area-card { padding: 16px; }
}

/* ── REVIEWS ───────────────────────────────────────── */
.reviews { background: #fff; }
.reviews-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.reviews-head h2 { max-width: 720px; }
.reviews-summary {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  text-align: right;
}
.rs-num { font-family: var(--font-display); font-size: 28px; }
.rs-num b { font-weight: 700; }
.rs-link { font-size: 13px; color: var(--ink-3); display: inline-flex; align-items: center; gap: 4px; }
.rs-link:hover { color: var(--ink); }

/* ── Google-branded reviews summary card ────────────────────────── */
.reviews-google-badge {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 260px;
  box-shadow: 0 6px 20px rgba(5, 29, 62, 0.06);
}
.rgb-top {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.rgb-rating {
  display: flex; align-items: center; gap: 14px;
  margin-top: 4px;
}
.rgb-num {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 700;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.rgb-stars { color: #fbbc05; display: inline-flex; gap: 2px; }
.rgb-stars svg { fill: currentColor; stroke: currentColor; }
.rgb-count {
  font-size: 13px; color: var(--ink-3);
  margin-top: 2px;
}
.rgb-count b { color: var(--ink); font-weight: 700; }
.rgb-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600;
  color: var(--accent);
  margin-top: 6px;
  text-decoration: none;
}
.rgb-link:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .reviews-google-badge { width: 100%; min-width: 0; }
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  /* Uniform height by default — long reviews are clamped to 6 lines so
     every card in the grid presents identically until the user clicks
     "Read full review". */
  min-height: 340px;
}
.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 12px;
}
.review-text-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-readmore {
  align-self: flex-start;
  background: none;
  border: 0;
  padding: 0;
  margin: 0 0 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  letter-spacing: 0.01em;
}
.review-readmore:hover { text-decoration: underline; }
.review-readmore:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}
.review-card > .review-foot { margin-top: auto; }
.review-foot {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
}
.review-meta { display: flex; flex-direction: column; line-height: 1.3; flex: 1; }
.review-meta b { font-size: 14px; }
.review-meta .muted { font-size: 12px; }
.review-google {
  width: 30px; height: 30px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.review-google svg { display: block; }

@media (max-width: 980px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ── BOOK CTA ──────────────────────────────────────── */
.book-cta {
  background: var(--navy-950);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.book-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 90% 100%, rgba(214,51,67,.18), transparent 60%),
    radial-gradient(40% 60% at 10% 0%, rgba(214,51,67,.12), transparent 60%);
}
.book-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.book-copy { display: flex; flex-direction: column; gap: 14px; }
.book-copy h2 { color: #fff; }
.book-copy p { color: rgba(255,255,255,.7); font-size: 18px; max-width: 560px; }
.book-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.book-actions .btn { min-width: 240px; }
.book-hours { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.55); font-size: 13px; margin-top: 4px; }

@media (max-width: 980px) { .book-inner { grid-template-columns: 1fr; gap: 32px; } }

/* ── FAQ ───────────────────────────────────────────── */
.faq { background: var(--bg-2); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.faq-head { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 14px; }
.faq-head .lead { color: var(--ink-3); font-size: 16px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item.open { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  font: 600 17px var(--font-display);
  letter-spacing: -0.01em;
  text-align: left;
  color: var(--ink);
}
.faq-tog {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  display: grid; place-items: center;
  font-size: 18px; font-weight: 400;
  color: var(--ink-3);
  flex-shrink: 0;
  transition: all .15s;
}
.faq-a {
  padding: 0 24px 22px;
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-head { position: static; }
}

/* ── FOOTER ────────────────────────────────────────── */
.footer { background: var(--navy-950); color: rgba(255,255,255,.7); padding: 80px 0 32px; }
.brand-light .brand-text b { color: #fff; }
.brand-light .brand-text em { color: rgba(255,255,255,.55); }

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-blurb { font-size: 16px; max-width: 360px; line-height: 1.56; }
.footer-cta { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-cols h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: 16px;
}
.footer-cols a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  padding: 6px 0;
  transition: color .15s;
}
.footer-cols a:hover { color: #fff; }

.footer-bot {
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-bot a { color: rgba(255,255,255,.7); }
.footer-bot a:hover { color: #fff; }

@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ── Legal pages (Privacy, Terms) ─────────────────── */
.legal-page {
  background: var(--bg);
  padding: 140px 0 96px;
}
.legal-page-inner {
  max-width: 780px;
}
.legal-page .detail-crumb {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.legal-page .detail-crumb a { color: var(--ink-3); text-decoration: none; }
.legal-page .detail-crumb a:hover { color: var(--accent); }
.legal-page .detail-crumb .sep { margin: 0 6px; opacity: 0.6; }
.legal-page .detail-crumb .active { color: var(--ink); font-weight: 600; }

.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 12px;
}
.legal-meta {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-3);
  margin: 0 0 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
}
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.3;
  color: var(--ink);
  margin: 40px 0 12px;
}
.legal-body p { margin: 0 0 16px; }
.legal-body ul {
  margin: 0 0 20px;
  padding-left: 22px;
}
.legal-body li {
  margin-bottom: 10px;
}
.legal-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-body a:hover { filter: brightness(1.1); }
.legal-body b { color: var(--ink); }

@media (max-width: 640px) {
  .legal-page { padding: 110px 0 64px; }
  .legal-page h1 { font-size: 32px; }
  .legal-body { font-size: 15px; }
  .legal-body h2 { font-size: 19px; margin-top: 32px; }
}

/* ── Contact page ─────────────────────────────────── */
.contact-hero {
  background: var(--bg);
  padding: 140px 0 56px;
}
.contact-hero .detail-crumb {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.contact-hero .detail-crumb a { color: var(--ink-3); text-decoration: none; }
.contact-hero .detail-crumb a:hover { color: var(--accent); }
.contact-hero .detail-crumb .sep { margin: 0 6px; opacity: 0.6; }
.contact-hero .detail-crumb .active { color: var(--ink); font-weight: 600; }

.contact-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 14px;
}
.contact-hero-lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 640px;
}

.contact-info {
  background: var(--bg);
  padding: 24px 0 64px;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.contact-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info-card-ic {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  margin-bottom: 4px;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
.contact-info-link {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.contact-info-link:hover { color: var(--accent); }
.contact-info-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-3);
  margin: 0;
}
.contact-info-hours { font-size: 14px; line-height: 1.6; }
.contact-info-hours b { color: var(--ink); }

/* Bot honeypot — visually hidden but in the DOM so naive form-fillers
   target it. Don't use display:none (some bots skip those fields). The
   off-screen technique below keeps the field in the layout/tab order
   for sniffers but invisible to humans. aria-hidden + tabIndex=-1
   already prevent screen readers and keyboard navigation. */
.form-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-form-section {
  background: var(--bg-2);
  padding: 80px 0;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin: 12px 0 12px;
}
.contact-form-copy > p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 18px;
  max-width: 520px;
}
.contact-form-points {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink-2);
}
.contact-form-points svg { color: var(--accent); flex-shrink: 0; }

.contact-form-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-form-call-btn,
.contact-form-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease;
  border: 0;
}
.contact-form-call-btn { color: #fff; box-shadow: 0 8px 18px rgba(214, 51, 67, 0.22); }
.contact-form-call-btn:hover { transform: translateY(-1px); filter: brightness(1.04); }
.contact-form-quote-btn {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.contact-form-quote-btn:hover { border-color: var(--ink-3); transform: translateY(-1px); }

@media (max-width: 980px) {
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-hero { padding: 120px 0 40px; }
  .contact-hero-lead { font-size: 16px; }
  .contact-form-section { padding: 56px 0; }
  .contact-form-cta-row { flex-direction: column; }
  .contact-form-call-btn,
  .contact-form-quote-btn { width: 100%; }
}

/* ── HOME OFFERS TEASER ───────────────────────────────────────── */
.home-offers {
  padding: 88px 0 96px;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}
.home-offers-inner { max-width: 1200px; }
.home-offers-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.home-offers-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.home-offers-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.home-offers-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: #111;
}
.home-offers-sub {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}
.home-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.home-offers-grid > * { height: 100%; }
.home-offers-foot {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 15px;
}
.home-offers-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #111;
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.home-offers-all:hover {
  color: var(--accent, #d63343);
  border-color: var(--accent, #d63343);
}
.home-offers-foot-sep { color: #bbb; }
.home-offers-call {
  color: #555;
  text-decoration: none;
  font-weight: 500;
}
.home-offers-call:hover { color: #111; }

@media (max-width: 1024px) {
  .home-offers-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .home-offers-grid > *:nth-child(3) { grid-column: span 2; max-width: 560px; margin: 0 auto; width: 100%; }
}
@media (max-width: 720px) {
  .home-offers { padding: 64px 0 72px; }
  .home-offers-head { margin-bottom: 32px; }
  .home-offers-grid { grid-template-columns: 1fr; gap: 16px; }
  .home-offers-grid > *:nth-child(3) { grid-column: auto; max-width: none; margin: 0; }
  .home-offers-foot { font-size: 14px; }
  .home-offers-foot-sep { display: none; }
  .home-offers-foot { flex-direction: column; gap: 10px; }
}

/* ── REVIEWS — extras for live GBP integration ────────────────── */
.review-avatar-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.review-owner-reply {
  margin-top: -8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #555;
}
.review-owner-reply summary {
  cursor: pointer;
  font-weight: 600;
  color: #111;
  list-style: none;
  padding: 6px 0;
}
.review-owner-reply summary::-webkit-details-marker { display: none; }
.review-owner-reply summary::before {
  content: "↳ ";
  color: var(--accent, #d63343);
  font-weight: 700;
}
.review-owner-reply p {
  margin: 6px 0 0;
  padding: 10px 12px;
  background: rgba(0,0,0,0.03);
  border-radius: 8px;
  line-height: 1.5;
}
.reviews-expand-row {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.reviews-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1.5px solid #111;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.reviews-expand-btn:hover {
  background: #111;
  color: #fff;
}
.reviews-cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.reviews-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.12s ease, opacity 0.15s ease;
}
.reviews-cta:hover { transform: translateY(-1px); opacity: 0.92; }
.reviews-cta-primary { color: #fff; }
.reviews-cta-ghost {
  background: transparent;
  color: #111;
  border: 1.5px solid #d8d8d8;
}
.reviews-cta-ghost:hover {
  border-color: #111;
  background: rgba(0,0,0,0.03);
}
.reviews-disclaimer {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: #888;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.reviews-disclaimer a {
  color: #555;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.reviews-disclaimer a:hover { color: #111; }
@media (max-width: 540px) {
  .reviews-cta-row { flex-direction: column; align-items: stretch; }
  .reviews-cta { justify-content: center; }
}

