:root {
  --bg: #050505;
  --panel: #121212;
  --gold: #d4af37;
  --text: #f7f1e8;
  --muted: #bdb5aa;
  --line: rgba(255,255,255,.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(212,175,55,.14), transparent 32rem),
    radial-gradient(circle at top right, rgba(18,56,45,.45), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5,5,5,.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #050505;
  font-size: 24px;
  font-weight: 900;
}

.nav {
  display: flex;
  gap: 20px;
  color: #ddd;
  font-size: 14px;
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
}

.button.gold {
  background: var(--gold);
  color: #050505;
}

.button.dark {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
}

.hero {
  min-height: 86vh;
  padding: 9vw 7vw;
  display: grid;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 900;
}

h1 {
  font-size: clamp(52px, 9vw, 118px);
  line-height: .88;
  letter-spacing: -.08em;
  margin: 12px 0 24px;
  max-width: 1100px;
}

h2 {
  font-size: clamp(34px, 5vw, 70px);
  line-height: .95;
  letter-spacing: -.055em;
  margin: 0 0 18px;
}

.lead {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.6;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.section {
  padding: 82px 7vw;
}

.section-head {
  max-width: 900px;
  margin-bottom: 36px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, #111, #1a1a1a);
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  padding: 32px 7vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 850px) {
  .nav {
    display: none;
  }

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

  h1 {
    font-size: 54px;
  }
}
.booking-form {
  max-width: 850px;
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  background: rgba(0,0,0,.3);
  color: white;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 16px;
  font-size: 16px;
}

textarea {
  min-height: 180px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(212,175,55,.75);
  box-shadow: 0 0 0 4px rgba(212,175,55,.08);
}

@media (max-width: 850px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.card {
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.45);
  background: linear-gradient(145deg, #151515, #211b0d);
}

.button {
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  opacity: .92;
  box-shadow: 0 14px 40px rgba(212,175,55,.16);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.2), transparent 70%);
  pointer-events: none;
}

.section:nth-of-type(even) {
  background: rgba(255,255,255,.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card h3 {
  font-size: 24px;
  line-height: 1.15;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
