.page {
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 88% 4%, rgb(94 28 22 / 26%), transparent 32rem),
    radial-gradient(circle at 8% 57%, rgb(90 42 29 / 9%), transparent 40rem),
    #090909;
  color: #f2ede4;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page * {
  box-sizing: border-box;
}

.page a {
  color: inherit;
}

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

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

.shell {
  overflow: hidden;
}

.header,
.hero,
.channels,
.briefing,
.location,
.explore,
.closing,
.footer {
  width: min(100% - 48px, 1440px);
  margin-inline: auto;
}

.header {
  min-height: 108px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid #2d2927;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  color: #f2ede4;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.header nav a {
  position: relative;
  padding: 8px 0;
  color: #aaa39a;
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 160ms ease;
}

.header nav a:hover,
.header nav a:focus-visible,
.header nav a.active {
  color: #f2ede4;
}

.header nav a.active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #d96a58;
  content: "";
}

.signature {
  justify-self: end;
  margin-bottom: 0;
  color: #c6b6a8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-style: italic;
}

.hero {
  min-height: calc(100vh - 108px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: stretch;
  gap: clamp(44px, 6vw, 96px);
  padding: clamp(52px, 7vw, 96px) 0 72px;
  border-bottom: 1px solid #2d2927;
}

.heroCopy {
  align-self: center;
  padding-left: clamp(0px, 2vw, 28px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: #cc7566;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 42px;
  height: 1px;
  background: #934f43;
}

.page h1,
.page h2,
.page h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.page h1,
.page h2 {
  letter-spacing: -0.055em;
}

.page h1 {
  max-width: 760px;
  margin-bottom: 32px;
  font-size: clamp(4rem, 6.5vw, 7rem);
  line-height: 0.92;
}

.page h1 em {
  display: block;
  color: #c76959;
  font-weight: 400;
}

.heroIntro {
  max-width: 650px;
  margin-bottom: 34px;
  color: #cfc2b7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
  line-height: 1.7;
}

.heroActions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.primaryButton {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 24px;
  border: 1px solid #b54b3c;
  background: #b54b3c;
  color: #fff8ef;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease;
}

.primaryButton:hover,
.primaryButton:focus-visible {
  border-color: #d96a58;
  background: #d96a58;
}

.textLink {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0 6px;
  border-bottom: 1px solid #6c4038;
  color: #f2ede4;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}

.heroMeta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid #2d2927;
}

.heroMeta p {
  margin-bottom: 0;
}

.heroMeta strong,
.heroMeta span {
  display: block;
}

.heroMeta strong {
  margin-bottom: 8px;
  color: #e3d6c9;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.heroMeta span {
  color: #8f8982;
  font-size: 0.78rem;
  line-height: 1.6;
}

.heroVisual {
  position: relative;
  min-height: 650px;
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid #2d2927;
  background: #10100f;
}

.heroVisual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgb(4 4 4 / 84%));
  content: "";
  pointer-events: none;
}

.heroVisual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  transition: transform 700ms ease;
}

.heroVisual:hover img {
  transform: scale(1.015);
}

.heroVisual figcaption {
  position: absolute;
  z-index: 1;
  right: 32px;
  bottom: 28px;
  left: 32px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.heroVisual figcaption span {
  color: #cf796b;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.heroVisual figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 500;
}

.channels {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(600px, 1.28fr);
  gap: clamp(60px, 9vw, 150px);
  padding: 140px 0;
  border-bottom: 1px solid #2d2927;
}

.sectionIntro {
  align-self: start;
  position: sticky;
  top: 40px;
}

.sectionIntro h2,
.briefing h2,
.location h2,
.explore h2,
.closing h2 {
  margin-bottom: 34px;
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  line-height: 0.98;
}

.sectionIntro > p:last-child,
.briefingHeading > p:last-child,
.locationCopy > p {
  max-width: 580px;
  color: #aaa39a;
  font-size: 0.94rem;
  line-height: 1.85;
}

.channelGrid {
  display: grid;
  gap: 16px;
}

.channelCard {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3.4vw, 50px);
  border: 1px solid #2d2927;
  background: rgb(255 255 255 / 0.012);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.channelCard:hover,
.channelCard:focus-visible {
  border-color: #70433b;
  background: rgb(181 75 60 / 6%);
  transform: translateY(-2px);
}

.featuredCard {
  border-color: #633b34;
  background:
    radial-gradient(circle at 85% 10%, rgb(181 75 60 / 24%), transparent 22rem),
    linear-gradient(135deg, #16110f, #0d0c0b 66%);
}

.cardTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cardLabel,
.cardAction {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cardLabel {
  color: #c56a5a;
}

.arrow {
  color: #d96a58;
  font-size: 1.25rem;
}

.channelCard h3 {
  margin: 46px 0 16px;
  font-size: clamp(2.1rem, 3.4vw, 3.7rem);
  letter-spacing: -0.045em;
}

.channelCard p {
  max-width: 530px;
  margin-bottom: 40px;
  color: #aaa39a;
  font-size: 0.9rem;
  line-height: 1.75;
}

.cardAction {
  display: block;
  padding-top: 20px;
  border-top: 1px solid #352e2b;
  color: #d7cbc0;
  overflow-wrap: anywhere;
}

.briefing {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(70px, 11vw, 170px);
  padding: 140px 0;
  border-bottom: 1px solid #2d2927;
}

.briefingHeading {
  align-self: center;
}

.briefingList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.briefingList li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px;
  padding: 34px 0 38px;
  border-top: 1px solid #2d2927;
}

.briefingList li:last-child {
  border-bottom: 1px solid #2d2927;
}

.briefingList span {
  padding-top: 6px;
  color: #c66e5f;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.briefingList p {
  margin-bottom: 0;
  color: #d4c7bb;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  line-height: 1.55;
}

.location {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(70px, 12vw, 190px);
  margin-top: 28px;
  margin-bottom: 28px;
  padding: 110px clamp(34px, 6vw, 92px);
  border: 1px solid #54332d;
  background:
    radial-gradient(circle at 16% 18%, rgb(159 48 36 / 22%), transparent 29rem),
    linear-gradient(135deg, #15100e, #0d0c0b 64%);
}

.locationCopy {
  align-self: end;
}

.locationCopy > p {
  color: #d2c5b9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.7vw, 1.5rem);
  line-height: 1.65;
}

.locationMeta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid #4b302b;
}

.locationMeta p {
  margin-bottom: 0;
}

.locationMeta span,
.locationMeta strong {
  display: block;
}

.locationMeta span {
  margin-bottom: 8px;
  color: #a7675d;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.locationMeta strong {
  color: #e3d6c9;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
}

.explore {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(70px, 10vw, 160px);
  padding: 140px 0;
  border-bottom: 1px solid #2d2927;
}

.explore > div:first-child {
  align-self: center;
}

.exploreActions {
  display: grid;
  gap: 14px;
}

.exploreActions a {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 34px 38px;
  border: 1px solid #2d2927;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.exploreActions a:hover,
.exploreActions a:focus-visible {
  border-color: #6b4038;
  background: rgb(181 75 60 / 6%);
}

.exploreActions span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.5rem);
}

.exploreActions small {
  display: block;
  margin-bottom: 12px;
  color: #a65a4f;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.exploreActions strong {
  color: #d96a58;
  font-size: 1.4rem;
  font-weight: 400;
}

.closing {
  padding: 140px 0;
  text-align: center;
}

.closing .eyebrow {
  justify-content: center;
}

.closing h2 {
  max-width: 1000px;
  margin: 0 auto 52px;
}

.footer {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  border-top: 1px solid #2d2927;
  color: #aaa39a;
  font-size: 0.73rem;
}

.footer p {
  margin-bottom: 7px;
}

.footerBrand {
  color: #f2ede4;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footerMeta {
  display: flex;
  gap: 20px;
}

.footerMeta a {
  color: #b9afa5;
  text-decoration: none;
}

.footerMeta a:hover,
.footerMeta a:focus-visible {
  color: #f2ede4;
}

.copyright {
  justify-self: end;
}

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

  .signature {
    display: none;
  }

  .channels,
  .briefing,
  .explore {
    gap: 64px;
  }
}

@media (max-width: 860px) {
  .header,
  .hero,
  .channels,
  .briefing,
  .location,
  .explore,
  .closing,
  .footer {
    width: min(100% - 32px, 1440px);
  }

  .header {
    min-height: 92px;
  }

  .brand span {
    display: none;
  }

  .header nav {
    gap: 16px;
  }

  .header nav a {
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .hero,
  .channels,
  .briefing,
  .location,
  .explore {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .heroVisual {
    min-height: 72vh;
  }

  .channels,
  .briefing,
  .explore {
    padding: 100px 0;
  }

  .sectionIntro {
    position: static;
  }

  .location {
    gap: 54px;
    padding: 82px 50px;
  }

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

  .footerMeta {
    display: none;
  }
}

@media (max-width: 560px) {
  .header {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0 12px;
  }

  .brand {
    justify-self: start;
  }

  .header nav {
    width: 100%;
    justify-content: flex-start;
    gap: 20px;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .header nav::-webkit-scrollbar {
    display: none;
  }

  .page h1 {
    font-size: clamp(3.45rem, 17vw, 5.1rem);
  }

  .heroCopy {
    padding-left: 0;
  }

  .heroActions {
    align-items: stretch;
    flex-direction: column;
  }

  .primaryButton {
    width: 100%;
  }

  .textLink {
    align-self: flex-start;
  }

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

  .heroVisual {
    min-height: 600px;
  }

  .heroVisual figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .channels,
  .briefing,
  .explore,
  .closing {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .channelCard {
    min-height: 280px;
    padding: 28px;
  }

  .briefingList li {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 0;
  }

  .location {
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 68px 28px;
  }

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

  .exploreActions a {
    min-height: 150px;
    padding: 28px;
  }

  .footer {
    min-height: 170px;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 36px 0;
  }

  .copyright {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page *,
  .page *::before,
  .page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
