:root {
  color-scheme: dark;
  --black: #050505;
  --ink: #0b0a08;
  --charcoal: #151411;
  --steel: #2a3134;
  --ivory: #f4efe3;
  --muted: rgba(244, 239, 227, 0.72);
  --faint: rgba(244, 239, 227, 0.12);
  --line: rgba(244, 239, 227, 0.2);
  --gold: #c9a85d;
  --red: #b42a22;
  --moss: #6f7b51;
  --cyan: #6ba6a8;
  --max: 1200px;
  --header-height: 86px;
  font-family:
    "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family:
    "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body::selection {
  background: var(--gold);
  color: var(--black);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: var(--header-height);
  left: 0;
  padding: 0 clamp(20px, 5vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.site-header::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

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

.brand-mark {
  align-items: center;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand-mark img,
.sigil img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 520;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(20px, 4vw, 46px);
}

.nav-links a,
.nav-action {
  color: rgba(244, 239, 227, 0.78);
  font-size: 0.9rem;
  font-weight: 430;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.nav-links a:hover,
.nav-action:hover {
  color: var(--ivory);
}

.nav-action {
  border: 1px solid var(--line);
  justify-self: end;
  min-width: 116px;
  padding: 12px 22px;
  text-align: center;
}

.nav-action:hover {
  background: rgba(244, 239, 227, 0.08);
  border-color: rgba(244, 239, 227, 0.44);
}

.hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.3) 36%, rgba(0, 0, 0, 0.02) 74%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.52)),
    url("assets/hero2.png") center right / cover no-repeat;
  display: grid;
  min-height: 92vh;
  padding: calc(var(--header-height) + 92px) clamp(20px, 5vw, 64px) 38px;
  position: relative;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(201, 168, 93, 0.28), transparent 28%, rgba(180, 42, 34, 0.18) 70%, transparent),
    linear-gradient(0deg, rgba(244, 239, 227, 0.13), transparent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-content {
  align-self: end;
  max-width: 700px;
  padding-bottom: 14vh;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.studio-panel h2 {
  font-family: "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
  margin: 0;
}

.hero h1 {
  font-size: 3.72rem;
  font-weight: 360;
  line-height: 1.06;
  max-width: 700px;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  color: rgba(244, 239, 227, 0.72);
  font-size: 1.08rem;
  font-weight: 360;
  line-height: 1.72;
  margin: 22px 0 0;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 520;
  justify-content: center;
  min-height: 46px;
  min-width: 150px;
  padding: 0 24px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: rgba(244, 239, 227, 0.92);
  color: var(--black);
}

.button-primary:hover {
  background: #ffffff;
}

.button-secondary {
  border-color: var(--line);
  color: rgba(244, 239, 227, 0.82);
}

.button-secondary:hover {
  background: rgba(244, 239, 227, 0.08);
  border-color: rgba(244, 239, 227, 0.42);
}

.hero-footer {
  align-items: end;
  align-self: end;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin-top: 0;
}

.hero-footer-summary {
  justify-content: flex-end;
}

.sigil {
  display: inline-flex;
  height: 34px;
  width: 34px;
}

.hero-footer p {
  color: rgba(244, 239, 227, 0.62);
  font-size: 0.88rem;
  margin: 0;
  max-width: 340px;
  text-align: right;
}

.network-strip {
  align-items: center;
  background: var(--ivory);
  color: var(--black);
  display: flex;
  gap: 22px;
  min-height: 74px;
  overflow: auto;
  padding: 0 clamp(20px, 5vw, 64px);
  scrollbar-width: none;
}

.network-strip::-webkit-scrollbar {
  display: none;
}

.network-strip span {
  border-left: 1px solid rgba(5, 5, 5, 0.22);
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 560;
  letter-spacing: 0;
  min-width: 160px;
  padding-left: 22px;
  text-transform: uppercase;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(74px, 9vw, 124px) clamp(20px, 5vw, 36px);
}

.intro {
  display: grid;
  gap: clamp(32px, 7vw, 96px);
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
}

.section-heading h2,
.studio-panel h2 {
  font-size: 5rem;
  font-weight: 380;
  line-height: 1.02;
}

.intro-copy {
  color: var(--muted);
  display: grid;
  gap: 18px;
  padding-top: 42px;
}

.intro-copy p {
  margin: 0;
}

.network {
  border-top: 1px solid var(--faint);
  max-width: none;
  overflow: hidden;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: 0;
}

.slider-heading {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: calc(var(--max) + 128px);
  padding-right: clamp(20px, 5vw, 64px);
}

.slider-heading h2 {
  font-family: "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 3rem;
  font-weight: 560;
  line-height: 1;
  margin: 0;
}

.slider-controls {
  display: flex;
  gap: 14px;
}

.slider-button {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(244, 239, 227, 0.32);
  border-radius: 50%;
  color: rgba(244, 239, 227, 0.82);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 1.55rem;
  height: 56px;
  justify-content: center;
  line-height: 1;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  width: 56px;
}

.slider-button:hover {
  background: rgba(244, 239, 227, 0.08);
  border-color: rgba(244, 239, 227, 0.56);
  color: var(--ivory);
  transform: translateY(-1px);
}

.channel-rail {
  display: grid;
  gap: 34px;
  grid-auto-columns: minmax(320px, 31vw);
  grid-auto-flow: column;
  margin-top: 46px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 clamp(20px, 5vw, 64px) 12px 0;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.channel-rail::-webkit-scrollbar {
  display: none;
}

.slider-card {
  aspect-ratio: 0.72;
  background: #111;
  border: 1px solid rgba(244, 239, 227, 0.12);
  border-radius: 8px;
  min-height: 500px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
}

.slider-card img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
  width: 100%;
}

.slider-card::after {
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.84)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.14), transparent);
  content: "";
  inset: 0;
  position: absolute;
}

.slider-card:hover img {
  transform: scale(1.035);
}

.slider-card-content {
  bottom: 0;
  left: 0;
  padding: 28px;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 1;
}

.slider-card-content h3 {
  font-family: "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 520;
  line-height: 1;
  margin: 0 0 12px;
}

.slider-card-content p {
  color: rgba(244, 239, 227, 0.74);
  font-size: 1.05rem;
  font-weight: 360;
  margin: 0;
}

.visit-button {
  align-items: center;
  background: rgba(244, 239, 227, 0.94);
  border-radius: 999px;
  color: var(--black);
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 560;
  justify-content: center;
  margin-top: 22px;
  min-height: 44px;
  min-width: 132px;
  padding: 0 22px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.visit-button:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.more-card {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(244, 239, 227, 0.12), rgba(244, 239, 227, 0.03)),
    #121212;
  display: flex;
  justify-content: center;
}

.more-card::after {
  display: none;
}

.more-card-inner {
  align-items: center;
  border: 1px solid rgba(244, 239, 227, 0.18);
  border-radius: 50%;
  display: flex;
  height: 210px;
  justify-content: center;
  width: 210px;
}

.more-card span {
  color: var(--ivory);
  font-family: "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 420;
  text-align: center;
}

.studio-band {
  background:
    linear-gradient(100deg, rgba(180, 42, 34, 0.95), rgba(72, 43, 28, 0.96) 48%, rgba(16, 18, 17, 0.98)),
    var(--red);
  display: grid;
  gap: clamp(34px, 8vw, 90px);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  padding: clamp(70px, 9vw, 116px) clamp(20px, 5vw, 64px);
}

.studio-panel {
  max-width: 760px;
}

.studio-panel .eyebrow {
  color: rgba(244, 239, 227, 0.8);
}

.studio-panel p:not(.eyebrow) {
  color: rgba(244, 239, 227, 0.74);
  font-size: 1.02rem;
  font-weight: 360;
  line-height: 1.76;
  margin: 26px 0 0;
  max-width: 720px;
}

.studio-metrics {
  align-content: end;
  display: grid;
  gap: 1px;
}

.studio-metrics div {
  align-items: baseline;
  background: rgba(5, 5, 5, 0.22);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 92px;
  padding: 24px;
}

.studio-metrics strong {
  font-size: 2.25rem;
  font-weight: 420;
  line-height: 1;
}

.studio-metrics span {
  color: rgba(244, 239, 227, 0.74);
  font-size: 0.92rem;
  font-weight: 720;
  text-align: right;
}

.workflow-diagram {
  align-items: stretch;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  margin-top: 46px;
}

.workflow-step {
  background:
    linear-gradient(145deg, rgba(244, 239, 227, 0.09), rgba(244, 239, 227, 0.025)),
    #12110f;
  border: 1px solid var(--faint);
  min-height: 164px;
  padding: 22px;
}

.workflow-step span {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 560;
  margin-bottom: 62px;
}

.workflow-step h3 {
  font-family: "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 420;
  line-height: 1.05;
  margin: 0;
}

.workflow-arrow {
  align-items: center;
  color: rgba(244, 239, 227, 0.46);
  display: flex;
  font-size: 1.6rem;
}

.workflow-note {
  border-left: 1px solid var(--gold);
  margin-top: 32px;
  max-width: 760px;
  padding-left: 22px;
}

.workflow-note p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
  margin: 0;
}

.closing-section {
  background: var(--ivory);
  color: var(--ivory);
  padding: clamp(74px, 9vw, 124px) clamp(20px, 5vw, 64px);
}

.closing-card {
  border-radius: 28px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.28);
  margin: 0 auto;
  max-width: 1320px;
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.closing-card img {
  display: block;
  filter: saturate(0.92) contrast(1.02);
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.closing-card::before {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background:
    linear-gradient(90deg, rgba(4, 7, 9, 0.72), rgba(4, 7, 9, 0.46) 48%, rgba(4, 7, 9, 0)),
    rgba(4, 7, 9, 0.18);
  content: "";
  inset: 0 auto 0 0;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 58%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 58%, transparent 100%);
  position: absolute;
  width: 74%;
  z-index: 1;
}

.closing-card::after {
  background:
    radial-gradient(circle at 72% 44%, rgba(0, 0, 0, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.06)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.46));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 2;
}

.closing-content {
  max-width: 800px;
  padding: clamp(46px, 7vw, 86px);
  position: relative;
  z-index: 3;
}

.quote-mark {
  color: rgba(244, 239, 227, 0.68);
  display: block;
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 0.7;
  margin-bottom: 54px;
}

.closing-content h2 {
  font-family: "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 3.05rem;
  font-weight: 360;
  line-height: 1.18;
  margin: 0;
  max-width: 760px;
}

.closing-line {
  background: rgba(244, 239, 227, 0.3);
  height: 1px;
  margin: 46px 0 28px;
  max-width: 900px;
}

.closing-content p {
  color: rgba(244, 239, 227, 0.72);
  font-size: 1.08rem;
  line-height: 1.72;
  margin: 0;
  max-width: 690px;
}

.site-footer {
  align-items: start;
  border-top: 1px solid var(--faint);
  display: grid;
  gap: 34px;
  grid-template-columns: 1.4fr auto 1fr;
  min-height: 220px;
  padding: 56px clamp(20px, 5vw, 64px);
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 16px;
}

.footer-brand p {
  font-size: 1.16rem;
  font-weight: 560;
  margin: 0;
}

.footer-brand span:not(.brand-mark),
.footer-contact span {
  color: var(--muted);
  display: block;
  font-size: 0.94rem;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 26px;
}

.footer-links a,
.footer-contact a {
  color: rgba(244, 239, 227, 0.78);
  font-size: 0.94rem;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--ivory);
}

.footer-contact {
  justify-self: end;
  text-align: right;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.36) 58%, rgba(0, 0, 0, 0.04)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6)),
      url("assets/hero2.png") 62% center / cover no-repeat;
  }

  .intro,
  .studio-band {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .section-heading h2,
  .studio-panel h2 {
    font-size: 4rem;
  }

  .intro-copy {
    padding-top: 0;
  }

  .slider-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .slider-heading h2 {
    font-size: 2.6rem;
  }

  .channel-rail {
    grid-auto-columns: minmax(300px, 46vw);
  }

  .workflow-diagram {
    grid-template-columns: 1fr;
  }

  .workflow-arrow {
    justify-content: center;
    transform: rotate(90deg);
  }

  .closing-card::before {
    width: 100%;
  }

  .closing-content h2 {
    font-size: 2.55rem;
    max-width: 640px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand-name {
    max-width: 138px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-action {
    min-width: 96px;
    padding-inline: 16px;
  }

  .hero {
    min-height: 88svh;
    padding: calc(var(--header-height) + 56px) 18px 28px;
  }

  .hero h1 {
    font-size: 2.1rem;
    overflow-wrap: anywhere;
  }

  .hero-content {
    padding-bottom: 8vh;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .section-heading h2,
  .studio-panel h2 {
    font-size: 2.8rem;
  }

  .slider-heading h2 {
    font-size: 2.15rem;
  }

  .slider-button {
    height: 48px;
    width: 48px;
  }

  .channel-rail {
    gap: 22px;
    grid-auto-columns: minmax(270px, 82vw);
    margin-top: 30px;
  }

  .slider-card {
    min-height: 430px;
  }

  .slider-card-content {
    padding: 24px;
  }

  .slider-card-content h3 {
    font-size: 1.65rem;
  }

  .studio-metrics strong {
    font-size: 1.8rem;
  }

  .hero-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 68px;
  }

  .hero-footer p {
    text-align: left;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .workflow-step {
    min-height: 132px;
  }

  .workflow-step span {
    margin-bottom: 44px;
  }

  .closing-section {
    padding-inline: 14px;
  }

  .closing-card {
    border-radius: 18px;
    min-height: 560px;
  }

  .closing-card::before {
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    background:
      linear-gradient(180deg, rgba(4, 7, 9, 0.78), rgba(4, 7, 9, 0.42) 72%, rgba(4, 7, 9, 0.12)),
      rgba(4, 7, 9, 0.2);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
  }

  .closing-content {
    padding: 42px 24px;
  }

  .quote-mark {
    font-size: 3.6rem;
    margin-bottom: 42px;
  }

  .closing-content h2 {
    font-size: 2rem;
  }

  .closing-line {
    margin: 34px 0 22px;
  }

  .closing-content p {
    font-size: 0.98rem;
  }

  .studio-metrics div {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .studio-metrics span {
    text-align: left;
  }

  .site-footer {
    gap: 14px;
    padding-block: 42px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px 22px;
  }
}
