/* ===================================================================
   Winnie the Pool — stylesheet
   Brand: pool blue + honey gold. Friendly, trustworthy, modern.
   =================================================================== */

:root {
  /* Pool blues */
  --deep: #0a4f6e;
  --blue: #0d6e8c;
  --aqua: #18b6d6;
  --aqua-bright: #2bc4e0;
  --aqua-soft: #d9f3f9;
  /* Honey gold */
  --honey: #f3a712;
  --honey-bright: #ffb627;
  --honey-soft: #fff4dc;
  /* Neutrals */
  --ink: #0b2230;
  --ink-soft: #44606e;
  --line: #e4eef2;
  --surface: #f4fafc;
  --white: #ffffff;

  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(10, 79, 110, .08);
  --shadow: 0 14px 40px rgba(10, 79, 110, .14);
  --shadow-lg: 0 30px 70px rgba(10, 79, 110, .22);
  --container: 1160px;

  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; margin: 0 0 .5em; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1rem; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--honey); color: var(--ink); padding: 10px 18px; border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: .8em 1.5em; 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; text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 1em 1.9em; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(13, 110, 140, .32); }
.btn-primary:hover { background: var(--deep); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(13, 110, 140, .4); }

.btn-honey { background: var(--honey-bright); color: #3a2a00; box-shadow: 0 10px 24px rgba(243, 167, 18, .4); }
.btn-honey:hover { background: var(--honey); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(243, 167, 18, .5); }

.btn-ghost { background: rgba(255,255,255,.7); color: var(--blue); border-color: var(--aqua-soft); }
.btn-ghost:hover { background: #fff; border-color: var(--aqua); transform: translateY(-2px); }

.btn-light { background: #fff; color: var(--blue); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: rgba(255,255,255,.14); border-color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); background: rgba(255,255,255,.95); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 14px; }

.brand { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 800; font-size: 1.18rem; color: var(--ink); white-space: nowrap; }
.brand-name { white-space: nowrap; }
.brand-mark { flex: none; filter: drop-shadow(0 4px 8px rgba(10,79,110,.25)); }
.brand-name-accent { color: var(--blue); }

.main-nav { display: flex; gap: 2px; }
.main-nav a {
  color: var(--ink-soft); font-weight: 500; font-size: .9rem; padding: 8px 9px; border-radius: 10px;
  white-space: nowrap; transition: color .15s ease, background .15s ease;
}
.main-nav a:hover { color: var(--blue); background: var(--aqua-soft); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn-primary { padding: .62em 1.15em; }
.phone-link { display: inline-flex; align-items: center; gap: .4rem; flex: none; white-space: nowrap; font-weight: 600; color: var(--ink); font-family: var(--font-head); font-size: .95rem; }
.phone-link:hover { color: var(--blue); }
.phone-link svg { color: var(--aqua); flex: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(48px, 7vw, 92px) 0 0; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 500px at 78% -8%, rgba(255,182,39,.22), transparent 60%),
    radial-gradient(1100px 700px at 12% 6%, rgba(43,196,224,.30), transparent 60%),
    linear-gradient(160deg, #eafaff 0%, #d7f1f9 45%, #c5ebf6 100%);
}
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; padding-bottom: clamp(70px, 10vw, 130px); }

.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .04em;
  color: var(--honey); background: var(--honey-soft); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; text-transform: uppercase;
}
.eyebrow-center { display: block; width: fit-content; margin: 0 auto 18px; }
.eyebrow-light { background: rgba(255,255,255,.16); color: #fff; }

.hero-content h1 { margin-bottom: .35em; }
.text-gradient { background: linear-gradient(100deg, var(--blue), var(--aqua-bright) 70%, var(--honey)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 1.18rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 1.8rem; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 28px; padding: 0; margin: 0; color: var(--ink-soft); font-size: .95rem; }
.hero-badges li { position: relative; padding-left: 22px; }
.hero-badges li::before { content: "✓"; position: absolute; left: 0; color: var(--aqua); font-weight: 800; }
.hero-badges strong { color: var(--ink); }

/* hero card */
.hero-card-wrap { display: flex; justify-content: center; }
.hero-card {
  width: 100%; max-width: 360px; background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); transform: rotate(-1.5deg); animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: rotate(-1.5deg) translateY(0); } 50% { transform: rotate(-1.5deg) translateY(-12px); } }
.hero-card-water { height: 140px; position: relative; background: linear-gradient(180deg, #bdeefb, #6fd9ef); }
.waves { position: absolute; inset: 0; width: 100%; height: 100%; }
.wave-1 { animation: waveMove 7s ease-in-out infinite; }
.wave-2 { animation: waveMove 5s ease-in-out infinite reverse; }
@keyframes waveMove { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-22px); } }
.hero-card-body { padding: 22px 24px 26px; }
.hero-card-kicker { font-family: var(--font-head); font-weight: 600; color: var(--honey); text-transform: uppercase; font-size: .72rem; letter-spacing: .06em; margin: 0 0 4px; }
.hero-card-title { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; margin: 0 0 4px; }
.hero-card-price { color: var(--ink-soft); margin: 0 0 16px; }
.hero-card-price span { color: var(--blue); font-weight: 700; }

.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: -1; }
.hero-wave svg { width: 100%; height: clamp(50px, 7vw, 110px); display: block; }

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section-tint { background: var(--surface); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(34px, 5vw, 56px); }
.section-lead { color: var(--ink-soft); font-size: 1.1rem; }
.text-light { color: #fff; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--aqua-soft); }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(140deg, var(--aqua-soft), #fff); color: var(--blue);
}
.card-icon svg { width: 30px; height: 30px; }
.card:nth-child(even) .card-icon { background: linear-gradient(140deg, var(--honey-soft), #fff); color: var(--honey); }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--ink-soft); font-size: .98rem; }
.card-link { font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--blue); }
.card-link:hover { color: var(--deep); }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.why-media { position: relative; }
.why-photo {
  aspect-ratio: 4/3.4; border-radius: var(--radius-lg); position: relative; box-shadow: var(--shadow);
  background: #0a4f6e url("../img/service-vacuum.jpg") center/cover;
  overflow: hidden;
}
.why-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,40,55,.28), transparent 30%, transparent 70%, rgba(8,40,55,.22));
}
.why-photo-badge {
  position: absolute; top: 18px; left: 18px; z-index: 2; background: #fff; color: var(--honey);
  font-family: var(--font-head); font-weight: 700; padding: 7px 14px; border-radius: 999px; box-shadow: var(--shadow-sm); font-size: .9rem;
}
.why-photo-float {
  position: absolute; right: -14px; bottom: -18px; z-index: 2; background: #fff; border-radius: 16px;
  padding: 14px 20px; box-shadow: var(--shadow); display: flex; flex-direction: column; line-height: 1.2;
}
.why-photo-float strong { font-family: var(--font-head); color: var(--blue); font-size: 1.05rem; }
.why-photo-float span { color: var(--ink-soft); font-size: .88rem; }

.feature-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .check { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--aqua-soft); color: var(--blue); display: grid; place-items: center; font-weight: 800; font-size: .85rem; margin-top: 2px; }
.feature-list strong { color: var(--ink); }
.feature-list div { color: var(--ink-soft); }

/* ---------- Process steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-sm); }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 14px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: #fff;
  background: linear-gradient(140deg, var(--aqua-bright), var(--blue));
}
.step:nth-child(even) .step-num { background: linear-gradient(140deg, var(--honey-bright), var(--honey)); color: #3a2a00; }
.step h3 { margin-bottom: .3em; }
.step p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; margin: 0;
  background: #0d6e8c center/cover no-repeat;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-item::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(8,40,55,.72)); }
.gallery-item:hover { transform: translateY(-5px) scale(1.01); box-shadow: var(--shadow); }
.gallery-item figcaption { position: absolute; left: 16px; bottom: 14px; z-index: 2; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
/* real project photos — add more tiles as new photos arrive */
.gphoto-paver    { background-image: url("../img/pool-paver-deck.jpg"); }
.gphoto-freeform { background-image: url("../img/pool-freeform.jpg"); background-position: center 40%; }
.gphoto-skim     { background-image: url("../img/service-skim.jpg"); background-position: center 32%; }
.gphoto-bayfront { background-image: url("../img/pool-bayfront.jpg"); }
.gphoto-arched   { background-image: url("../img/pool-arched-lanai.jpg"); }
.gphoto-patio    { background-image: url("../img/pool-screened-patio.jpg"); }
.gphoto-brick    { background-image: url("../img/pool-brick-coping.jpg"); }
.gphoto-grill    { background-image: url("../img/pool-backyard-grill.jpg"); }
.gphoto-oval     { background-image: url("../img/pool-oval-brick.jpg"); }
.gphoto-garden   { background-image: url("../img/pool-garden-view.jpg"); }
.gphoto-acidwide { background-image: url("../img/service-acid-wide.jpg"); background-position: center 36%; }
.gphoto-acid     { background-image: url("../img/service-acid.jpg"); background-position: center 32%; }
.gphoto-gardenrain  { background-image: url("../img/pool-garden-view-rain.jpg"); }
.gphoto-lap         { background-image: url("../img/pool-lap-basketball.jpg"); }
.gphoto-freeformwide{ background-image: url("../img/pool-freeform-wide.jpg"); }
.gphoto-freeform2   { background-image: url("../img/pool-freeform-2.jpg"); background-position: center 45%; }
.gphoto-spa         { background-image: url("../img/pool-spa.jpg"); background-position: center 48%; }
.gphoto-lakefront   { background-image: url("../img/pool-lakefront.jpg"); background-position: center 45%; }
.gphoto-screened2   { background-image: url("../img/pool-screened-2.jpg"); background-position: center 45%; }
.gphoto-pump        { background-image: url("../img/service-pump.jpg"); background-position: center 30%; }
.gphoto-filterpump  { background-image: url("../img/service-filter-pump.jpg"); background-position: center 32%; }
.gphoto-filterclean { background-image: url("../img/service-filter-clean.jpg"); background-position: center 40%; }
.gphoto-waterfront  { background-image: url("../img/service-waterfront.jpg"); background-position: center 35%; }
.gphoto-repair      { background-image: url("../img/service-repair.jpg"); background-position: center 38%; }
.gphoto-weekly      { background-image: url("../img/service-weekly.jpg"); background-position: center 42%; }

/* ---------- Gallery count badge + lightbox ---------- */
.gallery-item { cursor: pointer; }
.gallery-item:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; }
.gallery-count {
  position: absolute; top: 12px; right: 12px; z-index: 3; display: inline-flex; align-items: center; gap: 5px;
  background: rgba(8,40,55,.78); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(3px); pointer-events: none;
}
.gallery-count svg { display: block; }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center;
  background: rgba(8,28,38,.93); backdrop-filter: blur(4px); padding: 24px;
}
.lightbox.open { display: flex; }
.lb-figure { margin: 0; max-width: min(1100px, 94vw); max-height: 88vh; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lb-img { max-width: 100%; max-height: 78vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.5); object-fit: contain; background: #0a2230; }
.lb-caption { color: #eaf7fb; font-family: var(--font-head); font-weight: 600; text-align: center; }
.lb-counter { color: #9fc4d2; font-weight: 500; margin-left: 8px; }
.lb-close, .lb-nav {
  position: absolute; border: 0; background: rgba(255,255,255,.12); color: #fff; cursor: pointer;
  display: grid; place-items: center; border-radius: 50%; transition: background .15s ease, transform .15s ease;
}
.lb-close { top: 16px; right: 20px; width: 46px; height: 46px; font-size: 1.9rem; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2rem; line-height: 1; }
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.28); }
.lb-nav:hover { transform: translateY(-50%) scale(1.06); }
.lb-prev { left: 20px; } .lb-next { right: 20px; }
.lb-nav[hidden] { display: none; }
@media (max-width: 540px) {
  .lb-nav { width: 44px; height: 44px; font-size: 1.5rem; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-close { top: 10px; right: 12px; }
}

/* ---------- Plans ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plans-2 { grid-template-columns: repeat(2, 1fr); max-width: 740px; margin-left: auto; margin-right: auto; }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 28px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan-featured { border: 2px solid var(--honey-bright); box-shadow: var(--shadow); transform: scale(1.03); }
.plan-featured:hover { transform: scale(1.03) translateY(-6px); }
.plan-flag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--honey-bright); color: #3a2a00; font-family: var(--font-head); font-weight: 700; font-size: .78rem; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }
.plan-name { font-size: 1.4rem; margin-bottom: .1em; }
.plan-price { margin: 0 0 .2em; color: var(--ink-soft); }
.plan-amount { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--blue); }
.plan-tag { color: var(--ink-soft); font-size: .92rem; margin-bottom: 20px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 11px; flex: 1; }
.plan-features li { position: relative; padding-left: 26px; color: var(--ink-soft); font-size: .96rem; }
.plan-features li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--aqua); font-weight: 800; }
.plans-note { text-align: center; color: var(--ink-soft); font-size: .9rem; margin-top: 26px; }

/* ---------- Service areas ---------- */
.areas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.area-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.area-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--aqua-soft); }
.area-icon { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.area-card h3 { margin-bottom: .1em; }
.area-meta { color: var(--honey); font-family: var(--font-head); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 16px; }
.zip-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.zip-list li { background: var(--aqua-soft); color: var(--deep); font-family: var(--font-head); font-weight: 600; font-size: .9rem; padding: 5px 13px; border-radius: 999px; }

/* Service-area checker */
.area-checker { max-width: 720px; margin: clamp(34px, 5vw, 52px) auto 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow-sm); text-align: center; }
.area-checker-title { margin-bottom: .2em; }
.area-checker-sub { color: var(--ink-soft); margin-bottom: 22px; }
.area-checker-form { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; }
.area-checker-form input { flex: 1 1 220px; max-width: 260px; font-family: var(--font-body); font-size: 1rem; text-align: center; letter-spacing: .04em; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--ink); transition: border-color .15s ease, box-shadow .15s ease; }
.area-checker-form input:focus { outline: none; border-color: var(--aqua); box-shadow: 0 0 0 3px var(--aqua-soft); }
.area-result { margin: 22px auto 0; max-width: 540px; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; line-height: 1.45; padding: 14px 18px; border-radius: 12px; }
.area-result a { text-decoration: underline; }
.area-result.is-yes { background: #e7f7ec; color: #1b7a3d; border: 1px solid #b7e6c4; }
.area-result.is-yes a { color: #1b7a3d; }
.area-result.is-no { background: var(--honey-soft); color: #8a5a00; border: 1px solid #f3d9a0; }
.area-result.is-no a { color: #8a5a00; }
.area-result.is-info { background: var(--aqua-soft); color: var(--deep); border: 1px solid #bfe8f2; }

/* ---------- Reviews ---------- */
.section-deep { position: relative; background: linear-gradient(160deg, var(--deep), var(--blue)); overflow: hidden; }
.section-deep::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 85% 10%, rgba(255,182,39,.18), transparent 60%); }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.review { margin: 0; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(6px); border-radius: var(--radius); padding: 28px 26px; color: #eaf7fb; }
.review .stars { color: var(--honey-bright); letter-spacing: 2px; margin-bottom: 12px; }
.review p { font-size: 1rem; }
.review footer { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review-avatar { flex: none; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--honey-bright); color: #3a2a00; font-family: var(--font-head); font-weight: 700; }
.review footer strong { display: block; color: #fff; font-family: var(--font-head); }
.review footer span { font-size: .85rem; color: #b9dfeb; }

/* ---------- Why we brush ---------- */
#brushing .container { position: relative; z-index: 1; }
.brush-lead { color: #cfe9f2; }
.brush-vs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 940px; margin: 0 auto; }
.brush-col { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(6px); border-radius: var(--radius); padding: 30px 28px; }
.brush-col-win { background: rgba(255,255,255,.14); border-color: rgba(255,182,39,.55); box-shadow: 0 14px 40px rgba(10,79,110,.3); }
.brush-col h3, .brush-col-tag { font-family: var(--font-head); }
.brush-col-tag { display: inline-block; font-weight: 700; font-size: .8rem; letter-spacing: .03em; text-transform: uppercase; padding: 6px 15px; border-radius: 999px; margin-bottom: 20px; }
.brush-col-win .brush-col-tag { background: var(--honey-bright); color: #3a2a00; }
.brush-col-lose .brush-col-tag { background: rgba(255,255,255,.16); color: #dbeef6; }
.brush-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.brush-col li { position: relative; padding-left: 30px; font-size: .98rem; line-height: 1.5; }
.brush-col li::before { position: absolute; left: 0; top: 0; font-weight: 800; }
.brush-col-win li { color: #eaf7fb; }
.brush-col-win li::before { content: "✓"; color: var(--honey-bright); }
.brush-col-lose li { color: #a9cddb; }
.brush-col-lose li::before { content: "✕"; color: #6f9bad; }
.brush-cta { text-align: center; color: #cfe9f2; margin: 36px 0 0; font-size: 1.06rem; }
.brush-cta a { color: var(--honey-bright); font-family: var(--font-head); font-weight: 600; }
.brush-cta a:hover { color: #fff; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 24px; box-shadow: var(--shadow-sm); }
.faq-item summary { cursor: pointer; list-style: none; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; padding: 18px 36px 18px 0; position: relative; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--aqua); font-weight: 700; transition: transform .2s ease; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--ink-soft); margin: 0 0 18px; }

/* ---------- Quote ---------- */
.quote { position: relative; background: linear-gradient(160deg, #0a4f6e, #18324a); overflow: hidden; }
.quote::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 500px at 10% 0%, rgba(43,196,224,.28), transparent 60%); }
.quote-grid { position: relative; display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: start; }
.quote-info { color: #d6ecf3; padding-top: 8px; }
.quote-info h2 { margin-bottom: .4em; }
.quote-info p { color: #c2e2ec; font-size: 1.08rem; }
.contact-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 13px; color: #e7f5fa; }
.contact-list svg { color: var(--honey-bright); flex: none; }
.contact-list a { color: #e7f5fa; }
.contact-list a:hover { color: var(--honey-bright); }

.quote-form { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: 12px; background: var(--surface); color: var(--ink); transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--aqua); background: #fff; box-shadow: 0 0 0 4px rgba(43,196,224,.18); }
.field textarea { resize: vertical; }
.field.invalid input, .field.invalid select { border-color: #e0506b; box-shadow: 0 0 0 4px rgba(224,80,107,.14); }
.error { display: block; color: #d63a57; font-size: .82rem; margin-top: 5px; min-height: 1em; }
.form-note { font-size: .82rem; color: var(--ink-soft); text-align: center; margin: 12px 0 0; }
.form-success { background: var(--honey-soft); color: #6b4e00; border-radius: 12px; padding: 14px 16px; text-align: center; font-weight: 600; margin: 14px 0 0; }
.form-error { background: #fdecec; color: #9a2727; border: 1px solid #f3c6c6; border-radius: 12px; padding: 14px 16px; text-align: center; font-weight: 600; margin: 14px 0 0; }
.form-error a { color: #9a2727; text-decoration: underline; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--honey), var(--honey-bright)); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: clamp(36px, 5vw, 56px) 24px; flex-wrap: wrap; }
.cta-band h2 { color: #3a2a00; margin-bottom: .2em; }
.cta-band p { color: #5c4500; margin: 0; font-size: 1.1rem; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #b9d2dd; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding: clamp(48px, 6vw, 72px) 24px 40px; }
.brand-footer { color: #fff; margin-bottom: 14px; }
.brand-footer .brand-name-accent { color: var(--aqua-bright); }
.footer-brand p { font-size: .95rem; max-width: 32ch; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-col a { color: #b9d2dd; font-size: .95rem; }
.footer-col a:hover { color: var(--aqua-bright); }
.footer-contact li { font-size: .95rem; line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 14px; padding: 20px 24px; flex-wrap: wrap; font-size: .85rem; color: #89a8b5; }
.footer-legal a { color: #89a8b5; }
.footer-legal a:hover { color: var(--aqua-bright); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue); color: #fff; display: grid; place-items: center; font-size: 1.3rem; box-shadow: var(--shadow);
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
}
.back-to-top:hover { background: var(--deep); transform: translateY(-3px); }

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

/* ---------- Legal pages ---------- */
.legal { padding: clamp(40px, 6vw, 80px) 0; }
.legal .container { max-width: 820px; }
.legal-back { display: inline-flex; align-items: center; gap: .35rem; margin-bottom: 18px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--blue); }
.legal-back:hover { color: var(--deep); }
.legal h1 { font-size: clamp(2rem, 4.5vw, 2.9rem); margin-bottom: .25em; }
.legal-updated { color: var(--ink-soft); font-size: .95rem; margin-bottom: 2em; }
.legal-body h2 { font-size: 1.35rem; margin: 1.9em 0 .5em; }
.legal-body h3 { font-size: 1.08rem; margin: 1.4em 0 .35em; }
.legal-body p, .legal-body li { color: var(--ink-soft); }
.legal-body ul { padding-left: 1.2em; margin: 0 0 1.1rem; }
.legal-body li { margin-bottom: .45em; }
.legal-body a { color: var(--blue); text-decoration: underline; }
.legal-body a:hover { color: var(--deep); }
.legal-note { margin-top: 36px; padding: 16px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); font-size: .9rem; color: var(--ink-soft); }

/* ---------- Responsive ---------- */
/* Collapse the primary nav into the hamburger before the header gets crowded,
   so the brand, phone number, and CTA always have room. */
@media (max-width: 1160px) {
  .main-nav {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; gap: 0; background: #fff;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 8px 0;
    transform: translateY(-120%); transition: transform .28s ease; max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 24px; border-radius: 0; font-size: 1.05rem; }
  .nav-toggle { display: flex; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-card-wrap { justify-content: flex-start; }
  .why-grid, .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-photo-float { right: auto; left: 18px; }
  .cards, .plans, .reviews, .areas { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-6px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .phone-link span { display: none; }
  .header-cta .btn-primary { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .cards, .plans, .reviews, .steps, .gallery, .areas, .brush-vs { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { flex: 1; }
  .area-checker-form { flex-direction: column; }
  .area-checker-form input, .area-checker-form .btn { width: 100%; max-width: none; flex: 1 1 auto; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-card, .wave-1, .wave-2 { animation: none; }
  * { transition-duration: .01ms !important; }
}
