/* =====================================================
   CLEAN CAN CLUB
   Palette: cream + aqua-blue + clean-can green + navy
   ===================================================== */

:root {
  --cream: #fbf6ec;
  --cream-dark: #f3eada;
  --aqua: #3fb8e0;
  --aqua-dark: #1f9bc8;
  --green: #6cc24a;
  --green-dark: #4ea432;
  --navy: #0d2a4a;
  --navy-soft: #1a3a5e;
  --ink: #122436;
  --muted: #5c6b7a;
  --white: #ffffff;
  --shadow: 0 14px 40px -14px rgba(13, 42, 74, 0.3);
  --shadow-sm: 0 6px 18px -6px rgba(13, 42, 74, 0.2);
  --radius: 22px;
  --radius-sm: 14px;
  --font-script: 'Pacifico', cursive;
  --font-brush: 'Caveat Brush', cursive;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.hidden { display: none; }

/* ===== MARQUEE ===== */
.marquee {
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  padding: 8px 0;
  position: relative;
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee-scroll 50s linear infinite;
  padding-left: 28px;
}
.marquee__item {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
}
.marquee__dot {
  color: var(--aqua);
  font-size: 16px;
  font-weight: 700;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 16px 6vw;
  background: rgba(251, 246, 236, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13, 42, 74, 0.06);
}
.nav__logo {
  display: flex;
  justify-content: center;
}
.nav__logo img {
  height: 60px;
  width: auto;
}
.nav__pills {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--aqua);
  padding: 6px;
  border-radius: 999px;
  box-shadow: 0 4px 14px -6px rgba(63, 184, 224, 0.5);
}
.nav__pills--left { justify-self: end; }
.nav__pills--right { justify-self: start; }
.nav__pills a {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 999px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.nav__pills a:hover {
  background: var(--white);
  color: var(--aqua-dark);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  justify-self: end;
}

/* ===== ANIMATED HAMBURGER ===== */
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1),
              opacity 0.2s ease;
  transform-origin: center;
}
.nav--open .nav__toggle span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav--open .nav__toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav--open .nav__toggle span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== DRAWER ===== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 42, 74, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 200;
}
.drawer-backdrop--open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86%, 380px);
  background: var(--cream);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  box-shadow: -20px 0 60px -20px rgba(13, 42, 74, 0.35);
  overflow: hidden;
}
.drawer::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(63, 184, 224, 0.25), transparent 70%);
  pointer-events: none;
}
.drawer::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(108, 194, 74, 0.22), transparent 70%);
  pointer-events: none;
}
.drawer--open {
  transform: translateX(0);
}

.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(13, 42, 74, 0.08);
  position: relative;
  z-index: 1;
}
.drawer__logo {
  height: 52px;
  width: auto;
}
.drawer__close {
  background: var(--navy);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.2s, transform 0.2s;
}
.drawer__close:hover {
  background: var(--aqua-dark);
  transform: rotate(90deg);
}
.drawer__close span {
  position: absolute;
  width: 16px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
}
.drawer__close span:nth-child(1) { transform: rotate(45deg); }
.drawer__close span:nth-child(2) { transform: rotate(-45deg); }

.drawer__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  position: relative;
  z-index: 1;
  overflow-y: auto;
}
.drawer__nav a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s, padding 0.25s;
  border-left: 4px solid transparent;
}
.drawer--open .drawer__nav a {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(var(--i) * 0.07s + 0.2s);
}
.drawer__nav a:hover {
  background: rgba(63, 184, 224, 0.08);
  border-left-color: var(--aqua);
  padding-left: 36px;
}
.drawer__nav a:hover .drawer__arrow {
  transform: translateX(6px);
  opacity: 1;
}
.drawer__num {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--aqua-dark);
  letter-spacing: 1.5px;
  width: 24px;
  flex-shrink: 0;
}
.drawer__label {
  flex: 1;
}
.drawer__arrow {
  font-size: 20px;
  color: var(--aqua);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.2s;
}

.drawer__footer {
  padding: 24px 28px 32px;
  border-top: 1px solid rgba(13, 42, 74, 0.08);
  position: relative;
  z-index: 1;
}
.drawer__cta {
  display: block;
  background: var(--aqua);
  color: var(--white);
  text-align: center;
  padding: 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 24px -10px rgba(63, 184, 224, 0.7);
  transition: all 0.25s ease;
  opacity: 0;
  transform: translateY(20px);
}
.drawer--open .drawer__cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
.drawer__cta:hover {
  background: var(--aqua-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(63, 184, 224, 0.8);
}
.drawer__contact {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.drawer--open .drawer__contact {
  opacity: 1;
  transition-delay: 0.7s;
}
.drawer__contact a {
  color: var(--muted);
  border-bottom: 1px solid rgba(92, 107, 122, 0.3);
}
.drawer__contact a:hover { color: var(--navy); }

/* Hide drawer entirely on desktop */
@media (min-width: 99999px) {
  .drawer, .drawer-backdrop { display: none; }
}

/* Always use the hamburger drawer (desktop + mobile) — pill buttons hidden everywhere */
.nav__pills--left,
.nav__pills--right {
  display: none;
}
.nav__toggle {
  display: flex;
  grid-column: 3;
  grid-row: 1;
}
.nav {
  grid-template-columns: auto 1fr auto;
}
.nav__logo {
  justify-content: flex-start;
  grid-column: 1;
  grid-row: 1;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-align: center;
  font-family: var(--font-body);
}
.btn--primary {
  background: var(--aqua);
  color: var(--white);
  box-shadow: 0 8px 20px -8px rgba(63, 184, 224, 0.6);
}
.btn--primary:hover {
  background: var(--aqua-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(63, 184, 224, 0.7);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn--full { width: 100%; padding: 17px; font-size: 16px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 40px 6vw 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), rgba(63, 184, 224, 0.15));
  border: 1.5px solid rgba(63, 184, 224, 0.25);
}
.bubble--1 { width: 80px; height: 80px; top: 12%; left: 4%; }
.bubble--2 { width: 32px; height: 32px; top: 28%; left: 14%; }
.bubble--3 { width: 60px; height: 60px; top: 68%; right: 8%; }
.bubble--4 { width: 24px; height: 24px; top: 82%; right: 22%; }

/* === Hero with background video === */
.hero--video {
  min-height: 600px;
  padding: 100px 6vw 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d2a4a 0%, #1a3a5e 50%, #3fb8e0 100%);
}
.hero--video .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Position to show the upper-body action (pressure washing) */
  object-position: center 30%;
  z-index: 0;
}
/* On desktop, the portrait video gets letterboxed by a soft brand gradient */
@media (min-width: 900px) {
  .hero--video { min-height: 680px; }
  .hero--video .hero__video {
    /* Center the full video frame, brand-colored backdrop fills sides */
    object-fit: contain;
    object-position: center;
    max-width: 100%;
  }
  .hero--video .hero__overlay {
    background:
      linear-gradient(135deg, rgba(13, 42, 74, 0.55) 0%, rgba(13, 42, 74, 0.4) 50%, rgba(13, 42, 74, 0.55) 100%);
  }
}
.hero--video .hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13, 42, 74, 0.4) 0%, rgba(13, 42, 74, 0.65) 100%);
}
.hero--video .hero__inner { z-index: 2; }

/* === Text colors when video is present === */
.hero--video .hero__eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero--video .hero__title {
  color: var(--white);
  text-shadow: 0 6px 30px rgba(13, 42, 74, 0.45);
}
.hero--video .hero__sub {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 12px rgba(13, 42, 74, 0.5);
}
.hero--video .btn--ghost {
  color: var(--white);
  border-color: var(--white);
}
.hero--video .btn--ghost:hover {
  background: var(--white);
  color: var(--navy);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--aqua-dark);
  background: rgba(63, 184, 224, 0.12);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(3.5rem, 12vw, 9rem);
  line-height: 0.95;
  color: var(--aqua);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  text-shadow: 3px 3px 0 rgba(13, 42, 74, 0.08);
}
.hero__image { display: none; }

@media (max-width: 600px) {
  .hero--video { min-height: 540px; padding: 80px 6vw 80px; }
}

/* ===== MEET TY ===== */
.meet {
  padding: 100px 6vw;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.meet__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.meet__hi {
  font-family: var(--font-script);
  font-size: 38px;
  color: var(--aqua);
  line-height: 1;
  margin-bottom: 4px;
  transform: rotate(-2deg);
  display: inline-block;
}
.meet__name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.meet__text p {
  font-size: 17px;
  color: var(--navy-soft);
  margin-bottom: 18px;
  line-height: 1.65;
}
.meet__text .btn { margin-top: 14px; }
.meet__photo {
  position: relative;
}
.meet__photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
  transform: rotate(1deg);
}
.meet__photo-deco {
  position: absolute;
  inset: 12px -12px -12px 12px;
  background: linear-gradient(135deg, var(--aqua), var(--green));
  border-radius: var(--radius);
  z-index: 1;
  opacity: 0.85;
}

@media (max-width: 880px) {
  .meet__inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .meet__hi { transform: rotate(0); }
  .meet__photo { max-width: 380px; margin: 0 auto; }
  .meet__photo img { transform: none; }
}

/* ===== JOIN THE CLUB (hiring) ===== */
.join {
  padding: 40px 6vw;
  background: var(--cream);
}
.join__inner {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--cream);
  padding: 32px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border: 2px solid var(--aqua);
}
.join__text { flex: 1; min-width: 260px; }
.join__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--green);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.join__title {
  font-family: var(--font-brush);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.join__text p {
  font-size: 15px;
  color: rgba(251, 246, 236, 0.85);
  line-height: 1.55;
  margin: 0;
}
.join .btn--primary {
  background: var(--aqua);
  flex-shrink: 0;
}
.join .btn--primary:hover {
  background: var(--white);
  color: var(--navy);
}

@media (max-width: 600px) {
  .join__inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
}

/* ===== REVEAL (before/after hover) ===== */
.reveal-section { padding: 80px 6vw 100px; }

.reveal {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 5px solid var(--white);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.reveal:focus { outline: 3px solid var(--aqua); outline-offset: 4px; }

.reveal__before,
.reveal__after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* AFTER sits on top, BEFORE shows by default */
.reveal__after {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}
.reveal:hover .reveal__after,
.reveal:focus .reveal__after,
.reveal--active .reveal__after {
  opacity: 1;
  transform: scale(1);
}

/* Labels */
.reveal__label {
  position: absolute;
  top: 20px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  z-index: 3;
  transition: opacity 0.4s ease;
}
.reveal__label--before {
  left: 20px;
  background: var(--navy);
  color: var(--cream);
  box-shadow: 0 6px 16px -6px rgba(13, 42, 74, 0.5);
}
.reveal__label--after {
  right: 20px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 6px 16px -6px rgba(108, 194, 74, 0.6);
  opacity: 0;
}
.reveal:hover .reveal__label--before,
.reveal--active .reveal__label--before { opacity: 0; }
.reveal:hover .reveal__label--after,
.reveal--active .reveal__label--after { opacity: 1; }

/* Hint pulse */
.reveal__hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--navy);
  box-shadow: 0 6px 20px -8px rgba(13, 42, 74, 0.4);
  z-index: 3;
  transition: opacity 0.4s ease, transform 0.4s ease;
  animation: hint-pulse 2.4s ease-in-out infinite;
}
.reveal__hint-icon {
  display: inline-block;
  font-size: 16px;
  animation: hint-tap 1.6s ease-in-out infinite;
}
@keyframes hint-pulse {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}
@keyframes hint-tap {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.reveal:hover .reveal__hint,
.reveal--active .reveal__hint {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
}

@media (max-width: 600px) {
  .reveal { border-width: 4px; }
  .reveal__label { font-size: 12px; padding: 7px 14px; top: 14px; }
  .reveal__label--before { left: 14px; }
  .reveal__label--after { right: 14px; }
  .reveal__hint { bottom: 16px; font-size: 12px; padding: 9px 16px; }
}
.hero__sub {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--navy-soft);
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 6vw;
  position: relative;
}
.section--alt {
  background: var(--cream-dark);
}
.section__head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--aqua-dark);
  background: rgba(63, 184, 224, 0.12);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.section__title {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.section__title.script {
  color: var(--aqua);
  text-shadow: 2px 2px 0 rgba(13, 42, 74, 0.06);
}
.section__lead {
  font-size: 18px;
  color: var(--muted);
}

/* ===== SERVICES ===== */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--aqua);
}
.service-card--accent {
  background: linear-gradient(160deg, var(--aqua) 0%, var(--aqua-dark) 100%);
  color: var(--white);
  transform: translateY(-12px);
}
.service-card--accent:hover {
  transform: translateY(-18px);
  border-color: var(--green);
}
.service-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px -4px rgba(108, 194, 74, 0.5);
}
.service-card__icon {
  font-size: 44px;
  margin-bottom: 18px;
  line-height: 1;
}
.service-card h3 {
  font-family: var(--font-brush);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.service-card p {
  margin-bottom: 18px;
  font-size: 15.5px;
  opacity: 0.92;
}
.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card ul li {
  font-size: 14.5px;
  padding-left: 24px;
  position: relative;
}
.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--green);
}
.service-card--accent ul li::before { color: var(--white); }

@media (max-width: 900px) {
  .services { grid-template-columns: 1fr; }
  .service-card--accent { transform: none; }
  .service-card--accent:hover { transform: translateY(-6px); }
}

/* ===== PRICING ===== */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 40px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--aqua);
}
.price-card--featured {
  background: linear-gradient(160deg, #fff8e7 0%, #ffefc4 100%);
  border-color: var(--green);
  transform: scale(1.04);
}
.price-card--featured:hover { transform: scale(1.04) translateY(-4px); }
.price-card__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.price-card__amount {
  font-family: var(--font-script);
  font-size: 72px;
  line-height: 1;
  color: var(--aqua);
  margin-bottom: 16px;
}
.price-card__amount .dollar {
  font-size: 36px;
  vertical-align: super;
  margin-right: 4px;
}
.price-card--featured .price-card__amount {
  color: var(--green-dark);
  font-size: 56px;
}
.price-card--featured .price-card__amount .dollar {
  font-size: 28px;
}
.price-card__amount .dash {
  font-size: 40px;
  vertical-align: middle;
  margin: 0 6px;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 300;
}
.price-card__freq {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--green-dark);
  text-transform: uppercase;
  margin-bottom: 14px;
  margin-top: -4px;
}
.price-card__desc {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}
.price-card__btn {
  display: inline-block;
  font-weight: 700;
  color: var(--aqua-dark);
  font-size: 15px;
  border-bottom: 2px solid var(--aqua);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.price-card__btn:hover { color: var(--navy); border-color: var(--navy); }
.price-card--featured .price-card__btn { color: var(--green-dark); border-color: var(--green); }

.pricing__note {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  border: 2px dashed rgba(63, 184, 224, 0.35);
}

@media (max-width: 900px) {
  .pricing { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-4px); }
}

/* ===== ABOUT ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about__photo {
  position: relative;
}
.about__photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}
.about__photo-deco {
  position: absolute;
  inset: -16px -16px 16px 16px;
  background: linear-gradient(135deg, var(--aqua), var(--green));
  border-radius: var(--radius);
  z-index: 1;
  opacity: 0.85;
}
.about__text .section__eyebrow {
  margin-bottom: 18px;
}
.about__text .section__title {
  text-align: left;
  margin-bottom: 24px;
}
.about__text p {
  font-size: 17px;
  color: var(--navy-soft);
  margin-bottom: 18px;
}
.about__text .btn { margin-top: 12px; }

@media (max-width: 880px) {
  .about {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .about__photo { max-width: 380px; margin: 0 auto; }
  .about__text .section__title { text-align: center; }
}

/* ===== SERVICE AREA ===== */
.area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.area__map {
  position: relative;
  aspect-ratio: 1;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}
.area__map-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed var(--aqua);
}
.area__map-ring--1 {
  width: 65%;
  height: 65%;
  background: rgba(63, 184, 224, 0.06);
}
.area__map-ring--2 {
  width: 90%;
  height: 90%;
  background: rgba(63, 184, 224, 0.03);
  border-color: rgba(63, 184, 224, 0.4);
}
.area__map-center {
  position: relative;
  z-index: 2;
  text-align: center;
}
.area__map-pin {
  font-size: 36px;
  display: block;
  margin-bottom: 6px;
}
.area__map-label {
  font-family: var(--font-brush);
  font-size: 22px;
  color: var(--navy);
}
.area__map-mile {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 600;
  color: var(--aqua-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.area__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.area__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.area__icon {
  font-size: 26px;
  flex-shrink: 0;
}
.area__item h4 {
  font-family: var(--font-brush);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--navy);
  letter-spacing: 0.3px;
}
.area__item p {
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 880px) {
  .area { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== REVIEWS ===== */
.reviews { background: var(--cream); }
.reviews__rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.reviews__stars {
  color: #f4b942;
  font-size: 26px;
  letter-spacing: 2px;
  text-shadow: 1px 1px 0 rgba(13, 42, 74, 0.08);
}
.reviews__rating-num {
  font-family: var(--font-brush);
  font-size: 32px;
  color: var(--navy);
  line-height: 1;
}
.reviews__rating-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
.review-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  right: 24px;
  font-family: var(--font-script);
  font-size: 100px;
  color: rgba(63, 184, 224, 0.18);
  line-height: 1;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--aqua);
  box-shadow: var(--shadow);
}
.review-card__stars {
  color: #f4b942;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-card__text {
  font-size: 15.5px;
  color: var(--navy-soft);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 22px;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(13, 42, 74, 0.08);
}
.review-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--green));
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.review-card__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
.review-card__source {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.3px;
}
.reviews__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.reviews__link {
  font-weight: 600;
  font-size: 15px;
  color: var(--aqua-dark);
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  transition: all 0.2s;
}
.reviews__link:hover {
  border-color: var(--aqua);
  color: var(--navy);
}
.reviews__link--ghost {
  color: var(--muted);
}
.reviews__link--ghost:hover {
  color: var(--navy);
  border-color: var(--muted);
}

@media (max-width: 900px) {
  .reviews__grid { grid-template-columns: 1fr; }
}

/* ===== REFERRAL (compact) ===== */
.refer {
  padding: 60px 6vw;
  background: var(--cream);
}
.refer__card {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff8e7 0%, #fef0c8 100%);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(244, 185, 66, 0.35);
}
.refer__top {
  text-align: center;
  margin-bottom: 24px;
}
.refer__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(108, 194, 74, 0.15);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.refer__title {
  font-family: var(--font-brush);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: 0.3px;
}
.refer__perks {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  margin: 24px 0 22px;
}
.refer__perk {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px -6px rgba(13, 42, 74, 0.15);
}
.refer__perk-icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
}
.refer__perk-amount {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.5px;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 4px;
}
.refer__perk-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.refer__divider {
  width: 1px;
  background: rgba(13, 42, 74, 0.12);
  flex-shrink: 0;
}
.refer__how {
  text-align: center;
  font-size: 14px;
  color: var(--navy-soft);
  background: rgba(255, 255, 255, 0.6);
  padding: 12px 18px;
  border-radius: 999px;
  margin: 0;
  line-height: 1.4;
}
.refer__how strong { color: var(--navy); }

@media (max-width: 700px) {
  .refer__card { padding: 28px 22px; }
  .refer__perks { flex-direction: column; gap: 12px; }
  .refer__divider { display: none; }
  .refer__how { font-size: 13px; }
}

/* ===== JOBBER EMBED ===== */
.jobber-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 6px solid var(--aqua);
  min-height: 400px;
}
@media (max-width: 600px) {
  .jobber-wrap { padding: 20px; }
}

/* ===== BOOKING / FORM ===== */
.booking { background: var(--cream); }
.form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 6px solid var(--aqua);
}
.form label {
  display: block;
  margin-bottom: 20px;
}
.form label > span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(13, 42, 74, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--cream);
  color: var(--ink);
  transition: all 0.2s;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--aqua);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(63, 184, 224, 0.15);
}
.form textarea { resize: vertical; min-height: 100px; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__row label { margin-bottom: 20px; }

@media (max-width: 600px) {
  .form { padding: 32px 24px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: var(--cream);
  padding: 60px 6vw 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.footer__logo {
  height: 70px;
  width: auto;
  margin-bottom: 14px;
  border-radius: 12px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.footer__tag {
  font-size: 15px;
  color: rgba(251, 246, 236, 0.7);
  max-width: 320px;
}
.footer__head {
  font-family: var(--font-brush);
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--aqua);
  letter-spacing: 0.5px;
}
.footer__grid a {
  display: block;
  color: rgba(251, 246, 236, 0.85);
  font-size: 15px;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.footer__grid a:hover { color: var(--aqua); }
.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__copy {
  text-align: center;
  font-size: 13px;
  color: rgba(251, 246, 236, 0.5);
  padding-top: 24px;
  border-top: 1px solid rgba(251, 246, 236, 0.1);
  max-width: 1200px;
  margin: 0 auto;
}
.footer__employee {
  color: rgba(251, 246, 236, 0.5);
  text-decoration: none;
  border-bottom: 1px dotted rgba(251, 246, 236, 0.3);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.footer__employee:hover {
  color: var(--aqua);
  border-bottom-color: var(--aqua);
}

@media (max-width: 720px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer__logo { margin: 0 auto 14px; }
  .footer__tag { margin: 0 auto; }
}

/* ===== SECTION SPACING ON MOBILE ===== */
@media (max-width: 720px) {
  .section { padding: 70px 6vw; }
  .hero { padding: 30px 6vw 60px; }
  .section__head { margin-bottom: 44px; }
}
