:root {
  --bg: #08131d;
  --bg-2: #0f1f2f;
  --panel: rgba(10, 24, 38, 0.9);
  --panel-strong: #10263a;
  --text: #eef4fb;
  --muted: #b0c0d0;
  --gold: #d7b36a;
  --gold-2: #f0d7a0;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 179, 106, 0.18), transparent 32%),
    radial-gradient(circle at 80% 15%, rgba(102, 145, 198, 0.15), transparent 28%),
    linear-gradient(180deg, #061019 0%, var(--bg) 45%, #050b11 100%);
  min-height: 100vh;
}

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 36px;
}

.topbar,
.hero,
.metrics,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 0 28px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), #8c5b25);
  color: #111;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.brand-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-tag {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.topnav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  padding: 24px 0 18px;
}

.hero-copy,
.hero-card,
.service-card,
.booking-form,
.booking-summary,
.contact-card,
details {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 34, 50, 0.95), rgba(9, 20, 32, 0.95));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: 32px;
  padding: 42px;
}

.hero-card {
  border-radius: 32px;
  padding: 28px;
  align-self: center;
}

.eyebrow {
  color: var(--gold-2);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  max-width: 13ch;
}

h3 {
  font-size: 2rem;
}

.lede,
.hero-card p,
.service-card p,
.booking-summary p,
.contact-card a,
.faq-list p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.lede {
  max-width: 62ch;
  margin: 20px 0 0;
}

.hero-actions,
.summary-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), #f1d49b);
  color: #111;
}

.button.secondary {
  border-color: rgba(215, 179, 106, 0.35);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button.full {
  width: 100%;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(215, 179, 106, 0.18);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-2);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #38d67a;
  box-shadow: 0 0 0 6px rgba(56, 214, 122, 0.16);
}

.hero-card h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.live-panel {
  margin: 22px 0 24px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 14px;
}

.label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 28px;
}

.metric {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
}

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

.section {
  margin-top: 28px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.service-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.contact-card,
details {
  border-radius: 24px;
  padding: 24px;
}

.service-card h3,
.contact-card h3 {
  margin-bottom: 12px;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
}

.booking-form,
.booking-summary {
  border-radius: 28px;
  padding: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(215, 179, 106, 0.45);
  border-color: rgba(215, 179, 106, 0.65);
}

.summary-top {
  margin-bottom: 18px;
}

.summary-box {
  min-height: 240px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: pre-wrap;
  line-height: 1.7;
}

.contact-card a {
  word-break: break-word;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details p {
  margin-bottom: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 22px;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .hero,
  .booking-grid,
  .service-grid,
  .contact-grid,
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 18px;
  }

  .hero-copy,
  .hero-card,
  .booking-form,
  .booking-summary,
  .service-card,
  .contact-card,
  details {
    padding: 20px;
    border-radius: 22px;
  }

  .hero,
  .booking-grid,
  .service-grid,
  .contact-grid,
  .metrics,
  .form-row {
    grid-template-columns: 1fr;
  }

  .topnav {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  h1 {
    max-width: 100%;
  }
}
