:root {
  color-scheme: dark;
  --ink: #080706;
  --charcoal: #12100d;
  --charcoal-soft: #1b1712;
  --sepia: #8a6a43;
  --sepia-deep: #5d4429;
  --sepia-light: #c0a37a;
  --paper: #f1e6d0;
  --paper-muted: #cbbda5;
  --line: rgba(192, 163, 122, 0.26);
  --line-strong: rgba(192, 163, 122, 0.42);
  --shadow: rgba(0, 0, 0, 0.45);
  --max-width: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--paper);
  background:
    radial-gradient(circle at 50% 0%, rgba(138, 106, 67, 0.23), transparent 36rem),
    linear-gradient(135deg, rgba(93, 68, 41, 0.24), transparent 28rem),
    var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(241, 230, 208, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 230, 208, 0.05) 1px, transparent 1px);
  background-size: 42px 42px, 42px 42px;
  mask-image: radial-gradient(circle at 50% 10%, black, transparent 76%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background:
    repeating-radial-gradient(circle at 20% 30%, rgba(241, 230, 208, 0.08) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(100deg, transparent 0 10px, rgba(241, 230, 208, 0.035) 10px 11px);
  mix-blend-mode: screen;
}

a {
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.12rem;
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 1.12rem 0;
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-height: 2.16rem;
  color: var(--paper);
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI Condensed", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.52rem, 2.24vw, 2.24rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.brand-reel,
.brand-leaps {
  display: inline-flex;
  align-items: center;
}

.brand-reel {
  font-weight: 950;
  text-shadow: 0 0 0.01em currentColor;
}

.brand-leaps {
  margin-left: 0.08em;
  font-weight: 100;
  letter-spacing: 0.22em;
}

.site-nav,
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.site-nav {
  gap: 0.52rem;
}

.site-nav a,
.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 3.5rem;
  padding: 0.77rem 1.26rem;
  color: var(--paper-muted);
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI Condensed", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  font-weight: 650;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
}

.site-nav a {
  min-height: 2.8rem;
  padding: 0.62rem 1rem;
  font-size: clamp(1.12rem, 1.12vw, 1.28rem);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
  color: var(--paper);
  border-color: var(--line-strong);
  background: rgba(192, 163, 122, 0.08);
  outline: none;
}

.hero-section,
.content-section,
.site-footer {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.hero-section {
  container-type: inline-size;
  --hero-title-size: clamp(5.25rem, 11cqw, 8rem);
  --hero-reel-width: clamp(19rem, 32cqw, 24rem);
  --hero-reel-height: calc(var(--hero-reel-width) * 16 / 9);
  --hero-gap: clamp(2.25rem, 4.25cqw, 3.5rem);
  display: grid;
  grid-template-columns: max-content var(--hero-reel-width);
  gap: var(--hero-gap);
  align-items: center;
  justify-content: start;
  min-height: calc(100svh - 7rem);
  padding: clamp(2rem, 6vw, 6rem) 0 3.5rem;
}

.hero-copy {
  --hero-intro-indent: calc(var(--hero-title-size) * 0.72);
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(1.05rem, 1.45cqw, 1.55rem);
  height: var(--hero-reel-height);
  width: max-content;
  max-width: calc(100cqw - var(--hero-reel-width) - var(--hero-gap));
  min-height: 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--sepia-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: balance;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1 {
  display: grid;
  gap: 0.018em;
  width: max-content;
  max-width: 100%;
  font-size: var(--hero-title-size);
  font-weight: 800;
  line-height: 0.9;
}

h1 span {
  display: block;
}

h1 span:nth-child(2) {
  padding-left: 0.15em;
}

h1 span:nth-child(3) {
  padding-left: 0.3em;
}

h1 span:nth-child(4) {
  padding-left: 0.45em;
}

h1 span:nth-child(5) {
  padding-left: 0.56em;
}

h2 {
  max-width: 15ch;
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  font-weight: 850;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 780;
}

.hero-intro,
.section-heading > p:not(.eyebrow),
.site-footer p {
  max-width: 43rem;
  color: var(--paper-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}

.hero-intro {
  width: min(
    32rem,
    calc(100cqw - var(--hero-reel-width) - var(--hero-gap) - var(--hero-intro-indent))
  );
  max-width: calc(100% - var(--hero-intro-indent));
  margin: 0 0 0 var(--hero-intro-indent);
  font-size: clamp(1.45rem, 2.1cqw, 1.7rem);
  line-height: 1.28;
}

.icon-button:hover,
.icon-button:focus-visible,
.video-toggle:hover,
.video-toggle:focus-visible,
.sound-toggle:hover,
.sound-toggle:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hero-media {
  justify-self: start;
  width: var(--hero-reel-width);
}

.reel-shell {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  padding: 0.7rem;
  background:
    linear-gradient(180deg, rgba(241, 230, 208, 0.09), rgba(93, 68, 41, 0.14)),
    #0c0a08;
  border: 1px solid var(--line-strong);
  border-radius: 2rem;
  box-shadow: 0 2.5rem 6rem var(--shadow);
}

.reel-topbar {
  position: absolute;
  top: 1.05rem;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 0.35rem;
  transform: translateX(-50%);
}

.reel-topbar span {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: rgba(241, 230, 208, 0.52);
}

.feature-video,
.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050403;
  border-radius: 1.38rem;
}

.video-controls {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  gap: 0.5rem;
}

.video-toggle,
.sound-toggle {
  min-height: 2.7rem;
  padding: 0.65rem 0.9rem;
  color: var(--paper);
  background: rgba(8, 7, 6, 0.72);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.34);
  cursor: pointer;
}

.content-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.split-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.brand-grid article {
  min-height: 17rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(150deg, rgba(192, 163, 122, 0.08), transparent 70%),
    rgba(18, 16, 13, 0.82);
}

.placeholder-label {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: var(--sepia-light);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-grid p,
.placeholder-card p,
.card-copy span {
  color: var(--paper-muted);
  line-height: 1.6;
}

.carousel-controls {
  display: flex;
  gap: 0.6rem;
}

.icon-button {
  min-width: 3.25rem;
  min-height: 2.7rem;
  padding: 0.55rem 0.75rem;
  color: var(--paper);
  background: rgba(192, 163, 122, 0.08);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
}

.reel-carousel {
  display: grid;
  grid-auto-columns: minmax(16rem, 22rem);
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0.25rem 0 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--sepia) rgba(192, 163, 122, 0.12);
}

.reel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  scroll-snap-align: start;
  background:
    linear-gradient(180deg, rgba(241, 230, 208, 0.05), rgba(93, 68, 41, 0.18)),
    var(--charcoal);
}

.active-card {
  padding: 0;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.32);
}

.active-card video {
  position: absolute;
  inset: 0;
  border-radius: 0;
}

.active-card::after {
  position: absolute;
  inset: 40% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(8, 7, 6, 0.9));
}

.card-copy {
  position: relative;
  z-index: 1;
  padding: 1rem;
}

.card-copy p {
  margin: 0 0 0.4rem;
  color: var(--sepia-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-copy h3,
.placeholder-card h3 {
  margin-bottom: 0.65rem;
}

.placeholder-card {
  justify-content: space-between;
}

.placeholder-card::before {
  position: absolute;
  inset: auto -20% 10% 25%;
  height: 38%;
  content: "";
  border: 1px solid rgba(192, 163, 122, 0.2);
  border-radius: 999px;
  transform: rotate(-18deg);
}

.brand-section {
  position: relative;
}

.brand-section::before {
  position: absolute;
  inset: 4rem auto auto 50%;
  width: min(40vw, 26rem);
  height: min(40vw, 26rem);
  pointer-events: none;
  content: "";
  border: 1px solid rgba(192, 163, 122, 0.13);
  border-radius: 50%;
  transform: translateX(-50%);
}

.brand-contact {
  max-width: 43rem;
  margin: clamp(1.75rem, 4vw, 2.75rem) 0 0;
  color: var(--paper-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}

.brand-contact a {
  color: var(--paper);
  font-weight: 800;
  text-decoration-color: var(--sepia-light);
  text-underline-offset: 0.22em;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) 0;
  border-top: 1px solid var(--line);
}

.site-footer h2 {
  max-width: none;
}

.site-footer .social-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: stretch;
  width: min(100%, 44rem);
  gap: 0.75rem;
}

.site-footer .social-links a {
  justify-content: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 940px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    height: auto;
    max-width: none;
    min-height: auto;
  }

  .hero-media {
    width: min(100%, 21rem);
  }

  .brand-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .brand-grid article {
    min-height: 13rem;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-section,
  .content-section,
  .site-footer {
    width: min(100% - 1.25rem, var(--max-width));
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.85rem, 12vw, 4.2rem);
  }

  h1 span:nth-child(2) {
    padding-left: 0.12em;
  }

  h1 span:nth-child(3) {
    padding-left: 0.24em;
  }

  h1 span:nth-child(4) {
    padding-left: 0.36em;
  }

  h1 span:nth-child(5) {
    padding-left: 0.48em;
  }

  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero-intro {
    width: auto;
    max-width: calc(100% - 2.2rem);
    margin-left: 2.2rem;
  }

  .carousel-controls {
    justify-content: flex-start;
  }

  .reel-carousel {
    grid-auto-columns: minmax(15rem, 80vw);
  }

  .social-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
