/* ============================================================
   KRISTY JARRETT — Global Stylesheet
   Visual Direction: Editorial · High-end · Bold · Feminine
   
   PALETTE:
   Ink Black  #0B0B0C  — primary dark, text, strong sections
   Warm Cream #F6F0E7  — primary light background
   Pink       #C2185B  — signature accent only (~10%)
   Soft Nude  #D8C9BE  — supporting neutral, dividers
   
   RATIO: Black + Cream 80–85% / Nude 5–10% / Pink max 10%
============================================================ */

/* ── FONTS ──────────────────────────────────────────────────── */

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-LightItalic.ttf') format('truetype');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600; font-style: italic; font-display: swap;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── DESIGN TOKENS ───────────────────────────────────────────── */
:root {
  /* Core palette */
  --ink:        #0B0B0C;
  --cream:      #F6F0E7;
  --pink:       #C2185B;
  --pink-deep:  #880E4F;
  --pink-pale:  #FAF0F4;
  --pink-alpha: rgba(194,24,91,0.08);
  --nude:       #D8C9BE;
  --nude-light: #EDE6DF;

  /* Legacy aliases — keeps old HTML working */
  --dark:       #0B0B0C;
  --dark-2:     #1A1008;
  --muted:      #7A6E65;
  --light:      #F6F0E7;
  --white:      #F6F0E7;
  --purple:       #C2185B;
  --purple-deep:  #880E4F;
  --purple-dark:  #5C0A30;
  --purple-pale:  #FAF0F4;
  --purple-alpha: rgba(194,24,91,0.08);
  --grad:   linear-gradient(135deg, #C2185B, #880E4F);
  --grad-h: linear-gradient(135deg, #D81B60, #AD1457);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Quicksand', sans-serif;

  /* Spacing */
  --section-pad: 120px 5%;
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp  { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes shimmer { 0%{background-position:-200% center} 100%{background-position:200% center} }
@keyframes pulse   { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
@keyframes float   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ── BASE ────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: 72px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(246,240,231,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(216,201,190,0.4);
  transition: box-shadow 0.3s, background 0.3s;
}

.nav.scrolled {
  box-shadow: 0 2px 30px rgba(11,11,12,0.08);
  background: rgba(246,240,231,0.98);
}

.nav-logo img { height: 42px; }

.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--pink);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--pink); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-cta {
  padding: 0.6rem 1.6rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.nav-cta:hover {
  background: var(--pink);
  color: white;
}

.nav-mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}

.nav-mobile-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}

/* ── SHARED SECTION STYLES ───────────────────────────────────── */
.section { padding: var(--section-pad); }
.section-inner { max-width: 1200px; margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.60rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 1.4rem;
}

.eyebrow-dot {
  width: 5px; height: 5px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.section-heading em { font-style: italic; color: var(--pink); }

.accent-line {
  width: 40px; height: 1px;
  background: var(--pink);
  margin-bottom: 1.8rem;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.btn-primary:hover {
  background: var(--pink);
  color: white;
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border: 1px solid rgba(246,240,231,0.5);
  color: var(--cream);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-ghost:hover {
  background: rgba(246,240,231,0.12);
  border-color: var(--cream);
}

.btn-white {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--cream);
  color: var(--ink);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-white:hover {
  background: white;
  transform: translateY(-1px);
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  position: relative;
  height: 80vh;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: 72px;
}

.page-hero-img {
  position: absolute;
  inset: 0;
}

.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,11,12,0.08) 0%,
    rgba(11,11,12,0.65) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5% 8%;
  text-align: center;
  animation: fadeUp 0.8s 0.2s ease both;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-top: 0.8rem;
  letter-spacing: -0.02em;
}

.page-hero-title em { font-style: italic; color: var(--pink); }

/* ── PAGE CTA BANNER ─────────────────────────────────────────── */
.page-cta {
  background: var(--ink);
  padding: 110px 5%;
  text-align: center;
}

.page-cta-inner { max-width: 600px; margin: 0 auto; }

.page-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.page-cta h2 em { font-style: italic; color: var(--pink); }

.page-cta p {
  font-size: 0.95rem;
  color: rgba(246,240,231,0.65);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.page-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.page-cta .btn-outline {
  border-color: rgba(246,240,231,0.3);
  color: var(--cream);
}

.page-cta .btn-outline:hover {
  background: rgba(246,240,231,0.1);
  border-color: var(--cream);
  transform: translateY(-1px);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer-brand-new {
  background: var(--ink);
  padding: 72px 5% 32px;
  border-top: 1px solid rgba(216,201,190,0.1);
}

.footer-brand-new-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(216,201,190,0.1);
}

.fbn-brand img {
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 10px;
  display: block;
}

.fbn-brand p {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246,240,231,0.3);
  font-family: var(--font-body);
}

.fbn-nav {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.fbn-nav a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246,240,231,0.4);
  text-decoration: none;
  transition: color 0.25s;
}

.fbn-nav a:hover { color: var(--pink); }

.fbn-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.fbn-social a {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  border: 1px solid rgba(216,201,190,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246,240,231,0.35);
  text-decoration: none;
  transition: all 0.25s;
}

.fbn-social a:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.fbn-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: rgba(246,240,231,0.18);
  letter-spacing: 0.06em;
}

.fbn-bottom a {
  color: rgba(246,240,231,0.18);
  text-decoration: none;
  transition: color 0.25s;
}

.fbn-bottom a:hover { color: var(--pink); }

/* ── MOBILE NAV ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { gap: 1.6rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-btn { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--cream);
    padding: 24px 5%;
    gap: 20px;
    border-bottom: 1px solid var(--nude);
    z-index: 998;
  }
}

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── FORM PLACEHOLDER ────────────────────────────────────────── */
.form-placeholder {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--nude);
  border-radius: 2px;
  background: var(--cream);
}

.fp-inner { text-align: center; }

.fp-icon {
  font-size: 2.5rem;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.fp-inner h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.fp-inner p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CONTACT REASSURANCES ────────────────────────────────────── */
.contact-form-reassurances {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 1.5rem;
}

.cfr-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 400;
  font-family: var(--font-body);
}

.cfr-icon {
  width: 34px;
  height: 34px;
  background: var(--nude-light);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ── FOOTER RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 768px) {
  .footer-brand-new-inner { flex-direction: column; align-items: flex-start; }
  .fbn-nav { gap: 1.4rem; }
  .fbn-bottom { flex-direction: column; gap: 8px; }
}

/* ── HOMEPAGE HERO ───────────────────────────────────────────── */
.hero-full {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.hero-full-img {
  position: absolute;
  inset: 0;
}

.hero-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,11,12,0.05) 0%,
    rgba(11,11,12,0.10) 40%,
    rgba(11,11,12,0.68) 100%
  );
}

.hero-full-content {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 0 8% 8%;
  animation: fadeUp 1s 0.2s ease both;
}

.hero-full-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}

.hero-full-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 1.2vw, 0.78rem);
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(246,240,231,0.6);
  margin-bottom: 2.5rem;
}

/* ── EDITORIAL SPLIT ─────────────────────────────────────────── */
.editorial-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.editorial-img {
  position: relative;
  overflow: hidden;
}

.editorial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.editorial-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,11,12,0.08) 0%, transparent 60%);
}

.editorial-copy {
  padding: 110px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.editorial-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
  font-weight: 300;
}

/* ── EXPLORE SECTION ─────────────────────────────────────────── */
.explore-section {
  background: var(--ink);
  padding: var(--section-pad);
}

.explore-inner { max-width: 1200px; margin: 0 auto; }

.explore-section .eyebrow { color: var(--nude); }
.explore-section .section-heading { color: var(--cream); letter-spacing: -0.02em; }
.explore-section .section-heading em { color: var(--pink); }

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.explore-card {
  overflow: hidden;
  background: var(--ink);
  transition: transform 0.4s ease;
  position: relative;
}

.explore-card:hover { transform: scale(1.01); }

.explore-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.explore-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s ease;
  filter: grayscale(20%);
}

.explore-card:hover .explore-card-img img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.explore-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(11,11,12,0.85) 100%
  );
}

.explore-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
}

.explore-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.3;
  margin: 0.5rem 0 1rem;
}

.explore-link {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nude);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s, gap 0.25s;
}

.explore-link:hover {
  color: var(--pink);
  gap: 12px;
}

/* ── STATEMENT SECTION ───────────────────────────────────────── */
.statement-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.statement-img { overflow: hidden; }

.statement-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.statement-copy {
  background: var(--ink);
  padding: 110px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.statement-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.06;
  margin: 1rem 0;
  letter-spacing: -0.02em;
}

.statement-heading em {
  font-style: italic;
  color: var(--pink);
  display: block;
}

.statement-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,240,231,0.3);
  margin-bottom: 1.8rem;
}

.statement-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(246,240,231,0.58);
  line-height: 1.9;
  max-width: 460px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.statement-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.statement-pillars span {
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(216,201,190,0.2);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(246,240,231,0.55);
  letter-spacing: 0.08em;
}

/* ── RESOURCES SECTION ───────────────────────────────────────── */
.resources-section { background: var(--nude-light); }

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-card {
  background: var(--cream);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(11,11,12,0.1);
}

.resource-card-img { aspect-ratio: 16/9; overflow: hidden; }

.resource-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s;
}

.resource-card:hover .resource-card-img img { transform: scale(1.04); }

.resource-card-body { padding: 24px; }

.resource-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* ── CONTACT SECTION ─────────────────────────────────────────── */
.contact-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.contact-bg { position: absolute; inset: 0; overflow: hidden; }

.contact-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,11,12,0.92) 0%,
    rgba(11,11,12,0.88) 100%
  );
}

.contact-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.06;
  margin: 1rem 0 1.5rem;
  letter-spacing: -0.02em;
}

.contact-heading em {
  font-style: italic;
  color: var(--pink);
  display: block;
}

.contact-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(246,240,231,0.55);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-weight: 300;
}

.contact-points { display: flex; flex-direction: column; gap: 12px; }

.cp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(246,240,231,0.58);
  font-weight: 300;
}

.cp-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

.contact-form-card {
  background: var(--cream);
  padding: 48px 44px;
  box-shadow: 0 30px 80px rgba(11,11,12,0.35);
}

/* ── IMPACT PREVIEW ──────────────────────────────────────────── */
.impact-preview-section { background: var(--nude-light); padding: var(--section-pad); }

.impact-preview-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.impact-preview-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 300;
}

.impact-preview-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.impact-preview-card {
  overflow: hidden;
  transition: transform 0.3s;
}

.impact-preview-card:hover { transform: scale(1.01); }

.ipc-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ipc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s;
  filter: grayscale(15%);
}

.impact-preview-card:hover .ipc-img img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.ipc-img-placeholder {
  color: rgba(246,240,231,0.3);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
  font-family: var(--font-body);
}

.ipc-body { padding: 22px 20px; background: var(--cream); }

.ipc-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.ipc-body p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 0.8rem;
  font-family: var(--font-body);
  font-weight: 300;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-pad: 90px 5%; }
  .editorial-section,
  .statement-section { grid-template-columns: 1fr; }
  .editorial-img,
  .statement-img { aspect-ratio: 4/3; }
  .editorial-copy,
  .statement-copy { padding: 70px 6%; }
  .explore-grid { grid-template-columns: 1fr 1fr; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; padding: 80px 6%; }
  .impact-preview-inner { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px 5%; }
  .hero-full-content { padding: 0 6% 10%; }
  .hero-full-img img { object-position: center 15%; }
  .page-hero-img img { object-position: center 15%; }
  .hero-full-name { font-size: clamp(3.2rem, 12vw, 5rem); }
  .explore-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 24px; }
  .impact-preview-cards { grid-template-columns: 1fr; gap: 2px; }
}

@media (max-width: 480px) {
  .fbn-bottom { flex-direction: column; gap: 8px; }
}

/* ── LEGACY CLASSES (kept for backward compat) ───────────────── */
.section { padding: var(--section-pad); }
.section-inner { max-width: 1200px; margin: 0 auto; }

/* ============================================================
   UX ENHANCEMENTS
   All powered by components.js — no extra files needed
============================================================ */

/* ── TEXT SELECTION ──────────────────────────────────────────── */
::selection {
  background: #C2185B;
  color: #F6F0E7;
}
::-moz-selection {
  background: #C2185B;
  color: #F6F0E7;
}

/* ── BACK TO TOP ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: #0B0B0C;
  color: #F6F0E7;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s;
  pointer-events: none;
  z-index: 990;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover { background: #C2185B; }

/* ── SKIP TO CONTENT ─────────────────────────────────────────── */
.skip-to-content {
  position: fixed;
  top: -100px;
  left: 24px;
  z-index: 9999;
  background: #C2185B;
  color: white;
  padding: 12px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: top 0.2s ease;
}

.skip-to-content:focus { top: 24px; }

/* ── FOCUS VISIBLE ───────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid #C2185B;
  outline-offset: 3px;
}

/* ── IMAGE SKELETON ──────────────────────────────────────────── */
.img-loading {
  background: linear-gradient(
    90deg,
    #EDE6DF 25%,
    #F6F0E7 50%,
    #EDE6DF 75%
  );
  background-size: 200% 100%;
  animation: skeleton 1.4s ease-in-out infinite;
}

@keyframes skeleton {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── BUTTON TRANSITIONS ──────────────────────────────────────── */
.btn-primary,
.btn-outline,
.btn-ghost,
.nav-cta {
  transition: background 0.25s, color 0.25s, transform 0.15s, border-color 0.25s;
}


/* ── NAV HIDE/SHOW ON SCROLL ─────────────────────────────────── */
.nav {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.3s ease,
              background 0.3s ease;
  will-change: transform;
}

.nav.nav-hidden {
  transform: translateY(-100%);
}


/* ── EXPLORE CARD HOVER OVERLAY ──────────────────────────────── */
.explore-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #C2185B;
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

.explore-card:hover::after { opacity: 0.15; }

.explore-card-body { z-index: 2; }

/* ── ORPHAN CONTROL ──────────────────────────────────────────── */
.section-heading,
.page-hero-title,
.hero-full-name,
.statement-heading,
.contact-heading {
  text-wrap: balance;
}

/* ── MOBILE BACK TO TOP POSITION ─────────────────────────────── */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* ── GHL FORM SKELETON ───────────────────────────────────────── */
.ghl-form-wrapper {
  position: relative;
}

.ghl-skeleton {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ghl-skel-label {
  height: 10px;
  width: 30%;
  border-radius: 2px;
  background: linear-gradient(90deg, #EDE6DF 25%, #F6F0E7 50%, #EDE6DF 75%);
  background-size: 200% 100%;
  animation: skeleton 1.4s ease-in-out infinite;
}

.ghl-skel-input {
  height: 44px;
  width: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #EDE6DF 25%, #F6F0E7 50%, #EDE6DF 75%);
  background-size: 200% 100%;
  animation: skeleton 1.4s ease-in-out infinite;
}

.ghl-skel-textarea {
  height: 120px;
  width: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #EDE6DF 25%, #F6F0E7 50%, #EDE6DF 75%);
  background-size: 200% 100%;
  animation: skeleton 1.4s ease-in-out infinite;
}

.ghl-skel-btn {
  height: 46px;
  width: 160px;
  border-radius: 2px;
  background: linear-gradient(90deg, #D8C9BE 25%, #EDE6DF 50%, #D8C9BE 75%);
  background-size: 200% 100%;
  animation: skeleton 1.4s ease-in-out infinite;
  margin-top: 8px;
}

.ghl-skel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@keyframes skeleton {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── GHL FORM WRAPPER — skeleton sits behind iframe ─────────── */
.ghl-form-wrapper {
  position: relative;
  min-height: 650px;
}

.ghl-form-wrapper iframe {
  position: relative;
  z-index: 2;
}

.ghl-skeleton {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1;
  padding: 8px 0;
}