/* ==========================================================================
   Wandering With Pride v4 — Page-specific styles
   ========================================================================== */

/* ==========================================================================
   SHARED: page hero base (interior pages)
   ========================================================================== */

.page-hero {
  background: var(--void);
  padding-top: calc(var(--header-h) + 4px + var(--space-section));
  padding-bottom: var(--space-section);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.page-hero__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 900px) {
  .page-hero__inner { grid-template-columns: 1fr 1fr; }
}

.page-hero .eyebrow {
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-md);
}

.page-hero h1 {
  color: var(--cloud);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
  max-width: 20ch;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-md);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: var(--space-xl);
}

/* ==========================================================================
   HOME PAGE
   ========================================================================== */

/* Hero */
.home-hero {
  background: var(--void);
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  padding-top: calc(var(--header-h) + 4px);
}

@media (min-width: 900px) {
  .home-hero {
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
  }
}

.home-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-section) clamp(1.25rem, 5vw, 3rem);
  max-width: 660px;
  margin-left: auto;
}

@media (min-width: 900px) {
  .home-hero__left {
    padding-top: calc(var(--header-h) + 4px + var(--space-section));
    padding-bottom: var(--space-section);
  }
}

.hero-claim {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero-claim__line1 {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  color: rgba(255,255,255,0.55);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-claim__line2 {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  color: var(--cloud);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-rule {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-block: var(--space-xl);
}

.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-md);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: var(--space-2xl);
}

.home-hero__right {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

@media (max-width: 899px) {
  .home-hero__right { display: none; }
}

.home-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-deadline {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--space-xl);
  background: rgba(8,9,13,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245,230,66,0.3);
  color: var(--signal);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6em 1.1em;
  border-radius: var(--radius-pill);
}

/* Trust band (below hero) */
.home-trust-band {
  background: var(--void);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* For the student */
.home-student {
  background: var(--parchment);
  padding-block: var(--space-section);
}

.home-student__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

@media (min-width: 900px) {
  .home-student__inner { grid-template-columns: 1.3fr 1fr; }
}

.home-student__text h2 {
  margin-block: var(--space-md) var(--space-xl);
  max-width: 20ch;
}

.home-student__text p {
  font-size: var(--text-md);
  line-height: 1.75;
  max-width: 54ch;
}

.home-student__aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.student-stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.student-stat__value {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  color: var(--meridian);
  line-height: 1;
}

.student-stat__label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 30ch;
}

.student-stat__source {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-style: italic;
}

/* Mission */
.home-mission {
  background: var(--smoke);
  padding-block: var(--space-section);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.home-mission__header {
  max-width: var(--container-max);
  margin-inline: auto;
  margin-bottom: var(--space-3xl);
}

.home-mission__header h2 {
  max-width: 26ch;
  margin-block: var(--space-md) var(--space-lg);
}

.home-pillars {
  max-width: var(--container-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-xl);
}

/* Numbers */
.home-numbers {
  background: var(--void);
  padding-block: var(--space-section);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.home-numbers__header {
  max-width: var(--container-max);
  margin-inline: auto;
  margin-bottom: var(--space-3xl);
}

.home-numbers__header h2 {
  color: var(--cloud);
  margin-block: var(--space-md);
}

.home-numbers .numbers-grid {
  max-width: var(--container-max);
  margin-inline: auto;
}

.home-numbers .numbers-disclaimer {
  max-width: var(--container-max);
  margin-inline: auto;
}

/* Process */
.home-process {
  background: var(--cloud);
  padding-block: var(--space-section);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.home-process__header {
  max-width: var(--container-max);
  margin-inline: auto;
  margin-bottom: var(--space-3xl);
}

.home-process .process-steps {
  max-width: var(--container-max);
  margin-inline: auto;
}

/* Donate CTA */
.home-donate-cta {
  background: var(--meridian);
  padding-block: var(--space-section);
  text-align: center;
}

.home-donate-cta .eyebrow {
  color: rgba(255,255,255,0.65);
  justify-content: center;
  margin-bottom: var(--space-md);
}

.home-donate-cta h2 {
  color: var(--cloud);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
}

.home-donate-cta > .container > p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-md);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}

.home-donate-cta .impact-grid {
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--space-3xl);
}

.home-donate-cta .impact-item p {
  color: rgba(255,255,255,0.75);
}

.home-donate-cta .cta-group {
  justify-content: center;
}

/* Founder quote */
.home-founder {
  background: var(--slate);
  padding-block: var(--space-section);
}

.home-founder__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 700px) {
  .home-founder__inner { grid-template-columns: auto 1fr; }
}

.founder-portrait {
  width: 120px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.founder-quote-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.founder-quote-block blockquote {
  font-size: var(--text-2xl);
  max-width: 24ch;
}

/* Newsletter */
.home-newsletter {
  background: var(--parchment);
}

.home-newsletter .newsletter-inner h2 {
  color: var(--text-primary);
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.about-hero {
  background: var(--void);
}

.about-hero__photo-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  max-height: 540px;
}

.about-hero__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-story {
  background: var(--parchment);
  padding-block: var(--space-section);
}

.founder-story__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

@media (min-width: 900px) {
  .founder-story__inner { grid-template-columns: 260px 1fr; }
}

.founder-photo-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.founder-photo-stack img {
  width: 100%;
  max-width: 260px;
  border-radius: var(--radius-lg);
}

.founder-photo-stack .name {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
}

.founder-photo-stack .title {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.founder-story__text h2 {
  margin-block: var(--space-md) var(--space-xl);
}

.founder-story__text p {
  font-size: var(--text-md);
  line-height: 1.75;
  max-width: 60ch;
}

.about-numbers {
  padding-block: var(--space-section);
}

.team-section {
  background: var(--parchment);
  padding-block: var(--space-section);
}

/* ==========================================================================
   DONATE PAGE
   ========================================================================== */

.donate-hero {
  background: var(--void);
  padding-top: calc(var(--header-h) + 4px + var(--space-section));
  padding-bottom: var(--space-section);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.donate-hero__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

@media (min-width: 900px) {
  .donate-hero__inner { grid-template-columns: 1fr 420px; }
}

.donate-hero__copy h1 {
  color: var(--cloud);
  max-width: 20ch;
  margin-block: var(--space-md) var(--space-lg);
}

.donate-hero__copy p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-md);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.donate-trust {
  background: var(--smoke);
  padding-block: var(--space-section);
}

.allocation-section {
  background: var(--void);
  padding-block: var(--space-section);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.allocation-section__inner {
  max-width: 700px;
  margin-inline: auto;
}

.allocation-section .section-header {
  text-align: left;
  align-items: flex-start;
}

.allocation-section .section-header h2 {
  color: var(--cloud);
}

.allocation-section .section-header p {
  color: rgba(255,255,255,0.55);
}

/* ==========================================================================
   SCHOLARS / OUR-SCHOLARS PAGE
   ========================================================================== */

.scholars-hero {
  background: var(--void);
  padding-top: calc(var(--header-h) + 4px + var(--space-section));
  padding-bottom: var(--space-section);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  text-align: center;
}

.scholars-hero__inner {
  max-width: var(--container-narrow);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.scholars-hero h1 {
  color: var(--cloud);
  max-width: 22ch;
}

.scholars-hero p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-md);
  max-width: 52ch;
  line-height: 1.7;
}

.eligibility-section {
  background: var(--parchment);
  padding-block: var(--space-section);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.eligibility-section__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

@media (min-width: 900px) {
  .eligibility-section__inner { grid-template-columns: 1.2fr 1fr; }
}

.eligibility-section h2 {
  margin-block: var(--space-md) var(--space-xl);
}

.award-breakdown {
  background: var(--cloud);
  padding-block: var(--space-section);
}

.timeline-section {
  background: var(--parchment);
  padding-block: var(--space-section);
}

.wanderlearn-section {
  background: var(--slate);
  padding-block: var(--space-section);
}

.wanderlearn-section .section-header h2 {
  color: var(--cloud);
}

.wanderlearn-section .section-header p {
  color: rgba(255,255,255,0.6);
}

/* ==========================================================================
   SCHOLARSHIP APPLY PAGE
   ========================================================================== */

.apply-hero {
  background: var(--void);
  padding-top: calc(var(--header-h) + 4px + var(--space-section));
  padding-bottom: var(--space-section);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.apply-hero__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

@media (min-width: 900px) {
  .apply-hero__inner { grid-template-columns: 1fr 320px; }
}

.apply-hero h1 {
  color: var(--cloud);
  max-width: 20ch;
  margin-block: var(--space-md) var(--space-lg);
}

.apply-hero p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-md);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.apply-phases {
  background: var(--smoke);
  padding-block: var(--space-section);
}

.apply-form-section {
  background: var(--parchment);
  padding-block: var(--space-section);
}

.apply-form-wrap {
  max-width: 760px;
  margin-inline: auto;
  background: var(--cloud);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   AMBASSADOR PAGE
   ========================================================================== */

.ambassador-hero {
  background: var(--void);
  padding-top: calc(var(--header-h) + 4px + var(--space-section));
  padding-bottom: var(--space-section);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.ambassador-hero__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 900px) {
  .ambassador-hero__inner { grid-template-columns: 1fr auto; }
}

.ambassador-hero h1 {
  color: var(--cloud);
  max-width: 20ch;
  margin-block: var(--space-md) var(--space-lg);
}

.ambassador-hero p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-md);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.ambassador-revenue {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: center;
  min-width: 200px;
}

.ambassador-revenue__pct {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 8rem);
  color: var(--signal);
  line-height: 1;
}

.ambassador-revenue__label {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.split-section {
  background: var(--smoke);
  padding-block: var(--space-section);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.split-section__inner {
  max-width: 700px;
  margin-inline: auto;
}

.ambassador-how {
  background: var(--cloud);
  padding-block: var(--space-section);
}

/* ==========================================================================
   BOARD OF ADVISORS PAGE
   ========================================================================== */

.advisors-hero {
  background: var(--void);
  padding-top: calc(var(--header-h) + 4px + var(--space-section));
  padding-bottom: var(--space-section);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.advisors-hero__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 900px) {
  .advisors-hero__inner { grid-template-columns: 1fr auto; }
}

.advisors-hero h1 {
  color: var(--cloud);
  margin-block: var(--space-md) var(--space-lg);
}

.advisors-hero p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-md);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.advisors-hero__status {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-xl);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  min-width: 200px;
  text-align: center;
}

.advisors-hero__status-label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
}

.advisors-hero__status-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--signal);
}

.advisors-hero__status-sub {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}

.advisors-honest {
  background: var(--parchment);
  padding-block: var(--space-section);
}

.advisors-honest h2 { margin-block: var(--space-md) var(--space-xl); }

.advisors-roles {
  background: var(--smoke);
  padding-block: var(--space-section);
}

.advisors-status {
  background: var(--cloud);
  padding-block: var(--space-section);
}

.advisors-status h2 { margin-block: var(--space-md) var(--space-xl); }

.advisors-apply {
  background: var(--slate);
  padding-block: var(--space-section);
}

.advisors-apply .section-header h2 {
  color: var(--cloud);
}

.advisors-apply .section-header p {
  color: rgba(255,255,255,0.55);
}

.advisors-apply__form-wrap {
  max-width: 640px;
  margin-inline: auto;
  margin-top: var(--space-3xl);
}

/* Forms on dark backgrounds */
.advisors-apply .form-section__heading {
  color: var(--cloud);
  border-bottom-color: rgba(255,255,255,0.1);
}

.advisors-apply .form-label {
  color: rgba(255,255,255,0.8);
}

.advisors-apply .form-check-label span {
  color: rgba(255,255,255,0.6);
}

.advisors-apply .form-help {
  color: rgba(255,255,255,0.35);
}

/* ==========================================================================
   EVENTS PAGE
   ========================================================================== */

.events-hero {
  background: var(--void);
  padding-top: calc(var(--header-h) + 4px + var(--space-section));
  padding-bottom: var(--space-section);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  text-align: center;
}

.events-hero__inner {
  max-width: var(--container-narrow);
  margin-inline: auto;
}

.events-hero h1 {
  color: var(--cloud);
  margin-block: var(--space-md) var(--space-lg);
}

.events-hero p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-md);
  max-width: 50ch;
  margin-inline: auto;
  line-height: 1.7;
}

.events-empty {
  background: var(--parchment);
  padding-block: var(--space-section);
  text-align: center;
}

.events-empty h2 {
  margin-block: var(--space-md) var(--space-xl);
}

.events-empty p {
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
  font-size: var(--text-md);
}

.events-empty .cta-group {
  justify-content: center;
}

/* ==========================================================================
   GET UPDATES PAGE
   ========================================================================== */

.updates-hero {
  background: var(--void);
  padding-top: calc(var(--header-h) + 4px + var(--space-section));
  padding-bottom: var(--space-section);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.updates-hero__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

@media (min-width: 900px) {
  .updates-hero__inner { grid-template-columns: 1fr 400px; }
}

.updates-hero h1 {
  color: var(--cloud);
  margin-block: var(--space-md) var(--space-lg);
}

.updates-hero__lead {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-md);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.updates-reassurances {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.updates-reassurances li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  padding-left: var(--space-lg);
  position: relative;
}

.updates-reassurances li::before {
  content: '\2714';
  position: absolute;
  left: 0;
  color: var(--signal);
  font-size: 0.75em;
  top: 2px;
}

.updates-form-card {
  background: var(--cloud);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}

.updates-form-card h2 {
  margin-bottom: var(--space-xl);
}

.updates-topics {
  background: var(--parchment);
  padding-block: var(--space-section);
}

.updates-social {
  background: var(--smoke);
  padding-block: var(--space-section);
  text-align: center;
}

.updates-social .section-header { margin-inline: auto; }

.updates-social .cta-group {
  justify-content: center;
  margin-top: var(--space-2xl);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-hero {
  background: var(--void);
  padding-top: calc(var(--header-h) + 4px + var(--space-section));
  padding-bottom: var(--space-section);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.contact-hero__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

@media (min-width: 900px) {
  .contact-hero__inner { grid-template-columns: 1fr 1fr; }
}

.contact-hero h1 {
  color: var(--cloud);
  margin-block: var(--space-md) var(--space-lg);
}

.contact-hero > .contact-hero__inner > div > p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-md);
  margin-bottom: var(--space-md);
}

.contact-email {
  margin-bottom: var(--space-2xl);
}

.contact-email a {
  font-family: var(--font-ui);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--signal);
  text-decoration: none;
}

.contact-email a:hover {
  color: var(--cloud);
}

.contact-form-section {
  background: var(--parchment);
  padding-block: var(--space-section);
}

.contact-form-wrap {
  max-width: 640px;
  margin-inline: auto;
  background: var(--cloud);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h2 {
  margin-bottom: var(--space-2xl);
}

/* ==========================================================================
   STORE PAGE
   ========================================================================== */

.store-hero {
  background: var(--void);
  padding-top: calc(var(--header-h) + 4px + var(--space-section));
  padding-bottom: var(--space-section);
  text-align: center;
}

.store-hero h1 {
  color: var(--cloud);
  margin-block: var(--space-md) var(--space-lg);
}

.store-hero p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-md);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.store-story {
  background: var(--parchment);
  padding-block: var(--space-section);
}

.store-story__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 900px) {
  .store-story__inner { grid-template-columns: 1fr 1fr; }
}

.store-story h2 { margin-block: var(--space-md) var(--space-xl); }

.store-story__img {
  overflow: hidden;
  border-radius: var(--radius-lg);
  max-height: 420px;
}

.store-story__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-coming {
  background: var(--cloud);
  padding-block: var(--space-section);
}

.store-notify {
  background: var(--parchment);
  padding-block: var(--space-section);
  text-align: center;
}

.store-notify h2 { margin-block: var(--space-md) var(--space-xl); }

.store-notify .newsletter-form {
  max-width: 480px;
  margin-inline: auto;
  margin-top: var(--space-xl);
}

/* ==========================================================================
   PRIVACY / LEGAL PAGE
   ========================================================================== */

.privacy-hero {
  background: var(--void);
  padding-top: calc(var(--header-h) + 4px + var(--space-section));
  padding-bottom: var(--space-section);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.privacy-hero h1 {
  color: var(--cloud);
  margin-block: var(--space-md) var(--space-sm);
}

.privacy-hero__date {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
}

.privacy-body-section {
  background: var(--parchment);
  padding-block: var(--space-section);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */

.notfound-section {
  background: var(--void);
  min-height: 80svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 4px + var(--space-section));
  padding-bottom: var(--space-section);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.notfound-section .eyebrow {
  font-size: var(--text-2xl);
  color: var(--signal);
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: var(--space-lg);
}

.notfound-section .eyebrow::before { display: none; }

.notfound-section h1 {
  color: var(--cloud);
  max-width: 22ch;
  margin-bottom: var(--space-lg);
}

.notfound-section p {
  color: rgba(255,255,255,0.55);
  font-size: var(--text-md);
  max-width: 44ch;
  line-height: 1.65;
  margin-bottom: var(--space-2xl);
}

/* ==========================================================================
   FAQ PAGE
   ========================================================================== */

.faq-hero {
  background: var(--void);
  padding-top: calc(var(--header-h) + 4px + var(--space-section));
  padding-bottom: var(--space-section);
  text-align: center;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.faq-hero .eyebrow {
  color: var(--signal);
  justify-content: center;
  margin-bottom: var(--space-md);
}

.faq-hero h1 {
  color: var(--cloud);
  margin-bottom: var(--space-md);
}

.faq-hero__lead {
  color: rgba(255,255,255,0.6);
  font-size: var(--text-md);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.65;
}

.faq-hero__lead a {
  color: var(--signal);
}

.faq-section {
  background: var(--parchment);
  padding-block: var(--space-section);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.faq-section + .faq-section {
  border-top: 1px solid var(--border);
  padding-top: var(--space-3xl);
}

.faq-section .container--narrow {
  max-width: 700px;
}

.faq-cta-band {
  background: var(--void);
  padding-block: var(--space-section);
  text-align: center;
}

.faq-cta-band .eyebrow {
  color: var(--signal);
  justify-content: center;
  margin-bottom: var(--space-md);
}

.faq-cta-band h2 {
  color: var(--cloud);
  margin-bottom: var(--space-md);
}

.faq-cta-band p {
  color: rgba(255,255,255,0.6);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
  font-size: var(--text-md);
}

.faq-cta-band .cta-group {
  justify-content: center;
}

/* ==========================================================================
   MEMBERSHIP PAGE
   ========================================================================== */

.membership-tiers-section {
  background: var(--smoke, #F2F1F8);
  padding-block: var(--space-3xl);
}

.membership-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-lg);
  max-width: 1100px;
  margin-inline: auto;
}

.membership-tier {
  background: #fff;
  border: 2px solid var(--border, rgba(0,0,0,0.08));
  border-radius: 4px;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  cursor: pointer;
  transition: border-color 140ms ease, box-shadow 140ms ease;
  position: relative;
}

.membership-tier:hover {
  border-color: var(--meridian, #1B4FE8);
  box-shadow: 0 4px 16px rgba(27,79,232,0.1);
}

.membership-tier[aria-checked="true"] {
  border-color: var(--meridian, #1B4FE8);
  box-shadow: 0 0 0 3px rgba(27,79,232,0.15);
}

.membership-tier--featured {
  border-color: var(--meridian, #1B4FE8);
}

.membership-tier__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--meridian, #1B4FE8);
  color: #fff;
  font-family: var(--font-ui, 'Space Grotesk', sans-serif);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  white-space: nowrap;
}

.membership-tier__price {
  font-family: var(--font-ui, 'Space Grotesk', sans-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--text-primary, #0D0D0D);
  line-height: 1.1;
  margin-bottom: var(--space-xs);
}

.membership-tier__price span {
  font-size: 0.5em;
  color: var(--text-muted, rgba(13,13,13,0.45));
  font-weight: normal;
}

.membership-tier__name {
  font-family: var(--font-ui, 'Space Grotesk', sans-serif);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--meridian, #1B4FE8);
  margin-bottom: var(--space-sm);
}

.membership-tier__desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary, #3A3A3A);
  font-weight: 300;
}

.membership-form-section {
  background: var(--parchment, #FAF8F4);
  padding-block: var(--space-3xl);
}

.membership-form-wrap {
  max-width: 640px;
  margin-inline: auto;
}

.membership-form-wrap h2 {
  font-family: var(--font-ui, 'Space Grotesk', sans-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: var(--space-sm);
}

.membership-selected-display {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1rem;
  color: var(--text-muted, rgba(13,13,13,0.45));
  margin-bottom: var(--space-xl);
}

.membership-submit-area {
  margin-top: var(--space-xl);
}
