

/* ---------- CSS RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Calming palette */
  /* --sage: #9CAF88;
  --sage-deep: #6E8B5C;
  --sage-soft: #C9D7BC;
  --beige: #E8DDC9;
  --beige-soft: #F2EBDC;
  --cream: #FAF6EE;
  --off-white: #FCFAF5;
  --lavender: #C8B6E2;
  --lavender-soft: #E5DCF0;
  --rose: #E8C5C5;
  --gold: #C9A961; */
  --sage: #E38B3D;
  --sage-deep: #A64B00;
  --sage-soft: #F2B880;
  --beige: #E8DDC9;
  --beige-soft: #F2EBDC;
  --cream: #FAF6EE;
  --off-white: #FCFAF5;
  --lavender: #F8D7B5;
  --lavender-soft: #fcb880;
  --rose: #FFFDFC;
  --gold: #C9A961;

  /* Theme aliases */
  --bg: var(--off-white);
  --bg-alt: var(--cream);
  --bg-section: #F4EFE3;
  --surface: rgba(255, 255, 255, 0.6);
  --surface-solid: #FFFFFF;
  --border: rgba(110, 139, 92, 0.18);
  --border-soft: rgba(110, 139, 92, 0.1);

  --text: #2D3B2F;
  --text-muted: #5C6B5E;
  --text-soft: #8A9388;

  --accent: var(--sage-deep);
  --accent-hover: #E38B3D;
  --accent-light: var(--sage-soft);

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(110, 139, 92, 0.08);
  --shadow-md: 0 8px 32px rgba(110, 139, 92, 0.12);
  --shadow-lg: 0 20px 60px rgba(110, 139, 92, 0.18);
  --shadow-glow: 0 0 40px rgba(156, 175, 136, 0.35);

  /* Radius */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 48px;
  --r-pill: 999px;

  /* Typography */
  --font-display: 'Fraunces', 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section-py: clamp(4rem, 9vw, 7rem);

  /* Transitions */
  --t-fast: .25s cubic-bezier(.4,0,.2,1);
  --t-med: .45s cubic-bezier(.4,0,.2,1);
  --t-slow: .8s cubic-bezier(.4,0,.2,1);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variation-settings: "SOFT" 50, "WONK" 0;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.25rem; }
p { color: var(--text-muted); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--sage-deep);
  padding: .5rem 1rem;
  background: rgba(156, 175, 136, 0.12);
  border-radius: var(--r-pill);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content:''; width: 18px; height: 1px; background: var(--sage-deep);
}
.italic-script { font-style: italic; font-weight: 300; color: var(--sage-deep); }

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section { padding-block: var(--section-py); position: relative; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-head p { margin-top: 1rem; font-size: 1.05rem; }
.grid { display: grid; gap: 1.5rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .65rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .01em;
  border-radius: var(--r-pill);
  transition: all var(--t-med);
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn i { font-size: .9rem; transition: transform var(--t-fast); }
.btn:hover i { transform: translateX(3px); }
.btn-primary {
  background: var(--sage-deep);
  color: var(--off-white);
  box-shadow: 0 8px 24px rgba(110, 139, 92, 0.25);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(110, 139, 92, 0.35);
}
.btn-ghost {
  background: rgba(255,255,255,0.6);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.9);
  border-color: var(--sage-deep);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--sage-deep);
  border: 1px solid var(--sage-deep);
}
.btn-outline:hover {
  background: var(--sage-deep);
  color: var(--off-white);
}
.btn-lavender {
  background: var(--lavender);
  color: #4A3D6B;
}
.btn-lavender:hover { background: #B8A4D6; transform: translateY(-2px); }
.btn-lg { padding: 1.15rem 2.4rem; font-size: 1rem; }
.btn-sm { padding: .65rem 1.25rem; font-size: .85rem; }
.btn-link {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--sage-deep); font-weight: 500;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all var(--t-fast);
}
.btn-link:hover { gap: .75rem; border-color: var(--sage-deep); }

/* ---------- PRELOADER ---------- */
#preloader {
  position: fixed; inset: 0;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-leaf {
  width: 64px; height: 64px;
  position: relative;
}
.loader-leaf::before, .loader-leaf::after {
  content:''; position: absolute; inset: 0;
  border-radius: 50% 0 50% 50%;
  background: var(--sage);
  animation: leafPulse 1.4s ease-in-out infinite;
}
.loader-leaf::after {
  background: var(--lavender);
  transform: rotate(180deg);
  animation-delay: .7s;
}
@keyframes leafPulse {
  0%, 100% { transform: scale(.8); opacity: .5; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* ---------- SCROLL PROGRESS ---------- */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--sage), var(--lavender));
  z-index: 9999;
  transition: width .1s linear;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--t-med);
}
.navbar.scrolled {
  background: rgba(252, 250, 245, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 20px rgba(110, 139, 92, 0.08);
  padding: .65rem 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.brand {
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -.01em;
}
.brand-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--sage), var(--lavender));
  border-radius: 50% 0 50% 50%;
  display: grid; place-items: center;
  color: white;
  transform: rotate(-15deg);
  transition: transform var(--t-med);
}
.brand-mark i { transform: rotate(15deg); font-size: 1rem; }
.brand:hover .brand-mark { transform: rotate(0deg); }
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}

.nav-links {
  display: flex; align-items: center; gap: .35rem;
}
.nav-links a {
  position: relative;
  padding: .55rem 1rem;
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 500;
  border-radius: var(--r-pill);
  transition: all var(--t-fast);
}
.nav-links a:hover { color: var(--sage-deep); background: rgba(156,175,136,0.1); }
.nav-links a.active { color: var(--sage-deep); background: rgba(156,175,136,0.15); }

.nav-cta { display: flex; align-items: center; gap: .75rem; }

/* Hamburger */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  border-radius: 50%;
  position: relative;
  backdrop-filter: blur(8px);
  transition: all var(--t-fast);
}
.hamburger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px; height: 1.5px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: all .35s ease;
}
.hamburger span:nth-child(1) { transform: translate(-50%, calc(-50% - 5px)); }
.hamburger span:nth-child(3) { transform: translate(-50%, calc(-50% + 5px)); }
.hamburger.open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(252, 250, 245, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.7,0,.3,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: .25rem; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 300;
  color: var(--text);
  padding: .65rem 0;
  border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: space-between;
  transition: padding-left .3s ease, color .3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease;
}
.mobile-menu.open a:nth-child(1) { transition-delay: .1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: .15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: .2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: .25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: .3s; }
.mobile-menu.open a:nth-child(6) { transition-delay: .35s; }
.mobile-menu.open a:nth-child(7) { transition-delay: .4s; }
.mobile-menu.open a:nth-child(8) { transition-delay: .45s; }
.mobile-menu.open a:nth-child(9) { transition-delay: .5s; }
.mobile-menu.open a:nth-child(10) { transition-delay: .55s; }
.mobile-menu a:hover { padding-left: .65rem; color: var(--sage-deep); }
.mobile-menu a i { color: var(--sage); font-size: .9rem; }
.mobile-menu-foot {
  margin-top: auto;
  padding-top: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.mobile-menu-foot .btn { width: 100%; }
.mobile-socials {
  display: flex; gap: 1rem; justify-content: center;
  padding-top: 1rem;
}
.mobile-socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--sage-deep);
  font-size: 1.05rem;
  padding: 0;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(200, 182, 226, 0.35), transparent 50%),
    radial-gradient(ellipse at 100% 80%, rgba(156, 175, 136, 0.4), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(232, 221, 201, 0.6), transparent 60%),
    var(--off-white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero-text h1 {
  margin-bottom: 1.5rem;
}
.hero-text h1 em {
  font-style: normal;
  font-weight: 300;
  color: var(--sage-deep);
  background: linear-gradient(120deg, var(--sage-deep), var(--lavender));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text p {
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--sage-deep);
  line-height: 1;
}
.stat-num span { font-size: 1.2rem; }
.stat-label { font-size: .8rem; color: var(--text-soft); margin-top: .35rem; letter-spacing: .05em; }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: visible;
}
.hero-img-frame {
  position: relative;
  height: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
}
.hero-img-frame:hover img { transform: scale(1.04); }

/* Floating cards on hero */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .85rem;
  animation: float 6s ease-in-out infinite;
}
.float-card-1 {
  top: 8%; left: -8%;
  animation-delay: 0s;
}
.float-card-2 {
  bottom: 12%; right: -5%;
  animation-delay: 1.5s;
}
.float-card-3 {
  bottom: 35%; left: -10%;
  animation-delay: 3s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: .95rem;
}
.float-icon.sage { background: var(--sage-soft); color: var(--sage-deep); }
.float-icon.lavender { background: var(--lavender-soft); color: #6B5B95; }
.float-icon.beige { background: var(--beige); color: var(--gold); }
.float-card div small { display: block; font-size: .7rem; color: var(--text-soft); }
.float-card div strong { font-family: var(--font-display); font-weight: 500; font-size: .95rem; }

/* Floating background shapes */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  z-index: -1;
  pointer-events: none;
}
.bg-shape-1 { width: 380px; height: 380px; background: var(--sage-soft); top: 10%; left: -8%; animation: drift 20s ease-in-out infinite; }
.bg-shape-2 { width: 320px; height: 320px; background: var(--lavender-soft); top: 50%; right: -6%; animation: drift 25s ease-in-out infinite reverse; }
.bg-shape-3 { width: 260px; height: 260px; background: var(--beige); bottom: 5%; left: 35%; animation: drift 30s ease-in-out infinite; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 40px) scale(.95); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--text-soft);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.scroll-indicator::after {
  content:'';
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--sage-deep), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- ABOUT (sheena) ---------- */
.about-section { background: var(--bg-section); }
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
}
.about-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.about-image-wrap::before {
  content:'';
  position: absolute; inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  border: 1px solid var(--sage);
  border-radius: var(--r-lg);
  z-index: -1;
}
.about-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--off-white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 1rem;
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--sage-deep);
  line-height: 1;
}
.about-badge-text { font-size: .85rem; color: var(--text-muted); max-width: 100px; }

.qual-list { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.qual-item {
  display: flex; gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--surface-solid);
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
  transition: all var(--t-med);
}
.qual-item:hover {
  border-color: var(--sage);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.qual-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-deep);
  display: grid; place-items: center;
}
.qual-item h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: .25rem; }
.qual-item p { font-size: .85rem; }

/* ---------- MISSION ---------- */
.mission-section {
  background: linear-gradient(180deg, var(--off-white), var(--cream));
  position: relative;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.mission-card {
  background: var(--surface-solid);
  padding: 2rem 1.75rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
  transition: all var(--t-med);
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content:'';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--lavender));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}
.mission-card:hover::before { transform: scaleX(1); }
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage);
}
.mission-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--sage-soft), var(--lavender-soft));
  display: grid; place-items: center;
  color: var(--sage-deep);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}
.mission-card h4 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: .65rem; }
.mission-card p { font-size: .9rem; }

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--surface-solid);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--border-soft);
  transition: all var(--t-med);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content:'';
  position: absolute;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(156,175,136,0.15) 0%, transparent 50%);
  top: -100%; left: -100%;
  transition: all .8s ease;
  pointer-events: none;
}
.service-card:hover::after { top: -50%; left: -50%; }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage);
}
.service-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: var(--sage-soft);
  color: var(--sage-deep);
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all var(--t-med);
}
.service-card:nth-child(2n) .service-icon { background: var(--lavender-soft); color: #6B5B95; }
.service-card:nth-child(3n) .service-icon { background: var(--beige); color: var(--gold); }
.service-card:nth-child(4n) .service-icon { background: var(--rose); color: #B07070; }
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--shadow-glow);
}
.service-card h3 { font-size: 1.3rem; margin-bottom: .75rem; }
.service-card p { font-size: .9rem; margin-bottom: 1.5rem; min-height: 60px; }

/* ---------- THERAPY APPROACHES ---------- */
.therapy-section { background: var(--bg-section); }
.therapy-tabs {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 3rem;
}
.therapy-tab {
  padding: .85rem 1.5rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 500;
  font-size: .9rem;
  transition: all var(--t-fast);
}
.therapy-tab:hover { background: rgba(255,255,255,1); color: var(--sage-deep); }
.therapy-tab.active {
  background: var(--sage-deep);
  color: var(--off-white);
  border-color: var(--sage-deep);
  box-shadow: var(--shadow-glow);
}
.therapy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--surface-solid);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
  align-items: center;
}
.therapy-pane { display: none; }
.therapy-pane.active { display: contents; animation: fadeUp .5s ease; }
.therapy-pane h3 { margin-bottom: 1rem; }
.therapy-pane p { margin-bottom: 1.5rem; }
.therapy-bullets li {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .65rem 0;
  font-size: .95rem;
  color: var(--text-muted);
}
.therapy-bullets li i {
  color: var(--sage-deep);
  font-size: 1rem;
  margin-top: .25rem;
}
.therapy-image {
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.therapy-image img { width: 100%; height: 100%; object-fit: cover; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- WORK HOURS ---------- */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.hour-card {
  background: var(--surface-solid);
  border-radius: var(--r-md);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-soft);
  text-align: center;
  transition: all var(--t-med);
  position: relative;
}
.hour-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: var(--lavender);
}
.hour-day-icon {
  width: 52px; height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender-soft), var(--sage-soft));
  display: grid; place-items: center;
  color: var(--sage-deep);
  font-size: 1.2rem;
}
.hour-day {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: .35rem;
  color: var(--text);
}
.hour-time {
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: var(--sage-deep);
  font-weight: 400;
  letter-spacing: -.01em;
}
.hour-time small { font-size: .65rem; color: var(--text-soft); display: block; margin-top: .25rem; letter-spacing: .15em; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  background: linear-gradient(180deg, var(--cream), var(--bg-section));
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--t-med);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: rgba(255,255,255,0.9);
}
.testimonial-card .quote-mark {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--sage-soft);
  line-height: 1;
  opacity: .8;
}
.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-soft);
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--lavender));
  display: grid; place-items: center;
  color: white;
  font-family: var(--font-display);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: .95rem; }
.testimonial-role { font-size: .8rem; color: var(--text-soft); }
.stars { color: var(--gold); font-size: .85rem; margin-bottom: .85rem; letter-spacing: .15em; }

/* ---------- BLOGS PREVIEW ---------- */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--surface-solid);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: all var(--t-med);
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.blog-image-aspect{
    aspect-ratio: 9/10 !important;
  overflow: hidden;
  position: relative;
}
.blog-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.blog-card:hover .blog-image img { transform: scale(1.08); }
.blog-tag {
  position: absolute; top: 1rem; left: 1rem;
  padding: .35rem .85rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  font-size: .7rem;
  font-weight: 500;
  color: var(--sage-deep);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.blog-body {
  padding: 1.75rem;
  flex: 1;
  display: flex; flex-direction: column;
}
.blog-meta {
  display: flex; gap: 1rem;
  font-size: .8rem;
  color: var(--text-soft);
  margin-bottom: .75rem;
}
.blog-meta i { color: var(--sage); margin-right: .35rem; }
.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: .65rem;
  flex: 1;
}
.blog-card h3 a:hover { color: var(--sage-deep); }
.blog-excerpt { font-size: .9rem; margin-bottom: 1.25rem; }

/* ---------- BOOKING / FORMS ---------- */
.booking-section {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.booking-info h2 { margin-bottom: 1rem; }
.booking-features { margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.booking-feature {
  display: flex; gap: 1rem; align-items: flex-start;
}
.booking-feature i {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-deep);
  display: grid; place-items: center;
  font-size: .85rem;
}
.booking-feature h4 { font-family: var(--font-body); font-weight: 600; font-size: .95rem; margin-bottom: .25rem; }
.booking-feature p { font-size: .85rem; }

.booking-form {
  background: var(--surface-solid);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  position: relative;
  margin-bottom: 1.25rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1.15rem 1rem .55rem;
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  color: var(--text);
  transition: all var(--t-fast);
  outline: none;
}
.form-group textarea { min-height: 120px; resize: vertical; padding-top: 1.5rem; }
.form-group label {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: .9rem;
  color: var(--text-soft);
  pointer-events: none;
  transition: all var(--t-fast);
  background: transparent;
  padding: 0 .25rem;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sage-deep);
  background: var(--off-white);
  box-shadow: 0 0 0 3px rgba(156, 175, 136, 0.15);
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label {
  top: -.55rem;
  left: .85rem;
  font-size: .7rem;
  color: var(--sage-deep);
  background: var(--surface-solid);
  font-weight: 500;
}
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23A64B00' d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

/* ---------- PAYMENT ---------- */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.pay-card {
  background: var(--surface-solid);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border-soft);
  position: relative;
  transition: all var(--t-med);
  display: flex; flex-direction: column;
}
.pay-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pay-card.featured {
  background: linear-gradient(160deg, var(--sage-deep), #4F6B43);
  color: var(--off-white);
  border-color: transparent;
}
.pay-card.featured h3, .pay-card.featured .pay-amt { color: var(--off-white); }
.pay-card.featured p, .pay-card.featured .pay-features li { color: rgba(255,255,255,.85); }
.pay-card.featured .pay-features li i { color: var(--lavender); }
.pay-tag {
  position: absolute; top: 1.25rem; right: 1.25rem;
  padding: .35rem .85rem;
  background: var(--lavender);
  color: #4A3D6B;
  border-radius: var(--r-pill);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.pay-name { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: .5rem; }
.pay-desc { font-size: .9rem; margin-bottom: 1.5rem; }
.pay-amt {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--sage-deep);
  line-height: 1;
  margin-bottom: 1.75rem;
}
.pay-amt small { font-size: .9rem; color: var(--text-soft); font-family: var(--font-body); }
.pay-features { margin-bottom: 2rem; flex: 1; }
.pay-features li {
  padding: .55rem 0;
  font-size: .9rem;
  color: var(--text-muted);
  display: flex; align-items: center; gap: .65rem;
}
.pay-features li i { color: var(--sage-deep); font-size: .85rem; }
.pay-card .btn { width: 100%; }

.payment-methods {
  display: flex; justify-content: center; align-items: center;
  gap: 2rem; flex-wrap: wrap;
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(255,255,255,0.5);
  border-radius: var(--r-md);
  backdrop-filter: blur(10px);
}
.payment-methods span { font-size: .85rem; color: var(--text-soft); letter-spacing: .15em; text-transform: uppercase; }
.payment-methods i { font-size: 2rem; color: var(--text-muted); transition: color var(--t-fast); }
.payment-methods i:hover { color: var(--sage-deep); }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.contact-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--surface-solid);
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
  transition: all var(--t-med);
}
.contact-item:hover {
  border-color: var(--sage);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-soft), var(--lavender-soft));
  color: var(--sage-deep);
  display: grid; place-items: center;
}
.contact-item h4 { font-family: var(--font-body); font-weight: 600; font-size: .95rem; }
.contact-item p { font-size: .9rem; }
.contact-item a:hover { color: var(--sage-deep); }

.map-frame {
  margin-top: 3rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 320px;
  border: 1px solid var(--border);
  background: var(--cream);
  position: relative;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: hue-rotate(15deg) saturate(.8); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 3rem auto 0; }
.faq-item {
  background: var(--surface-solid);
  border-radius: var(--r-md);
  margin-bottom: 1rem;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: all var(--t-med);
}
.faq-item:hover { border-color: var(--sage); }
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--sage); }
.faq-q {
  width: 100%;
  padding: 1.5rem 1.75rem;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  gap: 1rem;
  cursor: pointer;
}
.faq-q i {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-deep);
  display: grid; place-items: center;
  font-size: .8rem;
  transition: transform var(--t-med);
}
.faq-item.open .faq-q i { transform: rotate(45deg); background: var(--sage-deep); color: var(--off-white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease, padding .3s ease;
  padding: 0 1.75rem;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 1.75rem 1.5rem; }

/* ---------- CTA STRIP ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--sage-deep), #f5be8e);
  padding: 4rem 2rem;
  border-radius: var(--r-xl);
  text-align: center;
  margin: 4rem auto;
  max-width: calc(var(--container) - 2rem);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content:'';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(200,182,226,.4), transparent 50%);
}
.cta-strip h2 { color: var(--off-white); position: relative; }
.cta-strip p { color: rgba(255,255,255,.85); max-width: 580px; margin: 1rem auto 2rem; position: relative; }
.cta-strip .btn-primary { background: var(--off-white); color: var(--sage-deep); position: relative; }
.cta-strip .btn-primary:hover { background: var(--lavender); color: #4A3D6B; }
.cta-strip .btn-ghost { background: transparent; color: var(--off-white); border-color: rgba(255,255,255,.4); position: relative; }
.cta-strip .btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--off-white); }

/* ---------- FOOTER ---------- */
.footer {
  background: linear-gradient(180deg, var(--bg-section), #DBD2C0);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content:'';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,182,226,.3), transparent 60%);
  top: -300px; right: -150px;
  border-radius: 50%;
  animation: drift 20s ease-in-out infinite;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}
.footer-brand p { font-size: .9rem; margin: 1rem 0 1.5rem; max-width: 320px; }
.footer-socials { display: flex; gap: .75rem; }
.footer-socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--surface-solid);
  display: grid; place-items: center;
  color: var(--sage-deep);
  border: 1px solid var(--border-soft);
  transition: all var(--t-fast);
}
.footer-socials a:hover {
  background: var(--sage-deep);
  color: var(--off-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a {
  font-size: .9rem;
  color: var(--text-muted);
  position: relative;
  display: inline-block;
}
.footer-col a:hover { color: var(--sage-deep); padding-left: .5rem; }
.newsletter { display: flex; flex-direction: column; gap: .75rem; }
.newsletter input {
  padding: .85rem 1rem;
  background: var(--surface-solid);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-pill);
  font-size: .9rem;
  outline: none;
}
.newsletter input:focus { border-color: var(--sage-deep); }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 1.5rem 0;
  text-align: center;
  font-size: .85rem;
  color: var(--text-soft);
  position: relative;
}
.footer-bottom a:hover { color: var(--sage-deep); }

/* ---------- WHATSAPP & SCROLL TOP ---------- */
.fab-whatsapp, .fab-scroll-top {
  position: fixed;
  z-index: 99;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--t-med);
  cursor: pointer;
  font-size: 1.4rem;
}
.fab-whatsapp {
  bottom: 1.5rem; right: 1.5rem;
  background: #25D366;
  color: white;
  animation: pulse 2.5s ease-in-out infinite;
}
.fab-whatsapp:hover { transform: scale(1.1); animation: none; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5), var(--shadow-lg); }
  50% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0), var(--shadow-lg); }
}
.fab-scroll-top {
  bottom: 6rem; right: 1.5rem;
  background: var(--surface-solid);
  color: var(--sage-deep);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  font-size: 1rem;
}
.fab-scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.fab-scroll-top:hover { background: var(--sage-deep); color: var(--off-white); }

/* ---------- MOBILE BOTTOM NAV ---------- */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 95;
  background: rgba(252, 250, 245, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--r-pill);
  padding: .5rem;
  box-shadow: 0 10px 40px rgba(110, 139, 92, 0.2);
  justify-content: space-around;
}
.bottom-nav a {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: .15rem;
  padding: .55rem .25rem;
  border-radius: var(--r-pill);
  font-size: .65rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .03em;
  transition: all var(--t-fast);
  position: relative;
}
.bottom-nav a i { font-size: 1.05rem; }
.bottom-nav a.active {
  background: var(--sage-deep);
  color: var(--off-white);
  box-shadow: var(--shadow-glow);
}

/* ---------- PAGE HEADER (inner pages) ---------- */
.page-header {
  padding: 9rem 0 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(200, 182, 226, 0.3), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(156, 175, 136, 0.3), transparent 50%),
    var(--cream);
  position: relative;
  overflow: hidden;
}
.page-header h1 {
  margin-bottom: 1rem;
}
.breadcrumb {
  display: flex; justify-content: center; gap: .5rem;
  font-size: .85rem;
  color: var(--text-soft);
  margin-top: 1rem;
}
.breadcrumb a:hover { color: var(--sage-deep); }
.breadcrumb i { font-size: .65rem; align-self: center; color: var(--sage); }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(-30px); }
.reveal-left.visible { transform: translateX(0); }
.reveal-right { transform: translateX(30px); }
.reveal-right.visible { transform: translateX(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .booking-grid, .contact-grid, .therapy-content {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; padding-top: 7rem; }
  .float-card-1, .float-card-3 { left: 0; }
  .float-card-2 { right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  body { padding-bottom: 5.5rem; } /* room for bottom nav */
  .nav-links, .nav-cta .btn:not(.hamburger) { display: none; }
  .hamburger { display: grid; place-items: center; }
  .bottom-nav { display: flex; }
  .fab-whatsapp { bottom: 5.5rem; right: 1rem; width: 48px; height: 48px; font-size: 1.2rem; }
  .fab-scroll-top { bottom: 9rem; right: 1rem; width: 42px; height: 42px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .therapy-content { padding: 1.5rem; }
  .cta-strip { padding: 3rem 1.5rem; margin: 2rem auto; border-radius: var(--r-lg); }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; }
  .float-card { display: none; }
  .float-card-1 { display: flex; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Selection */
::selection { background: var(--sage); color: var(--off-white); }
::-moz-selection { background: var(--sage); color: var(--off-white); }

.press-section {
  background: linear-gradient(180deg, var(--cream), var(--bg-section));
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.press-card {
  background: var(--surface-solid);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.press-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--lavender));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s ease;
}
.press-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage);
}
.press-card:hover::before {
  transform: scaleX(1);
}
.press-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.press-source-badge {
  font-size: .7rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: var(--r-pill);
  background: var(--sage-soft);
  color: var(--sage-deep);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.press-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-deep);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform .45s cubic-bezier(0.34, 1.56, 0.64, 1), background var(--t-fast), color var(--t-fast);
}
.press-card:hover .press-icon {
  transform: rotate(-12deg) scale(1.08);
  background: var(--sage-deep);
  color: #fff;
}
.press-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  flex: 1;
}
.press-link-row {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--sage-deep);
  padding-top: .75rem;
  border-top: 1px solid var(--border-soft);
}
.press-link-row i {
  font-size: .8rem;
  transition: transform .35s ease;
}
.press-card:hover .press-link-row i {
  transform: translate(4px, -4px);
}
 
@media (max-width: 600px) {
  .press-card { padding: 1.4rem; }
  .press-title { font-size: .98rem; }
}
