:root {
  color-scheme: light;
  --ink: #171716;
  --muted: #68635c;
  --paper: #f8f3ea;
  --surface: #fffdfa;
  --charcoal: #131313;
  --smoke: #2a2925;
  --ember: #e3532f;
  --flame: #f5a43a;
  --sage: #62725f;
  --line: rgba(23, 23, 22, 0.14);
  --white: #fffdfa;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(19, 19, 19, 0.2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
}

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

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

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 max(20px, calc((100vw - 1160px) / 2));
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.topbar.is-scrolled,
.topbar.menu-open {
  background: rgba(255, 253, 250, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 900;
  font-size: 13px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong { font-size: 14px; }

.brand small {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.72;
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 26px;
  font-size: 13px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://yt3.googleusercontent.com/zhXAhtSIobUgktWdU6GsjXpxVYnSQmX2LEHcoxdy_0JXf8HhZvaz97cl7ifQTo0NrUaEjPSW=w2120-fcrop64=1,00005a57ffffa5a8-k-c0xffffffff-no-nd-rj");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 11, 10, 0.88), rgba(11, 11, 10, 0.55) 54%, rgba(11, 11, 10, 0.22)),
    linear-gradient(0deg, rgba(11, 11, 10, 0.82), rgba(11, 11, 10, 0.16) 58%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 56px;
  width: min(1160px, calc(100% - 40px));
  min-height: 92vh;
  margin: 0 auto;
  padding: 138px 0 64px;
}

.hero-copy { max-width: 780px; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--flame);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark { color: var(--ember); }

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 700px;
  margin-bottom: 30px;
  color: rgba(255, 253, 250, 0.88);
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.btn:hover { transform: translateY(-2px); }

.btn.primary {
  background: var(--flame);
  color: #18120b;
}

.btn.secondary {
  border: 1px solid rgba(255, 253, 250, 0.54);
  color: var(--white);
}

.btn.light {
  background: rgba(255, 253, 250, 0.14);
  color: var(--white);
}

.dark-btn {
  margin-top: 10px;
  background: var(--charcoal) !important;
  color: var(--white) !important;
}

.profile-card {
  align-self: end;
  border: 1px solid rgba(255, 253, 250, 0.28);
  border-radius: var(--radius);
  background: rgba(18, 17, 15, 0.5);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  padding: 18px;
}

.profile-card img {
  width: 116px;
  height: 116px;
  border: 3px solid rgba(255, 253, 250, 0.64);
  border-radius: 50%;
  object-fit: cover;
}

.profile-card span {
  display: block;
  margin-top: 18px;
  color: var(--flame);
  font-weight: 900;
}

.profile-card h2 {
  margin: 4px 0 8px;
  font-size: 30px;
}

.profile-card p {
  margin-bottom: 16px;
  color: rgba(255, 253, 250, 0.82);
  line-height: 1.6;
}

.profile-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.profile-card dl div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  border-top: 1px solid rgba(255, 253, 250, 0.2);
  padding-top: 10px;
}

dt {
  color: rgba(255, 253, 250, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.section { padding: 86px 0; }

.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-title.centered {
  margin-inline: auto;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
}

.section-title p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.signal-section { background: var(--surface); }

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

.signal-card,
.focus-card,
.gear-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
  box-shadow: 0 16px 36px rgba(35, 31, 24, 0.07);
}

.signal-card strong {
  display: block;
  color: var(--ember);
  font-size: 38px;
  line-height: 1;
}

.signal-card span {
  display: block;
  margin-top: 10px;
  font-weight: 900;
}

.signal-card p,
.focus-card p,
.gear-card p,
.video-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.identity-section {
  background: var(--smoke);
  color: var(--white);
}

.identity-layout,
.gear-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.identity-section .section-title p { color: rgba(255, 253, 250, 0.74); }

.focus-list {
  display: grid;
  gap: 14px;
}

.focus-card {
  background: rgba(255, 253, 250, 0.08);
  border-color: rgba(255, 253, 250, 0.18);
  box-shadow: none;
}

.focus-card span {
  color: var(--flame);
  font-weight: 900;
}

.focus-card h3,
.gear-card h3 {
  margin: 10px 0 0;
  font-size: 22px;
}

.focus-card p { color: rgba(255, 253, 250, 0.72); }

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

.video-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 36px rgba(35, 31, 24, 0.08);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(35, 31, 24, 0.14);
}

.video-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-card div { padding: 18px; }

.video-card span {
  color: var(--ember);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.video-card h3 {
  margin: 8px 0 0;
  font-size: 22px;
  line-height: 1.2;
}

.gear-section { background: #ece1d1; }

.gear-grid {
  display: grid;
  gap: 14px;
}

.contact-section {
  padding: 90px 0;
  background: var(--charcoal);
  color: var(--white);
}

.contact-panel {
  border: 1px solid rgba(255, 253, 250, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(227, 83, 47, 0.24), transparent 42%),
    rgba(255, 253, 250, 0.07);
  padding: clamp(28px, 5vw, 54px);
}

.contact-panel h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
}

.contact-panel p {
  max-width: 720px;
  color: rgba(255, 253, 250, 0.76);
  font-size: 18px;
  line-height: 1.75;
}

.footer {
  background: #0c0c0b;
  color: rgba(255, 253, 250, 0.7);
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer strong { color: var(--white); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }
.delay-4 { transition-delay: 320ms; }

@media (max-width: 940px) {
  .hero-inner,
  .identity-layout,
  .gear-layout {
    grid-template-columns: 1fr;
  }

  .profile-card {
    width: min(100%, 420px);
  }

  .signal-grid,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .wrap,
  .hero-inner {
    width: min(100% - 28px, 1160px);
  }

  .topbar {
    height: 66px;
    padding-inline: 14px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 66px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    box-shadow: 0 18px 42px rgba(19, 19, 19, 0.18);
    overflow: hidden;
  }

  .topbar.menu-open .nav {
    display: flex;
  }

  .nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .hero,
  .hero-inner {
    min-height: 100svh;
  }

  .hero-inner {
    padding: 112px 0 34px;
    gap: 28px;
  }

  h1 {
    font-size: clamp(42px, 15vw, 66px);
  }

  .lead {
    font-size: 17px;
  }

  .section {
    padding: 64px 0;
  }

  .signal-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-card.large {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-inner {
    flex-direction: column;
  }
}
