/* ═══════════════════════════════════════════════
   UPSELF — Warm Therapeutic Design System
   ═══════════════════════════════════════════════ */

/* ── TOKENS ───────────────────────────────────── */
:root {
  /* Backgrounds */
  --c-bg: #ffffff;
  /* Pure White */
  --c-bg-light: #ffedea;
  --c-bg-warm: #ffd4cf;
  --c-cream: #ffffff;

  /* Primary Texts */
  --c-brown-1: #1c1917;
  /* Stone-900 (Primary text/titles) */
  --c-brown-2: #57534e;
  /* Stone-600 (Body text/Primary) */
  --c-brown-3: #78716c;
  /* Stone-500 (Muted text) */
  --c-brown-4: #a8a29e;
  /* Stone-400 (Light Gray) */

  /* Navy Primary */
  --c-terra: #262f71;
  /* Navy */
  --c-terra-h: #1a204c;
  /* Darker Navy */
  --c-terra-l: rgba(38, 47, 113, 0.1);
  /* Light Navy Bg */

  /* Accents */
  --c-sage: #ffd4cf;
  /* Peach/Pink */
  --c-sage-l: #ffedea;
  /* Light Peach */
  --c-rose: #FFF3C4;
  /* Golden Yellow */
  --c-rose-l: #fdf6e0;
  /* Light Yellow */
  --c-pink: #d96f83;
  /* Solid Pink (for active tabs) */

  --c-white: #ffffff;
  --c-border: rgba(0, 0, 0, 0.08);

  --font: 'Varela Round', sans-serif;

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);

  --nav-h: 90px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ─────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background-color: var(--c-bg);
  color: var(--c-brown-2);
  line-height: 1.8;
  direction: rtl;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ── TYPOGRAPHY ───────────────────────────────── */
h1,
h2,
h3,
h4 {
  color: var(--c-brown-1);
  line-height: 1.3;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  color: var(--c-brown-1);
  font-weight: 600;
}

em {
  font-style: normal;
  color: var(--c-terra);
}

/* ── LAYOUT ───────────────────────────────────── */
.container {
  width: min(1000px, 90%);
  margin-inline: auto;
}

.section {
  padding-block: clamp(80px, 8vw, 120px);
}

.section--light {
  background-color: var(--c-bg-light);
}

.section--warm {
  background-color: var(--c-bg-warm);
}

.text-center {
  text-align: center;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-terra);
  background: var(--c-terra-l);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section__title {
  margin-bottom: 1.2rem;
}

.section__intro {
  font-size: 1.1rem;
  color: var(--c-brown-3);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-terra);
  color: var(--c-white);
  border-color: var(--c-terra);
}

.btn--primary:hover {
  background: var(--c-terra-h);
  border-color: var(--c-terra-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 114, 83, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--c-brown-2);
  border-color: var(--c-border);
}

.btn--ghost:hover {
  border-color: var(--c-brown-3);
  background: rgba(61, 43, 31, 0.04);
}

.btn--outline {
  background: transparent;
  color: var(--c-brown-2);
  border-color: var(--c-brown-4);
}

.btn--outline:hover {
  background: var(--c-terra);
  color: var(--c-white);
  border-color: var(--c-terra);
}

.btn--large {
  padding: 18px 48px;
  font-size: 1.1rem;
}

/* ── NAVIGATION ───────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--c-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  width: min(1200px, 90%);
  margin-inline: auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.nav__logo img {
  height: 40px;
  width: auto;
  max-width: 250px;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.nav__logo:hover img {
  transform: scale(1.05);
}

.footer-logo-img {
  height: 60px;
  /* Reduced from 90px to fix overwhelming footer */
  width: auto;
  max-width: 200px;
  margin-bottom: 20px;
  display: block;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-brown-2);
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--c-terra);
}

.nav__links a.active {
  color: var(--c-pink);
  font-weight: 700;
}

.nav__cta {
  background: var(--c-terra);
  color: var(--c-white) !important;
  padding: 10px 24px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(45, 58, 109, 0.2);
  transition: all var(--transition);
}

.nav__cta:hover {
  background: var(--c-terra-h) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 58, 109, 0.3);
}

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

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-brown-1);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  padding: 16px;
}

.nav__mobile a {
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-brown-2);
  border-bottom: none;
  border-radius: 12px;
  transition: background var(--transition);
}

.nav__mobile a:hover,
.nav__mobile a.active {
  background: var(--c-bg-light);
  color: var(--c-terra);
}

.nav__mobile a.nav__cta {
  background: var(--c-terra);
  color: var(--c-white);
  text-align: center;
  margin-top: 16px;
  border-radius: 100px;
}

@media (max-width: 768px) {

  .nav__links,
  .desktop-only {
    display: none !important;
  }

  .nav__burger {
    display: flex;
  }

  .nav__mobile.open {
    display: flex;
  }
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-block: calc(var(--nav-h) + 20px) 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e8eaf6 0%, #f3e5f5 25%, #fce4ec 50%, #fff8e1 75%, #e8eaf6 100%);
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  z-index: 0;
}

.hero__blob--1 {
  top: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 243, 196, 0.6);
  animation: pulseBlob1 8s infinite alternate ease-in-out;
}

.hero__blob--2 {
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(45, 58, 109, 0.1);
  animation: pulseBlob2 10s infinite alternate ease-in-out;
}

.hero__blob--3 {
  top: 40%;
  right: 30%;
  width: 300px;
  height: 300px;
  background: rgba(45, 58, 109, 0.06);
  animation: pulseBlob2 14s infinite alternate ease-in-out;
}

/* Yellow Light Dots */
.hero__dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 243, 196, 0.7);
  pointer-events: none;
  z-index: 1;
  animation: dotPulse 4s infinite alternate ease-in-out;
}

.hero__dot--1 {
  width: 12px;
  height: 12px;
  top: 18%;
  left: 15%;
  animation-delay: 0s;
}

.hero__dot--2 {
  width: 8px;
  height: 8px;
  top: 35%;
  right: 20%;
  animation-delay: 0.8s;
}

.hero__dot--3 {
  width: 14px;
  height: 14px;
  bottom: 25%;
  left: 25%;
  animation-delay: 1.6s;
}

.hero__dot--4 {
  width: 10px;
  height: 10px;
  top: 60%;
  right: 12%;
  animation-delay: 2.4s;
}

.hero__dot--5 {
  width: 6px;
  height: 6px;
  bottom: 15%;
  right: 35%;
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }

  100% {
    opacity: 0.9;
    transform: scale(1.6);
  }
}

@keyframes pulseBlob1 {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

@keyframes pulseBlob2 {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

/* FLOATING IMAGES */
.hero__float {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: none;
}

@media (min-width: 900px) {
  .hero__float {
    display: block;
  }
}

.hero__float--1 {
  width: 150px;
  height: 150px;
  top: 18%;
  right: 4%;
  animation: float1 6s infinite ease-in-out;
}

.hero__float--2 {
  width: 130px;
  height: 130px;
  bottom: 12%;
  left: 4%;
  animation: float2 7s infinite ease-in-out reverse;
}

.hero__float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero__float:hover img {
  transform: scale(1.08) rotate(2deg);
}

.hero__float-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 58, 109, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero__float:hover .hero__float-overlay {
  opacity: 1;
}

.hero__float-overlay p {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-12px) rotate(-2deg);
  }
}

/* HERO CONTENT */
.hero__content {
  text-align: center;
  max-width: 820px;
  position: relative;
  z-index: 10;
}

.hero__tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-terra);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  padding: 8px 24px;
  border-radius: 100px;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  white-space: nowrap;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--c-terra);
  margin-bottom: 3rem;
  line-height: 1.15;
}

.hero__title-sub {
  font-weight: 300;
  color: rgba(45, 58, 109, 0.6);
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(45, 58, 109, 0.75);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero__keyword {
  color: #e8828a;
  font-weight: 700;
  font-size: 1.2em;
}

.hero__emphasis {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--c-terra);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* Hero text entrance animations */
.hero__title--animate {
  animation: fadeSlideUp 0.8s ease both;
}

.hero__sub--animate {
  animation: fadeSlideUp 0.8s ease both;
  animation-delay: 0.2s;
}

.hero__emphasis--animate {
  animation: fadeSlideUp 0.8s ease both;
  animation-delay: 0.6s;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BREATHING LOGO WAVE */
.logo-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  gap: 12px;
  margin-bottom: 3rem;
  overflow: hidden;
}

.logo-wave i {
  display: block;
  flex-shrink: 0;
  width: 8px;
  border-radius: 4px;
  height: var(--base-h, 10px);
  animation: breathePill 5s ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
  opacity: 0.8;
}

.logo-wave i:nth-child(4n+1) {
  background: var(--c-sage);
}

.logo-wave i:nth-child(4n+2) {
  background: #96A1B8;
  /* soft blue-grey */
}

.logo-wave i:nth-child(4n+3) {
  background: var(--c-rose);
}

.logo-wave i:nth-child(4n) {
  background: var(--c-sage-l);
}

@keyframes breathePill {
  0% {
    height: var(--base-h);
    opacity: 0.5;
  }

  100% {
    height: calc(var(--base-h) * 2.5);
    opacity: 1;
  }
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.shadow-cta {
  box-shadow: 0 8px 32px rgba(45, 58, 109, 0.25);
}

/* ── THE GAP ──────────────────────────────────── */
.gap__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .gap__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.gap__visual {
  position: relative;
  height: 380px;
}

.gap__circle {
  position: absolute;
  border-radius: 50%;
}

.gap__circle--1 {
  width: 300px;
  height: 300px;
  background: var(--c-terra-l);
  top: 0;
  left: 0;
}

.gap__circle--2 {
  width: 200px;
  height: 200px;
  background: var(--c-sage-l);
  bottom: 0;
  right: 20px;
}

.gap__quote {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
  width: 90%;
  max-width: 320px;
}

.gap__quote p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-brown-2);
  margin-bottom: 0.5rem;
}

.gap__quote--accent {
  color: var(--c-terra) !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
}

/* ── WHO COMES ────────────────────────────────── */
.who__cards--personas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .who__cards--personas {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
}

.who__persona {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--c-white);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}

/* Text-only card variant */
.who__persona--text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  min-height: 280px;
  box-shadow: 0 8px 32px rgba(45, 58, 109, 0.1);
  overflow: visible;
}

.who__persona--text p {
  font-size: 1.1rem;
  color: var(--c-brown-2);
  line-height: 1.7;
  margin: 0;
}

.who__persona--text p strong {
  font-size: 1.15rem;
  color: var(--c-terra);
  display: block;
  margin-bottom: 6px;
}

.who__persona-icon {
  font-size: 1.8rem;
  color: var(--c-terra);
  margin-bottom: 20px;
  line-height: 1;
}

.who__persona:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.who__persona img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.who__persona:hover img {
  transform: scale(1.05);
}

.who__persona h4 {
  padding: 16px 20px 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-terra);
  text-align: center;
}

.who__persona-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 47, 113, 0.15) 0%, rgba(38, 47, 113, 0.85) 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.who__persona:hover .who__persona-overlay {
  opacity: 1;
}

.who__persona-overlay p {
  color: var(--c-white);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

.who__bottom {
  margin-top: 60px;
  max-width: 800px;
  margin-inline: auto;
  background: var(--c-white);
  padding: 40px;
  border-radius: var(--r-xl);
  box-shadow: 0 10px 40px rgba(45, 58, 109, 0.08);
  border: 1px solid var(--c-sage);
  position: relative;
}

.who__bottom::before {
  content: '✦';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-bg);
  color: var(--c-terra);
  font-size: 1.5rem;
  padding: 0 16px;
}

.who__bottom-title {
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-weight: 700;
  color: var(--c-brown-1);
  line-height: 1.4;
  margin-bottom: 20px;
}

.who__bottom-highlight {
  font-size: clamp(1.3rem, 3.5vw, 1.6rem);
  color: var(--c-terra);
  line-height: 1.2;
}

.who__bottom-highlight strong {
  font-weight: 700;
  background: linear-gradient(120deg, transparent 0%, transparent 6%, var(--c-sage-l) 6%, var(--c-sage-l) 94%, transparent 100%);
  padding: 0 8px;
}

/* ── METHOD STEPS ─────────────────────────────── */
.method__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin-inline: auto;
}

.method__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding-block: 48px;
  border-bottom: 1px solid var(--c-border);
  position: relative;
}

.method__step:last-child {
  border-bottom: none;
}

.method__step-num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--c-terra-l);
  line-height: 1;
  padding-top: 4px;
  -webkit-text-stroke: 2px var(--c-terra);
  color: transparent;
}

.method__step-body h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.method__tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c-brown-3);
  background: var(--c-bg-light);
  padding: 4px 12px;
  border-radius: 100px;
}

@media (max-width: 560px) {
  .method__step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .method__step-num {
    font-size: 2rem;
  }
}

/* ── FLIP CARDS (Replacing Method Steps) ──────────── */
.flip-card {
  background-color: transparent;
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 420px;
  perspective: 1000px;
  border-radius: var(--r-lg);
  cursor: pointer;
  margin-bottom: 30px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
  box-shadow: var(--shadow-lg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.flip-card-front {
  background-color: var(--c-brown-1);
  background-size: cover;
  background-position: center;
  color: var(--c-white);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
}

.flip-card-front::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 37, 48, 0.9) 0%, rgba(26, 37, 48, 0.2) 60%, transparent 100%);
  z-index: 1;
}

.flip-card-front-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  width: 100%;
}

.flip-card-front h3 {
  color: var(--c-white);
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.flip-card-back {
  background-color: var(--c-terra);
  /* Navy */
  color: var(--c-white);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  text-align: center;
}

.flip-card-back h3 {
  color: var(--c-sage);
  /* Peach/Pink */
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.flip-card-divider {
  width: 40px;
  height: 3px;
  background-color: var(--c-sage);
  margin-bottom: 12px;
  border-radius: 2px;
}

.flip-card-back p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Tower Diagram Animation on Flip Card Back */
.tower-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  width: 100%;
}

.tower-level {
  background-color: var(--c-sage);
  /* Peach */
  color: var(--c-brown-1);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  text-align: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.level-1 {
  width: 80%;
}

.level-2 {
  width: 60%;
  background-color: var(--c-rose);
}

/* Yellow */
.level-3 {
  width: 40%;
  background-color: var(--c-white);
  border: 2px solid var(--c-rose);
}

/* Animate the tower levels progressively when the card is hovered/flipped */
.flip-card:hover .level-1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.flip-card:hover .level-2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.flip-card:hover .level-3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

/* Flip Card Grid */
.flip-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .flip-cards-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ── TESTIMONIALS ─────────────────────────────── */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials__carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 32px;
  padding-top: 10px;
  margin-top: 40px;
  scrollbar-width: none;
}

.testimonials__carousel::-webkit-scrollbar {
  display: none;
}

.testimonial {
  flex: 0 0 calc(90% - 20px);
  max-width: 450px;
  scroll-snap-align: center;
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  border: 2px solid var(--c-terra);
  text-align: right;
  box-shadow: 6px 6px 0px var(--c-sage);
  transition: transform var(--transition);
  position: relative;
}

.testimonial:hover {
  transform: translateY(-4px) translateX(-2px);
  box-shadow: 10px 10px 0px var(--c-sage);
}

.testimonial::before {
  content: '"';
  font-size: 5rem;
  color: var(--c-rose-l);
  position: absolute;
  top: 12px;
  right: 24px;
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.6;
}

.testimonial__stars {
  color: var(--c-rose);
  font-size: 1.3rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial blockquote {
  font-size: 1.15rem;
  color: var(--c-brown-2);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.testimonial cite {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-terra);
  font-style: normal;
}

/* ── ABOUT ────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

.about__grid--reverse {
  grid-template-columns: 1fr 380px;
}

.about__grid--reverse>.about__image-wrap {
  grid-column: 2;
  grid-row: 1;
}

.about__grid--reverse>.about__text {
  grid-column: 1;
  grid-row: 1;
}

@media (max-width: 900px) {

  .about__grid,
  .about__grid--reverse {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .about__grid--reverse>.about__text,
  .about__grid>.about__text {
    order: 2;
  }

  .about__grid--reverse>.about__image-wrap,
  .about__grid>.about__image-wrap {
    order: 1;
  }

  .about__image-wrap {
    max-width: 320px;
    margin-inline: auto;
    width: 100%;
  }
}

.about__image-wrap {
  position: relative;
}

.about__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease;
}

.about__photo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about__slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 40% 60% 60% 40% / 50% 50% 60% 40%;
  overflow: hidden;
}

.about__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.about__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.about__slide.active {
  opacity: 1;
}

.about__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

/* ── CLINIC GALLERY ──────────────────────────────── */
.clinic__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.clinic__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease;
}

.clinic__photo:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.about__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.about__dot.active {
  background: var(--c-white);
  width: 24px;
  border-radius: 4px;
}

.about__decor {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--c-sage-l);
  z-index: -1;
}

.about__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-terra);
  margin-bottom: 0.5rem;
}

.about__closing {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-brown-1);
  border-right: 3px solid var(--c-terra);
  padding-right: 16px;
}

/* ── THERAPY ──────────────────────────────────── */
.therapy__header {
  margin-bottom: 64px;
}

.therapy__tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 56px;
}

.therapy__tool {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.therapy__tool:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.therapy__tool--combo {
  background: linear-gradient(135deg, var(--c-terra-l), var(--c-rose-l));
  border: none;
}

.therapy__tool-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.therapy__tool-icon svg {
  width: 36px;
  height: 36px;
}

.therapy__tool-icon--breath {
  background: var(--c-terra-l);
  color: var(--c-terra);
}

.therapy__tool-icon--cognitive {
  background: var(--c-sage-l);
  color: var(--c-sage);
}

.therapy__tool-icon--combo {
  background: rgba(255, 255, 255, 0.6);
  color: var(--c-rose);
}

.therapy__tool h3 {
  margin-bottom: 4px;
}

.therapy__tool-sub {
  font-size: 0.85rem;
  color: var(--c-brown-3);
  margin-bottom: 1rem !important;
}

.therapy__list {
  list-style: none;
  margin-top: 1rem;
}

.therapy__list li {
  padding-right: 20px;
  position: relative;
  font-size: 0.9rem;
  color: var(--c-brown-2);
  margin-bottom: 6px;
}

.therapy__list li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--c-sage);
  font-weight: 700;
}

.therapy__location {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--c-brown-3);
}

/* ── WORKSHOPS ────────────────────────────────── */
.workshops__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.workshop__card {
  border-radius: var(--r-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.workshop__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.workshop__card--org {
  background: var(--c-white);
}

.workshop__card--private {
  background: var(--c-cream);
}

.workshop__card--public {
  background: linear-gradient(135deg, var(--c-sage-l), #f0f5f2);
}

.workshop__card-top {
  flex: 1;
}

.workshop__card-top h3 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.workshop__card-top p {
  font-size: 0.95rem;
  color: var(--c-brown-2);
}

.workshop__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--c-terra-l);
  color: var(--c-terra);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.workshop__badge--rose {
  background: var(--c-rose-l);
  color: var(--c-rose);
}

.workshop__badge--green {
  background: var(--c-sage-l);
  color: var(--c-sage);
}

.workshop__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.workshop__benefits li {
  font-size: 0.9rem;
  color: var(--c-brown-2);
  padding-right: 22px;
  position: relative;
}

.workshop__benefits li::before {
  content: '→';
  position: absolute;
  right: 0;
  color: var(--c-terra);
}

/* ── FAQ ──────────────────────────────────────── */
.faq__grid {
  max-width: 750px;
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.faq__group-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 8px;
  background: var(--c-sage);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
}

.faq__item {
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 243, 196, 0.4), var(--c-white));
  border-radius: 16px;
  padding: 0 28px;
  border: 1px solid rgba(255, 243, 196, 0.5);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-terra);
  list-style: none;
  transition: color var(--transition);
  gap: 12px;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--c-terra);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item summary:hover {
  color: var(--c-terra);
}

.faq__item p {
  font-size: 0.95rem;
  color: var(--c-brown-2);
  padding-bottom: 18px;
  line-height: 1.8;
}

.faq__cta {
  margin-top: 64px;
}

.faq__cta p {
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: var(--c-brown-3);
}

/* ── CONTACT ──────────────────────────────────── */
.contact__inner {
  max-width: 600px;
  margin-inline: auto;
}

.contact__inner .section__title {
  margin-bottom: 1rem;
}

.contact__inner>p {
  color: var(--c-brown-3);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.contact__links {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  color: var(--c-brown-3);
}

.contact__links a {
  color: var(--c-terra);
  transition: color var(--transition);
}

.contact__links a:hover {
  color: var(--c-terra-h);
}

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  position: relative;
  background-color: #171717;
  /* neutral-900 */
  color: #fff;
  padding: 140px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer__brand .footer-logo-img {
  height: 50px;
  margin-bottom: 24px;
  filter: invert(1) sepia(100%) hue-rotate(300deg) saturate(20%) brightness(2);
}

.footer__slogan {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-sage);
  margin-bottom: 12px;
}

.footer__desc {
  color: #a3a3a3;
  /* neutral-400 */
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer__nav h4,
.footer__contact h4 {
  font-size: 1.1rem;
  color: var(--c-white);
  margin-bottom: 24px;
  font-weight: 600;
}

.footer__nav a,
.footer__contact a {
  display: block;
  color: #d4d4d4;
  /* neutral-300 */
  margin-bottom: 12px;
  transition: color var(--transition);
  text-decoration: none;
}

.footer__nav a:hover,
.footer__contact a:hover {
  color: var(--c-rose-l);
}

.footer__contact p {
  color: #d4d4d4;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer__bottom {
  border-top: 1px solid #404040;
  /* neutral-700 */
  padding-top: 32px;
  text-align: center;
}

.footer__bottom p {
  color: #737373;
  /* neutral-500 */
  font-size: 0.9rem;
}

/* ── NAVY SECTION (Testimonials) ─────────────── */
.section--navy {
  background: linear-gradient(135deg, #2D3A6D 0%, #1E2A5E 100%);
}

.section__title--light {
  color: #fff;
}

.section--navy .testimonial {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 6px 6px 0px rgba(250, 207, 207, 0.3);
}

.section--navy .testimonial::before {
  color: rgba(255, 243, 196, 0.2);
}

/* Clinic single image */
.clinic__single {
  max-width: 600px;
  margin-inline: auto;
}

.clinic__photo--single {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

/* ── FADE-IN ANIMATION ────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 768px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

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

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

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

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
  }

  .contact__links {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .gap__visual {
    height: 300px;
  }

  .gap__circle--1 {
    width: 220px;
    height: 220px;
  }

  .gap__circle--2 {
    width: 150px;
    height: 150px;
  }
}

/* ── ABOUT INTRO (Homepage) ─────────────────────── */
.about-intro {
  background: linear-gradient(135deg, #f5f0f8 0%, #fce8e5 35%, #f9ece9 65%, #eef0f7 100%);
  padding: 80px 0;
  overflow: hidden;
}

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

.about-intro__eyebrow {
  display: inline-block;
  background: var(--c-terra);
  /* Navy */
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.about-intro__title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--c-terra);
  /* Navy */
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-intro__text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--c-brown-2);
  margin-bottom: 16px;
}

.about-intro__text p strong {
  font-size: 1.2rem;
  color: var(--c-terra);
}

.about-intro__closing {
  font-weight: 600;
  font-size: 1.1rem !important;
  color: var(--c-brown-1) !important;
  margin-top: 8px;
}

.about-intro__cta {
  display: inline-block;
  margin-top: 24px;
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: var(--r-lg);
}

.about-intro__image-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-intro__photo {
  width: 100%;
  max-width: 400px;
  border-radius: var(--r-xl);
  object-fit: cover;
  object-position: 30% center;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lg);
}

.about-intro__badge {
  background: #fff;
  padding: 14px 28px;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.about-intro__badge strong {
  display: block;
  font-size: 1rem;
  color: var(--c-terra);
  margin-bottom: 2px;
}

.about-intro__badge span {
  font-size: 0.85rem;
  color: var(--c-brown-3);
}

/* Responsive */
@media (max-width: 768px) {
  .about-intro__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-intro__image-wrap {
    order: -1;
  }

  .about-intro__title {
    font-size: 2.2rem;
  }

  .about-intro__photo {
    max-width: 280px;
  }
}

/* ═══════════════════════════════════════════════
   INNER PAGES — Shared Styles
   ═══════════════════════════════════════════════ */

/* ── PAGE HERO (inner pages) ─────────────────── */
.page-hero {
  min-height: 35vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-block: calc(var(--nav-h) + 10px) 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-sage) 0%, var(--c-sage-l) 50%, #FFF0F5 100%);
}

.page-hero__tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-terra);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--c-terra);
  margin-bottom: 1rem;
  line-height: 1.2;
  animation: fadeSlideUp 0.8s ease forwards;
}

.page-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(45, 58, 109, 0.7);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.8;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── NAVY SECTION ────────────────────────────── */
.section--navy {
  position: relative;
  background: var(--c-terra);
  color: var(--c-white);
}

.wave-divider-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 10;
}

.wave-divider-top svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

.wave-divider-top--light path {
  fill: var(--c-bg-light);
}

.wave-divider-top--warm path {
  fill: var(--c-bg-warm);
}

.wave-divider-top--white path {
  fill: var(--c-white);
}

.wave-divider-top--terra path {
  fill: var(--c-terra);
}

.wave-divider-top--navy path {
  fill: var(--c-terra);
}

.section--navy .section__title,
.section--navy .section__eyebrow,
.section--navy h3 {
  color: var(--c-white);
}

.section--navy p,
.section--navy li {
  color: rgba(255, 255, 255, 0.85);
}

.section--navy .btn--primary {
  background: var(--c-white);
  color: var(--c-terra);
}

.section--navy .btn--primary:hover {
  background: var(--c-sage-l);
}

/* ── THERAPY & WORKSHOP DETAIL (Premium) ──────── */
.therapy-detail {
  padding-block: 80px;
}

/* Split layout: text + image side by side */
.therapy-detail__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin-inline: auto;
}

.therapy-detail__split--reverse {
  direction: ltr;
}

.therapy-detail__split--reverse>* {
  direction: rtl;
}

@media (max-width: 768px) {

  .therapy-detail__split,
  .therapy-detail__split--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: rtl;
  }
}

/* Header with icon + title */
.therapy-detail__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.therapy-detail__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--c-terra), var(--c-terra-h));
  color: var(--c-white);
}

.therapy-detail__icon--peach {
  background: linear-gradient(135deg, var(--c-sage), var(--c-sage-l));
  color: var(--c-terra);
}

.therapy-detail__icon svg {
  width: 24px;
  height: 24px;
}

.therapy-detail__header h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--c-terra);
  margin: 0;
}

.therapy-detail__content p {
  font-size: 1.05rem;
  color: var(--c-brown-2);
  line-height: 1.8;
}

/* Gradient info box */
.therapy-detail__box {
  background: linear-gradient(135deg, var(--c-sage-l), rgba(255, 212, 207, 0.3));
  border-radius: 16px;
  padding: 24px;
  margin-top: 20px;
}

.therapy-detail__box h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-terra);
  margin-bottom: 10px;
}

.therapy-detail__box>p {
  color: var(--c-brown-2);
  line-height: 1.7;
}

/* Result callout */
.therapy-detail__result {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  color: var(--c-brown-2);
}

.therapy-detail__result span {
  color: var(--c-terra);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.therapy-detail__result strong {
  color: var(--c-terra);
}

/* Image wrap with rotated background accent */
.therapy-detail__image-wrap {
  position: relative;
}

.therapy-detail__image-bg {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  transform: rotate(-3deg) scale(1.05);
}

.therapy-detail__image-bg--peach {
  background: linear-gradient(135deg, var(--c-sage), var(--c-sage-l));
}

.therapy-detail__image-bg--navy {
  background: linear-gradient(135deg, var(--c-terra), var(--c-terra-h));
  transform: rotate(3deg) scale(1.05);
}

.therapy-detail__image {
  position: relative;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .therapy-detail__image {
    height: 280px;
  }
}

/* Image badge overlay (e.g. "10 participants") */
.therapy-detail__image-badge {
  position: absolute;
  bottom: -12px;
  left: -12px;
  background: var(--c-white);
  border-radius: 16px;
  padding: 12px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}

.therapy-detail__image-badge-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-terra);
  line-height: 1;
}

.therapy-detail__image-badge span:last-child {
  font-size: 0.8rem;
  color: var(--c-brown-3);
}

/* Benefits grid inside box */
.therapy-detail__benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.therapy-detail__benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.therapy-detail__benefit>span {
  width: 32px;
  height: 32px;
  background: var(--c-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.therapy-detail__benefit strong {
  display: block;
  color: var(--c-terra);
  font-size: 0.95rem;
}

.therapy-detail__benefit p {
  font-size: 0.85rem !important;
  color: var(--c-brown-3) !important;
  margin: 0;
  line-height: 1.4 !important;
}

/* Combination section (centered) */
.therapy-detail__combo {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.therapy-detail__combo-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--c-terra), var(--c-terra-h));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  box-shadow: var(--shadow-md);
}

.therapy-detail__combo h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 300;
  color: var(--c-terra);
  margin-bottom: 20px;
}

.therapy-detail__combo-lead {
  font-size: 1.15rem;
  color: var(--c-brown-2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.therapy-detail__combo-strong {
  font-size: 1.05rem;
  color: var(--c-brown-1);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 40px;
}

.therapy-detail__combo-cta-card {
  background: var(--c-white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 1px solid var(--c-border);
}

.therapy-detail__combo-cta-card h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 300;
  color: var(--c-terra);
  margin-bottom: 20px;
  line-height: 1.4;
}

.therapy-detail__combo-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.therapy-detail__combo-pill {
  background: var(--c-sage-l);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--c-brown-2);
}

.therapy-detail__combo-cta-card>p {
  color: var(--c-brown-2);
  margin-bottom: 24px;
}

/* ── WORKSHOP DETAIL (Premium) ──────────────── */
.workshop-detail {
  padding-block: 80px;
}

.workshop-detail__center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.workshop-detail__center .therapy-detail__icon {
  margin: 0 auto 20px;
}

.workshop-detail__center h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 300;
  color: var(--c-terra);
  margin-bottom: 10px;
}

.workshop-detail__subtitle {
  font-size: 1.05rem;
  color: var(--c-brown-2);
}

.workshop-detail__inner {
  max-width: 900px;
  margin-inline: auto;
  background: linear-gradient(135deg, var(--c-sage-l), rgba(255, 212, 207, 0.3));
  border-radius: 24px;
  padding: 32px 40px;
}

@media (max-width: 768px) {
  .workshop-detail__inner {
    padding: 24px 20px;
  }
}

.workshop-detail__inner p {
  font-size: 1.05rem;
  color: var(--c-brown-2);
  line-height: 1.8;
}

.workshop-detail__inner h3 {
  font-size: 1.2rem;
  color: var(--c-brown-1);
  margin-bottom: 12px;
}

/* Cards grid for benefits/occasions */
.workshop-detail__cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .workshop-detail__cards-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
}

.workshop-detail__card {
  background: var(--c-white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.workshop-detail__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.workshop-detail__card--bordered {
  border: 1px solid var(--c-sage-l);
  box-shadow: var(--shadow-md);
}

.workshop-detail__card h4 {
  font-size: 1rem;
  color: var(--c-terra);
  margin: 12px 0 8px;
}

.workshop-detail__card p {
  font-size: 0.9rem !important;
  color: var(--c-brown-3) !important;
  line-height: 1.6 !important;
}

.workshop-detail__result {
  text-align: center;
  margin-top: 24px;
  font-size: 1rem;
  color: var(--c-brown-1);
  font-weight: 500;
}

.workshop-detail__result strong {
  color: var(--c-terra);
}

/* Image cards with hover overlay */
.ws-img-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--c-white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.ws-img-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.ws-img-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ws-img-card:hover img {
  transform: scale(1.05);
}

.ws-img-card h4 {
  padding: 16px 20px 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-terra);
  text-align: center;
}

.ws-img-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 47, 113, 0.15) 0%, rgba(38, 47, 113, 0.85) 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ws-img-card:hover .ws-img-card__overlay {
  opacity: 1;
}

.ws-img-card__overlay p {
  color: var(--c-white) !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  text-align: center;
}

/* Entrance animations for inner pages */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in.visible .therapy-detail__content {
  animation: slideInLeft 0.8s ease both;
}

.fade-in.visible .therapy-detail__image-wrap {
  animation: slideInRight 0.8s ease both;
}

.therapy-detail__split--reverse .fade-in.visible .therapy-detail__content {
  animation: slideInRight 0.8s ease both;
}

.therapy-detail__split--reverse .fade-in.visible .therapy-detail__image-wrap {
  animation: slideInLeft 0.8s ease both;
}

.fade-in.visible .therapy-detail__combo,
.fade-in.visible .workshop-detail__center {
  animation: slideInUp 0.8s ease both;
}

/* ── CONTACT INFO CARDS ──────────────────────── */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.contact-info__card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-info__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: var(--c-terra-l);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-terra);
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
}

.contact-info__card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--c-brown-1);
}

.contact-info__card p,
.contact-info__card a {
  font-size: 0.95rem;
  color: var(--c-brown-2);
}

.contact-info__card a:hover {
  color: var(--c-terra);
}

/* ── CREDENTIALS ─────────────────────────────── */
.credentials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.credentials__item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 16px 28px;
  border-radius: var(--r-lg);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-white);
  text-align: center;
}

/* ── MID-PAGE CTA ────────────────────────────── */
.mid-cta {
  padding-block: 60px;
  text-align: center;
}

.mid-cta .btn {
  font-size: 1.1rem;
  padding: 16px 40px;
}

/* ── ABOUT — TESTIMONIALS ────────────────────── */
.about-testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--c-terra), #1E2A5E, var(--c-terra));
  position: relative;
  overflow: hidden;
}

.about-testimonials__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.about-testimonials__bg-orb--1 {
  top: 40px;
  right: 40px;
  width: 280px;
  height: 280px;
  background: rgba(255, 243, 196, 0.1);
}

.about-testimonials__bg-orb--2 {
  bottom: 40px;
  left: 40px;
  width: 320px;
  height: 320px;
  background: rgba(250, 207, 207, 0.1);
}

.about-testimonials__title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--c-white);
  text-align: center;
  margin-bottom: 48px;
}

.about-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .about-testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
    gap: 20px;
  }
}

.about-testimonials__card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s ease;
}

.about-testimonials__card:hover {
  transform: translateY(-4px);
}

.about-testimonials__quote-icon {
  color: var(--c-rose);
  font-size: 2rem;
  margin-bottom: 12px;
  transform: rotate(180deg);
  display: inline-block;
}

.about-testimonials__text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.about-testimonials__author {
  color: var(--c-rose);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ── ABOUT — FAQ ─────────────────────────────── */


/* ── ABOUT — CTA ─────────────────────────────── */
.about-cta {
  padding: 64px 0;
  background: linear-gradient(135deg, rgba(255, 243, 196, 0.3), rgba(248, 232, 232, 0.2), var(--c-white));
}

.about-cta h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--c-terra);
  margin-bottom: 12px;
}

.about-cta p {
  font-size: 1.1rem;
  color: var(--c-brown-3);
  margin-bottom: 24px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   BLOG STYLES
   ═══════════════════════════════════════════════ */

/* ── Blog Grid ──────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── Blog Card ──────────────────────────────── */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-sage-l), var(--c-rose-l));
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__image--placeholder span {
  font-size: 3rem;
  color: var(--c-terra);
  opacity: 0.2;
}

.blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-brown-1);
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: 0.95rem;
  color: var(--c-brown-3);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
}

.blog-card__date {
  font-size: 0.82rem;
  color: var(--c-brown-4);
}

.blog-card__likes {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--c-brown-4);
}

.blog-card__likes svg {
  color: var(--c-pink);
}

/* ── Blog Empty State ───────────────────────── */
.blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
}

.blog-empty__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--c-brown-4);
}

/* ── Blog Single Post ───────────────────────── */
/* No padding — sections inside should render edge-to-edge like full pages */
.blog-single {
  padding: 0;
  padding-top: var(--nav-h);
}

/* Sticky back-to-blog bar — stays fixed below the nav while scrolling */
.blog-back-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(38, 47, 113, 0.08);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--c-terra);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.blog-back-link:hover {
  opacity: 0.7;
  transform: translateX(-3px);
}


/* ── Cover Image — full viewport width, edge-to-edge ───────────────── */
.blog-post__cover {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0;
  overflow: hidden;
}

.blog-post__cover img {
  width: 100%;
  height: 35vh;
  min-height: 250px;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

/* ── Blog Post Footer ────────────────────────── */
.blog-post__footer {
  max-width: 720px;
  margin-inline: auto;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--c-border);
  display: flex;
  justify-content: center;
}

/* ── Like Button ─────────────────────────────── */
.blog-like-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-brown-3);
  transition: all 0.3s ease;
}

.blog-like-btn:hover {
  border-color: var(--c-pink);
  color: var(--c-pink);
  box-shadow: 0 4px 16px rgba(217, 111, 131, 0.15);
}

.blog-like-btn__icon {
  transition: all 0.3s ease;
}

.blog-like-btn--liked {
  background: linear-gradient(135deg, #fce4ec, #fff0f5);
  border-color: var(--c-pink);
  color: var(--c-pink);
  cursor: default;
}

.blog-like-btn--liked .blog-like-btn__icon {
  fill: var(--c-pink);
  stroke: var(--c-pink);
}

.blog-like-btn--animate {
  animation: likePopAnim 0.6s ease;
}

@keyframes likePopAnim {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.2);
  }

  60% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

/* ═══════════════════════════════════════════════
   BLOG DESIGN COMPONENTS (for post content)
   ═══════════════════════════════════════════════ */

/* ── Callout Box ─────────────────────────────── */
.blog-callout {
  background: var(--c-terra-l);
  border-radius: var(--r-md);
  padding: 24px 28px;
  margin: 24px 0;
  border-right: 4px solid var(--c-terra);
}

.blog-callout[data-color="peach"] {
  background: var(--c-sage-l);
  border-right-color: var(--c-sage);
}

.blog-callout[data-color="yellow"] {
  background: var(--c-rose-l);
  border-right-color: var(--c-rose);
}

.blog-callout p {
  margin: 0;
  font-weight: 500;
  color: var(--c-brown-1);
}

/* ── Highlight Quote ─────────────────────────── */
.blog-quote {
  border-right: 4px solid var(--c-terra);
  padding: 20px 28px;
  margin: 28px 0;
  background: linear-gradient(135deg, rgba(38, 47, 113, 0.03), transparent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  position: relative;
}

.blog-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 4rem;
  color: var(--c-terra);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

.blog-quote p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--c-terra);
  margin: 0;
  line-height: 1.7;
}

/* ── Info Box ────────────────────────────────── */
.blog-info-box {
  background: linear-gradient(135deg, var(--c-sage-l), rgba(255, 212, 207, 0.3));
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin: 28px 0;
}

.blog-info-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-terra);
  margin-bottom: 10px;
}

.blog-info-box p {
  margin: 0;
  color: var(--c-brown-2);
  line-height: 1.7;
}

/* ── Photo Slider ────────────────────────────── */
.blog-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--r-md);
  overflow: hidden;
  margin: 28px 0;
  box-shadow: var(--shadow-md);
}

.blog-slider .blog__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.blog-slider .blog__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--c-bg-light);
  object-position: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  margin: 0 !important;
  /* override global img reset */
}

.blog-slider .blog__slide.active {
  opacity: 1;
}

.blog-slider .blog__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.blog-slider .blog__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}

.blog-slider .blog__dot.active {
  background: var(--c-terra);
}

/* ── Image Card ──────────────────────────────── */
.blog-image-card {
  margin: 28px 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.blog-image-card img {
  width: 100%;
  display: block;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.blog-image-card figcaption {
  padding: 12px 20px;
  font-size: 0.85rem;
  color: var(--c-brown-3);
  text-align: center;
  background: var(--c-bg-light);
}

/* ── Divider ─────────────────────────────────── */
.blog-divider {
  height: 3px;
  margin: 40px auto;
  max-width: 120px;
  background: linear-gradient(90deg, var(--c-sage), var(--c-rose), var(--c-terra-l));
  border-radius: 2px;
}

/* ── Emphasis Text ───────────────────────────── */
.blog-emphasis {
  font-size: clamp(1.3rem, 3vw, 1.6rem) !important;
  font-weight: 700;
  color: var(--c-terra) !important;
  text-align: center;
  margin: 36px 0 !important;
  line-height: 1.5;
}

/* ── Testimonial (block-rendered) ────────────── */
.preview-testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 36px 40px;
  margin: 32px auto;
  text-align: center;
  max-width: 680px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.preview-testimonial__stars {
  color: #f59e0b;
  font-size: 1.3rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.preview-testimonial blockquote {
  font-style: italic;
  color: var(--c-brown-1);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 12px;
}

.preview-testimonial cite {
  font-style: normal;
  color: var(--c-terra);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ── Image Slider (block-rendered) ───────────── */
.preview-slider {
  position: relative;
  max-width: 700px;
  margin: 28px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.preview-slider img {
  width: 100%;
  display: none;
  max-height: 460px;
  object-fit: cover;
}

.preview-slider img.active {
  display: block;
}

.preview-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}

.preview-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.preview-slider__dot.active {
  background: #fff;
}

/* ── Image Cards (block-rendered) ────────────── */
.preview-img-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px auto;
  max-width: 720px;
  padding: 0 24px;
}

.preview-img-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
}

.preview-img-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.preview-img-card h4 {
  padding: 8px 12px;
  margin: 0;
  font-size: 0.85rem;
  color: var(--c-brown-1);
}

.preview-img-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 58, 109, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  border-radius: 16px;
}

.preview-img-card:hover .preview-img-card__overlay {
  opacity: 1;
}

.preview-img-card__overlay p {
  color: #fff;
  text-align: center;
  padding: 16px;
  font-size: 0.9rem;
}


/* ── Section heading centering ───────────────── */
.section--warm h2,
.section--navy h2,
.section--light h2 {
  text-align: center;
}

/* ── Two Column ──────────────────────────────── */
.blog-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 28px 0;
}

@media (max-width: 768px) {
  .blog-two-col {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ── Styled Table ────────────────────────────── */
.blog-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.blog-table thead tr {
  background: var(--c-terra);
  color: var(--c-white);
}

.blog-table th {
  padding: 12px 16px;
  text-align: right;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.9rem;
  color: var(--c-brown-2);
}

.blog-table tbody tr:last-child td {
  border-bottom: none;
}

.blog-table tbody tr:hover {
  background: var(--c-bg-light);
}

/* ── Workshops Schedule UI ───────────────────── */
.workshops-schedule-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ws-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--c-border);
  box-shadow: 0 4px 12px rgba(38, 47, 113, 0.03);
  transition: transform 0.2s, box-shadow 0.2s;
}

.ws-list-item:hover {
  box-shadow: 0 8px 24px rgba(38, 47, 113, 0.08);
  transform: translateY(-2px);
  border-color: var(--c-pink);
}

.ws-list-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--c-bg-warm);
  color: var(--c-terra);
  border-radius: 12px;
  min-width: 80px;
  min-height: 80px;
  padding: 12px;
  text-align: center;
  flex-shrink: 0;
}

.ws-list-date span.date-day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.ws-list-date span.date-month {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 4px;
}

.ws-list-info {
  flex: 1;
  padding: 0 24px;
}

.ws-list-info h4 {
  font-size: 1.25rem;
  color: var(--c-navy);
  margin-bottom: 6px;
  font-weight: 700;
}

.ws-list-info p {
  font-size: 0.95rem;
  color: var(--c-brown-3);
  margin: 0;
}

.ws-list-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .ws-list-item {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    text-align: center;
  }

  .ws-list-info {
    padding: 0;
  }
}

/* ── Top Promo Banner ─────────────────────────── */
.promo-banner {
  background: linear-gradient(90deg, var(--c-terra), var(--c-pink));
  color: var(--c-white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  /* Always above nav (z-index 100) */
}

.promo-banner p {
  margin: 0;
  display: inline-block;
}

.promo-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 700;
  transition: opacity 0.2s;
}

.promo-banner a:hover {
  opacity: 0.8;
}

.promo-banner-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
}

/* ── Universal Contact Form ──────────────────────── */
.universal-contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  max-width: 500px;
  margin: 2rem auto;
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* Force all child text dark — even inside navy sections */
  color: #1a1a2e !important;
}

/* Override section--navy color inheritance for every element inside the card */
.section--navy .universal-contact-form,
.section--navy .universal-contact-form label,
.section--navy .universal-contact-form p,
.section--navy .universal-contact-form h3,
.section--navy .universal-contact-form li {
  color: #1a1a2e !important;
}


.universal-contact-form h3 {
  color: var(--c-navy);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  text-align: center;
}

.universal-contact-form p {
  color: var(--c-brown-3);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.universal-contact-form .form-group {
  margin-bottom: 1rem;
}

.universal-contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--c-navy);
  font-size: 0.9rem;
}

.universal-contact-form input,
.universal-contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 8px !important;
  font-family: inherit;
  font-size: 1rem;
  color: var(--c-navy) !important;
  background: #fafafa !important;
  transition: border-color 0.2s;
}

.universal-contact-form input:focus,
.universal-contact-form textarea:focus {
  outline: none;
  border-color: var(--c-terra);
  background: #fff;
}

.universal-contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.universal-contact-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}