/* Ola Lux Massage — Black / Metallic Gold / Cream */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --black: #0D0D0D;
  --charcoal: #1A1A1A;
  --charcoal-soft: #2A2A2A;
  --gold: #C5A059;
  --gold-alt: #C4A35A;
  --gold-light: #D4B872;
  --gold-dark: #A88B3F;
  --cream: #F2EDE4;
  --cream-alt: #FAF7F2;
  --cream-dark: #E8E1D6;
  --ink: #141414;
  --ink-muted: #5C5A56;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(13, 13, 13, 0.08);
  --shadow-lg: 0 12px 40px rgba(13, 13, 13, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --max: 1100px;
  --nav-h: 76px;
  --sticky-book-h: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: var(--sticky-book-h);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; }
a:hover { color: var(--gold); }
ul { list-style: none; }

h1, h2, h3, .logo-mark {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

/* —— Skip link —— */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--black);
  color: var(--gold-light);
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* —— Header / Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 237, 228, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  flex-shrink: 0;
  text-decoration: none;
}
.logo:hover { color: var(--ink); opacity: 0.92; }
.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(197, 160, 89, 0.35);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-mark {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.logo-sub {
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
  font-size: 0.85rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.25rem 0;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}
.nav-links a[aria-current="page"] {
  border-bottom: 2px solid var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black);
  border-color: var(--gold-light);
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--black);
  border-color: var(--gold-light);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(242, 237, 228, 0.55);
}
.btn-outline-light:hover {
  background: rgba(242, 237, 228, 0.1);
  color: var(--white);
  border-color: var(--gold);
}
.btn-lg { padding: 0.9rem 1.75rem; font-size: 1.05rem; }
.btn-nav {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* —— Hero —— */
.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
  background: var(--black);
  color: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 25%, rgba(197, 160, 89, 0.22), transparent 60%),
    radial-gradient(ellipse 45% 40% at 15% 85%, rgba(197, 160, 89, 0.1), transparent 55%),
    linear-gradient(165deg, var(--black) 0%, var(--charcoal) 55%, #121212 100%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(197, 160, 89, 0.12);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(197, 160, 89, 0.4);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.1rem);
  font-weight: 600;
  color: var(--cream-alt);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.hero-lead {
  font-size: 1.1rem;
  color: rgba(242, 237, 228, 0.78);
  max-width: 36rem;
  margin-bottom: 1.75rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-meta {
  font-size: 0.9rem;
  color: rgba(242, 237, 228, 0.65);
}
.hero-meta strong { color: var(--gold-light); }

.hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(145deg, var(--charcoal) 0%, var(--black) 50%, #0a0a0a 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1.75rem;
  border: 1px solid rgba(197, 160, 89, 0.25);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 28%, rgba(197, 160, 89, 0.28), transparent 48%),
    radial-gradient(circle at 78% 72%, rgba(242, 237, 228, 0.06), transparent 42%);
}

.hero-logo {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 1px rgba(197, 160, 89, 0.4), 0 8px 28px rgba(0,0,0,0.35);
  object-fit: cover;
}

.hero-visual-caption {
  position: relative;
  color: var(--cream);
  z-index: 1;
}
.hero-visual-caption span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}
.hero-visual-caption strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.hero .btn-outline {
  color: var(--cream);
  border-color: rgba(242, 237, 228, 0.55);
}
.hero .btn-outline:hover {
  background: rgba(242, 237, 228, 0.1);
  color: var(--white);
  border-color: var(--gold);
}

/* —— Sections —— */
section { padding: 3.5rem 0; }
.section-alt { background: var(--cream-alt); }
.section-dark,
.section-teal {
  background: var(--black);
  color: var(--cream);
}
.section-dark h2,
.section-dark h3,
.section-teal h2,
.section-teal h3 { color: var(--cream-alt); }
.section-dark .muted,
.section-teal .muted { color: rgba(242, 237, 228, 0.7); }

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  color: var(--ink);
  margin-bottom: 0.65rem;
}
.section-head p { color: var(--ink-muted); }
.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

/* —— Cards —— */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--cream-alt);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(197, 160, 89, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold-dark);
}
.card h3 {
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.card p { color: var(--ink-muted); font-size: 0.95rem; flex: 1; }
.card .price {
  margin-top: 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-display);
}
.card .price span {
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font);
  color: var(--ink-muted);
}
.card-footer { margin-top: 1.25rem; }

.svc-thumb {
  height: 120px;
  border-radius: 10px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--charcoal), var(--black));
  position: relative;
  overflow: hidden;
}
.svc-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(197,160,89,0.45), transparent 55%);
}
.svc-thumb.gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--charcoal));
}
.svc-thumb.soft {
  background: linear-gradient(135deg, #3a342c, var(--charcoal));
}

/* —— Trust strip —— */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  text-align: center;
}
.trust-item {
  padding: 1.25rem 1rem;
  background: var(--cream-alt);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
}
.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.trust-item span {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* —— Steps —— */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.5rem 1.25rem 1.5rem 1.5rem;
  background: var(--cream-alt);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.step h3 {
  color: var(--ink);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.step p { color: var(--ink-muted); font-size: 0.95rem; }

/* —— Offer banner —— */
.offer-banner {
  background: linear-gradient(120deg, var(--charcoal), var(--black));
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(197, 160, 89, 0.28);
}
.offer-banner h2 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
  color: var(--cream-alt);
}
.offer-banner p {
  color: rgba(242, 237, 228, 0.78);
  max-width: 28rem;
  font-size: 0.95rem;
}
.offer-tag {
  display: inline-block;
  background: rgba(197, 160, 89, 0.2);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

/* —— Page hero (inner pages) —— */
.page-hero {
  padding: 2.5rem 0 2rem;
  background:
    linear-gradient(165deg, var(--charcoal) 0%, var(--black) 100%);
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  color: var(--cream);
}
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  color: var(--cream-alt);
  margin-bottom: 0.5rem;
}
.page-hero p {
  color: rgba(242, 237, 228, 0.75);
  max-width: 36rem;
  font-size: 1.05rem;
}

/* —— Content blocks —— */
.prose { max-width: 42rem; }
.prose h2 {
  color: var(--ink);
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1rem; color: var(--ink-muted); }
.prose ul {
  margin: 0 0 1.25rem 1.25rem;
  list-style: disc;
  color: var(--ink-muted);
}
.prose li { margin-bottom: 0.4rem; }
.prose strong { color: var(--ink); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.map-placeholder {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(ellipse at 45% 55%, rgba(197,160,89,0.28) 0%, transparent 55%),
    linear-gradient(160deg, var(--charcoal), var(--black));
  border: 1px solid rgba(197, 160, 89, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.map-placeholder strong {
  color: var(--cream-alt);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
}
.map-placeholder span {
  color: rgba(242, 237, 228, 0.7);
  font-size: 0.9rem;
  max-width: 16rem;
}

/* —— FAQ —— */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--cream-alt);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--gold-dark);
  font-weight: 400;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 1.25rem 1.15rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* —— Contact form —— */
.form-card {
  background: var(--cream-alt);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--cream);
  color: var(--ink);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}
.form-note {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 0.75rem;
}
.placeholder-chip {
  display: inline-block;
  background: #fff3cd;
  color: #856404;
  font-family: ui-monospace, monospace;
  font-size: 0.85rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  border: 1px dashed #e0c36a;
}
.contact-info-list { margin-top: 1.5rem; }
.contact-info-list li {
  margin-bottom: 1rem;
  color: var(--ink-muted);
}
.contact-info-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

/* —— CTA band —— */
.cta-band {
  text-align: center;
  padding: 3rem 1.5rem;
}
.cta-band h2 {
  color: var(--ink);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.cta-band p {
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

/* —— Footer —— */
.site-footer {
  background: var(--black);
  color: rgba(242, 237, 228, 0.78);
  padding: 3rem 0 2rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .logo { color: var(--cream); }
.footer-brand .logo-mark { color: var(--cream-alt); }
.footer-brand .logo-sub { color: var(--gold-light); }
.footer-brand .logo-img {
  box-shadow: 0 0 0 1px rgba(197, 160, 89, 0.45);
}
.footer-brand p {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  max-width: 22rem;
}
.footer-col h4 {
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  font-family: var(--font);
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: rgba(242, 237, 228, 0.78);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(242, 237, 228, 0.7); }
.footer-bottom a:hover { color: var(--gold-light); }

/* —— Mobile sticky Book —— */
.sticky-book {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(13, 13, 13, 0.97);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  border-top: 1px solid rgba(197, 160, 89, 0.25);
}
.sticky-book span {
  color: rgba(242, 237, 228, 0.85);
  font-size: 0.85rem;
  display: none;
}
.sticky-book .btn {
  flex: 1;
  max-width: 320px;
}

/* —— Pricing table —— */
.pricing-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row h3 {
  color: var(--ink);
  font-size: 1.15rem;
}
.pricing-row .desc {
  color: var(--ink-muted);
  font-size: 0.9rem;
  margin-top: 0.2rem;
}
.pricing-row .amt {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  font-family: var(--font-display);
}

.panel {
  background: var(--cream-alt);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
}

.muted { color: var(--ink-muted); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

.brand-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}

/* —— Responsive —— */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual {
    aspect-ratio: 16 / 10;
    max-height: 280px;
  }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .nav-toggle { display: inline-flex; }
  .logo-text { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: var(--shadow);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--cream-dark);
  }
  .nav-links .btn-nav {
    margin-top: 0.75rem;
    text-align: center;
    border-bottom: none;
  }
  .sticky-book span { display: none; }
}

@media (min-width: 640px) {
  .sticky-book span { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
