:root {
  --bg: #0b1310;
  --bg-card: #13211b;
  --bg-soft: #101b16;
  --text: #f5f1e7;
  --muted: #d6ccb8;
  --accent: #c7a56a;
  --line: rgba(255, 255, 255, 0.14);
  --radius: 18px;
  --shadow: 0 14px 40px rgba(2, 8, 5, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 10%, #12241b 0%, #0b1310 58%);
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  line-height: 1.12;
  font-family: 'Playfair Display', Georgia, serif;
}

p {
  margin: 0;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 13, 10, 0.88), rgba(7, 13, 10, 0.45)),
    url('https://images.unsplash.com/photo-1611419010196-a360856fc42f?auto=format&fit=crop&w=2000&q=80')
      center / cover no-repeat;
  z-index: -1;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  background: rgba(11, 19, 16, 0.55);
  backdrop-filter: blur(10px);
}

.logo {
  text-decoration: none;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-right: auto;
}

.logo img {
  display: block;
  width: auto;
  height: clamp(2.6rem, 5.2vw, 3.6rem);
  max-width: min(48vw, 260px);
  object-fit: contain;
}

.logo-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  color: var(--accent);
}

.logo-text {
  font-size: 0.96rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
}

.menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.menu a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 1.4rem;
}

.hero-content {
  padding: 5rem 0 6rem;
  max-width: 780px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-size: 0.72rem;
  margin-bottom: 0.9rem;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

h1 span {
  color: var(--accent);
}

.lead {
  margin-top: 1rem;
  color: #f0e8da;
  max-width: 66ch;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.76rem 1.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: #231707;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(199, 165, 106, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.32);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
}

.scroll-cue {
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
  padding-bottom: 1.3rem;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: linear-gradient(180deg, #0d1713, #111f19);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-copy p:last-child {
  color: var(--muted);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.metrics article,
.experience-grid article,
.booking-panel,
.card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metrics article {
  padding: 1.1rem;
}

.metrics h3 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.cards {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 1rem;
}

.card-body p {
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.card-body span {
  color: var(--accent);
  font-weight: 600;
}

.experience-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.experience-grid article {
  padding: 1.1rem;
}

.experience-grid p,
.split p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

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

.list li {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 0.6rem 0;
}

.image-panel {
  min-height: 360px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.1)),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1200&q=80')
      center / cover no-repeat;
  box-shadow: var(--shadow);
}

.image-panel-wellness {
  background:
    linear-gradient(140deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.06)),
    url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1200&q=80')
      center / cover no-repeat;
}

.booking-panel {
  padding: 1.4rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.4rem;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: end;
}

.booking-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
}

input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0.65rem;
  font: inherit;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.booking-form .btn,
.form-message {
  grid-column: 1 / -1;
}

.form-message {
  min-height: 1.2em;
  font-size: 0.88rem;
  color: var(--accent);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer a:hover {
  color: var(--text);
}

.legal-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: rgba(245, 241, 231, 0.7);
  font-size: 0.78rem;
}

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu,
  .nav .btn-outline {
    display: none;
  }

  .nav.menu-open {
    flex-wrap: wrap;
    border-radius: 18px;
  }

  .nav.menu-open .menu {
    display: grid;
    width: 100%;
    gap: 0.65rem;
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--line);
  }

  .about,
  .cards,
  .experience-grid,
  .split,
  .booking-panel,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 3.5rem;
  }
}
