/* ============================================================
   SLYDE'S CAR WASH / GLOBAL STYLES
   Light, bubbly, water-themed design system.
   Colors, type, and components below are the single source of
   truth. Reuse the custom properties and component classes on
   every page rather than re-deriving styles.
   ============================================================ */

:root {
  /* ---- Brand palette ---- */
  --splash-blue: #008DD1;
  --splash-blue-dark: #0077b3;
  --otter-orange: #F6881F;
  --otter-orange-dark: #e0760f;
  --deep-brown: #B66511;
  --bubble-sky: #DAF1FD;
  --belly-cream: #FDC998;
  --ink: #122430;

  /* ---- Surfaces ---- */
  --white: #FFFFFF;
  --page: #FFFFFF;
  --page-alt: #F1FAFE;   /* very light blue, mimics water */
  --line: #d7ebf5;

  /* ---- Type ---- */
  --font-display: 'Baloo 2', 'Nunito Sans', system-ui, sans-serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;

  --maxw: 1180px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 14px 40px rgba(0, 141, 209, 0.12);
  --shadow-sm: 0 6px 20px rgba(18, 36, 48, 0.08);
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--ink);
  font-weight: 800;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--splash-blue);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  line-height: 1.06;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--splash-blue);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 20px;
}

.lead {
  font-size: 1.08rem;
  color: #3a4a56;
  max-width: 720px;
}

.text-orange { color: var(--otter-orange); }
.text-blue { color: var(--splash-blue); }

/* ============================================================
   BUTTONS  (pill-shaped)
   .btn-primary  = orange, the free-wash CTA everywhere
   .btn-secondary = white with blue outline
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--otter-orange);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(246, 136, 31, 0.35);
}
.btn-primary:hover { background: var(--otter-orange-dark); }

.btn-secondary {
  background: var(--white);
  color: var(--splash-blue);
  border-color: var(--splash-blue);
}
.btn-secondary:hover { background: var(--bubble-sky); }

.btn-blue {
  background: var(--splash-blue);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(0, 141, 209, 0.3);
}
.btn-blue:hover { background: var(--splash-blue-dark); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(18, 36, 48, 0.18);
}
.btn-ghost:hover { background: rgba(18, 36, 48, 0.05); }

.btn-sm { padding: 11px 20px; font-size: 0.9rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.btn-row.center { justify-content: center; }

/* ============================================================
   NAV  (sticky, collapses under 960px)
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.nav.scrolled {
  box-shadow: 0 6px 24px rgba(0, 141, 209, 0.1);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  height: 108px;
}
.nav-logo { display: flex; align-items: center; grid-column: 2; justify-self: center; }
.nav-logo img { height: 92px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  grid-column: 1;
  justify-self: start;
}
.nav-cta { grid-column: 3; justify-self: end; }
.hamburger { grid-column: 3; justify-self: end; }
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 8px 6px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  color: var(--ink);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links > li > a:hover,
.nav-links > li > span:hover,
.nav-links > li.current > a { color: var(--splash-blue); background: var(--bubble-sky); }

.caret { font-size: 0.65rem; opacity: 0.7; font-style: normal; }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 214px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.18s ease;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block;
  padding: 9px 13px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}
.dropdown li a:hover { background: var(--bubble-sky); color: var(--splash-blue); }
.dropdown .cs-sub { display: block; font-size: 0.72rem; color: var(--otter-orange); font-weight: 700; }

.nav-cta { margin-left: 6px; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--bubble-sky);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  top: 76px;
  right: 0;
  width: min(86vw, 340px);
  height: calc(100vh - 76px);
  background: var(--white);
  border-left: 1px solid var(--line);
  box-shadow: -12px 0 40px rgba(18, 36, 48, 0.14);
  padding: 22px;
  overflow-y: auto;
  transform: translateX(105%);
  transition: transform 0.3s ease;
  z-index: 99;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a,
.mobile-menu .m-group-title {
  display: block;
  padding: 12px 6px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu .m-group-title {
  color: var(--splash-blue);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  border-bottom: none;
  padding-bottom: 4px;
  margin-top: 8px;
}
.mobile-menu .m-sub a { padding-left: 18px; font-weight: 600; font-size: 0.95rem; }
.mobile-menu .cs-sub { color: var(--otter-orange); font-size: 0.72rem; font-weight: 700; }
.mobile-menu .btn { display: flex; margin-top: 18px; width: 100%; }

/* ============================================================
   WAVE / ARCH DIVIDERS  (signature bubble motif)
   ============================================================ */
.wave-divider { display: block; width: 100%; height: auto; line-height: 0; }
.wave-divider svg { display: block; width: 100%; height: 100%; }

/* floating decorative bubbles */
.bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.bubbles span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(0,141,209,0.18));
  border: 1px solid rgba(0,141,209,0.16);
  animation: floaty 9s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  position: relative;
  padding: 84px 0;
}
.section.tight { padding: 56px 0; }
.section-white { background: var(--white); }
.section-sky { background: var(--page-alt); }
.section-bubble { background: var(--bubble-sky); }
.section-blue {
  background: linear-gradient(160deg, var(--splash-blue), var(--splash-blue-dark));
  color: var(--white);
}
.section-blue .section-title,
.section-blue h2, .section-blue h3 { color: var(--white); }
.section-blue .lead { color: rgba(255,255,255,0.92); }
.section-blue .eyebrow { color: var(--belly-cream); }

.section > .container { position: relative; z-index: 1; }

.section-head { max-width: 760px; }
.center .section-head { margin: 0 auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--bubble-sky) 0%, #ffffff 100%);
  padding: 70px 0 40px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero h1 .wave-word { color: var(--splash-blue); }
.hero-sub { font-size: 1.15rem; color: #3a4a56; max-width: 560px; }
.hero-art { position: relative; display: flex; justify-content: center; }
.hero-art img { width: min(360px, 80%); filter: drop-shadow(0 20px 30px rgba(0,141,209,0.2)); }
.hero-art .blob {
  position: absolute;
  inset: 6% 8%;
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,0.9), rgba(218,241,253,0.5));
  border-radius: 50%;
  z-index: -1;
}

/* Photo hero (homepage): background image, with the brand color gradient and
   bubbles kept on top as a translucent overlay, and centered content. */
.hero-photo {
  background-image: url("/assets/shutterstock_2472683733 OPTIMIZED.png");
  background-size: cover;
  background-position: center;
  padding: 140px 0 130px;
  min-height: 74vh;
  display: flex;
  align-items: center;
}
.hero-photo .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(218, 241, 253, 0.86) 0%, rgba(255, 255, 255, 0.82) 100%);
}
.hero-photo .bubbles { z-index: 1; }
.hero-photo > .container { position: relative; z-index: 2; }
.hero-center { max-width: 760px; margin: 0 auto; text-align: center; }
.hero-center .hero-sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   BENEFIT / FEATURE CARDS
   ============================================================ */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

/* benefit banner card */
.benefit-card { text-align: center; }
.benefit-card .icon {
  width: 60px; height: 60px;
  margin: 0 auto 14px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bubble-sky);
  color: var(--splash-blue);
}
.benefit-card .icon svg { width: 30px; height: 30px; }
.benefit-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.benefit-card p { font-size: 0.95rem; color: #4a5964; }

/* pain / agitation card */
.pain-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.pain-card h3 { color: var(--otter-orange); font-size: 1.1rem; margin-bottom: 6px; }
.pain-card p { color: #4a5964; font-size: 0.96rem; }

/* step card */
.step-card { position: relative; text-align: center; padding-top: 34px; }
.step-num {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--otter-orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 6px 16px rgba(246,136,31,0.4);
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step-card p { color: #4a5964; font-size: 0.95rem; }

/* ============================================================
   PRICING / WASH TIERS
   ============================================================ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.tier-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.tier-card.featured {
  border-color: var(--otter-orange);
  box-shadow: 0 16px 40px rgba(246, 136, 31, 0.22);
}
.tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--otter-orange); color: #fff;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.78rem; padding: 5px 14px; border-radius: 999px;
  white-space: nowrap;
}
.tier-card h3 { font-size: 1.35rem; margin-bottom: 2px; }
.tier-tagline { color: var(--splash-blue); font-weight: 700; font-size: 0.88rem; margin-bottom: 14px; }
.tier-price {
  font-family: var(--font-display); font-weight: 800; color: var(--ink);
  display: flex; align-items: baseline; gap: 2px; line-height: 1;
}
.tier-price .amt { font-size: 2.6rem; }
.tier-price .cents { font-size: 1.3rem; }
.tier-price .per { font-size: 0.9rem; color: #6a7883; font-weight: 700; margin-left: 4px; }
.tier-price.tbd .amt { font-size: 1.5rem; color: var(--splash-blue); }
.tier-note { font-size: 0.8rem; color: #6a7883; margin-top: 4px; min-height: 1.2em; }
.tier-features {
  margin: 18px 0 22px;
  display: flex; flex-direction: column; gap: 9px;
}
.tier-features li {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 0.93rem; color: #3a4a56;
}
.tier-features li::before {
  content: "";
  flex: none;
  width: 18px; height: 18px; margin-top: 2px;
  background: var(--bubble-sky);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23008DD1' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.tier-card .btn { margin-top: auto; }

.family-note {
  background: var(--bubble-sky);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--splash-blue-dark);
  font-weight: 600;
  margin-bottom: 16px;
}

/* ============================================================
   TABS  (Express / Full Service)
   ============================================================ */
.tabs {
  display: inline-flex;
  gap: 6px;
  background: var(--bubble-sky);
  padding: 6px;
  border-radius: 999px;
  margin: 0 auto 34px;
}
.tab-btn {
  border: none; background: transparent; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 0.98rem;
  color: var(--splash-blue-dark);
  padding: 10px 24px; border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.tab-btn.active { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ============================================================
   MEDIA SPLIT  (text + image)
   ============================================================ */
.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.media-split.reverse .media-text { order: 2; }
.media-art { display: flex; justify-content: center; }
.media-art img { width: min(320px, 78%); }
.media-card-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bubble-sky);
}

/* teaser band */
.teaser {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.teaser h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 8px; }
.teaser p { color: #4a5964; max-width: 560px; }
.teaser .teaser-art { width: 130px; }

/* ============================================================
   LOCATIONS
   ============================================================ */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.loc-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.loc-status {
  display: inline-block; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; width: fit-content;
}
.loc-status.open { background: #e3f7ec; color: #12864a; }
.loc-status.soon { background: var(--belly-cream); color: var(--deep-brown); }
.loc-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.loc-card .addr { color: #4a5964; font-size: 0.95rem; margin-bottom: 4px; }
.loc-card .phone { color: var(--splash-blue); font-weight: 700; margin-bottom: 16px; }
.loc-card .btn { margin-top: auto; }

.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  line-height: 0; background: var(--bubble-sky);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* info list (contact / hours) */
.info-list { display: flex; flex-direction: column; gap: 16px; }
.info-list .label {
  font-family: var(--font-display); font-weight: 700; color: var(--splash-blue);
  font-size: 0.95rem; margin-bottom: 2px;
}

/* ============================================================
   FORMS
   ============================================================ */
.form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.field label { font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem;
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--page-alt); color: var(--ink); width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--splash-blue);
  box-shadow: 0 0 0 3px rgba(0,141,209,0.15); background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note {
  display: none; margin-top: 14px; padding: 12px 16px;
  background: #e3f7ec; color: #12864a; border-radius: 12px;
  font-weight: 600; font-size: 0.95rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 22px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--splash-blue); font-size: 1.5rem; line-height: 1; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-answer { padding: 0 22px 20px; color: #4a5964; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(160deg, var(--otter-orange), var(--deep-brown));
  color: #fff; text-align: center; padding: 72px 0;
  position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.94); max-width: 620px; margin: 0 auto 8px; }
.cta-band .btn-primary { background: #fff; color: var(--otter-orange-dark); box-shadow: 0 8px 22px rgba(0,0,0,0.15); }
.cta-band .btn-primary:hover { background: var(--bubble-sky); color: var(--otter-orange-dark); }
.cta-band .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.cta-band .btn-secondary:hover { background: rgba(255,255,255,0.12); }

/* urgency banner */
.urgency {
  background: var(--ink); color: #fff; border-radius: var(--radius-lg);
  padding: 40px; text-align: center; position: relative; overflow: hidden;
}
.urgency h2 { color: #fff; }
.urgency .big { color: var(--belly-cream); }
.urgency p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 10px auto 0; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--splash-blue); color: #fff; overflow: hidden;
  padding: 14px 0; white-space: nowrap;
}
.marquee-track { display: inline-block; animation: marq 26s linear infinite; }
.marquee span { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; padding-right: 8px; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.review-stars { color: var(--otter-orange); letter-spacing: 2px; margin-bottom: 10px; }
.review-text { color: #3a4a56; font-size: 0.96rem; }
.review-author { font-family: var(--font-display); font-weight: 700; margin-top: 12px; }
.review-empty {
  border: 2px dashed var(--line); border-radius: var(--radius);
  padding: 40px; text-align: center; color: #7a8893; background: var(--page-alt);
}

/* ============================================================
   BADGES / PILLS / MISC
   ============================================================ */
.pill {
  display: inline-block; background: var(--bubble-sky); color: var(--splash-blue-dark);
  font-weight: 700; font-size: 0.82rem; padding: 6px 14px; border-radius: 999px;
}
.pill.orange { background: var(--belly-cream); color: var(--deep-brown); }

.seasonal-banner {
  background: var(--belly-cream); color: var(--deep-brown);
  text-align: center; font-weight: 700; padding: 12px 16px; font-size: 0.95rem;
}

.breadcrumb { font-size: 0.85rem; color: #6a7883; margin-bottom: 12px; }
.breadcrumb a { color: var(--splash-blue); font-weight: 600; }

/* page hero (interior pages) */
.page-hero {
  background: linear-gradient(180deg, var(--bubble-sky) 0%, #fff 100%);
  padding: 56px 0 44px;
  position: relative; overflow: hidden;
}
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 12px; letter-spacing: -0.5px; }
.page-hero p { color: #3a4a56; font-size: 1.1rem; max-width: 640px; }
.page-hero.center p { margin: 0 auto; }

.stat-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.stat-chip {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 18px; font-weight: 700; color: var(--splash-blue-dark); font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

/* two-column prose */
.prose { max-width: 760px; }
.prose p { margin-bottom: 16px; color: #3a4a56; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 28px 0 12px; }
.prose h3 { font-size: 1.2rem; margin: 22px 0 8px; }
.prose ul { margin: 0 0 16px 0; display: flex; flex-direction: column; gap: 8px; }
.prose ul li { padding-left: 26px; position: relative; color: #3a4a56; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--splash-blue); opacity: 0.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--white); color: #4a5964; padding: 56px 0 0; border-top: 1px solid var(--line); }
.footer-top {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 30px;
  padding-bottom: 40px; border-bottom: 1px solid var(--line);
}
.footer-brand img { height: 72px; margin-bottom: 14px; }
.footer-brand .tagline { color: #6a7883; font-size: 0.95rem; max-width: 260px; }
.footer-col h4 { color: var(--ink); font-size: 1rem; margin-bottom: 14px; }
.footer-col a { display: block; padding: 5px 0; color: #4a5964; font-size: 0.93rem; }
.footer-col a:hover { color: var(--splash-blue); }
.footer-contact .label { color: var(--ink); font-weight: 700; font-size: 0.85rem; margin-top: 12px; }
.footer-contact a:hover { color: var(--splash-blue); }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 0.85rem; color: #7a8893; }
.footer-bottom a { color: var(--splash-blue); }
.footer-bottom a:hover { color: var(--splash-blue-dark); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.js .reveal.in-view { opacity: 1; transform: none; }
.js .reveal-list > * { opacity: 0; transform: translateY(16px); transition: opacity 0.45s ease, transform 0.45s ease; }
.js .reveal-list.in-view > * { opacity: 1; transform: none; }
.js .reveal-list.in-view > *:nth-child(1) { transition-delay: 0.05s; }
.js .reveal-list.in-view > *:nth-child(2) { transition-delay: 0.12s; }
.js .reveal-list.in-view > *:nth-child(3) { transition-delay: 0.19s; }
.js .reveal-list.in-view > *:nth-child(4) { transition-delay: 0.26s; }
.js .reveal-list.in-view > *:nth-child(5) { transition-delay: 0.33s; }
.js .reveal-list.in-view > *:nth-child(6) { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .js .reveal, .js .reveal-list > * { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Centered-logo header needs a wide viewport for the full menu. Below this,
   collapse to the slide-out mobile menu. */
@media (max-width: 1180px) {
  .nav-links, .nav > .container .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { display: flex; justify-content: space-between; height: 76px; }
  .nav-logo { justify-self: auto; }
  .nav-logo img { height: 54px; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero .btn-row { justify-content: center; }
  .hero-art { order: -1; }
  .hero-art img { width: 240px; }
  .media-split { grid-template-columns: 1fr; gap: 28px; }
  .media-split.reverse .media-text { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .teaser { grid-template-columns: 1fr; text-align: center; }
  .teaser .teaser-art { margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .section { padding: 60px 0; }
  .grid-4, .grid-3, .grid-2, .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .nav-cta { width: auto; }
  .tabs { width: 100%; }
  .tab-btn { flex: 1; padding: 10px 12px; }
}
