/* ============================================================
   Tidewell Home Cleaning — Styles
   Palette: tide blue, seafoam, crisp white, warm sand, sage, sunny accent
   ============================================================ */

:root {
  --tide:        #4A9DB5;
  --tide-light:  #7EC4D8;
  --tide-dark:   #2F7A92;
  --seafoam:     #6BBFBA;
  --seafoam-lt:  #9DD8D4;
  --white:       #FAFCFD;
  --off-white:   #F4F8FA;
  --sand:        #F5EDD6;
  --sand-dark:   #E8D8B4;
  --sage:        #B5C9B1;
  --sage-dark:   #8BAF87;
  --sunny:       #F0C843;
  --sunny-light: #F7E09A;
  --ink:         #1C2B36;
  --ink-mid:     #3D5260;
  --ink-soft:    #6B8896;
  --canvas-bg:   #EAF5F7;
}

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

html { scrollbar-width: none; scroll-behavior: auto; }
html::-webkit-scrollbar { display: none; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.18;
  font-weight: 700;
}
em { font-style: italic; }

.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tide);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--ink);
  margin-bottom: 20px;
}

.section-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-mid);
  max-width: 56ch;
}

.divider {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--seafoam);
  margin: 20px 0;
  border-radius: 2px;
}

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: rgba(250, 252, 253, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 40px;
  box-shadow: 0 1px 0 rgba(74, 157, 181, 0.12);
}
.nav-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.35s;
}
.nav.scrolled .nav-brand { color: var(--tide-dark); }
.nav-brand span { color: var(--seafoam); transition: color 0.35s; }
.nav.scrolled .nav-brand span { color: var(--seafoam); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(250,252,253,0.82);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sunny); }
.nav.scrolled .nav-links a { color: var(--ink-mid); }
.nav.scrolled .nav-links a:hover { color: var(--tide); }

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: var(--sunny);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--sunny-light); transform: translateY(-1px); }

.nav-hamburger { display: none; }

/* ─── REVEAL ANIMATION ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── CINEMATIC SCROLL SECTIONS ───────────────────────────── */
.cinematic {
  position: relative;
  height: 520vh;
}
.cinematic-sm { height: 420vh; }

.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--canvas-bg);
}

.sticky canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 40%, rgba(28, 43, 54, 0.45) 100%),
    linear-gradient(180deg, rgba(28,43,54,0.35) 0%, transparent 22%, transparent 65%, rgba(28,43,54,0.5) 100%);
}

.overlay-copy {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.reveal-line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  text-align: center;
  pointer-events: none;
  width: min(720px, 90vw);
}

.reveal-line .eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sunny);
  margin-bottom: 14px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.reveal-line h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.12;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  letter-spacing: -0.01em;
}

.reveal-line h2 em { font-style: italic; color: var(--seafoam-lt); }

.reveal-line p {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}

.scrub-progress {
  position: absolute;
  left: 32px; right: 32px; bottom: 48px;
  height: 2px;
  background: rgba(255,255,255,0.18);
  z-index: 12;
  border-radius: 2px;
}
.scrub-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--seafoam), var(--sunny));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(107,191,186,0.5);
  transition: width 0.1s linear;
}

.scrub-hint {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: opacity 0.4s;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}

/* ─── SECTION PADDING ────────────────────────────────────── */
.section-pad { padding: 96px 40px; }

/* ─── STATS STRIP ─────────────────────────────────────────── */
.stats-strip {
  background: var(--tide);
  padding: 52px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item {}
.stat-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,252,253,0.75);
  font-weight: 500;
}

/* ─── INTRO SECTION ──────────────────────────────────────── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 96px 40px;
  background: var(--off-white);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.intro-text {}
.pull-quote {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 20px;
}
.intro-visual {
  background: linear-gradient(135deg, var(--tide-light) 0%, var(--seafoam) 50%, var(--sand) 100%);
  border-radius: 20px;
  height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.intro-visual-text {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

/* ─── QUOTE CALCULATOR ───────────────────────────────────── */
.quote-section {
  background: var(--sand);
  padding: 80px 40px;
}
.quote-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.quote-controls {}
.quote-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ink);
  margin-bottom: 8px;
}
.quote-sub {
  color: var(--ink-mid);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.65;
}

.calc-group { margin-bottom: 28px; }
.calc-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.btn-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.btn-pill {
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(74,157,181,0.3);
  background: rgba(250,252,253,0.7);
  color: var(--ink-mid);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s;
  font-family: "Inter", sans-serif;
}
.btn-pill:hover {
  border-color: var(--tide);
  color: var(--tide);
  background: rgba(74,157,181,0.06);
}
.btn-pill.active {
  background: var(--tide);
  border-color: var(--tide);
  color: white;
}

.quote-result {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(74,157,181,0.1);
  position: sticky;
  top: 100px;
}
.quote-result-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 20px;
  display: block;
}
.quote-price-display {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--tide-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.quote-price-sub {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.quote-cta {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--tide);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}
.quote-cta:hover { background: var(--tide-dark); transform: translateY(-1px); }
.quote-disclaimer {
  font-size: 0.76rem;
  color: var(--ink-soft);
  margin-top: 14px;
  line-height: 1.5;
}

/* ─── SERVICE TYPES ──────────────────────────────────────── */
.services {
  background: var(--white);
  max-width: 1280px;
  margin: 0 auto;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--off-white);
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid rgba(74,157,181,0.1);
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(74,157,181,0.12);
  transform: translateY(-3px);
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--tide-light), var(--seafoam));
  margin-bottom: 20px;
}
.service-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 18px;
}
.service-from {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.service-from strong { color: var(--tide-dark); font-size: 1rem; }

/* ─── TRUST SECTION ──────────────────────────────────────── */
.trust {
  background: var(--ink);
  padding: 96px 40px;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.trust-header {
  text-align: center;
  margin-bottom: 64px;
}
.trust-header .section-eyebrow { color: var(--seafoam-lt); }
.trust-header .section-title { color: var(--white); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s;
}
.trust-card:hover { background: rgba(255,255,255,0.08); }
.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--tide), var(--seafoam));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.trust-title {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.trust-body {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(250,252,253,0.65);
}

/* ─── HOW IT WORKS ────────────────────────────────────────── */
.how-it-works {
  background: var(--off-white);
  padding: 96px 40px;
}
.how-inner {
  max-width: 900px;
  margin: 0 auto;
}
.how-header {
  text-align: center;
  margin-bottom: 64px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(16.66% + 32px);
  right: calc(16.66% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--seafoam), var(--tide-light));
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tide), var(--seafoam));
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(74,157,181,0.25);
  position: relative;
  z-index: 2;
}
.step-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 10px;
}
.step-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-mid);
}

/* ─── PACKAGES ────────────────────────────────────────────── */
.packages {
  background: var(--white);
  padding: 96px 40px;
}
.packages-inner { max-width: 1100px; margin: 0 auto; }
.packages-header {
  text-align: center;
  margin-bottom: 56px;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pkg-card {
  border-radius: 24px;
  padding: 40px 32px;
  border: 1.5px solid rgba(74,157,181,0.15);
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
  background: var(--white);
}
.pkg-card:hover {
  box-shadow: 0 16px 48px rgba(74,157,181,0.12);
  transform: translateY(-4px);
}
.pkg-card.featured {
  background: linear-gradient(160deg, var(--tide-dark) 0%, var(--tide) 100%);
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(74,157,181,0.22);
}
.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sunny);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pkg-name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.pkg-card.featured .pkg-name { color: var(--white); }
.pkg-freq {
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
}
.pkg-card.featured .pkg-freq { color: rgba(250,252,253,0.7); }
.pkg-price {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--tide-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.pkg-card.featured .pkg-price { color: var(--white); }
.pkg-price-sub {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 30px;
}
.pkg-card.featured .pkg-price-sub { color: rgba(250,252,253,0.65); }
.pkg-divider {
  height: 1px;
  background: rgba(74,157,181,0.12);
  margin-bottom: 24px;
}
.pkg-card.featured .pkg-divider { background: rgba(255,255,255,0.15); }
.pkg-features {
  list-style: none;
  margin-bottom: 32px;
}
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-mid);
  padding: 6px 0;
  line-height: 1.5;
}
.pkg-card.featured .pkg-features li { color: rgba(250,252,253,0.88); }
.pkg-features li::before {
  content: "";
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(107,191,186,0.18);
  border: 1.5px solid var(--seafoam);
  margin-top: 1px;
  position: relative;
}
.pkg-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%236BBFBA' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.pkg-card.featured .pkg-features li::before {
  border-color: rgba(255,255,255,0.5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.pkg-cta {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  background: rgba(74,157,181,0.1);
  color: var(--tide-dark);
  border: 1.5px solid rgba(74,157,181,0.25);
}
.pkg-cta:hover { background: var(--tide); color: white; border-color: var(--tide); }
.pkg-card.featured .pkg-cta {
  background: var(--sunny);
  color: var(--ink);
  border-color: transparent;
}
.pkg-card.featured .pkg-cta:hover {
  background: var(--sunny-light);
  transform: translateY(-1px);
}

/* ─── STANDARD VS DEEP COMPARISON ───────────────────────── */
.comparison {
  background: var(--sand);
  padding: 80px 40px;
}
.comparison-inner {
  max-width: 860px;
  margin: 0 auto;
}
.comparison-header {
  text-align: center;
  margin-bottom: 48px;
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.comp-col {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 32px;
  border: 1.5px solid rgba(74,157,181,0.12);
}
.comp-col.deep { border-color: var(--seafoam); }
.comp-heading {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.comp-sub {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.comp-list {
  list-style: none;
}
.comp-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-mid);
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  line-height: 1.45;
}
.comp-list li:last-child { border-bottom: none; }
.comp-list li span.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--seafoam);
  flex-shrink: 0;
}
.comp-col.deep .comp-list li span.dot { background: var(--tide); }

/* ─── TESTIMONIALS ────────────────────────────────────────── */
.testimonials {
  background: var(--off-white);
  max-width: 100%;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(74,157,181,0.1);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.testimonial-stars span {
  width: 16px; height: 16px;
  background: var(--sunny);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.testimonial-quote {
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--ink-mid);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--tide-dark);
  letter-spacing: 0.04em;
}

/* ─── SERVICE AREA ────────────────────────────────────────── */
.area {
  background: var(--white);
  padding: 96px 40px;
}
.area-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.area-map {
  background: linear-gradient(135deg, rgba(74,157,181,0.08) 0%, rgba(107,191,186,0.12) 100%);
  border-radius: 24px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(74,157,181,0.15);
  position: relative;
  overflow: hidden;
}
.area-map-bg {
  font-size: 9rem;
  opacity: 0.07;
  position: absolute;
  user-select: none;
  pointer-events: none;
}
.area-map-text {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--tide-dark);
  text-align: center;
  font-style: italic;
}
.area-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.area-list li {
  padding: 6px 14px;
  background: rgba(74,157,181,0.08);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--tide-dark);
  font-weight: 500;
  border: 1px solid rgba(74,157,181,0.18);
}

/* ─── BOOKING CTA ─────────────────────────────────────────── */
.booking-cta {
  background: linear-gradient(135deg, var(--tide-dark) 0%, var(--tide) 60%, var(--seafoam) 100%);
  padding: 100px 40px;
  text-align: center;
}
.booking-cta .section-eyebrow { color: var(--sunny-light); }
.booking-cta .section-title { color: white; max-width: 600px; margin: 0 auto 20px; }
.booking-cta .section-body { color: rgba(255,255,255,0.8); margin: 0 auto 40px; max-width: 52ch; }
.btn-primary {
  display: inline-block;
  background: var(--sunny);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(240,200,67,0.35);
}
.btn-primary:hover {
  background: var(--sunny-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,200,67,0.4);
}
.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 100px;
  transition: border-color 0.2s, background 0.2s;
  margin-left: 16px;
}
.btn-ghost:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}
.booking-note {
  margin-top: 20px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.booking-demo-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
.footer-brand span { color: var(--seafoam); }
.footer-links {
  display: flex;
  list-style: none;
  gap: 28px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(250,252,253,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--seafoam); }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(250,252,253,0.35);
}
.footer-pageify {
  font-size: 0.75rem;
  color: rgba(250,252,253,0.28);
}
.footer-pageify a {
  color: rgba(250,252,253,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-pageify a:hover { color: var(--seafoam); }
.footer-demo {
  font-size: 0.75rem;
  color: rgba(250,252,253,0.35);
  font-style: italic;
  text-align: center;
}

/* ─── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 18px 20px; }
  .nav.scrolled { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: background 0.3s;
  }
  .nav.scrolled .nav-hamburger span { background: var(--ink); }

  .section-pad { padding: 64px 20px; }

  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 40px 20px; }

  .intro {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 20px;
  }
  .intro-visual { height: 260px; }

  .quote-section { padding: 64px 20px; }
  .quote-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .quote-result { position: static; }

  .services { padding: 64px 20px; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }

  .trust { padding: 64px 20px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .how-it-works { padding: 64px 20px; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }

  .packages { padding: 64px 20px; }
  .packages-grid { grid-template-columns: 1fr; gap: 16px; }

  .comparison { padding: 64px 20px; }
  .comparison-grid { grid-template-columns: 1fr; gap: 16px; }

  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; max-width: 100%; }
  .testimonials { padding: 64px 20px; }

  .area { padding: 64px 20px; }
  .area-inner { grid-template-columns: 1fr; gap: 40px; }
  .area-map { height: 240px; }

  .booking-cta { padding: 72px 20px; }
  .btn-ghost { margin-left: 0; margin-top: 12px; display: block; }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 20px;
  }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }

  .scrub-progress { left: 16px; right: 16px; }
  .reveal-line { width: min(580px, 92vw); }
  .reveal-line h2 { font-size: clamp(2rem, 8vw, 3rem); }
  .nav-cta { min-height: 44px; display: inline-flex; align-items: center; }
}

/* ─── SMALL MOBILE ───────────────────────────────────────── */
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; gap: 12px; }
  .booking-cta .btn-primary { width: 100%; display: block; }
  .booking-cta .btn-ghost { width: 100%; }
}

/* ─── LANDSCAPE ──────────────────────────────────────────── */
@media (max-width: 900px) and (orientation: landscape) {
  .sticky { min-height: 100svh; }
  .reveal-line h2 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
}

/* ─── TOUCH DEVICES ──────────────────────────────────────── */
@media (hover: none) and (pointer: coarse) {
  .nav-cta { min-height: 44px; display: inline-flex; align-items: center; }
  .btn-primary:hover { transform: none; box-shadow: 0 4px 20px rgba(240,200,67,0.35); }
  .btn-primary:active { transform: scale(0.97); }
  .btn-ghost:hover { background: none; }
  .service-card:hover { transform: none; box-shadow: none; }
  .pkg-card:hover { transform: none; }
  .nav-links a { min-height: 44px; display: flex; align-items: center; }
  .footer-links a { min-height: 44px; display: flex; align-items: center; }
}

/* ─── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .scrub-hint { animation: none; }
}
