/* ================================================================
   THE WELLNESS HUB — Premium Redesign
   Direction: Luxury Editorial · Refined Organic · Premium Irish
   ================================================================ */

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Palette — warm dark editorial */
  --ink:        #1a1612;
  --bark:       #2c241e;
  --earth:      #3d3028;
  --moss:       #3a4a35;
  --fern:       #4e6645;
  --sage:       #7a9a6e;
  --mist:       #b8c9b0;
  --parchment:  #f0ebe2;
  --cream:      #f8f4ee;
  --warm-white: #fdfaf6;
  --gold:       #c9a96e;
  --gold-light: #e8d5a8;
  --blush:      #c4a09a;
  --text:       #2c241e;
  --text-soft:  #6b5f54;
  --text-faint: #9e9086;
  --line:       rgba(60,48,40,0.12);

  /* Type */
  --display:    'Cormorant', Georgia, serif;
  --serif:      'Libre Baskerville', Georgia, serif;
  --sans:       'Jost', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(5rem, 10vw, 9rem);

  /* Motion */
  --ease:       cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --t-fast:     0.2s var(--ease);
  --t-med:      0.4s var(--ease-out);
  --t-slow:     0.7s var(--ease-out);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── GRAIN TEXTURE OVERLAY ──────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

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


/* ── A11Y: SKIP LINK ───────────────────────────────────────── */
.skip-link{
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid rgba(248,244,238,0.18);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-200%);
  transition: transform var(--t-fast);
  z-index: 10000;
}
.skip-link:focus{ transform: translateY(0); }

/* ── FOCUS STATES ───────────────────────────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(47,91,82,0.45);
  outline-offset: 3px;
  border-radius: 10px;
}
/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--parchment); }
::-webkit-scrollbar-thumb { background: var(--earth); border-radius: 2px; }

/* ── CURSOR ─────────────────────────────────────────────────── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
  opacity: 0.6;
}

/* ── PROGRESS BAR ───────────────────────────────────────────── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--sage));
  z-index: 9996;
  width: 0%;
  transition: width 0.05s linear;
}

/* ── PAGE LOADER ────────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-wordmark {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.08em;
  opacity: 0;
  animation: loaderIn 1s var(--ease-out) 0.2s forwards;
}

.loader-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderLine 1.2s var(--ease-out) 0.6s forwards;
}

@keyframes loaderIn {
  to { opacity: 1; }
}
@keyframes loaderLine {
  to { width: 120px; }
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  /* Always paint a nav surface so content never "bleeds" through and reads as overlap. */
  background: rgba(248, 244, 238, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line);
  transition: background var(--t-med), box-shadow var(--t-med), backdrop-filter var(--t-med);
}

nav.scrolled {
  background: rgba(248, 244, 238, 0.96);
  backdrop-filter: blur(20px) saturate(1.35);
  box-shadow: 0 1px 0 rgba(60,48,40,0.14);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}


.nav-logo-mark{
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--gold);
  flex: 0 0 auto;
}
.nav-logo-mark svg{ width: 20px; height: 20px; display:block; }

.nav-logo-text{
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  line-height: 1;
}

.nav-logo-secondary{
  letter-spacing: 0.18em;
  font-size: 0.58rem;
}

nav.hero-nav .nav-logo-mark{ color: var(--gold-light); }
.nav-logo-primary {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: color var(--t-fast);
}

.nav-logo-secondary {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-faint);
}

nav.hero-nav .nav-logo-primary { color: var(--cream); }
nav.hero-nav .nav-logo-secondary { color: rgba(248,244,238,0.4); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.70rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
  transition: color var(--t-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-med);
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

nav.hero-nav .nav-links a { color: rgba(248,244,238,0.65); }
nav.hero-nav .nav-links a:hover,
nav.hero-nav .nav-links a.active { color: var(--cream); }

.nav-book-btn {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  border: none;
  padding: 0.7rem 1.6rem;
  transition: background var(--t-fast), transform var(--t-fast);
  display: inline-block;
}

.nav-book-btn:hover {
  background: var(--earth);
  transform: translateY(-1px);
}

nav.hero-nav .nav-book-btn {
  background: rgba(248,244,238,0.12);
  border: 1px solid rgba(248,244,238,0.25);
}

nav.hero-nav .nav-book-btn:hover {
  background: rgba(248,244,238,0.22);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--ink);
  transition: var(--t-med);
}
nav.hero-nav .hamburger span { background: var(--cream); }

/* ── CONTAINERS ─────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

/* ── TYPOGRAPHY SYSTEM ──────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.eyebrow::before { width: 30px; }
.eyebrow::after { width: 30px; }

.eyebrow.left-only::after { display: none; }
.eyebrow.left-only::before { display: block; }

.display-xl {
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.display-xl em { font-style: italic; color: var(--fern); }

.display-lg {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}
.display-lg em { font-style: italic; color: var(--fern); }

.display-md {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
}
.display-md em { font-style: italic; color: var(--fern); }

.body-lg {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-soft);
  font-weight: 400;
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: none;
  transition: all var(--t-med);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }

.btn-dark {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 4px 24px rgba(26,22,18,0.25);
}
.btn-dark:hover { background: var(--earth); box-shadow: 0 8px 32px rgba(26,22,18,0.35); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(248,244,238,0.35);
}
.btn-ghost-light:hover { background: rgba(248,244,238,0.1); border-color: rgba(248,244,238,0.6); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-arrow::after {
  content: '→';
  background: none;
  opacity: 1;
  position: static;
  font-size: 0.9rem;
  letter-spacing: 0;
  transition: transform var(--t-fast);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── DIVIDERS ───────────────────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  opacity: 0.5;
}
.ornament-line {
  flex: 1;
  height: 1px;
  background: currentColor;
}
.ornament-diamond {
  width: 5px; height: 5px;
  background: currentColor;
  transform: rotate(45deg);
}

/* ── SECTION LAYOUTS ────────────────────────────────────────── */
section { position: relative; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--ink);
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  position: relative;
}

/* Atmospheric background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(78,102,69,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(58,74,53,0.15) 0%, transparent 60%);
}

/* Subtle botanical SVG pattern */
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f8f4ee' fill-opacity='1'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3Ccircle cx='0' cy='0' r='1'/%3E%3Ccircle cx='60' cy='60' r='1'/%3E%3Ccircle cx='60' cy='0' r='1'/%3E%3Ccircle cx='0' cy='60' r='1'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(6rem, 12vh, 10rem) clamp(2rem, 6vw, 6rem) clamp(4rem, 8vh, 7rem);
}

.hero-left .eyebrow { color: var(--gold); margin-bottom: 2rem; }

.hero-headline {
  font-family: var(--display);
  font-size: clamp(3.5rem, 7.5vw, 7.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--mist);
  display: block;
}

.hero-subtext {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(248,244,238,0.55);
  max-width: 420px;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  gap: 1.25rem;
}

/* Vertical text element */
.hero-vertical-text {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(248,244,238,0.2);
  white-space: nowrap;
}

/* Glass card components */
.glass-card {
  background: rgba(248,244,238,0.05);
  border: 1px solid rgba(248,244,238,0.1);
  backdrop-filter: blur(12px);
  padding: 1.75rem 2rem;
  width: 100%;
  max-width: 320px;
  transition: background var(--t-med), border-color var(--t-med);
}

.glass-card:hover {
  background: rgba(248,244,238,0.08);
  border-color: rgba(248,244,238,0.18);
}

.glass-card-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.glass-card-title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.glass-card-sub {
  font-size: 0.78rem;
  color: rgba(248,244,238,0.45);
  line-height: 1.5;
}

.glass-card-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.glass-tag {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(248,244,238,0.5);
  border: 1px solid rgba(248,244,238,0.12);
  padding: 0.25rem 0.7rem;
}

/* Hero bottom bar */
.hero-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(248,244,238,0.08);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-stat {
  padding: 2rem clamp(2rem, 5vw, 5rem);
  border-right: 1px solid rgba(248,244,238,0.08);
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  white-space: nowrap;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(248,244,238,0.35);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* ── MARQUEE ─────────────────────────────────────────────────── */
.marquee-section {
  background: var(--moss);
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,244,238,0.5);
  padding: 0 2.5rem;
}

.marquee-track .diamond {
  color: var(--gold);
  opacity: 0.5;
  padding: 0;
}

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

/* ── INTRO SECTION ──────────────────────────────────────────── */
.intro-section {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.intro-left .display-lg { margin-bottom: 2rem; }

.intro-signature {
  font-family: var(--display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-faint);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.intro-right blockquote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.4;
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

.intro-right blockquote::before {
  content: '"';
  display: block;
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 0.5rem;
}

/* ── SERVICES SECTION ───────────────────────────────────────── */
.services-section {
  background: var(--parchment);
  padding: var(--section-pad) 0;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--line);
  border: 1.5px solid var(--line);
}

.service-card {
  background: var(--parchment);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  transition: background var(--t-med);
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 0;
  background: var(--ink);
  transition: height 0.5s var(--ease-out);
  z-index: 0;
}

.service-card:hover::before { height: 100%; }

.service-card > * { position: relative; z-index: 1; }

.service-num {
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--line);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color var(--t-med);
}

.service-card:hover .service-num { color: rgba(248,244,238,0.08); }

.service-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  transition: border-color var(--t-med);
}

.service-card:hover .service-icon { border-color: rgba(248,244,238,0.15); }

.service-title {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1rem;
  transition: color var(--t-med);
}

.service-card:hover .service-title { color: var(--cream); }

.service-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-soft);
  flex: 1;
  transition: color var(--t-med);
}

.service-card:hover .service-desc { color: rgba(248,244,238,0.55); }

.service-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2rem;
  transition: gap var(--t-fast), color var(--t-fast);
}

.service-card:hover .service-link { color: var(--gold-light); gap: 1rem; }

/* ── WHY SECTION ─────────────────────────────────────────────── */
.why-section {
  background: var(--ink);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.why-left .eyebrow { color: var(--gold); }
.why-left .display-lg { color: var(--cream); }
.why-left .display-lg em { color: var(--mist); }

.why-body {
  color: rgba(248,244,238,0.5);
  font-family: var(--serif);
  font-size: 0.975rem;
  line-height: 1.9;
  margin: 2rem 0;
}

.why-body strong { color: rgba(248,244,238,0.85); font-weight: 700; }

.why-pillars {
  display: grid;
  gap: 0;
  border: 1px solid rgba(248,244,238,0.06);
}

.pillar {
  padding: 2rem;
  border-bottom: 1px solid rgba(248,244,238,0.06);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: background var(--t-med);
  cursor: default;
}

.pillar:last-child { border-bottom: none; }
.pillar:hover { background: rgba(248,244,238,0.03); }

.pillar-num {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 300;
  color: rgba(248,244,238,0.08);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}

.pillar-content h4 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.pillar-content p {
  font-size: 0.82rem;
  color: rgba(248,244,238,0.38);
  line-height: 1.65;
}

/* ── TIMETABLE SECTION ──────────────────────────────────────── */
.timetable-section {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.timetable-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}


.day-group + .day-group{ margin-top: 2rem; }

.availability-legend{
  display:flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
  font-size: 0.68rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}
.legend-item{ display:inline-flex; align-items:center; gap:0.45rem; }
.legend-dot{ width:8px; height:8px; border-radius:50%; display:inline-block; }
.legend-dot.ok{ background: var(--fern); }
.legend-dot.low{ background: #b84040; }
.legend-dot.full{ background: var(--text-faint); }
.filter-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
}

.filter-pill {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.65rem 1.2rem;
  background: transparent;
  color: var(--text-faint);
  border: none;
  border-right: 1px solid var(--line);
  transition: all var(--t-fast);
}

.filter-pill:last-child { border-right: none; }
.filter-pill.active,
.filter-pill:hover {
  background: var(--ink);
  color: var(--cream);
}

/* Day header */
.day-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 1.5rem 0 0.75rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.day-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.event-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  gap: 2rem;
  transition: background var(--t-fast);
}

.event-row:hover { background: var(--parchment); margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; }

.event-time-col {
  text-align: right;
  border-right: 1px solid var(--line);
  padding-right: 2rem;
}

.event-hour {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.event-period {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.event-info-col { flex: 1; }

.event-name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.event-meta {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.event-meta-item {
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.event-tags-inline {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}

.etag {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border: 1px solid var(--line);
  color: var(--text-faint);
}

.etag.weights { border-color: rgba(78,102,69,0.3); color: var(--fern); }
.etag.pilates { border-color: rgba(155,107,159,0.25); color: #7a4a80; }
.etag.nutrition { border-color: rgba(138,175,74,0.25); color: #5a7a20; }

.event-action-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.spots-label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}

.spots-label.low { color: #b84040; }

.btn-sm {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1.3rem;
  background: var(--ink);
  color: var(--cream);
  border: none;
  transition: background var(--t-fast), transform var(--t-fast);
}

.btn-sm:hover { background: var(--earth); transform: translateY(-1px); }
.btn-sm:disabled { background: var(--parchment); color: var(--text-faint); cursor: not-allowed; transform: none; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section {
  background: var(--bark);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.testimonials-section .eyebrow { color: var(--gold); }

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(248,244,238,0.05);
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--bark);
  padding: 3rem;
  transition: background var(--t-med);
}

.testimonial-card:hover { background: #352b25; }

.tcard-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 2rem;
}

.star {
  width: 14px; height: 14px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.6;
}

.tcard-text {
  font-family: var(--display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(248,244,238,0.75);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.tcard-author {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(248,244,238,0.07);
}

.tcard-name {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.tcard-detail {
  font-size: 0.68rem;
  color: rgba(248,244,238,0.3);
  letter-spacing: 0.05em;
}

/* ── HOW TO SECTION ─────────────────────────────────────────── */
.howto-section {
  background: var(--warm-white);
  padding: var(--section-pad) 0;
}

.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 3rem;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tab-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.2rem 2rem;
  background: none;
  border: none;
  color: var(--text-faint);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: all var(--t-fast);
  cursor: pointer;
}

.tab-btn.active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

.tab-btn:hover:not(.active) { color: var(--ink); background: rgba(201,169,110,0.06); }

.tab-pane { display: none; animation: tabIn 0.4s var(--ease-out); }
.tab-pane.active { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }

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

.step-list { display: flex; flex-direction: column; }

.step-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.step-item:last-child { border-bottom: none; }

.step-num-box {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--text-faint);
  flex-shrink: 0;
}

.step-head {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.step-body {
  font-size: 0.855rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.howto-aside-box {
  background: var(--parchment);
  padding: 2.5rem;
  border: 1px solid var(--line);
  height: fit-content;
}

.aside-title {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.tip-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.tip-item:last-child { border-bottom: none; }

.tip-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.tip-text { font-size: 0.845rem; line-height: 1.65; color: var(--text-soft); }

/* ── TEAM SECTION ───────────────────────────────────────────── */
.team-section {
  background: var(--parchment);
  padding: var(--section-pad) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--line);
  margin-top: 4rem;
}

.team-card {
  background: var(--parchment);
  padding: 2.5rem;
  transition: background var(--t-med);
}

.team-card:hover { background: var(--cream); }

.team-avatar-box {
  width: 64px; height: 64px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.team-name {
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.team-role {
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.team-bio {
  font-size: 0.845rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ── NEWSLETTER ─────────────────────────────────────────────── */
.newsletter-section {
  background: var(--ink);
  padding: var(--section-pad) 0;
  text-align: center;
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-inner .display-lg { color: var(--cream); margin-bottom: 1rem; }
.newsletter-inner .display-lg em { color: var(--mist); }
.newsletter-inner .body-sm { color: rgba(248,244,238,0.4); margin-bottom: 2.5rem; }

.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(248,244,238,0.15);
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: rgba(248,244,238,0.05);
  border: none;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.875rem;
  outline: none;
}

.newsletter-input::placeholder { color: rgba(248,244,238,0.25); }
.newsletter-input:focus { background: rgba(248,244,238,0.08); }

/* ── MODAL ──────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,22,18,0.75);
  backdrop-filter: blur(8px);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med), visibility var(--t-med);
  padding: 2rem;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--cream);
  max-width: 520px;
  width: 100%;
  transform: translateY(24px);
  transition: transform var(--t-med);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-box {
  transform: translateY(0);
}

.modal-header {
  padding: 2.5rem 2.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.modal-title {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--ink);
}

.modal-sub {
  font-size: 0.78rem;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.modal-close {
  background: none;
  border: 1px solid var(--line);
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 0.9rem;
  transition: all var(--t-fast);
  flex-shrink: 0;
}

.modal-close:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.modal-body { padding: 0 2.5rem 2.5rem; }

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

.form-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--warm-white);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--t-fast);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--earth); }

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

/* ── PAGE HEROES (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(78,102,69,0.15) 0%, transparent 70%);
}

.page-hero .eyebrow { color: var(--gold); justify-content: flex-start; }
.page-hero .eyebrow::after { display: none; }

.page-hero .display-xl { color: var(--cream); }
.page-hero .display-xl em { color: var(--mist); }

.page-hero-sub {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(248,244,238,0.45);
  line-height: 1.8;
  max-width: 500px;
  margin-top: 1.5rem;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(248,244,238,0.06);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding: 5rem 0 4rem;
}

.footer-brand-name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.4rem;
}


.footer-brand-lockup{
  display:flex;
  align-items:center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.footer-mark{
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex: 0 0 auto;
}
.footer-mark svg{ width: 24px; height: 24px; display:block; }
.footer-brand-tagline {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,244,238,0.2);
  margin-bottom: 1.5rem;
}

.footer-brand-desc {
  font-size: 0.845rem;
  line-height: 1.75;
  color: rgba(248,244,238,0.35);
  max-width: 260px;
}

.footer-col-title {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,244,238,0.25);
  margin-bottom: 1.5rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.footer-links a {
  font-size: 0.845rem;
  color: rgba(248,244,238,0.4);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(248,244,238,0.06);
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(248,244,238,0.2);
  letter-spacing: 0.05em;
}

.social-row {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
}

.social-icon {
  width: 32px; height: 32px;
  border: 1px solid rgba(248,244,238,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(248,244,238,0.35);
  transition: all var(--t-fast);
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.social-icon svg{ width: 16px; height: 16px; display:block; }

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── BACK TO TOP ─────────────────────────────────────────────── */
.btt {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  z-index: 400;
  opacity: 0; visibility: hidden;
  transition: all var(--t-med);
  box-shadow: 0 4px 20px rgba(26,22,18,0.4);
}
.btt.visible { opacity: 1; visibility: visible; }
.btt:hover { background: var(--earth); transform: translateY(-3px); }

/* ── TOAST ───────────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 32px rgba(26,22,18,0.5);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s var(--ease-out);
  border-left: 2px solid var(--gold);
}

.toast.show { opacity: 1; transform: translateY(0); }

/* ── PRICING ─────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.pricing-card {
  background: var(--parchment);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background var(--t-med);
}

.pricing-card.featured {
  background: var(--ink);
}

.pricing-card.featured * { }

.pricing-tier {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 2rem;
}

.pricing-card.featured .pricing-tier { color: var(--gold); }

.pricing-price {
  font-family: var(--display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.pricing-card.featured .pricing-price { color: var(--cream); }

.pricing-period {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-bottom: 2rem;
}

.pricing-card.featured .pricing-period { color: rgba(248,244,238,0.3); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.pricing-card.featured .pricing-features { border-bottom-color: rgba(248,244,238,0.08); }

.pricing-feature {
  font-size: 0.845rem;
  color: var(--text-soft);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.pricing-card.featured .pricing-feature { color: rgba(248,244,238,0.55); }

.pricing-feature::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}


@media (max-width: 1600px) {
  /* Prevent nav overlap on medium screens */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-book-btn { padding: 0.65rem 1.2rem; letter-spacing: 0.16em; }
}

/* Surface / high-DPI laptops often run at 125–175% scaling.
   This "soft" tightening keeps the desktop nav usable longer,
   but still collapses before it can collide. */
@media (max-width: 1900px) {
  nav { padding: 0 clamp(1.25rem, 3vw, 3rem); }
  .nav-links { gap: 1.2rem; }
  .nav-links a { letter-spacing: 0.09em; }
}

@media (max-width: 1720px) {
  .nav-links { gap: 1.0rem; }
  .nav-links a { font-size: 0.68rem; letter-spacing: 0.08em; }
  .nav-book-btn { padding: 0.65rem 1.3rem; }
}

/* ── MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-bottom { grid-template-columns: 1fr 1fr; }
  .hero-stat:nth-child(3) { display: none; }

  .intro-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .timetable-header { flex-direction: column; align-items: flex-start; }
  .testimonials-track { grid-template-columns: 1fr; }
  .tab-pane.active { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .services-header { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-headline { font-size: 3rem; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(248,244,238,0.08); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 80px 1fr; }
  .event-action-col { display: none; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}


/* ── ACCESSIBILITY + SAFETY NETS ─────────────────────────────── */
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .cursor-dot, .cursor-ring { display: none !important; }
}


/* ── MOBILE NAV (class-based, no inline JS styles) ───────────── */
nav.nav-open .nav-links {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 78px;
  left: 0; right: 0;
  padding: 1.75rem;
  gap: 1.25rem;
  background: rgba(26,22,18,0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(248,244,238,0.08);
  z-index: 490;
}
nav.nav-open .nav-links a { color: rgba(248,244,238,0.72); }
nav.nav-open .nav-links a:hover,
nav.nav-open .nav-links a.active { color: var(--cream); }


/* ── BOOKINGS + CONTACT PAGES ────────────────────────────────── */
.bookings-section,
.contact-section {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.bookings-head { margin-bottom: 2.5rem; }

.bookings-list { display: grid; gap: 1rem; margin-top: 2.25rem; }

.booking-card {
  border: 1px solid var(--line);
  background: var(--parchment);
  padding: 1.4rem 1.4rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  transition: transform var(--t-fast), border-color var(--t-fast);
}

.booking-card:hover { transform: translateY(-1px); border-color: rgba(60,48,40,0.22); }

.booking-name {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
}

.booking-meta {
  font-size: 0.78rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
  margin-top: 0.35rem;
}

.booking-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

.btn-sm-light {
  background: rgba(26,22,18,0.06);
  border: 1px solid rgba(26,22,18,0.14);
  color: var(--ink);
}

.btn-sm-light:hover { background: rgba(26,22,18,0.12); }

.btn-sm-danger {
  background: rgba(184,64,64,0.10);
  border: 1px solid rgba(184,64,64,0.25);
  color: #8d2b2b;
}

.btn-sm-danger:hover { background: rgba(184,64,64,0.16); }

.empty-state {
  border: 1px solid var(--line);
  background: var(--parchment);
  padding: 3rem;
  text-align: left;
}

.empty-title {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink);
}

.empty-sub {
  margin-top: 0.9rem;
  color: var(--text-soft);
  font-family: var(--serif);
  line-height: 1.85;
  max-width: 46ch;
}

.hint-box {
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 2rem;
  border-left: 3px solid var(--gold);
}

.hint-title {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hint-sub { color: var(--text-soft); font-size: 0.92rem; line-height: 1.8; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-card {
  border: 1px solid var(--line);
  background: var(--parchment);
  padding: 2.25rem;
}

.contact-kicker {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.contact-line {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(60,48,40,0.10);
}

.contact-line:last-of-type { border-bottom: none; }

.contact-label { color: var(--text-faint); font-size: 0.78rem; letter-spacing: 0.06em; }
.contact-value { color: var(--ink); font-size: 0.9rem; }

.contact-divider { height: 1px; background: rgba(60,48,40,0.12); margin: 1.5rem 0; }

.hours { display: grid; gap: 0.5rem; }
.hours-row { display: flex; justify-content: space-between; color: var(--text-soft); font-size: 0.88rem; }

.quick-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.btn-full { width: 100%; }

.fineprint { font-size: 0.72rem; color: var(--text-faint); margin-top: 0.9rem; letter-spacing: 0.04em; }

.map-placeholder {
  margin-top: 1.5rem;
  border: 1px dashed rgba(60,48,40,0.28);
  background: linear-gradient(135deg, rgba(78,102,69,0.10), rgba(201,169,110,0.10));
  padding: 2rem;
  text-align: left;
}

.map-badge {
  display: inline-flex;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(26,22,18,0.06);
  border: 1px solid rgba(26,22,18,0.10);
  padding: 0.35rem 0.7rem;
}

.map-sub { margin-top: 0.75rem; color: var(--text-soft); font-family: var(--serif); line-height: 1.8; }

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .booking-card { flex-direction: column; align-items: flex-start; }
  .booking-actions { width: 100%; }
  .booking-actions .btn-sm { flex: 1; }
}

/* ── ACCESSIBLE FOCUS ───────────────────────────────────────── */
:focus-visible{
  outline: 2px solid rgba(201,169,110,0.7);
  outline-offset: 3px;
  border-radius: 10px;
}


/* ── CALM MODE (light, spa) ─────────────────────────────────── */
:root{
  --calm-cream:#f7f5f0;
  --calm-mist:#e7efe9;
  --calm-sea:#2f5b52;
  --calm-ink:#1a1612;
  --calm-gold:#bfa271;
  --calm-line:rgba(26,22,18,0.12);
}

html.calm-mode body{
  background:
    radial-gradient(circle at 18% 12%, rgba(47,91,82,0.12), transparent 48%),
    radial-gradient(circle at 84% 6%, rgba(191,162,113,0.12), transparent 44%),
    linear-gradient(180deg, var(--calm-cream), var(--calm-mist));
  color: var(--calm-ink);
}

/* Quiet down “gimmicks” */
html.calm-mode .cursor-dot,
html.calm-mode .cursor-ring,
html.calm-mode .progress-bar{display:none !important;}
html.calm-mode body::before{opacity:.18 !important; mix-blend-mode:normal !important;}

/* Nav */
html.calm-mode nav{
  background: rgba(247,245,240,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--calm-line);
}
html.calm-mode nav.scrolled{background: rgba(247,245,240,.90); border-bottom-color: rgba(26,22,18,0.10);}
html.calm-mode .nav-logo-primary{color: var(--calm-ink);}
html.calm-mode .nav-logo-secondary{color: rgba(26,22,18,.60);}
html.calm-mode .nav-links a{color: rgba(26,22,18,.70);}
html.calm-mode .nav-links a.active{color: var(--calm-ink);}
html.calm-mode .nav-logo-mark,
html.calm-mode .footer-mark{color: var(--calm-sea);}
html.calm-mode .nav-book-btn{
  background: rgba(47,91,82,0.08);
  border-color: rgba(47,91,82,0.22);
  color: var(--calm-ink);
}

/* Buttons */
html.calm-mode .btn.btn-gold{
  background: rgba(47,91,82,0.12);
  border-color: rgba(47,91,82,0.28);
  color: var(--calm-ink);
}
html.calm-mode .btn.btn-dark{
  background: rgba(191,162,113,0.14);
  border-color: rgba(191,162,113,0.32);
  color: var(--calm-ink);
}
html.calm-mode .btn.btn-ghost-light{
  background: rgba(255,255,255,0.34);
  border-color: rgba(26,22,18,0.14);
  color: rgba(26,22,18,0.78);
}
html.calm-mode .btn.btn-ghost-light:hover{
  background: rgba(255,255,255,0.46);
  border-color: rgba(26,22,18,0.18);
}

/* Hero */
html.calm-mode .hero{
  background: transparent;
  min-height: 92svh;
}
html.calm-mode .hero-bg{
  background:
    radial-gradient(circle at 12% 28%, rgba(47,91,82,0.16), transparent 55%),
    radial-gradient(circle at 78% 16%, rgba(191,162,113,0.14), transparent 55%),
    linear-gradient(180deg, rgba(247,245,240,0.92), rgba(231,239,233,0.92));
}
html.calm-mode .hero-pattern{opacity:0; display:none;}
html.calm-mode .hero-vertical-text{display:none;}
html.calm-mode .hero-content{
  max-width: 1120px;
  margin: 0 auto;
  min-height: 92svh;
  padding: 0 clamp(1.2rem, 3.5vw, 2.5rem);
}
html.calm-mode .hero-left{
  padding: clamp(6.5rem, 10vh, 8.5rem) 0 clamp(3.5rem, 6vh, 5rem);
}
html.calm-mode .hero-right{
  padding: clamp(6.5rem, 10vh, 8.5rem) 0 clamp(3.5rem, 6vh, 5rem);
  justify-content: flex-start;
}
html.calm-mode .hero-left .eyebrow{color: rgba(26,22,18,0.55);}
html.calm-mode .hero-headline{color: var(--calm-ink); letter-spacing: -0.02em;}
html.calm-mode .hero-headline em{color: var(--calm-sea);}
html.calm-mode .hero-subtext{color: rgba(26,22,18,0.70); max-width: 56ch; font-size: 1.02rem;}
html.calm-mode .glass-card{
  background: rgba(247,245,240,0.78);
  border: 1px solid rgba(26,22,18,0.10);
  box-shadow: 0 18px 46px rgba(0,0,0,0.08);
}
html.calm-mode .glass-card-label{color: rgba(47,91,82,0.90);}
html.calm-mode .glass-card-title{color: var(--calm-ink);}
html.calm-mode .glass-card-sub{color: rgba(26,22,18,0.65);}
html.calm-mode .glass-tag{
  color: rgba(26,22,18,0.70);
  border-color: rgba(26,22,18,0.12);
  background: rgba(255,255,255,0.35);
}

html.calm-mode .hero-bottom{
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid rgba(26,22,18,0.10);
  background: rgba(255,255,255,0.28);
}
html.calm-mode .hero-stat{border-right: 1px solid rgba(26,22,18,0.10);}
html.calm-mode .hero-stat-num{color: var(--calm-ink);}
html.calm-mode .hero-stat-label{color: rgba(26,22,18,0.58);}

/* Inner page heroes (calm) */
html.calm-mode .page-hero{
  background: transparent;
  padding: 8.5rem 0 5.25rem;
}
html.calm-mode .page-hero-bg{
  background:
    radial-gradient(circle at 12% 28%, rgba(47,91,82,0.16), transparent 55%),
    radial-gradient(circle at 78% 16%, rgba(191,162,113,0.14), transparent 55%),
    linear-gradient(180deg, rgba(247,245,240,0.92), rgba(231,239,233,0.92));
}
html.calm-mode .page-hero .eyebrow{ color: rgba(26,22,18,0.55); }
html.calm-mode .page-hero .display-xl{ color: var(--calm-ink); }
html.calm-mode .page-hero .display-xl em{ color: var(--calm-sea); }
html.calm-mode .page-hero-sub{ color: rgba(26,22,18,0.70); max-width: 60ch; }


/* Section backgrounds */
html.calm-mode .intro-section,
html.calm-mode .services-section,
html.calm-mode .why-section,
html.calm-mode .timetable-section,
html.calm-mode .testimonials-section,
html.calm-mode .newsletter-section{
  background: transparent;
}

/* Services */
html.calm-mode .service-card{
  background: rgba(247,245,240,0.78);
  border: 1px solid rgba(26,22,18,0.10);
  box-shadow: 0 18px 46px rgba(0,0,0,0.08);
}
html.calm-mode .service-num{color: rgba(26,22,18,0.35);}
html.calm-mode .service-title{color: var(--calm-ink);}
html.calm-mode .service-desc{color: rgba(26,22,18,0.70);}
.service-icon svg{width: 20px; height: 20px; display:block;}
html.calm-mode .service-icon{color: var(--calm-sea);}

/* Timetable preview (same grid feel as timetable page) */
html.calm-mode .day-group{
  background: rgba(247,245,240,0.78);
  border: 1px solid rgba(26,22,18,0.10);
  box-shadow: 0 18px 46px rgba(0,0,0,0.08);
  border-radius: 18px;
  overflow: hidden;
}
html.calm-mode .day-label{
  background: rgba(47,91,82,0.07);
  color: rgba(26,22,18,0.60);
  padding: 14px 18px;
  font-size: 0.82rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
html.calm-mode .day-label::after{ display:none; }
html.calm-mode .event-row{
  display: grid;
  grid-template-columns: 92px 1fr 150px;
  gap: 14px;
  padding: 16px 18px;
  align-items: center;
  border-top: 1px solid rgba(26,22,18,0.10);
  background: transparent;
  border-bottom: none;
}
html.calm-mode .event-row:hover{
  background: rgba(255,255,255,0.34);
  margin: 0;
  padding-left: 18px;
  padding-right: 18px;
}
html.calm-mode .event-time-col{ text-align: left; border-right: none; padding-right: 0; }
html.calm-mode .event-hour,
html.calm-mode .event-name{color: var(--calm-ink);}
html.calm-mode .event-period{color: rgba(26,22,18,0.55);}
html.calm-mode .event-meta{color: rgba(26,22,18,0.62);}
html.calm-mode .event-meta-item::after{content:'·'; margin-left:12px; color: rgba(26,22,18,0.35);}
html.calm-mode .event-meta-item{margin-right:12px;}
html.calm-mode .event-meta-item:last-child{margin-right:0;}
html.calm-mode .event-meta-item:last-child::after{content:''; margin:0;}
html.calm-mode .event-action-col{align-items:flex-end;}
html.calm-mode .spots-label{color: rgba(26,22,18,0.62);}
html.calm-mode .spots-label.low{color: rgba(191,162,113,0.95);}
html.calm-mode .btn-sm{
  background: rgba(191,162,113,0.12);
  border-color: rgba(191,162,113,0.30);
  color: var(--calm-ink);
  border-radius: 12px;
}
/* Timetable accents (calm) */
html.calm-mode .legend-dot.ok{ background: rgba(47,91,82,0.28); }
html.calm-mode .legend-dot.low{ background: rgba(191,162,113,0.40); }
html.calm-mode .legend-dot.full{ background: rgba(26,22,18,0.18); }

html.calm-mode .etag{
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: rgba(255,255,255,0.36);
  border-color: rgba(26,22,18,0.10);
  color: rgba(26,22,18,0.68);
}
html.calm-mode .etag.weights{
  border-color: rgba(47,91,82,0.25);
  background: rgba(47,91,82,0.10);
  color: rgba(47,91,82,0.92);
}
html.calm-mode .etag.pilates{
  border-color: rgba(191,162,113,0.30);
  background: rgba(191,162,113,0.10);
  color: rgba(191,162,113,0.98);
}
html.calm-mode .etag.nutrition{
  border-color: rgba(26,22,18,0.14);
  background: rgba(26,22,18,0.06);
  color: rgba(26,22,18,0.72);
}


/* Testimonials */
html.calm-mode .testimonial-card{
  background: rgba(247,245,240,0.78);
  border: 1px solid rgba(26,22,18,0.10);
  box-shadow: 0 18px 46px rgba(0,0,0,0.08);
}
html.calm-mode .testimonial-quote{color: rgba(26,22,18,0.78);}
html.calm-mode .testimonial-name{color: var(--calm-ink);}
html.calm-mode .testimonial-meta{color: rgba(26,22,18,0.60);}

/* Modal */
html.calm-mode .modal-box{
  background: rgba(247,245,240,0.92);
  border: 1px solid rgba(26,22,18,0.10);
}
html.calm-mode .modal-title{color: var(--calm-ink);}
html.calm-mode .modal-sub{color: rgba(26,22,18,0.60);}

/* Footer */
html.calm-mode footer{
  background: rgba(26,22,18,0.94);
  border-top: 1px solid rgba(26,22,18,0.10);
}

/* Calm controls */
.calm-controls{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.calm-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201,169,110,0.45);
  background: rgba(26,22,18,0.72);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  backdrop-filter: blur(4px);
}
.calm-chip strong{letter-spacing:0.08em; font-weight:600; color: var(--gold-light);}
.calm-switch{
  width: 44px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(201,169,110,0.50);
  background: rgba(201,169,110,0.15);
  position: relative;
  flex: 0 0 auto;
}
.calm-switch::after{
  content:'';
  position:absolute;
  top:50%;
  left:3px;
  width:18px;
  height:18px;
  border-radius:999px;
  transform: translateY(-50%);
  background: var(--cream);
  transition: transform 220ms cubic-bezier(.2,.8,.2,1);
}
html.calm-mode .calm-switch::after{transform: translate(20px, -50%); background: var(--gold);}
html.calm-mode .calm-chip{border-color: rgba(201,169,110,0.70); background: rgba(26,22,18,0.85);}

/* Reduce motion */
html.reduce-motion *{transition:none !important; animation:none !important;}
html.reduce-motion .reveal{opacity:1 !important; transform:none !important;}

@media (max-width: 820px){
  html.calm-mode .hero-content{grid-template-columns: 1fr; gap: 1.25rem;}
  html.calm-mode .hero-right{padding-top: 0; padding-bottom: 3rem;}
  html.calm-mode .event-row{
    grid-template-columns: 92px 1fr;
    grid-template-rows: auto auto;
    row-gap: 10px;
  }
  html.calm-mode .event-action-col{
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
