/* ============================================
   PUREBARIC — Modern Wellness Design System
   ============================================ */

:root {
  /* Earth-tone palette */
  --cream: #f5f0e8;
  --cream-warm: #efe7d8;
  --sand: #e0d4be;
  --clay: #c4a886;
  --terracotta: #b8704f;
  --terracotta-deep: #8f5538;
  --moss: #6b7c5e;
  --moss-deep: #4a5a40;
  --stone: #3a3530;       /* darker than original #5a544a — AAA on cream */
  --stone-muted: #5a544a; /* original tone retained for fine print / secondary labels */
  --charcoal: #221e1a;
  --ink: #1a1f1a; /* matches the dark green/ink in the logo */

  --accent: #b8704f;
  --accent-deep: #8f5538;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Layout */
  --max-width: 1280px;
  --radius: 4px;
  --radius-lg: 16px;

  /* Focus ring (accessibility) */
  --focus-ring: 0 0 0 3px rgba(184, 112, 79, 0.55);
}

/* ===== ACCESSIBILITY: visible focus on every interactive element ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 4px;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: var(--terracotta) !important;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.85rem 1.25rem;
  z-index: 1001;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

html {
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, iframe { max-width: 100%; height: auto; }

/* Subtle grain overlay for warmth */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(3.25rem, 9vw, 7.25rem); line-height: 1.0; }
h2 { font-size: clamp(2rem, 5vw, 3.75rem); line-height: 1.05; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.2; }
h4 { font-size: 1.25rem; line-height: 1.3; }
h5 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.12em; font-family: var(--font-body); font-weight: 600; }

.italic { font-style: italic; color: var(--terracotta); }
p { font-weight: 400; color: var(--stone); }
.text-muted { color: var(--stone-muted); }
a { color: inherit; text-decoration: none; transition: opacity 0.2s ease, color 0.2s ease; }

/* Layout */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section-header { margin-bottom: var(--space-lg); max-width: 720px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
}
.eyebrow.light { color: var(--cream); opacity: 0.7; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.95rem 1.85rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--cream); box-shadow: 0 6px 20px -8px rgba(26, 31, 26, 0.45); }
.btn-primary:hover { background: var(--terracotta); transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(184, 112, 79, 0.55); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { background: var(--terracotta); color: var(--cream); transform: translateY(-2px); }

/* Larger on mobile for thumb-friendly tap targets */
@media (max-width: 640px) {
  .btn { min-height: 54px; padding: 1.05rem 2rem; font-size: 1rem; }
  .btn.nav-cta { min-height: 40px; padding: 0.55rem 1rem; font-size: 0.8rem; }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(42, 38, 32, 0.06);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  height: 32px;
}
.logo img {
  height: 100%;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--stone);
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.is-active { color: var(--ink); font-weight: 600; }
.nav-links a.is-active::after { width: 100%; background: var(--terracotta); height: 2px; }

.nav-cta { padding: 0.7rem 1.4rem; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 1.5px; background: var(--ink); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 7rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: hidden;
}
.hero > * { min-width: 0; }

.hero-bg {
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(184, 112, 79, 0.08), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.hero-content { animation: fadeInUp 1s ease both; }

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(42, 38, 32, 0.15);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.4);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2e8540;
  box-shadow: 0 0 0 0 rgba(46, 133, 64, 0.7);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title { margin-bottom: 1.75rem; }
.hero-title .line { display: block; animation: fadeInUp 1s ease both; }
.hero-title .line:nth-child(2) { animation-delay: 0.15s; }

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

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--stone);
  margin-bottom: 2.5rem;
  max-width: 480px;
  animation: fadeInUp 1s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s 0.45s ease both;
}
.hero-actions .btn { padding: 1.05rem 2rem; font-size: 1rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(42, 38, 32, 0.12);
  animation: fadeInUp 1s 0.6s ease both;
}

.hero-stats .stat {
  padding: 0.25rem 1.5rem;
  border-right: 1px solid rgba(42, 38, 32, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80px;
}
.hero-stats .stat:first-child {
  padding-left: 0;
  align-items: flex-start;
  text-align: left;
}
.hero-stats .stat:nth-child(2) {
  align-items: center;
  text-align: center;
}
.hero-stats .stat:last-child {
  border-right: none;
  padding-right: 0;
  align-items: flex-end;
  text-align: right;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
  font-feature-settings: 'tnum' on, 'lnum' on;
}
.hero-stats .stat:nth-child(2) .stat-num {
  font-style: italic;
  color: var(--terracotta);
}

.stat-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--stone);
}

/* Hero image — full chamber in-frame (no crop) */
.hero-image {
  position: relative;
  aspect-ratio: 16 / 11;
  width: 100%;
  animation: fadeIn 1.2s 0.4s ease both;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-warm);
  box-shadow: 0 30px 60px -20px rgba(42, 38, 32, 0.2);
  border: none;
  padding: 0;
  cursor: zoom-in;
  display: block;
}
.hero-image-zoom {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(20, 18, 15, 0.78);
  color: var(--cream);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.hero-image-zoom svg { width: 14px; height: 14px; }
.hero-image:hover .hero-image-zoom,
.hero-image:focus-visible .hero-image-zoom { opacity: 1; transform: translateY(0); }
@media (max-width: 968px) {
  .hero-image-zoom { opacity: 1; transform: translateY(0); }
}

/* ===== HERO IMAGE LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 15, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1.5rem;
  animation: fadeIn 0.2s ease;
}
.lightbox[hidden] { display: none; }
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(245, 240, 232, 0.12);
  border: 1px solid rgba(245, 240, 232, 0.18);
  color: var(--cream);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(245, 240, 232, 0.22); transform: scale(1.05); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-close svg,
.lightbox-nav svg { width: 22px; height: 22px; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  max-width: 1100px;
  width: 100%;
  height: 100%;
  align-items: center;
  border-radius: var(--radius-lg);
}
.lightbox-track::-webkit-scrollbar { display: none; }
.lightbox-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0 1rem;
}
.lightbox-slide img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  background: var(--cream-warm);
  display: block;
}
.lightbox-slide figcaption {
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  text-align: center;
  opacity: 0.85;
}
.lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  opacity: 0.7;
}
@media (max-width: 640px) {
  .lightbox-close { top: 1rem; right: 1rem; width: 40px; height: 40px; }
  .lightbox-prev { left: 0.5rem; width: 40px; height: 40px; }
  .lightbox-next { right: 0.5rem; width: 40px; height: 40px; }
  .lightbox { padding: 0.75rem; }
  .lightbox-slide { padding: 0; }
}
body.lightbox-open { overflow: hidden; }

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0%   { transform: scale(1.0)  translate(0, 0); }
  100% { transform: scale(1.06) translate(-1.5%, -1%); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 1.75rem 0;
  overflow: hidden;
  margin: 4rem 0;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
}
.marquee-track span { flex-shrink: 0; }
.dot-sep { color: var(--terracotta); font-size: 0.6rem; align-self: center; }

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== WHY ===== */
.why { padding: var(--space-xl) 0; background: var(--cream-warm); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(42, 38, 32, 0.1);
  border-top: 1px solid rgba(42, 38, 32, 0.1);
  border-bottom: 1px solid rgba(42, 38, 32, 0.1);
}

.why-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.4s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.why-card:hover { background: var(--cream-warm); }

.why-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(184, 112, 79, 0.12);
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}
.why-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.why-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}
.why-card h3 { margin-bottom: 0.85rem; }
.why-card p { font-size: 0.97rem; line-height: 1.6; color: var(--stone); }

/* ===== CHAMBER SHOWCASE (single chamber, feature layout) ===== */
.chamber-feature {
  padding: var(--space-xl) 0;
  background: var(--cream-warm);
}

.chamber-feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.chamber-feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(42, 38, 32, 0.18);
  position: relative;
  aspect-ratio: 16 / 11;
  background: var(--cream-warm);
}
.chamber-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.chamber-feature-img:hover img { transform: scale(1.03); }

.chamber-spec-pill {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.chamber-spec-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

.chamber-feature-text h2 { margin-bottom: 1.5rem; }
.chamber-feature-text > p { font-size: 1.1rem; margin-bottom: 2.5rem; }

.spec-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 2.5rem;
  background: rgba(42, 38, 32, 0.08);
  border: 1px solid rgba(42, 38, 32, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.spec-list li {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 1.5rem 1.25rem;
  background: var(--cream);
  min-height: 110px;
  transition: background 0.3s ease;
}
.spec-list li:hover { background: var(--cream-warm); }
.spec-list .spec-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--stone-muted);
}
.spec-list .spec-value {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
@media (max-width: 640px) {
  .spec-list { grid-template-columns: repeat(2, 1fr); }
  .spec-list li { min-height: 96px; padding: 1.15rem 1rem; }
  .spec-list .spec-value { font-size: 1.2rem; }
}

/* ===== CHAMBER GALLERY (full-width scroll-revealed showcase) ===== */
.gallery {
  padding: var(--space-xl) 0 calc(var(--space-xl) - 2rem);
  background: var(--cream);
  overflow: hidden;
}

.gallery-header {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 3rem;
}
.gallery-header > div:first-child { max-width: 580px; }
.gallery-header h2 { margin-bottom: 0; }
.gallery-meta {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--stone);
  font-size: 1.05rem;
  flex-shrink: 0;
  text-align: right;
}

/* Asymmetric grid: featured large + smaller satellites */
.gallery-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-warm);
  box-shadow: 0 20px 40px -20px rgba(42, 38, 32, 0.15);
  /* scroll-reveal default state */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--cream-warm);
  display: block;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(26, 31, 26, 0.78);
  backdrop-filter: blur(14px);
  color: var(--cream);
  padding: 0.7rem 1.1rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: auto;
  max-width: max-content;
}
.gallery-caption::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

/* Featured-large layout (desktop) — 5 items, asymmetric */
.gallery-item-1 { grid-column: span 7; grid-row: span 4; }
.gallery-item-2 { grid-column: span 5; grid-row: span 2; }
.gallery-item-3 { grid-column: span 5; grid-row: span 2; }
.gallery-item-4 { grid-column: span 6; grid-row: span 3; }
.gallery-item-5 { grid-column: span 6; grid-row: span 3; }

/* Staggered reveal delays */
.gallery-item-1.is-visible { transition-delay: 0ms; }
.gallery-item-2.is-visible { transition-delay: 100ms; }
.gallery-item-3.is-visible { transition-delay: 200ms; }
.gallery-item-4.is-visible { transition-delay: 300ms; }
.gallery-item-5.is-visible { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .gallery-item { opacity: 1; transform: none; transition: none; }
  .hero-image img { animation: none; }
  .gallery-item img,
  .chamber-feature-img img { transition: none; }
}

/* ===== PROCESS ===== */
.process { padding: var(--space-xl) 0; }

.process-flex {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.process-text h2 { margin-bottom: 2rem; }

.process-list { list-style: none; display: flex; flex-direction: column; gap: 0; position: relative; }
.process-list::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(184, 112, 79, 0.45), rgba(184, 112, 79, 0.1));
  z-index: 0;
}
.process-list li {
  display: flex;
  gap: 1.75rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(42, 38, 32, 0.1);
  transition: padding-left 0.3s ease;
  position: relative;
  z-index: 1;
}
.process-list li:hover { padding-left: 0.5rem; }
.process-list li:first-child { border-top: 1px solid rgba(42, 38, 32, 0.1); }

.step-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream);
  background: var(--ink);
  font-weight: 500;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 1px rgba(42, 38, 32, 0.12);
}
.process-list h4 { margin-bottom: 0.4rem; font-size: 1.35rem; }
.process-list p { font-size: 0.97rem; color: var(--stone); }

/* ===== TESTIMONIAL / O2 PROOF ===== */
.testimonial {
  padding: var(--space-xl) 0;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}
.testimonial blockquote { max-width: 900px; margin: 0 auto; }
.testimonial p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  line-height: 1.3;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.quote-mark { color: var(--terracotta); font-size: 1.5em; vertical-align: -0.2em; }
.testimonial footer {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 232, 0.6);
  font-style: normal;
}
.testimonial footer strong { color: var(--cream); font-weight: 600; }

/* O2 proof section (dark background, with photo) */
.proof {
  padding: var(--space-xl) 0;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.proof-text .eyebrow { color: var(--terracotta); }
.proof-text h2 { color: var(--cream); margin-bottom: 1.5rem; }
.proof-text p { color: rgba(245, 240, 232, 0.85); font-size: 1.08rem; }
.proof-big {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.95;
  color: var(--terracotta);
  margin: 1rem 0 0.5rem;
  letter-spacing: -0.04em;
}
.proof-big-sub {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 2rem;
}
.proof-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  aspect-ratio: 3 / 4;
}
.proof-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ===== WAITLIST CTA ===== */
.waitlist-cta { padding: var(--space-xl) 0; }
.waitlist-card {
  background: linear-gradient(135deg, var(--moss-deep) 0%, var(--moss) 100%);
  border-radius: var(--radius-lg);
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
}
.waitlist-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 112, 79, 0.25) 0%, transparent 60%);
}
.waitlist-content { position: relative; max-width: 600px; color: var(--cream); }
.waitlist-content h2 { color: var(--cream); margin-bottom: 1.25rem; }
.waitlist-content p {
  color: rgba(245, 240, 232, 0.85);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: rgba(245, 240, 232, 0.85);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .footer-logo {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.9rem;
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(245, 240, 232, 0.7);
}

.footer-col h5 {
  margin-bottom: 1.25rem;
  color: var(--cream);
  font-size: 0.78rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  font-size: 0.92rem;
  color: rgba(245, 240, 232, 0.7);
}
.footer-col a:hover { color: var(--terracotta); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 240, 232, 0.15);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.5);
  gap: 2rem;
  flex-wrap: wrap;
}
.disclaimer { font-style: italic; max-width: 500px; }

/* ===== FORMS ===== */
.page-header {
  padding: 9rem 0 4rem;
  text-align: center;
  background: var(--cream-warm);
}
.page-header .eyebrow { margin-bottom: 1rem; }
.page-header p { max-width: 600px; margin: 1.5rem auto 0; font-size: 1.05rem; }

.form-section { padding: 5rem 0; }

.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 30px rgba(42, 38, 32, 0.05);
}

.form-group { margin-bottom: 1.75rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.form-group label .req { color: var(--terracotta); margin-left: 0.2rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(42, 38, 32, 0.15);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: white;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--font-body);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--cream);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(42, 38, 32, 0.1);
}

label.checkbox-item,
.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  cursor: pointer;
  font-size: 0.94rem;
  line-height: 1.5;
  margin-bottom: 0;
  font-weight: 400;
  color: var(--stone);
}
label.checkbox-item input[type="checkbox"],
.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--terracotta);
  margin-top: 3px;
  flex-shrink: 0;
}
.checkbox-item > span { flex: 1; }

.form-section-divider {
  margin: 3rem 0 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(42, 38, 32, 0.1);
}
.form-section-divider h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.form-section-divider p { font-size: 0.9rem; color: var(--stone); }

.form-submit { margin-top: 2rem; width: 100%; }
.form-helper { font-size: 0.82rem; color: var(--stone); margin-top: 0.4rem; font-style: italic; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(42, 38, 32, 0.12); padding: 1.75rem 0; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 500;
}
.faq-toggle {
  color: var(--terracotta);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1.5rem;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-a { padding-top: 1rem; color: var(--stone); font-size: 1rem; line-height: 1.65; }

/* ===== PRICING (new monthly tier layout) ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.price-card {
  background: white;
  border: 1px solid rgba(42, 38, 32, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(42, 38, 32, 0.08); }
.price-card.featured { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.price-card.featured h3,
.price-card.featured .price { color: var(--cream); }
.price-card.featured p,
.price-card.featured li,
.price-card.featured .price-duration,
.price-card.featured .price-unit,
.price-card.featured .price-saves { color: rgba(245, 240, 232, 0.85); }
.price-card.featured .price-saves { background: rgba(184, 112, 79, 0.25); color: var(--cream); }

.price-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--cream);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-weight: 600;
  white-space: nowrap;
}

.price-card h3 { margin-bottom: 0.4rem; font-size: 1.4rem; }
.price-duration {
  font-size: 0.82rem;
  color: var(--stone);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-family: var(--font-display);
}
.price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 0.1rem;
  line-height: 1;
}
.price sup {
  font-size: 0.4em;
  vertical-align: 0.85em;
  margin-right: 0.05em;
  font-style: italic;
  color: var(--terracotta);
}
.price-card.featured .price sup { color: var(--terracotta); }
.price-unit {
  font-size: 0.85rem;
  color: var(--stone);
  margin-bottom: 0.4rem;
}
.price-per-session {
  font-size: 0.82rem;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 1.1rem;
  font-style: italic;
}
.price-card.featured .price-per-session { color: #e3b598; }
.price-refund-note {
  font-size: 0.78rem;
  color: var(--stone-muted);
  text-align: center;
  margin: 0.75rem 0 0;
  line-height: 1.4;
}
.price-refund-note a { color: var(--terracotta); text-decoration: underline; }
.price-saves {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--moss-deep);
  background: rgba(107, 124, 94, 0.15);
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.price-features {
  list-style: none;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}
.price-features li {
  font-size: 0.88rem;
  padding: 0.45rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}
.price-features li::before {
  content: '◐';
  color: var(--terracotta);
  flex-shrink: 0;
}
.price-cta { width: 100%; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 968px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 8rem;
  }
  .hero-image {
    aspect-ratio: 16 / 10;
    order: -1;
  }
  .hero-image img {
    object-fit: contain;
    object-position: center;
  }
  .why-grid { grid-template-columns: 1fr; }
  .chamber-feature-grid,
  .proof-grid { grid-template-columns: 1fr; gap: 2rem; }
  .process-flex { grid-template-columns: 1fr; gap: 2rem; }
  .why-card { padding: 2.25rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-top: 1px solid rgba(42, 38, 32, 0.08);
    box-shadow: 0 12px 24px rgba(42, 38, 32, 0.08);
    padding: 1.5rem 2rem 2rem;
    flex-direction: column;
    gap: 1.25rem;
    z-index: 1000;
  }
  .nav-links.active a {
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-toggle span { transition: all 0.2s ease; transform-origin: center; }
  .form-wrap { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .waitlist-card { padding: 3rem 2rem; }

  /* Gallery collapses to simpler 6-column grid */
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .gallery-meta { text-align: left; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(100px, auto); }
  .gallery-item-1 { grid-column: span 6; grid-row: span 4; }
  .gallery-item-2 { grid-column: span 3; grid-row: span 2; }
  .gallery-item-3 { grid-column: span 3; grid-row: span 2; }
  .gallery-item-4 { grid-column: span 3; grid-row: span 2; }
  .gallery-item-5 { grid-column: span 3; grid-row: span 2; }
}

@media (max-width: 640px) {
  /* Tighten section spacing for mobile — defaults are tuned for desktop */
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
    --space-md: 1.5rem;
  }
  .hero { padding: 5rem 1.25rem 2.5rem; gap: 2rem; }
  .hero-bg { display: none; }
  .page-header { padding: 6rem 0 2.5rem; }
  .form-section { padding: 2.5rem 0; }
  .section-header { margin-bottom: 2rem; }

  .pricing-grid { grid-template-columns: 1fr; }
  /* Hero stats stay in a 3-up row even on phone */
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0; padding-top: 2rem; }
  .hero-stats .stat { padding: 0 0.65rem; }
  .hero-stats .stat:first-child { padding-left: 0; }
  .hero-stats .stat:last-child { padding-right: 0; }
  .stat-num { font-size: 1.85rem; letter-spacing: -0.04em; }
  .stat-label { font-size: 0.65rem; letter-spacing: 0.1em; }
  .footer-grid { grid-template-columns: 1fr; }
  .container, .nav-inner { padding: 0 1.25rem; }

  /* Gallery: horizontal scroll-snap carousel on phone */
  .gallery-grid {
    display: flex;
    grid-template-columns: none;
    gap: 1rem;
    padding: 0 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 1.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-item,
  .gallery-item-1,
  .gallery-item-2,
  .gallery-item-3,
  .gallery-item-4,
  .gallery-item-5 {
    grid-column: auto;
    grid-row: auto;
    flex: 0 0 82%;
    aspect-ratio: 4 / 5;
    scroll-snap-align: start;
    opacity: 1; transform: none;
  }
  .gallery-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--stone-muted);
    margin-top: 1rem;
    padding: 0 1.25rem;
  }
  .gallery-hint::before,
  .gallery-hint::after {
    content: '';
    width: 24px;
    height: 1px;
    background: rgba(42, 38, 32, 0.2);
  }
}
@media (min-width: 641px) {
  .gallery-hint { display: none; }
}

/* ===== ZIP CHECKER (in hero) ===== */
.zip-check {
  margin: 0 0 3rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(42, 38, 32, 0.12);
  border-radius: var(--radius-lg);
  max-width: 460px;
  animation: fadeInUp 1s 0.5s ease both;
}
.zip-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 0.75rem;
}
.zip-input-row { display: flex; gap: 0.6rem; }
.zip-input-row input {
  flex: 1;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--cream);
  border: 1px solid rgba(42, 38, 32, 0.18);
  border-radius: 100px;
  color: var(--ink);
}
.zip-input-row input:focus {
  outline: none;
  border-color: var(--terracotta);
  background: white;
}
.zip-submit { padding: 0.85rem 1.4rem; font-size: 0.85rem; }
.zip-result {
  font-size: 0.92rem;
  margin-top: 0.85rem;
  min-height: 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
}
.zip-result.zip-yes { color: var(--moss-deep); }
.zip-result.zip-maybe { color: var(--terracotta); }
.zip-result.zip-no { color: var(--stone); }

/* ===== USE-CASE TILES (replaces marquee) ===== */
.use-cases {
  padding: var(--space-xl) 0 calc(var(--space-xl) - 2rem);
  background: var(--ink);
  color: var(--cream);
}
.use-cases .section-header .eyebrow { color: var(--terracotta); }
.use-cases .section-header h2 { color: var(--cream); }
.use-cases .italic { color: var(--terracotta); }

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-top: 3rem;
}

.use-case-tile {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  background: rgba(245, 240, 232, 0.03);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: var(--radius-lg);
  color: var(--cream);
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}
.use-case-tile:hover {
  background: rgba(245, 240, 232, 0.06);
  border-color: rgba(184, 112, 79, 0.45);
  transform: translateY(-3px);
}

.use-case-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
}
.use-case-tile h3 {
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.use-case-tile p {
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.55;
}
.use-case-cta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--terracotta);
}

.use-cases-disclaimer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.45);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ===== COST COMPARISON ===== */
.cost-compare { padding: var(--space-xl) 0; background: var(--cream); }
.cost-intro {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.cost-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 4rem;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.cost-vs {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--terracotta);
  text-align: center;
}

.cost-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(42, 38, 32, 0.08);
}
.cost-card.cost-pure {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  position: relative;
}

.cost-card-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 1rem;
}
.cost-pure .cost-card-label { color: var(--terracotta); }

.cost-card-price {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}
.cost-pure .cost-card-price { color: var(--cream); }
.cost-card-price .cost-unit {
  font-size: 1rem;
  font-style: italic;
  color: var(--stone);
  margin-left: 0.2rem;
  letter-spacing: 0;
}
.cost-pure .cost-card-price .cost-unit { color: rgba(245, 240, 232, 0.6); }

.cost-card-unit {
  font-size: 0.85rem;
  color: var(--stone);
  margin-bottom: 1.75rem;
  font-style: italic;
  font-family: var(--font-display);
}
.cost-pure .cost-card-unit { color: rgba(245, 240, 232, 0.65); }

.cost-list {
  list-style: none;
  margin-bottom: 1.5rem;
}
.cost-list li {
  font-size: 0.93rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(42, 38, 32, 0.08);
}
.cost-list li:last-child { border-bottom: none; padding-top: 0.85rem; }
.cost-pure .cost-list li { border-bottom-color: rgba(245, 240, 232, 0.12); color: rgba(245, 240, 232, 0.85); }
.cost-pure .cost-list strong { color: var(--cream); }

.cost-cta { margin-top: 0.5rem; }
.cost-pure .cost-cta { background: var(--terracotta); color: var(--cream); }
.cost-pure .cost-cta:hover { background: var(--accent-deep); }

.cost-fineprint {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--stone);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== HSA / FSA ===== */
.hsa { padding: 0 0 var(--space-xl); background: var(--cream); }
.hsa-card {
  max-width: 980px;
  margin: 0 auto;
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  border: 1px solid rgba(42, 38, 32, 0.08);
}
.hsa-content { max-width: 640px; }
.hsa-content h2 { margin-bottom: 1.25rem; font-size: clamp(1.5rem, 3vw, 2.25rem); }
.hsa-content p { font-size: 1.02rem; margin-bottom: 2rem; }

/* Use-case responsive */
@media (max-width: 1100px) {
  .use-case-grid { grid-template-columns: repeat(3, 1fr); }
  .use-case-grid .use-case-tile:nth-child(4),
  .use-case-grid .use-case-tile:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 768px) {
  .use-case-grid { grid-template-columns: repeat(2, 1fr); }
  .cost-grid { grid-template-columns: 1fr; }
  .cost-vs { padding: 0.5rem 0; }
  .hsa-card { padding: 2.5rem 1.75rem; }
}
@media (max-width: 480px) {
  .use-case-grid { grid-template-columns: 1fr; }
}

/* ===== ABOUT PAGE ===== */
.about-founder {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.about-founder-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.about-lead { font-size: 1.15rem; color: var(--ink); margin-bottom: 1.5rem; line-height: 1.55; }
.about-founder-text p { margin-bottom: 1.25rem; }

.about-founder-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(42, 38, 32, 0.2);
}
.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--clay), var(--terracotta) 60%, var(--moss-deep));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-align: center;
  padding: 2rem;
}
.about-img-placeholder span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}
.about-img-placeholder small {
  font-size: 0.78rem;
  margin-top: 0.5rem;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .about-founder { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ===== LEGAL DOC PAGES (Safety, Terms) ===== */
.legal-doc {
  max-width: 760px;
  margin: 0 auto;
}
.legal-doc h2 {
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
}
.legal-doc ul {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
}
.legal-doc ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--stone);
}
.legal-doc strong { color: var(--ink); }
.legal-doc em { font-style: italic; color: var(--terracotta); }

/* ===== FORM STEP INDICATOR ===== */
.form-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}
.form-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--stone);
  opacity: 0.55;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.form-step.active { opacity: 1; color: var(--ink); }
.form-step.complete { opacity: 1; color: var(--moss-deep); }
.form-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(42, 38, 32, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--stone);
  transition: background 0.3s ease, color 0.3s ease;
}
.form-step.active .form-step-num {
  background: var(--ink);
  color: var(--cream);
}
.form-step.complete .form-step-num {
  background: var(--moss-deep);
  color: var(--cream);
}
.form-step.complete .form-step-num::after { content: '✓'; }
.form-step.complete .form-step-num > span { display: none; }
.form-step-line {
  flex: 1;
  height: 1px;
  background: rgba(42, 38, 32, 0.15);
  max-width: 80px;
}

/* ===== STICKY MOBILE CTA BAR ===== */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  gap: 0.75rem;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0));
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(42, 38, 32, 0.12);
  box-shadow: 0 -8px 24px -10px rgba(42, 38, 32, 0.18);
  transform: translateY(120%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mobile-cta-bar.is-visible { transform: translateY(0); }
.mobile-cta-bar .btn { flex: 1; min-height: 50px; padding: 0.85rem 1rem; font-size: 0.95rem; }
.mobile-cta-bar .btn-call { flex: 0 0 50px; padding: 0 0.75rem; }
.mobile-cta-bar .btn-call svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 80px; } /* room for bar */
}

/* ===== TRUST MICRO-ICONS (form submit area) ===== */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--stone-muted);
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.trust-row svg {
  width: 14px; height: 14px;
  stroke: var(--moss-deep);
  fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ===== RENTAL LENGTH CARD PICKER (book.html step 1) ===== */
.rental-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin: 1.25rem 0 0;
}
.rental-card {
  position: relative;
  display: block;
  cursor: pointer;
  border-radius: var(--radius-lg);
  background: var(--cream-warm);
  border: 2px solid transparent;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.rental-card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(26,31,26,0.08); }
.rental-card input[type="radio"] {
  position: absolute;
  opacity: 0; pointer-events: none;
}
.rental-card input[type="radio"]:focus-visible ~ .rental-card-inner {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
  border-radius: var(--radius-md);
}
.rental-card:has(input:checked) {
  border-color: var(--terracotta);
  background: #fff;
  box-shadow: 0 8px 22px rgba(184,112,79,0.18);
}
.rental-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.rental-card-duration {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
}
.rental-card-sub {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--stone-muted);
  margin-bottom: 0.5rem;
}
.rental-card-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--terracotta);
  line-height: 1;
}
.rental-card-price sup {
  font-size: 0.55em;
  vertical-align: super;
  margin-right: 0.1em;
}
.rental-card-unit {
  font-size: 0.6em;
  color: var(--stone-muted);
  font-weight: 400;
  margin-left: 0.2em;
}
.rental-card-save {
  font-size: 0.72rem;
  color: var(--moss-deep);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 0.35rem;
}
.rental-card-tag {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}
.rental-card-featured {
  background: var(--ink);
  border-color: var(--ink);
}
.rental-card-featured .rental-card-duration,
.rental-card-featured .rental-card-sub { color: var(--cream); }
.rental-card-featured .rental-card-sub { opacity: 0.75; }
.rental-card-featured .rental-card-price { color: #fff; }
.rental-card-featured .rental-card-unit { color: var(--cream); opacity: 0.65; }
.rental-card-featured .rental-card-save { color: #d4b48f; }
.rental-card-featured:has(input:checked) {
  border-color: var(--terracotta);
  background: #fff;
  box-shadow: 0 8px 22px rgba(193,107,76,0.18);
}
.rental-card-featured:has(input:checked) .rental-card-duration { color: var(--ink); }
.rental-card-featured:has(input:checked) .rental-card-sub { color: var(--ink); opacity: 0.7; }
.rental-card-featured:has(input:checked) .rental-card-price { color: var(--terracotta); }
.rental-card-featured:has(input:checked) .rental-card-unit { color: var(--ink); opacity: 0.55; }
.rental-card-featured:has(input:checked) .rental-card-save { color: var(--ink); opacity: 0.7; }
@media (max-width: 720px) {
  .rental-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .rental-card-grid { grid-template-columns: 1fr; }
}

/* 3-column form row (used for City/State/ZIP on book.html step 1) */
.form-row.form-row-3 { grid-template-columns: 1fr 0.6fr 0.9fr; }
@media (max-width: 600px) {
  .form-row.form-row-3 { grid-template-columns: 1fr; }
}

/* ===== SAFETY SCREENING YES/NO PILLS (book.html step 2) ===== */
.safety-question {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(26,31,26,0.08);
}
.safety-question:last-of-type { border-bottom: none; }
.safety-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 0.85rem;
}
.yesno-group {
  display: inline-flex;
  gap: 0.5rem;
}
.yesno-pill {
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.yesno-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.yesno-pill span {
  display: inline-block;
  padding: 0.55rem 1.5rem;
  border-radius: 999px;
  background: var(--cream-warm);
  border: 1.5px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--stone-muted);
  transition: all 180ms ease;
  min-width: 70px;
  text-align: center;
}
.yesno-pill:hover span { color: var(--ink); }
.yesno-pill input:checked + span {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.yesno-pill input:focus-visible + span {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: var(--space-xl) 0; background: var(--cream-warm); }
.testimonials .section-header { margin-bottom: 3rem; }
.testimonials-stat {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.testimonials-stat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--terracotta);
  line-height: 1;
  letter-spacing: -0.03em;
}
.testimonials-stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--stone);
  font-weight: 600;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--cream);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(42, 38, 32, 0.08);
  display: flex;
  flex-direction: column;
}
.testimonial-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 1.25rem;
  align-self: flex-start;
  padding: 0.3rem 0.65rem;
  background: rgba(184, 112, 79, 0.1);
  border-radius: 100px;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.testimonial-card blockquote::before { content: '“'; color: var(--terracotta); font-size: 1.2em; line-height: 0; vertical-align: -0.15em; margin-right: 0.05em; }
.testimonial-card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clay), var(--terracotta));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
}
.testimonial-card-meta strong { color: var(--ink); display: block; font-weight: 600; }
.testimonial-card-meta span { color: var(--stone-muted); font-size: 0.8rem; }
.testimonials-placeholder-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--stone-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 968px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== GUARANTEE / RISK REVERSAL ===== */
.guarantee {
  padding: var(--space-lg) 0;
  background: var(--cream);
}
.guarantee-card {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--cream-warm);
  border: 1px solid rgba(184, 112, 79, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
}
.guarantee-badge {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.guarantee-content h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.guarantee-content p { font-size: 1rem; margin-bottom: 0; }
@media (max-width: 640px) {
  .guarantee-card { grid-template-columns: 1fr; text-align: center; padding: 2rem 1.5rem; }
  .guarantee-badge { margin: 0 auto; }
}

/* ===== EMAIL CAPTURE / LEAD MAGNET ===== */
.lead-magnet {
  padding: var(--space-lg) 0 var(--space-xl);
  background: var(--cream);
}
.lead-magnet-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
}
.lead-magnet-card h3 {
  color: var(--cream);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}
.lead-magnet-card p {
  color: rgba(245, 240, 232, 0.78);
  margin-bottom: 2rem;
  font-size: 1rem;
}
.lead-magnet-form {
  display: flex;
  gap: 0.6rem;
  max-width: 460px;
  margin: 0 auto;
}
.lead-magnet-form input {
  flex: 1;
  padding: 0.95rem 1.15rem;
  background: rgba(245, 240, 232, 0.08);
  border: 1px solid rgba(245, 240, 232, 0.2);
  border-radius: 100px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
}
.lead-magnet-form input::placeholder { color: rgba(245, 240, 232, 0.45); }
.lead-magnet-form input:focus { outline: none; border-color: var(--terracotta); background: rgba(245, 240, 232, 0.12); }
.lead-magnet-form .btn { background: var(--terracotta); color: var(--cream); border-color: var(--terracotta); }
.lead-magnet-form .btn:hover { background: var(--terracotta-deep); }
.lead-magnet-result {
  margin-top: 1rem;
  min-height: 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.85);
}
@media (max-width: 540px) {
  .lead-magnet-form { flex-direction: column; }
}

/* ===== USE-CASE LANDING PAGE ===== */
.uc-hero {
  padding: 8rem 0 3rem;
  background: var(--cream-warm);
}
.uc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.uc-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.uc-hero-lead {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: var(--ink);
  line-height: 1.55;
}
.uc-hero-img {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-warm);
  box-shadow: 0 30px 60px -20px rgba(42, 38, 32, 0.2);
}
.uc-hero-img img { width: 100%; height: 100%; object-fit: contain; display: block; }

.uc-section { padding: var(--space-xl) 0; }
.uc-section.alt { background: var(--cream-warm); }
.uc-section.dark { background: var(--ink); color: var(--cream); }
.uc-section.dark h2,
.uc-section.dark h3 { color: var(--cream); }
.uc-section.dark p { color: rgba(245, 240, 232, 0.82); }
.uc-section.dark .eyebrow { color: var(--terracotta); }

.uc-protocol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.uc-protocol-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(42, 38, 32, 0.08);
}
.uc-protocol-card .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.uc-protocol-card .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 0.5rem;
}
.uc-protocol-card p { font-size: 0.93rem; }

@media (max-width: 968px) {
  .uc-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .uc-hero-img { order: -1; aspect-ratio: 16 / 10; }
  .uc-protocol { grid-template-columns: 1fr; }
}

/* ===== CHAMBERS PAGE — tighter section spacing =====
   The default --space-xl section padding makes the chambers page feel sparse
   because the page-header, chamber-feature, and gallery stack three full
   section-paddings on top of each other. Override per-section here. */
.chambers-header { padding-bottom: 2rem; }
.chambers-feature-tight { padding: 3rem 0 3rem; }
.chambers-gallery-tight { padding: 2rem 0 4rem; }
.chambers-gallery-tight .gallery-header { margin-bottom: 2.5rem; }
@media (max-width: 640px) {
  .chambers-header { padding-bottom: 1.25rem; }
  .chambers-feature-tight { padding: 2rem 0; }
  .chambers-gallery-tight { padding: 1.5rem 0 2.5rem; }
  .chambers-gallery-tight .gallery-header { margin-bottom: 1.5rem; }
}
