/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg:              #050505;
  --surface:         #0d0d0d;
  --border:          rgba(255, 255, 255, 0.06);
  --text-primary:    #EDEDEB;
  --text-secondary:  rgba(237, 237, 235, 0.45);
  --gold:            #C9A84C;
  --gold-dim:        rgba(201, 168, 76, 0.55);
  --gold-glow:       rgba(201, 168, 76, 0.08);

  --font-display:    'Cormorant Garamond', Georgia, serif;
  --font-body:       'Inter', system-ui, sans-serif;

  --ease-out:        cubic-bezier(0.16, 1, 0.3, 1);
  --transition:      0.4s var(--ease-out);
}

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

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

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out),
              height 0.3s var(--ease-out),
              background 0.3s var(--ease-out),
              border 0.3s var(--ease-out);
  mix-blend-mode: normal;
}

.cursor.is-hovering {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--gold);
}

/* ============================================================
   BACKGROUND BLOBS
   ============================================================ */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.blob-gold {
  width: 700px;
  height: 700px;
  top: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.8), transparent 65%);
  opacity: 0.038;
  animation: blobDrift1 24s ease-in-out infinite alternate;
}

.blob-blue {
  width: 600px;
  height: 600px;
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(88, 120, 200, 0.9), transparent 65%);
  opacity: 0.038;
  animation: blobDrift2 30s ease-in-out infinite alternate;
}

.blob-purple {
  width: 450px;
  height: 450px;
  top: 45%;
  left: 45%;
  background: radial-gradient(circle, rgba(136, 88, 200, 0.8), transparent 65%);
  opacity: 0.025;
  animation: blobDrift3 20s ease-in-out infinite alternate;
}

@keyframes blobDrift1 {
  0%   { transform: translate(0, 0); }
  40%  { transform: translate(90px, 110px); }
  100% { transform: translate(50px, -70px); }
}
@keyframes blobDrift2 {
  0%   { transform: translate(0, 0); }
  40%  { transform: translate(-80px, -90px); }
  100% { transform: translate(-60px, 60px); }
}
@keyframes blobDrift3 {
  0%   { transform: translate(-50%, -50%) scale(1); }
  50%  { transform: translate(-50%, -50%) scale(1.25); }
  100% { transform: translate(-50%, -50%) scale(0.85); }
}

/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 6vw;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.section-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 42px);
  color: var(--text-primary);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

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

.hero-photo-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.08);
  filter: brightness(0.55) contrast(1.1);
  will-change: transform;
  transition: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.15) 0%,
    rgba(5, 5, 5, 0.45) 45%,
    rgba(5, 5, 5, 0.90) 80%,
    #050505 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 6vw 8vh;
  width: 100%;
}

.hero-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin-bottom: 16px;
}

.hero-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.name-line {
  display: block;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--text-secondary);
  opacity: 0;
  text-transform: uppercase;
  animation: scrollPulse 2s ease-in-out 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.7; transform: translateX(-50%) translateY(4px); }
}

[data-animate="hero"] {
  opacity: 0;
  transform: translateY(24px);
}

/* ============================================================
   PRESS STRIP
   ============================================================ */
.press-strip {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 6vw;
}

.press-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.press-label {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--text-secondary);
  text-transform: uppercase;
  opacity: 0.5;
  margin-right: 8px;
}

.press-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.press-logos span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.press-logos .sep {
  color: var(--gold-dim);
  font-size: 10px;
}

/* ============================================================
   BIO
   ============================================================ */
.bio-section {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.bio-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.85;
  color: rgba(237, 237, 235, 0.82);
  margin-bottom: 24px;
}

.bio-text:last-child {
  margin-bottom: 0;
}

/* ============================================================
   ENDORSEMENTS
   ============================================================ */
.endorsements-section {
  position: relative;
  z-index: 2;
  padding: 80px 0 100px;
  background: var(--surface);
}

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

.endorsement-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 36px 28px 28px;
  position: relative;
}

.endorsement-card--featured {
  border-color: var(--gold-dim);
  transform: translateY(-8px);
  background: linear-gradient(145deg, #0d0d0d, #0a0a06);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 16px;
  display: block;
}

.endorsement-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.endorsement-card cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold-dim);
  display: block;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-block {
  text-align: center;
  flex: 1;
  max-width: 280px;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--gold);
  opacity: 0.3;
  margin: 0 40px;
  flex-shrink: 0;
}

/* ============================================================
   CONNECT
   ============================================================ */
.connect-section {
  position: relative;
  z-index: 2;
  padding: 80px 0 120px;
  background: var(--surface);
}

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

.connect-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color var(--transition),
              background var(--transition),
              transform var(--transition);
  cursor: none;
}

.connect-card:hover {
  border-color: var(--gold-dim);
  background: linear-gradient(135deg, #0d0d0d, #0a0a06);
  transform: translateY(-2px);
}

.connect-card-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.connect-label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.connect-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.connect-arrow {
  font-size: 18px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition);
}

.connect-card:hover .connect-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  z-index: 2;
  padding: 40px 6vw;
  text-align: center;
  border-top: 1px solid var(--border);
}

.site-footer p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  opacity: 0.5;
  line-height: 1.8;
}

.footer-domain {
  color: var(--gold-dim) !important;
  opacity: 0.6 !important;
}

/* ============================================================
   RESPONSIVE — TABLET (max 900px)
   ============================================================ */
@media (max-width: 900px) {
  .endorsements-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .endorsement-card--featured {
    transform: none;
  }

  .connect-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .stats-grid {
    flex-direction: column;
    gap: 40px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
    margin: 0;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 600px)
   ============================================================ */
@media (max-width: 600px) {
  .hero-name {
    font-size: clamp(52px, 14vw, 72px);
  }

  body {
    cursor: auto;
  }

  .cursor {
    display: none;
  }

  .press-inner {
    flex-direction: column;
    gap: 12px;
  }

  .press-logos {
    gap: 8px;
  }
}
