:root {
  --ink: #170d08;
  --paper: #fffaf4;
  --muted: #6f5e54;
  --line: #ded0c3;
  --red: #a9072d;
  --gold: #e5b655;
  --night: #080708;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .45) 44%, rgba(0, 0, 0, .12));
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  gap: 1.25rem;
  padding: 1.25rem clamp(1rem, 4vw, 4rem);
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: .95rem;
  opacity: .86;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, 92vw);
  padding: clamp(4rem, 13vh, 8rem) clamp(1rem, 4vw, 4rem) 7rem;
}

.eyebrow {
  margin: 0 0 .9rem;
  color: var(--gold);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.8rem, 10vw, 8.6rem);
  line-height: .84;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: .95;
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
}

.lead {
  max-width: 640px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.4;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.button,
button {
  border: 1px solid var(--red);
  border-radius: 4px;
  background: var(--red);
  color: white;
  padding: .95rem 1.15rem;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button--ghost {
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .08);
}

main > section {
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.intro p,
.split p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.metrics div {
  min-height: 130px;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics strong {
  display: block;
  color: var(--red);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: .55rem;
  color: var(--muted);
  font-size: .95rem;
}

.band {
  background: #1a100b;
  color: white;
}

.band h2 {
  max-width: 980px;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2rem;
  background: rgba(255, 255, 255, .2);
}

.reasons article {
  min-height: 230px;
  padding: 1.25rem;
  background: #24150f;
}

.reasons p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.tour {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.tour p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.tour__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}

.tour__facts span {
  min-height: 112px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: .9rem;
  color: var(--ink);
  background: white;
  font-weight: 850;
}

.split ul {
  padding-left: 1.1rem;
  color: var(--ink);
  line-height: 1.8;
}

.poster {
  width: 100%;
  border: 1px solid var(--line);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  padding-top: 0;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 560px);
  gap: clamp(2rem, 5vw, 5rem);
  background: #f4eadf;
}

.small {
  font-size: .95rem !important;
}

form {
  display: grid;
  gap: .9rem;
}

label {
  display: grid;
  gap: .35rem;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  color: var(--ink);
  padding: .85rem;
  font: inherit;
}

textarea {
  resize: vertical;
}

@media (max-width: 860px) {
  .hero {
    min-height: 88vh;
  }

  .hero__shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, .34), rgba(0, 0, 0, .78));
  }

  .hero > img {
    object-position: 60% center;
  }

  .nav {
    justify-content: center;
  }

  .hero__content {
    padding-top: 34vh;
  }

  .intro,
  .split,
  .tour,
  .contact,
  .reasons,
  .gallery {
    grid-template-columns: 1fr;
  }

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

  .gallery img {
    aspect-ratio: 16 / 11;
  }

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