/*
Theme Name: PAES Arts, Entertainment & Sports
Theme URI: https://paesco.com
Author: PAES
Description: Boutique talent management for artists and athletes — championing women's sports and BIPOC talent.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: paes
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --black:       #080808;
  --off-black:   #111110;
  --white:       #f4f1ec;
  --cream:       #ece8e0;
  --warm-gray:   #a8a094;
  --gold:        #c8a46a;
  --gold-light:  #dfc08e;
  --gold-dark:   #9a7a48;
  --rose:        #c4826a;       /* women's sports accent */
  --rose-muted:  rgba(196,130,106,0.12);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', 'Helvetica Neue', Helvetica, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --duration:    0.5s;
  --duration-fast: 0.2s;

  --max-w:       1440px;
  --pad-x:       clamp(24px, 5.5vw, 88px);
  --section-y:   clamp(80px, 11vw, 160px);
  --nav-h:       80px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; -webkit-font-smoothing:antialiased; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width:100%; height:auto; display:block; }
a   { color:inherit; text-decoration:none; }
ul  { list-style:none; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.t-display {
  font-family: var(--font-serif);
  font-size: clamp(64px, 11vw, 160px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.t-xl {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.015em;
}
.t-lg {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
}
.t-md {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.25;
}
.t-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.t-body {
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 300;
  line-height: 1.8;
}
em { font-style: italic; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: var(--section-y) 0; }
.section + .section,
.section ~ .divider + .section {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.divider { border-top: 1px solid rgba(255,255,255,0.06); }

/* ============================================================
   COLOUR UTILITIES
   ============================================================ */
.c-gold   { color: var(--gold); }
.c-rose   { color: var(--rose); }
.c-muted  { color: var(--warm-gray); }
.c-white  { color: var(--white); }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  border-radius: 50%;
}
.cursor {
  width: 7px; height: 7px;
  background: var(--gold);
  transition: width .3s var(--ease-out), height .3s var(--ease-out);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(200,164,106,0.5);
  transition: width .3s var(--ease-out), height .3s var(--ease-out), opacity .3s ease;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: background var(--duration) var(--ease-out),
              backdrop-filter var(--duration) var(--ease-out);
}
.site-header.scrolled {
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--duration-fast);
}
.site-logo:hover { color: var(--gold); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.5vw, 52px);
}
.primary-nav a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--warm-gray);
  position: relative;
  transition: color var(--duration-fast);
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--duration) var(--ease-out);
}
.primary-nav a:hover { color: var(--white); }
.primary-nav a:hover::after { width: 100%; }

.nav-ig {
  display: flex; align-items: center; gap: 7px;
}
.nav-ig svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none; stroke-width: 1.5;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--white);
  transition: var(--duration) var(--ease-out);
}

/* Mobile overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 300;
  color: var(--white);
  transition: color var(--duration-fast);
}
.mobile-nav a:hover { color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 17px 34px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--duration) var(--ease-out),
              color var(--duration) var(--ease-out);
  cursor: pointer;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform var(--duration) var(--ease-out);
  z-index: 0;
}
.btn:hover { border-color: var(--gold); }
.btn:hover::before { transform: translateX(0); }
.btn > * { position: relative; z-index: 1; }
.btn svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none; stroke-width: 1.5;
  transition: transform var(--duration) var(--ease-out);
}
.btn:hover svg { transform: translateX(4px); }

.btn-rose::before { background: var(--rose); }
.btn-rose:hover   { border-color: var(--rose); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
/* Slideshow slides */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(.45,0,.55,1);
  z-index: 0;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: brightness(0.4);
  transform: scale(1.06);
  transition: transform 14s var(--ease-out);
}
.hero-slide.active img { transform: scale(1.0); }

/* Dot indicators */
.hero-dots {
  position: absolute;
  bottom: clamp(28px, 4vw, 52px);
  left: var(--pad-x);
  display: flex;
  gap: 10px;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s 1.6s forwards;
}
.hero-dot {
  width: 24px; height: 2px;
  background: rgba(255,255,255,.25);
  border: none; padding: 0;
  cursor: pointer;
  transition: background .3s, width .3s;
}
.hero-dot.active { background: var(--gold); width: 40px; }

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.97) 0%,
    rgba(8,8,8,0.25) 55%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 var(--pad-x) clamp(56px, 8vw, 120px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-eyebrow {
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp .8s .3s forwards;
}
.hero-title {
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp .9s .5s forwards;
}
.hero-title .line-rose { color: var(--rose); }
.hero-sub {
  font-size: clamp(14px, 1.2vw, 17px);
  color: var(--warm-gray);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp .9s .7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s .9s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: clamp(28px, 4vw, 56px);
  right: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-gray);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--warm-gray), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.35; }
  50%      { opacity: 1; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-text {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.055);
  padding-right: 72px;
}
.marquee-text .accent-gold { color: var(--gold); font-style:normal; }
.marquee-text .accent-rose { color: var(--rose); font-style:normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   TWO-COLUMN GRID
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
}
.three-col {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(24px, 3vw, 48px);
}

/* ============================================================
   STAT / HIGHLIGHT CARDS
   ============================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 72px;
}
.stat-item {
  background: var(--black);
  padding: 40px 32px;
  transition: background var(--duration) var(--ease-out);
}
.stat-item:hover { background: var(--off-black); }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ============================================================
   SERVICES / PILLARS GRID
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
}
.pillar {
  background: var(--black);
  padding: 52px 38px;
  transition: background var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.pillar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  transition: width var(--duration) var(--ease-out);
}
.pillar.gold-accent::after  { background: var(--gold); }
.pillar.rose-accent::after  { background: var(--rose); }
.pillar:hover { background: var(--off-black); }
.pillar:hover::after { width: 100%; }

.pillar-num {
  font-family: var(--font-serif);
  font-size: 68px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--duration) var(--ease-out);
}
.pillar:hover .pillar-num { color: rgba(255,255,255,0.1); }
.pillar-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 14px;
}
.pillar-desc {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.75;
}

/* ============================================================
   WOMEN'S SPORTS FEATURE SECTION
   ============================================================ */
.womens-feature {
  position: relative;
  overflow: hidden;
  background: var(--off-black);
}
.womens-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.womens-feature-img {
  position: relative;
  overflow: hidden;
}
.womens-feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
  transition: transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
}
.womens-feature-img:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.womens-feature-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--off-black) 100%);
}
.womens-feature-copy {
  padding: clamp(48px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.womens-feature-copy .t-label { color: var(--rose); margin-bottom: 20px; }
.womens-feature-copy .t-lg   { margin-bottom: 28px; }
.womens-feature-copy .t-body { color: var(--warm-gray); margin-bottom: 40px; }

/* Highlight pills */
.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
}
.highlight-item::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 20px; height: 1px;
  background: var(--rose);
  margin-top: 10px;
}

/* ============================================================
   PAGE HERO (INTERIOR)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(56px, 10vw, 140px));
  padding-bottom: clamp(48px, 7vw, 96px);
}
.page-hero .t-label { color: var(--gold); margin-bottom: 20px; display:block; }
.page-hero h1 em    { color: var(--gold); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 8fr;
  gap: clamp(48px, 8vw, 128px);
  align-items: start;
}
.about-quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  color: var(--white);
}
.about-content p {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.85;
  color: rgba(244,241,236,0.78);
  margin-bottom: 26px;
}
.about-content p:first-child {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--white);
  font-weight: 300;
  line-height: 1.5;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}
.value-item .t-label { color: var(--gold); margin-bottom: 14px; display:block; }
.value-item h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 300;
  margin-bottom: 14px;
  line-height: 1.3;
}
.value-item p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.75;
}

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-member {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 112px);
  align-items: start;
  padding: clamp(56px, 8vw, 96px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.team-member:first-child { padding-top: 0; }
.team-member.reverse { direction: rtl; }
.team-member.reverse > * { direction: ltr; }

.team-photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 14px 14px -14px -14px;
  border: 1px solid var(--gold);
  opacity: 0.3;
  z-index: 0;
  transition: inset var(--duration) var(--ease-out), opacity var(--duration);
}
.team-photo-wrap:hover::before {
  inset: 6px 6px -6px -6px;
  opacity: 0.6;
}
.team-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: relative; z-index: 1;
  filter: grayscale(15%);
  transition: filter var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.team-photo-wrap:hover img { filter: grayscale(0%); transform: scale(1.03); }

.team-role { color: var(--gold); display:block; margin-bottom: 14px; }
.team-name {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1.02;
  margin-bottom: 8px;
}
.team-credentials {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.4vw, 19px);
  font-style: italic;
  color: var(--warm-gray);
  margin-bottom: 32px;
}
.team-bio p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(244,241,236,0.68);
  margin-bottom: 18px;
}
.expertise-block { margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07); }
.expertise-block .t-label { color: var(--gold); display:block; margin-bottom: 14px; }
.tag-cloud { display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 14px;
  transition: border-color var(--duration-fast), color var(--duration-fast);
}
.tag:hover { border-color: var(--gold); color: var(--gold); }
.tag.rose  { border-color: rgba(196,130,106,0.3); color: var(--rose); }
.tag.rose:hover { border-color: var(--rose); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 8vw, 136px);
  align-items: start;
}
.contact-left .t-label { color: var(--gold); display:block; margin-bottom: 22px; }
.contact-left h2 { margin-bottom: 28px; }
.contact-left h2 em { color: var(--gold); }
.contact-left p  { font-size:17px; line-height:1.8; color:var(--warm-gray); margin-bottom: 44px; }

.contact-email {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.2vw, 30px);
  font-style: italic;
  color: var(--white);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  display: inline-block;
  transition: color var(--duration-fast);
}
.contact-email:hover { color: var(--gold); }

/* Form */
.form-field {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: border-color var(--duration-fast);
}
.form-field:focus-within { border-color: var(--gold); }
.form-field label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--warm-gray);
  padding: 18px 0 7px;
  transition: color var(--duration-fast);
}
.form-field:focus-within label { color: var(--gold); }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none; outline: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  padding: 0 0 18px;
  resize: none;
}
.form-field textarea { min-height: 96px; }
.form-field select option { background: var(--black); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.18); }
.btn-submit {
  width: 100%;
  margin-top: 44px;
}

/* Wordmark watermark */
.wordmark-bg {
  margin-top: var(--section-y);
  padding-top: clamp(48px, 7vw, 100px);
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  overflow: hidden;
}
.wordmark-bg p {
  font-family: var(--font-serif);
  font-size: clamp(52px, 11vw, 180px);
  font-weight: 300;
  line-height: 1.0;
  color: rgba(255,255,255,0.035);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 44px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 21px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-links { display:flex; gap:28px; }
.footer-links a {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color var(--duration-fast);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.06em;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}
.reveal {
  opacity:0;
  transform: translateY(36px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }
.reveal-delay-4 { transition-delay:.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .primary-nav { display:none; }
  .nav-toggle  { display:flex; }

  .two-col,
  .about-grid,
  .contact-grid,
  .team-member,
  .womens-feature-inner { grid-template-columns:1fr; }

  .team-member.reverse { direction:ltr; }
  .womens-feature-img  { min-height: 380px; }
  .womens-feature-img::after { background: linear-gradient(to bottom, transparent 60%, var(--off-black) 100%); }

  .pillars-grid  { grid-template-columns:1fr; }
  .three-col     { grid-template-columns:1fr; }

  .footer-inner  { flex-direction:column; align-items:flex-start; }
  .hero-scroll   { display:none; }
  .hero-actions  { flex-direction:column; }
}
@media (max-width: 600px) {
  .stat-grid { grid-template-columns:1fr 1fr; }
}
