/* =========================================
   DESIGN TOKENS
   ========================================= */
:root {
  --bg:       #FAF7F2;
  --bg2:      #F3EDE4;
  --card:     #FFFDF9;
  --deep:     #5A3D4D;
  --navy:     #6B4C5E;
  --ink:      #2A2228;
  --mid:      #5A4D55;
  --soft:     #8B6878;
  --accent:   #C4A48A;
  --accent2:  #8B6878;
  --warm:     #EDE5D8;
  --border:   rgba(139, 104, 120, 0.12);
  --shadow-sm: 0 2px 12px rgba(42, 34, 40, 0.06);
  --shadow-md: 0 8px 32px rgba(42, 34, 40, 0.10);
  --shadow-lg: 0 20px 60px rgba(42, 34, 40, 0.14);
  --radius:   5px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Jost', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =========================================
   UTILITY
   ========================================= */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container--wide  { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.container--narrow{ max-width: 820px;  margin: 0 auto; padding: 0 2rem; }

.label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 0.8rem;
}
.label--center { text-align: center; }
.label--light  { color: var(--accent); }

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--deep);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.85;
  max-width: 640px;
}
.section-sub--center { margin: 0 auto; text-align: center; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--deep);
  color: #fff;
}
.btn--primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--deep);
  color: var(--deep);
}
.btn--outline:hover {
  background: var(--deep);
  color: #fff;
}
.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover {
  background: #fff;
  color: var(--deep);
  box-shadow: var(--shadow-sm);
}
.btn--ghost {
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
}
.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.btn--sm { padding: 0.55rem 1.3rem; font-size: 0.7rem; }
.btn__arrow { transition: transform 0.3s; display: inline-block; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.45s ease;
}
.nav.scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(42, 34, 40, 0.05);
  padding: 1rem 3.5rem;
}
.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--deep);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.nav__logo em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  color: var(--mid);
  font-weight: 500;
  transition: color 0.25s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--deep);
  transition: width 0.3s;
}
.nav__links a:hover { color: var(--deep); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  background: var(--deep);
  color: #fff;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: background 0.25s;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--navy); color: #fff; }
/* Specificity fix: .nav__links a (0,1,1) > .nav__cta (0,1,0) — boost CTA color */
.nav__links a.nav__cta,
.nav__links a.nav__cta:hover { color: #fff; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--deep);
  display: block;
  transition: all 0.3s;
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FAF7F2 0%, #F3EDE4 45%, #EDE5D8 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -8%; top: -15%;
  width: 55%; height: 130%;
  background: radial-gradient(ellipse, rgba(196, 164, 138, 0.08), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: -5%; bottom: -10%;
  width: 40%; height: 80%;
  background: radial-gradient(ellipse, rgba(139, 104, 120, 0.05), transparent 65%);
  pointer-events: none;
}
.hero__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 9rem 3.5rem 5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__text h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  line-height: 1.12;
  color: var(--deep);
  margin-bottom: 1.6rem;
  font-weight: 600;
}
.hero__text h1 .agency-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 0.9rem;
}
.hero__sub {
  font-size: 1.08rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 2.2rem;
  max-width: 490px;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}
.hero__trust {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero__trust-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 0.9rem;
  font-weight: 600;
}
.hero__trust-logos {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero__trust-logos span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mid);
  opacity: 0.45;
  letter-spacing: 0.04em;
}
.hero__image {
  position: relative;
}
.hero__image::before {
  content: '';
  position: absolute;
  top: -14px; left: -14px;
  right: 14px; bottom: 14px;
  border: 1.5px solid var(--accent);
  opacity: 0.28;
  z-index: 0;
  border-radius: 3px;
}
.hero__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: var(--shadow-lg);
}

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  background: var(--deep);
  padding: 3.2rem 3.5rem;
}
.stats-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--accent);
  font-weight: 600;
  line-height: 1;
}
.stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.4rem;
  font-weight: 500;
}

/* =========================================
   SECTIONS — SHARED
   ========================================= */
.section { padding: 6.5rem 3.5rem; }
.section--light  { background: var(--card); }
.section--tinted { background: var(--bg2); }
.section--dark   { background: var(--deep); color: #fff; }
.section--warm   { background: var(--warm); }
.section--border-b { border-bottom: 1px solid var(--border); }
.section--border-t { border-top: 1px solid var(--border); }

/* =========================================
   STAFF WELLNESS & RETENTION
   ========================================= */
.wellness__head {
  text-align: center;
  margin-bottom: 4rem;
}
.wellness__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.wellness-card {
  padding: 2.5rem 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}
.wellness-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.wellness-card:hover::before { transform: scaleX(1); }
.wellness-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 164, 138, 0.4);
}
.wellness-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.wellness-card__title {
  font-size: 1.1rem;
  color: var(--deep);
  margin-bottom: 0.75rem;
}
.wellness-card__desc {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.85;
}

/* =========================================
   CORPORATE WELLNESS CASE STUDY
   ========================================= */
.corp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.corp__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.corp__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.corp__image:hover img { transform: scale(1.03); }
.corp__text h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  color: var(--deep);
  margin-bottom: 1.4rem;
}
.corp__text p {
  font-size: 0.95rem;
  color: var(--mid);
  margin-bottom: 1.1rem;
  line-height: 1.85;
}
.corp__list {
  margin: 1.6rem 0 2rem;
  display: flex;
  flex-direction: column;
}
.corp__list-item {
  font-size: 0.85rem;
  color: var(--ink);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.corp__list-item::before {
  content: '✓';
  color: var(--accent2);
  font-weight: 700;
  flex-shrink: 0;
}

/* =========================================
   SERVICES GRID
   ========================================= */
.services__head {
  text-align: center;
  margin-bottom: 4rem;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--transition);
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
  transition: width 0.4s ease;
}
.service-card:hover::after { width: 100%; }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 164, 138, 0.35);
}
.service-card__title {
  font-size: 1.08rem;
  color: var(--deep);
  margin-bottom: 0.7rem;
}
.service-card__desc {
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.82;
  flex: 1;
  margin-bottom: 1.2rem;
}
.service-card__format {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent2);
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
  margin-bottom: 0.9rem;
  font-weight: 600;
}
.service-card__btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--deep);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 3px;
  transition: background 0.25s;
  align-self: flex-start;
}
.service-card__btn:hover { background: var(--navy); }

/* =========================================
   PULL QUOTE
   ========================================= */
.quote-band {
  padding: 5rem 3.5rem;
  background: var(--warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: '\201C';
  position: absolute;
  top: -1rem; left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 14rem;
  color: rgba(90, 61, 77, 0.05);
  line-height: 1;
  pointer-events: none;
}
.quote-band blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-style: italic;
  color: var(--deep);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* =========================================
   TELEHEALTH VAN
   ========================================= */
.telehealth__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
.telehealth__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.telehealth__img img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}
.telehealth__text h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  color: #fff;
  margin-bottom: 1.4rem;
}
.telehealth__text p {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.telehealth__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.8rem;
}
.telehealth__stat {
  text-align: center;
  padding: 1.4rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
}
.telehealth__stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent);
  font-weight: 600;
  line-height: 1;
}
.telehealth__stat .lbl {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 0.4rem;
  font-weight: 500;
}
.telehealth__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}
.telehealth__gallery-item { overflow: hidden; border-radius: var(--radius); }
.telehealth__gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  opacity: 0.78;
  transition: opacity 0.3s, transform 0.4s ease;
  display: block;
}
.telehealth__gallery-item:hover img {
  opacity: 1;
  transform: scale(1.04);
}

/* =========================================
   ABOUT
   ========================================= */
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
  align-items: start;
}
.about__photo-wrap {
  position: relative;
}
.about__photo-wrap img {
  width: 100%;
  max-width: 430px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.about__badge {
  position: absolute;
  bottom: 1.8rem;
  right: -1.5rem;
  background: var(--deep);
  color: #fff;
  padding: 1.1rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.87rem;
  line-height: 1.45;
  max-width: 200px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about__text h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--deep);
  margin-bottom: 0.3rem;
}
.about__title {
  font-size: 0.73rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 2rem;
  font-weight: 600;
}
.about__text p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.credentials {
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.credential {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 0.38rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-weight: 600;
  transition: all 0.25s;
}
.credential:hover {
  border-color: var(--accent2);
  color: var(--deep);
}

/* =========================================
   GALLERY
   ========================================= */
.gallery__head {
  text-align: center;
  margin-bottom: 3rem;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.9rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   BOOKS
   ========================================= */
.books__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.book {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.book__cover {
  flex-shrink: 0;
  width: 175px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 8px 8px 30px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}
.book:hover .book__cover {
  transform: rotate(-1.5deg) translateY(-5px);
}
.book__cover img { width: 100%; display: block; }
.book__info h4 {
  font-size: 1.3rem;
  color: var(--deep);
  margin-bottom: 0.25rem;
}
.book__subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent2);
  font-weight: 600;
  margin-bottom: 1rem;
}
.book__info p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.82;
  margin-bottom: 1rem;
}
.book__coming-soon {
  font-size: 0.78rem;
  color: var(--accent2);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* =========================================
   INITIATIVES
   ========================================= */
.initiatives__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.initiative-card {
  padding: 2.8rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: box-shadow 0.3s ease;
}
.initiative-card:hover {
  box-shadow: var(--shadow-md);
}
.initiative-card__logo {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.initiative-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.initiative-card__text h4 {
  font-size: 1.18rem;
  color: var(--deep);
  margin-bottom: 0.5rem;
}
.initiative-card__text p {
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.75;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials__head {
  text-align: center;
  margin-bottom: 3rem;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.testimonial-card {
  padding: 2.2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.3s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-sm); }
.testimonial-card__quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.93rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.testimonial-card__author {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  font-weight: 600;
}

/* =========================================
   EVENTS
   ========================================= */
.event-card {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 85px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 2.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.event-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.event-date { text-align: center; }
.event-date__month {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent2);
  font-weight: 600;
}
.event-date__day {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--deep);
  line-height: 1;
  margin-top: 0.2rem;
}
.event-info h4 {
  font-size: 1.15rem;
  color: var(--deep);
  margin-bottom: 0.3rem;
}
.event-info p {
  font-size: 0.85rem;
  color: var(--mid);
}
.event-info__meta {
  font-size: 0.78rem;
  color: var(--mid);
  margin-top: 0.4rem;
}

/* =========================================
   SPEAKING
   ========================================= */
.speaking__inner p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 0.5rem;
}
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.8rem 0;
}
.topic-tag {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  color: var(--mid);
  border-radius: 3px;
  font-weight: 600;
  transition: all 0.25s;
  cursor: default;
}
.topic-tag:hover {
  border-color: var(--accent2);
  color: var(--deep);
  background: rgba(139, 104, 120, 0.05);
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  padding: 7rem 3.5rem;
  background: var(--deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(196, 164, 138, 0.07), transparent 60%);
  pointer-events: none;
}
.cta-section__inner { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  margin-bottom: 1.4rem;
}
.cta-section p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 560px;
  margin: 0 auto 2.8rem;
  line-height: 1.85;
}
.cta-section__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: #221B20;
  color: #fff;
  padding: 5rem 3.5rem 2.5rem;
}
.footer__grid {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer__brand p {
  font-size: 0.82rem;
  opacity: 0.35;
  line-height: 1.85;
  max-width: 300px;
}
.footer__col h5 {
  font-family: 'Jost', sans-serif;
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0.3;
  font-weight: 600;
}
.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.6rem;
  transition: color 0.25s;
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  opacity: 0.25;
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE — TABLET (<=1080px)
   ========================================= */
@media (max-width: 1080px) {
  .nav { padding: 1.2rem 2rem; }
  .nav.scrolled { padding: 0.9rem 2rem; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 8rem 2rem 4rem;
  }
  .hero__image { text-align: center; }
  .hero__image img { max-width: 400px; margin: 0 auto; }
  .hero__image::before { display: none; }

  .wellness__grid    { grid-template-columns: repeat(2, 1fr); }
  .services__grid    { grid-template-columns: repeat(2, 1fr); }
  .corp__grid        { grid-template-columns: 1fr; gap: 2.5rem; }
  .telehealth__top   { grid-template-columns: 1fr; gap: 2.5rem; }
  .telehealth__stats { grid-template-columns: repeat(2, 1fr); }
  .telehealth__gallery { grid-template-columns: repeat(2, 1fr); }
  .about__grid       { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__badge      { right: 0; }
  .gallery__grid     { grid-template-columns: repeat(2, 1fr); }
  .books__grid       { grid-template-columns: 1fr; gap: 2.5rem; }
  .initiatives__grid { grid-template-columns: 1fr; }
  .stats-bar__inner  { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer__grid      { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   RESPONSIVE — MOBILE (<=768px)
   ========================================= */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav__links {
    display: none;
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--card);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -12px 0 50px rgba(42,34,40,0.1);
    overflow-y: auto;
  }
  .nav__links.open { display: flex; }
  .nav__toggle { display: flex; }

  .hero__inner  { padding: 7rem 1.5rem 3.5rem; }
  .section      { padding: 4.5rem 1.5rem; }
  .stats-bar    { padding: 2.5rem 1.5rem; }
  .quote-band   { padding: 4rem 1.5rem; }
  .cta-section  { padding: 5rem 1.5rem; }
  footer        { padding: 4rem 1.5rem 2rem; }

  .stats-bar__inner   { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .wellness__grid     { grid-template-columns: 1fr; }
  .services__grid     { grid-template-columns: 1fr; }
  .gallery__grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .telehealth__stats  { grid-template-columns: repeat(2, 1fr); }
  .telehealth__gallery{ grid-template-columns: repeat(2, 1fr); }
  .event-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  .book { flex-direction: column; align-items: center; text-align: center; }
  .initiative-card { flex-direction: column; text-align: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.3rem; text-align: center; }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .hero__actions { flex-direction: column; }
  .hero__trust-logos { gap: 1rem; }
}

/* =========================================
   SCROLL PROGRESS BAR
   ========================================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  z-index: 2000;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: width 0.1s linear;
  pointer-events: none;
}

/* =========================================
   HERO SVG BLOBS
   ========================================= */
.hero__svg-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.blob-1 {
  animation: blobFloat 18s ease-in-out infinite;
  transform-origin: 920px 180px;
}
.blob-2 {
  animation: blobFloat 22s ease-in-out infinite reverse;
  transform-origin: 180px 520px;
}
.blob-3 {
  animation: blobPulse 14s ease-in-out infinite;
  transform-origin: 580px 360px;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -22px) scale(1.05); }
  66%       { transform: translate(-18px, 14px) scale(0.97); }
}
@keyframes blobPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.12); opacity: 0.65; }
}

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 27, 32, 0.92);
}
.lightbox__img-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox__img-wrap img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.lightbox__caption {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.9rem;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
  line-height: 1;
}
.lightbox__close {
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
}
.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
}
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.22);
}
@media (max-width: 768px) {
  .lightbox__prev { left: 0.5rem; }
  .lightbox__next { right: 0.5rem; }
  .lightbox__prev,
  .lightbox__next { width: 40px; height: 40px; font-size: 1.5rem; }
}
