.hero {
  position: relative;
  min-height: calc(100vh - 30px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #19241d;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(28, 40, 31, 0.15), rgba(28, 40, 31, 0)),
    url("https://images.unsplash.com/photo-1551632811-561732d1e306?auto=format&fit=crop&w=2200&q=88") center 58%/cover;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 28, 21, 0.72) 0%, rgba(18, 28, 21, 0.22) 55%, rgba(18, 28, 21, 0.12)), linear-gradient(0deg, rgba(18, 28, 21, 0.48), transparent 45%);
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.04);
}

.hero-orbit--one {
  top: 12%;
  right: 8%;
  width: 180px;
  height: 180px;
}

.hero-orbit--two {
  right: 18%;
  bottom: 18%;
  width: 84px;
  height: 84px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 0 4vw 8vh;
}

.eyebrow {
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 500 10px "Sora", sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.hero h1 {
  margin: 0;
  font: 500 clamp(64px, 9.2vw, 142px) / 0.86 "Sora", sans-serif;
  letter-spacing: -0.075em;
}

.hero-lead {
  max-width: 470px;
  margin: 28px 0;
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  align-items: center;
}

.hero-link,
.closing a {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  font: 500 12px "Sora", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-icon {
  font-size: 13px;
}

.text-arrow {
  display: inline-block;
  font: 500 18px/1 "Sora", sans-serif;
  letter-spacing: 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 1;
  right: 4vw;
  bottom: 8vh;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.channels {
  padding: 120px 4vw 130px;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: end;
  gap: 4vw;
  margin-bottom: 62px;
}

.section-head .eyebrow {
  color: var(--forest);
}

.section-head h2,
.about h2,
.closing h2 {
  margin: 0;
  font: 500 clamp(42px, 5vw, 76px) / 1 "Sora", sans-serif;
  letter-spacing: -0.06em;
}

.section-head > p:last-child {
  margin: 0;
  max-width: 390px;
  color: #625e57;
  font-size: 14px;
  line-height: 1.8;
}

.channel-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  border-top: 1px solid var(--stone);
  border-left: 1px solid var(--stone);
}

.channel-card {
  min-height: 280px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  transition: background 0.25s, color 0.25s;
}

.channel-card > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.channel-card.featured {
  background: var(--forest);
  color: #fff;
}

.channel-card:hover {
  background: var(--rust);
  color: #fff;
}

.channel-card small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.7;
}

.channel-icon {
  font-size: 26px;
}

.channel-icon--play::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.channel-card h3 {
  margin: 0;
  font: 500 clamp(30px, 3.2vw, 48px) "Sora", sans-serif;
  letter-spacing: -0.06em;
}

.channel-card .text-arrow {
  align-self: flex-end;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: var(--forest);
  color: #fff;
}

.gallery-mosaic {
  padding: 0 4vw 130px;
  background: var(--paper);
}

.gallery-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
}

.gallery-copy {
  padding: 46px 3vw 46px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--stone);
}

.gallery-copy h2 {
  margin: 0;
  font: 500 clamp(42px, 5vw, 76px) / 1 "Sora", sans-serif;
  letter-spacing: -0.06em;
}

.gallery-copy > p:last-child {
  margin: 26px 0 0;
  max-width: 360px;
  color: #625e57;
  font-size: 14px;
  line-height: 1.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 270px;
  gap: 4px;
  grid-auto-flow: dense;
  background: var(--stone);
}

.gallery-tile {
  margin: 0;
  overflow: hidden;
  background: #ddd6c8;
  min-height: 0;
  position: relative;
}

.gallery-tile img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 35, 35, 0.04), rgba(35, 35, 35, 0));
  pointer-events: none;
}

.gallery-tile:hover img {
  transform: scale(1.03);
}

.gallery-tile--1 {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-tile--2 {
  grid-column: span 3;
}

.gallery-tile--3 {
  grid-column: span 3;
}

.gallery-tile--4 {
  grid-column: span 6;
}

.gallery-tile--5 {
  grid-column: span 4;
}

.gallery-tile--6 {
  grid-column: span 4;
}

.gallery-tile--7 {
  grid-column: span 4;
}

.gallery-tile--8 {
  grid-column: span 12;
}

.gallery-load-more {
  display: none;
}

.about-visual {
  min-height: 680px;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(rgba(30, 42, 33, 0.28), rgba(30, 42, 33, 0.45)),
    url("https://images.unsplash.com/photo-1501555088652-021faa106b9b?auto=format&fit=crop&w=1400&q=85") center/cover;
  font: 500 11px "Sora", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-visual i {
  flex: 1;
  width: 1px;
  margin: 22px 0 22px 5px;
  background: rgba(255, 255, 255, 0.6);
}

.about-copy {
  align-self: center;
  max-width: 700px;
  padding: 90px 9vw;
}

.about-copy .eyebrow {
  color: var(--stone);
}

.about-lead {
  margin: 38px 0 22px;
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
}

.about-copy > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.9;
}

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.principles span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.closing {
  padding: 150px 4vw;
  text-align: center;
  background: var(--stone);
}

.closing .eyebrow {
  color: var(--forest);
}

.closing h2 {
  font-size: clamp(58px, 9vw, 136px);
}

.closing a {
  color: var(--forest);
  border-color: rgba(63, 84, 68, 0.2);
  background: rgba(255, 255, 255, 0.45);
}

@media (max-width: 800px) {
  .hero {
    min-height: 760px;
  }

  .hero-copy {
    padding: 0 20px 70px;
  }

  .hero-orbit {
    display: none;
  }

  .hero h1 {
    font-size: 68px;
  }

  .scroll-cue {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .channels {
    padding: 90px 20px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-head h2 {
    font-size: 48px;
  }

  .channel-grid {
    grid-template-columns: 1fr;
  }

  .channel-card {
    min-height: 210px;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic {
    padding: 0 20px 92px;
  }

  .gallery-shell {
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--stone);
  }

  .gallery-copy {
    padding: 40px 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--stone);
  }

  .gallery-copy h2 {
    font-size: 48px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-tile,
  .gallery-tile--1,
  .gallery-tile--2,
  .gallery-tile--3,
  .gallery-tile--4,
  .gallery-tile--5,
  .gallery-tile--6,
  .gallery-tile--7,
  .gallery-tile--8 {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }

  .gallery-tile--mobile-hidden {
    display: none;
  }

  .gallery-load-more {
    width: 100%;
    min-height: 62px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-top: 1px solid var(--stone);
    background: transparent;
    color: var(--ink);
    font: 600 11px "Sora", sans-serif;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .gallery-load-more[hidden] {
    display: none;
  }

  .gallery-load-more .text-arrow {
    font-size: 19px;
    letter-spacing: 0;
    transition: transform 0.25s ease;
  }

  .gallery-load-more:hover .text-arrow,
  .gallery-load-more:focus-visible .text-arrow {
    transform: translateX(5px);
  }

  .about-visual {
    min-height: 460px;
  }

  .about-copy {
    padding: 80px 20px;
  }

  .closing {
    padding: 110px 20px;
  }
}
