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

:root {
  --ink:    #0c0c0f;
  --paper:  #f0ece4;
  --gold:   #b5a48a;
  --mute:   #4e4b48;
  --line:   rgba(240, 236, 228, 0.1);
  --pad:    clamp(24px, 5vw, 72px);
  --max:    1200px;
  --sec:    clamp(80px, 10vw, 140px);
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

/* ── Cursor ───────────────────────────────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 44px; height: 44px;
  border: 1px solid rgba(240, 236, 228, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transition: border-color 0.3s;
}

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}

/* ── Nav ──────────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--pad);
  transition: background 0.5s, backdrop-filter 0.5s;
}

nav.scrolled {
  background: rgba(12, 12, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid rgba(240, 236, 228, 0.28);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.nav-cta:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* ── Shared section layout ────────────────────────────────────────────────── */
.section-wrap {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.section-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 32px;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 500;
  margin-bottom: 14px;
}

p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(240, 236, 228, 0.68);
  margin-bottom: 20px;
}

/* ── Reveal ───────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--pad) 100px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero-text { will-change: transform; }

.eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7.5vw, 108px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}

.hero-headline .line { display: block; }
.hero-headline .italic { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(240, 236, 228, 0.55);
  margin: 0;
}

/* Hero photo side */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3 / 4;
  will-change: transform;
  z-index: 2;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.photo-stub {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(240, 236, 228, 0.05);
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mute);
  text-transform: uppercase;
}

.hero-photo-wrap.no-photo .photo-stub,
.belief-photo-inner.no-photo .photo-stub {
  display: flex;
}

.hero-ring {
  position: absolute;
  border: 1px solid rgba(181, 164, 138, 0.18);
  border-radius: 50%;
  will-change: transform;
  pointer-events: none;
}

.hero-ring:not(.hero-ring--sm) {
  width: 360px;
  height: 360px;
  top: 50%;
  right: -20px;
  transform: translate(0, -50%);
  z-index: 1;
}

.hero-ring--sm {
  width: 200px;
  height: 200px;
  bottom: -40px;
  left: -60px;
  z-index: 0;
  border-color: rgba(181, 164, 138, 0.1);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240, 236, 228, 0.3);
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(240, 236, 228, 0.12);
  overflow: hidden;
  position: relative;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: dropLine 2.2s ease-in-out infinite;
}

@keyframes dropLine {
  0%   { top: -100%; }
  100% { top: 200%; }
}

/* ── Press ────────────────────────────────────────────────────────────────── */
.press {
  padding: var(--sec) var(--pad);
  border-top: 1px solid var(--line);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 40px;
}

.press-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 36px;
  background: var(--ink);
  transition: background 0.3s;
}

.press-item:hover { background: rgba(240, 236, 228, 0.035); }

.press-pub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.press-hed {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.4;
  color: rgba(240, 236, 228, 0.78);
}

/* ── Stats ────────────────────────────────────────────────────────────────── */
.stats {
  padding: var(--sec) var(--pad);
  border-top: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat { display: flex; flex-direction: column; gap: 8px; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  line-height: 1;
  color: var(--paper);
}

.stat-sublabel {
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 20px;
  margin-bottom: 2px;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── Belief ───────────────────────────────────────────────────────────────── */
.belief {
  padding: var(--sec) var(--pad);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.belief-wrap {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  align-items: start;
}

.belief-photo-col { will-change: transform; }

.belief-photo-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  will-change: transform;
}

.belief-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.belief-photo-inner .photo-stub { position: absolute; }

.belief-text-col {
  padding-top: 48px;
  will-change: transform;
}

/* ── Pillars ──────────────────────────────────────────────────────────────── */
.pillars {
  padding: var(--sec) var(--pad);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.pillars-header { margin-bottom: 64px; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.pillar { will-change: transform; }

.pillar-num {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ── Contracts ────────────────────────────────────────────────────────────── */
.contracts {
  padding: var(--sec) var(--pad);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.contracts-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.contracts-text, .proof-stack { will-change: transform; }

.arrow-link {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
  transition: letter-spacing 0.35s, color 0.3s;
}

.arrow-link:hover {
  letter-spacing: 0.22em;
  color: var(--paper);
}

.proof-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 48px;
}

.proof-card {
  padding: 28px 30px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.3s, background 0.3s;
}

.proof-card:hover {
  border-color: rgba(181, 164, 138, 0.35);
  background: rgba(181, 164, 138, 0.04);
}

.proof-stat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  color: var(--paper);
}

.proof-desc {
  font-size: 13px;
  color: rgba(240, 236, 228, 0.55);
  letter-spacing: 0.02em;
  margin: 0;
}

/* ── Origin ───────────────────────────────────────────────────────────────── */
.origin {
  padding: var(--sec) var(--pad);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.origin-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

.origin-text, .timeline { will-change: transform; }

.timeline { padding-top: 48px; }

.tl-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.tl-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--gold);
  min-width: 56px;
  line-height: 1;
}

.tl-event {
  font-size: 13px;
  color: rgba(240, 236, 228, 0.65);
  line-height: 1.55;
  margin: 0;
}

/* ── Speaking ─────────────────────────────────────────────────────────────── */
.speaking {
  padding: var(--sec) var(--pad);
  border-top: 1px solid var(--line);
}

.speaking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.topics {
  list-style: none;
  margin-top: 40px;
  counter-reset: topic;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.topics li {
  counter-increment: topic;
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 18px 20px;
  border: 1px solid var(--line);
  font-size: 14px;
  color: rgba(240, 236, 228, 0.65);
  line-height: 1.5;
  transition: background 0.3s;
  margin: 0;
}

.topics li:hover { background: rgba(240, 236, 228, 0.04); }

.topics li::before {
  content: '0' counter(topic);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  min-width: 22px;
  flex-shrink: 0;
}

/* ── Contact ──────────────────────────────────────────────────────────────── */
.contact {
  padding: var(--sec) var(--pad);
  border-top: 1px solid var(--line);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-sub {
  color: rgba(240, 236, 228, 0.58);
  font-size: 15px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

input, textarea {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--paper);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
  border-radius: 0;
  -webkit-appearance: none;
}

input:focus, textarea:focus {
  border-color: rgba(240, 236, 228, 0.38);
}

.submit-btn {
  background: var(--paper);
  color: var(--ink);
  border: none;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 44px;
  cursor: none;
  transition: background 0.3s;
  align-self: flex-start;
}

.submit-btn:hover { background: var(--gold); }

.success-msg {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--gold);
  margin-top: 16px;
}

/* ── Partner row ─────────────────────────────────────────────────────────── */
.partner-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.partner-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.partner-logo {
  object-fit: contain;
  background: var(--ink);
  border: 1px solid rgba(181,164,138,0.2);
  padding: 6px;
}

.partner-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: 4px;
}

.partner-label {
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

.partner-link {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}

.partner-link:hover { opacity: 0.7; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  padding: 36px var(--pad);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.06em;
}

.footer-socials {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 11px;
  color: var(--mute);
}

.footer-socials a { transition: color 0.3s; }
.footer-socials a:hover { color: var(--paper); }
.footer-dot { opacity: 0.35; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }

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

  .hero-right {
    display: flex;
    height: 320px;
    order: -1;
  }

  .belief-wrap,
  .contracts-wrap,
  .origin-wrap,
  .speaking-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .proof-stack, .timeline { padding-top: 0; }
}
