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

:root {
  --saffron:   #E86A2B;
  --gold:      #C9880A;
  --purple:    #8B3FC8;
  --green:     #2DA060;
  --dark:      #000000;
  --surface:   #0F0A05;
  --surface2:  #1A1005;
  --surface3:  #231508;
  --text:      #F0DEC8;
  --muted:     #9A8068;
  --subtle:    #5A4030;
  --border:    #2A1C0E;
  --border2:   #3A2A18;
  --radius:    16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--dark);
  line-height: 1.7;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

section { padding: 100px 0; }

/* ---- IMAGE PLACEHOLDERS ---- */
.img-placeholder {
  background: var(--surface3);
  border: 2px dashed var(--border2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--subtle);
  font-weight: 600;
}
.img-placeholder span { font-size: 1rem; color: var(--muted); }
.img-placeholder small { font-size: .78rem; font-weight: 400; color: var(--subtle); text-align: center; padding: 0 12px; }

/* ---- TYPOGRAPHY ---- */
.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--saffron);
  background: rgba(232,106,43,.12);
  border: 1px solid rgba(232,106,43,.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-header.centered { text-align: center; }
.section-header.centered .section-tag { display: block; width: fit-content; margin: 0 auto 14px; }

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 12px;
}

.highlight      { color: var(--saffron); }
.highlight-gold { color: var(--gold); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--saffron);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(232,106,43,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,106,43,.55); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--border2);
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--saffron); color: var(--saffron); }

/* ---- NAV ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-brand {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-brand span { color: var(--saffron); }
.brand-icon { font-size: 1.3rem; }
.brand-logo { height: 36px; width: auto; display: inline-block; vertical-align: middle; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: .93rem;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }

.btn-nav {
  background: var(--saffron) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: .9rem !important;
}
.btn-nav:hover { opacity: .88; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 28px;
  gap: 16px;
  position: sticky;
  top: 65px;
  z-index: 199;
}
.mobile-menu a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 1rem; }
.mobile-menu.open { display: flex; }

/* ---- HERO ---- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
  padding: 80px 40px;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,106,43,.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(139,63,200,.06) 0%, transparent 50%),
              var(--dark);
  min-height: 88vh;
}

.hero-badge {
  display: inline-block;
  background: rgba(232,106,43,.12);
  color: var(--saffron);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: .6px;
  text-transform: uppercase;
  border: 1px solid rgba(232,106,43,.3);
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 12px;
  max-width: 500px;
}
.hero-content p:last-of-type {
  margin-bottom: 32px;
}
.hero-content p em {
  color: var(--saffron);
  font-style: italic;
  font-size: 1.05rem;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-img-placeholder { width: 100%; height: 480px; border-radius: 24px; }

.hero-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: top;
  border-radius: 24px;
  display: block;
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  gap: 12px;
}
.float-icon { font-size: 2rem; }
.hero-float-card div { display: flex; flex-direction: column; }
.hero-float-card strong { font-size: .95rem; color: #fff; }
.hero-float-card span { font-size: .8rem; color: var(--muted); }

/* ---- STRIP ---- */
.strip {
  background: var(--saffron);
  padding: 14px 0;
  overflow: hidden;
}
.strip-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .5px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 24px;
}

/* ---- ABOUT ---- */
.about { background: var(--surface); }

.about-img-wrap { position: relative; }
.about-img { width: 100%; height: 460px; }

.about-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--saffron);
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(232,106,43,.45);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.badge-num { font-size: 2.2rem; font-weight: 900; line-height: 1; }
.about-badge-card span:last-child { font-size: .8rem; margin-top: 4px; opacity: .9; }

.about-text p { color: var(--muted); margin-bottom: 14px; }

.about-values { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.value-item { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--text); }
.value-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ---- MY STORY ---- */
.my-story {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.story-img-wrap { position: sticky; top: 100px; }

.story-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

.story-header { margin-bottom: 40px; }
.story-header h2 { max-width: 540px; }

.story-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-body p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
}

.story-lead {
  font-size: 1.2rem !important;
  color: var(--text) !important;
  font-style: italic;
  border-left: 3px solid var(--saffron);
  padding-left: 20px;
}

.story-close {
  color: var(--text) !important;
  font-weight: 500;
}

/* ---- BHARATANATYAM ---- */
.bharatanatyam { background: var(--dark); }

.bh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 48px 0;
}

.bh-card {
  background: var(--surface2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.bh-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(232,106,43,.15);
  border-color: rgba(232,106,43,.3);
}

.bh-img { width: 100%; height: 220px; border-radius: 0; }
.bh-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  padding: 20px 20px 8px;
}
.bh-card p {
  font-size: .88rem;
  color: var(--muted);
  padding: 0 20px 20px;
}
.bh-card em { color: var(--saffron); font-style: italic; }

.bh-info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.bh-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.bh-icon { font-size: 1.8rem; }
.bh-info-item strong { font-size: 1rem; color: #fff; }
.bh-info-item span { font-size: .82rem; color: var(--muted); line-height: 1.5; }

/* ---- BHARATANATYAM JOURNEY ---- */
.bh-journey {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
  margin-top: 72px;
  padding-top: 64px;
  border-top: 1px solid var(--border);
}

.bh-journey-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 16px;
}
.bh-journey-text strong { color: var(--text); font-weight: 600; }
.bh-journey-text em { color: var(--saffron); font-style: italic; }

.bh-subhead {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
  padding-left: 14px;
  border-left: 3px solid var(--saffron);
}

.bh-journey-cta { position: sticky; top: 100px; }

.bh-cta-card {
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
}
.bh-cta-icon { font-size: 2.4rem; display: block; margin-bottom: 16px; }
.bh-cta-card h3 { font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.bh-cta-card > p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.bh-cta-ages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.bh-cta-ages span {
  font-size: .82rem;
  color: var(--text);
  background: rgba(232,106,43,.1);
  border: 1px solid rgba(232,106,43,.2);
  border-radius: 50px;
  padding: 5px 14px;
  display: inline-block;
}

.bh-cta-card .btn-primary { width: 100%; text-align: center; }

/* ---- THERAPY ---- */
.therapy { background: var(--surface); }

/* intro two-col */
.therapy-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 72px;
}

.therapy-text p { color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
.therapy-text em { color: var(--gold); font-style: italic; }

.therapy-tagline {
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 20px !important;
}

.therapy-subhead {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 10px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}

.therapy-img-wrap { position: sticky; top: 100px; }
.therapy-img { width: 100%; height: 480px; }

/* what sessions offer */
.therapy-offers {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 56px;
}

.therapy-offer-desc { font-size: .9rem; color: var(--muted); margin-bottom: 24px; }

.therapy-elements {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.therapy-element {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,136,10,.1);
  border: 1px solid rgba(201,136,10,.2);
  border-radius: 50px;
  padding: 10px 20px;
}
.te-icon { font-size: 1.1rem; }
.therapy-element strong { font-size: .88rem; color: var(--text); font-weight: 600; }

.therapy-note {
  font-size: .92rem;
  font-style: italic;
  color: var(--muted);
  border-left: 2px solid var(--border2);
  padding-left: 16px;
  line-height: 1.75;
}
.therapy-note em { color: var(--gold); font-style: normal; }

/* who it's for */
.therapy-who { }

.therapy-audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0 28px;
}

.audience-card {
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s, box-shadow .2s;
}
.audience-card:hover {
  border-color: rgba(201,136,10,.4);
  box-shadow: 0 8px 28px rgba(201,136,10,.1);
}
.audience-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.audience-card h4 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.audience-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

.therapy-close {
  font-size: .95rem;
  color: var(--muted);
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.8;
}

/* ---- SPECIAL NEEDS ---- */
.special-needs {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* header */
.sn-header { text-align: center; margin-bottom: 64px; }
.sn-header h2 { max-width: 700px; margin: 0 auto 12px; }

/* story layout */
.sn-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 72px;
}

.sn-img-wrap { position: sticky; top: 100px; }
.sn-img { width: 100%; height: 520px; }

.sn-story-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 16px;
}
.sn-story-text strong { color: var(--text); font-weight: 600; }
.sn-story-text em { color: var(--gold); font-style: italic; }

/* Durga quote */
.sn-quote {
  background: var(--surface3);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
}
.sn-quote-mark { color: var(--gold); font-size: 1.6rem; font-style: normal; vertical-align: -0.15em; }
.sn-quote cite {
  display: block;
  margin-top: 10px;
  font-size: .82rem;
  font-style: normal;
  color: var(--muted);
}

/* what i offer + who is it for */
.sn-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

.sn-subhead {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}

.sn-offer-desc {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.sn-modalities { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.sn-modality { display: flex; gap: 14px; align-items: flex-start; }
.sn-icon {
  font-size: 1.3rem;
  width: 42px; height: 42px;
  background: rgba(201,136,10,.12);
  border: 1px solid rgba(201,136,10,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sn-modality strong { display: block; color: #fff; font-size: .93rem; margin-bottom: 3px; }
.sn-modality p { font-size: .84rem; color: var(--muted); margin: 0; }

.sn-support-label {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.sn-support-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.sn-support-tags span {
  font-size: .82rem;
  background: rgba(201,136,10,.1);
  border: 1px solid rgba(201,136,10,.2);
  color: var(--text);
  padding: 5px 14px;
  border-radius: 50px;
}

.sn-note {
  font-size: .88rem;
  font-style: italic;
  color: var(--muted);
  padding-left: 14px;
  border-left: 2px solid var(--border2);
}

/* who is it for */
.sn-conditions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.sn-conditions li {
  font-size: .95rem;
  color: var(--text);
  background: var(--surface3);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sn-format {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}
.sn-format strong { color: var(--text); }

/* ---- PROGRAMS ---- */
.programs { background: var(--dark); }

.program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.program-card {
  background: var(--surface2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border2);
  box-shadow: 0 2px 16px rgba(0,0,0,.4);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,.45);
}
.program-card.featured-prog {
  border-color: rgba(139,63,200,.35);
}
.program-card.featured-prog:hover {
  box-shadow: 0 20px 48px rgba(139,63,200,.2);
}

.prog-img { width: 100%; height: 280px; border-radius: 0; flex-shrink: 0; display: block; }
img.prog-img { object-fit: contain; background: var(--surface3); }

.program-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* coloured top accent bar */
.prog-accent {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.prog-accent--saffron { background: var(--saffron); }
.prog-accent--purple  { background: var(--purple); }
.prog-accent--gold    { background: var(--gold); }

.prog-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.prog-tag--saffron { background: rgba(232,106,43,.15); color: #E8854A; }
.prog-tag--purple  { background: rgba(139,63,200,.15); color: #B066E8; }
.prog-tag--gold    { background: rgba(201,136,10,.15);  color: #D4A030; }

.program-body h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.prog-tagline {
  font-size: .88rem !important;
  font-style: italic;
  color: var(--muted) !important;
  margin-bottom: 14px !important;
  letter-spacing: .3px;
}

.program-body > p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
  flex: 1;
}

.prog-link {
  display: inline-block;
  font-weight: 700;
  color: var(--saffron);
  text-decoration: none;
  font-size: .9rem;
  margin-top: 22px;
  transition: letter-spacing .2s;
}
.prog-link:hover { letter-spacing: .5px; }

/* ---- GALLERY ---- */
.gallery { background: var(--surface); }

.gallery-subsection { margin-top: 56px; }

.gallery-sub-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.gallery-sub-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.gallery-sub-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  margin-top: 0;
}

.gal-img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gal-img.tall { grid-row: span 2; }
.gal-img.wide { grid-column: span 2; }

/* ---- QUOTE ---- */
.quote-section {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 28px;
  text-align: center;
}

blockquote {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 500;
  color: var(--text);
  max-width: 780px;
  margin: 0 auto 16px;
  line-height: 1.7;
  font-style: italic;
}

.quote-mark {
  color: var(--saffron);
  font-size: 2rem;
  font-style: normal;
  vertical-align: -0.2em;
}

cite {
  color: var(--subtle);
  font-size: .9rem;
  font-style: normal;
  letter-spacing: .5px;
}

/* ---- CONTACT ---- */
.contact { background: var(--dark); }

.contact-text p { color: var(--muted); margin-bottom: 28px; }

.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(232,106,43,.12);
  border: 1px solid rgba(232,106,43,.2);
  border-radius: 10px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: .85rem; color: #fff; margin-bottom: 2px; }
.contact-item span { font-size: .9rem; color: var(--muted); }

.contact-form {
  background: var(--surface2);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border2);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border2);
  border-radius: 10px;
  font-size: .95rem;
  color: var(--text);
  background: var(--surface3);
  outline: none;
  font-family: inherit;
  transition: border-color .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--subtle); }
.form-group select option { background: var(--surface3); color: var(--text); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--saffron); }
.form-group textarea { resize: vertical; }

.contact-form .btn-primary { width: 100%; text-align: center; }

.form-fallback {
  margin-top: 14px;
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
}
.form-fallback a {
  color: var(--saffron);
  text-decoration: none;
  font-weight: 600;
}
.form-fallback a:hover { text-decoration: underline; }

/* ---- FOOTER ---- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .nav-brand { margin-bottom: 10px; color: #fff; font-size: 1.3rem; }
.footer-brand p { color: var(--muted); font-size: .88rem; }

.footer-links-group { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group strong {
  color: var(--saffron);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.footer-links-group a { color: var(--muted); text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-links-group a:hover { color: #fff; }

.footer-social { display: flex; flex-direction: column; gap: 10px; }
.footer-social strong { color: var(--saffron); font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; }
.social-icons { display: flex; gap: 12px; }
.social-icons a { font-size: 1.4rem; text-decoration: none; transition: transform .2s; }
.social-icons a:hover { transform: scale(1.15); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--subtle); font-size: .82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--subtle); text-decoration: none; font-size: .82rem; transition: color .2s; }
.footer-bottom-links a:hover { color: #fff; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--surface); }

.testimonial-featured {
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 48px 52px;
  margin: 56px 0 40px;
  position: relative;
}

.testi-big-mark {
  position: absolute;
  top: 16px;
  left: 36px;
  font-size: 7rem;
  color: var(--saffron);
  opacity: 0.12;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}

.testi-category-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.testi-tag--saffron { background: rgba(232,106,43,.12); color: #E8854A; border: 1px solid rgba(232,106,43,.2); }
.testi-tag--purple  { background: rgba(139,63,200,.12);  color: #B066E8; border: 1px solid rgba(139,63,200,.2); }
.testi-tag--gold    { background: rgba(201,136,10,.12);  color: #D4A030; border: 1px solid rgba(201,136,10,.2); }

.testi-featured-text p {
  font-size: .97rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

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

.testimonial-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}
.testimonial-card:hover {
  border-color: rgba(232,106,43,.25);
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
}

.testi-card-mark {
  display: block;
  font-size: 2.8rem;
  color: var(--saffron);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 42px; height: 42px;
  background: var(--saffron);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .82rem; color: #fff;
  flex-shrink: 0;
}
.testi-avatar--purple { background: var(--purple); }
.testi-avatar--gold   { background: var(--gold); }
.testi-avatar--green  { background: var(--green); }
.testi-avatar-img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border2);
}

.testi-author-info strong { display: block; color: #fff; font-size: .9rem; }
.testi-author-info span   { color: var(--muted); font-size: .8rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .bh-info-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hamburger { display: block; }

  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    min-height: auto;
    gap: 40px;
  }
  .hero-img-placeholder { height: 300px; }
  .hero-float-card { left: 8px; bottom: -14px; }

  .two-col, .two-col.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }

  .story-layout { grid-template-columns: 1fr; }
  .story-img-wrap { position: static; }
  .story-img { height: auto; }
  .bh-grid { grid-template-columns: 1fr; }
  .bh-journey { grid-template-columns: 1fr; }
  .bh-journey-cta { position: static; }
  .therapy-intro { grid-template-columns: 1fr; }
  .therapy-img-wrap { position: static; }
  .therapy-img { height: 300px; }
  .therapy-audience { grid-template-columns: 1fr; }
  .therapy-offers { padding: 24px; }
  .sn-story { grid-template-columns: 1fr; }
  .sn-img-wrap { position: static; }
  .sn-img { height: 300px; }
  .sn-details { grid-template-columns: 1fr; }
  .bh-info-strip { grid-template-columns: repeat(2, 1fr); padding: 24px; }
  .program-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-featured { padding: 32px 28px; }


  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gal-img.tall { grid-row: span 1; }
  .gal-img.wide { grid-column: span 1; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

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

  .about-badge-card { right: 0; bottom: -10px; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .strip-inner { gap: 24px; }
}
