:root {
  --ink: #161616;
  --muted: #68645d;
  --paper: #f7f4ef;
  --stone: #e5ded3;
  --rose: #b85d4d;
  --gold: #d7aa54;
  --white: #fffaf3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0, 0, 0, .62), rgba(0, 0, 0, 0));
}

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

.brand {
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .7);
  background: rgba(255, 250, 243, .14);
  font-family: Georgia, serif;
  font-size: 22px;
}

nav a {
  font-size: 14px;
  font-weight: 700;
  opacity: .92;
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .7);
}

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

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(12, 18, 16, .86), rgba(12, 18, 16, .35) 48%, rgba(12, 18, 16, .08)),
    linear-gradient(0deg, rgba(12, 18, 16, .68), rgba(12, 18, 16, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 19vh clamp(20px, 6vw, 84px) 170px;
}

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

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

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 10vw, 130px);
  line-height: .84;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 68px);
  line-height: .94;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.1;
}

.hero-copy {
  max-width: 590px;
  color: rgba(255, 250, 243, .88);
  font-size: clamp(18px, 2vw, 24px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  font-weight: 900;
}

.button.primary {
  background: var(--rose);
  color: var(--white);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, .72);
  color: var(--white);
}

.hero-stats {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: 34px;
  left: clamp(20px, 5vw, 70px);
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .3);
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  background: rgba(22, 22, 22, .18);
  backdrop-filter: blur(10px);
}

.hero-stats div {
  padding: 18px clamp(12px, 3vw, 28px);
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong,
.mini-card strong {
  display: block;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1;
}

.hero-stats span,
.mini-card span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 250, 243, .72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro,
.details,
.rules {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 6vw, 86px);
  padding: clamp(70px, 10vw, 128px) clamp(20px, 6vw, 84px);
}

.intro p:last-child,
.details-copy p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  background: var(--white);
}

.feature-strip article {
  min-height: 230px;
  padding: 34px;
  border-right: 1px solid var(--stone);
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-strip span {
  display: block;
  margin-bottom: 36px;
  color: var(--rose);
  font-weight: 900;
}

.feature-strip p,
.rules li,
footer {
  color: var(--muted);
}

.gallery {
  padding: clamp(70px, 10vw, 120px) clamp(20px, 6vw, 84px);
  background: #1e2823;
  color: var(--white);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(240px, 25vw);
  gap: 12px;
}

figure {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  background: #111;
}

figure.wide {
  grid-column: span 2;
}

figure.tall {
  grid-row: span 2;
}

figure img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

figure:hover img {
  transform: scale(1.035);
}

figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  background: rgba(22, 22, 22, .72);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.details {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(247, 244, 239, 1), rgba(247, 244, 239, .78)),
    url("https://a0.muscache.com/im/pictures/miso/Hosting-650178962838187666/original/b17d2543-4032-411c-8300-c3f1ae46f110.jpeg?im_w=1200") center / cover;
}

.detail-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mini-card {
  min-height: 150px;
  padding: 24px;
  background: rgba(255, 250, 243, .9);
  border: 1px solid rgba(229, 222, 211, .8);
}

.mini-card span {
  color: var(--muted);
}

.rules {
  background: var(--white);
}

.rules ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rules li {
  padding: 18px 0;
  border-bottom: 1px solid var(--stone);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
}

.closing {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: end start;
  overflow: hidden;
  padding: clamp(32px, 6vw, 84px);
  color: var(--white);
}

.closing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 18, 16, .85), rgba(12, 18, 16, .18));
}

.closing img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.closing div {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.closing p:not(.eyebrow) {
  color: rgba(255, 250, 243, .8);
  font-size: 20px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 84px);
  background: var(--ink);
  color: rgba(255, 250, 243, .72);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    gap: 16px;
  }

  nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding-top: 150px;
  }

  .hero-stats,
  .intro,
  .details,
  .rules,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .feature-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

  .feature-strip article {
    min-height: auto;
    border-bottom-color: var(--stone);
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 330px;
  }

  figure.wide,
  figure.tall {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero-content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-stats {
    right: 18px;
    left: 18px;
  }

  .hero-stats strong {
    font-size: 22px;
  }

  .detail-panel {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
  }
}
