/* =========================================================================
   KSP Wellness — Editorial wellness design system
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand palette */
  --forest: #1d4d3a;
  --forest-deep: #143829;
  --forest-soft: #2d6850;
  --sage: #8aa898;
  --sage-pale: #d9e3dc;
  --cream: #fbf8f1;
  --cream-deep: #f4ede0;
  --ink: #1a1a1a;
  --ink-soft: #3a3a3a;
  --ink-muted: #6b6b6b;
  --gold: #c9a368;
  --gold-deep: #a8854f;
  --leaf: #6b8e5a;
  --line: #e8e3d6;
  --white: #ffffff;

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

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;

  /* Container */
  --container: 1240px;
  --container-narrow: 920px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(20, 56, 41, 0.04), 0 1px 3px rgba(20, 56, 41, 0.06);
  --shadow-md: 0 4px 12px rgba(20, 56, 41, 0.06), 0 2px 4px rgba(20, 56, 41, 0.04);
  --shadow-lg: 0 24px 48px rgba(20, 56, 41, 0.08), 0 8px 16px rgba(20, 56, 41, 0.06);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================================
   Reset & base
   ========================================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--forest);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-deep);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.15;
  font-variation-settings: "opsz" 96;
}

p { max-width: 65ch; }

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

/* =========================================================================
   Container
   ========================================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* =========================================================================
   Top utility strip
   ========================================================================= */
.utility-bar {
  background: var(--forest-deep);
  color: var(--cream);
  font-size: 13px;
  padding: 10px 0;
  letter-spacing: 0.03em;
}

.utility-bar__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.utility-bar__contact {
  display: flex;
  gap: 24px;
  align-items: center;
}

.utility-bar a {
  color: var(--cream);
  opacity: 0.85;
  transition: opacity var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.utility-bar a:hover {
  opacity: 1;
  color: var(--gold);
}

.utility-bar__socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.utility-bar__socials a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.utility-bar__socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* =========================================================================
   Site header
   ========================================================================= */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(8px);
  background: rgba(251, 248, 241, 0.92);
}

.site-header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__brand img {
  height: 56px;
  width: auto;
}

.site-header__brand-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--forest-deep);
  letter-spacing: 0.02em;
}

.site-header__brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--leaf);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav */
.site-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  position: relative;
  letter-spacing: 0.02em;
}

.site-nav a:hover {
  color: var(--forest);
  background: var(--sage-pale);
}

.site-nav a.is-active {
  color: var(--forest-deep);
}

.site-nav a.is-active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.site-nav__cta {
  margin-left: 12px;
  background: var(--forest);
  color: var(--cream) !important;
  padding: 11px 22px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
}

.site-nav__cta:hover {
  background: var(--forest-deep) !important;
  color: var(--cream) !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--forest-deep);
}

.menu-toggle svg { width: 24px; height: 24px; }

/* =========================================================================
   Page banner (subpage hero)
   ========================================================================= */
.page-banner {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 60%, var(--forest-soft) 100%);
  color: var(--cream);
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 163, 104, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(138, 168, 152, 0.15) 0%, transparent 50%);
}

.page-banner__decoration {
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  opacity: 0.08;
  pointer-events: none;
}

.page-banner__content {
  position: relative;
  z-index: 2;
}

.page-banner__crumb {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-banner__crumb a {
  color: var(--cream);
  opacity: 0.7;
}

.page-banner h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--cream);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  max-width: 18ch;
}

.page-banner__sub {
  font-family: var(--font-body);
  font-size: 18px;
  margin-top: 20px;
  max-width: 50ch;
  opacity: 0.85;
  font-weight: 300;
}

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--forest);
  color: var(--cream);
}

.btn--primary:hover {
  background: var(--forest-deep);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn--gold:hover {
  background: var(--gold-deep);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--forest-deep);
  border-color: var(--forest);
}

.btn--ghost:hover {
  background: var(--forest);
  color: var(--cream);
}

.btn--cream {
  background: var(--cream);
  color: var(--forest-deep);
}

.btn--cream:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* =========================================================================
   Section spacing
   ========================================================================= */
section {
  padding: var(--space-7) 0;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--leaf);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  font-weight: 400;
  max-width: 22ch;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-title em {
  font-style: italic;
  color: var(--forest);
  font-variation-settings: "opsz" 144;
  font-weight: 400;
}

.section-lead {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 56ch;
  line-height: 1.65;
}

/* =========================================================================
   HOMEPAGE — Hero
   ========================================================================= */
.hero {
  background: var(--cream);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.hero__decoration {
  position: absolute;
  top: 20%;
  left: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--sage-pale) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  padding: 40px 0;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--leaf);
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.025em;
}

.hero h1 em {
  font-style: italic;
  color: var(--forest);
  font-variation-settings: "opsz" 144;
  display: block;
}

.hero__lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: 36px;
  max-width: 52ch;
}

.hero__lede strong {
  color: var(--forest-deep);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  max-width: 540px;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  font-variation-settings: "opsz" 144;
}

.hero__stat-num em {
  font-style: italic;
  font-size: 24px;
}

.hero__stat-label {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 8px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* Hero visual — Sangeetha's transformation */
.hero__visual {
  position: relative;
  padding: 20px 0 60px;
}

.hero__transformation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: var(--forest-deep);
}

.hero__transformation img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
}

.hero__transformation::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to right, transparent 49%, rgba(20, 56, 41, 0.4) 49.5%, rgba(20, 56, 41, 0.4) 50.5%, transparent 51%);
}

.hero__label {
  position: absolute;
  top: 20px;
  padding: 8px 16px;
  background: var(--cream);
  color: var(--forest-deep);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.hero__label--before { left: 20px; }
.hero__label--after { right: 20px; background: var(--gold); }

.hero__caption {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  color: var(--forest-deep);
  padding: 18px 32px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gold);
  z-index: 3;
}

.hero__caption strong {
  color: var(--forest);
  font-weight: 600;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 22px;
  margin-right: 4px;
}

/* =========================================================================
   About preview / About full page
   ========================================================================= */
.about-preview {
  background: var(--cream);
  position: relative;
}

.about-preview__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-preview__visual {
  position: relative;
}

.about-preview__visual img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.about-preview__visual--quote {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--gold);
  color: var(--ink);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  max-width: 240px;
  line-height: 1.4;
  box-shadow: var(--shadow-md);
}

.about-preview__content p {
  margin-bottom: 18px;
  font-size: 17px;
  color: var(--ink-soft);
}

.about-preview__content p:last-of-type {
  margin-bottom: 32px;
}

.about-preview__signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-preview__signature-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--forest-deep);
}

.about-preview__signature-role {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =========================================================================
   Health Coaching Services (tabs)
   ========================================================================= */
.services-coaching {
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}

.services-coaching::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/pattern.jpg');
  background-size: 600px;
  opacity: 0.04;
  pointer-events: none;
}

.services-coaching__header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.services-coaching__header .section-eyebrow {
  justify-content: center;
}

.services-coaching__header .section-eyebrow::before {
  display: none;
}

.services-coaching__header .section-title {
  margin: 0 auto 16px;
  text-align: center;
}

.tabs {
  position: relative;
  z-index: 1;
}

.tabs__nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tabs__btn {
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.tabs__btn:hover {
  color: var(--forest);
  border-color: var(--sage);
}

.tabs__btn.is-active {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.tabs__panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tabs__panel.is-active { display: block; }

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

.tabs__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-md);
}

.tabs__content-visual {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sage-pale);
  position: relative;
}

.tabs__content-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tabs__content-visual--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sage-pale), var(--cream-deep));
}

.tabs__content-visual--icon svg {
  width: 50%;
  height: 50%;
  color: var(--forest);
  opacity: 0.85;
}

.tabs__content h3 {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--forest-deep);
}

.tabs__content-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--forest);
  margin-bottom: 18px;
  font-weight: 500;
}

.tabs__content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

/* =========================================================================
   Wellness Coaching Cards (8-tile grid)
   ========================================================================= */
.services-wellness {
  background: var(--cream);
}

.services-wellness__header {
  text-align: center;
  margin-bottom: 56px;
}

.services-wellness__header .section-eyebrow { justify-content: center; }
.services-wellness__header .section-eyebrow::before { display: none; }
.services-wellness__header .section-title { margin: 0 auto 16px; }

.wellness-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.wellness-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.wellness-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.wellness-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage);
}

.wellness-card:hover::before {
  transform: scaleX(1);
}

.wellness-card__icon {
  width: 56px;
  height: 56px;
  background: var(--sage-pale);
  color: var(--forest);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.wellness-card:hover .wellness-card__icon {
  background: var(--forest);
  color: var(--cream);
}

.wellness-card__icon svg {
  width: 26px;
  height: 26px;
}

.wellness-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--forest-deep);
}

.wellness-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* =========================================================================
   How It Works (5-step journey)
   ========================================================================= */
.how-it-works {
  background: var(--forest-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 163, 104, 0.15) 0%, transparent 70%);
}

.how-it-works::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(138, 168, 152, 0.12) 0%, transparent 70%);
}

.how-it-works__header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.how-it-works__header .section-eyebrow {
  color: var(--gold);
  justify-content: center;
}

.how-it-works__header .section-eyebrow::before {
  display: none;
}

.how-it-works__header .section-title {
  color: var(--cream);
}

.how-it-works__header .section-title em {
  color: var(--gold);
}

.steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.step {
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 1px;
  background: repeating-linear-gradient(to right, var(--sage) 0, var(--sage) 4px, transparent 4px, transparent 10px);
  opacity: 0.5;
}

.step__num {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--cream);
  color: var(--forest-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.step:hover .step__num {
  background: var(--gold);
  transform: scale(1.08);
}

.step h3 {
  font-size: 19px;
  color: var(--cream);
  margin-bottom: 8px;
  font-weight: 500;
}

.step p {
  font-size: 14px;
  color: var(--cream);
  opacity: 0.75;
  margin: 0 auto;
}

/* =========================================================================
   Gallery (transformations)
   ========================================================================= */
.gallery-section {
  background: var(--cream);
}

.gallery-section__header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-section__header .section-eyebrow {
  justify-content: center;
}

.gallery-section__header .section-eyebrow::before {
  display: none;
}

.gallery-section__header .section-title {
  margin: 0 auto;
  max-width: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid--home {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 3 / 4;
  background: var(--sage-pale);
  cursor: pointer;
  transition: transform var(--transition);
  display: block;
}

.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 56, 41, 0.6) 0%, transparent 40%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item__overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 1;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================================
   Testimonials
   ========================================================================= */
.testimonials {
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 360px;
  color: var(--sage-pale);
  opacity: 0.5;
  line-height: 1;
  font-weight: 700;
  pointer-events: none;
}

.testimonials__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonials__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 36px;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
}

.testimonials__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.testimonials__author-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--forest-deep);
}

.testimonials__author-loc {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 48px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.4;
  transition: all var(--transition);
  cursor: pointer;
}

.testimonials__dot.is-active {
  opacity: 1;
  width: 32px;
  border-radius: 5px;
  background: var(--forest);
}

/* =========================================================================
   CTA strip
   ========================================================================= */
.cta-strip {
  background: var(--forest);
  color: var(--cream);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 163, 104, 0.15) 0%, transparent 70%);
}

.cta-strip__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-strip h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-strip h2 em {
  color: var(--gold);
  font-style: italic;
}

.cta-strip p {
  font-size: 18px;
  opacity: 0.85;
  margin: 0 auto 36px;
  max-width: 50ch;
}

.cta-strip__actions {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================================================
   Contact page
   ========================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  padding: 56px 40px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--line);
  transition: all var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage);
}

.contact-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--sage-pale);
  color: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.contact-card:hover .contact-card__icon {
  background: var(--forest);
  color: var(--cream);
}

.contact-card__icon svg {
  width: 32px;
  height: 32px;
}

.contact-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--forest-deep);
}

.contact-card a {
  font-size: 19px;
  color: var(--ink);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--gold-deep);
}

.contact-card__hours {
  font-size: 14px;
  color: var(--ink-muted);
  margin-top: 16px;
}

/* =========================================================================
   About page — full layout
   ========================================================================= */
.about-full {
  background: var(--cream);
}

.about-full__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.about-full__visual {
  position: sticky;
  top: 120px;
}

.about-full__visual img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.about-full__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 20px;
}

.about-full__content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 24px;
  line-height: 1.1;
}

.about-full__content h2 em {
  font-style: italic;
  color: var(--forest);
  font-variation-settings: "opsz" 144;
}

.about-full__content > p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.about-full__content > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  float: left;
  line-height: 0.85;
  margin: 8px 14px 0 0;
  color: var(--forest);
  font-style: italic;
}

.about-full__milestone {
  background: var(--cream-deep);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  margin: 36px 0;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--forest-deep);
}

.about-full__milestone strong {
  font-style: normal;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 18px;
  display: block;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 8px;
}

/* =========================================================================
   Services page — extended layout
   ========================================================================= */
.services-intro {
  background: var(--cream);
  text-align: center;
  padding-bottom: 0;
}

.services-intro__inner {
  max-width: 720px;
  margin: 0 auto;
}

.services-intro__inner .section-eyebrow {
  justify-content: center;
}

.services-intro__inner .section-eyebrow::before {
  display: none;
}

.services-intro__inner .section-title {
  margin: 0 auto 24px;
}

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 163, 104, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 56px;
  position: relative;
  z-index: 1;
}

.site-footer__brand img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 20px;
}

.site-footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.75;
  margin-bottom: 24px;
}

.site-footer__socials {
  display: flex;
  gap: 12px;
}

.site-footer__socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(251, 248, 241, 0.2);
  border-radius: 50%;
  color: var(--cream);
  transition: all var(--transition);
}

.site-footer__socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
}

.site-footer__socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.site-footer h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-footer ul {
  list-style: none;
}

.site-footer ul li {
  margin-bottom: 12px;
}

.site-footer ul a {
  color: var(--cream);
  opacity: 0.75;
  font-size: 15px;
  transition: all var(--transition);
}

.site-footer ul a:hover {
  opacity: 1;
  color: var(--gold);
  padding-left: 6px;
}

.site-footer__contact {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.8;
}

.site-footer__contact a {
  color: var(--cream);
  display: block;
  margin-bottom: 4px;
}

.site-footer__contact strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 600;
  opacity: 0.9;
}

.site-footer__bottom {
  border-top: 1px solid rgba(251, 248, 241, 0.12);
  padding: 28px 0;
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}

.site-footer__bottom a {
  color: var(--gold);
  font-weight: 500;
}

/* =========================================================================
   WhatsApp float
   ========================================================================= */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform var(--transition);
}

.wa-float:hover {
  transform: scale(1.08);
  color: var(--white);
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.wa-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.5;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* =========================================================================
   Reveal animations on scroll
   Only hidden once JS attaches `.js-ready` to the body — so users without JS,
   crawlers, or screenshot tools still see the content.
   ========================================================================= */
body.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

body.js-ready .reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  body.js-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__transformation img { height: 480px; }
  .about-preview__grid { grid-template-columns: 1fr; gap: 60px; }
  .tabs__content { grid-template-columns: 1fr; padding: 40px; gap: 32px; }
  .wellness-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid--home { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .step { padding: 0 8px; }
  .step:not(:last-child)::after { display: none; }
  .about-full__grid { grid-template-columns: 1fr; gap: 48px; }
  .about-full__visual { position: static; max-width: 480px; margin: 0 auto; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .site-header__row { height: 72px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  section { padding: 64px 0; }
  .container { padding: 0 20px; }

  /* Mobile nav */
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 32px 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    z-index: 99;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a {
    padding: 16px 20px;
    font-size: 17px;
    border-radius: var(--radius-sm);
    text-align: left;
  }
  .site-nav a.is-active::after { display: none; }
  .site-nav a.is-active { background: var(--sage-pale); color: var(--forest-deep); }
  .site-nav__cta { margin-left: 0; margin-top: 16px; text-align: center !important; }

  .utility-bar { display: none; }

  .hero { padding: 32px 0 0; }
  .hero h1 { font-size: 2.2rem; }
  .hero__lede { font-size: 17px; }
  .hero__transformation img { height: 380px; }
  .hero__label { font-size: 10px; padding: 6px 12px; }
  .hero__caption { font-size: 14px; padding: 12px 20px; bottom: -16px; }
  .hero__caption strong { font-size: 18px; }
  .hero__stats { grid-template-columns: 1fr; gap: 16px; padding-top: 24px; }
  .hero__stat-num { font-size: 28px; }

  .about-preview__visual--quote { position: static; margin-top: 24px; max-width: 100%; }

  .wellness-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-grid, .gallery-grid--home { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .page-banner { padding: 60px 0 56px; }
  .page-banner h1 { font-size: 2.2rem; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 40px 28px; }

  .site-footer { padding-top: 56px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .site-footer__bottom { flex-direction: column; text-align: center; margin-top: 40px; }
  .tabs__nav { gap: 6px; }
  .tabs__btn { padding: 10px 18px; font-size: 13px; }
  .tabs__content { padding: 28px; }
  .tabs__content h3 { font-size: 26px; }

  .testimonials::before { font-size: 220px; top: -10px; }
  .testimonials__quote { font-size: 1.25rem; }

  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* Print friendly */
@media print {
  .site-header, .site-footer, .wa-float, .utility-bar { display: none; }
}
