/* ════════════════════════════════════════════════════════
   Momma Vee Foundation — main.css  v1.0.0
   Variables are injected dynamically via wp_head() from
   functions.php so colours & fonts are Customizer-driven.
════════════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font-body, 'Lato', sans-serif);
  background: var(--navy, #0b1728);
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
::-webkit-scrollbar             { width: 5px; }
::-webkit-scrollbar-track       { background: var(--navy, #0b1728); }
::-webkit-scrollbar-thumb       { background: #5a4010; border-radius: 3px; }

/* ════════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════════ */
.mvf-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11, 23, 40, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border, rgba(255,255,255,0.07));
  transition: padding .3s, box-shadow .3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 44px;
  transition: padding .3s;
}
.mvf-nav.scrolled .nav-inner  { padding-top: 10px; padding-bottom: 10px; }
.mvf-nav.scrolled              { box-shadow: 0 4px 30px rgba(0,0,0,.55); }

/* Logo */
.nav-logo         { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-img     { height: 40px; width: auto; object-fit: contain; display: block; }
.nav-logo-mark    {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold, #c9a84c);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-weight: 700; font-size: 11px;
  color: var(--navy, #0b1728);
}
.nav-logo-name {
  font-weight: 900; font-size: 10.5px; color: #fff;
  letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.25;
}
.nav-logo-sub  {
  font-size: 8px; font-weight: 300;
  color: var(--muted, #7a8fae);
  letter-spacing: 2px; text-transform: uppercase;
}

/* Desktop links */
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted, #7a8fae); transition: color .25s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }

/* Nav CTA button */
.nav-cta, a.nav-cta {
  padding: 9px 18px;
  background: var(--gold, #c9a84c);
  color: var(--navy, #0b1728) !important;
  font-size: 9.5px; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 2px; transition: background .25s, transform .25s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light, #dfc070); transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--gold-light, #dfc070); border-radius: 2px;
  transition: all .3s;
}
/* Animated X when open */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-down drawer */
.nav-drawer {
  position: fixed; top: 62px; left: 0; right: 0; z-index: 999;
  background: rgba(11, 23, 40, 0.99);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border, rgba(255,255,255,0.07));
  padding: 0 28px;
  max-height: 0; overflow: hidden;
  transition: max-height .38s cubic-bezier(.4,0,.2,1), padding .38s;
}
.nav-drawer.open {
  max-height: 420px;
  padding: 24px 28px 28px;
}
.nav-drawer ul         { list-style: none; }
.nav-drawer ul li a    {
  display: block; padding: 14px 0;
  font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid var(--border, rgba(255,255,255,0.07));
  transition: color .2s;
}
.nav-drawer ul li:last-child a { border-bottom: none; }
.nav-drawer ul li a:hover      { color: var(--gold-light, #dfc070); }
.nav-cta-mob {
  display: block; margin-top: 18px; padding: 14px;
  background: var(--gold, #c9a84c);
  color: var(--navy, #0b1728) !important;
  text-align: center;
  font-size: 10px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px; transition: background .25s;
}
.nav-cta-mob:hover { background: var(--gold-light, #dfc070); }

/* ════════════════════════════════════════════════════════
   SHARED
════════════════════════════════════════════════════════ */
section { padding: 92px 0; }
.wrap   { max-width: 1120px; margin: 0 auto; padding: 0 44px; }

.sec-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 9px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold, #c9a84c); margin-bottom: 14px;
}
.sec-tag::before {
  content: ''; display: block;
  width: 26px; height: 1px; background: var(--gold, #c9a84c);
}

.sec-title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: clamp(32px, 4.5vw, 54px); font-weight: 700;
  line-height: 1.1; letter-spacing: -.5px; margin-bottom: 22px;
}
.sec-title em {
  font-style: italic;
  color: var(--gold-light, #dfc070);
  -webkit-text-fill-color: var(--gold-light, #dfc070);
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 10px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px; border: none; cursor: pointer; transition: all .25s;
  text-decoration: none;
}
.btn-gold           { background: var(--gold, #c9a84c);       color: var(--navy, #0b1728); }
.btn-gold:hover     { background: var(--gold-light, #dfc070);  color: var(--navy, #0b1728); transform: translateY(-2px); }
.btn-outline        { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn-outline:hover  { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }

/* Scroll reveal */
.reveal             { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible     { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════════
   1 · HERO
════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 120px 44px 90px;
}

/* Background layers */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-color: var(--navy, #0b1728);
  background-image:
    repeating-linear-gradient(0deg,  transparent, transparent 30px, rgba(255,255,255,.01) 30px,  rgba(255,255,255,.01) 31px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,.007) 80px, rgba(255,255,255,.007) 81px),
    linear-gradient(160deg, #141f14 0%, #0c1510 20%, #0f1e2a 50%, #0b1728 80%, #090f1c 100%);
  background-size: cover; background-position: center;
}
/* When a custom BG image is set, the overlay controls darkness */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(11,23,40, calc(var(--hero-overlay-opacity, .65) * .4))  0%,
    rgba(11,23,40, calc(var(--hero-overlay-opacity, .65) * .2))  35%,
    rgba(11,23,40, calc(var(--hero-overlay-opacity, .65) * .8))  70%,
    rgba(11,23,40, calc(var(--hero-overlay-opacity, .65) * 1.4)) 100%
  );
}
.hero-glow {
  position: absolute; top: 28%; left: 50%; transform: translate(-50%,-50%);
  z-index: 2; pointer-events: none;
  width: 660px; height: 320px;
  background: radial-gradient(ellipse, rgba(201,168,76,.06) 0%, transparent 65%);
}

.hero-body {
  position: relative; z-index: 3;
  max-width: 780px; text-align: center;
  animation: heroUp 1.1s cubic-bezier(.22,1,.36,1) .1s both;
}
@keyframes heroUp { from { opacity:0; transform:translateY(38px); } to { opacity:1; transform:translateY(0); } }

.hero-eyebrow {
  display: block; font-size: 9px; font-weight: 700;
  letter-spacing: 4.5px; text-transform: uppercase;
  color: rgba(255,255,255,.42); margin-bottom: 22px;
}
.hero-h1 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: clamp(52px, 8vw, 92px); font-weight: 700;
  line-height: 1.04; color: #fff; letter-spacing: -2px;
}
.hero-h1 em { font-style: italic; color: var(--gold-light, #dfc070); -webkit-text-fill-color: var(--gold-light, #dfc070); }

.hero-wave { width: 160px; margin: 20px auto 24px; display: block; }

.hero-sub {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,.57);
  line-height: 1.82; max-width: 560px; margin: 0 auto 44px; letter-spacing: .15px;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,.28); font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(201,168,76,.45), transparent);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(8px); }
}

/* ════════════════════════════════════════════════════════
   2 · HOW WE HELP
════════════════════════════════════════════════════════ */
.how       { background: var(--navy, #0b1728); border-top: 1px solid var(--border, rgba(255,255,255,.07)); padding: 88px 0; }
.how-inner { max-width: 1120px; margin: 0 auto; padding: 0 44px; }

.how-h2 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: clamp(28px, 3.8vw, 48px); font-weight: 700;
  color: #fff; line-height: 1.1; margin-bottom: 18px; letter-spacing: -.5px;
}
.how-lead {
  font-family: var(--font-accent, 'Cormorant Garamond', serif);
  font-size: clamp(16px, 1.5vw, 19px); color: rgba(255,255,255,.5);
  line-height: 1.85; max-width: 940px; margin-bottom: 44px;
}
.how-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--border, rgba(255,255,255,.07));
}
.how-card {
  background: var(--navy-card, #0d1b30); padding: 56px 52px;
  transition: background .3s;
}
.how-card:hover { background: #101d38; }
.how-card-h3 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: clamp(18px, 1.6vw, 21px); font-weight: 700;
  color: #fff; margin-bottom: 18px;
}
.how-card-p {
  font-family: var(--font-accent, 'Cormorant Garamond', serif);
  font-size: clamp(16px, 1.4vw, 18px); color: rgba(255,255,255,.52); line-height: 1.9;
}

/* ════════════════════════════════════════════════════════
   3 · ABOUT — REMOVING BARRIERS
════════════════════════════════════════════════════════ */
.about       { background: var(--navy, #0b1728); border-top: 1px solid var(--border, rgba(255,255,255,.07)); }
.about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }

/* Quote card */
.about-card {
  background: var(--navy-mid, #0e1c33);
  border: 1px solid rgba(255,255,255,.06);
  border-left: 3px solid var(--gold, #c9a84c);
  padding: 44px 40px;
}
.about-qmark {
  display: block;
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 72px; line-height: .65;
  color: var(--gold, #c9a84c); opacity: .2; margin-bottom: 14px;
}
.about-quote {
  font-family: var(--font-accent, 'Cormorant Garamond', serif);
  font-size: clamp(18px, 1.6vw, 21px); font-style: italic;
  line-height: 1.65; color: rgba(255,255,255,.86); margin-bottom: 28px;
}
.about-sig      { display: flex; align-items: center; gap: 12px; }
.about-sig-av   {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold, #c9a84c);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-weight: 700; font-size: 14px; color: var(--navy, #0b1728);
}
.about-sig-name { font-weight: 700; font-size: 13px; color: var(--gold-light, #dfc070); }
.about-sig-role { font-size: 9.5px; color: var(--muted, #7a8fae); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }

/* Right text */
.about-text p {
  font-family: var(--font-accent, 'Cormorant Garamond', serif);
  font-size: clamp(16px, 1.5vw, 18px); color: rgba(255,255,255,.57);
  line-height: 1.85; margin-bottom: 16px;
}

/* Value pillars */
.about-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 32px; border: 1px solid var(--border, rgba(255,255,255,.07));
  border-radius: 2px; overflow: hidden;
}
.pillar {
  padding: 18px 10px; text-align: center;
  background: var(--navy-mid, #0e1c33);
  border-right: 1px solid var(--border, rgba(255,255,255,.07));
  transition: background .25s;
}
.pillar:last-child  { border-right: none; }
.pillar:hover       { background: var(--navy-light, #192d4e); }
.pillar-icon        { font-size: 18px; margin-bottom: 6px; }
.pillar-label       { font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold, #c9a84c); font-weight: 700; }

/* ════════════════════════════════════════════════════════
   4 · FOUNDER STORY
════════════════════════════════════════════════════════ */
.story       { background: var(--navy-mid, #0e1c33); border-top: 1px solid var(--border, rgba(255,255,255,.07)); }
.story-inner { max-width: 1120px; margin: 0 auto; padding: 0 44px; }
.story-tag   {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 9px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold, #c9a84c); margin-bottom: 0;
}
.story-tag::before { content: ''; display: block; width: 26px; height: 1px; background: var(--gold, #c9a84c); }

.story-layout {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 60px; align-items: start; margin-top: 16px;
}
.story-h2 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: clamp(44px, 6.5vw, 74px); font-weight: 700;
  line-height: 1.0; margin-bottom: 28px; letter-spacing: -.5px;
}
.story-text p {
  font-family: var(--font-accent, 'Cormorant Garamond', serif);
  font-size: clamp(16px, 1.4vw, 17.5px); color: rgba(255,255,255,.55);
  line-height: 1.92; margin-bottom: 16px;
}
.story-cta { margin-top: 32px; }

/* Photo column */
.story-photo-col { margin-top: 52px; position: relative; }
.story-photo     {
  width: 100%; border-radius: 0; object-fit: cover;
  border: 1px solid var(--gold-border, rgba(201,168,76,.2));
  box-shadow: 0 24px 60px rgba(0,0,0,.5); display: block;
}
.story-ph {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--navy-light, #192d4e), var(--navy, #0b1728));
  border: 1px solid var(--gold-border, rgba(201,168,76,.2));
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px; padding: 24px; text-align: center;
}
.story-ph-logo {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold, #c9a84c);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-weight: 700; font-size: 22px; color: var(--navy, #0b1728);
}
.story-ph-txt { font-size: 11px; letter-spacing: 1.5px; color: var(--muted, #7a8fae); line-height: 1.5; }

/* Badge overlay */
.story-badge {
  position: absolute; bottom: -14px; left: -14px;
  background: var(--navy-light, #192d4e);
  border: 1px solid var(--gold-border, rgba(201,168,76,.2));
  border-radius: 3px; padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.story-badge-logo {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold, #c9a84c); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-weight: 700; font-size: 10px; color: var(--navy, #0b1728);
}
.story-badge-name       { font-size: 11px; font-weight: 700; color: var(--gold-light, #dfc070); line-height: 1.3; }
.story-badge-name small { display: block; font-size: 8.5px; color: var(--muted, #7a8fae); font-weight: 400; }

/* ════════════════════════════════════════════════════════
   5 · PROGRAMS
════════════════════════════════════════════════════════ */
.programs       { background: var(--navy, #0b1728); border-top: 1px solid var(--border, rgba(255,255,255,.07)); }
.programs-inner { max-width: 1120px; margin: 0 auto; padding: 0 44px; }
.programs-hd    { margin-bottom: 40px; }

.prog-board     { border: 1px solid var(--border, rgba(255,255,255,.07)); overflow: hidden; }

.prog-row-top   {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border, rgba(255,255,255,.07));
}
.prog-card                  { background: var(--navy-mid, #0e1c33); padding: 44px 40px; transition: background .3s; }
.prog-card:hover            { background: #101d38; }
.prog-card:first-child      { border-right: 1px solid var(--border, rgba(255,255,255,.07)); }

.prog-num {
  display: block;
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 52px; font-weight: 700; line-height: 1;
  color: rgba(255,255,255,.09); margin-bottom: 10px; letter-spacing: -1px;
}
.prog-h3 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: clamp(17px, 1.5vw, 19px); font-weight: 700;
  color: #fff; margin-bottom: 14px;
}
.prog-p {
  font-family: var(--font-accent, 'Cormorant Garamond', serif);
  font-size: clamp(15px, 1.3vw, 17px); color: rgba(255,255,255,.5); line-height: 1.85;
}

/* Coming Soon card */
.prog-featured       { background: var(--navy-mid, #0e1c33); padding: 44px 40px; transition: background .3s; }
.prog-featured:hover { background: #101d38; }

.prog-coming { display: inline-flex; align-items: center; gap: 10px; font-size: 9px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold, #c9a84c); margin-bottom: 16px; }
.prog-coming::before { content: ''; display: block; width: 26px; height: 1px; background: var(--gold, #c9a84c); }

.prog-feat-h3 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: clamp(22px, 2.8vw, 34px); font-weight: 700;
  color: #fff; margin-bottom: 16px; line-height: 1.15;
}
.prog-feat-p {
  font-family: var(--font-accent, 'Cormorant Garamond', serif);
  font-size: clamp(15px, 1.3vw, 17px); color: rgba(255,255,255,.5); line-height: 1.85; max-width: 900px;
}

/* ════════════════════════════════════════════════════════
   6 · CONTACT
════════════════════════════════════════════════════════ */
.contact      { background: var(--navy, #0b1728); border-top: 1px solid var(--border, rgba(255,255,255,.07)); }
.contact-wrap {
  max-width: 1120px; margin: 0 auto; padding: 0 44px;
  display: grid; grid-template-columns: 1fr 1px 1.2fr;
  gap: 0; align-items: start;
}
.contact-vline { background: rgba(255,255,255,.1); margin: 0 56px; align-self: stretch; min-height: 420px; }

.contact-left p {
  font-family: var(--font-accent, 'Cormorant Garamond', serif);
  font-size: clamp(16px, 1.5vw, 18px); color: rgba(255,255,255,.52);
  line-height: 1.8; margin-bottom: 36px;
}

.c-row  { display: flex; gap: 14px; align-items: center; margin-bottom: 20px; }
.c-icon {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.c-lbl { font-size: 8.5px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700; color: var(--gold, #c9a84c); margin-bottom: 3px; }
.c-val { font-size: 13.5px; color: rgba(255,255,255,.72); }
.c-val a { color: rgba(255,255,255,.72); transition: color .2s; }
.c-val a:hover { color: var(--gold-light, #dfc070); }

/* ─── WS Form area ─── */
.contact-right {
  padding-top: 4px;
}

/* WS Form global overrides — makes native WS Form fields match theme */
.contact-right .wsf-form,
.contact-right .wsf-field-wrapper { width: 100% !important; }

.contact-right input[type="text"],
.contact-right input[type="email"],
.contact-right input[type="tel"],
.contact-right select,
.contact-right textarea {
  width: 100% !important; padding: 13px 15px !important;
  background: var(--navy-mid, #0e1c33) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 2px !important;
  color: #fff !important; font-family: var(--font-body, 'Lato', sans-serif) !important;
  font-size: 14px !important; outline: none !important;
  transition: border-color .25s !important;
}
.contact-right input:focus,
.contact-right textarea:focus { border-color: var(--gold, #c9a84c) !important; }
.contact-right input::placeholder,
.contact-right textarea::placeholder { color: rgba(255,255,255,.22) !important; }

.contact-right label,
.contact-right .wsf-label {
  display: block !important;
  font-family: var(--font-body, 'Lato', sans-serif) !important;
  font-size: 8.5px !important; letter-spacing: 2.5px !important;
  text-transform: uppercase !important; font-weight: 700 !important;
  color: rgba(255,255,255,.38) !important; margin-bottom: 7px !important;
}

.contact-right button[type="submit"],
.contact-right input[type="submit"],
.contact-right .wsf-button {
  display: block !important; width: 100% !important; padding: 16px !important; margin-top: 4px !important;
  background: var(--gold, #c9a84c) !important;
  color: var(--navy, #0b1728) !important;
  font-family: var(--font-body, 'Lato', sans-serif) !important;
  font-size: 10.5px !important; font-weight: 900 !important;
  letter-spacing: 3px !important; text-transform: uppercase !important;
  border: none !important; border-radius: 2px !important; cursor: pointer !important;
  transition: background .25s, transform .25s !important;
}
.contact-right button[type="submit"]:hover,
.contact-right input[type="submit"]:hover,
.contact-right .wsf-button:hover {
  background: var(--gold-light, #dfc070) !important;
  transform: translateY(-1px) !important;
}

/* WS Form placeholder when shortcode not yet configured */
.wsform-placeholder {
  border: 2px dashed rgba(201,168,76,.25);
  border-radius: 4px;
  padding: 48px 32px; text-align: center;
}
.wsform-placeholder-icon { font-size: 40px; margin-bottom: 16px; }
.wsform-placeholder h3   { font-family: var(--font-heading, 'Playfair Display', serif); font-size: 20px; margin-bottom: 12px; color: var(--gold-light, #dfc070); }
.wsform-placeholder p    { font-family: var(--font-accent, 'Cormorant Garamond', serif); font-size: 17px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 8px; }
.wsform-placeholder code { background: rgba(255,255,255,.08); padding: 2px 8px; border-radius: 3px; font-size: 13px; }
.wsform-placeholder-note { font-size: 14px !important; color: rgba(255,255,255,.35) !important; }

/* ════════════════════════════════════════════════════════
   7 · FOOTER
════════════════════════════════════════════════════════ */
.mvf-footer { background: var(--navy, #0b1728); border-top: 1px solid var(--border, rgba(255,255,255,.07)); padding: 18px 0; }
.footer-bar {
  max-width: 1120px; margin: 0 auto; padding: 0 44px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy  { font-size: 12.5px; color: rgba(255,255,255,.35); }
.footer-pills { display: flex; gap: 10px; }
.footer-pill  {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 13px;
  border: 1px solid rgba(255,255,255,.14); border-radius: 2px;
  font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,.5);
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 1024px
════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .wrap, .how-inner, .programs-inner, .story-inner, .footer-bar, .contact-wrap { padding: 0 32px; }
  .story-layout { grid-template-columns: 1fr 320px; gap: 44px; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 900px
════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Nav */
  .nav-inner            { padding: 14px 22px; }
  .mvf-nav.scrolled .nav-inner { padding-top: 10px; padding-bottom: 10px; }
  .nav-links, .nav-cta  { display: none; }
  .nav-toggle           { display: flex; }

  /* Sections */
  section               { padding: 64px 0; }
  .wrap, .how-inner, .programs-inner, .story-inner, .footer-bar { padding: 0 22px; }

  /* How grid */
  .how-grid             { grid-template-columns: 1fr; }

  /* About */
  .about-inner          { grid-template-columns: 1fr; gap: 36px; }
  .about-pillars        { grid-template-columns: repeat(2, 1fr); }

  /* Story */
  .story-layout         { grid-template-columns: 1fr; gap: 36px; }
  .story-photo-col      { margin-top: 0; }
  .story-badge          { bottom: 10px; left: 10px; }

  /* Programs */
  .prog-row-top         { grid-template-columns: 1fr; }
  .prog-card:first-child { border-right: none; border-bottom: 1px solid var(--border, rgba(255,255,255,.07)); }

  /* Contact */
  .contact-wrap         { grid-template-columns: 1fr; gap: 44px; padding: 0 22px; }
  .contact-vline        { display: none; }

  /* Footer */
  .footer-bar           { flex-direction: column; align-items: flex-start; padding: 0 22px; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  ≤ 480px
════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-h1              { font-size: clamp(38px, 10vw, 52px); letter-spacing: -1px; }
  .hero-btns            { flex-direction: column; align-items: center; }
  .hero-btns .btn       { width: 100%; justify-content: center; }
  .how-card             { padding: 36px 28px; }
  .about-card           { padding: 32px 26px; }
  .prog-card, .prog-featured { padding: 32px 24px; }
  .footer-pills         { flex-direction: column; }
  .story-h2             { font-size: clamp(38px, 8vw, 52px); }
}
