/* =========================================================
   North Kerry Salt Room — shared stylesheet
   Design tokens, components, and responsive layout
   ========================================================= */

:root {
  /* Colour palette — logo-led (sampled from images/profile.jpg) */
  /* ink — heading & body text scale (soft plum-black) */
  --ink:        #2a2230;
  --ink-soft:   #4f4458;
  --ink-mute:   #7a6c80;

  /* rose — primary CTA family (replaces sienna) */
  --rose:       #a85d72;
  --rose-deep:  #8a4a5d;
  --rose-soft:  #e8c4cf;
  --rose-glow:  #f3d8df;

  /* lavender — secondary accent (replaces sage) */
  --lavender:        #9b85a8;
  --lavender-soft:   #d4c4d8;
  --lavender-pale:   #ece2ee;

  /* peach — warm accent */
  --peach:           #d99e8a;
  --peach-soft:      #eec3b3;

  /* mint — tertiary accent (sampled from profile.jpg bottom-right) */
  --mint:            #9fc8be;
  --mint-soft:       #cae0d8;
  --bg-mint:         #e2eeea;

  /* background tints */
  --white:      #ffffff;
  --bg-cream:   #fbf3ec;
  --bg-blush:   #f5dde0;
  --bg-rose:    #eccccd;
  --bg-lavender: #ece2ee;

  /* plum — dark anchor for featured card + footer */
  --plum:        #3a2434;
  --plum-deep:   #1f1218;

  /* hero gradient stops (4-corner blend, mirrors the logo) */
  --grad-lavender: #d8c4d8;
  --grad-pink:     #ecc4cf;
  --grad-peach:    #f0c8b8;
  --grad-mint:     #c8dcd0;

  /* Type & spacing */
  --container: 1180px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 12px -6px rgba(58, 36, 52, 0.18);
  --shadow:    0 14px 30px -16px rgba(58, 36, 52, 0.28);
  --shadow-lg: 0 30px 60px -25px rgba(58, 36, 52, 0.4);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* =========================================================
   Web fonts — Cormorant 500 (self-hosted, OFL)
   ========================================================= */

@font-face {
  font-family: "Cormorant";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("fonts/cormorant-500.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant";
  font-weight: 500;
  font-style: italic;
  font-display: swap;
  src: url("fonts/cormorant-500-italic.woff2") format("woff2");
}

/* =========================================================
   Reset & base
   ========================================================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink-soft);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
svg { fill: currentColor; }

a {
  color: var(--rose);
  text-decoration: none;
  transition: color .2s var(--ease);
}
a:hover { color: var(--rose-deep); }

button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1, h2 {
  font-family: "Cormorant", Didot, "Bodoni 72", "Hoefler Text", Georgia, serif;
  font-weight: 500;
}

h3, h4 {
  font-family: Georgia, "Times New Roman", Cambria, serif;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 1.4vw, 1.35rem); }
h4 { font-size: 1rem; }

p { color: var(--ink-soft); }

ul { list-style: none; }

:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   Layout primitives
   ========================================================= */

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

section {
  padding: clamp(64px, 9vw, 110px) 0;
  position: relative;
}

.section-eyebrow {
  display: inline-block;
  font-family: system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}

/* Sections with background images
   ========================================================= */
.section-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.section-bg > .container { position: relative; z-index: 1; }
.section-bg .section-eyebrow { color: rgba(255,255,255,0.7); }
.section-bg h2 { color: var(--white); }
.section-bg p { color: rgba(255,255,255,0.88); margin-bottom: 20px; }
.section-bg p:last-child { margin-bottom: 0; }
.section-bg .section-lede { color: rgba(255,255,255,0.8); }
.section-bg .review-form h3 { color: var(--ink); }
.section-bg .review-form label { color: var(--ink-soft); }
.section-bg .review-form p { color: var(--ink-mute); }
.section-bg .book-side-note { color: rgba(255,255,255,0.6); }
.section-bg .review-text { color: var(--ink); }
.section-bg .review-author { color: var(--ink-soft); }

.section-lede {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--ink-soft);
  max-width: 640px;
  margin-top: 14px;
}

.section-alt { background: var(--bg-cream); }
.section-rose { background: var(--bg-blush); }

/* =========================================================
   Nav
   ========================================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(58, 36, 52, 0.06);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(58, 36, 52, 0.1);
  padding: 12px 0;
}

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

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
  transition: transform .2s var(--ease);
}
.brand-logo:hover { transform: scale(1.02); }
.brand-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--ink-soft);
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 6px;
  transition: color .2s var(--ease), background .2s var(--ease);
}

.nav-links a:hover {
  color: var(--rose);
  background: rgba(168, 93, 114, 0.07);
}

.nav-book {
  background: var(--rose) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 999px;
  font-weight: 600;
  margin-left: 8px;
  box-shadow: 0 6px 14px -6px rgba(168, 93, 114, 0.5);
  transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
}
.nav-book:hover {
  background: var(--rose-deep) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -8px rgba(168, 93, 114, 0.55);
}

.nav-book-alt {
  background: var(--mint) !important;
  box-shadow: 0 6px 14px -6px rgba(159, 200, 190, 0.5) !important;
}
.nav-book-alt:hover {
  background: #82b5a8 !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--ink);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 10px 22px -8px rgba(168, 93, 114, 0.5);
}
.btn-primary:hover {
  background: var(--rose-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -10px rgba(168, 93, 114, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(58, 36, 52, 0.18);
}
.btn-ghost:hover {
  background: rgba(58, 36, 52, 0.06);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--ink);
  background:
    radial-gradient(900px 700px at 0% 0%,   var(--grad-lavender) 0%, transparent 60%),
    radial-gradient(900px 700px at 100% 0%, var(--grad-pink)     0%, transparent 60%),
    radial-gradient(900px 700px at 0% 100%, var(--grad-peach)    0%, transparent 60%),
    radial-gradient(900px 700px at 100% 100%, var(--grad-mint)   0%, transparent 60%),
    linear-gradient(180deg, var(--bg-blush) 0%, var(--bg-cream) 100%);
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), 92%);
  margin-inline: auto;
}

.hero-text { max-width: 680px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(168, 93, 114, 0.2);
  color: var(--rose-deep);
  margin-bottom: 22px;
}

.hero h1 {
  margin-bottom: 22px;
  text-wrap: balance;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose);
  font-weight: 500;
}

.hero p.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}



/* =========================================================
   About
   ========================================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-copy p { margin-bottom: 18px; font-size: 1.05rem; }
.about-copy p:last-child { margin-bottom: 0; }

.about-art {
  position: relative;
  max-width: 460px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.about-art img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-art svg { width: 60%; color: var(--rose-deep); opacity: 0.85; }

/* =========================================================
   Feature / Halotherapy two-column
   ========================================================= */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature.reverse > :first-child { order: 2; }

.feature-copy h2 { margin-bottom: 18px; text-wrap: balance; }
.feature-copy p { font-size: 1.05rem; margin-bottom: 14px; }
.feature-copy p:last-child { margin-bottom: 0; }

.feature-art {
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--lavender-soft), var(--bg-cream));
}
.feature-art svg { width: 55%; color: var(--lavender); opacity: 0.9; }

.feature-art.warm {
  background: linear-gradient(160deg, var(--rose-soft), var(--bg-rose));
}
.feature-art.warm svg { color: var(--rose-deep); }
.feature-art img {
  width: 100%;
  height: auto;
}

.recovery-art {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 10px;
  background: none;
  box-shadow: none;
}
.recovery-art img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.recovery-art img:first-child {
  grid-row: 1 / -1;
}
.recovery-art img:not(:first-child) {
  aspect-ratio: 16/9;
}

.pricing-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pricing-recovery {
  text-align: center;
  padding: 28px 24px 16px;
  margin-top: 10px;
  border-top: 1px solid rgba(58,36,52,0.06);
}
.pricing-recovery p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.pricing-recovery .btn-ghost {
  font-size: 0.92rem;
}

.recovery-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 18px;
}

.recovery-list li {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
}



/* =========================================================
   What to expect — card grid
   ========================================================= */

.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.expect-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(58, 36, 52, 0.06);
  border-top: 4px solid var(--rose);
  position: relative;
}
.expect-card:nth-child(2) { border-top-color: var(--lavender); }
.expect-card:nth-child(3) { border-top-color: var(--mint); }
.expect-card:nth-child(4) { border-top-color: var(--peach); }

.expect-card::before {
  content: "01";
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--rose);
  opacity: 0.15;
}
.expect-card:nth-child(2)::before { content: "02"; color: var(--lavender); }
.expect-card:nth-child(3)::before { content: "03"; color: var(--mint); }
.expect-card:nth-child(4)::before { content: "04"; color: var(--peach); }

.expect-card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.expect-card p {
  font-size: 1.02rem;
}

.expect-perk {
  text-align: center;
  margin-top: 32px;
  padding: 16px 24px;
  background: var(--bg-cream);
  border-radius: var(--radius);
  font-size: 1.05rem;
  color: var(--ink-soft);
  font-weight: 500;
  border: 1px solid rgba(58, 36, 52, 0.06);
}

/* =========================================================
   Benefits card grid
   ========================================================= */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(58, 36, 52, 0.06);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit-swatch {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.benefit-swatch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 55%);
}
.benefit-swatch svg { width: 86px; height: 86px; color: var(--white); position: relative; z-index: 1; }

.swatch-respiratory { background: linear-gradient(135deg, var(--lavender), #7a6a8a); }
.swatch-skin        { background: linear-gradient(135deg, var(--rose-soft), var(--rose)); }
.swatch-calm        { background: linear-gradient(135deg, var(--peach), #b87a64); }

.benefit-body { padding: 26px 24px 28px; }
.benefit-body h3 { color: var(--ink); margin-bottom: 10px; }
.benefit-body p { font-size: 0.97rem; }

.benefit-foot {
  font-size: 0.85rem;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-top: 14px;
  font-style: italic;
}

.find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.find-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-content: start;
}

.find-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(58, 36, 52, 0.06);
}

.find-item h4 {
  margin-bottom: 12px;
  color: var(--ink);
}

.find-item p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.find-item address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-link {
  color: var(--rose);
  font-weight: 600;
}

.find-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-mint);
  min-height: 360px;
}
.find-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(58, 36, 52, 0.12);
  transition: background .2s var(--ease), color .2s var(--ease), transform .15s var(--ease);
}
.socials a:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
  transform: translateY(-2px);
}
.socials svg { width: 20px; height: 20px; }

/* =========================================================
   Footer
   ========================================================= */

footer {
  background: var(--plum);
  color: rgba(251, 243, 236, 0.78);
  padding: 36px 0;
  font-size: 0.92rem;
  text-align: center;
}
footer .container { display: flex; flex-direction: column; gap: 10px; align-items: center; }
footer a { color: var(--rose-soft); }
footer a:hover { color: var(--white); }
footer .disclaimer { font-size: 0.82rem; opacity: 0.65; max-width: 720px; }

/* =========================================================
   Book page — focused layout
   ========================================================= */

.book-hero {
  background:
    linear-gradient(160deg, var(--bg-rose) 0%, var(--bg-cream) 70%, transparent 100%),
    linear-gradient(180deg, transparent 0%, var(--white) 100%);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.book-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 25% 20%, rgba(168,93,114,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 75% 30%, rgba(159,200,190,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.book-hero-text { position: relative; }
.book-hero-text h1 { margin-bottom: 16px; }
.book-hero-text .section-lede {
  margin-inline: auto;
  margin-bottom: 0;
}

.book-wrap {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  padding-top: 48px;
  padding-bottom: 80px;
}

.book-wrap h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 16px;
}
.book-wrap .section-lede {
  margin-inline: auto;
  margin-bottom: 32px;
}

.book-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  padding-top: 48px;
  padding-bottom: 80px;
  align-items: start;
}

.book-main .book-pricing { margin-top: 0; }
.book-main .book-quick-wrap { text-align: left; }
.book-main .book-quick-wrap .section-eyebrow { margin-bottom: 20px; }
.book-main .book-quick { display: block; min-width: 0; }

.book-side {
  position: sticky;
  top: 100px;
}

.book-cta-block {
  background: var(--white);
  border: 2px dashed var(--rose-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.book-cta-block p { margin-bottom: 18px; font-size: 1rem; }
.book-cta-block .btn { width: 100%; justify-content: center; }

.book-side-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 14px;
  margin-bottom: 0;
}

.book-side-contact {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--bg-cream);
  border-radius: var(--radius);
  text-align: center;
}
.book-side-contact a {
  display: block;
  margin-bottom: 6px;
}
.book-side-contact a:last-child { margin-bottom: 0; }

.book-pricing {
  background: var(--bg-cream);
  border-radius: var(--radius);
  margin: 32px 0;
  border: 1px solid rgba(58, 36, 52, 0.06);
  overflow: hidden;
}

.book-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(58, 36, 52, 0.06);
}
.book-price:last-child { border-bottom: none; }
.book-price h3 {
  font-size: 0.95rem;
  color: var(--ink);
  flex: 0 0 auto;
  margin: 0;
}
.book-price .price-num {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--rose);
  margin-left: auto;
  white-space: nowrap;
}
.book-price p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
  width: 100%;
}
.book-price.featured .price-num { color: var(--plum-deep); }

.book-quick-wrap {
  margin: 32px 0;
}

.book-hero-cta {
  text-align: center;
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 48px;
  border: 2px dashed rgba(58,36,52,0.15);
}
.book-hero-cta .btn { min-width: 240px; }

.book-bundles {
  margin: 48px 0;
}
.book-bundles h3 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: var(--plum-deep);
}
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}
.bundle-card {
  background: var(--bg-cream);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(58,36,52,0.06);
  position: relative;
}
.bundle-card .bundle-name {
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.bundle-card .bundle-save {
  font-size: .75rem;
  color: var(--rose);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.bundle-card .bundle-price {
  font-size: 1.4rem;
  margin: 0;
}
.bundle-card .bundle-desc {
  font-size: .82rem;
  color: var(--ink-soft);
  margin-top: 6px;
}
.bundle-card.featured {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum-deep);
}
.bundle-card.featured .bundle-name { color: var(--bg-cream); }
.bundle-card.featured .bundle-save { color: var(--peach-soft); }
.bundle-card.featured .bundle-price { color: var(--white); }
.bundle-card.featured .bundle-desc { color: rgba(255,255,255,0.7); }
.book-quick-wrap .section-eyebrow { margin-bottom: 20px; }

.book-quick {
  text-align: left;
  background: var(--bg-cream);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
  display: inline-block;
  min-width: 340px;
}
.book-quick h3 { margin-bottom: 14px; color: var(--ink); }
.book-quick li {
  padding-left: 26px;
  position: relative;
  padding-bottom: 10px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.book-quick li:last-child { padding-bottom: 0; }
.book-quick li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(168, 93, 114, 0.18);
}

.book-contact-wrap {
  max-width: 720px;
  margin-inline: auto;
  padding: 36px 0;
  border-top: 1px solid rgba(58,36,52,0.06);
  text-align: center;
}
.book-contact-wrap > p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 16px;
}

.book-fallback {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 480px;
  margin: 14px auto 0;
}
.book-fallback a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(58, 36, 52, 0.1);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.book-fallback a:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.book-fallback .bf-phone,
.book-fallback .bf-email {
  grid-column: 1 / -1;
}
.book-fallback svg { width: 16px; height: 16px; flex-shrink: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 160px; }
}

/* Sports & Recovery
   ========================================================= */
.sports-reasons {
  margin: 48px 0 32px;
}
.sports-reasons h3 {
  font-size: 1.1rem;
  color: var(--plum-deep);
  margin-bottom: 18px;
}
.sports-reasons ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.sports-reasons li {
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
}
.sports-reasons li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  background: var(--rose);
  border-radius: 50%;
  opacity: 0.6;
}

.sports-close {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 48px;
  line-height: 1.6;
}

.sports-popular h3 {
  font-size: 1.1rem;
  color: var(--plum-deep);
  margin-bottom: 18px;
}
.sports-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.sport-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-cream);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--ink);
  border: 1px solid rgba(58, 36, 52, 0.06);
}

@media (max-width: 640px) {
  .sports-reasons ul { grid-template-columns: 1fr; }
}

.sport-art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sport-art img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 1;
  object-fit: cover;
}

.sensory-art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sensory-art .feature-art {
  background: none;
  box-shadow: var(--shadow-lg);
}
.sensory-art img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

@media (max-width: 640px) {
  .sport-art img { max-height: 160px; }
  .recovery-art { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .recovery-art img:first-child { grid-column: 1 / -1; grid-row: auto; }
  .recovery-art img { max-height: 160px; }
}

/* Reviews
   ========================================================= */
.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.section-bg .review-card {
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.15);
}
.review-card {
  background: #fdf4f5;
  border: 1px solid var(--peach-soft);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: #f5a623;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.review-text {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 16px;
  flex: 1;
}
.review-author {
  font-size: .85rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.review-form {
  max-width: 460px;
  margin: 0 auto;
  background: #fdf4f5;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--peach-soft);
}
.review-form h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  text-align: center;
}
.review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.review-form-field {
  margin-bottom: 12px;
}
.review-form-field label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--rose-deep);
}
.review-form-field input,
.review-form-field select,
.review-form-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font: inherit;
  font-size: .95rem;
  background: #fff;
  transition: border-color .2s;
  box-sizing: border-box;
}
.review-form-field input:focus,
.review-form-field select:focus,
.review-form-field textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(184,97,115,.15);
}
.review-form .btn { width: 100%; }

/* Lightbox
   ========================================================= */
.glightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glightbox[hidden] { display: none; }
.glightbox-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.85);
  cursor: zoom-out;
}
.glightbox-img {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  object-fit: contain;
  z-index: 1;
}
.glightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 36px;
  width: 50px;
  height: 70px;
  cursor: pointer;
  border-radius: 6px;
  transition: background .2s;
  line-height: 1;
}
.glightbox-btn:hover { background: rgba(255,255,255,.3); }
.glightbox-prev { left: 16px; }
.glightbox-next { right: 16px; }
.glightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 22px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s;
  line-height: 44px;
  text-align: center;
}
.glightbox-close:hover { background: rgba(255,255,255,.3); }
.glightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-family: inherit;
  background: rgba(0,0,0,.3);
  padding: 4px 14px;
  border-radius: 20px;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 900px) {
  .hero-inner,
  .about-grid,
  .feature,
  .feature.reverse,
  .alt-card,
  .find-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .feature.reverse > :first-child { order: 0; }
  .alt-card { padding: 32px 24px; }
  .benefit-grid { grid-template-columns: 1fr; gap: 18px; }
  .pricing-summary { grid-template-columns: 1fr; gap: 18px; }
  .review-form-row { grid-template-columns: 1fr; }

  .book-layout { grid-template-columns: 1fr; gap: 32px; }
  .book-side { position: static; }
  .find-info { grid-template-columns: 1fr; }
  .find-map { min-height: 320px; }
  .find-map iframe { min-height: 320px; }
  .hero { min-height: auto; padding-top: 110px; padding-bottom: 60px; }
  .about-art {
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 70px; }

  section { padding: 48px 0; }

  /* Smaller images on mobile */
  .feature-art img,
  .about-img,
  .sport-art img,
  .sensory-art img { max-height: 200px; width: 100%; object-fit: cover; }

  .about-art {
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  #sensory .feature-art img { max-height: 160px; }

  /* Single-image sections: smaller, narrower */
  #halotherapy .feature-art { max-width: 280px; margin: 0 auto; }

  /* Reviews: swipeable carousel */
  .review-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 4px 16px;
    margin-bottom: 32px;
  }
  .review-card {
    min-width: 78vw;
    scroll-snap-align: start;
    flex-shrink: 0;
    padding: 24px;
  }
  .review-card:last-child { margin-right: 0; }

  /* Scroll hint: gradient fade on right edge */
  .review-cards::after {
    content: "";
    position: sticky;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    flex-shrink: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.15), transparent);
    pointer-events: none;
    margin-left: -60px;
  }
  /* Scrollbar always visible */
  .review-cards { scrollbar-width: thin; }

  /* Brand logo smaller on mobile */
  .brand-logo img { height: 40px; }

  /* Mobile nav */
  .nav-toggle { display: grid; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 20px 20px;
    gap: 0;
    box-shadow: 0 8px 20px -10px rgba(58, 36, 52, 0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    color: var(--ink) !important;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(58, 36, 52, 0.06);
    border-radius: 0;
    text-align: left;
  }
  .nav-links a:hover {
    color: var(--rose) !important;
    background: transparent;
  }
  .nav-book {
    margin: 14px 0 4px;
    text-align: center;
    border-bottom: 0;
  }

  .expect-grid { grid-template-columns: 1fr; }

  /* Hero */
  .hero h1 { font-size: clamp(2.1rem, 8vw, 2.8rem); }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }
}

/* =========================================================
   Reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   Print (light: skip nav, hide socials, lift colours)
   ========================================================= */

@media print {
  .nav, footer, .hero-ctas, .socials { display: none; }
  body { color: #000; background: #fff; }
  section { padding: 24px 0; }
}

/* =========================================================
   Print (light: skip nav, hide socials, lift colours)
   ========================================================= */

.site-notice {
  background:
    repeating-linear-gradient(45deg, #f5c518 0 14px, #1a1a1a 14px 28px) top center / 100% 8px repeat-x,
    repeating-linear-gradient(45deg, #f5c518 0 14px, #1a1a1a 14px 28px) bottom center / 100% 8px repeat-x,
    var(--rose);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  padding: calc(0.95rem + 8px) 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.site-notice strong {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.15em;
}
.site-notice-mark {
  display: inline-block;
  vertical-align: -3px;
  margin-right: 0.55rem;
}
.site-notice-mark svg { width: 20px; height: 20px; }

@media (max-width: 520px) {
  .site-notice { font-size: 0.85rem; padding: calc(0.7rem + 8px) 1rem; }
  .site-notice-mark svg { width: 18px; height: 18px; }
}

@media print {
  .site-notice { display: none; }
}
