/* ============================================
   JOHNNY ALBERTSON — PERSONAL BRAND WEBSITE
   Premium Single-Page Design
   ============================================ */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  /* Blacktop — dark foundation */
  --black: #0a0a0a;
  --charcoal: #141414;
  --asphalt: #1e1e1e;
  --concrete: #2c2c2c;
  --gravel: #3d3d3d;

  /* Organic — warm neutrals */
  --stone: #6b6460;
  --driftwood: #8a8380;
  --bone: #d6d0c8;
  --sand: #e8e3db;
  --parchment: #f2efe9;
  --white: #faf9f6;

  /* Accents */
  --red: #c41230;
  --red-deep: #8b1a1a;
  --red-bright: #e8243c;
  --gold: #b8860b;
  --gold-light: #d4a855;
  --gold-muted: rgba(184, 134, 11, 0.7);

  /* Functional */
  --text-primary: #0f0f0f;
  --text-secondary: #5a5550;
  --text-muted: #8a8380;
  --text-on-dark: #e8e3db;

  /* Type */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Bebas Neue', Impact, sans-serif;

  /* Spacing */
  --section-pad: clamp(100px, 15vh, 200px);
  --section-pad-sm: clamp(80px, 12vh, 160px);
  --container: min(1200px, 90vw);
  --container-narrow: min(800px, 85vw);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--black);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

::selection {
  background: var(--red);
  color: var(--white);
}

/* ---- SECTION LABEL ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--red);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.2rem;
  height: 2px;
  background: var(--red);
}
.section-label--dark {
  color: var(--red);
}
.section-label--dark::before {
  background: var(--red);
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__inner {
  text-align: center;
}
.preloader__text {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--bone);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  opacity: 0;
}
.preloader__line {
  width: 60px;
  height: 2px;
  background: var(--red);
  margin: 0 auto;
  transform-origin: left;
  transform: scaleX(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1.5rem, 4vw, 3rem);
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.nav--scrolled {
  background: rgba(10, 10, 10, 0.95);
  padding-top: 1rem;
  padding-bottom: 1rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}
.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav__menu {
  display: flex;
  gap: 2.5rem;
}
.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s;
}
.nav__link:hover {
  color: var(--white);
}
.nav__link:hover::after {
  width: 100%;
}

/* Nav Toggle (Mobile) */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  z-index: 110;
}
.nav__toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle--active .nav__toggle-line:first-child {
  transform: translateY(4px) rotate(45deg);
}
.nav__toggle--active .nav__toggle-line:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--black) 0%, var(--charcoal) 40%, var(--asphalt) 100%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 2;
  width: var(--container);
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: 7rem 0 4rem;
}

/* ---- Hero Content (Left) ---- */
.hero__content {
  padding: 0 1.5rem;
}

.hero__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
}
.hero__label-line {
  width: 40px;
  height: 2px;
  background: var(--red);
}
.hero__label-text {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--driftwood);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero__title-line {
  display: block;
  overflow: hidden;
}
.hero__title-word {
  display: inline-block;
  transform: translateY(110%);
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.45);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
}

/* ---- Path Selection ---- */
.hero__paths {
  margin-bottom: 2.5rem;
  opacity: 0;
}
.hero__paths-heading {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--red);
  margin-bottom: 1rem;
}
.hero__paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.hero__path {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.hero__path:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(196, 18, 48, 0.12);
}
.hero__path-icon {
  width: 34px;
  height: 34px;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.hero__path-label {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.hero__path-desc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.4;
}

/* ---- Opt-In ---- */
.hero__contact {
  opacity: 0;
}
.hero__contact-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 0.75rem;
}
.hero__contact-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.hero__contact-link:nth-child(1) {
  background: var(--red);
  color: var(--white);
}
.hero__contact-link:nth-child(1):hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 18, 48, 0.3);
}
.hero__contact-link:nth-child(2) {
  background: var(--gold);
  color: var(--black);
}
.hero__contact-link:nth-child(2):hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.3);
}
.hero__contact-link:nth-child(3) {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--bone);
}
.hero__contact-link:nth-child(3):hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.hero__contact-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ---- Hero Image (Right) ---- */
.hero__image {
  position: relative;
  opacity: 0;
}
.hero__image-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 8px 20px rgba(0, 0, 0, 0.3);
}
.hero__image-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: contrast(1.05);
}
.hero__image-placeholder svg {
  width: 100%;
  display: block;
}
.hero__image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 2px solid var(--red);
  border-radius: 4px;
  opacity: 0.15;
  z-index: -1;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}
.hero__scroll-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   ORIGIN / CHAPTERS
   ============================================ */
.origin {
  position: relative;
}

.chapter {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.chapter__bg {
  position: absolute;
  inset: 0;
}
.chapter__bg-image {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.chapter__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.8);
}
.chapter__overlay--dark {
  background: rgba(10, 10, 10, 0.85);
}
.chapter__overlay--warm {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.75) 0%, rgba(196, 18, 48, 0.06) 100%);
}
.chapter__overlay--mission {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.75) 0%, rgba(184, 134, 11, 0.05) 100%);
}

/* Chapter inner grid (text + photo) */
.chapter__inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: 6rem 2rem;
}
.chapter__inner--reverse {
  grid-template-columns: 0.8fr 1fr;
}
.chapter__inner--reverse .chapter__content {
  order: 2;
}
.chapter__inner--reverse .chapter__photo {
  order: 1;
}

.chapter__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-narrow);
  padding: 6rem 2rem;
  text-align: center;
}
.chapter__inner .chapter__content {
  padding: 0;
  text-align: left;
  max-width: none;
}
.chapter__inner .chapter__content .chapter__divider {
  margin-left: 0;
}
.chapter__inner .chapter__content .chapter__text {
  margin-left: 0;
  margin-right: 0;
}

/* Chapter Photo */
.chapter__photo {
  position: relative;
}
.chapter__photo-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 8px 20px rgba(0, 0, 0, 0.3);
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.chapter__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.chapter__photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.2);
}
.chapter__photo-placeholder svg {
  width: 64px;
  height: 64px;
}
.chapter__photo-placeholder span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.15);
}

.chapter__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--red);
  opacity: 0.25;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.chapter__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.chapter__divider {
  width: 60px;
  height: 2px;
  background: var(--driftwood);
  margin: 0 auto 2rem;
}
.chapter__divider--red {
  background: var(--red);
}
.chapter__divider--gold {
  background: var(--gold);
}

.chapter__text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.chapter__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-top: 2.5rem;
  line-height: 1.4;
}

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy {
  background: var(--charcoal);
  padding: var(--section-pad) 1.5rem;
}

.philosophy__header {
  text-align: center;
  max-width: var(--container-narrow);
  margin: 0 auto 5rem;
}

.philosophy__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.philosophy__title em {
  color: var(--red);
  font-style: italic;
}

.philosophy__intro {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--driftwood);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Old vs New */
.philosophy__grid {
  max-width: var(--container);
  margin: 0 auto 6rem;
}
.philosophy__contrast {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: stretch;
}
.philosophy__card {
  padding: 3rem 2.5rem;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.philosophy__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}
.philosophy__card--old {
  background: var(--black);
  color: var(--text-on-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.philosophy__card--new {
  background: var(--red);
  color: var(--white);
}
.philosophy__card-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}
.philosophy__list li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.philosophy__card--new .philosophy__list li {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
.philosophy__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.philosophy__card--old .philosophy__list li::before {
  background: var(--gravel);
}
.philosophy__card--new .philosophy__list li::before {
  background: var(--white);
}
.philosophy__vs {
  display: flex;
  align-items: center;
  justify-content: center;
}
.philosophy__vs span {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--stone);
}

/* Values */
.philosophy__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  max-width: var(--container);
  margin: 0 auto 5rem;
}
.philosophy__value {
  text-align: center;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  background: var(--asphalt);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.philosophy__value:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.philosophy__value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}
.philosophy__value-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.philosophy__value-text {
  font-size: 0.95rem;
  color: var(--driftwood);
  line-height: 1.7;
}

/* Pullquote */
.philosophy__pullquote {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.philosophy__pullquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--bone);
  line-height: 1.4;
}

/* ============================================
   IMPACT
   ============================================ */
.impact {
  background: var(--black);
  color: var(--text-on-dark);
  padding: var(--section-pad) 1.5rem;
}

.impact__header {
  text-align: center;
  max-width: var(--container-narrow);
  margin: 0 auto 5rem;
}
.impact__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--white);
}
.impact__intro {
  color: var(--stone);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Stats */
.impact__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: var(--container);
  margin: 0 auto 5rem;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.impact__stat {
  text-align: center;
}
.impact__stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.impact__stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--red);
}
.impact__stat-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--stone);
  margin-top: 0.5rem;
}

/* Projects */
.impact__projects {
  max-width: var(--container);
  margin: 0 auto 5rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.impact__project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.impact__project--reverse {
  direction: rtl;
}
.impact__project--reverse > * {
  direction: ltr;
}

.impact__project-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
}
.impact__project-placeholder {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.impact__project-placeholder svg {
  width: 100%;
  height: 100%;
}
.impact__project-reveal {
  position: absolute;
  inset: 0;
  background: var(--black);
  transform-origin: right;
}

.impact__project-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.impact__project-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--white);
}
.impact__project-text {
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.impact__project-metrics {
  display: flex;
  gap: 2rem;
}
.impact__project-metric {
  text-align: center;
}
.impact__project-metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.impact__project-metric-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.25rem;
}

/* Testimonial */
.impact__testimonial {
  max-width: var(--container-narrow);
  margin: 0 auto;
  text-align: center;
}
.impact__testimonial-inner {
  position: relative;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}
.impact__testimonial-quote {
  width: 48px;
  height: 48px;
  color: var(--red);
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  padding: 0 0.5rem;
}
.impact__testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--bone);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.impact__testimonial-author {
  font-style: normal;
}
.impact__testimonial-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
}
.impact__testimonial-role {
  display: block;
  font-size: 0.8rem;
  color: var(--stone);
  margin-top: 0.25rem;
}

/* ============================================
   HEART
   ============================================ */
.heart {
  position: relative;
  padding: var(--section-pad) 1.5rem;
  background: var(--asphalt);
  overflow: hidden;
}
.heart__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(196, 18, 48, 0.04), transparent 60%);
  pointer-events: none;
}

.heart__content {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
}

.heart__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 3rem;
}

.heart__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 4rem;
}

.heart__paragraph {
  font-size: 1.05rem;
  color: var(--driftwood);
  line-height: 1.95;
  margin-bottom: 2rem;
}

.heart__image-frame {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.heart__image-placeholder svg {
  width: 100%;
  display: block;
}
.heart__image-caption {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--stone);
  margin-top: 0.75rem;
  text-align: center;
}

.heart__quote {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.heart__quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--bone);
  line-height: 1.4;
}

/* ============================================
   PARTNERSHIP
   ============================================ */
.partnership {
  background: var(--charcoal);
  padding: var(--section-pad) 1.5rem;
  position: relative;
}

.partnership__header {
  text-align: center;
  max-width: var(--container-narrow);
  margin: 0 auto 4rem;
}
.partnership__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.partnership__intro {
  font-size: 1.05rem;
  color: var(--driftwood);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Paths */
.partnership__paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto 5rem;
}
.partnership__path {
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  background: var(--asphalt);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.partnership__path:hover {
  border-color: var(--red);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  transform: translateY(-6px);
}
.partnership__path-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.partnership__path-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.partnership__path-text {
  font-size: 0.9rem;
  color: var(--driftwood);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.partnership__path-services {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.partnership__path-services li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-size: 0.85rem;
  color: var(--bone);
  line-height: 1.5;
}
.partnership__path-services li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.partnership__path-brand {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.partnership__path-cta {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.partnership__path-cta:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Form */
.partnership__form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}
.partnership__form {
  background: var(--black);
  padding: 3rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.partnership__form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 2rem;
  text-align: center;
}
.partnership__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.partnership__form-group--full {
  grid-column: 1 / -1;
}
.partnership__form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-bottom: 0.5rem;
}
.partnership__form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
}
.partnership__form-input:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.08);
}
.partnership__form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c41230' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.partnership__form-select option {
  background: var(--black);
  color: var(--white);
}
.partnership__form-textarea {
  resize: vertical;
  min-height: 100px;
}
.partnership__form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 2.5rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 3px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  width: 100%;
  justify-content: center;
}
.partnership__form-submit svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}
.partnership__form-submit:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 18, 48, 0.3);
}
.partnership__form-submit:hover svg {
  transform: translateX(4px);
}

/* ============================================
   DIRECT CONTACT BAR
   ============================================ */
.direct-contact {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}
.direct-contact__label {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.direct-contact__desc {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--stone);
  margin-bottom: 2rem;
}
.direct-contact__link-label {
  font-weight: 700;
}
.direct-contact__link-detail {
  font-size: 0.8rem;
  opacity: 0.8;
}
.direct-contact__options {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.direct-contact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.direct-contact__link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.direct-contact__link--call {
  background: var(--red);
  color: var(--white);
}
.direct-contact__link--call:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 18, 48, 0.3);
}
.direct-contact__link--text {
  background: var(--gold);
  color: var(--black);
}
.direct-contact__link--text:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}
.direct-contact__link--email {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--bone);
}
.direct-contact__link--email:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer contact info */
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--stone);
  padding: 0.3rem 0;
  transition: color 0.3s;
}
.footer__contact-item:hover {
  color: var(--white);
}
.footer__contact-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--red);
}

@media (max-width: 768px) {
  .direct-contact__options {
    flex-direction: column;
    align-items: center;
  }
  .direct-contact__link {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* ============================================
   CONTENT HUB
   ============================================ */
.content-hub {
  background: var(--black);
  padding: var(--section-pad) 1.5rem;
  color: var(--text-on-dark);
}
.content-hub__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.content-hub__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.content-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.content-hub__item {
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  overflow: hidden;
  padding-bottom: 1rem;
}
.content-hub__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.content-hub__item-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.content-hub__item-placeholder {
  aspect-ratio: 16/10;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-hub__item-placeholder svg {
  width: 48px;
  height: 48px;
}
.content-hub__item-placeholder--article {
  background: linear-gradient(135deg, var(--charcoal), var(--concrete));
}
.content-hub__item-placeholder--podcast {
  background: linear-gradient(135deg, var(--charcoal), var(--gravel));
}
.content-hub__item-type {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--red);
  color: var(--white);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.content-hub__item-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  padding: 0 1rem;
}
.content-hub__item-date {
  font-size: 0.8rem;
  color: var(--stone);
  padding: 0 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: var(--text-on-dark);
  padding: 4rem 1.5rem 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--container);
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 0.75rem;
}
.footer__tagline {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.6;
  max-width: 300px;
}

.footer__links {
  display: flex;
  gap: 3rem;
}
.footer__col-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 1rem;
}
.footer__link {
  display: block;
  font-size: 0.9rem;
  color: var(--stone);
  padding: 0.3rem 0;
  transition: color 0.3s;
}
.footer__link:hover {
  color: var(--white);
}

.footer__newsletter-text {
  font-size: 0.85rem;
  color: var(--stone);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.footer__direct-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__direct-link {
  font-size: 0.85rem;
  color: var(--stone);
  transition: color 0.3s;
  padding: 0.2rem 0;
}
.footer__direct-link:hover {
  color: var(--white);
}

/* Footer Bottom */
.footer__bottom {
  max-width: var(--container);
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__final-quote p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.2);
}
.footer__legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.15);
}
.footer__legal a {
  transition: color 0.3s;
}
.footer__legal a:hover {
  color: var(--white);
}

/* ============================================
   SECTION DEPTH OVERLAYS
   ============================================ */
.philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(196, 18, 48, 0.03), transparent 60%);
  pointer-events: none;
}
.philosophy {
  position: relative;
}

.impact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(184, 134, 11, 0.03), transparent 50%);
  pointer-events: none;
}
.impact {
  position: relative;
}

.partnership::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(196, 18, 48, 0.03), transparent 60%);
  pointer-events: none;
}

/* ============================================
   STRATEGIC CTA COMPONENT
   ============================================ */
.strategic-cta {
  padding: var(--section-pad-sm) 1.5rem;
  text-align: center;
  position: relative;
}
.strategic-cta--dark {
  background: var(--black);
  color: var(--text-on-dark);
}
.strategic-cta--light {
  background: var(--concrete);
  color: var(--text-on-dark);
}
.strategic-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}
.strategic-cta__kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
}
.strategic-cta--dark .strategic-cta__kicker {
  color: var(--red);
}
.strategic-cta--light .strategic-cta__kicker {
  color: var(--red);
}
.strategic-cta__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.strategic-cta--dark .strategic-cta__headline {
  color: var(--white);
}
.strategic-cta--light .strategic-cta__headline {
  color: var(--white);
}
.strategic-cta__desc {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.strategic-cta--dark .strategic-cta__desc {
  color: var(--stone);
}
.strategic-cta--light .strategic-cta__desc {
  color: var(--driftwood);
}
.strategic-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--red);
  padding: 1.1rem 2.75rem;
  border-radius: 3px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(196, 18, 48, 0.2);
}
.strategic-cta__btn:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(196, 18, 48, 0.35);
}
.strategic-cta__btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}
.strategic-cta__btn:hover svg {
  transform: translateX(4px);
}

/* ============================================
   LEAD MAGNET OPT-IN
   ============================================ */
.lead-magnet {
  padding: var(--section-pad-sm) 1.5rem;
  background: var(--asphalt);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.lead-magnet::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196, 18, 48, 0.04), transparent 60%);
  pointer-events: none;
}
.lead-magnet__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.lead-magnet__content {
  position: relative;
}
.lead-magnet__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: rgba(196, 18, 48, 0.15);
  color: var(--red);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(196, 18, 48, 0.3);
}
.lead-magnet__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.lead-magnet__desc {
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.lead-magnet__features {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}
.lead-magnet__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.75);
}
.lead-magnet__feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.lead-magnet__form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 2.5rem;
}
.lead-magnet__form-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-align: center;
}
.lead-magnet__input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s, background 0.3s;
}
.lead-magnet__input:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.08);
}
.lead-magnet__input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.lead-magnet__submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.2);
}
.lead-magnet__submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.35);
}
.lead-magnet__privacy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  margin-top: 0.75rem;
}

/* ============================================
   SECONDARY NEWSLETTER OPT-IN
   ============================================ */
.newsletter-optin {
  padding: var(--section-pad-sm) 1.5rem;
  background: var(--charcoal);
  text-align: center;
}
.newsletter-optin__inner {
  max-width: 550px;
  margin: 0 auto;
}
.newsletter-optin__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.newsletter-optin__desc {
  font-size: 0.95rem;
  color: var(--driftwood);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.newsletter-optin__form {
  display: flex;
  gap: 0;
  max-width: 450px;
  margin: 0 auto;
}
.newsletter-optin__input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right: none;
  border-radius: 3px 0 0 3px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}
.newsletter-optin__input:focus {
  outline: none;
  border-color: var(--red);
}
.newsletter-optin__input::placeholder {
  color: var(--stone);
}
.newsletter-optin__btn {
  padding: 0.9rem 1.75rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.newsletter-optin__btn:hover {
  background: var(--red-bright);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content {
    order: 2;
  }
  .hero__image {
    order: 1;
    max-width: 380px;
    margin: 0 auto;
  }
  .hero__image-accent {
    display: none;
  }
  .hero__label {
    justify-content: center;
  }
  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__contact-links {
    justify-content: center;
  }
  .hero__paths-grid {
    max-width: 480px;
    margin: 0 auto;
  }

  .chapter__inner,
  .chapter__inner--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .chapter__inner--reverse .chapter__content {
    order: 1;
  }
  .chapter__inner--reverse .chapter__photo {
    order: 2;
  }
  .chapter__inner .chapter__content {
    text-align: center;
  }
  .chapter__inner .chapter__content .chapter__divider {
    margin-left: auto;
  }
  .chapter__inner .chapter__content .chapter__text {
    margin-left: auto;
    margin-right: auto;
  }
  .chapter__photo-frame {
    max-width: 350px;
    margin: 0 auto;
  }

  .philosophy__contrast {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .philosophy__vs {
    padding: 0.5rem;
  }
  .philosophy__values {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 500px;
  }

  .impact__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact__project {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .impact__project--reverse {
    direction: ltr;
  }

  .heart__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .partnership__paths {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .content-hub__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .lead-magnet__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 500px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }
  .nav__menu {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
  }
  .nav__menu--open {
    opacity: 1;
    visibility: visible;
  }
  .nav__menu--open .nav__link {
    font-size: 1.2rem;
  }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 6rem;
  }
  .hero__content {
    order: 2;
  }
  .hero__image {
    order: 1;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero__image-accent {
    display: none;
  }
  .hero__label {
    justify-content: center;
  }
  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__paths-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  .hero__path {
    flex-direction: row;
    text-align: left;
    gap: 0.75rem;
    padding: 1rem;
  }
  .hero__path-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .hero__contact-links {
    justify-content: center;
  }
  .hero__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .impact__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .impact__project-metrics {
    flex-wrap: wrap;
  }

  .partnership__form {
    padding: 2rem 1.5rem;
  }
  .partnership__form-grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer__links {
    flex-direction: column;
    gap: 2rem;
  }

  .newsletter-optin__form {
    flex-direction: column;
    gap: 0.75rem;
  }
  .newsletter-optin__input {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3px;
  }
  .newsletter-optin__btn {
    border-radius: 3px;
  }

  .lead-magnet__form-wrapper {
    padding: 1.75rem;
  }

  .content-hub__item {
    padding-bottom: 0.75rem;
  }
}

/* ============================================
   PAGE TRANSITION OVERLAY
   ============================================ */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  display: flex;
}
.page-transition__panel {
  flex: 1;
  background: var(--black);
  transform: scaleY(0);
  transform-origin: bottom;
}
.page-transition--entering .page-transition__panel {
  animation: panelUp 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}
.page-transition--leaving .page-transition__panel {
  transform: scaleY(1);
  transform-origin: top;
  animation: panelDown 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}
.page-transition__panel:nth-child(2) { animation-delay: 0.05s; }
.page-transition__panel:nth-child(3) { animation-delay: 0.1s; }

@keyframes panelUp {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); transform-origin: bottom; }
}
@keyframes panelDown {
  from { transform: scaleY(1); transform-origin: top; }
  to   { transform: scaleY(0); transform-origin: top; }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  z-index: 200;
  transition: width 0.05s linear;
  pointer-events: none;
}

/* ============================================
   ACTIVE NAV STATE
   ============================================ */
.nav__link--active {
  color: var(--white) !important;
}
.nav__link--active::after {
  width: 100% !important;
  background: var(--red) !important;
}

/* ============================================
   STICKY CTA BAR
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(196, 18, 48, 0.2);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-cta--visible {
  transform: translateY(0);
}
.sticky-cta__text {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--bone);
  font-style: italic;
}
.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 3px;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
}
.sticky-cta__btn:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
}
.sticky-cta__btn svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 89;
  width: 44px;
  height: 44px;
  background: var(--concrete);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
  cursor: pointer;
}
.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--red);
  border-color: var(--red);
}
.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   PAGE HERO (sub-pages)
   ============================================ */
.page-hero {
  position: relative;
  padding: 10rem 1.5rem 5rem;
  text-align: center;
  background: var(--black);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(196, 18, 48, 0.06), transparent 70%);
  pointer-events: none;
}
.page-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--stone);
  margin-bottom: 1.5rem;
}
.page-hero__breadcrumb a {
  color: var(--stone);
  transition: color 0.3s;
}
.page-hero__breadcrumb a:hover {
  color: var(--red);
}
.page-hero__breadcrumb-sep {
  color: var(--gravel);
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.4);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.8;
}
.page-hero__divider {
  width: 60px;
  height: 2px;
  background: var(--red);
  margin: 2rem auto 0;
}

/* ============================================
   HOME: INTRO SECTION
   ============================================ */
.intro {
  background: var(--charcoal);
  padding: var(--section-pad-sm) 1.5rem;
  text-align: center;
  position: relative;
}
.intro__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.intro__text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 400;
  color: var(--bone);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.intro__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s, gap 0.3s;
}
.intro__link:hover {
  color: var(--gold);
  border-color: var(--gold);
  gap: 0.75rem;
}
.intro__link svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   HOME: STATS BAR
   ============================================ */
.stats-bar {
  background: var(--black);
  padding: 4rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: var(--container);
  margin: 0 auto;
}
.stats-bar__item {
  text-align: center;
}
.stats-bar__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1;
}
.stats-bar__suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--red);
}
.stats-bar__label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--stone);
  margin-top: 0.5rem;
}

/* ============================================
   HOME: PATH CARDS
   ============================================ */
.paths {
  background: var(--charcoal);
  padding: var(--section-pad-sm) 1.5rem;
  position: relative;
}
.paths::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(196, 18, 48, 0.03), transparent 60%);
  pointer-events: none;
}
.paths__header {
  text-align: center;
  margin-bottom: 3rem;
}
.paths__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.paths__sub {
  font-size: 1rem;
  color: var(--driftwood);
}
.paths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.paths__card {
  position: relative;
  padding: 3rem 2.5rem;
  background: var(--asphalt);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  text-align: center;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  overflow: hidden;
}
.paths__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.paths__card:hover {
  border-color: rgba(196, 18, 48, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(196, 18, 48, 0.05);
}
.paths__card:hover::before {
  transform: scaleX(1);
}
.paths__card-icon {
  width: 56px;
  height: 56px;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}
.paths__card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.paths__card-text {
  font-size: 0.95rem;
  color: var(--driftwood);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.paths__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  transition: color 0.3s, gap 0.3s;
}
.paths__card-cta:hover {
  color: var(--gold);
  gap: 0.75rem;
}
.paths__card-cta svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   HOME: TESTIMONIAL SNIPPET
   ============================================ */
.testimonial-snippet {
  background: var(--black);
  padding: var(--section-pad-sm) 1.5rem;
  text-align: center;
  position: relative;
}
.testimonial-snippet__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}
.testimonial-snippet__quote-icon {
  width: 48px;
  height: 48px;
  color: var(--red);
  opacity: 0.15;
  margin: 0 auto 1.5rem;
}
.testimonial-snippet__text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--bone);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-snippet__author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
}
.testimonial-snippet__role {
  display: block;
  font-size: 0.8rem;
  color: var(--stone);
  margin-top: 0.25rem;
  font-weight: 400;
}

/* ============================================
   RESPONSIVE: NEW COMPONENTS
   ============================================ */
@media (max-width: 1024px) {
  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .paths__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .sticky-cta {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
  }
  .sticky-cta__text {
    font-size: 0.85rem;
  }
  .page-hero {
    padding: 8rem 1.5rem 3rem;
  }
  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .back-to-top {
    bottom: 6rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__scroll-line {
    animation: none;
  }
  .page-transition__panel {
    animation: none !important;
  }
}
