:root {
  --ink: #141414;
  --paper: #f6f2ec;
  --panel: #ffffff;
  --muted: #6b625c;
  --line: #d8d0c7;
  --accent: #8f1f28;
  --gold: #c6a35b;
  --night: #080808;
}

* {
  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%;
}

a {
  color: inherit;
}

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

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

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .58) 48%, rgba(0, 0, 0, .18));
}

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

.nav a {
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 750;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(840px, 94vw);
  padding: clamp(4rem, 12vh, 8rem) clamp(1rem, 4vw, 4rem) 6rem;
}

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

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.1rem, 9vw, 8rem);
  line-height: .9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: .98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: .75rem;
  font-size: 1.18rem;
}

.lead {
  max-width: 670px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.1rem, 2vw, 1.48rem);
  line-height: 1.45;
}

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

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

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

.button--light {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}

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

.intro,
.tour,
.strategy,
.availability,
.media-proof,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.intro p,
.tour p,
.availability p,
.media-proof p,
.contact p,
.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.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: 128px;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .45);
}

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

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

.band {
  background: #171412;
  color: white;
}

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

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

.reasons article {
  min-height: 220px;
  padding: 1.25rem;
  background: #211d1a;
}

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

.section-head {
  width: min(880px, 100%);
}

.availability {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.quick-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.4rem;
}

.deposit-panel {
  display: grid;
  gap: .7rem;
}

.deposit-panel a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .25rem 1rem;
  align-items: end;
  padding: 1rem;
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: 4px;
  background: #faf9f7;
  text-decoration: none;
}

.deposit-panel span {
  font-weight: 850;
}

.deposit-panel strong {
  grid-row: span 2;
  color: var(--accent);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1;
}

.deposit-panel small {
  color: var(--muted);
  font-weight: 750;
}

.deposit-panel p {
  margin: .5rem 0 0;
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  font-size: .92rem;
}

.package {
  min-height: 430px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: var(--panel);
}

.package--featured {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 2px var(--accent);
}

.package span {
  color: var(--gold);
  font-weight: 900;
}

.package strong {
  display: block;
  margin: 1rem 0;
  color: var(--accent);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.package p,
.package li,
.strategy li {
  color: var(--muted);
  line-height: 1.6;
}

.package ul {
  padding-left: 1.1rem;
}

.package__cta {
  display: inline-flex;
  margin-top: .8rem;
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: .72rem .85rem;
  color: white;
  background: var(--accent);
  text-decoration: none;
  font-weight: 850;
}

.strategy {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strategy ol {
  margin: 0;
  padding-left: 1.2rem;
}

.strategy li + li {
  margin-top: 1rem;
}

.tour {
  border-bottom: 1px solid var(--line);
}

.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;
}

.media-proof {
  background: #fff;
}

.media-proof video {
  width: 100%;
  max-height: 680px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #000;
}

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

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

.contact {
  background: #171412;
  color: white;
}

.contact h2 {
  color: white;
}

.contact p {
  color: rgba(255, 255, 255, .74);
}

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

form {
  display: grid;
  gap: .85rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
}

label {
  display: grid;
  gap: .35rem;
  color: rgba(255, 255, 255, .78);
  font-size: .92rem;
  font-weight: 760;
}

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

textarea {
  resize: vertical;
}

.form-actions {
  margin-top: 0;
}

.form-status {
  margin: 0;
  color: rgba(255, 255, 255, .68) !important;
  font-size: .9rem !important;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem clamp(1rem, 4vw, 4rem);
  color: rgba(255, 255, 255, .78);
  background: #080808;
  font-size: .92rem;
}

.footer strong {
  color: white;
}

.footer a {
  color: var(--gold);
  font-weight: 800;
}

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

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

  .nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero__content {
    padding-top: 3rem;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5.6rem);
  }

  .intro,
  .tour,
  .strategy,
  .availability,
  .media-proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .metrics,
  .reasons,
  .package-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .metrics div,
  .package {
    min-height: auto;
  }

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

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

  .deposit-panel strong {
    grid-row: auto;
  }
}
