/* ===== Spencer Christian — design tokens ===== */
:root {
  --bg: #0a0a0b;
  --bg-soft: #141416;
  --card: #17171a;
  --text: #f5f5f5;
  --muted: #a1a1aa;
  --line: rgba(255, 255, 255, 0.10);
  --red: #1f5cff;          /* brand blue */
  --red-soft: #4d86ff;
  --radius: 18px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { letter-spacing: -0.01em; line-height: 1.05; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red-soft);
  margin-bottom: 0.9rem;
}

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.05rem clamp(1.2rem, 4vw, 3rem);
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(10,10,11,0.75), rgba(10,10,11,0));
  transition: background 0.3s var(--ease);
}
.site-header.scrolled { background: rgba(10,10,11,0.88); border-bottom: 1px solid var(--line); }
.brand { font-family: "Anton", sans-serif; font-size: 1.15rem; letter-spacing: 0.06em; color: var(--text); text-decoration: none; }
.nav { display: flex; gap: 1.6rem; align-items: center; }
.nav a { color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: var(--text); }
.nav-cta { color: var(--text) !important; border: 1px solid var(--line); padding: 0.45rem 1.1rem; border-radius: 100px; background: rgba(255,255,255,0.04); }
.nav-cta:hover { border-color: var(--red); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 7rem clamp(1.2rem, 5vw, 3rem) 4rem;
  overflow: hidden;
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.1s var(--ease); }
.hero-video.is-active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(110% 80% at 50% 30%, rgba(10,10,11,0.35), transparent 60%),
    linear-gradient(to top, rgba(10,10,11,0.96), rgba(10,10,11,0.55) 50%, rgba(10,10,11,0.82));
}
.hero-content { position: relative; z-index: 2; max-width: 920px; }

.pillars-top { text-transform: uppercase; letter-spacing: 0.32em; font-size: clamp(0.62rem, 1.6vw, 0.85rem); font-weight: 600; color: var(--text); margin-bottom: 1.4rem; }
.pillars-top i { color: var(--red); font-style: normal; margin: 0 0.2em; }

/* Wordmark */
.wordmark { font-family: "Anton", sans-serif; line-height: 0.92; text-transform: uppercase; }
.w-spencer { display: block; font-size: clamp(2.6rem, 11vw, 8rem); color: #d8d8d8; letter-spacing: 0.02em; }
.w-christian { display: block; font-size: clamp(2.9rem, 12.5vw, 9rem); color: #fff; letter-spacing: 0.01em; }
.cross { display: inline-block; height: 1em; width: 0.4em; margin: 0 0.02em; transform: translateY(0.12em); vertical-align: baseline; }
.cross svg { height: 100%; width: 100%; display: block; }
.cross rect { fill: var(--red); }

.role { font-family: "Anton", sans-serif; letter-spacing: 0.42em; text-transform: uppercase; font-size: clamp(0.8rem, 2.4vw, 1.15rem); color: var(--text); margin: 0.9rem 0 1.8rem; padding-left: 0.42em; }

/* Pillars */
.pillars { list-style: none; display: flex; gap: clamp(1.4rem, 5vw, 3.4rem); justify-content: center; flex-wrap: wrap; margin-bottom: 2.2rem; }
.pillars li { display: flex; flex-direction: column; align-items: center; gap: 0.55rem; }
.p-icon { width: 38px; height: 38px; color: var(--red-soft); display: inline-flex; }
.p-icon svg { width: 100%; height: 100%; }
.p-label { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; font-weight: 700; color: var(--text); }

.tagline { font-family: "Anton", sans-serif; text-transform: uppercase; letter-spacing: 0.04em; font-size: clamp(1.1rem, 3.2vw, 1.9rem); margin-bottom: 0.5rem; }
.tagline-sub { color: var(--muted); max-width: 46ch; margin: 0 auto 2rem; font-size: clamp(0.92rem, 2vw, 1.05rem); }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.85rem 1.6rem; border-radius: 100px; font-weight: 700; font-size: 0.95rem; text-decoration: none; cursor: pointer; transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, border-color 0.2s; border: 1px solid transparent; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 30px rgba(31,92,255,0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(31,92,255,0.55); }
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--text); border-color: var(--line); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }

/* ===== Sections ===== */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(3.5rem, 9vw, 7rem) clamp(1.2rem, 5vw, 2rem); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2 { font-family: "Anton", sans-serif; text-transform: uppercase; letter-spacing: 0.02em; font-size: clamp(2rem, 6vw, 3.6rem); margin-bottom: 0.7rem; }
.section-sub { color: var(--muted); font-size: 1.02rem; }

/* ===== Intro video ===== */
.intro-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem, 5vw, 3.5rem); align-items: center; }
.intro-player { position: relative; aspect-ratio: 9/16; max-height: 80vh; margin: 0 auto; width: 100%; max-width: 360px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #000; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.intro-player video { width: 100%; height: 100%; object-fit: cover; }
.intro-unmute { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(31,92,255,0.92); color: #fff; border: 0; border-radius: 100px; padding: 0.8rem 1.5rem; font-size: 1rem; font-weight: 700; cursor: pointer; box-shadow: 0 8px 30px rgba(0,0,0,0.5); backdrop-filter: blur(6px); transition: transform 0.15s, opacity 0.2s; z-index: 3; }
.intro-unmute:hover { transform: translate(-50%, -50%) scale(1.05); }
.intro-unmute.hidden { opacity: 0; pointer-events: none; }
.intro-copy h2 { font-family: "Anton", sans-serif; text-transform: uppercase; font-size: clamp(2rem, 5vw, 3.2rem); margin: 0.4rem 0 0.8rem; }
.intro-copy p { color: var(--muted); }
.intro-stats { display: flex; gap: clamp(1.2rem, 4vw, 2.6rem); margin-top: 1.8rem; flex-wrap: wrap; }
.intro-stats div { display: flex; flex-direction: column; }
.intro-stats strong { font-family: "Anton", sans-serif; font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--text); line-height: 1; }
.intro-stats span { color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.3rem; }

/* ===== Gallery ===== */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.2rem; }
.card { position: relative; aspect-ratio: 9/16; border-radius: var(--radius); overflow: hidden; cursor: pointer; background: var(--card); border: 1px solid var(--line); transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.card img, .card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.card .play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 55%); opacity: 0.92; transition: opacity 0.25s; }
.card:hover .play { opacity: 1; }
.card .play::before { content: ""; width: 56px; height: 56px; border-radius: 100px; background: var(--red); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center / 24px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center / 24px no-repeat; }
.card .label { position: absolute; left: 14px; bottom: 14px; right: 14px; font-size: 0.85rem; font-weight: 600; z-index: 2; }
.empty-note { grid-column: 1/-1; text-align: center; color: var(--muted); padding: 3rem 1rem; border: 1px dashed var(--line); border-radius: var(--radius); }

/* ===== Brands (3D pop) ===== */
.brands { perspective: 1000px; }
.brand-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.2rem; }
.brand-tile {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 16/9;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 800; letter-spacing: 0.04em; color: #e6e6e6;
  transform-style: preserve-3d;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, opacity 0.5s, scale 0.5s;
  opacity: 0; scale: 0.85;
  will-change: transform; overflow: hidden;
  padding: 0.6rem;
}
.brand-tile.in { opacity: 1; scale: 1; }
.brand-tile:hover { background: rgba(255,255,255,0.05); border-color: var(--line); }
.brand-tile img { max-width: 82%; max-height: 78%; object-fit: contain; }
.brand-tile span { padding: 0 0.6rem; text-align: center; }

/* ===== About (bio + integrated photo collage) ===== */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.about-text h2 { font-family: "Anton", sans-serif; text-transform: uppercase; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.2rem; }
.about-text p { color: #d4d4d8; margin-bottom: 1.1rem; }
.about-text strong { color: var(--text); }
.about-collage { column-count: 2; column-gap: 0.7rem; }
.about-collage img { width: 100%; margin: 0 0 0.7rem; border-radius: 14px; border: 1px solid var(--line); display: block; break-inside: avoid; }

/* ===== Testimonials ===== */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.testi { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.5rem; margin: 0; display: flex; flex-direction: column; gap: 0.8rem; }
.testi-stars { color: #ffc83d; font-size: 1.1rem; letter-spacing: 0.1em; }
.testi blockquote { margin: 0; color: #e4e4e7; font-size: 1rem; line-height: 1.6; }
.testi figcaption { color: var(--muted); font-weight: 600; font-size: 0.9rem; margin-top: auto; }
.testi figcaption::before { content: "— "; }

/* ===== Contact ===== */
.contact { text-align: center; }
.contact-inner { max-width: 680px; margin: 0 auto; }
.contact h2 { font-family: "Anton", sans-serif; text-transform: uppercase; font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 1.4rem; }
.contact .btn { margin-top: 0.4rem; }
.socials { margin-top: 2.2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.socials a { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--text); text-decoration: none; font-weight: 600; font-size: 0.92rem; border: 1px solid var(--line); background: rgba(255,255,255,0.04); padding: 0.55rem 1.1rem; border-radius: 100px; transition: border-color 0.2s, background 0.2s, transform 0.2s; }
.socials a:hover { border-color: var(--red); background: rgba(31,92,255,0.12); transform: translateY(-2px); }
.socials svg { width: 20px; height: 20px; }

/* ===== Footer ===== */
.site-footer { text-align: center; padding: 2.5rem 1rem; color: var(--muted); font-size: 0.85rem; border-top: 1px solid var(--line); }

/* ===== Modal ===== */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,0.92); backdrop-filter: blur(8px); padding: 2rem; }
.modal.open { display: flex; }
.modal-stage { position: relative; height: min(86vh, 900px); aspect-ratio: 9/16; border-radius: var(--radius); overflow: hidden; }
.modal-stage video { width: 100%; height: 100%; object-fit: contain; background: #000; }
.modal-close { position: absolute; top: 22px; right: 28px; font-size: 2.4rem; line-height: 1; color: #fff; background: none; border: 0; cursor: pointer; opacity: 0.8; }
.modal-close:hover { opacity: 1; }

/* ===== Responsive ===== */
@media (max-width: 820px) {
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; right: 1rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 1rem 1.4rem; gap: 1rem; }
  .nav-toggle { display: flex; }
  .intro-wrap { grid-template-columns: 1fr; }
  .intro-copy { text-align: center; }
  .intro-stats { justify-content: center; }
  .about-wrap { grid-template-columns: 1fr; }
}
