/* ============================================================
   Löyly Finnish Saunas — styles
   Palette drawn from the brand: falu red badge, cream paper,
   birch wood, warm charcoal.
   ============================================================ */

:root {
  --cream: #faf6ec;
  --paper: #f4eddd;
  --bone: #ece3cf;
  --birch: #c9ad85;
  --birch-soft: #e3d3b8;
  --falu: #8c2b1e;
  --falu-deep: #641d13;
  --ember: #b8432f;
  --charcoal: #26211b;
  --smoke: #57503f;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--falu); color: var(--cream); }

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

/* ---------- grain overlay for warmth ---------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
  mix-blend-mode: multiply;
  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' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- typography ---------- */
h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--falu);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--falu);
  opacity: 0.6;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s;
  cursor: pointer;
  border: none;
}

.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--falu);
  color: var(--cream);
  box-shadow: 0 10px 30px -12px rgba(100, 29, 19, 0.55);
}
.btn-primary:hover {
  background: var(--falu-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -14px rgba(100, 29, 19, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  box-shadow: inset 0 0 0 1.5px rgba(38, 33, 27, 0.35);
}
.btn-ghost:hover {
  box-shadow: inset 0 0 0 1.5px var(--charcoal);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--cream);
  color: var(--falu-deep);
}
.btn-light:hover { transform: translateY(-2px); background: #fff; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  padding: 1.1rem 0;
}

.nav.scrolled {
  background: rgba(250, 246, 236, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(38, 33, 27, 0.08);
  padding: 0.6rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: transform 0.5s var(--ease);
}
.brand:hover img { transform: rotate(8deg); }

.brand-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--charcoal);
}
.brand-name span { color: var(--falu); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--smoke);
  position: relative;
  transition: color 0.3s;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1.5px;
  background: var(--falu);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--charcoal); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }

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

/* light nav text while floating over the hero photo */
.nav-overlay:not(.scrolled) .brand-name,
.nav-overlay:not(.scrolled) .brand-name span,
.nav-overlay:not(.scrolled) .nav-toggle { color: var(--cream); }
.nav-overlay:not(.scrolled) .nav-links a:not(.btn) { color: rgba(250, 246, 236, 0.85); }
.nav-overlay:not(.scrolled) .nav-links a:not(.btn):hover { color: var(--cream); }
.nav-overlay:not(.scrolled) .nav-links a:not(.btn)::after { background: var(--cream); }

.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--cream);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  animation: kenburns 26s var(--ease) both;
  transform-origin: center;
}

@keyframes kenburns {
  from { transform: scale(1.14) translateY(-1.5%); }
  to   { transform: scale(1.0) translateY(0); }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(20, 14, 10, 0.42) 0%, rgba(20, 14, 10, 0.05) 34%, rgba(20, 14, 10, 0.18) 60%, rgba(24, 15, 10, 0.82) 100%);
}

.hero-inner {
  padding-bottom: clamp(3rem, 7vh, 5.5rem);
  padding-top: 8rem;
}

.hero-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-kicker::before {
  content: "";
  width: 2.4rem; height: 1px;
  background: currentColor; opacity: 0.7;
}

.hero h1 {
  font-size: clamp(2.9rem, 7.2vw, 6.2rem);
  max-width: 12ch;
  margin-bottom: 1.6rem;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--birch-soft);
}

.hero-sub {
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  max-width: 44ch;
  opacity: 0.88;
  margin-bottom: 2.2rem;
  font-weight: 400;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

.hero .btn-ghost {
  color: var(--cream);
  box-shadow: inset 0 0 0 1.5px rgba(250, 246, 236, 0.5);
}
.hero .btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--cream); }

/* steam wisps */
.steam {
  position: absolute;
  bottom: -4vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: rise 11s linear infinite;
  filter: blur(14px);
}
.steam svg { display: block; }
.steam-1 { left: 12%; animation-delay: 0s; }
.steam-2 { left: 46%; animation-delay: 3.5s; }
.steam-3 { left: 74%; animation-delay: 7s; }

@keyframes rise {
  0%   { transform: translateY(12vh) scale(0.7) rotate(0deg); opacity: 0; }
  18%  { opacity: 0.5; }
  60%  { opacity: 0.28; }
  100% { transform: translateY(-92vh) scale(1.5) rotate(9deg); opacity: 0; }
}

.hero-scroll {
  position: absolute;
  right: clamp(1.2rem, 4vw, 3rem);
  bottom: clamp(3rem, 7vh, 5.5rem);
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.75;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 3rem;
  background: currentColor;
  animation: drip 2.2s var(--ease) infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--falu);
  color: var(--cream);
  overflow: hidden;
  padding: 1.05rem 0;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 36s linear infinite;
  will-change: transform;
}

.marquee span {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-style: italic;
  letter-spacing: 0.06em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
.marquee span::after { content: "❋"; font-style: normal; font-size: 0.8em; opacity: 0.7; }

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

/* ---------- sections ---------- */
section { position: relative; }

.section-pad { padding: clamp(5rem, 11vh, 8.5rem) 0; }

/* intro / what is löyly */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.intro-grid h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin-top: 1.2rem;
}

.intro-grid h2 em { font-style: italic; color: var(--falu); }

.intro-copy p {
  font-size: 1.08rem;
  color: var(--smoke);
  margin-bottom: 1.35rem;
  max-width: 56ch;
}

.intro-copy p strong { color: var(--charcoal); font-weight: 600; }

.pron {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--falu);
  display: inline-block;
  margin-bottom: 1.4rem;
}

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(38, 33, 27, 0.14);
  margin-top: clamp(3rem, 7vh, 5rem);
}

.stat {
  padding: 2rem 1.5rem 0.5rem;
  border-left: 1px solid rgba(38, 33, 27, 0.14);
}
.stat:first-child { border-left: none; padding-left: 0; }

.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--falu);
  line-height: 1;
}
.stat-num sup { font-size: 0.45em; }

.stat-label {
  font-size: 0.85rem;
  color: var(--smoke);
  margin-top: 0.5rem;
  max-width: 22ch;
}

/* ---------- ritual ---------- */
.ritual { background: var(--charcoal); color: var(--cream); }

.ritual .eyebrow { color: var(--birch); }
.ritual .eyebrow::before { background: var(--birch); }

.ritual-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 7vh, 5rem);
}

.ritual-head h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); margin-top: 1.2rem; }
.ritual-head p { max-width: 38ch; color: rgba(250, 246, 236, 0.66); }

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.step {
  border-top: 1px solid rgba(250, 246, 236, 0.2);
  padding-top: 1.6rem;
  transition: border-color 0.4s;
}
.step:hover { border-color: var(--ember); }

.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--birch);
  display: block;
  margin-bottom: 1.1rem;
}

.step h3 { font-size: 1.65rem; margin-bottom: 0.8rem; }
.step h3 span { color: var(--birch); font-style: italic; font-weight: 400; font-size: 0.72em; margin-left: 0.4rem; }

.step p { color: rgba(250, 246, 236, 0.66); font-size: 0.98rem; }

.step-temp {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
}

/* ---------- benefits ---------- */
.benefits-head { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: clamp(3rem, 7vh, 4.5rem); }
.benefits-head h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); margin-top: 1.2rem; }
.benefits-head .eyebrow { justify-content: center; }
.benefits-head .eyebrow::before { display: none; }
.benefits-head p { color: var(--smoke); margin-top: 1.2rem; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.benefit {
  background: var(--paper);
  border: 1px solid rgba(38, 33, 27, 0.07);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.3s;
}

.benefit:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 24px 44px -22px rgba(38, 33, 27, 0.28);
}

.benefit-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(140, 43, 30, 0.09);
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
  color: var(--falu);
}

.benefit h3 { font-size: 1.22rem; margin-bottom: 0.6rem; }
.benefit p { font-size: 0.92rem; color: var(--smoke); }

.benefits-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--smoke);
  opacity: 0.75;
  margin-top: 2.2rem;
}

/* ---------- pricing ---------- */
.pricing { background: var(--paper); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
  margin-top: clamp(3rem, 6vh, 4.5rem);
}

.price-card {
  background: var(--cream);
  border: 1px solid rgba(38, 33, 27, 0.1);
  border-radius: 22px;
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 55px -28px rgba(38, 33, 27, 0.3);
}

.price-card.featured {
  background: var(--falu);
  color: var(--cream);
  border-color: var(--falu-deep);
  position: relative;
  overflow: hidden;
}

.price-card.featured::after {
  content: "";
  position: absolute;
  top: -40%; right: -25%;
  width: 70%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 246, 236, 0.12), transparent 70%);
}

.card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--falu);
  margin-bottom: 1.1rem;
}
.price-card.featured .card-tag { color: var(--birch-soft); }

.price-card h3 { font-size: 1.6rem; margin-bottom: 0.4rem; }

.price-line {
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 1.1rem 0 0.3rem;
}
.price-line .unit { font-size: 0.95rem; font-family: var(--sans); color: var(--smoke); font-weight: 500; }
.price-card.featured .price-line .unit { color: rgba(250, 246, 236, 0.75); }

.price-desc { font-size: 0.94rem; color: var(--smoke); margin-bottom: 1.4rem; }
.price-card.featured .price-desc { color: rgba(250, 246, 236, 0.82); }

.price-list {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.price-list li {
  font-size: 0.92rem;
  padding: 0.5rem 0;
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  border-bottom: 1px dashed rgba(38, 33, 27, 0.12);
}
.price-card.featured .price-list li { border-color: rgba(250, 246, 236, 0.2); }

.price-list li::before {
  content: "✦";
  color: var(--falu);
  font-size: 0.7em;
  flex-shrink: 0;
}
.price-card.featured .price-list li::before { color: var(--birch-soft); }

.price-card .btn { justify-content: center; width: 100%; }

.pricing-fineprint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--smoke);
  margin-top: 2rem;
}
.pricing-fineprint a { color: var(--falu); font-weight: 600; }

/* ---------- visit ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.visit-photo {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3.4;
  box-shadow: 0 34px 70px -30px rgba(38, 33, 27, 0.45);
}

.visit-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.visit-photo:hover img { transform: scale(1.05); }

.visit-photo figcaption {
  position: absolute;
  left: 1.1rem; bottom: 1.1rem;
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--charcoal);
}

.visit-copy h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); margin-top: 1.2rem; margin-bottom: 1.4rem; }
.visit-copy h2 em { font-style: italic; color: var(--falu); }
.visit-copy > p { color: var(--smoke); max-width: 50ch; margin-bottom: 1.8rem; }

.visit-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 2rem;
  margin-bottom: 2.2rem;
}

.vd h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--falu);
  margin-bottom: 0.45rem;
}

.vd p, .vd a { font-size: 0.97rem; color: var(--charcoal); text-decoration: none; }
.vd a:hover { color: var(--falu); }
.vd .sub { color: var(--smoke); font-size: 0.88rem; }

/* ---------- region note ---------- */
.region-note {
  margin-top: clamp(2.5rem, 6vh, 4rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(38, 33, 27, 0.14);
  font-size: 0.92rem;
  color: var(--smoke);
  text-align: center;
  max-width: 60ch;
  margin-inline: auto;
}

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }

.faq-list {
  max-width: 760px;
  margin-inline: auto;
}

.faq-list details {
  border-bottom: 1px solid rgba(38, 33, 27, 0.14);
}

.faq-list summary {
  font-family: var(--serif);
  font-size: 1.22rem;
  padding: 1.4rem 2.6rem 1.4rem 0.2rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.3s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--falu); }

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--falu);
  transition: transform 0.35s var(--ease);
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details[open] summary { color: var(--falu); }

.faq-list details p {
  padding: 0 0.2rem 1.5rem;
  color: var(--smoke);
  font-size: 0.98rem;
  max-width: 62ch;
}
.faq-list details p a { color: var(--falu); font-weight: 600; }

/* ---------- final CTA ---------- */
.final {
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final::before {
  content: "";
  position: absolute;
  left: 50%; bottom: -34%;
  width: min(720px, 90vw); aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 67, 47, 0.32), transparent 65%);
  pointer-events: none;
}

.final .wrap { position: relative; }

.final-fin {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--birch);
  display: block;
  margin-bottom: 1.2rem;
}

.final h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  max-width: 18ch;
  margin-inline: auto;
  margin-bottom: 1.3rem;
}

.final p {
  color: rgba(250, 246, 236, 0.7);
  max-width: 46ch;
  margin-inline: auto;
  margin-bottom: 2.4rem;
}

.final-ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.9rem; }

.final .btn-ghost { color: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(250, 246, 236, 0.45); }
.final .btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--cream); }

/* ---------- footer ---------- */
footer {
  background: var(--charcoal);
  color: rgba(250, 246, 236, 0.6);
  border-top: 1px solid rgba(250, 246, 236, 0.1);
  padding: 2.6rem 0;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.footer-brand { display: flex; align-items: center; gap: 0.7rem; }
.footer-brand img { width: 38px; height: 38px; border-radius: 50%; }
.footer-brand span { font-family: var(--serif); font-size: 1.05rem; color: var(--cream); }

.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-links a { text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--cream); }

/* ---------- reveal animations (only when JS is running) ---------- */
body.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
body.js .reveal.in { opacity: 1; transform: none; }

/* ---------- book page ---------- */
.book-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.book-hero {
  padding: 8.5rem 0 3rem;
  text-align: center;
}

.book-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-top: 1.2rem; margin-bottom: 1rem; }
.book-hero h1 em { font-style: italic; color: var(--falu); }
.book-hero p { color: var(--smoke); max-width: 52ch; margin-inline: auto; }
.book-hero .eyebrow { justify-content: center; }
.book-hero .eyebrow::before { display: none; }

.book-frame-wrap {
  width: min(920px, calc(100% - 2rem));
  margin: 2.5rem auto 4rem;
  background: #fff;
  border: 1px solid rgba(38, 33, 27, 0.1);
  border-radius: 22px;
  box-shadow: 0 30px 60px -30px rgba(38, 33, 27, 0.3);
  overflow: hidden;
  flex: 1;
}

.book-frame-wrap iframe {
  display: block;
  width: 100%;
  min-height: 860px;
  border: 0;
}

.book-fallback {
  text-align: center;
  padding-bottom: 4rem;
  font-size: 0.9rem;
  color: var(--smoke);
}
.book-fallback a { color: var(--falu); font-weight: 600; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .intro-grid, .visit-grid { grid-template-columns: 1fr; }
  .ritual-steps { grid-template-columns: 1fr; gap: 2rem; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .visit-photo { order: 2; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: grid;
    place-items: center;
    background: none;
    border: none;
    width: 44px; height: 44px;
    cursor: pointer;
    color: var(--charcoal);
  }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    padding: 1.6rem;
    gap: 1.3rem;
    box-shadow: 0 24px 40px -20px rgba(38, 33, 27, 0.3);
    align-items: flex-start;
  }
  .hero.nav-contrast { color: var(--cream); }
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: none; padding-left: 0; border-top: 1px solid rgba(38,33,27,0.12); }
  .stat:first-child { border-top: none; }
  .stats { border-top: none; }
  .benefit-grid { grid-template-columns: 1fr; }
  .visit-details { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img { animation: none; }
  .steam { display: none; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
