/* =============================================
   SheWhoRests - Vision Page
   ============================================= */


/* ── Page-specific tokens ── */
:root {
  --cream-card: #EDE8DF;
}


/* =========================================
   HERO
   ========================================= */
.vp-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.vp-hero-bg {
  position: absolute;
  inset: 0;
}
.vp-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.vp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,10,5,0.10) 0%,
    rgba(20,10,5,0.45) 65%,
    rgba(20,10,5,0.62) 100%
  );
}

.vp-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  color: var(--cream);
}

.vp-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.65);
  margin-bottom: 20px;
}

.vp-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 28px;
}

.vp-hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,240,232,0.80);
  max-width: 520px;
  margin-bottom: 40px;
}

.vp-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.70);
  transition: color var(--transition);
}
.vp-hero-scroll svg { width: 18px; height: 18px; transition: transform var(--transition); }
.vp-hero-scroll:hover { color: var(--cream); }
.vp-hero-scroll:hover svg { transform: translateY(4px); }


/* =========================================
   STORY + PHOTO COLLAGE
   ========================================= */
.vp-story {
  background-color: var(--cream);
  padding: 100px 40px 120px;
}

.vp-story-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ── Photo collage ── */
.vp-collage {
  position: relative;
  height: 680px;
}

.vp-collage-img {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(42,34,24,0.12);
}
.vp-collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Top - portrait, top-right */
.vp-collage-img--1 {
  width: 58%;
  height: 340px;
  top: 0;
  right: 0;
}
/* Middle - sits left, overlaps down */
.vp-collage-img--2 {
  width: 52%;
  height: 260px;
  top: 200px;
  left: 0;
}
/* Bottom - bottom-right, overlaps middle */
.vp-collage-img--3 {
  width: 55%;
  height: 300px;
  bottom: 0;
  right: 4%;
}

/* ── Story text ── */
.vp-story-text {
  padding-top: 24px;
}

.vp-story-text p {
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  font-weight: 300;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  margin-bottom: 24px;
}

.vp-story-text em {
  font-style: italic;
  color: var(--forest);
}

.vp-story-closing {
  margin-top: 16px;
  font-family: var(--font-serif) !important;
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  color: var(--ink) !important;
  line-height: 1.4 !important;
}


/* =========================================
   FULL-BLEED HANDS
   ========================================= */
.vp-hands {
  position: relative;
  height: 75vh;
  min-height: 480px;
  overflow: hidden;
}
.vp-hands-bg { position: absolute; inset: 0; }
.vp-hands-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.vp-hands-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,10,5,0.38);
}
.vp-hands-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.vp-hands-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.8vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--cream);
  text-align: center;
  max-width: 680px;
}


/* =========================================
   WAVE: hands → forwho
   ========================================= */
.vp-wave-into-forwho {
  display: block;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  margin-bottom: -2px;
  background: rgba(20,10,5,0.38);   /* matches hands overlay */
}
.vp-wave-into-forwho svg {
  display: block;
  width: 100%;
  height: clamp(44px, 5vw, 68px);
}


/* =========================================
   FOR THE WOMAN WHO
   ========================================= */
.vp-forwho {
  background-color: var(--cream-dark);
  padding: 100px 40px;
}
.vp-forwho-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.vp-forwho-header {
  text-align: center;
  margin-bottom: 64px;
}
.vp-forwho-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
}
.vp-forwho-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.1;
}
.vp-forwho-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vp-forwho-card {
  background-color: var(--cream);
  border-radius: 20px;
  padding: 44px 36px;
  box-shadow: 0 3px 24px rgba(42,34,24,0.07);
  transition: box-shadow var(--transition), transform var(--transition);
}
.vp-forwho-card:hover {
  box-shadow: 0 8px 36px rgba(42,34,24,0.12);
  transform: translateY(-3px);
}
.vp-forwho-card::before {
  content: '✦';
  display: block;
  font-size: 0.75rem;
  color: var(--terra);
  margin-bottom: 18px;
  opacity: 0.65;
}
.vp-forwho-card p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-mid);
}


/* =========================================
   WAVE: forwho → manifesto
   ========================================= */
.vp-wave-into-manifesto {
  display: block;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  margin-bottom: -2px;
  background: var(--cream-dark);
}
.vp-wave-into-manifesto svg {
  display: block;
  width: 100%;
  height: clamp(44px, 5vw, 68px);
}


/* =========================================
   MANIFESTO - overlapping card
   ========================================= */
.vp-manifesto {
  background-color: var(--cream);
  padding: 80px 40px 100px;
}
.vp-manifesto-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 1fr;
  align-items: center;
  min-height: 580px;
}
.vp-manifesto-photo {
  position: relative;
  z-index: 1;
  height: 580px;
  overflow: hidden;
}
.vp-manifesto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
/* Cream card overlaps photo */
.vp-manifesto-card {
  position: relative;
  z-index: 2;
  background-color: var(--cream-card);
  padding: 60px 52px;
  margin-left: -80px;
  box-shadow: 0 12px 48px rgba(42,34,24,0.14);
  border-radius: 4px;
}
.vp-manifesto-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 32px;
}
.vp-manifesto-heading em {
  font-style: italic;
  color: var(--forest);
  font-weight: 500;
}
.vp-manifesto-body {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  margin-bottom: 20px;
}
.vp-manifesto-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 32px;
  background-color: var(--forest);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background-color var(--transition);
}
.vp-manifesto-btn:hover {
  background-color: var(--ink);
}


/* =========================================
   CLOSING CINEMATIC IMAGE
   ========================================= */
.vp-cinema {
  position: relative;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vp-cinema-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 15%;
}
.vp-cinema-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,10,5,0.08) 0%,
    rgba(20,10,5,0.48) 100%
  );
}
.vp-cinema-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
}
.vp-cinema-text p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 40px;
}
.vp-cinema-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid rgba(245,240,232,0.65);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background var(--transition), border-color var(--transition);
}
.vp-cinema-btn:hover {
  background: rgba(245,240,232,0.15);
  border-color: var(--cream);
}


/* =========================================
   BOTANICAL DECORATIONS
   ========================================= */

/* Sections need relative positioning to anchor botanicals */
.vp-story,
.vp-forwho,
.vp-manifesto {
  position: relative;
  overflow: hidden;
}

/* Inner content floats above the botanical layer */
.vp-story-inner,
.vp-forwho-inner,
.vp-manifesto-inner {
  position: relative;
  z-index: 1;
}

.vp-botanical {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Story section - top-right spray */
.vp-botanical--story-tr {
  top: 0;
  right: 0;
  width: 360px;
  height: 300px;
}

/* Story section - bottom-left scatter */
.vp-botanical--story-bl {
  bottom: 20px;
  left: 0;
  width: 220px;
  height: 180px;
}

/* Forwho section - top-left cascade */
.vp-botanical--forwho-tl {
  top: 0;
  left: 0;
  width: 300px;
  height: 260px;
}

/* Forwho section - bottom-right cascade */
.vp-botanical--forwho-br {
  bottom: 0;
  right: 0;
  width: 280px;
  height: 240px;
}

/* Manifesto section - top-right, very subtle */
.vp-botanical--manifesto-tr {
  top: 0;
  right: 0;
  width: 240px;
  height: 200px;
}

/* Manifesto section - bottom-left, subtle */
.vp-botanical--manifesto-bl {
  bottom: 0;
  left: 0;
  width: 200px;
  height: 160px;
}

/* Hide on small screens to keep things clean */
@media (max-width: 640px) {
  .vp-botanical { display: none; }
}


/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 960px) {
  .vp-story-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .vp-collage { height: 500px; }

  .vp-manifesto-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .vp-manifesto-photo { height: 420px; }
  .vp-manifesto-card {
    margin-left: 0;
    margin-top: -60px;
  }

  .vp-forwho-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .vp-story  { padding: 70px 24px 80px; }
  .vp-forwho { padding: 70px 24px; }
  .vp-manifesto { padding: 60px 24px 80px; }

  .vp-collage { height: 420px; }
  .vp-collage-img--1 { width: 65%; height: 260px; }
  .vp-collage-img--2 { width: 55%; height: 200px; top: 180px; }
  .vp-collage-img--3 { width: 60%; height: 220px; }

  .vp-forwho-grid { grid-template-columns: 1fr; gap: 16px; }

  .vp-manifesto-card { padding: 40px 28px; }

  .vp-cinema { height: 220px; }

  .vp-hero-content { padding: 0 24px; }
}
