/* ============================================================
   SPA EXPRESS — retro white / cream · teal & coral · bubbles
   vintage California spa-shop feel, Fraunces soft serif
   ============================================================ */

:root {
  --bg: #ffffff;          /* white */
  --bg-2: #f6f9fd;
  --panel: #ffffff;
  --ink: #1a2233;          /* navy near-black */
  --dim: #4f5b70;
  --faint: #8a94a6;
  --teal: #2b6cd4;      /* logo blue */
  --teal-soft: #6ba3e8;
  --teal-pale: #e3edfb;
  --coral: #d7392b;     /* red */
  --coral-soft: #ef6b57;
  --sun: #ffffff;
  --line: rgba(26, 34, 51, 0.14);
  --line-strong: rgba(26, 34, 51, 0.8);
  --shadow-pop: 6px 6px 0 rgba(26, 34, 51, 0.9);
  --shadow-pop-sm: 4px 4px 0 rgba(26, 34, 51, 0.9);
  --serif: "Fraunces", "Cooper Black", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1140px;
  --radius: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; height: 100vh; }

/* faint paper grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 6;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.02 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: rgba(107, 163, 232, 0.4); }

img { max-width: 100%; display: block; }
a { color: var(--teal); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 860px; }

.section { padding: 96px 0; position: relative; }
.section-tight { padding: 64px 0; }

/* ---------- type ---------- */

.kicker {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--coral);
  display: flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "〜";
  color: var(--teal);
  font-size: 1rem;
  letter-spacing: 0;
}
.kicker-center { justify-content: center; }
.kicker-center::after {
  content: "〜";
  color: var(--teal);
  font-size: 1rem;
  letter-spacing: 0;
}

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-title {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.section-sub { margin-top: 16px; color: var(--dim); font-size: 1.02rem; }

.serif-accent { font-style: italic; color: var(--teal); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
              background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  color: #fffdf8;
  background: var(--coral);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-pop-sm);
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(26, 34, 51, 0.9);
  background: #ef7048;
}
.btn-primary:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(26,34,51,0.9); }

.btn-ghost {
  color: var(--ink);
  border: 2px solid var(--ink);
  background: var(--panel);
  box-shadow: var(--shadow-pop-sm);
}
.btn-ghost:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(26, 34, 51, 0.9);
  background: var(--teal-pale);
}
.btn-ghost:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(26,34,51,0.9); }

.btn-nav { padding: 10px 20px; font-size: 0.76rem; box-shadow: 3px 3px 0 rgba(26,34,51,0.9); }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 2px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--ink);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 34px;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand svg { width: 32px; height: 32px; }
.brand-word {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.brand-word b { color: var(--coral); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links > a,
.nav-item > a {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-links > a:hover, .nav-item > a:hover { opacity: 1; color: var(--coral); }

.nav-item { position: relative; }
.nav-item .caret { width: 9px; height: 9px; opacity: 0.6; transition: transform 0.25s ease; }
.nav-item:hover .caret { transform: rotate(180deg); }

.drop {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 235px;
  padding: 10px;
  border-radius: 16px;
  background: var(--panel);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-pop);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.nav-item::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 100%; height: 16px;
}
.nav-item:hover .drop, .nav-item:focus-within .drop {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.drop a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dim);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}
.drop a:hover { background: var(--teal-pale); color: var(--ink); }
.drop .drop-label {
  padding: 10px 14px 4px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
}

.nav-burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 28px 28px;
  background: var(--bg);
  border-bottom: 2px solid var(--ink);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 4px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:hover { color: var(--coral); }
.mobile-menu .mm-sub { padding-left: 22px; font-size: 0.88rem; font-weight: 500; color: var(--dim); }
.mobile-menu .mm-label {
  padding: 16px 4px 6px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
}

/* ---------- loader ---------- */

#loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 90% at 50% 112%, rgba(107, 163, 232, 0.22) 0%, transparent 55%),
    var(--bg);
  transition: opacity 0.8s ease, visibility 0.8s;
}
#loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-scene {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.loader-tub { width: 210px; height: auto; margin: 0 auto 26px; overflow: visible; }

.tub-line { fill: none; stroke: var(--ink); stroke-width: 2.6; stroke-linecap: round; }
.tub-line-dim { fill: none; stroke: rgba(26, 34, 51, 0.35); stroke-width: 2.2; stroke-linecap: round; }

.tub-water {
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.6;
  stroke-linecap: round;
  animation: waterline 2.4s ease-in-out infinite;
}
@keyframes waterline {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-7px); }
}

.tub-bubble {
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.8;
  animation: tubBubble 2.6s ease-in infinite;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes tubBubble {
  0%   { opacity: 0; transform: translateY(16px) scale(0.4); }
  20%  { opacity: 0.9; }
  80%  { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(-34px) scale(1.15); }
}

.tub-steam {
  fill: none;
  stroke: var(--coral-soft);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 60;
  animation: steam 3.4s ease-in-out infinite;
  opacity: 0;
}
@keyframes steam {
  0%   { opacity: 0; stroke-dashoffset: 60; transform: translateY(4px); }
  35%  { opacity: 0.8; }
  100% { opacity: 0; stroke-dashoffset: -60; transform: translateY(-10px); }
}

.loader-word {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-indent: 0.16em;
  color: var(--ink);
}
.loader-word span { opacity: 0; animation: letterIn 0.7s ease forwards; display: inline-block; }
@keyframes letterIn {
  from { opacity: 0; transform: translateY(14px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.loader-tag {
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--coral);
  opacity: 0;
  animation: fadeUp 0.9s ease 1s forwards;
}

.loader-bar {
  width: 210px;
  height: 4px;
  margin: 32px auto 0;
  border-radius: 4px;
  border: 1.5px solid var(--ink);
  background: var(--panel);
  overflow: hidden;
}
.loader-bar i {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-soft));
  transform: translateX(-100%);
  animation: barFill 2.5s cubic-bezier(0.3, 0, 0.2, 1) forwards;
}
@keyframes barFill { to { transform: translateX(0); } }

#loader.is-quick .loader-bar i { animation-duration: 0.4s; }
#loader.is-quick .loader-word span { animation-duration: 0.3s; animation-delay: 0s !important; }
#loader.is-quick .loader-tag { animation-delay: 0.1s; animation-duration: 0.3s; }

/* full-screen bubble field on loader */
.loader-bubbles { position: absolute; inset: 0; overflow: hidden; }
.loader-bubbles i {
  position: absolute;
  bottom: -60px;
  border: 2px solid rgba(43, 108, 212, 0.35);
  background: rgba(107, 163, 232, 0.07);
  border-radius: 50%;
  animation: rise linear infinite;
}
@keyframes rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 0.8; }
  100% { transform: translateY(-110vh) translateX(var(--sway, 30px)); opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 170px 0 90px;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}

/* hot tub photo background, washed with cream */
.hero-photo {
  position: absolute;
  inset: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 34%, rgba(255, 255, 255, 0.45) 66%, rgba(255, 255, 255, 0.22) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, transparent 26%, transparent 70%, rgba(255, 255, 255, 0.95) 100%);
}

.hero-bg { display: none; }

#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-inner { position: relative; z-index: 2; }

.hero h1 {
  margin: 26px 0 24px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6.6vw, 4.8rem);
  font-weight: 640;
  line-height: 1.04;
  letter-spacing: -0.015em;
  max-width: 760px;
}
.hero-sub {
  max-width: 540px;
  color: var(--dim);
  font-size: 1.08rem;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
}
.hero-stat { padding: 24px 26px 0 0; }
.hero-stat b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 640;
  color: var(--coral);
  line-height: 1.1;
}
.hero-stat span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.65;
}

/* retro rotating badge */
.hero-badge {
  position: absolute;
  right: 6%;
  bottom: 22%;
  z-index: 2;
  width: 128px;
  height: 128px;
  animation: spin 22s linear infinite;
}
.hero-badge circle.bg { fill: var(--coral); stroke: var(--ink); stroke-width: 3; }
.hero-badge text { fill: #fffdf8; font-family: var(--sans); font-weight: 700; font-size: 10.5px; letter-spacing: 2.6px; text-transform: uppercase; }
.hero-badge .center-drop { fill: #fffdf8; stroke: var(--ink); stroke-width: 2; }
@keyframes spin { to { transform: rotate(360deg); } }

.scroll-hint {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 2px; height: 52px;
  background: linear-gradient(180deg, transparent, var(--teal));
  opacity: 0.7;
  animation: hint 2.2s ease-in-out infinite;
}
@keyframes hint {
  0%, 100% { transform: translateX(-50%) scaleY(0.5); transform-origin: top; opacity: 0.3; }
  50% { transform: translateX(-50%) scaleY(1); opacity: 0.8; }
}

/* ---------- marquee ---------- */

.marquee {
  border-bottom: 2px solid var(--ink);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  background: var(--teal);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee-track span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fffdf8;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 56px;
}
.marquee-track span::after { content: "◦"; color: var(--sun); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- story ---------- */

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.story-copy p { color: var(--dim); margin-bottom: 18px; }
.story-copy p b { color: var(--ink); font-weight: 700; }

.story-media { position: relative; }
.story-media .photo-main {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-pop);
  background: #fff;
}
.story-media .photo-main img { width: 100%; height: 100%; object-fit: cover; }
.story-media .photo-float {
  position: absolute;
  width: 46%;
  bottom: -44px;
  left: -44px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-pop-sm);
  background: #fff;
  transform: rotate(-3deg);
}
.story-quote {
  margin-top: 30px;
  padding: 22px 26px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--teal-pale);
  box-shadow: var(--shadow-pop-sm);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.06rem;
  color: var(--ink);
}
.story-quote small {
  display: block;
  margin-top: 8px;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}

/* ---------- photo band ---------- */

.photo-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.photo-band figure {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-pop-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.photo-band figure:nth-child(2) { transform: rotate(1.2deg); }
.photo-band figure:nth-child(3) { transform: rotate(-1.2deg); }
.photo-band figure:hover { transform: rotate(0) translateY(-4px); box-shadow: var(--shadow-pop); }
.photo-band img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo-band figcaption {
  padding: 12px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  border-top: 2px solid var(--ink);
  background: var(--panel);
}

/* ---------- cards / collections ---------- */

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
  background: var(--panel);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-pop-sm);
}
.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 rgba(26, 34, 51, 0.9);
}
.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--dim); font-size: 0.94rem; }

.collection-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  padding: 0;
}
.collection-card .cc-media {
  background: radial-gradient(90% 90% at 50% 40%, #ffffff 0%, #eef3fa 75%, #e2eaf6 100%);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}
.collection-card .cc-media img {
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.collection-card:hover .cc-media img { transform: scale(1.06) rotate(-1deg); }
.collection-card .cc-body { padding: 24px 26px 28px; }
.collection-card .cc-tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fffdf8;
  background: var(--teal);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 12px;
}
.collection-card h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 640; }
.collection-card p { margin-top: 8px; }
.cc-link {
  margin-top: 16px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cc-link::after { content: "→"; transition: transform 0.25s ease; }
.collection-card:hover .cc-link::after { transform: translateX(5px); }

/* ---------- product grid ---------- */

.series { padding: 72px 0 8px; scroll-margin-top: 130px; }
.series-head { display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap; margin-bottom: 14px; }
.series-head h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 640;
}
.series-head .series-count {
  color: #fffdf8;
  background: var(--coral);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 2px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.series-note { max-width: 720px; color: var(--dim); font-size: 0.95rem; margin-bottom: 34px; }
.series-note b { color: var(--ink); font-weight: 700; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product {
  background: var(--panel);
  border: 2px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-pop-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 rgba(26, 34, 51, 0.9);
}
.product-media {
  background: radial-gradient(95% 95% at 50% 42%, #ffffff 0%, #f0f4fb 75%, #e5ecf7 100%);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-bottom: 2px solid var(--ink);
}
.product-media img {
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.45s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.product:hover .product-media img { transform: scale(1.06); }
.product-body { padding: 16px 18px 18px; }
.product-body h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 640; letter-spacing: 0.01em; }
.product-body .p-series { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 4px; }
.product-body a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  text-decoration: none;
}
.product-body a:hover { text-decoration: underline; }

/* sticky sub-nav on collection page */
.subnav {
  position: sticky;
  top: 120px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--ink);
}
.subnav-inner {
  display: flex;
  gap: 10px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav a {
  padding: 8px 18px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--panel);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.subnav a:hover, .subnav a.active {
  color: #fffdf8;
  background: var(--teal);
}

/* ---------- services ---------- */

.service-card { position: relative; overflow: hidden; }
.service-card .sc-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--teal-pale);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 rgba(26, 34, 51, 0.9);
}
.service-card .sc-icon svg { width: 26px; height: 26px; stroke: var(--teal); }
.service-card h3 { font-family: var(--serif); font-size: 1.38rem; font-weight: 640; }
.service-card ul { list-style: none; margin-top: 14px; }
.service-card ul li {
  position: relative;
  padding: 5px 0 5px 24px;
  color: var(--dim);
  font-size: 0.92rem;
}
.service-card ul li::before {
  content: "";
  position: absolute;
  left: 2px; top: 12px;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--teal-soft);
}

/* ---------- pricing (maintenance plans) ---------- */

.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.plan {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-pop-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.plan:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 rgba(26, 34, 51, 0.9); }
.plan.featured { background: var(--teal-pale); }
.plan-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}
.plan-price { margin: 14px 0 2px; font-family: var(--serif); font-size: 2.4rem; font-weight: 640; line-height: 1; color: var(--ink); }
.plan-price small { font-family: var(--sans); font-size: 0.8rem; color: var(--dim); font-weight: 500; }
.plan-billing { font-size: 0.8rem; color: var(--faint); margin-bottom: 16px; }
.plan p.plan-fit { color: var(--dim); font-size: 0.88rem; flex: 1; }
.plan .plan-badge {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fffdf8;
  background: var(--coral);
}
.plan a { margin-top: 20px; }

.included {
  margin-top: 44px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 34px 36px;
  background: var(--panel);
  box-shadow: var(--shadow-pop-sm);
}
.included h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 640;
  margin-bottom: 18px;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 36px;
  list-style: none;
}
.included-grid li {
  position: relative;
  padding: 6px 0 6px 30px;
  color: var(--dim);
  font-size: 0.94rem;
}
.included-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.included .fine { margin-top: 18px; font-size: 0.82rem; color: var(--faint); }

/* ---------- chips (brands / areas) ---------- */

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 8px 18px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--panel);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s ease;
}
.chip:hover { background: var(--teal-pale); transform: translateY(-2px); }

/* ---------- areas band ---------- */

.areas-band {
  border-radius: 26px;
  border: 2px solid var(--ink);
  padding: 52px 56px;
  background: var(--bg-2);
  box-shadow: var(--shadow-pop);
}

/* ---------- visit / contact ---------- */

.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours-table td { padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
.hours-table td:first-child { color: var(--dim); }
.hours-table td:last-child { text-align: right; font-weight: 700; }
.hours-table tr.closed td:last-child { color: var(--faint); font-weight: 500; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-pop-sm);
  min-height: 320px;
  background: #fff;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

.contact-line { display: flex; align-items: center; gap: 14px; padding: 10px 0; color: var(--dim); }
.contact-line svg { width: 18px; height: 18px; stroke: var(--coral); flex-shrink: 0; }
.contact-line a { color: var(--ink); text-decoration: none; font-weight: 600; }
.contact-line a:hover { color: var(--coral); }

/* form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid var(--ink);
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.field select { appearance: none; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--teal);
  box-shadow: 3px 3px 0 rgba(43, 108, 212, 0.5);
}
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- FAQ ---------- */

.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--panel);
  overflow: hidden;
  box-shadow: var(--shadow-pop-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.faq-item[open] { background: #fff; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--coral);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--dim); font-size: 0.95rem; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 2px solid var(--ink);
  padding: 76px 60px;
  text-align: center;
  background: var(--teal);
  box-shadow: var(--shadow-pop);
}
/* retro sunburst rings */
.cta-band::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 1400px; height: 1400px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: repeating-radial-gradient(circle,
    transparent 0 70px,
    rgba(255, 253, 248, 0.06) 70px 140px);
  pointer-events: none;
}
.cta-band .kicker { color: var(--sun); position: relative; }
.cta-band h2 {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 640;
  line-height: 1.12;
  max-width: 640px;
  margin: 18px auto 16px;
  color: #fffdf8;
}
.cta-band p { position: relative; color: rgba(255, 253, 248, 0.85); max-width: 480px; margin: 0 auto 36px; }
.cta-band .hero-ctas { position: relative; justify-content: center; }
.cta-band .btn-ghost { background: #fffdf8; }

/* ---------- page hero (interior pages) ---------- */

.page-hero {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 2px solid var(--ink);
}
.page-hero .hero-photo::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.6) 75%, rgba(255, 255, 255, 0.4) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, transparent 40%, rgba(255, 255, 255, 0.6) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  margin-top: 24px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  font-weight: 640;
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: 760px;
}
.page-hero .section-sub { max-width: 600px; }

/* ---------- footer ---------- */

footer {
  border-top: 2px solid var(--ink);
  padding: 72px 0 40px;
  background: #e9f1fc;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p { color: var(--dim); font-size: 0.92rem; margin-top: 16px; max-width: 300px; }
.footer-col h5 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  color: var(--dim);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--coral); }
.footer-col p { color: var(--dim); font-size: 0.92rem; padding: 5px 0; }

.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--panel);
  transition: all 0.2s ease;
}
.socials a svg { width: 16px; height: 16px; fill: var(--ink); transition: fill 0.2s ease; }
.socials a:hover { background: var(--teal-pale); transform: translateY(-3px); }

.footer-bottom {
  border-top: 2px solid rgba(26, 34, 51, 0.25);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--faint);
}
.footer-bottom a { color: var(--dim); text-decoration: none; font-weight: 600; }
.footer-bottom a:hover { color: var(--coral); }

/* ---------- reveal ---------- */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.6, 0.3, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

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

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-badge { display: none; }
}

@media (max-width: 880px) {
  .nav-links, .nav .btn-nav { display: none; }
  .nav-burger { display: block; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 8px 0; }
  .story-grid { grid-template-columns: 1fr; gap: 56px; }
  .story-media .photo-float { left: 12px; bottom: -34px; }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  .photo-band { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .areas-band { padding: 40px 30px; }
  .cta-band { padding: 60px 30px; }
  .section { padding: 72px 0; }
  .hero-photo::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 50%, rgba(255, 255, 255, 0.6) 100%);
  }
}

@media (max-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .product-media { padding: 12px; }
}


/* ---------- original logo ---------- */

.brand-logo {
  height: 58px;
  width: auto;
  display: block;
  background: #fff;
  padding: 5px 12px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 3px 3px 0 rgba(26, 34, 51, 0.9);
}

.loader-logo {
  display: block;
  margin: 0 auto;
  width: min(330px, 74vw);
  height: auto;
  background: #fff;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow-pop-sm);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.3s forwards;
}
#loader.is-quick .loader-logo { animation-delay: 0s; animation-duration: 0.3s; }

@media (max-width: 880px) {
  .brand-logo { height: 44px; }
}


/* ---------- top info banner ---------- */

.topbar {
  background: var(--teal);
  border-bottom: 2px solid var(--ink);
  color: #fff;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 36px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
}
.tb-item b { font-weight: 700; color: #fff; }
.tb-item a { color: #fff; text-decoration: none; font-weight: 700; }
.tb-item a:hover { text-decoration: underline; }
.tb-sep { margin: 0 8px; opacity: 0.7; }

/* the fixed header now has a solid strip on top; give nav links a readable bg sooner */
.nav { background: transparent; }

@media (max-width: 1020px) {
  .tb-addr { display: none; }
}
@media (max-width: 640px) {
  .tb-hours b { display: none; }
  .topbar-inner { font-size: 0.68rem; gap: 12px; }
}
