/* ===========================================================================
   Sparkling Clean — styles
   Aesthetic: fresh, watery, clean. Teal→blue gradient is the signature device;
   everything else stays quiet. Soft rounded corners, water-tinted shadows.
   =========================================================================== */

:root {
  --teal:  #2BB8C4;
  --blue:  #1E5FCC;
  --frost: #EAF4F8;
  --navy:  #16407A;
  --ink:   #1B2733;
  --white: #FFFFFF;
  --grad:  linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);

  --muted: #5d7282;
  --line:  #d7e6ee;
  --card:  #ffffff;

  /* water-tinted shadows (blue, not grey) */
  --shadow-sm: 0 2px 8px rgba(30, 95, 204, 0.06);
  --shadow:    0 10px 30px rgba(30, 95, 204, 0.10);
  --shadow-lg: 0 24px 60px rgba(22, 64, 122, 0.16);

  --radius:    18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --container: 1140px;
  --pad: clamp(1rem, 4vw, 1.5rem);

  --font-display: "Bricolage Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ----- reset / base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--frost);
  background-image:
    radial-gradient(900px 500px at 85% -10%, rgba(43, 184, 196, 0.10), transparent 60%),
    radial-gradient(800px 500px at -10% 10%, rgba(30, 95, 204, 0.08), transparent 55%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

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

/* ----- accessibility helpers ----- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--navy); color: #fff; padding: 0.75rem 1rem; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 6px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 0.6rem;
}

.section-lead { color: var(--muted); max-width: 60ch; margin: -0.2rem 0 2rem; font-size: 1.05rem; }

/* ----- buttons ----- */
.btn {
  --btn-pad-y: 0.72rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700; font-size: 1rem;
  padding: var(--btn-pad-y) 1.35rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 44px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background-image: var(--grad);
  color: #fff;
  box-shadow: 0 8px 22px rgba(30, 95, 204, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(30, 95, 204, 0.36); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--navy); border-color: rgba(22, 64, 122, 0.25);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.6); }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-lg { font-size: 1.06rem; padding: 0.95rem 1.7rem; }
.btn-block { width: 100%; }

/* ----- header ----- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--navy); }
.brand:hover { text-decoration: none; }
.brand-mark { width: 40px; height: 40px; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.22rem; color: var(--navy); letter-spacing: -0.02em; }
.header-nav { display: none; gap: 1.4rem; margin-left: 1.5rem; }
.header-nav a { color: var(--navy); font-weight: 600; font-size: 0.98rem; }
.header-nav a:hover { color: var(--blue); text-decoration: none; }
.header-actions { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; }
.phone-link { display: none; align-items: center; gap: 0.4rem; color: var(--navy); font-weight: 700; }
.phone-link:hover { color: var(--blue); text-decoration: none; }

/* ----- hero ----- */
.hero {
  position: relative; overflow: hidden;
  background-image: var(--grad);
  color: #fff;
  padding: clamp(3.5rem, 9vw, 6.5rem) 0 clamp(4rem, 9vw, 7rem);
  isolation: isolate;
}
.hero::after { /* soft frost fade into the next section */
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 90px;
  background: linear-gradient(to bottom, transparent, var(--frost));
}
.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 820px; }
.hero-mark { width: clamp(72px, 12vw, 104px); height: auto; margin: 0 auto 1.1rem; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.18)); }
.hero h1 {
  color: #fff; margin: 0 0 0.5rem;
  font-weight: 800; font-size: clamp(2.7rem, 7vw, 4.6rem);
  letter-spacing: -0.03em;
}
.hero-tagline { font-size: clamp(1.1rem, 2.4vw, 1.5rem); color: rgba(255,255,255,0.95); margin: 0 auto 0.9rem; max-width: 36ch; font-weight: 500; }
.hero-serving { font-size: 1rem; color: rgba(255,255,255,0.85); margin: 0 0 1.8rem; }
.hero-actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.hero-trust {
  list-style: none; display: flex; gap: clamp(1rem, 4vw, 2.4rem); justify-content: center; flex-wrap: wrap;
  margin: 2.2rem 0 0; padding: 0;
}
.hero-trust li { font-size: 0.95rem; color: rgba(255,255,255,0.9); }
.hero-trust strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #fff; }

/* floating bubbles */
.hero-bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-bubbles span {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.55), rgba(255,255,255,0.06) 70%);
  animation: floatUp 14s ease-in-out infinite;
}
.hero-bubbles span:nth-child(1){ width: 90px; height: 90px; left: 8%;  top: 65%; animation-delay: 0s; }
.hero-bubbles span:nth-child(2){ width: 48px; height: 48px; left: 22%; top: 30%; animation-delay: -3s; }
.hero-bubbles span:nth-child(3){ width: 130px; height: 130px; right: 6%; top: 50%; animation-delay: -6s; }
.hero-bubbles span:nth-child(4){ width: 36px; height: 36px; right: 24%; top: 22%; animation-delay: -1.5s; }
.hero-bubbles span:nth-child(5){ width: 64px; height: 64px; left: 48%; top: 78%; animation-delay: -8s; }
.hero-bubbles span:nth-child(6){ width: 28px; height: 28px; right: 40%; top: 70%; animation-delay: -4.5s; }
@keyframes floatUp {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-26px) scale(1.06); opacity: 1; }
}

/* ----- sections ----- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section > .container > h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 1.6rem; }

/* ----- cards grid ----- */
.cards { display: grid; gap: 1.25rem; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.6rem;
}

/* services */
.services-grid { grid-template-columns: 1fr; }
.service-card { transition: transform 0.18s ease, box-shadow 0.2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 54px; height: 54px; display: grid; place-items: center;
  font-size: 1.6rem; border-radius: 16px;
  background: linear-gradient(135deg, rgba(43,184,196,0.16), rgba(30,95,204,0.14));
  margin-bottom: 0.9rem;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.service-card p { color: var(--muted); margin: 0; }
.services-cta { margin-top: 2rem; }

/* about */
.about { background:
  linear-gradient(to bottom, transparent, rgba(255,255,255,0.5) 50%, transparent); }
.about-inner { display: grid; gap: 2rem; align-items: center; }
.about-photo {
  position: relative; max-width: 420px; margin: 0 auto;
}
.about-photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.about-photo::before { /* gradient frame accent */
  content: ""; position: absolute; inset: -10px -10px auto auto; width: 60%; height: 60%;
  background: var(--grad); border-radius: var(--radius-lg); z-index: -1; opacity: 0.35;
  filter: blur(6px);
}
.about-copy p { color: var(--ink); font-size: 1.06rem; }
.about-copy > p:first-of-type { margin-top: 0; }
.about-points { list-style: none; padding: 0; margin: 1.2rem 0 1.6rem; display: grid; gap: 0.5rem; }
.about-points li { position: relative; padding-left: 1.8rem; color: var(--navy); font-weight: 600; }
.about-points li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 1.3rem; height: 1.3rem; display: grid; place-items: center;
  background-image: var(--grad); color: #fff; border-radius: 50%; font-size: 0.8rem;
}

/* ----- gallery ----- */
.gallery {
  display: grid; gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}
.gallery-item {
  padding: 0; border: 0; background: none; cursor: pointer;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ----- reviews ----- */
.reviews { background: rgba(255,255,255,0.55); }
.reviews h2 { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; }
.stars {
  background-image: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: 0.08em;
}
.reviews-grid { grid-template-columns: 1fr; }
.review-card { display: flex; flex-direction: column; gap: 0.7rem; }
.review-card .stars { font-size: 1.15rem; }
.review-card blockquote { margin: 0; color: var(--ink); font-size: 1.04rem; }
.review-card figcaption { margin-top: auto; padding-top: 0.4rem; }
.review-card figcaption strong { display: block; color: var(--navy); font-family: var(--font-display); }
.review-card figcaption span { color: var(--muted); font-size: 0.9rem; }

/* ----- booking ----- */
.book {
  background-image:
    radial-gradient(700px 380px at 100% 0%, rgba(43,184,196,0.12), transparent 60%),
    radial-gradient(700px 380px at 0% 100%, rgba(30,95,204,0.10), transparent 60%);
}
.book-inner { display: grid; gap: 2rem; align-items: start; }
.book-intro h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.book-intro p { color: var(--muted); font-size: 1.08rem; max-width: 42ch; }
.book-assure { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 0.6rem; }
.book-assure li { position: relative; padding-left: 1.9rem; font-weight: 600; color: var(--navy); }
.book-assure li::before {
  content: "🫧"; position: absolute; left: 0; top: 0; font-size: 1.1rem;
}
.book-card { padding: clamp(1.3rem, 3vw, 2rem); box-shadow: var(--shadow-lg); }

/* form */
.field { margin-bottom: 1rem; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-grow { }
.field-zip { max-width: 140px; }
label { font-weight: 600; color: var(--navy); margin-bottom: 0.35rem; font-size: 0.95rem; }
.req { color: var(--teal); }
.optional { color: var(--muted); font-weight: 500; font-size: 0.85rem; }
input, select, textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 0.75rem 0.85rem; border: 1.5px solid var(--line); border-radius: 12px;
  background: #fbfdff; width: 100%; min-height: 46px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
textarea { min-height: auto; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43, 184, 196, 0.18);
}
input:invalid:not(:placeholder-shown), select.invalid, input.invalid, textarea.invalid {
  border-color: #e2574c;
}
.field-error { color: #c0392b; font-size: 0.85rem; margin-top: 0.3rem; }

/* honeypot: visually + functionally hidden, off-screen (not display:none so bots fill it) */
.hp-field {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

.turnstile-mount { min-height: 65px; }
.form-note { color: var(--muted); font-size: 0.85rem; margin: 0.8rem 0 0; text-align: center; }
.form-error {
  margin: 0.9rem 0 0; padding: 0.8rem 1rem; border-radius: 12px;
  background: #fdecea; color: #b03a2e; border: 1px solid #f5c6c0; font-weight: 600;
}

/* success state */
.book-success { text-align: center; padding: 1rem 0.5rem; }
.success-check {
  width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 2rem; color: #fff;
  background-image: var(--grad); box-shadow: 0 10px 24px rgba(30,95,204,0.3);
}
.book-success h3 { font-size: 1.6rem; }
.book-success p { color: var(--muted); max-width: 38ch; margin: 0 auto 1.2rem; font-size: 1.05rem; }

/* soft-launch booking CTA (replaces the form) */
.book-cta { text-align: center; display: grid; gap: 0.9rem; }
.book-cta-lead { font-size: 1.15rem; color: var(--ink); font-weight: 500; margin: 0 0 0.4rem; }
.book-cta-or { color: var(--muted); margin: 0.4rem 0 0; }
.book-cta-hours { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ----- footer ----- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.85); padding: clamp(2.5rem, 6vw, 4rem) 0 1.5rem; margin-top: 1rem; }
.footer-inner { display: grid; gap: 2rem; }
.footer-brand .brand-name { color: #fff; }
.footer-brand { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 0.6rem 0.7rem; }
.footer-brand .brand-mark { grid-row: span 1; }
.footer-tag { grid-column: 1 / -1; color: rgba(255,255,255,0.7); margin: 0.4rem 0 0; font-size: 0.95rem; max-width: 36ch; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 0.7rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; }
.footer-col a { color: rgba(255,255,255,0.85); }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); margin-top: 2rem; padding-top: 1.2rem; }
.footer-bottom p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ----- lightbox ----- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(11, 26, 46, 0.92);
  display: grid; place-items: center; padding: 1.5rem;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 14px; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 1rem; right: 1.2rem; width: 48px; height: 48px;
  border: 0; border-radius: 50%; background: rgba(255,255,255,0.15); color: #fff;
  font-size: 2rem; line-height: 1; cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,0.28); }

/* ======================= responsive ======================= */
@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .header-nav { display: flex; }
  .phone-link { display: inline-flex; }
  .about-inner { grid-template-columns: 0.85fr 1.15fr; gap: 3rem; }
  .book-inner { grid-template-columns: 1fr 1.05fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(4, 1fr); }
}

/* sticky booking column on large screens */
@media (min-width: 768px) {
  .book-intro { position: sticky; top: 92px; }
}

/* ======================= reduced motion ======================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero-bubbles { display: none; }
}
