@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito:wght@300;400;500;600;700&display=swap');

/* =============================================
   ELVANTI — Soft Therapy Editorial
   Root tokens & reset
   ============================================= */
:root {
  --cream:        #FAF8F5;
  --sage:         #7B9E8B;
  --sage-light:   #B8C9C1;
  --sage-dark:    #5A7D6B;
  --rose:         #C9A9A6;
  --rose-light:   #EDD9D6;
  --warm-gray:    #E8E0D8;
  --text:         #2C2C2C;
  --text-muted:   #7A7570;
  --white:        #FFFFFF;
  --border:       #DDD5CC;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  --radius-sm:    6px;
  --radius-md:    14px;
  --radius-lg:    24px;
  --radius-pill:  100px;

  --shadow-soft:  0 4px 24px rgba(0,0,0,0.07);
  --shadow-card:  0 2px 16px rgba(0,0,0,0.05);
  --transition:   all 0.28s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.05rem; }

p { color: var(--text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.15rem; line-height: 1.75; color: var(--text); }

/* =============================================
   UTILITY
   ============================================= */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }
.container--wide { max-width: 1440px; }

.section { padding: 96px 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 128px 0; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

.tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: var(--sage-light);
  background: rgba(123,158,139,.15);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.tag--rose {
  color: #9B6E6A;
  background: rgba(201,169,166,.18);
}

.section-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
  display: block;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--rose);
  border-radius: 2px;
  margin: 20px auto;
}

.divider--left { margin-left: 0; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn--primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,125,107,.25);
}

.btn--outline {
  background: transparent;
  color: var(--sage);
  border-color: var(--sage);
}
.btn--outline:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--rose {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.btn--rose:hover {
  background: #b8918d;
  border-color: #b8918d;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--sage);
  color: var(--sage);
}

.btn--sm { padding: 9px 20px; font-size: .85rem; }
.btn--lg { padding: 17px 38px; font-size: 1.05rem; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250,248,245,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--sage);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.logo span { color: var(--sage); }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--sage);
  background: rgba(123,158,139,.1);
}

.nav-link svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 10px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.dropdown-link:hover {
  background: var(--cream);
  color: var(--sage);
  padding-left: 18px;
}

.header-cta { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: var(--shadow-soft);
}

.mobile-nav.open { display: flex; }

.mobile-nav-link {
  display: block;
  padding: 12px 24px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--warm-gray);
  transition: var(--transition);
}

.mobile-nav-link:hover { color: var(--sage); background: var(--cream); }
.mobile-nav-link:last-child { border-bottom: none; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .logo-mark { background: var(--sage); }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 24px; color: rgba(255,255,255,.6); }

.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.15);
}

.social-btn:hover {
  background: var(--sage);
  border-color: var(--sage);
  transform: translateY(-2px);
}

.social-btn svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-links a:hover { color: var(--sage-light); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: .875rem;
}

.footer-contact-item svg { width: 16px; height: 16px; color: var(--sage-light); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--sage-light); }

/* =============================================
   HERO (HOME)
   ============================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background: var(--cream);
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184,201,193,.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .6; }
}

.hero-eyebrow span { font-size: .8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--sage); }

.hero h1 {
  margin-bottom: 24px;
  font-weight: 700;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage);
}

.hero .lead { margin-bottom: 36px; font-size: 1.1rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 48px; }

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item svg { width: 16px; height: 16px; color: var(--sage); }

.hero-visual { position: relative; }

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.12);
}

.hero-image-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-card--stats {
  bottom: -24px;
  left: -24px;
}

.hero-card--badge {
  top: 24px;
  right: -20px;
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(123,158,139,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  flex-shrink: 0;
}

.hero-card-icon svg { width: 22px; height: 22px; }

.hero-card-text strong {
  display: block;
  font-size: 1.4rem;
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1;
}

.hero-card-text span { font-size: .78rem; color: var(--text-muted); font-weight: 500; }

/* =============================================
   SECTION: INTRO STRIP
   ============================================= */
.intro-strip {
  background: var(--sage);
  padding: 28px 0;
}

.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.intro-strip p { color: rgba(255,255,255,.9); margin: 0; font-size: .95rem; font-weight: 500; }
.intro-strip strong { color: var(--white); }

/* =============================================
   PROGRAMS GRID
   ============================================= */
.programs-section { background: var(--white); }

.section-header {
  max-width: 600px;
  margin-bottom: 56px;
}

.section-header.centered { max-width: 600px; margin: 0 auto 56px; text-align: center; }
.section-header.centered .divider { margin: 16px auto; }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.program-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--sage-light);
}

.program-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.program-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.program-card:hover .program-card-image img { transform: scale(1.05); }

.program-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }

.program-card-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 10px;
}

.program-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.program-card p { font-size: .88rem; flex: 1; margin-bottom: 20px; }

.program-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.meta-item svg { width: 13px; height: 13px; color: var(--sage); }

/* =============================================
   WHY US SECTION
   ============================================= */
.why-section { background: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image-col { position: relative; }

.why-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.why-accent-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--sage);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  max-width: 220px;
  box-shadow: 0 16px 40px rgba(91,125,107,.3);
}

.why-accent-card .number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.why-accent-card p { color: rgba(255,255,255,.85); font-size: .85rem; margin-top: 6px; }

.why-list { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }

.why-item { display: flex; gap: 18px; align-items: flex-start; }

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(123,158,139,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  flex-shrink: 0;
}

.why-icon svg { width: 22px; height: 22px; }
.why-item h4 { margin-bottom: 4px; font-size: 1rem; }
.why-item p { font-size: .87rem; margin: 0; }

/* =============================================
   STATS BAND
   ============================================= */
.stats-band {
  background: var(--text);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(123,158,139,.15) 0%, transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-number span { color: var(--sage-light); }
.stat-label { font-size: .87rem; color: rgba(255,255,255,.55); margin-top: 8px; font-weight: 500; }

/* =============================================
   ARTICLES SECTION
   ============================================= */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.article-card-image {
  height: 220px;
  overflow: hidden;
}

.article-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.article-card:hover .article-card-image img { transform: scale(1.05); }

.article-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.article-meta .tag { margin: 0; }
.article-date { font-size: .78rem; color: var(--text-muted); font-weight: 500; }
.article-read-time { font-size: .78rem; color: var(--text-muted); }

.article-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.article-card p { font-size: .87rem; flex: 1; margin-bottom: 18px; }

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--warm-gray);
  padding-top: 16px;
  margin-top: auto;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Large featured article card */
.article-card--featured {
  grid-column: span 2;
  flex-direction: row;
}

.article-card--featured .article-card-image {
  width: 420px;
  height: auto;
  flex-shrink: 0;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--rose-light); }

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform .5s ease;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  min-width: 360px;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  color: var(--rose);
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: .93rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--sage-dark);
  flex-shrink: 0;
}

.testimonial-author-info strong { display: block; font-size: .88rem; color: var(--text); }
.testimonial-author-info span { font-size: .78rem; color: var(--text-muted); }

.stars { color: #E8B84B; font-size: 1.1rem; letter-spacing: 1px; margin-bottom: 14px; }

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover { border-color: var(--sage); background: var(--sage); color: var(--white); }
.slider-btn svg { width: 18px; height: 18px; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--sage);
  border-radius: var(--radius-lg);
  padding: 64px 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin: 0 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: 200px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}

.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.8); margin: 0; font-size: 1.05rem; }

.cta-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; align-items: center; }

.btn--white {
  background: var(--white);
  color: var(--sage-dark);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* =============================================
   PAGE HERO (INNER PAGES)
   ============================================= */
.page-hero {
  padding: 72px 0 56px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; max-width: 560px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--sage); }
.breadcrumb svg { width: 12px; height: 12px; color: var(--border); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.mission-section { background: var(--white); }

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.value-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
}

.value-card .icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
  width: 44px;
  height: 44px;
  background: rgba(123,158,139,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.value-card .icon svg { width: 20px; height: 20px; color: var(--sage); }
.value-card h4 { font-size: .95rem; margin-bottom: 6px; }
.value-card p { font-size: .83rem; }

.team-section { background: var(--cream); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }

.team-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center top;
}

.team-card-body { padding: 24px; }
.team-card h4 { margin-bottom: 4px; }
.team-card .role { font-size: .83rem; color: var(--sage); font-weight: 600; margin-bottom: 10px; display: block; }
.team-card p { font-size: .83rem; }

/* =============================================
   PROGRAMS PAGE
   ============================================= */
.programs-list-section { background: var(--white); }

.programs-list { display: flex; flex-direction: column; gap: 28px; }

.program-list-item {
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
  transition: var(--transition);
}

.program-list-item:hover {
  box-shadow: var(--shadow-soft);
  border-color: var(--sage-light);
}

.program-list-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.program-list-body { padding: 36px 40px; }
.program-list-body .tag { margin-bottom: 12px; }
.program-list-body h3 { margin-bottom: 12px; }
.program-list-body p { margin-bottom: 20px; }

.program-list-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* =============================================
   PROGRAM DETAIL PAGE
   ============================================= */
.program-detail { background: var(--white); }

.program-detail-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: flex-start;
}

.program-detail-content {}

.program-detail-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
}

.program-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.sidebar-card h4 { font-size: 1.1rem; margin-bottom: 20px; }

.sidebar-info-list { display: flex; flex-direction: column; gap: 14px; }

.sidebar-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
}

.sidebar-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-info-item .label { color: var(--text-muted); }
.sidebar-info-item .value { font-weight: 600; color: var(--text); }

.curriculum-list { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }

.curriculum-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.curriculum-num {
  width: 32px;
  height: 32px;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.curriculum-text h5 { font-size: .95rem; margin-bottom: 4px; }
.curriculum-text p { font-size: .83rem; margin: 0; }

/* =============================================
   ARTICLES PAGE
   ============================================= */
.articles-page-section { background: var(--white); }

.articles-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--white);
}

.articles-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-page-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.article-page-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: var(--sage-light);
}

.article-page-card-image {
  height: 190px;
  overflow: hidden;
}

.article-page-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.article-page-card:hover .article-page-card-image img { transform: scale(1.05); }

.article-page-card-body { padding: 22px; }
.article-page-card-body .tag { margin-bottom: 8px; }
.article-page-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.article-page-card-body p { font-size: .84rem; margin-bottom: 14px; }

/* =============================================
   ARTICLE DETAIL
   ============================================= */
.article-detail { background: var(--white); }

.article-detail-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
}

.article-detail-content {}

.article-hero-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}

.article-body h2 { margin: 36px 0 16px; font-size: 1.7rem; }
.article-body h3 { margin: 28px 0 12px; font-size: 1.35rem; }
.article-body p { font-size: .97rem; line-height: 1.8; color: var(--text); margin-bottom: 18px; }
.article-body ul { margin: 16px 0 20px 20px; }
.article-body ul li { margin-bottom: 10px; font-size: .95rem; line-height: 1.7; color: var(--text-muted); list-style: disc; }
.article-body strong { color: var(--text); }

.article-body blockquote {
  border-left: 4px solid var(--sage);
  margin: 32px 0;
  padding: 20px 28px;
  background: rgba(123,158,139,.08);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-body blockquote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
  margin: 0;
}

.article-sidebar {}

.article-sidebar .sidebar-card { margin-bottom: 24px; }

.related-list { display: flex; flex-direction: column; gap: 16px; }

.related-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-decoration: none;
  transition: var(--transition);
}

.related-item:hover h5 { color: var(--sage); }

.related-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.related-item h5 { font-size: .84rem; margin-bottom: 4px; line-height: 1.3; }
.related-item span { font-size: .75rem; color: var(--text-muted); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
}

.contact-info {}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(123,158,139,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; }
.contact-detail-item .label { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; display: block; }
.contact-detail-item .value { font-size: .95rem; font-weight: 600; color: var(--text); }

.contact-map {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-md);
  background: var(--warm-gray);
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-map iframe { width: 100%; height: 100%; border: none; }

/* Contact Form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}

.contact-form-wrap h3 { margin-bottom: 6px; }
.contact-form-wrap > p { margin-bottom: 28px; font-size: .9rem; }

.form-field { margin-bottom: 20px; }

.form-field label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: .9rem;
  color: var(--text);
  transition: var(--transition);
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(123,158,139,.15);
}

.form-field textarea { resize: vertical; min-height: 110px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-success {
  display: none;
  background: rgba(123,158,139,.12);
  border: 1.5px solid var(--sage-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  margin-top: 16px;
}

.form-success.show { display: block; }
.form-success h4 { color: var(--sage-dark); margin-bottom: 6px; }
.form-success p { color: var(--sage-dark); font-size: .88rem; margin: 0; }

.consent-check { display: flex; gap: 10px; align-items: flex-start; }
.consent-check input { width: auto; margin-top: 3px; }
.consent-check label { font-size: .8rem; color: var(--text-muted); font-weight: 400; }
.consent-check label a { color: var(--sage); text-decoration: underline; }

/* =============================================
   NEWSLETTER SECTION
   ============================================= */
.newsletter-section { background: var(--warm-gray); }

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.newsletter-text { max-width: 480px; }
.newsletter-text h2 { margin-bottom: 12px; font-size: 2rem; }
.newsletter-text p { margin: 0; }

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--white);
  font-size: .92rem;
  width: 280px;
  transition: var(--transition);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(123,158,139,.15);
}

/* =============================================
   POLICY PAGES
   ============================================= */
.policy-section { background: var(--white); }

.policy-content {
  max-width: 820px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.55rem;
  margin: 40px 0 14px;
  color: var(--text);
}

.policy-content h3 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  color: var(--text);
}

.policy-content p {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.policy-content ul, .policy-content ol {
  margin: 14px 0 20px 22px;
}

.policy-content ul li, .policy-content ol li {
  font-size: .93rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 8px;
  list-style: disc;
}

.policy-content ol li { list-style: decimal; }

.policy-content a { color: var(--sage); text-decoration: underline; }
.policy-content a:hover { color: var(--sage-dark); }

.policy-content .policy-meta {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 36px;
  border: 1px solid var(--border);
  font-size: .87rem;
  color: var(--text-muted);
}

.policy-content .policy-meta strong { color: var(--text); }

/* =============================================
   SITEMAP PAGE
   ============================================= */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.sitemap-col h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sage-light);
}

.sitemap-col ul { display: flex; flex-direction: column; gap: 10px; }
.sitemap-col ul li a {
  font-size: .9rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sitemap-col ul li a::before {
  content: '→';
  color: var(--sage-light);
  font-size: .75rem;
}

.sitemap-col ul li a:hover { color: var(--sage); padding-left: 4px; }

/* =============================================
   MISC COMPONENTS
   ============================================= */
.highlight-box {
  background: rgba(123,158,139,.1);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.highlight-box p { color: var(--text); margin: 0; font-size: .95rem; }

.number-list { counter-reset: nl; display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }

.number-list li {
  counter-increment: nl;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--text-muted);
}

.number-list li::before {
  content: counter(nl, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  background: var(--sage);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 800;
}

#back-to-top.visible { opacity: 1; pointer-events: all; }
#back-to-top:hover { background: var(--sage-dark); transform: translateY(-3px); }
#back-to-top svg { width: 18px; height: 18px; }

/* Cookie banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text);
  color: rgba(255,255,255,.85);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  z-index: 9999;
  font-size: .87rem;
  transform: translateY(100%);
  transition: transform .4s ease;
}

#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { margin: 0; color: rgba(255,255,255,.8); }
#cookie-banner a { color: var(--sage-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* =============================================
   POLICY PAGES
   ============================================= */
.policy-body {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text);
}

.policy-body h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 52px 0 14px;
  padding-top: 8px;
  border-top: 2px solid var(--sage-light);
  display: inline-block;
}

.policy-body h2:first-child { margin-top: 0; }

.policy-body h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 28px 0 10px;
}

.policy-body p {
  margin-bottom: 18px;
  color: var(--text-muted);
}

.policy-body ul,
.policy-body ol {
  margin: 0 0 20px 0;
  padding-left: 24px;
}

.policy-body li {
  margin-bottom: 8px;
  color: var(--text-muted);
  line-height: 1.7;
}

.policy-body a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-body a:hover { color: var(--sage-dark); }

.policy-body strong { color: var(--text); font-weight: 600; }

/* =============================================
   SITEMAP PAGE
   ============================================= */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.sitemap-group {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}

.sitemap-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.sitemap-group-header svg {
  width: 24px;
  height: 24px;
  color: var(--sage);
  flex-shrink: 0;
}

.sitemap-group-header h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.sitemap-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sitemap-links li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.sitemap-links li:last-child { border-bottom: none; }

.sitemap-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
  font-size: .97rem;
  text-decoration: none;
  transition: color .2s;
}

.sitemap-links a svg {
  width: 16px;
  height: 16px;
  color: var(--sage);
  flex-shrink: 0;
  transition: transform .2s;
}

.sitemap-links a:hover { color: var(--sage); }
.sitemap-links a:hover svg { transform: translateX(3px); }

.sitemap-desc {
  display: block;
  font-size: .83rem;
  color: var(--text-light);
  margin-top: 4px;
  padding-left: 24px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .sitemap-grid { grid-template-columns: 1fr; }
  .sitemap-group { padding: 24px 20px; }
  .policy-body h2 { font-size: 1.25rem; }
}
