/* ============================================
   HealHerSoul — Shared Styles
   ============================================ */

:root {
  --cream: #fbf6f1;
  --white: #ffffff;
  --blush: #f3dcd9;
  --blush-soft: #faeeec;
  --rose: #c97b84;
  --deep-rose: #a8495b;
  --plum: #4a2f3a;
  --plum-soft: #7a5b68;
  --gold: #d9a441;
  --gold-soft: #f1dcb0;
  --sage: #8ca897;
  --shadow: 0 10px 30px rgba(168, 73, 91, 0.12);
  --shadow-sm: 0 4px 14px rgba(168, 73, 91, 0.10);
  --radius: 20px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--plum);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--deep-rose);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

p { margin: 0 0 1em; color: var(--plum-soft); }

a { color: var(--deep-rose); text-decoration: none; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }
section.tight { padding: 56px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
  margin-bottom: 14px;
}

.center { text-align: center; }
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head p { font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--deep-rose);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: #8f3a4a; transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--deep-rose);
  border-color: var(--deep-rose);
}
.btn-secondary:hover { background: var(--deep-rose); color: var(--white); }
.btn-ghost {
  background: var(--white);
  color: var(--deep-rose);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Header / Nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(168, 73, 91, 0.10);
}
.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep-rose);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .mark {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  display: inline-block;
}
.logo-img { height: 42px; width: auto; display: block; }
footer .brand-block .logo-img { height: 46px; margin-bottom: 14px; }
@media (max-width: 480px) {
  .logo-img { height: 34px; }
}
nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
nav.main-nav a {
  color: var(--plum);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--deep-rose);
  border-bottom-color: var(--rose);
}
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.9rem; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 34px; height: 34px;
  position: relative;
}
.menu-toggle span {
  display: block;
  position: absolute;
  left: 6px; right: 6px;
  height: 2px;
  background: var(--deep-rose);
  transition: 0.3s ease;
}
.menu-toggle span:nth-child(1) { top: 11px; }
.menu-toggle span:nth-child(2) { top: 17px; }
.menu-toggle span:nth-child(3) { top: 23px; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Dropdown nav ---------- */
li.has-dropdown { position: relative; }
li.has-dropdown > a.dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.caret { font-size: 0.7em; transition: transform 0.2s ease; }
li.has-dropdown.open > a.dropdown-toggle .caret { transform: rotate(180deg); }
.dropdown-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--white);
  min-width: 230px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 8px;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}
li.has-dropdown:hover .dropdown-menu,
li.has-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { margin: 0; }
.dropdown-menu a { display: block; padding: 10px 14px; border-radius: 8px; border-bottom: none !important; font-size: 0.92rem; }
.dropdown-menu a:hover { background: var(--blush-soft); color: var(--deep-rose); }
.dropdown-menu a.active { background: var(--blush-soft); color: var(--deep-rose); font-weight: 700; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(74, 47, 58, 0.55);
  display: none; align-items: center; justify-content: center;
  z-index: 1000; padding: 20px;
  backdrop-filter: blur(2px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
  position: relative;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn { from { opacity:0; transform: translateY(16px); } to { opacity:1; transform: translateY(0); } }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--blush-soft); border: none; cursor: pointer;
  font-size: 1.1rem; color: var(--deep-rose); line-height: 1;
}
.modal-close:hover { background: var(--blush); }

/* ---------- Success popup ---------- */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(74, 47, 58, 0.55);
  display: none; align-items: center; justify-content: center;
  z-index: 1100; padding: 20px;
}
.popup-overlay.open { display: flex; }
.popup-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
  animation: modalIn 0.25s ease;
}
.popup-actions { margin-top: 6px; }
.popup-actions:empty { margin-top: 0; }
.modal-amount-note {
  background: var(--blush-soft);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.88rem;
  margin-bottom: 18px;
}
.modal-amount-note strong { color: var(--deep-rose); }
.popup-box .check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--sage); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 18px;
}
.popup-box h3 { margin-bottom: 10px; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 300;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

/* ---------- FAQ accordion ---------- */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 24px; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem;
  color: var(--deep-rose); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-question .plus { font-size: 1.3rem; transition: transform 0.25s ease; color: var(--rose); flex-shrink: 0; }
.faq-item.open .faq-question .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 22px; }
.faq-answer p { margin: 0; font-size: 0.95rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.wide { grid-column: span 2; }

.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.85rem; color: var(--blush-soft); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

/* ---------- Careers ---------- */
.role-card { display: flex; flex-direction: column; height: 100%; }
.role-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 14px; }
.role-meta span {
  background: var(--blush-soft); color: var(--deep-rose);
  font-size: 0.74rem; font-weight: 700; padding: 5px 12px; border-radius: 999px;
}
.role-card .apply-btn { margin-top: auto; padding-top: 14px; }

/* ---------- Filter bar ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  background: var(--white); border: 1.5px solid rgba(168,73,91,0.18); color: var(--plum-soft);
  padding: 9px 20px; border-radius: 999px; font-size: 0.88rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--rose); color: var(--deep-rose); }
.filter-btn.active { background: var(--deep-rose); border-color: var(--deep-rose); color: var(--white); }
.blog-card.hidden { display: none; }

/* ---------- Brochure card ---------- */
.brochure-card {
  display: flex; align-items: center; gap: 24px;
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.brochure-icon {
  width: 64px; height: 64px; border-radius: 16px; flex-shrink: 0;
  background: var(--blush-soft); display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
  text-align: center;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.55;
  z-index: 0;
}
.hero-blob.b1 { width: 340px; height: 340px; background: var(--blush); top: -120px; left: -100px; }
.hero-blob.b2 { width: 260px; height: 260px; background: var(--gold-soft); bottom: -90px; right: -60px; }
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block;
  background: var(--blush-soft);
  color: var(--deep-rose);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.hero h1 { max-width: 760px; margin-left: auto; margin-right: auto; }
.hero .lede {
  max-width: 620px;
  margin: 18px auto 34px;
  font-size: 1.15rem;
  color: var(--plum-soft);
}
.hero .btn-row { justify-content: center; }

.page-hero {
  padding: 70px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--blush-soft), var(--cream));
}
.page-hero .eyebrow { display: block; }
.page-hero p.lede { max-width: 640px; margin: 14px auto 0; font-size: 1.08rem; }

/* ---------- Full-bleed hero banner (video/photo) ---------- */
.hero-banner {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(74,47,58,0.55) 0%, rgba(74,47,58,0.72) 55%, rgba(74,47,58,0.88) 100%);
}
.hero-banner-content {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}
.hero-banner .hero-eyebrow {
  background: rgba(255,255,255,0.16);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.hero-banner h1 {
  color: var(--white);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero-banner .lede {
  max-width: 640px;
  margin: 18px auto 34px;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
}
.hero-banner .btn-row { justify-content: center; }
.hero-banner .btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.hero-banner .btn-secondary:hover { background: rgba(255,255,255,0.22); }
.scroll-cue {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.scroll-cue span { width: 1px; height: 26px; background: rgba(255,255,255,0.6); animation: scrollpulse 1.8s ease-in-out infinite; }
@keyframes scrollpulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---------- Compact page banner (secondary pages) ---------- */
.page-banner {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}
.page-banner .hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-banner .hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(74,47,58,0.58), rgba(74,47,58,0.8));
}
.page-banner-content { position: relative; z-index: 2; padding: 20px 0; }
.page-banner h1, .page-banner .eyebrow { color: var(--white); }
.page-banner .eyebrow { background: rgba(255,255,255,0.16); color: var(--white); }
.page-banner p.lede { color: rgba(255,255,255,0.9); }

/* ---------- Audience / community presenter cards ---------- */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.audience-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.audience-photo { aspect-ratio: 4/3; overflow: hidden; }
.audience-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.audience-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.audience-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--blush-soft);
  color: var(--deep-rose);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.audience-body h3 { margin-bottom: 8px; }
.audience-body p { font-size: 0.95rem; flex: 1; }
.audience-list { padding-left: 18px; margin: 10px 0 16px; }
.audience-list li { font-size: 0.88rem; color: var(--plum-soft); margin-bottom: 6px; }

/* ---------- Courses ---------- */
.course-card { display: flex; flex-direction: column; height: 100%; }
.course-level {
  display: inline-block;
  background: var(--gold-soft);
  color: #8a6413;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.course-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 6px; font-size: 0.82rem; color: var(--plum-soft); }
.course-meta span { background: var(--blush-soft); padding: 4px 10px; border-radius: 999px; }
.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 16px 0 6px;
  padding-top: 14px;
  border-top: 1px dashed rgba(168,73,91,0.18);
}
.price-now { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--deep-rose); }
.price-was { font-size: 0.95rem; color: var(--plum-soft); text-decoration: line-through; opacity: 0.7; }
.price-note { font-size: 0.78rem; color: var(--plum-soft); margin-bottom: 16px; }
.course-card .apply-btn { margin-top: auto; }
.payment-note {
  background: var(--blush-soft);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 0.88rem;
  color: var(--plum-soft);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.payment-note .lock-icon { font-size: 1.2rem; flex-shrink: 0; }

/* ---------- Cards / Grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(168,73,91,0.06);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blush-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.card ul { padding-left: 20px; margin: 14px 0; color: var(--plum-soft); }
.card ul li { margin-bottom: 6px; }
.card a.card-link { font-weight: 600; display: inline-block; margin-top: 8px; }
.card a.card-link:after { content: " →"; }

.alt-bg { background: var(--blush-soft); }
.deep-bg { background: var(--plum); color: var(--blush-soft); }
.deep-bg h2, .deep-bg h3 { color: var(--white); }
.deep-bg p { color: var(--blush-soft); }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial .quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.testimonial p.quote { font-style: italic; color: var(--plum); font-size: 1.02rem; }
.testimonial .attr { font-weight: 700; color: var(--deep-rose); margin-top: 14px; font-size: 0.92rem; }
.testimonial .attr span { font-weight: 400; color: var(--plum-soft); }

/* ---------- Pillars ---------- */
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pillar {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.pillar .num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--deep-rose); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-weight: 700; font-size: 0.9rem;
  font-family: 'Playfair Display', serif;
}
.pillar h4 { color: var(--deep-rose); font-size: 1.02rem; margin-bottom: 8px; }
.pillar p { font-size: 0.92rem; margin: 0; }

/* ---------- Founders ---------- */
.founder-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.founder-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.founder-photo {
  width: 148px; height: 148px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  box-shadow: var(--shadow);
  border: 4px solid var(--blush-soft);
  background: var(--blush-soft);
}
.founder-card h3 { margin-bottom: 2px; }
.founder-role { color: var(--rose); font-weight: 700; font-size: 0.88rem; margin-bottom: 4px; }
.founder-loc { color: var(--plum-soft); font-size: 0.85rem; margin-bottom: 16px; }
.founder-card p.bio { text-align: left; font-size: 0.95rem; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.founder-tags span {
  background: var(--blush-soft);
  color: var(--deep-rose);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ---------- Photo media ---------- */
.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-photo {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: -34px -28px 20px;
  aspect-ratio: 16/10;
}
.card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Blog ---------- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); }
.blog-card .thumb {
  height: 140px;
  background: linear-gradient(135deg, var(--rose), var(--gold-soft));
}
.blog-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card .pillar-tag {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--rose); font-weight: 700; margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card p { font-size: 0.94rem; flex: 1; }

.article-body { max-width: 720px; margin: 0 auto; }
.article-body p { font-size: 1.05rem; color: var(--plum); }
.article-meta { color: var(--rose); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 620px;
  margin: 0 auto;
}
.form-row { margin-bottom: 20px; }
label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.92rem; color: var(--plum); }
input, textarea, select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(168,73,91,0.18);
  font-family: inherit;
  font-size: 0.96rem;
  background: var(--cream);
  color: var(--plum);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--rose);
}
textarea { min-height: 120px; resize: vertical; }
.form-success {
  display: none;
  background: var(--blush-soft);
  border-radius: var(--radius-sm);
  padding: 20px;
  color: var(--deep-rose);
  font-weight: 600;
  margin-top: 18px;
  text-align: center;
}
.form-success.show { display: block; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--plum);
  color: var(--blush-soft);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-grid h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; font-family: 'Inter', sans-serif; font-weight: 700; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--blush-soft); font-size: 0.92rem; opacity: 0.9; }
.footer-grid a:hover { opacity: 1; text-decoration: underline; }
footer .brand-block .logo { color: var(--white); margin-bottom: 12px; }
footer .brand-block p { font-size: 0.9rem; opacity: 0.85; max-width: 280px; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 24px;
  font-size: 0.8rem;
  opacity: 0.75;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-legal-links {
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
}
.footer-legal-links a {
  color: var(--blush-soft);
  opacity: 0.75;
  margin: 0 10px;
  white-space: nowrap;
}
.footer-legal-links a:hover { opacity: 1; text-decoration: underline; }

/* ---------- Legal / policy pages ---------- */
.legal-updated {
  display: inline-block;
  background: var(--blush-soft);
  color: var(--deep-rose);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.article-body h2 { margin-top: 38px; }
.article-body h3 { margin-top: 22px; font-size: 1.08rem; }
.article-body ul { padding-left: 22px; margin: 0 0 16px; }
.article-body ul li { margin-bottom: 8px; color: var(--plum-soft); }
.article-body a { text-decoration: underline; text-decoration-color: rgba(168,73,91,0.35); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .audience-grid { grid-template-columns: 1fr; }
  .hero-banner { min-height: 540px; }
}

@media (max-width: 720px) {
  .founder-grid { grid-template-columns: 1fr; }
  nav.main-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px 30px;
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: 90;
  }
  nav.main-nav.open { transform: translateY(0); }
  nav.main-nav ul { flex-direction: column; gap: 18px; }
  .menu-toggle { display: block; }
  .nav-cta .btn-secondary { display: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-legal { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .brochure-card { flex-direction: column; text-align: center; }
  .whatsapp-float { bottom: 18px; right: 18px; width: 54px; height: 54px; }
  .modal-box { padding: 28px 22px; }
  .hero-banner { min-height: 480px; }
  .page-banner { min-height: 200px; }
  .scroll-cue { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
}
