/* ========================================================
   The Uplifted Woman — stylesheet
   ======================================================== */

:root {
  --cream: #FBF4EC;
  --cream-deep: #F3E7D9;
  --blush: #F1D6D2;
  --blush-light: #F8E7E3;
  --plum: #3F2233;
  --plum-soft: #6B3854;
  --plum-mid: #542C42;
  --gold: #BE9552;
  --gold-light: #D9B877;
  --text: #3A2A32;
  --text-muted: #7C6670;
  --white: #FFFFFF;
  --shadow: 0 20px 50px -20px rgba(63, 34, 51, 0.25);
  --shadow-soft: 0 10px 30px -15px rgba(63, 34, 51, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.16,.8,.28,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

p { margin: 0 0 1em; color: var(--text-muted); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--plum);
  color: var(--white);
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.section-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; scroll-margin-top: 90px; padding: 110px 0; }
#home { scroll-margin-top: 0; }

/* ---------- Decorative edges: blobs & curved dividers ---------- */
.section-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: blobFloat 12s ease-in-out infinite;
}
.section-blob--blush { background: var(--blush); opacity: .55; }
.section-blob--gold { background: var(--gold-light); opacity: .3; }

@keyframes blobFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.section-divider {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}
.section-divider svg {
  display: block;
  width: 100%;
  height: clamp(36px, 7vw, 90px);
}

@media (prefers-reduced-motion: reduce) {
  .section-blob { animation: none; }
}

.eyebrow {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold-light); }

.section-title {
  position: relative;
  display: inline-block;
  font-size: clamp(2rem, 4vw, 2.7rem);
  padding-bottom: 18px;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--ease) .25s;
}
.section-heading.is-visible .section-title::after { transform: scaleX(1); }
.section-title--light { color: var(--white); }
.section-title--light::after { background: var(--gold-light); }
.section-lede {
  max-width: 640px;
  font-size: 1.08rem;
  margin-bottom: 48px;
}
.section-lede--italic { font-style: italic; font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--plum-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--plum);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: var(--shadow); background: var(--plum-mid); }
.btn--light { background: var(--white); color: var(--plum); }
.btn--light:hover { background: var(--gold-light); color: var(--plum); }
.btn--ghost {
  background: transparent;
  color: var(--plum);
  border-color: rgba(63,34,51,.3);
}
.btn--ghost:hover { border-color: var(--plum); background: rgba(63,34,51,.05); transform: translateY(-3px); }
.btn--ghost-light { color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn--small { padding: 11px 24px; font-size: .85rem; }
.btn--full { width: 100%; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ========================================================
   NAVBAR
   ======================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.navbar__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  transition: color .4s var(--ease);
}
.navbar__mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.navbar__mark img { width: 100%; height: 100%; object-fit: cover; }
.navbar__word-group { display: flex; flex-direction: column; line-height: 1.15; }
.navbar__word {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.navbar__subword {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color .4s var(--ease);
}
.navbar.is-scrolled .navbar__subword { color: var(--gold); }
.navbar__links {
  display: flex;
  gap: 26px;
}
.nav-link {
  color: var(--white);
  font-size: .95rem;
  position: relative;
  padding: 4px 0;
  transition: color .4s var(--ease), opacity .3s;
  opacity: .92;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { opacity: 1; }

.navbar__actions { display: flex; align-items: center; gap: 18px; }

.navbar.is-scrolled {
  background: rgba(251, 244, 236, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 30px -18px rgba(63,34,51,.35);
  padding: 14px 0;
}
.navbar.is-scrolled .navbar__logo,
.navbar.is-scrolled .nav-link { color: var(--plum); }
.navbar.is-scrolled .btn--primary { box-shadow: none; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  color: var(--white);
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s;
}
.navbar.is-scrolled .hamburger span { background: var(--plum); }
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ========================================================
   HERO
   ======================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.04);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.14); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg img { animation: none; }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(63,34,51,.88) 0%, rgba(63,34,51,.72) 38%, rgba(63,34,51,.42) 68%, rgba(63,34,51,.25) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 160px 32px 100px;
  width: 100%;
}
.hero__headline {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  max-width: 780px;
  margin-bottom: 24px;
}
.hero__headline em { color: var(--gold-light); font-style: italic; }
.hero__sub {
  color: rgba(255,255,255,.88);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 64px; }

.hero__facts {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.25);
  padding-top: 28px;
  max-width: 720px;
}
.hero__fact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.hero__fact:last-child { border-right: none; }
.hero__fact-label {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero__fact-value {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.15rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255,255,255,.6);
  border-radius: 20px;
}
.scroll-indicator span {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  border-radius: 3px;
  background: var(--white);
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-indicator span { animation: none; }
}

/* ========================================================
   ABOUT
   ======================================================== */
.about__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.about__image { position: relative; }
.about__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.about__image-accent {
  position: absolute;
  width: 70%;
  height: 70%;
  right: -24px;
  bottom: -24px;
  background: var(--blush);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.about__block { margin-bottom: 30px; }
.about__block h3 { font-size: 1.25rem; margin-bottom: 8px; }
.about__block p { margin-bottom: 0; }
.about__verse {
  margin: 36px 0;
  padding: 26px 30px;
  background: var(--blush-light);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--plum);
}
.about__verse cite {
  display: block;
  margin-top: 10px;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.preamble {
  padding-top: 8px;
}
.preamble__title {
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--plum-soft);
  margin-bottom: 18px;
}
.preamble p { margin-bottom: 16px; }
.preamble__litany {
  margin: 22px 0;
  padding-left: 22px;
  border-left: 2px solid var(--blush);
}
.preamble__litany p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--plum-soft);
  line-height: 1.6;
  margin-bottom: 14px;
}
.preamble__litany p:last-child { margin-bottom: 0; }
.preamble__sign {
  margin: 28px 0 4px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--plum);
  line-height: 1.5;
}
.preamble__author {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0;
}

/* ========================================================
   FOUNDER
   ======================================================== */
.founder { background: var(--white); }
.founder__grid {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 64px;
  align-items: start;
}
.founder__portrait {
  position: sticky;
  top: 110px;
  text-align: center;
}
.founder__portrait img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-soft);
}
.founder__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--plum-soft);
  font-size: 1.05rem;
  max-width: 220px;
  margin: 0 auto;
}
.founder__copy p { font-size: 1rem; }
.founder__copy em { color: var(--plum); font-style: italic; }

.founder__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 28px 0;
  margin: 12px 0 32px;
  border-top: 1px solid rgba(63,34,51,.12);
  border-bottom: 1px solid rgba(63,34,51,.12);
}
.founder__stat { text-align: center; }
.founder__stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--plum);
  margin-bottom: 6px;
}
.founder__stat-label {
  font-size: .8rem;
  color: var(--text-muted);
}

.founder__books h4 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--plum-soft);
  margin-bottom: 16px;
}
.founder__books-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}
.founder__books-list li {
  font-size: .92rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 16px;
}
.founder__books-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.founder__books-list strong { color: var(--plum); font-weight: 500; }
.founder__books-note {
  font-style: italic;
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.founder__quote {
  margin: 0 0 32px;
  padding: 26px 30px;
  background: var(--blush-light);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--plum);
}
.founder__quote cite {
  display: block;
  margin-top: 10px;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ========================================================
   VALUES
   ======================================================== */
.values { background: var(--white); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  background: var(--blush-light);
}
.value-card__icon {
  display: inline-flex;
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 22px;
}
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { margin-bottom: 0; font-size: .95rem; }

/* ========================================================
   HOUSE RULES
   ======================================================== */
.house-rules { background: var(--blush-light); }
.rules__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.rule-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px;
  display: flex;
  gap: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease);
}
.rule-card:hover { transform: translateY(-4px); }
.rule-card__number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.rule-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.rule-card p { font-size: .95rem; margin-bottom: 0; }

.rules__verse {
  max-width: 760px;
  margin: 0 auto 20px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--plum);
  padding: 0 20px;
}
.rules__verse cite {
  display: block;
  margin-top: 14px;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.rules__glad {
  text-align: center;
  color: var(--plum-soft);
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.rules__cta { text-align: center; }

/* ========================================================
   PROGRAMS
   ======================================================== */
.programs__featured {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 60px;
}
.programs__featured-image { min-height: 340px; }
.programs__featured-image img { width: 100%; height: 100%; object-fit: cover; }
.programs__featured-copy {
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.program-icon {
  display: inline-flex;
  width: 46px; height: 46px;
  color: var(--gold);
  margin-bottom: 18px;
}
.programs__featured-copy h3 { font-size: 1.6rem; }
.program-link {
  color: var(--plum);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  display: inline-block;
  width: fit-content;
  margin-top: 6px;
  transition: opacity .3s;
}
.program-link:hover { opacity: .7; }

.programs__subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--plum-soft);
  margin-bottom: 20px;
}
.programs__tags { display: flex; flex-wrap: wrap; gap: 14px; }
.tag {
  background: var(--blush-light);
  color: var(--plum);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: .92rem;
  font-weight: 500;
  border: 1px solid var(--blush);
}

/* ========================================================
   IMPACT
   ======================================================== */
.impact {
  background: var(--plum);
  background-image: radial-gradient(ellipse at top right, rgba(190,149,82,.16), transparent 55%);
}
.impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}
.impact__stat {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.impact__stat:last-child { border-right: none; }
.impact__number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold-light);
  margin-bottom: 10px;
}
.impact__label {
  color: rgba(255,255,255,.75);
  font-size: .92rem;
  letter-spacing: .02em;
}
.impact__statement {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--white);
  line-height: 1.5;
}

/* ========================================================
   CTA BAND
   ======================================================== */
.cta-band {
  background: linear-gradient(120deg, var(--plum-mid), var(--plum));
  padding: 110px 0;
}
.cta-band__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.cta-band__inner h2 { color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem); }
.cta-band__inner p { color: rgba(255,255,255,.82); font-size: 1.1rem; margin-bottom: 40px; }
.cta-band__actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ========================================================
   CONTACT
   ======================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
}
.contact__form {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 8px;
}
.optional { color: var(--text-muted); font-weight: 400; }
.form-row input, .form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(63,34,51,.15);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  transition: border-color .3s, box-shadow .3s;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(190,149,82,.18);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-note { margin: 16px 0 0; font-size: .9rem; color: var(--gold); min-height: 1.2em; }

.contact__info h3 { font-size: 1.4rem; }
.contact__info-lede { margin-bottom: 32px; }
.contact__list { list-style: none; margin: 0 0 40px; padding: 0; }
.contact__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(63,34,51,.1);
}
.contact__list li:first-child { padding-top: 0; }
.contact__list-icon {
  width: 26px; height: 26px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__list strong { display: block; color: var(--plum); font-size: .95rem; margin-bottom: 3px; }
.contact__list a, .contact__list span { color: var(--text-muted); font-size: .95rem; }
.contact__list a:hover { color: var(--plum); }

.contact__socials-label {
  display: block;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--plum-soft);
  margin-bottom: 16px;
}
.social-icons { display: flex; gap: 14px; }
.social-icons a {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blush-light);
  color: var(--plum);
  transition: background .3s, color .3s, transform .3s;
}
.social-icons a svg { width: 20px; height: 20px; }
.social-icons a:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }

/* ========================================================
   FOOTER
   ======================================================== */
.site-footer { background: var(--plum); padding: 70px 0 0; }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-footer__logo { display: flex; align-items: center; gap: 14px; }
.site-footer .navbar__mark { width: 48px; height: 48px; }
.site-footer .navbar__word { color: var(--white); font-size: 1.3rem; }
.site-footer .navbar__subword { color: var(--gold-light); }
.site-footer__brand p {
  color: rgba(255,255,255,.65);
  max-width: 420px;
  margin: 18px 0 24px;
}
.social-icons--footer a { background: rgba(255,255,255,.1); color: var(--white); }
.social-icons--footer a:hover { background: var(--gold); }

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.site-footer__links a { color: rgba(255,255,255,.7); font-size: .95rem; transition: color .3s; }
.site-footer__links a:hover { color: var(--gold-light); }

.site-footer__bottom {
  text-align: center;
  padding: 26px 32px;
}
.site-footer__bottom p { color: rgba(255,255,255,.5); font-size: .85rem; margin: 0; }

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__image { max-width: 420px; margin: 0 auto; }
  .founder__grid { grid-template-columns: 1fr; gap: 36px; }
  .founder__portrait { position: static; }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .rules__grid { grid-template-columns: 1fr; }
  .programs__featured { grid-template-columns: 1fr; }
  .programs__featured-image { min-height: 260px; }
  .impact__grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .impact__stat:nth-child(2n) { border-right: none; }
  .impact__stat:nth-child(1), .impact__stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 30px; }
  .contact__grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .navbar__inner { padding: 0 20px; }
  .navbar__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    box-shadow: -20px 0 50px rgba(0,0,0,.15);
  }
  .navbar__links.is-open { transform: translateX(0); }
  .nav-link { color: var(--plum) !important; font-size: 1.15rem; }
  .navbar__actions .btn--small { display: none; }
  .hamburger { display: flex; }

  .hero__content { padding: 130px 24px 80px; }
  .hero__facts { flex-direction: column; gap: 20px; }
  .hero__fact { border-right: none; padding-right: 0; margin-right: 0; }

  .values__grid { grid-template-columns: 1fr; }
  .impact__grid { grid-template-columns: 1fr; }
  .impact__stat { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 28px; }
  .impact__stat:last-child { border-bottom: none; }

  .programs__featured-copy { padding: 34px 28px; }
  .contact__form { padding: 30px 24px; }
}

@media (max-width: 640px) {
  section { padding: 80px 0; }
  .section-inner { padding: 0 24px; }
}
