/* ============================================================
   BERYL WINDOW CARE — Design System
   Glass Palette: Ice White · Aquamarine · Slate Ink · Marine
   Aqua is the accent; crisp cool neutrals carry the weight.
   ============================================================ */

:root {
  /* Slate Ink family (base neutral — cool blue-grey, not black) */
  --navy: #223140;
  --navy-800: #2c3f50;
  --navy-700: #3a5064;
  --slate: #546374;
  --slate-bg: #7b8a99;
  /* Ice-white ground */
  --white: #f7fafc;
  --off: #edf2f7;
  --star: #f5b301;

  /* Aquamarine accents — glassy, water-leaning, never saturated */
  --accent: #5b9bc9;            /* Aquamarine (beryl variety) */
  --accent-strong: #4787b8;
  --accent-deep: #2f5d80;
  --accent-soft: #ddeaf4;       /* Aqua pale wash */
  --accent-glow: rgba(91, 155, 201, 0.30);
  --on-accent: #0d2436;
  --accent-grad-a: #a8cbe4;     /* pale glass → aqua */
  --accent-grad-b: #4787b8;

  --radius-card: 24px;
  --radius-pill: 999px;

  --font: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;

  --shadow-card: 0 10px 30px rgba(15, 28, 40, 0.08);
  --shadow-btn: 0 8px 24px rgba(15, 28, 40, 0.18);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

/* Display type: clean serif (brand guide — restrained, design-firm) */
.hero h1, .h2, .final-cta h2, .plan .price, .step-num, .qtitle {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
}
/* section headings + quote steps read in title case; hero stays caps */
.h2, .qtitle { text-transform: none; letter-spacing: -0.01em; }
button { font-family: inherit; border: 0; cursor: pointer; background: none; }

.container { width: min(1180px, 92vw); margin-inline: auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-accent {
  background: linear-gradient(135deg, var(--accent-grad-a), var(--accent-grad-b));
  color: var(--on-accent);
  padding: 16px 34px;
  text-transform: uppercase;
  font-size: 15px;
  box-shadow: 0 10px 26px var(--accent-glow);
}
.btn-accent:hover { box-shadow: 0 14px 34px var(--accent-glow); }

.btn-call {
  background: linear-gradient(135deg, var(--accent-grad-a), var(--accent-grad-b));
  color: var(--on-accent);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  padding: 14px 30px;
  font-size: 14px;
}

.arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  inset: 14px 0 auto;
  z-index: 100;
}
.nav-shell {
  width: min(1290px, 96vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 26px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(34, 49, 64, 0.08);
  transition: background 0.3s ease;
}
.site-header.scrolled .nav-shell { background: rgba(247, 250, 252, 0.9); }

.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { height: 40px; width: auto; }

/* BERYL lockup: crystal SVG mark + typeset wordmark */
.brand-mark { height: 40px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-word {
  font-family: var(--font);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: 0.22em;
  color: var(--navy);
}
.brand-word em { font-style: normal; color: var(--accent); }
.brand-desc {
  margin-top: 5px;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--slate-bg);
}

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  color: rgba(34, 49, 64, 0.85);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--accent-deep); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 2px;
  background: var(--accent);
  transition: right 0.25s ease;
}
.nav-links a:hover::after { right: 0; }

.nav-toggle { display: none; }

/* dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  translate: -50% 0;
  min-width: 250px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 28, 40, 0.2);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s ease;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--navy) !important;
  font-size: 14px;
}
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--accent-soft); color: var(--accent-deep) !important; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 620px at 85% -12%, rgba(91, 155, 201, 0.18), transparent 60%),
    radial-gradient(800px 500px at -8% 108%, rgba(168, 203, 228, 0.35), transparent 60%),
    linear-gradient(160deg, #f7fafd 0%, #e9f1f7 55%, #dce8f2 100%);
}
/* faux window-glass reflections in the hero background */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 42%, rgba(91, 155, 201, 0.10) 43%, rgba(91, 155, 201, 0.03) 50%, transparent 51%),
    linear-gradient(115deg, transparent 62%, rgba(91, 155, 201, 0.13) 63%, rgba(91, 155, 201, 0.03) 72%, transparent 73%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  right: -10%;
  top: 12%;
  width: 46vw;
  height: 70vh;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(91, 155, 201, 0.10) 55%);
  border: 1px solid rgba(47, 93, 128, 0.16);
  box-shadow: 0 30px 80px rgba(47, 93, 128, 0.14);
  transform: rotate(-4deg);
}
.hero-inner { padding: 140px 0 100px; max-width: 780px; }

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.rating-pill .stars {
  display: inline-flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.92);
  padding: 8px 14px;
  border-radius: 10px;
}
.rating-pill .stars svg { width: 16px; height: 16px; fill: var(--star); }
.rating-pill span { font-size: 14px; color: var(--slate); }

.hero h1 {
  font-size: clamp(44px, 6.4vw, 84px);
  line-height: 1.04;
  font-weight: 700;
}
.hero .sub {
  margin-top: 28px;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--slate);
  max-width: 640px;
}
.hero .btn { margin-top: 44px; }

/* ---------- SECTION HEADINGS ---------- */
.section { padding: 96px 0; }
.eyebrow {
  color: var(--accent-deep);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  text-align: center;
}
.h2 {
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}
.h2-sub {
  text-align: center;
  color: var(--accent-deep);
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 22px);
  margin-top: 8px;
}

/* ---------- SERVICES GRID ---------- */
.services-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.svc-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(15, 28, 40, 0.22); }
.svc-card.w-6 { grid-column: span 6; }
.svc-card.w-3 { grid-column: span 3; }
.svc-card h3 {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  text-align: center;
  padding: 0 18px;
  text-shadow: 0 4px 18px rgba(15, 28, 40, 0.55);
}
.svc-card .ph { position: absolute; inset: 0; z-index: 0; }
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15,28,40,0.18), rgba(15,28,40,0.44));
  transition: background 0.3s ease;
}
.svc-card:hover::after { background: linear-gradient(180deg, rgba(15,28,40,0.05), rgba(15,28,40,0.35)); }

/* photo placeholder */
.ph {
  background:
    linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.35) 31%, rgba(255,255,255,0.10) 42%, transparent 43%),
    linear-gradient(160deg, #d3dee8, #bdcdda 65%, #acbfd0);
  position: relative;
}
.ph .ph-tag {
  position: absolute;
  bottom: 12px;
  right: 14px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(34, 49, 64, 0.5);
  border: 1px dashed rgba(34, 49, 64, 0.35);
  border-radius: 8px;
  padding: 4px 8px;
}
.ph.tint-a { background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.35) 31%, rgba(255,255,255,0.10) 42%, transparent 43%), linear-gradient(160deg, #d3dee8, #bdcdda 65%, #acbfd0); }
.ph.tint-b { background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.32) 41%, rgba(255,255,255,0.10) 52%, transparent 53%), linear-gradient(200deg, #d9e3ea, #c3d2de 60%, #b1c4d4); }
.ph.tint-c { background: linear-gradient(115deg, transparent 55%, rgba(255,255,255,0.35) 56%, rgba(255,255,255,0.10) 66%, transparent 67%), linear-gradient(140deg, #cfdbe5, #b8c9d7 70%, #a7bccd); }

/* ---------- MEMBERSHIPS ---------- */
.memberships {
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.memberships::before,
.memberships::after {
  content: '';
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  filter: blur(20px);
  z-index: 0;
  opacity: 0.8;
}
.memberships::before { top: -140px; left: -180px; }
.memberships::after { bottom: -160px; right: -180px; }
.memberships .container { position: relative; z-index: 1; }

.video-frame {
  margin: 56px auto 0;
  width: min(720px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(15, 28, 40, 0.25);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-frame .play {
  position: absolute;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px var(--accent-glow);
  transition: transform 0.25s ease;
}
.video-frame:hover .play { transform: scale(1.08); }
.video-frame .play svg { width: 30px; height: 30px; fill: var(--on-accent); margin-left: 5px; }

.plans {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.plan {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px 34px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 28, 40, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan:hover { transform: translateY(-8px); box-shadow: 0 26px 60px rgba(15, 28, 40, 0.14); }
.plan .tier {
  text-align: center;
  color: var(--accent-deep);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 18px;
}
.plan .price {
  text-align: center;
  font-size: clamp(38px, 3.6vw, 50px);
  font-weight: 800;
  margin-top: 10px;
}
.plan .per {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--slate);
  font-weight: 600;
  margin-top: 4px;
}
.plan ul { margin: 30px 0 34px; display: grid; gap: 16px; }
.plan li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: #3c4c5c; }
.plan li svg { width: 18px; height: 18px; flex: none; }
.plan li.no { color: #93a1b0; }
.plan li .ck { fill: var(--accent-strong); }
.plan li .x { fill: #d05252; }
.plan .btn { margin-top: auto; justify-content: center; }

/* ---------- REVIEWS ---------- */
.reviews-head-note { font-weight: 600; font-size: clamp(22px, 2.4vw, 30px); text-align: center; color: var(--navy-700); }
.reviews-meta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.reviews-meta .stars { display: inline-flex; gap: 4px; }
.reviews-meta .stars svg { width: 20px; height: 20px; fill: var(--star); }
.reviews-meta .count { font-size: 14px; color: var(--slate); }
.g-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
}

.review-cards {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid rgba(15, 28, 40, 0.07);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.review-card .who { display: flex; align-items: center; gap: 12px; }
.review-card .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-grad-a), var(--accent-grad-b));
  color: var(--on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.review-card .name { font-weight: 600; font-size: 15px; }
.review-card .ago { font-size: 12px; color: var(--slate); }
.review-card .stars { display: inline-flex; gap: 3px; margin: 14px 0 10px; }
.review-card .stars svg { width: 15px; height: 15px; fill: var(--star); }
.review-card p { font-size: 14px; color: #3c4c5c; }

/* ---------- PROCESS ---------- */
.process {
  background: linear-gradient(180deg, #e8eff5, #d8e4ee);
  color: var(--navy);
}
.process .h2, .process .h2-sub { color: var(--navy); }
.process .h2-sub { color: var(--accent-deep); }

.process-slider { margin-top: 60px; position: relative; }
.process-card {
  display: none;
  grid-template-columns: 1fr 1.1fr;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-card);
  min-height: 480px;
}
.process-card.active { display: grid; animation: fadeSlide 0.5s ease; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}
.process-card .ph { min-height: 320px; }
.process-body { padding: 56px; display: flex; flex-direction: column; justify-content: center; }
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
}
.process-body h3 {
  margin-top: 28px;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.process-body p { margin-top: 20px; color: #3c4c5c; font-size: 16px; max-width: 480px; }

.process-nav {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.process-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(34, 49, 64, 0.08);
  color: var(--navy);
  font-weight: 700;
  transition: background 0.2s ease;
}
.process-nav button.active { background: var(--accent); color: var(--on-accent); }
.process .cta-row { display: flex; justify-content: center; margin-top: 44px; }

/* ---------- FOLLOW ALONG ---------- */
.follow { position: relative; overflow: hidden; }
.follow::before {
  content: '';
  position: absolute;
  left: 8%;
  top: 30%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  filter: blur(24px);
}
.follow .container { position: relative; }
.reel-row {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.reel {
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}
.reel:hover { transform: translateY(-6px); }
.reel .play-sm {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(34, 49, 64, 0.12);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.reel .play-sm svg { width: 18px; height: 18px; fill: var(--navy); margin-left: 3px; }
.reel .label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.6);
}

/* ---------- AREAS ---------- */
.areas .region { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 70px; }
.map-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3.4;
  position: relative;
  background: linear-gradient(150deg, #e8eef4, #d9e2ec 55%, #cfd9e4);
}
.map-card .pin {
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--accent-strong);
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(15,28,40,0.25);
}
.map-card .roads {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,0.9) 49%, rgba(255,255,255,0.9) 50%, transparent 51%),
    linear-gradient(0deg, transparent 38%, rgba(255,255,255,0.8) 39%, rgba(255,255,255,0.8) 40%, transparent 41%),
    linear-gradient(35deg, transparent 60%, rgba(255,255,255,0.7) 61%, transparent 62%);
}
.region h3 {
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.04em;
}
.acc { margin-top: 26px; display: grid; gap: 10px; }
.acc-item { border-bottom: 1px solid rgba(15, 28, 40, 0.1); }
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 15px;
  color: var(--navy);
  text-transform: uppercase;
}
.acc-head .chev { color: var(--accent-deep); transition: transform 0.25s ease; font-size: 12px; }
.acc-item.open .chev { transform: rotate(180deg); }
.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.acc-body > div { overflow: hidden; }
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body ul { padding: 0 4px 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.acc-body li { font-size: 14px; color: #3c4c5c; }
.acc-body li a { color: inherit; text-decoration: none; }
.acc-body li a:hover { color: var(--accent-deep); text-decoration: underline; }

/* ---------- BIG TESTIMONIAL ---------- */
.big-quote {
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding: 120px 0;
}
.big-quote .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 32, 45, 0.88) 0%, rgba(18, 32, 45, 0.55) 100%),
    linear-gradient(150deg, #35597a, #274763 60%, #1e3c56);
}
.big-quote blockquote {
  margin: 0;
  max-width: 760px;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.5;
  font-weight: 500;
}
.big-quote .mark {
  position: absolute;
  right: 8vw;
  bottom: 16%;
  font-size: 220px;
  line-height: 0.5;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.85;
  font-family: Georgia, serif;
}
.big-quote .who {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 18px;
}
.big-quote .stars { display: inline-flex; gap: 4px; }
.big-quote .stars svg { width: 18px; height: 18px; fill: var(--star); }

/* ---------- FINAL CTA ---------- */
.final-cta {
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 130px 0;
  overflow: hidden;
}
.final-cta .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 480px at 82% -5%, rgba(168, 203, 228, 0.25), transparent 60%),
    linear-gradient(150deg, #2f5d80, #1e3c56 70%);
}
.final-cta h2 {
  font-size: clamp(40px, 5.4vw, 74px);
  font-weight: 600;
  line-height: 1.08;
}
.final-cta p {
  margin: 26px auto 0;
  max-width: 640px;
  font-size: clamp(16px, 1.7vw, 20px);
  color: rgba(255, 255, 255, 0.88);
}
.final-cta .btn { margin-top: 44px; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: linear-gradient(180deg, #244a66, #1b3a50);
  color: rgba(255, 255, 255, 0.85);
  padding: 90px 0 0;
}
.site-footer .brand-word { color: #fff; }
.site-footer .brand-desc { color: rgba(255, 255, 255, 0.6); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .brand-mark { height: 52px; }
.footer-brand .tagline {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent-soft);
}
.socials { display: flex; gap: 16px; margin-top: 24px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}
.socials a:hover { background: var(--accent); transform: translateY(-2px); }
.socials a:hover svg { fill: var(--on-accent); }
.socials svg { width: 18px; height: 18px; fill: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 22px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255, 255, 255, 0.72); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(6, 1fr); }
  .svc-card.w-6 { grid-column: span 6; }
  .svc-card.w-3 { grid-column: span 3; }
  .plans { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .review-cards { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .process-card { grid-template-columns: 1fr; }
  .reel-row { grid-template-columns: repeat(3, 1fr); }
  .reel:nth-child(n + 4) { display: none; }
  .areas .region { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* ---------- INNER PAGE HEAD ---------- */
.page-head {
  position: relative;
  color: var(--navy);
  text-align: center;
  padding: 190px 0 96px;
  overflow: hidden;
}
.page-head .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1100px 620px at 85% -12%, rgba(91, 155, 201, 0.18), transparent 60%),
    radial-gradient(800px 500px at -8% 108%, rgba(168, 203, 228, 0.35), transparent 60%),
    linear-gradient(160deg, #f7fafd 0%, #e9f1f7 55%, #dce8f2 100%);
}
.page-head .bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 42%, rgba(91, 155, 201, 0.10) 43%, rgba(91, 155, 201, 0.03) 50%, transparent 51%),
    linear-gradient(115deg, transparent 62%, rgba(91, 155, 201, 0.13) 63%, rgba(91, 155, 201, 0.03) 72%, transparent 73%);
}
.page-head h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.06;
  text-transform: uppercase;
}
.page-head .sub {
  margin: 22px auto 0;
  max-width: 660px;
  color: var(--slate);
  font-size: clamp(16px, 1.6vw, 19px);
}

/* ---------- SERVICE DETAIL ROWS ---------- */
.svc-rows { display: grid; gap: 28px; margin-top: 64px; }
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 28, 40, 0.06);
}
.svc-row .ph { min-height: 360px; }
.svc-row .body { padding: 48px 52px; display: flex; flex-direction: column; justify-content: center; }
.svc-row.flip .ph { order: 2; }
.svc-row h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 38px);
  letter-spacing: -0.01em;
}
.svc-row .body > p { margin-top: 14px; color: #3c4c5c; font-size: 15.5px; }
.svc-row ul { margin-top: 20px; display: grid; gap: 10px; }
.svc-row li { display: flex; gap: 10px; align-items: center; font-size: 15px; color: #3c4c5c; }
.svc-row li svg { width: 16px; height: 16px; fill: var(--accent-strong); flex: none; }

/* ---------- PROSE (legal pages) ---------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose .updated {
  color: var(--slate);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin-top: 44px;
}
.prose p, .prose li { color: #3c4c5c; font-size: 15.5px; }
.prose p { margin-top: 14px; }
.prose ul { margin-top: 12px; padding-left: 22px; list-style: disc; display: grid; gap: 8px; }
.prose a { color: var(--accent-deep); text-decoration: underline; }

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 64px;
}
.about-grid .ph {
  border-radius: var(--radius-card);
  min-height: 440px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
}
.about-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.01em;
}
.about-copy p { margin-top: 16px; color: #3c4c5c; font-size: 15.5px; }

.value-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 28, 40, 0.05);
}
.value-card .ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-grad-a), var(--accent-grad-b));
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-card .ico svg { width: 22px; height: 22px; fill: var(--on-accent); }
.value-card h3 { margin-top: 20px; font-size: 19px; font-weight: 700; }
.value-card p { margin-top: 10px; font-size: 14.5px; color: #3c4c5c; }

/* ---------- LOCATIONS ---------- */
.loc-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.loc-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 28, 40, 0.05);
}
.loc-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.01em;
}
.loc-card .blurb { margin-top: 10px; font-size: 14px; color: var(--slate); }
.loc-card ul { margin-top: 18px; display: grid; gap: 9px; }
.loc-card li { display: flex; gap: 10px; align-items: center; font-size: 15px; color: #3c4c5c; }
.loc-card li svg { width: 14px; height: 14px; fill: var(--accent-strong); flex: none; }
.loc-card li a { color: inherit; text-decoration: none; }
.loc-card li a:hover { color: var(--accent-deep); text-decoration: underline; }

/* ---------- RESPONSIVE (inner pages) ---------- */
@media (max-width: 1024px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-row.flip .ph { order: 0; }
  .svc-row .ph { min-height: 260px; }
  .about-grid { grid-template-columns: 1fr; }
  .value-grid, .loc-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(247, 250, 252, 0.97);
    border: 1px solid rgba(34, 49, 64, 0.08);
    box-shadow: 0 24px 60px rgba(15, 28, 40, 0.2);
    border-radius: 18px;
    padding: 24px;
    gap: 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle {
    display: block;
    color: var(--navy);
    font-size: 26px;
    line-height: 1;
  }
  .svc-card.w-3 { grid-column: span 6; }
  .reel-row { grid-template-columns: repeat(2, 1fr); }
  .reel:nth-child(n + 3) { display: none; }
  .acc-body ul { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .big-quote .mark { display: none; }
}
