:root {
  --black: #090909;
  --yellow: #f5d800;
  --white: #f2f2ec;
  --display: 'Anton', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 110px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(9,9,9,0.7) 0%, rgba(9,9,9,0) 100%);
  pointer-events: none;
}

.nav-logo {
  display: block;
  height: 20px;
  width: auto;
}

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

nav a.nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

nav a.nav-link:hover { opacity: 1; }

nav a.nav-link.active {
  opacity: 1;
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 3px;
  color: var(--yellow);
}

nav a.join-link {
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 18px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

nav a.join-link:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

/* HERO */
.hero {
  height: 100svh;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter: grayscale(0.15);
  transform: scale(1.12);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-tagline {
  opacity: 0;
  animation: heroIn 1.1s ease-out 0.3s forwards;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; transform: none; }
  .hero-tagline { animation: none; opacity: 1; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,9,9,0.55) 0%, rgba(9,9,9,0.05) 25%, rgba(9,9,9,0.15) 60%, rgba(9,9,9,0.85) 100%);
}

.hero-tagline {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 64px;
}

.hero-tagline .line-main {
  font-family: var(--display);
  font-size: clamp(38px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-tagline .accent { color: var(--yellow); }

.hero-tagline .line-sub {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(242,242,236,0.65);
}

.scroll-hint {
  position: absolute;
  right: 32px;
  bottom: 64px;
  color: rgba(242,242,236,0.6);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

@media (max-width: 720px) {
  .hero-tagline { bottom: 48px; }
  .hero-tagline .line-main { font-size: clamp(30px, 11vw, 56px); }
  .hero-tagline .line-sub { font-size: 11px; letter-spacing: 3px; margin-top: 14px; }
  .scroll-hint { display: none; }
}

/* NUMBERED EYEBROW */
.eyebrow-num {
  margin-bottom: 32px;
}

.eyebrow-num .top-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.eyebrow-num .num {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(242,242,236,0.5);
}

.eyebrow-num .rule {
  width: 32px;
  height: 1px;
  background: rgba(242,242,236,0.3);
}

.eyebrow-num .label {
  display: block;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* Shared stacked display lines */
.stack-line {
  font-family: var(--display);
  font-size: clamp(36px, 7.5vw, 90px);
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.stack-line + .stack-line { margin-top: 8px; }
.stack-line.mark { color: var(--yellow); }
.stack-line.sm { font-size: clamp(28px, 5vw, 58px); }

.why { padding: clamp(90px, 16vw, 200px) 0; }

.why .stack-line:nth-of-type(1) { transition-delay: 0.1s; }
.why .stack-line:nth-of-type(2) { transition-delay: 0.25s; }
.why .stack-line:nth-of-type(3) { transition-delay: 0.4s; }

/* MINDSET — split section */
.mindset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.mindset-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 10vw, 120px) 48px;
}

.mindset-sub {
  margin-top: 28px;
  max-width: 380px;
  font-size: 15px;
  line-height: 1.7;
  color: #9a9a94;
}

.mindset-photo {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.mindset-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 15%;
}

@media (max-width: 860px) {
  .mindset { grid-template-columns: 1fr; }
  .mindset-text { padding: 72px 24px 48px; order: 2; }
  .mindset-photo { order: 1; min-height: 380px; }
}

/* COLLECTIVE — discipline grid */
.collective {
  padding: clamp(90px, 16vw, 180px) 0 0;
}

.collective-head {
  max-width: 620px;
}

.collective-head .headline {
  font-family: var(--display);
  font-size: clamp(32px, 6vw, 66px);
  line-height: 1.05;
  text-transform: uppercase;
}

.collective-sub {
  margin-top: 20px;
  max-width: 460px;
  font-size: 15px;
  line-height: 1.7;
  color: #9a9a94;
}

.discipline-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 860px) {
  .discipline-grid { grid-template-columns: repeat(2, 1fr); }
}

.tile {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) brightness(0.85);
}

.tile.photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,9,9,0) 40%, rgba(9,9,9,0.9) 100%);
}

.tile.text-only {
  background: linear-gradient(160deg, #161616, #0b0b0b);
}

.tile-label {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tile-quote {
  position: relative;
  z-index: 1;
}

.tile-quote .qmark {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 46px;
  line-height: 0.4;
  color: var(--yellow);
  margin-bottom: 12px;
}

.tile-quote .qtext {
  font-family: var(--display);
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
}

.tile.join-tile {
  background: var(--yellow);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tile.join-tile img {
  filter: grayscale(0.3) brightness(0.6);
}

.tile.join-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 216, 0, 0.82);
}

.tile.join-tile a {
  position: relative;
  z-index: 1;
  color: var(--black);
  text-decoration: none;
}

.tile.join-tile .tile-label { font-size: clamp(14px, 1.6vw, 17px); }

/* JOIN */
.join {
  padding: clamp(90px, 16vw, 200px) 0;
  text-align: center;
}

.join .stack-line { letter-spacing: 0.5px; }

.join-sub {
  margin-top: 20px;
  font-size: 16px;
  color: #9a9a94;
}

.join .cta {
  display: inline-block;
  margin-top: 44px;
  background: none;
  color: var(--white);
  text-decoration: none;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(242,242,236,0.4);
  padding: 18px 40px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.join .cta:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

/* STORY FORM */
.story-form {
  max-width: 560px;
  margin: 56px auto 0;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}

.story-form .field.full { grid-column: 1 / -1; }

.story-form .field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.story-form label {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
}

.story-form .optional-tag {
  color: rgba(242,242,236,0.4);
}

.story-form input {
  background: rgba(242,242,236,0.04);
  border: none;
  border-bottom: 2px solid rgba(242,242,236,0.25);
  padding: 14px 14px;
  font-size: 17px;
  color: var(--white);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.story-form input::placeholder { color: rgba(242,242,236,0.35); }

.story-form input:focus {
  border-bottom-color: var(--yellow);
  background: rgba(245,216,0,0.06);
}

.story-form .submit-row {
  grid-column: 1 / -1;
  margin-top: 12px;
  text-align: center;
}

.story-form .cta {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  font-size: 13px;
  padding: 20px 48px;
}

.story-form .cta:hover {
  background: none;
  color: var(--white);
  border-color: rgba(242,242,236,0.4);
}

@media (max-width: 640px) {
  .story-form { grid-template-columns: 1fr; }
}

.form-note {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(242,242,236,0.5);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 40px 0;
  max-width: 560px;
  margin: 40px auto 0;
}

.form-success .accent { color: var(--yellow); }

.form-success-sub {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: #9a9a94;
}

footer {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #55554f;
  font-size: 11px;
  letter-spacing: 1px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-link {
  color: #55554f;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--yellow);
}

.social-icon {
  display: flex;
  align-items: center;
  color: #55554f;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.social-icon:hover {
  opacity: 1;
  color: var(--yellow);
}

.social-icon.disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: auto;
}

.social-icon.disabled:hover {
  opacity: 0.5;
  color: inherit;
}

nav .social-icon {
  color: var(--white);
}

/* STORIES PAGE */
.stories-hero {
  padding: clamp(140px, 20vw, 220px) 0 60px;
}

.stories-hero .headline {
  font-family: var(--display);
  font-size: clamp(48px, 10vw, 120px);
  line-height: 0.95;
  text-transform: uppercase;
}

.stories-hero .headline .accent { color: var(--yellow); }

.stories-hero .sub {
  margin-top: 24px;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: #9a9a94;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 24px;
}

@media (max-width: 860px) {
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
}

.story-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.story-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) brightness(0.75);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.story-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0) brightness(0.55);
}

.story-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,9,9,0) 35%, rgba(9,9,9,0.92) 100%);
}

.story-card-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.story-meta {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

.story-card .qmark {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 38px;
  line-height: 0.4;
  color: var(--yellow);
  margin-bottom: 12px;
}

.story-card .qtext {
  font-family: var(--display);
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.18;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Video coming soon badge */
.video-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 8px;
  background: rgba(9,9,9,0.55);
  border: 1px solid rgba(245,216,0,0.5);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s ease, background 0.2s ease;
  width: fit-content;
}

.story-card:hover .video-badge {
  border-color: var(--yellow);
  background: rgba(9,9,9,0.75);
}

.video-badge .play-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.video-badge .play-dot::before {
  content: '';
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent var(--yellow);
  margin-left: 1px;
}

.video-badge span.badge-text {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  white-space: nowrap;
}

.story-card.join-card {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.story-card.join-card img {
  filter: grayscale(0.3) brightness(0.6);
}

.story-card.join-card::after {
  background: rgba(245, 216, 0, 0.82);
}

.story-card.join-card a {
  position: relative;
  z-index: 1;
  color: var(--black);
  text-decoration: none;
}

.join-content {
  font-family: var(--display);
  font-size: clamp(14px, 1.6vw, 17px);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stories-cta {
  text-align: center;
  padding: clamp(80px, 14vw, 160px) 0;
}

.stories-cta .line {
  font-family: var(--display);
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.05;
  text-transform: uppercase;
}

.stories-cta .line.mark { color: var(--yellow); }

.stories-cta a.cta {
  display: inline-block;
  margin-top: 40px;
  background: var(--yellow);
  color: var(--black);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--yellow);
  padding: 18px 40px;
  transition: background 0.2s ease, color 0.2s ease;
}

.stories-cta a.cta:hover {
  background: none;
  color: var(--white);
  border-color: rgba(242,242,236,0.4);
}
