/* ============================================================
   PAPA GLASS — site styles
   Built on the Type Design System tokens (colors_and_type.css).
   Editorial / Harvey-inspired: ink-on-light, serif-italic accents,
   mono labels, generous whitespace.
   ============================================================ */

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

:root {
  --page-bg: #FFFFFF;        /* white — primary canvas */
  --section-bg: #F5F6F8;     /* cool near-white — alt sections */
  --ink: #14294A;            /* deep navy — headings & dark UI */
  --ink-soft: #44536E;       /* body copy */
  --ink-faint: #7B879E;      /* meta / secondary */
  --line: #E4E7EC;           /* neutral hairline */
  --line-soft: #EEF0F3;      /* softer neutral hairline */
  --act: #2F57DA;            /* brand blue — links & accents */
  --act-hover: #1E3FAE;
  --on-act: #fff;
  --navy: #14294A;
  --navy-deep: #0E1D38;
  --highlight: #BFE0F4;      /* glass-blue marker highlight */
  --coral: #E79AA0;          /* warm accent (sparingly) */
  --card: #FFFFFF;
  --nav-bg: rgba(255,255,255,0.85);
  --maxw: 1200px;
  --maxw-wide: 1340px;
}

/* ---- Dark theme ---- */
html[data-theme="dark"] {
  --page-bg: #0a0f1c;
  --section-bg: #0e1424;
  --ink: #eaf0fb;
  --ink-soft: #b7c2d8;
  --ink-faint: #7d89a3;
  --line: rgba(255,255,255,0.10);
  --line-soft: rgba(255,255,255,0.06);
  --act: #6f8dfb;
  --act-hover: #88a0fc;
  --card: #131a2c;
  --nav-bg: rgba(12,17,30,0.72);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--page-bg);
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
}
.skip-link:focus { left: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.container--wide { max-width: var(--maxw-wide); }

/* ---- Type ---- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.eyebrow.no-rule::before { display: none; }

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.04;
  text-wrap: balance;
}
em, .accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.005em;
}
body.no-accent .display em, body.no-accent h1 em, body.no-accent h2 em, body.no-accent .accent {
  font-family: var(--font-sans); font-style: normal; letter-spacing: -0.03em;
}
.display {
  font-size: clamp(40px, 6.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.h-xl { font-size: clamp(32px, 4.4vw, 56px); line-height: 1.0; }
.h-lg { font-size: clamp(27px, 3.2vw, 40px); }
.h-md { font-size: clamp(21px, 2.2vw, 27px); }
.lead {
  font-family: "Be Vietnam Pro", var(--font-sans);
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.4;
  color: var(--ink-soft);
  letter-spacing: 0;
}
.muted { color: var(--ink-faint); }
.mono { font-family: var(--font-mono); }

/* ============================================================
   DINER DISPLAY — heavy condensed signage headlines
   Pink's-inspired "old-school diner" vibe: big, bold, uppercase
   marquee type for the impact headlines; Saans stays for body and
   small headings; Serrif Condensed stays for leads + quotes.
   ============================================================ */
:root { --font-headline: "Anton", "Saans", "Arial Narrow", sans-serif; }

h1, .display, .h-xl, .h-lg {
  font-family: var(--font-headline);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.012em;
  -webkit-font-smoothing: antialiased;
}
.display { line-height: 0.9; letter-spacing: 0.008em; }
.h-xl { line-height: 0.92; }
.h-lg { line-height: 0.94; }

/* Two-tone vintage-ad accent word inside the big headlines */
h1 em, .display em, .h-xl em, .h-lg em,
h1 .accent, .display .accent, .h-xl .accent, .h-lg .accent {
  font-family: var(--font-headline);
  font-style: normal;
  font-weight: 400;
  color: var(--act);
  letter-spacing: inherit;
}
.promise em, .quote em, .photocta em,
.promise .accent, .quote .accent, .photocta .accent { color: var(--highlight); }
body.no-accent h1 em, body.no-accent .display em, body.no-accent .h-xl em, body.no-accent .h-lg em {
  font-family: var(--font-headline); color: inherit;
}

/* ---- Buttons ---- */
.btn {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 50px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--dur-slow) var(--ease-considered),
              box-shadow var(--dur-slow) var(--ease-considered),
              background var(--dur-fast) var(--ease-considered),
              color var(--dur-fast) var(--ease-considered);
  text-transform: uppercase;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary { background: var(--act); color: var(--on-act); box-shadow: var(--shadow-button); }
.btn--primary:hover { background: var(--act-hover); transform: translateY(-2px); box-shadow: var(--shadow-button-hover); }
.btn--primary:active { transform: translateY(0) scale(0.99); box-shadow: var(--shadow-button-press); }
.btn--dark { background: var(--ink); color: #fff; box-shadow: var(--shadow-button); }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-button-hover); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: color-mix(in srgb, var(--ink) 5%, transparent); }
.btn--sm { height: 42px; padding: 0 18px; font-size: 12px; }
.btn--lg { height: 56px; padding: 0 32px; }
.btn--block { width: 100%; }

.linkarrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.linkarrow svg { width: 15px; height: 15px; transition: transform var(--dur-normal) var(--ease-considered); }
.linkarrow:hover svg { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 92px;
  display: flex; align-items: center;
  background: #1D2E83;
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-normal), background var(--dur-normal);
}
.nav.scrolled { border-bottom-color: rgba(255,255,255,0.12); box-shadow: 0 6px 24px rgba(7,14,30,0.35); }

/* Header-only: white logo (bigger) + white CTA on the dark navy bar */
header#nav .brand__logo { filter: brightness(0) invert(1); height: 60px; transform: translate(-2px, 2px); }
header#nav .btn--primary { background: #fff; color: #1D2E83; border-color: #fff; font-size: 15px; }
header#nav .btn--primary:hover { background: #eef0f3; color: #1D2E83; border-color: #eef0f3; }

/* Centered-logo layout: left links · logo · right links + CTA */
.nav__inner {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; max-width: var(--maxw-wide); gap: 18px;
}
.nav__zone { display: flex; align-items: center; gap: 2px; }
.nav__zone--left { justify-self: start; }
.nav__zone--right { justify-self: end; gap: 12px; }

.brand { display: inline-flex; align-items: center; justify-self: center; color: var(--ink); }
.brand__logo { height: 38px; width: auto; display: block; }
.brand__name {
  font-family: var(--font-sans);
  font-weight: 500; font-size: 22px; letter-spacing: -0.02em;
  color: var(--ink); line-height: 1;
}
.brand__name em { font-family: var(--font-display); font-style: italic; font-weight: 500; letter-spacing: -0.01em; }

.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__link {
  font-family: var(--font-mono);
  font-size: 15px; letter-spacing: 0.05em; text-transform: uppercase;
  color: #fff;
  padding: 9px 13px; border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,0.12); }
.nav__link svg { width: 13px; height: 13px; opacity: 0.6; }

.nav__dd { position: relative; }
.nav__menu {
  position: absolute; top: calc(100% + 14px); transform: translateY(6px);
  width: 330px; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 8px; z-index: 130;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease-considered), transform var(--dur-fast) var(--ease-considered);
}
.nav__menu::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.nav__zone--left .nav__menu { left: 0; right: auto; }
.nav__zone--right .nav__menu { right: 0; left: auto; }
.nav__dd:hover .nav__menu, .nav__menu:hover { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.nav__menu a {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 11px 13px; border-radius: var(--radius-md);
  transition: background var(--dur-fast);
}
.nav__menu a:hover { background: var(--page-bg); }
.nav__menu .ic {
  width: 34px; height: 34px; flex: none; border-radius: 9px;
  background: color-mix(in srgb, var(--act) 12%, transparent);
  display: grid; place-items: center; color: var(--act);
}
.nav__menu .ic svg { width: 18px; height: 18px; }
.nav__menu .tt { display: block; font-family: var(--font-sans); font-weight: 500; font-size: 14.5px; color: var(--ink); }
.nav__menu .ds { display: block; font-size: 12.5px; color: var(--ink-faint); line-height: 1.4; font-family: var(--font-sans); margin-top: 3px; }
.nav__call { color: #fff; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; white-space: nowrap; }
.nav__call svg { width: 15px; height: 15px; }
.nav__burger { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.4); border-radius: 12px; background: rgba(255,255,255,0.08); color: #fff; cursor: pointer; align-items: center; justify-content: center; }
.nav__burger svg { width: 20px; height: 20px; }

/* Collapse the split links into a burger when the centered layout gets tight */
@media (max-width: 1040px) {
  .nav__links, .nav__call { display: none; }
  .nav__burger { display: inline-flex; }
}

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; display: none; }
.drawer.open { display: block; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(7,14,30,0.4); backdrop-filter: blur(4px); }
.drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(86vw, 380px); background: var(--section-bg); padding: 22px; overflow-y: auto; box-shadow: var(--shadow-xl); display: flex; flex-direction: column; gap: 6px; }
.drawer__panel .dh { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.drawer__panel a { font-family: var(--font-sans); font-size: 17px; color: var(--ink); padding: 13px 6px; border-bottom: 1px solid var(--line-soft); }
.drawer__panel a.sub { font-size: 14px; color: var(--ink-soft); padding-left: 18px; }
.drawer__panel .btn { margin-top: 16px; }
.iconbtn { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 11px; background: transparent; color: var(--ink); display: grid; place-items: center; cursor: pointer; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(64px, 9vw, 132px) 0; position: relative; }
.section--bg { background: var(--section-bg); }
.section--tight { padding: clamp(48px, 6vw, 88px) 0; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head p { margin-top: 20px; }
.section-head.center .eyebrow { justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: 160px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 75% -10%, color-mix(in srgb, var(--act) 13%, transparent) 0%, transparent 55%),
    linear-gradient(180deg, color-mix(in srgb, var(--secondary-soft-sky) 30%, var(--page-bg)) 0%, var(--page-bg) 60%);
}
html[data-theme="dark"] .hero__bg {
  background:
    radial-gradient(120% 90% at 75% -10%, color-mix(in srgb, var(--act) 28%, transparent) 0%, transparent 55%),
    linear-gradient(180deg, #131c33 0%, var(--page-bg) 65%);
}
.hero .container { position: relative; z-index: 1; }
.trustpill {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 7px 7px 7px 16px; border-radius: var(--radius-pill);
  background: var(--card); border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  font-size: 13px; color: var(--ink-soft); font-family: var(--font-sans);
}
.trustpill .stars { color: var(--sunset); letter-spacing: 1px; font-size: 13px; }
.trustpill .av { display: flex; }
.trustpill .av span {
  width: 26px; height: 26px; border-radius: 50%; margin-left: -8px;
  border: 2px solid var(--card); display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 10px; color: #fff;
}
.trustpill .badge-chip { background: var(--ink); color:#fff; padding: 5px 12px; border-radius: var(--radius-pill); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 38px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 46px; }
.hero__meta .it { display: flex; flex-direction: column; gap: 3px; }
.hero__meta .n { font-family: var(--font-sans); font-weight: 500; font-size: 26px; color: var(--ink); letter-spacing: -0.02em; }
.hero__meta .l { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }

/* Treatment: centered */
.hero[data-treat="centered"] .hero__inner { max-width: 980px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero[data-treat="centered"] .hero__cta { justify-content: center; }
.hero[data-treat="centered"] .hero__meta { justify-content: center; }
.hero[data-treat="centered"] .hero__media {
  margin-top: 64px; border-radius: var(--radius-2xl); overflow: hidden;
  box-shadow: var(--shadow-xl); border: 1px solid var(--line-soft);
  aspect-ratio: 16/8; position: relative;
}
.hero[data-treat="centered"] .hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* Treatment: split */
.hero[data-treat="split"] .hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.hero[data-treat="split"] .hero__media {
  border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-xl);
  border: 1px solid var(--line-soft); aspect-ratio: 4/4.4; position: relative;
}
.hero[data-treat="split"] .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero[data-treat="split"] .hero__meta { margin-top: 40px; }

/* Treatment: full-bleed */
.hero[data-treat="full"] { padding-top: 112px; min-height: 100vh; display: flex; align-items: flex-end; }
.hero[data-treat="full"] .hero__bg { background: none; }
.hero[data-treat="full"] .hero__bgimg { position: absolute; inset: 0; z-index: 0; }
.hero[data-treat="full"] .hero__bgimg img { width: 100%; height: 100%; object-fit: cover; }
.hero[data-treat="full"] .hero__bgimg::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,14,30,0.52) 0%, rgba(7,14,30,0.28) 38%, rgba(7,14,30,0.86) 100%); }
.hero[data-treat="full"] .hero__inner { position: relative; z-index: 1; max-width: 880px; padding-bottom: 86px; }
.hero[data-treat="full"] .display,
.hero[data-treat="full"] .lead,
.hero[data-treat="full"] .eyebrow { color: #fff; }
.hero[data-treat="full"] .lead { color: rgba(255,255,255,0.85); }
.hero[data-treat="full"] .hero__meta .n { color: #fff; }
.hero[data-treat="full"] .hero__meta .l { color: rgba(255,255,255,0.7); }
.hero[data-treat="full"] .trustpill { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); color: #fff; backdrop-filter: blur(8px); }

/* hide the media not in use — handled by treatment attr */
.hero__media, .hero__bgimg { display: none; }
.hero[data-treat="centered"] .hero__media,
.hero[data-treat="split"] .hero__media,
.hero[data-treat="full"] .hero__bgimg { display: block; }
.hero[data-treat="split"] .hero__inner { }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trustbar { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--section-bg); }
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trustbar__it { padding: 30px 28px; display: flex; gap: 15px; align-items: center; border-left: 1px solid var(--line-soft); }
.trustbar__it:first-child { border-left: none; }
.trustbar__it svg { width: 26px; height: 26px; color: var(--act); flex: none; }
.trustbar__it .tt { font-family: var(--font-sans); font-weight: 500; color: var(--ink); font-size: 15px; line-height: 1.2; }
.trustbar__it .ds { font-size: 12.5px; color: var(--ink-faint); font-family: var(--font-mono); letter-spacing: 0.02em; margin-top: 3px; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-xl);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-slow) var(--ease-considered), box-shadow var(--dur-slow) var(--ease-considered), border-color var(--dur-fast);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--line); }
.svc-card__img { aspect-ratio: 5/4; overflow: hidden; position: relative; }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-deliberate) var(--ease-considered); }
.svc-card:hover .svc-card__img img { transform: scale(1.05); }
.svc-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.svc-card__body h3 { font-size: 22px; margin-bottom: 9px; }
.svc-card__body p { font-size: 15px; color: var(--ink-faint); line-height: 1.5; }
.svc-card__specs { display: flex; gap: 0; margin: 22px 0 24px; border-top: 1px solid var(--line-soft); }
.svc-card__specs .sp { flex: 1; padding-top: 14px; border-left: 1px solid var(--line-soft); padding-left: 14px; }
.svc-card__specs .sp:first-child { border-left: none; padding-left: 0; }
.svc-card__specs .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.svc-card__specs .v { font-family: var(--font-sans); font-weight: 500; font-size: 14px; color: var(--ink); margin-top: 4px; }
.svc-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.svc-card__price { font-family: var(--font-sans); font-size: 14px; color: var(--ink-soft); }
.svc-card__price b { font-weight: 500; color: var(--ink); font-size: 17px; }

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: center; }
.ba__stage {
  position: relative; border-radius: var(--radius-2xl); overflow: hidden;
  box-shadow: var(--shadow-xl); border: 1px solid var(--line-soft);
  aspect-ratio: 4/3; user-select: none; touch-action: pan-y; cursor: ew-resize;
}
.ba__img { position: absolute; inset: 0; }
.ba__img img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__after { z-index: 1; }
.ba__before { z-index: 2; clip-path: inset(0 0 0 var(--split, 50%)); }
.ba__tag {
  position: absolute; bottom: 18px; z-index: 3;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 13px; border-radius: var(--radius-pill);
  background: rgba(7,14,30,0.6); color: #fff; backdrop-filter: blur(6px);
}
.ba__tag.before { right: 18px; }
.ba__tag.after { left: 18px; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--split, 50%); width: 2px; background: rgba(255,255,255,0.9); z-index: 4; transform: translateX(-1px); box-shadow: 0 0 0 1px rgba(7,14,30,0.12); }
.ba__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; background: #fff;
  box-shadow: var(--shadow-lg); display: grid; place-items: center; color: var(--ink);
}
.ba__grip svg { width: 22px; height: 22px; }
.ba__panel .eyebrow { margin-bottom: 18px; }
.ba__scenes { display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }
.ba__scene {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  border: 1px solid var(--line-soft); border-radius: var(--radius-lg); background: var(--card);
  cursor: pointer; text-align: left; width: 100%;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.ba__scene:hover { border-color: var(--line); }
.ba__scene.active { border-color: var(--act); background: color-mix(in srgb, var(--act) 6%, var(--card)); }
.ba__scene .th { width: 46px; height: 46px; border-radius: 10px; overflow: hidden; flex: none; }
.ba__scene .th img { width: 100%; height: 100%; object-fit: cover; }
.ba__scene .nm { font-family: var(--font-sans); font-weight: 500; font-size: 15px; color: var(--ink); display: block; }
.ba__scene .lo { font-size: 12.5px; color: var(--ink-faint); display: block; margin-top: 2px; }

/* ============================================================
   GALLERY
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 36px; }
.filter {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 9px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); background: transparent; color: var(--ink-soft); cursor: pointer;
  transition: all var(--dur-fast);
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.gallery { columns: 3; column-gap: 20px; }
.gallery__item {
  break-inside: avoid; margin-bottom: 20px; border-radius: var(--radius-xl); overflow: hidden;
  position: relative; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft);
  transition: transform var(--dur-fast) var(--ease-considered);
}
.gallery__item img { width: 100%; height: auto; transition: transform var(--dur-deliberate) var(--ease-considered); }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(7,14,30,0.72));
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--dur-normal), transform var(--dur-normal);
}
.gallery__item:hover .gallery__cap { opacity: 1; transform: translateY(0); }
.gallery__cap .t { font-family: var(--font-sans); font-weight: 500; color: #fff; font-size: 15px; }
.gallery__cap .l { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; color: rgba(255,255,255,0.78); text-transform: uppercase; }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line-soft); border-radius: var(--radius-xl); overflow: hidden; background: var(--card); }
.stat { padding: 40px 32px; border-left: 1px solid var(--line-soft); }
.stat:first-child { border-left: none; }
.stat .n { font-family: var(--font-sans); font-weight: 500; font-size: clamp(38px, 4.4vw, 56px); color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.stat .n em { font-size: 0.55em; }
.stat .l { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-top: 12px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tst {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-xl);
  padding: 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.tst.feature { grid-row: span 1; grid-column: span 1; }
.tst__stars { color: var(--sunset); letter-spacing: 2px; font-size: 14px; margin-bottom: 18px; }
.tst__quote { font-family: var(--font-display); font-size: 19px; line-height: 1.45; color: var(--ink); letter-spacing: 0; }
.tst__who { display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.tst__av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-mono); font-size: 14px; color: #fff; flex: none; }
.tst__nm { font-family: var(--font-sans); font-weight: 500; font-size: 15px; color: var(--ink); }
.tst__lo { font-size: 12.5px; color: var(--ink-faint); font-family: var(--font-mono); letter-spacing: 0.02em; }
.tst__photo { margin: -30px -30px 26px; aspect-ratio: 16/10; overflow: hidden; }
.tst__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.areas__list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.area-chip {
  font-family: var(--font-sans); font-size: 14px; color: var(--ink-soft);
  padding: 9px 15px; border: 1px solid var(--line); border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 7px;
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
}
.area-chip:hover { border-color: var(--act); color: var(--ink); background: color-mix(in srgb, var(--act) 6%, transparent); }
.area-chip svg { width: 13px; height: 13px; color: var(--act); }
.areas__map {
  position: relative; aspect-ratio: 4/3.4; border-radius: var(--radius-2xl); overflow: hidden;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, #dbe7f4, #c2d4e8);
}
html[data-theme="dark"] .areas__map { background: linear-gradient(160deg, #16203a, #0f1727); }
.areas__map .pin { position: absolute; transform: translate(-50%,-50%); }
.areas__map .pin .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--act); box-shadow: 0 0 0 4px color-mix(in srgb, var(--act) 25%, transparent); }
.areas__map .pin.hub .dot { width: 18px; height: 18px; background: var(--ink); box-shadow: 0 0 0 6px color-mix(in srgb, var(--ink) 18%, transparent); }
.areas__map .pin .lb { position: absolute; left: 16px; top: -7px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.04em; color: var(--ink); white-space: nowrap; background: var(--card); padding: 2px 7px; border-radius: 6px; box-shadow: var(--shadow-sm); }
.areas__map .ring { position:absolute; border-radius:50%; border:1px dashed color-mix(in srgb, var(--ink) 22%, transparent); }

/* ============================================================
   QUOTE
   ============================================================ */
.quote { background: var(--ink); color: #fff; border-radius: 0; }
html:not([data-theme="dark"]) .quote { background: var(--cool-950); }
.quote .eyebrow { color: rgba(255,255,255,0.6); }
.quote .eyebrow::before { background: rgba(255,255,255,0.5); }
.quote h2 { color: #fff; }
.quote__head { max-width: 640px; margin: 0 auto; text-align: center; }
.quote__head .eyebrow { justify-content: center; }
.quote__head .lead { margin-top: 16px; }

.quote__contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 840px;
  margin: 48px auto 0;
}
.qopt {
  display: flex; flex-direction: column; gap: 12px;
  padding: 30px 30px 28px;
  border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-2xl);
  background: rgba(255,255,255,0.04);
  transition: transform var(--dur-fast), background var(--dur-fast), border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.qopt:hover { transform: translateY(-3px); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.28); }
.qopt__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.qopt .ic { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,0.1); display: grid; place-items: center; color: #fff; flex: none; }
.qopt .ic svg { width: 25px; height: 25px; }
.qopt__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 11px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.16); color: #fff; }
.qopt__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.qopt__big { font-family: var(--font-sans); font-weight: 600; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.1; color: #fff; letter-spacing: -0.015em; overflow-wrap: anywhere; }
.qopt__sub { font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,0.62); }
.qopt__cta { margin-top: auto; padding-top: 10px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 13px; font-weight: 500; letter-spacing: 0.02em; color: #fff; }
.qopt__cta svg { width: 17px; height: 17px; transition: transform var(--dur-fast); }
.qopt:hover .qopt__cta svg { transform: translateX(4px); }

/* Primary (call) — filled brand blue so it reads as the main action */
.qopt--primary { background: var(--act); border-color: transparent; box-shadow: 0 20px 44px -20px color-mix(in srgb, var(--act) 80%, transparent); }
.qopt--primary:hover { background: var(--act); border-color: transparent; }
.qopt--primary .ic { background: rgba(255,255,255,0.2); }
.qopt--primary .qopt__label { color: rgba(255,255,255,0.82); }
.qopt--primary .qopt__sub { color: rgba(255,255,255,0.85); }

/* Success badge — retained for the standalone thank-you.html page */
.qcard__ok { text-align: center; padding: 30px 10px; }
.qcard__ok .ring { width: 64px; height: 64px; border-radius: 50%; background: color-mix(in srgb, var(--success) 16%, transparent); color: var(--success); display: grid; place-items: center; margin: 0 auto 18px; }
.qcard__ok .ring svg { width: 30px; height: 30px; }

/* ============================================================
   ESTIMATOR
   ============================================================ */
.est { display: grid; grid-template-columns: 1fr 0.85fr; gap: 0; border: 1px solid var(--line-soft); border-radius: var(--radius-2xl); overflow: hidden; background: var(--card); box-shadow: var(--shadow-lg); }
.est__controls { padding: 40px; }
.est__seg { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.est__seg button {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.03em; text-transform: uppercase;
  padding: 9px 14px; border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: transparent; color: var(--ink-soft); cursor: pointer; transition: all var(--dur-fast);
}
.est__seg button:hover { border-color: var(--ink); color: var(--ink); }
.est__seg button.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.est__field { margin-bottom: 26px; }
.est__field .lab { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.est__field .lab .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.est__field .lab .v { font-family: var(--font-sans); font-weight: 500; font-size: 18px; color: var(--ink); }
.est__range { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 999px; background: var(--line); outline: none; }
.est__range::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--act); cursor: pointer; box-shadow: var(--shadow-md); border: 3px solid var(--card); }
.est__range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--act); cursor: pointer; border: 3px solid var(--card); box-shadow: var(--shadow-md); }
.est__tiers { display: flex; gap: 8px; }
.est__tiers button { flex: 1; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.02em; text-transform: uppercase; padding: 11px 6px; border: 1px solid var(--line); border-radius: var(--radius-md); background: transparent; color: var(--ink-soft); cursor: pointer; transition: all var(--dur-fast); }
.est__tiers button.active { border-color: var(--act); background: color-mix(in srgb, var(--act) 8%, var(--card)); color: var(--ink); }
.est__result { background: var(--ink); color: #fff; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
html:not([data-theme="dark"]) .est__result { background: var(--cool-950); }
.est__result .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.est__result .amt { font-family: var(--font-sans); font-weight: 500; font-size: clamp(30px, 4vw, 44px); letter-spacing: -0.03em; color: #fff; margin: 12px 0 6px; line-height: 1; }
.est__result .amt small { font-size: 0.42em; color: rgba(255,255,255,0.6); font-weight: 500; letter-spacing: 0; }
.est__result .sub { font-size: 13.5px; color: rgba(255,255,255,0.7); font-family: var(--font-sans); line-height: 1.5; }
.est__result .btn { margin-top: 26px; }
.est__result .dis { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.03em; color: rgba(255,255,255,0.4); margin-top: 16px; line-height: 1.5; }

/* ============================================================
   PLAN YOUR PROJECT (wizard configurator)
   ============================================================ */
.plan { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 0; border: 1px solid var(--line-soft); border-radius: var(--radius-2xl); overflow: hidden; background: var(--card); box-shadow: var(--shadow-lg); min-height: 540px; }
.plan__stage { position: relative; background: linear-gradient(180deg, #dde8f5, #c3d5e9); display: flex; align-items: center; justify-content: center; padding: 30px; }
html[data-theme="dark"] .plan__stage { background: linear-gradient(180deg, #16203a, #0f1727); }
.plan__stage svg { width: 100%; height: 100%; max-height: 470px; display: block; }
.plan__badge { position: absolute; left: 18px; top: 18px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); background: var(--card); padding: 7px 13px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }
.plan__dims { position: absolute; right: 18px; bottom: 18px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--ink); background: var(--card); padding: 7px 13px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }

.plan__panel { padding: 32px 34px; display: flex; flex-direction: column; }
.plan__prog { margin-bottom: 26px; }
.plan__prog .bar { height: 3px; border-radius: 999px; background: var(--line); overflow: hidden; }
.plan__prog .bar i { display: block; height: 100%; width: 20%; background: var(--act); border-radius: 999px; transition: width var(--dur-slow) var(--ease-considered); }
.plan__prog .lab { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.plan__prog .lab .s { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.plan__back { background: none; border: none; cursor: pointer; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-faint); display: inline-flex; align-items: center; gap: 6px; padding: 0; }
.plan__back:hover { color: var(--ink); }
.plan__back svg { width: 13px; height: 13px; }
.plan__back[hidden] { visibility: hidden; }

.plan__step { animation: planfade var(--dur-normal) var(--ease-weightless); }
@keyframes planfade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.plan__q { font-family: var(--font-sans); font-weight: 500; font-size: 23px; color: var(--ink); letter-spacing: -0.02em; line-height: 1.1; }
.plan__hint { font-size: 14px; color: var(--ink-faint); margin-top: 7px; margin-bottom: 24px; }

.plan__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.plan__tile { text-align: left; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--card); padding: 15px 16px; cursor: pointer; transition: border-color var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast); display: flex; gap: 13px; align-items: center; }
.plan__tile:hover { border-color: var(--ink); }
.plan__tile.active { border-color: var(--act); background: color-mix(in srgb, var(--act) 7%, var(--card)); box-shadow: inset 0 0 0 1px var(--act); }
.plan__tile .nm { font-family: var(--font-sans); font-weight: 500; font-size: 15px; color: var(--ink); line-height: 1.2; display: block; }
.plan__tile .ds { font-size: 12px; color: var(--ink-faint); margin-top: 3px; line-height: 1.3; display: block; }
.plan__tile .sw { width: 30px; height: 30px; border-radius: 8px; border: 1px solid rgba(0,0,0,0.14); flex: none; }
.plan__tile .gp { width: 30px; height: 30px; border-radius: 8px; flex: none; border: 1px solid rgba(0,0,0,0.1); }
.plan__tile .chk { margin-left: auto; width: 18px; height: 18px; color: var(--act); opacity: 0; flex: none; transition: opacity var(--dur-fast); }
.plan__tile.active .chk { opacity: 1; }

.plan__size { padding-top: 6px; }
.plan__size .lab { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.plan__size .lab .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.plan__size .lab .v { font-family: var(--font-sans); font-weight: 500; font-size: 22px; color: var(--ink); letter-spacing: -0.02em; }
.plan__size .ticks { display: flex; justify-content: space-between; margin-top: 10px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em; color: var(--ink-faint); }

.plan__nav { margin-top: auto; padding-top: 26px; display: flex; align-items: center; gap: 12px; }
.plan__nav .btn { margin-left: auto; }

.plan__sum { display: flex; flex-direction: column; }
.plan__sum .row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line-soft); }
.plan__sum .row:first-child { border-top: none; }
.plan__sum .row .lab { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }
.plan__sum .row .val { font-family: var(--font-sans); font-weight: 500; font-size: 14.5px; color: var(--ink); text-align: right; }
.plan__priceline { margin: 20px 0 4px; padding: 20px; border-radius: var(--radius-lg); background: var(--page-bg); border: 1px solid var(--line-soft); }
.plan__priceline .k { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.plan__priceline .amt { font-family: var(--font-sans); font-weight: 500; font-size: 32px; color: var(--ink); letter-spacing: -0.03em; margin-top: 6px; line-height: 1; }
.plan__priceline .amt small { font-size: 0.42em; color: var(--ink-faint); letter-spacing: 0; }
.plan__priceline .note { font-size: 12px; color: var(--ink-faint); margin-top: 10px; line-height: 1.5; }
.plan__cta { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.plan__cta .twin { display: flex; gap: 10px; }
.plan__cta .twin .btn { flex: 1; }

@media (max-width: 860px) {
  .plan { grid-template-columns: 1fr; }
  .plan__stage { min-height: 260px; order: -1; }
  .plan__tiles { grid-template-columns: 1fr; }
}

/* ============================================================
   GOOGLE REVIEW BADGE + TRUST SEALS
   ============================================================ */
.gbadge { display: inline-flex; align-items: center; gap: 14px; padding: 14px 20px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); }
.gbadge .g { width: 34px; height: 34px; flex: none; }
.gbadge .rt { display: flex; flex-direction: column; }
.gbadge .rt .top { display: flex; align-items: center; gap: 9px; }
.gbadge .rt .num { font-family: var(--font-sans); font-weight: 500; font-size: 18px; color: #fff; }
.gbadge .rt .stars { color: var(--sunset); letter-spacing: 1px; font-size: 14px; }
.gbadge .rt .cnt { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: rgba(255,255,255,0.6); margin-top: 2px; }

.trustcluster { display: flex; flex-wrap: wrap; gap: 12px; align-items: stretch; }
.bbb { display: inline-flex; align-items: center; gap: 12px; padding: 12px 18px 12px 14px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); }
.bbb__mark { width: 46px; height: 46px; border-radius: 10px; background: var(--primary-800); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; flex: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14); }
.bbb__mark svg { width: 12px; height: 12px; }
.bbb__mark span { font-family: var(--font-sans); font-weight: 500; font-size: 13px; letter-spacing: -0.5px; line-height: 1; color: #fff; }
.bbb__txt { display: flex; flex-direction: column; }
.bbb__txt .r { font-family: var(--font-sans); font-weight: 500; font-size: 19px; color: #fff; line-height: 1; }
.bbb__txt .t { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 4px; line-height: 1.3; }

/* ============================================================
   STICKY MOBILE ACTION BAR
   ============================================================ */
.mobilebar { display: none; }
.mobilebar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; flex: 1; padding: 9px 4px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.mobilebar a svg { width: 21px; height: 21px; }
.mobilebar a.primary { background: var(--act); color: #fff; }
.mobilebar a.primary svg { color: #fff; }
@media (max-width: 860px) {
  .mobilebar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
    background: var(--nav-bg); backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border-top: 1px solid var(--line-soft); box-shadow: 0 -4px 20px rgba(7,14,30,0.08);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  body { padding-bottom: 66px; }
  .est { grid-template-columns: 1fr; }
}

/* ============================================================
   HEADLINE HIGHLIGHT MARKER (glass-blue swipe behind a word)
   ============================================================ */
.mark {
  background-image: linear-gradient(180deg, transparent 56%, var(--highlight) 56%, var(--highlight) 94%, transparent 94%);
  padding: 0 0.08em; border-radius: 2px;
}

/* Light logo for dark backgrounds */
.brand__logo--light { filter: brightness(0) invert(1); }

/* ============================================================
   PROMISE — numbered commitments (navy band)
   ============================================================ */
.promise { background: var(--navy); }
.promise .eyebrow { color: rgba(255,255,255,0.62); }
.promise .eyebrow::before { background: rgba(255,255,255,0.5); }
.promise h2, .promise .h-xl { color: #fff; }
.promise .section-head p { color: rgba(255,255,255,0.72); }
.promise__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.promise__item { padding-top: 26px; border-top: 2px solid rgba(255,255,255,0.16); }
.promise__num { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em; color: var(--highlight); }
.promise__item h3 { color: #fff; font-size: 22px; margin: 14px 0 10px; }
.promise__item p { color: rgba(255,255,255,0.74); font-size: 15px; line-height: 1.55; }

/* ============================================================
   FULL-BLEED PHOTO CTA
   ============================================================ */
.photocta { position: relative; overflow: hidden; padding: clamp(90px, 13vw, 180px) 0; text-align: center; }
.photocta__bg { position: absolute; inset: 0; z-index: 0; }
.photocta__bg img { width: 100%; height: 100%; object-fit: cover; }
.photocta__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,21,40,0.62) 0%, rgba(10,21,40,0.48) 45%, rgba(10,21,40,0.72) 100%); }
.photocta .container { position: relative; z-index: 1; }
.photocta .eyebrow { color: rgba(255,255,255,0.72); justify-content: center; }
.photocta .eyebrow::before { background: rgba(255,255,255,0.6); }
.photocta h2, .photocta .display { color: #fff; max-width: 900px; margin-left: auto; margin-right: auto; }
.photocta p { color: rgba(255,255,255,0.85); max-width: 52ch; margin: 18px auto 0; }
.photocta__btns { display: flex; gap: 14px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.ctastrip { text-align: center; }
.ctastrip h2 { max-width: 800px; margin: 0 auto 18px; }
.ctastrip .display { font-size: clamp(36px, 5.2vw, 68px); }
.ctastrip__btns { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--section-bg); border-top: 1px solid var(--line-soft); padding: 72px 0 36px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line-soft); }
.footer__brand .brand { margin-bottom: 18px; }
.footer__brand p { font-size: 14px; color: var(--ink-faint); max-width: 320px; }
.footer__brand .social { display: flex; gap: 10px; margin-top: 22px; }
.footer__brand .social a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 11px; display: grid; place-items: center; color: var(--ink-soft); transition: all var(--dur-fast); }
.footer__brand .social a:hover { border-color: var(--ink); color: var(--ink); }
.footer__brand .social svg { width: 18px; height: 18px; }
.footer__col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 400; margin-bottom: 18px; }
.footer__col a { display: block; font-size: 14.5px; color: var(--ink-soft); padding: 6px 0; transition: color var(--dur-fast); }
.footer__col a:hover { color: var(--ink); }
.footer__bot { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; gap: 20px; flex-wrap: wrap; }
.footer__bot p { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.03em; color: var(--ink-faint); }

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.crumb { display: flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-faint); }
.crumb a { color: var(--ink-faint); transition: color var(--dur-fast); }
.crumb a:hover { color: var(--ink); }
.crumb svg { width: 12px; height: 12px; }

.shero { padding-top: 148px; position: relative; overflow: hidden; }
.shero__bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, color-mix(in srgb, var(--secondary-soft-sky) 26%, var(--page-bg)) 0%, var(--page-bg) 64%); }
html[data-theme="dark"] .shero__bg { background: linear-gradient(180deg, #131c33 0%, var(--page-bg) 64%); }
.shero .container { position: relative; z-index: 1; }
.shero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding-top: 28px; }
.shero__media { border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid var(--line-soft); aspect-ratio: 4/3.6; }
.shero__media img { width: 100%; height: 100%; object-fit: cover; }
.shero__facts { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 38px; }
.shero__facts .it .n { font-family: var(--font-sans); font-weight: 500; font-size: 23px; color: var(--ink); letter-spacing: -0.02em; }
.shero__facts .it .l { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-top: 4px; }

.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.feat { display: flex; gap: 16px; padding: 26px; border: 1px solid var(--line-soft); border-radius: var(--radius-xl); background: var(--card); }
.feat .ic { width: 44px; height: 44px; border-radius: 12px; flex: none; background: color-mix(in srgb, var(--act) 12%, transparent); color: var(--act); display: grid; place-items: center; }
.feat .ic svg { width: 22px; height: 22px; }
.feat h4 { font-size: 18px; margin-bottom: 6px; }
.feat p { font-size: 14.5px; color: var(--ink-faint); line-height: 1.5; }

.optrow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.optcard { padding: 28px; border: 1px solid var(--line-soft); border-radius: var(--radius-xl); background: var(--card); }
.optcard h4 { font-size: 16px; margin-bottom: 16px; font-family: var(--font-mono); font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; font-size: 11.5px; color: var(--ink-faint); }
.optcard ul { list-style: none; }
.optcard li { display: flex; gap: 11px; padding: 9px 0; font-size: 15px; color: var(--ink-soft); border-top: 1px solid var(--line-soft); }
.optcard li:first-child { border-top: none; }
.optcard li svg { width: 17px; height: 17px; color: var(--act); flex: none; margin-top: 2px; }

.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--font-sans); font-weight: 500; font-size: 18px; color: var(--ink); }
.faq__q svg { width: 20px; height: 20px; flex: none; color: var(--ink-faint); transition: transform var(--dur-normal) var(--ease-considered); }
.faq__item.open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-considered); }
.faq__a p { padding: 0 0 24px; color: var(--ink-soft); font-size: 15.5px; max-width: 72ch; }

.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.relcard { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); background: var(--card); transition: border-color var(--dur-fast), transform var(--dur-fast); }
.relcard:hover { border-color: var(--line); transform: translateY(-2px); }
.relcard .th { width: 56px; height: 56px; border-radius: 10px; overflow: hidden; flex: none; }
.relcard .th img { width: 100%; height: 100%; object-fit: cover; }
.relcard .nm { font-family: var(--font-sans); font-weight: 500; font-size: 15px; color: var(--ink); }
.relcard .ar { margin-left: auto; color: var(--ink-faint); }
.relcard .ar svg { width: 18px; height: 18px; }

@media (max-width: 860px) {
  .shero__grid { grid-template-columns: 1fr; gap: 36px; }
  .shero__media { order: -1; aspect-ratio: 16/11; }
  .feat-grid, .optrow, .related { grid-template-columns: 1fr; }
}

/* ============================================================
   REVEAL ANIM
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-weightless), transform 0.7s var(--ease-weightless); }
.reveal.in { opacity: 1; transform: none; }
.reveal.now { transition: none !important; }
.reveal[data-d="1"] { transition-delay: 0.07s; }
.reveal[data-d="2"] { transition-delay: 0.14s; }
.reveal[data-d="3"] { transition-delay: 0.21s; }
.reveal[data-d="4"] { transition-delay: 0.28s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .tst-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 2; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero[data-treat="split"] .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero[data-treat="split"] .hero__media { order: -1; aspect-ratio: 16/11; }
  .trustbar__grid { grid-template-columns: 1fr 1fr; }
  .trustbar__it:nth-child(3) { border-left: none; }
  .ba { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; }
  .areas { grid-template-columns: 1fr; gap: 36px; }
  .quote__contact { gap: 16px; margin-top: 40px; }
  .promise__grid { grid-template-columns: 1fr; gap: 0; }
  .promise__item { margin-top: 22px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .svc-grid, .tst-grid { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .trustbar__grid, .stats { grid-template-columns: 1fr; }
  .trustbar__it, .stat { border-left: none; border-top: 1px solid var(--line-soft); }
  .trustbar__it:first-child, .stat:first-child { border-top: none; }
  .quote__contact { grid-template-columns: 1fr; }
  .hero__meta { gap: 20px; }
  .footer__top { grid-template-columns: 1fr; }
}
