/* ═══════════════════════════════════════════════════════════
   BLACK WALL STREET NATION — Landing Page Stylesheet
   Brand: Deep black · Gold #C9A84C · White · Playfair Display + Barlow
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #080808;
  --near-black:  #0d0d0d;
  --charcoal:    #1a1a1a;
  --dark-grey:   #2a2a2a;
  --mid-grey:    #555555;
  --light-grey:  #aaaaaa;
  --off-white:   #f0ece4;
  --white:       #ffffff;
  --gold:        #C9A84C;
  --gold-light:  #e8c97a;
  --gold-dark:   #9a7a2e;
  --amber:       #d4882a;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Barlow', 'Helvetica Neue', Arial, sans-serif;
  --font-cond:   'Barlow Condensed', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1200px;
  --section-pad: 120px;
  --section-pad-sm: 72px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 2px;
  transition: all var(--transition);
}
.btn-ghost-light:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── Section Labels ───────────────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label.light { color: var(--gold-light); }

.section-header { margin-bottom: 72px; }
.section-header.centered { text-align: center; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  background: rgba(8, 8, 8, 0.96);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 9px 22px;
  border-radius: 2px;
  font-weight: 700;
}
.nav-links .nav-cta:hover {
  background: var(--gold-light);
  color: var(--black);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero_bg.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.55) 0%,
    rgba(8,8,8,0.3) 40%,
    rgba(8,8,8,0.65) 75%,
    rgba(8,8,8,0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 48px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.gold-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.eyebrow-text {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.hero-logo-lockup {
  margin-bottom: 40px;
}
.hero-logo {
  height: 130px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6));
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-tagline em {
  font-style: italic;
  color: var(--gold);
}

.hero-date {
  font-family: var(--font-cond);
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.85);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-date-divider {
  color: rgba(201,168,76,0.75);
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 4px;
}

.hero-venues {
  display: none;
}

.hero-sub {
  font-family: var(--font-cond);
  font-size: clamp(0.72rem, 1.0vw, 0.86rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
  font-weight: 500;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn {
  min-width: 200px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ══════════════════════════════════════════════════════════
   INTRO STATEMENT
══════════════════════════════════════════════════════════ */
.intro-statement {
  padding: 80px 0 72px;
  background: var(--near-black);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.intro-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.intro-quote-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.gold-vertical-rule {
  flex-shrink: 0;
  width: 2px;
  height: 100%;
  min-height: 120px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.intro-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--gold);
  font-weight: 400;
}

.intro-quote-hero {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.55;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: center;
  margin: 0;
  padding: 0 20px;
}

/* ══════════════════════════════════════════════════════════
   WHAT IS BWSN?
══════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════
   THREE-COLUMN EDITORIAL INTRO
══════════════════════════════════════════════════════════ */
.editorial-intro {
  padding: 96px 0 88px;
  background: var(--near-black);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.editorial-unified {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.editorial-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--off-white);
  margin: 0 0 20px 0;
  text-wrap: balance;
  letter-spacing: -0.01em;
}

.editorial-supporting {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--light-grey);
  margin: 0 0 52px 0;
  max-width: 680px;
  text-wrap: balance;
}

.editorial-pull {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  color: var(--gold);
  font-weight: 400;
  opacity: 0.85;
}

.editorial-pull-rule {
  display: block;
  flex-shrink: 0;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0 48px;
  align-items: start;
}

.editorial-two-col {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 56px;
  align-items: center;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.editorial-left {
  display: flex;
  flex-direction: column;
}

.editorial-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.editorial-purpose {
  padding-top: 52px;
  text-align: center;
}

.editorial-purpose-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--off-white);
  margin: 0 auto;
  max-width: 820px;
  text-wrap: balance;
  letter-spacing: 0.01em;
}

.editorial-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.5) 30%, rgba(201, 168, 76, 0.5) 70%, transparent);
  align-self: stretch;
  min-height: 160px;
}

.editorial-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.editorial-col--center {
  text-align: center;
  align-items: center;
}

.editorial-col-label {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.editorial-col-text {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--off-white);
  margin: 0;
  text-wrap: balance;
}

.editorial-philosophy {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: var(--gold);
  font-weight: 400;
  margin: 0;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════
   OPENING STATEMENT
══════════════════════════════════════════════════════════ */
.opening-statement {
  padding: 96px 0 80px;
  background: var(--near-black);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.opening-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.opening-text-col {
  /* left column */
}

.opening-accent-col {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding-left: 8px;
}

.opening-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--off-white);
  letter-spacing: 0.01em;
  margin: 0;
  text-align: left;
  text-wrap: balance;
}

.what-is-bwsn {
  padding: 80px 0;
  background: var(--black);
}

.what-is-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.what-is-inner .section-label {
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.what-is-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--off-white);
  text-align: center;
  margin: 0;
  max-width: 700px;
  text-wrap: balance;
}

.what-is-body {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.8;
  color: var(--light-grey);
  font-weight: 400;
  margin: 0;
  max-width: 620px;
  text-align: center;
  text-wrap: balance;
}

/* ══════════════════════════════════════════════════════════
   THE EXPERIENCE
══════════════════════════════════════════════════════════ */
.experience {
  padding: var(--section-pad) 0;
  background: var(--black);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 0;
}

.exp-card {
  position: relative;
  padding: 52px 40px 52px;
  background: var(--charcoal);
  border-top: 2px solid transparent;
  transition: border-color var(--transition), background var(--transition);
  overflow: hidden;
}
.exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.exp-card:hover::before { transform: scaleX(1); }
.exp-card:hover { background: #1e1e1e; }

.exp-card-number {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 28px;
  opacity: 0.7;
}

.exp-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.exp-card-rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
  opacity: 0.6;
}

.exp-card-copy {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--light-grey);
}

.experience-footnote {
  text-align: center;
  font-family: var(--font-cond);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-top: 20px;
  margin-bottom: 0;
}

.experience-capstone {
  max-width: 100%;
  margin: 10px auto 0;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.75;
  color: var(--light-grey);
  text-align: center;
  text-wrap: balance;
  padding-top: 0;
  border-top: none;
}

.experience-cta-wrap {
  text-align: center;
  margin-top: 36px;
}

/* ══════════════════════════════════════════════════════════
   GREENWOOD
══════════════════════════════════════════════════════════ */
.greenwood {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.greenwood-bg {
  position: absolute;
  inset: 0;
  background-image: url('greenwood_bg.jpg');
  background-size: cover;
  background-position: center;
}

.greenwood-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.94) 0%,
    rgba(8,8,8,0.88) 50%,
    rgba(8,8,8,0.7) 100%
  );
}

.greenwood-content {
  position: relative;
  z-index: 2;
}

.greenwood-inner {
  max-width: 640px;
}

.greenwood-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.greenwood-headline em {
  font-style: italic;
  color: var(--gold);
}

.greenwood-rule {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 36px;
}

.greenwood-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
  margin-bottom: 20px;
}

.greenwood-closing {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--off-white);
  margin-top: 12px;
}

/* ══════════════════════════════════════════════════════════
   ABOUT BLACK WALL STREET NATION
══════════════════════════════════════════════════════════ */
.about {
  padding: var(--section-pad) 0;
  background: var(--near-black);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.about-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-top: 8px;
  margin-bottom: 28px;
}
.about-headline em {
  font-style: italic;
  color: var(--gold);
}

.about-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 4px;
}

.about-body {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  margin-bottom: 22px;
}
.about-lead-body {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}
.about-body strong {
  color: var(--off-white);
  font-weight: 600;
}

.about-collaborators {
  margin-top: 36px;
  padding: 28px 32px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-left: 3px solid var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.collaborators-label {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.collaborators-names {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--off-white);
  line-height: 1.9;
}

.collaborators-names li {
  font-style: normal;
}

.collaborators-names li strong {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}

/* keep the old selector intact for any fallback */
.collaborators-names-old {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 10px;
}

.collaborators-more {
  font-size: 0.88rem;
  color: var(--mid-grey);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   BUILT IN COLLABORATION
══════════════════════════════════════════════════════════ */
.built-in-collab {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.bic-bg {
  position: absolute;
  inset: 0;
  background-image: url('greenwood_bg.jpg');
  background-size: cover;
  background-position: center 40%;
}

.bic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.97) 0%,
    rgba(8,8,8,0.90) 55%,
    rgba(8,8,8,0.75) 100%
  );
}

.bic-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.bic-inner {
  max-width: 620px;
}

.bic-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.bic-headline em {
  font-style: italic;
  color: var(--gold);
}

.bic-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 36px;
}

.bic-body {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  margin-bottom: 20px;
}

.bic-closing {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--off-white);
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════
   CULTURE WITH CONSEQUENCE
══════════════════════════════════════════════════════════ */
.culture {
  padding: var(--section-pad) 0;
  background: var(--near-black);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.culture-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-top: 8px;
}
.culture-headline em {
  font-style: italic;
  color: var(--gold);
}

.culture-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  margin-bottom: 24px;
}

.culture-emphasis {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.culture-emphasis p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 8px;
}
.emphasis-gold {
  color: var(--gold) !important;
  font-size: 1.2rem !important;
}

/* ══════════════════════════════════════════════════════════
   STORY UNFOLDING
══════════════════════════════════════════════════════════ */
.story {
  padding: var(--section-pad) 0;
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.story-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.story-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--off-white);
  margin-bottom: 28px;
}

.story-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--light-grey);
}

/* ══════════════════════════════════════════════════════════
   PARTNERS
══════════════════════════════════════════════════════════ */
.partners {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.partners-subhead {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.52);
  max-width: 620px;
  margin: -40px auto 52px;
  text-align: center;
}

.partner-logo-badge {
  padding: 16px 20px;
}

.partner-logo-img {
  max-height: 56px;
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: none;
  opacity: 0.88;
  transition: opacity 0.3s ease;
}

/* Full color logos — no filter at all */
.partner-logo-color {
  filter: none;
  opacity: 0.88;
}

.partner-logo-badge:hover .partner-logo-img,
.partner-logo-badge:hover .partner-logo-color {
  opacity: 1;
}

/* For logos that need a dark pill background (white text on white bg) */
.partner-logo-dark-bg {
  background: rgba(20, 20, 20, 0.9);
  border-radius: 4px;
}

.partners .section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: rgba(255,255,255,0.85);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  justify-items: center;
  margin-top: 52px;
}

.partner-badge {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 14px 20px;
  border-radius: 2px;
  transition: all var(--transition);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}
.partner-badge:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.partner-tba {
  color: var(--mid-grey);
  border-style: dashed;
  border-color: rgba(255,255,255,0.12);
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════
   CLOSING CTA
══════════════════════════════════════════════════════════ */
.closing-cta {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
}

.closing-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero_bg.jpg');
  background-size: cover;
  background-position: center 60%;
}

.closing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.88) 0%,
    rgba(8,8,8,0.82) 100%
  );
}

.closing-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.closing-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 60px;
  margin-top: 16px;
}
.closing-headline em {
  font-style: italic;
  color: var(--gold);
}

.email-capture {
  max-width: 560px;
  margin: 0 auto 52px;
}

.email-form {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 2px;
  overflow: hidden;
}

.email-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: none;
  padding: 16px 20px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--white);
  outline: none;
  transition: background var(--transition);
}
.email-input::placeholder { color: rgba(255,255,255,0.35); }
.email-input:focus { background: rgba(255,255,255,0.1); }

.email-form .btn-gold {
  border-radius: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.email-note {
  font-size: 0.78rem;
  color: var(--mid-grey);
  letter-spacing: 0.04em;
}

.closing-cta-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.closing-taglines {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.closing-taglines p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.gold-text { color: var(--gold) !important; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
  padding-bottom: 48px;
}

.footer-logo img {
  height: 52px;
  width: auto;
  opacity: 0.85;
}

.footer-meta { text-align: center; }
.footer-location {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 6px;
}
.footer-url {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-grey);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

/* Footer transparency block */
.footer-transparency {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
}
.transparency-text {
  font-size: 0.8rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.28);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.02em;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}
.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   ANIMATIONS — Fade In on Scroll
══════════════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 36px; }
  :root { --section-pad: 96px; }

  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-accent { padding-left: 0; }

  .culture-grid { grid-template-columns: 1fr; gap: 48px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-rule { margin-bottom: 0; }

  .bic-content { justify-content: flex-start; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-logo img { margin: 0 auto; }

  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px; }
  .container { padding: 0 24px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 100px 24px 60px; }
  .hero-logo { height: 90px; }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .email-form {
    flex-direction: column;
  }
  .email-form .btn-gold {
    border-radius: 0;
  }

  .closing-cta-links { flex-direction: column; align-items: center; }

  .footer-bottom { padding: 20px 0; }
  .footer-bottom-inner { padding: 0 24px; }

  /* Partner logos — 2-column mobile grid */
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 36px;
  }

  .partner-badge {
    min-height: 80px;
    padding: 16px 12px;
  }

  .partner-logo-badge {
    min-height: 80px;
    padding: 14px 16px;
  }

  .partner-logo-img {
    max-height: 48px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-tagline { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .greenwood-headline { font-size: 2.6rem; }
}

/* ══════════════════════════════════════════════════════════
   MOBILE NAV OPEN STATE
══════════════════════════════════════════════════════════ */
.site-nav.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8,8,8,0.98);
  align-items: center;
  justify-content: center;
  gap: 40px;
  z-index: 99;
}
.site-nav.nav-open .nav-links a {
  font-size: 1.1rem;
  letter-spacing: 0.16em;
}
.site-nav.nav-open .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-nav.nav-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
}
.site-nav.nav-open .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
