.elementor-1591 .elementor-element.elementor-element-01adca0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1591 .elementor-element.elementor-element-7468d11 > .elementor-widget-container{margin:-20px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --plum: #3D1A4E;
  --plum-light: #5C2D72;
  --plum-deep: #25103A;
  --terra: #E2007F;
  --terra-light: #FF65BC;
  --terra-pale: #FF65BC;
  --gold: #E2007F;
  --gold-pale: #FF65BC;
  --cream: #FAF6F0;
  --white: #FFFFFF;
  --charcoal: #1A1A1A;
  --mid: #6B6B6B;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

body { font-family: var(--font-body); background: var(--cream); color: var(--charcoal); overflow-x: hidden; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(61,26,78,0.96);
  backdrop-filter: blur(12px);
  transition: background 0.4s;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.02em; text-decoration: none; flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 400; transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--terra); color: var(--white) !important;
  padding: 0.55rem 1.4rem; border-radius: 2rem; font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--terra-light) !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: var(--plum-deep); flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 1.3rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 300; transition: color 0.2s; }
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer .nav-cta { background: var(--terra); color: var(--white) !important; padding: 0.8rem 2rem; border-radius: 2rem; font-size: 1rem !important; }

/* ══════════════════════════════
   PAGE HERO
══════════════════════════════ */
.page-hero {
  position: relative; padding: 14rem 4rem 7rem;
  background: linear-gradient(135deg, #1a0827 0%, #3D1A4E 50%, #5C2D72 100%);
  overflow: hidden;
  text-align: center;
}
/* Large watermark text */
.page-hero::before {
  content: 'About';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: 28vw; font-weight: 300;
  color: rgba(255,255,255,0.04); white-space: nowrap; pointer-events: none; line-height: 1;
}
/* Decorative top-right blob */
.page-hero::after {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,98,45,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 2rem;
}
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.page-hero-badge {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.4rem 1.2rem; border-radius: 2rem; margin-bottom: 2rem;
}
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 1.6rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem); line-height: 1.8;
  color: rgba(255,255,255,0.7); font-weight: 300; max-width: 680px; margin: 0 auto;
}

/* ══════════════════════════════
   SECTION COMMONS
══════════════════════════════ */
section { padding: 6rem 4rem; }
.section-label {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terra); font-weight: 500; margin-bottom: 1rem; display: block;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300; line-height: 1.15; color: var(--plum-deep); margin-bottom: 1.4rem;
}
.section-title em { font-style: italic; color: var(--terra); }
.section-body { font-size: 1rem; line-height: 1.85; color: var(--mid); font-weight: 300; }
.btn-primary {
  background: var(--terra); color: var(--white);
  padding: 0.9rem 2.4rem; border-radius: 2rem;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.06em;
  text-decoration: none; text-transform: uppercase;
  transition: transform 0.2s, background 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--terra-light); transform: translateY(-2px); }
.btn-outline-dark {
  border: 1.5px solid var(--plum); color: var(--plum);
  padding: 0.9rem 2.4rem; border-radius: 2rem;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.06em;
  text-decoration: none; text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s; display: inline-block;
}
.btn-outline-dark:hover { background: var(--plum); color: var(--white); }

/* ══════════════════════════════
   ORIGIN STORY
══════════════════════════════ */
.origin { background: var(--cream); }
.origin-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center; max-width: 1200px; margin: 0 auto;
}
.origin-image { position: relative; }
.origin-img-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 2px;
  display: block;
  background: linear-gradient(135deg, #e8d5c4, #c9a084);
}
.origin-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--plum); color: var(--white);
  padding: 1.8rem 2rem; border-radius: 2px;
  font-family: var(--font-display); text-align: center;
  border: 4px solid var(--cream);
}
.origin-badge strong { display: block; font-size: 2.6rem; font-weight: 300; color: var(--gold); line-height: 1; }
.origin-badge span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.origin-corner {
  position: absolute; top: -1.5rem; right: -1.5rem;
  width: 100px; height: 100px; border-radius: 2px;
  background: var(--terra); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2.5rem; color: rgba(255,255,255,0.5);
  font-weight: 300;
}
.origin-text { }
.origin-quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem; margin: 2rem 0;
  font-family: var(--font-display); font-size: 1.4rem;
  font-style: italic; line-height: 1.5; color: var(--plum);
}
.origin-text p { margin-bottom: 1.2rem; }

/* ══════════════════════════════
   MISSION + VISION  (two-column on dark bg)
══════════════════════════════ */
.mv-section { background: var(--plum-deep); padding: 6rem 4rem; }
.mv-inner { max-width: 1200px; margin: 0 auto; }
.mv-header { text-align: center; margin-bottom: 5rem; }
.mv-header .section-title { color: var(--white); }
.mv-header .section-label { color: rgba(201,168,76,0.7); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(255,255,255,0.07); }
.mv-card {
  background: var(--plum-deep); padding: 3.5rem 3rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.mv-card:hover { background: rgba(92,45,114,0.4); }
.mv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.mv-card:nth-child(1)::before { background: var(--terra); }
.mv-card:nth-child(2)::before { background: var(--gold); }
.mv-card:hover::before { transform: scaleX(1); }
.mv-icon {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 2rem;
}
.mv-card h3 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 300;
  color: var(--white); margin-bottom: 1.2rem; line-height: 1.2;
}
.mv-card h3 em { font-style: italic; color: var(--gold); }
.mv-card p { font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,0.65); font-weight: 300; }
.mv-watermark {
  position: absolute; bottom: -1rem; right: 1.5rem;
  font-family: var(--font-display); font-size: 7rem; font-weight: 300;
  color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none; white-space: nowrap;
}

/* ══════════════════════════════
   MANIFESTO / VALUES STRIP
══════════════════════════════ */
.manifesto { background: var(--terra); padding: 5rem 4rem; text-align: center; }
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto .section-label { color: rgba(255,255,255,0.65); }
.manifesto blockquote {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300; font-style: italic; line-height: 1.3;
  color: var(--white); margin: 0;
}
.manifesto cite {
  display: block; margin-top: 1.5rem;
  font-style: normal; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ══════════════════════════════
   WHAT MEMBERSHIP MEANS  (benefits list)
══════════════════════════════ */
.benefits { background: var(--white); }
.benefits-wrap { max-width: 1200px; margin: 0 auto; }
.benefits-header { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; margin-bottom: 4rem; }
.benefits-header-right {
  padding-top: 1rem;
}
.benefits-header-right p {
  font-family: var(--font-display); font-size: 1.3rem; font-style: italic;
  line-height: 1.65; color: var(--plum); margin-bottom: 2rem;
}
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5px; background: rgba(61,26,78,0.08); }
.benefit-item {
  background: var(--white); padding: 2.2rem 2rem;
  display: flex; gap: 1.4rem; align-items: flex-start;
  transition: background 0.2s; position: relative; overflow: hidden;
}
.benefit-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--terra); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.benefit-item:hover { background: var(--cream); }
.benefit-item:hover::after { transform: scaleX(1); }
.benefit-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 300;
  color: rgba(61,26,78,0.15); line-height: 1; flex-shrink: 0; min-width: 2.5rem;
}
.benefit-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.benefit-text h4 { font-size: 0.95rem; font-weight: 500; color: var(--plum); margin-bottom: 0.4rem; }
.benefit-text p  { font-size: 0.88rem; color: var(--mid); line-height: 1.7; }

/* ══════════════════════════════
   ORIGIN TIMELINE
══════════════════════════════ */
.timeline-section { background: var(--white); }
.timeline-inner { max-width: 900px; margin: 0 auto; }
.timeline-header { text-align: center; margin-bottom: 4rem; }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--terra), var(--plum));
}
.timeline-item { position: relative; padding: 0 0 3rem 3rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -1.45rem; top: 0.3rem;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--terra); border: 3px solid var(--gold-pale);
  box-shadow: 0 0 0 2px var(--terra);
}
.timeline-item:last-child .timeline-dot { background: var(--plum); box-shadow: 0 0 0 2px var(--plum); }
.timeline-date {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--terra); font-weight: 500; margin-bottom: 0.5rem;
}
.timeline-item h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
  color: var(--plum-deep); margin-bottom: 0.7rem; line-height: 1.25;
}
.timeline-item p { font-size: 0.95rem; color: var(--mid); line-height: 1.8; }

/* ══════════════════════════════
   VALUES / PILLARS
══════════════════════════════ */
.values-section { background: var(--cream); }
.values-inner { max-width: 1200px; margin: 0 auto; }
.values-header { text-align: center; margin-bottom: 4rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--white); padding: 2.5rem 1.8rem; border-radius: 2px;
  border: 1px solid rgba(61,26,78,0.08);
  text-align: center; transition: transform 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--terra); transform: scaleX(0); transform-origin: center;
  transition: transform 0.4s ease;
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(196,98,45,0.2); }
.value-card:hover::before { transform: scaleX(1); }
.value-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
.value-card h4 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 400;
  color: var(--plum); margin-bottom: 0.8rem;
}
.value-card p { font-size: 0.85rem; color: var(--mid); line-height: 1.75; }

/* ══════════════════════════════
   STATS
══════════════════════════════ */
.about-stats { background: var(--plum); padding: 4rem; }
.about-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1200px; margin: 0 auto;
}
.about-stat {
  text-align: center; padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.about-stat:last-child { border-right: none; }
.about-stat-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 300;
  color: var(--gold); display: block; line-height: 1; margin-bottom: 0.5rem;
}
.about-stat-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* ══════════════════════════════
   CTA
══════════════════════════════ */
.about-cta {
  background: var(--plum-deep); padding: 8rem 4rem; text-align: center;
  position: relative; overflow: hidden;
}
.about-cta::before {
  content: 'FoundHers';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-display); font-size: 20vw; font-weight: 300;
  color: rgba(255,255,255,0.03); white-space: nowrap; pointer-events: none; line-height: 1;
}
.about-cta .section-label { color: rgba(201,168,76,0.7); }
.about-cta .section-title { color: var(--white); max-width: 700px; margin: 0 auto 1.4rem; }
.about-cta p { color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto 3rem; line-height: 1.85; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-gold {
  background: var(--gold); color: var(--plum-deep);
  padding: 1rem 2.8rem; border-radius: 2rem;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.08em;
  text-decoration: none; text-transform: uppercase;
  transition: transform 0.2s, background 0.2s; display: inline-block;
}
.btn-gold:hover { transform: translateY(-2px); background: #d9b85a; }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.35); color: var(--white);
  padding: 1rem 2.8rem; border-radius: 2rem;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.08em;
  text-decoration: none; text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer { background: var(--plum-deep); color: rgba(255,255,255,0.7); padding: 5rem 4rem 2.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem;
  max-width: 1200px; margin: 0 auto 3rem;
}
.footer-brand .nav-logo { display: block; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.5); margin-bottom: 1.6rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); display: flex;
  align-items: center; justify-content: center; font-size: 0.75rem;
  color: rgba(255,255,255,0.6); text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.footer-col a { display: block; font-size: 0.86rem; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 0.7rem; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-contact-col { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.8; }

/* ══════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════ */
.fh-animate {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fh-animate.fh-visible { opacity: 1; transform: translateY(0); }
.fh-animate-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fh-animate-left.fh-visible { opacity: 1; transform: translateX(0); }
.fh-animate-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fh-animate-right.fh-visible { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════
   RESPONSIVE — TABLET 1024px
══════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2rem; }
  section { padding: 5rem 2.5rem; }
  .page-hero { padding: 12rem 2.5rem 6rem; }
  .mv-section { padding: 5rem 2.5rem; }
  .manifesto { padding: 4rem 2.5rem; }
  .about-cta { padding: 6rem 2.5rem; }
  footer { padding: 4rem 2.5rem 2rem; }

  .origin-wrap { gap: 3.5rem; }
  .mv-grid { grid-template-columns: 1fr 1fr; }
  .benefits-header { gap: 3rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .about-stat:nth-child(1),
  .about-stat:nth-child(2) { border-right: 1px solid rgba(255,255,255,0.1); }
  .about-stat:nth-child(3),
  .about-stat:nth-child(4) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ══════════════════════════════
   RESPONSIVE — MOBILE 768px
══════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; z-index: 210; position: relative; }

  section { padding: 4rem 1.4rem; }
  .page-hero { padding: 10rem 1.4rem 5rem; }
  .mv-section { padding: 4rem 1.4rem; }
  .manifesto { padding: 4rem 1.4rem; }
  .about-stats { padding: 3rem 1.4rem; }
  .about-cta { padding: 5rem 1.4rem; }
  footer { padding: 4rem 1.4rem 2rem; }

  /* Hero */
  .page-hero::before { font-size: 50vw; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }

  /* Origin */
  .origin-wrap { grid-template-columns: 1fr; gap: 5rem; }
  .origin-image { padding: 0 1rem; }
  .origin-img-main { aspect-ratio: 3/2; }
  .origin-badge { left: 0; bottom: -2rem; }
  .origin-corner { top: -1rem; right: 0; width: 70px; height: 70px; font-size: 1.8rem; }

  /* Mission / Vision */
  .mv-grid { grid-template-columns: 1fr; }
  .mv-card { padding: 2.5rem 1.8rem; }

  /* Benefits */
  .benefits-header { grid-template-columns: 1fr; gap: 2rem; }
  .benefits-grid { grid-template-columns: 1fr; }

  /* Timeline */
  .timeline { padding-left: 1.5rem; }
  .timeline-item { padding: 0 0 2.5rem 2.5rem; }
  .timeline-dot { left: -1.1rem; }

  /* Values */
  .values-grid { grid-template-columns: 1fr 1fr; }

  /* Stats */
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .about-stat:nth-child(1),
  .about-stat:nth-child(2) { border-right: 1px solid rgba(255,255,255,0.1); }
  .about-stat:nth-child(3),
  .about-stat:nth-child(4) { border-bottom: none; }

  /* CTA */
  .about-cta::before { font-size: 35vw; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-gold, .btn-outline { width: 100%; max-width: 280px; text-align: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
}

/* ══════════════════════════════
   SMALL MOBILE 480px
══════════════════════════════ */
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 2rem; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
}/* End custom CSS */