/* ===========================================================
   KRAKEN WINDOW CLEANING
   Brand: Deep navy + Kraken teal (#2AADAD)
   =========================================================== */

:root {
  --navy:        #0a2233;
  --navy-deep:   #061521;
  --navy-soft:   #123349;
  --teal:        #2aadad;
  --teal-bright: #38c9c9;
  --teal-dark:   #1e8a8a;
  --light-blue:  #cdeeee;
  --ice:         #f4fbfb;
  --white:       #ffffff;
  --ink:         #16323f;
  --muted:       #5f7785;
  --line:        #e2ecef;
  --shadow-sm:   0 4px 14px rgba(10, 34, 51, 0.08);
  --shadow-md:   0 14px 40px rgba(10, 34, 51, 0.12);
  --shadow-lg:   0 30px 70px rgba(6, 21, 33, 0.22);
  --radius:      18px;
  --radius-lg:   28px;
  --max:         1200px;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --display:     'Poppins', var(--font);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--display); line-height: 1.12; color: var(--navy); font-weight: 700; }
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p  { color: var(--muted); }
a  { color: var(--teal-dark); text-decoration: none; }

img { max-width: 100%; display: block; }

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

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--navy { background: var(--navy); color: var(--light-blue); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--ice { background: var(--ice); }

.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 16px;
}
.section--navy .eyebrow { color: var(--teal-bright); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 60ch; }
.section--navy .lead { color: var(--light-blue); }

.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-dark));
  color: #fff;
  box-shadow: 0 12px 26px rgba(42, 173, 173, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(42, 173, 173, 0.45); }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-2px); }
.btn--light {
  background: #fff;
  color: var(--navy);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold {
  background: linear-gradient(135deg, #f6ca5a, #d99b1c);
  color: #3a2a00;
  box-shadow: 0 12px 26px rgba(217, 155, 28, 0.32);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(217, 155, 28, 0.45); }
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 18px 38px; font-size: 1.08rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand-text { font-family: var(--display); font-weight: 700; color: var(--navy); line-height: 1; }
.brand-text small { display: block; font-size: 0.62rem; letter-spacing: 0.22em; color: var(--teal-dark); font-weight: 600; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  padding: 9px 13px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--ice); color: var(--teal-dark); }
.nav-links a.active { color: var(--teal-dark); }
.nav-links a.nav-only-mobile { display: none; }
.nav.open .nav-links a.nav-only-mobile { display: block; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone { font-family: var(--display); font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.nav-phone svg { width: 16px; height: 16px; color: var(--teal-dark); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(56,201,201,0.18), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  padding: clamp(60px, 8vw, 110px) 0;
}
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--teal-bright); }
.hero p.lead { color: #c5dbe4; margin-top: 22px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-trust .stat strong { display: block; font-family: var(--display); font-size: 1.7rem; color: #fff; }
.hero-trust .stat span { font-size: 0.85rem; color: #9fc0cc; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(56,201,201,0.14);
  border: 1px solid rgba(56,201,201,0.35);
  color: var(--teal-bright);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero-badge .stars { color: #ffd166; letter-spacing: 2px; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual img { filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)); max-width: 460px; width: 100%; }
.hero-glow {
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(56,201,201,0.4), transparent 65%);
  filter: blur(20px);
  z-index: -1;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}

/* Hero photo (real image in rounded frame) */
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  aspect-ratio: 4 / 5;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; display: block; }
.hero-photo .float-badge {
  position: absolute;
  left: 16px; bottom: 16px; right: auto;
  max-width: min(80%, 300px);
  background: rgba(10,34,51,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(56,201,201,0.35);
  border-radius: 14px;
  padding: 12px 15px;
  display: flex; align-items: center; gap: 12px;
}
.hero-photo .float-badge .g {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: #fff; display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 1.1rem;
}
.hero-photo .float-badge .stars { color: #ffc83d; font-size: 0.85rem; letter-spacing: 1px; }
.hero-photo .float-badge strong { color: #fff; font-family: var(--display); font-size: 0.95rem; display:block; }
.hero-photo .float-badge span { color: #aac7d2; font-size: 0.8rem; }

/* Rating chips row */
.rating-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.rating-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 10px 14px;
}
.rating-chip .ico-badge { width: 22px; height: 22px; border-radius: 5px; display:grid; place-items:center; font-weight:700; font-size:0.8rem; }
.rating-chip .ico-badge.google { background:#fff; color:#4285F4; }
.rating-chip .ico-badge.fb { background:#1877F2; color:#fff; }
.rating-chip .txt strong { color:#fff; font-family:var(--display); font-size:0.9rem; display:block; line-height:1.1; }
.rating-chip .txt span { color:#9fc0cc; font-size:0.75rem; }

/* Photo service cards */
.svc-card {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s, box-shadow .2s;
  display:flex; flex-direction:column;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-card .media { aspect-ratio: 3 / 2; overflow:hidden; position:relative; }
.svc-card .media img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.svc-card:hover .media img { transform: scale(1.05); }
.svc-card .media .tag {
  position:absolute; top:12px; left:12px;
  background: rgba(10,34,51,0.85); color:#fff; backdrop-filter: blur(6px);
  font-family:var(--display); font-weight:600; font-size:0.78rem;
  padding:5px 12px; border-radius:999px;
}
.svc-card .media .tag.free { background: var(--teal); }
.svc-card .body { padding: 24px; display:flex; flex-direction:column; flex-grow:1; }
.svc-card h3 { margin-bottom:8px; }
.svc-card p { font-size:0.94rem; }
.svc-card .price-line { margin-top:14px; font-family:var(--display); font-weight:700; color:var(--navy); }
.svc-card .price-line.free { color: var(--teal-dark); }

/* Gallery grid */
.gallery { display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px; grid-auto-flow: dense; }
.gallery .shot {
  border-radius: 14px; overflow:hidden; position:relative;
  aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm);
}
.gallery .shot img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.gallery .shot:hover img { transform: scale(1.06); }
.gallery .shot.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery .shot.tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery .shot.feature { grid-column: span 2; grid-row: span 2; aspect-ratio: 1 / 1; }
.gallery .shot.feature img { object-position: 25% 88%; }

/* Before/after comparison slider */
.ba-slider {
  position: relative; width: 100%; max-width: 900px; margin: 0 auto;
  aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); --pos: 50%; user-select: none; touch-action: pan-y;
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-divider { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; background: #fff; transform: translateX(-50%); pointer-events: none; }
.ba-handle {
  position: absolute; top: 50%; left: var(--pos); transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%; background: #fff;
  box-shadow: var(--shadow-md); display: grid; place-items: center; color: var(--teal-dark);
  pointer-events: none;
}
.ba-handle svg { width: 24px; height: 24px; }
.ba-label {
  position: absolute; bottom: 16px; font-family: var(--display); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: #fff;
  background: rgba(10,34,51,0.72); padding: 6px 14px; border-radius: 999px;
  backdrop-filter: blur(4px); pointer-events: none;
}
.ba-label--before { left: 16px; }
.ba-label--after { right: 16px; }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.ba-range:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: var(--radius-lg); }

/* Section media image (split blocks) */
.media-frame { border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lg); }
.media-frame img { width:100%; height:100%; object-fit:cover; display:block; }
.media-frame.tall { aspect-ratio: 4/5; }

/* Service area pill links */
.area-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 820px; margin: 0 auto; }
.area-links a {
  display: inline-block; padding: 11px 22px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  font-family: var(--display); font-weight: 600; font-size: 0.98rem; color: var(--navy);
  transition: border-color .15s, color .15s, transform .15s, box-shadow .15s;
}
.area-links a:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* Portrait for about */
.portrait-stack { position: relative; }
.portrait-stack .media-frame { aspect-ratio: 4/5; }
.portrait-stack .badge-card {
  position:absolute; bottom:-22px; left:-22px;
  background:#fff; border-radius: 16px; padding: 18px 22px;
  box-shadow: var(--shadow-md); border:1px solid var(--line);
}
.portrait-stack .badge-card strong { font-family:var(--display); font-size:1.6rem; color:var(--navy); display:block; }
.portrait-stack .badge-card span { font-size:0.82rem; color:var(--muted); }

/* ---------- Logo strip / trust ---------- */
.trust-bar { background: var(--navy-deep); padding: 22px 0; }
.trust-bar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; text-align: center; }
.trust-item { display: inline-flex; align-items: center; gap: 10px; color: #cdeeee; font-family: var(--display); font-weight: 500; font-size: 0.95rem; }
.trust-item svg { width: 20px; height: 20px; color: var(--teal-bright); flex-shrink: 0; }

/* ---------- Section header ---------- */
.section-head { max-width: 720px; margin: 0 auto 56px; }
.section-head.left { margin-left: 0; }

/* ---------- Feature / differentiator cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .ico {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(56,201,201,0.16), rgba(42,173,173,0.08));
  color: var(--teal-dark);
  margin-bottom: 20px;
}
.card .ico svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.96rem; }

/* feature list on navy */
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.feature-card:hover { transform: translateY(-4px); background: rgba(56,201,201,0.08); border-color: rgba(56,201,201,0.3); }
.feature-card .ico {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 16px;
  color: var(--teal-bright); background: rgba(56,201,201,0.12);
}
.feature-card .ico svg { width: 20px; height: 20px; }
.feature-card h3 { color: #fff; margin-bottom: 10px; }
.feature-card p { color: #aac7d2; font-size: 0.96rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--teal);
  color: #fff;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; font-size: 1.15rem; }
.step p { font-size: 0.94rem; }

/* ---------- Pricing / Plans ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.plans--four { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.plans--four .plan { padding: 32px 24px; }
.plans--four .plan h3 { font-size: 1.25rem; }
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan--featured {
  border: 2px solid var(--teal);
  box-shadow: 0 24px 60px rgba(42,173,173,0.22);
}
.plan--featured::before {
  content: "Most Popular";
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-dark));
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 7px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.plan--premium {
  border: 2px solid #e6b035;
  box-shadow: 0 24px 60px rgba(230,176,53,0.22);
}
.plan--premium::before {
  content: "Highest Value";
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #f6ca5a, #d99b1c);
  color: #3a2a00;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 7px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.plan h3 { font-size: 1.4rem; color: var(--navy); }
.section--navy .plan h3 { color: var(--navy); }
.plan .plan-sub { color: var(--muted); font-size: 0.94rem; margin: 8px 0 22px; min-height: 42px; }
.plan .price { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 2.4rem; line-height: 1; }
.plan .price small { font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.plan .price-note { font-size: 0.85rem; color: var(--teal-dark); font-weight: 600; margin-top: 6px; }
.plan ul { list-style: none; margin: 24px 0 28px; display: grid; gap: 12px; }
.plan ul li { position: relative; padding-left: 30px; font-size: 0.95rem; color: var(--ink); }
.plan ul li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 18px; height: 18px;
  background: var(--teal);
  border-radius: 5px;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/14px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/14px no-repeat;
}
.plan .btn { margin-top: auto; }

/* ---------- Service list rows ---------- */
.svc-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow .2s, transform .2s;
}
.svc-row + .svc-row { margin-top: 16px; }
.svc-row:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.svc-row .ico {
  width: 64px; height: 64px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(56,201,201,0.16), rgba(42,173,173,0.07));
  color: var(--teal-dark);
}
.svc-row .ico svg { width: 30px; height: 30px; }
.svc-row h3 { margin-bottom: 4px; font-size: 1.2rem; }
.svc-row p { font-size: 0.95rem; }
.svc-price {
  font-family: var(--display); font-weight: 700; color: var(--navy);
  font-size: 1.05rem; text-align: right; white-space: nowrap;
}
.svc-price small { display:block; font-weight: 500; font-size: 0.78rem; color: var(--teal-dark); }
.svc-price.free { color: var(--teal-dark); }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.review .stars { color: #ffc83d; letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 14px; }
.review p { color: var(--ink); font-size: 0.98rem; flex-grow: 1; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.review .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-dark));
  color: #fff; display: grid; place-items: center;
  font-family: var(--display); font-weight: 600;
}
.review .who strong { display:block; font-family: var(--display); color: var(--navy); font-size: 0.95rem; }
.review .who span { font-size: 0.8rem; color: var(--muted); }

/* ---------- Split / About ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split-media.framed {
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  border-radius: var(--radius-lg);
  padding: 50px;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
}
.split-media.framed img { box-shadow: none; max-width: 360px; }

/* ---------- Guarantee badges ---------- */
.promise {
  display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: start;
  padding: 28px; border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
}
.promise .ico {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(56,201,201,0.14); color: var(--teal-bright);
  display: grid; place-items: center;
}
.promise .ico svg { width: 30px; height: 30px; }
.promise h3 { color: #fff; margin-bottom: 6px; }
.promise p { color: #aac7d2; font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: rgba(42,173,173,0.4); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--display);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--ice); color: var(--teal-dark);
  display: grid; place-items: center; transition: transform .25s, background .2s;
}
.faq-item[open] summary .chev { transform: rotate(45deg); background: var(--teal); color:#fff; }
.faq-item .faq-body { padding: 0 26px 24px; }
.faq-item .faq-body p { font-size: 0.98rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 400px at 85% 0%, rgba(56,201,201,0.25), transparent 60%),
    linear-gradient(135deg, var(--teal-dark), var(--navy) 90%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 70px);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #d6eeee; max-width: 56ch; margin: 16px auto 0; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 50px; align-items: start; }
.contact-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-card h2 { color: #fff; }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-method:last-child { border-bottom: none; }
.contact-method .ico {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: rgba(56,201,201,0.14); color: var(--teal-bright);
  display: grid; place-items: center;
}
.contact-method .ico svg { width: 22px; height: 22px; }
.contact-method strong { font-family: var(--display); color:#fff; display:block; }
.contact-method a, .contact-method span { color: #aac7d2; font-size: 0.95rem; }
.contact-method a:hover { color: var(--teal-bright); }

.qr-box { text-align: center; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.qr-box img { width: 150px; margin: 0 auto 10px; border-radius: 12px; background:#fff; padding: 8px; }
.qr-box span { font-size: 0.85rem; color:#9fc0cc; }

.form { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form .field { margin-bottom: 18px; }
.form label { display:block; font-family: var(--display); font-weight: 500; font-size: 0.9rem; color: var(--navy); margin-bottom: 7px; }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
  background: var(--ice);
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--teal); background:#fff;
  box-shadow: 0 0 0 4px rgba(42,173,173,0.12);
}
.form textarea { resize: vertical; min-height: 120px; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Extras checkbox chips */
.extras { display: flex; flex-wrap: wrap; gap: 12px; }
.extra-chip {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 13px 17px;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--ice); cursor: pointer; user-select: none;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.extra-chip:hover { border-color: var(--teal); }
.extra-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.extra-chip .box {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid #bcd0d8; border-radius: 6px;
  display: grid; place-items: center;
  background: #fff; transition: background .15s, border-color .15s;
}
.extra-chip .box::after {
  content: ""; width: 12px; height: 12px; background: #fff; opacity: 0;
  transition: opacity .15s;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/12px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/12px no-repeat;
}
.extra-chip input:checked ~ .box { background: var(--teal); border-color: var(--teal); }
.extra-chip input:checked ~ .box::after { opacity: 1; }
.extra-chip:has(input:checked) { border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px rgba(42,173,173,0.12); }
.extra-chip input:focus-visible ~ .box { box-shadow: 0 0 0 3px rgba(42,173,173,0.25); }
.extra-text { font-size: 0.95rem; color: var(--ink); }
.extra-text .price { color: var(--teal-dark); font-weight: 600; font-family: var(--display); font-size: 0.85rem; margin-left: 4px; }
.form .note { font-size: 0.85rem; color: var(--muted); margin-top: 14px; text-align:center; }
.form-success { display:none; text-align:center; padding: 20px; }
.form-success img { width: 64px; margin: 0 auto 14px; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  background:
    radial-gradient(700px 400px at 90% -20%, rgba(56,201,201,0.18), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 0 clamp(56px, 8vw, 90px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px; opacity:.5;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #c5dbe4; max-width: 60ch; margin: 18px auto 0; font-size: 1.1rem; }
.breadcrumb { font-size: 0.85rem; color: var(--teal-bright); margin-bottom: 14px; font-family: var(--display); letter-spacing: 0.05em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #9fc0cc; padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand img { height: 56px; margin-bottom: 16px; }
.footer-brand p { color: #87a8b5; font-size: 0.92rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 0.04em; }
.footer-col a { display: block; color: #9fc0cc; font-size: 0.92rem; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--teal-bright); }
.footer-contact .contact-method { padding: 12px 0; border-color: rgba(255,255,255,0.07); }
.footer-bottom {
  margin-top: 50px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem; color: #6f909d;
}
.footer-bottom a { color: #6f909d; }
.footer-bottom a:hover { color: var(--teal-bright); }

/* ---------- Floating mobile CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 10px 14px;
  gap: 10px;
}
.mobile-cta .btn { flex: 1; padding: 13px; font-size: 0.95rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  .hero-visual img { max-width: 320px; }
  .hero-cta, .hero-trust { justify-content: center; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split-media { order: -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plans--four { grid-template-columns: 1fr 1fr; max-width: 720px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-photo { aspect-ratio: 4/3; max-width: 560px; margin: 0 auto; order: -1; }
  .rating-row { justify-content: center; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .shot.tall { grid-row: span 1; aspect-ratio: 1/1; }
  .portrait-stack { max-width: 440px; margin: 0 auto 22px; }
}
@media (max-width: 1140px) {
  .nav-links, .nav-cta .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 14px 24px 22px; gap: 4px;
    box-shadow: var(--shadow-md);
    z-index: 101;
  }
  .nav.open .nav-links a { padding: 13px 14px; }
}
@media (max-width: 720px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .plans--four { grid-template-columns: 1fr; max-width: 460px; }
  .steps { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form .row2 { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 52px 1fr; }
  .svc-row .svc-price { grid-column: 2; text-align: left; }
  .svc-row .ico { width: 52px; height: 52px; }
  .mobile-cta { display: flex; }
  .nav-cta .btn { display: none; }
  body { padding-bottom: 68px; }
  .site-footer { padding-bottom: 84px; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery .shot.wide { grid-column: span 2; aspect-ratio: 2/1; }
  .gallery .shot.feature { grid-column: span 2; grid-row: span 1; aspect-ratio: 4/3; }
  .svc-card .media { aspect-ratio: 16/10; }
  .hero-grid { padding: 44px 0 54px; gap: 32px; }
  .hero-photo { aspect-ratio: 4/3; max-width: 100%; }
  .hero-photo .float-badge { left: 12px; bottom: 12px; padding: 10px 13px; max-width: min(86%, 290px); }
  .hero-badge { margin-bottom: 18px; }
  .rating-row { gap: 8px; }
  .rating-chip { padding: 8px 11px; }

  /* Tighter vertical rhythm so there's less endless scrolling */
  .section { padding: 52px 0; }
  .section--tight { padding: 38px 0; }
  .section-head { margin-bottom: 34px; }

  /* Big, thumb-friendly, full-width call-to-action buttons */
  .hero-cta { width: 100%; gap: 12px; }
  .hero-cta .btn { width: 100%; }
  .btn--lg { padding: 15px 26px; font-size: 1rem; }

  /* Leaner cards & forms (less wasted space on small screens) */
  .card { padding: 26px 22px; }
  .form { padding: 26px 20px; }
  .contact-card { padding: 28px 22px; }
  .plans { gap: 30px; }

  /* Comfortable tap targets in the sticky bar */
  .mobile-cta .btn { padding: 15px; font-size: 1rem; }
}
@media (max-width: 440px) {
  .hero-photo .float-badge { display: none; }
  .container { padding: 0 18px; }
  h1 { font-size: 2.15rem; }
  .hero-trust { gap: 18px; }
}
