:root {
  --bg: #050505;
  --bg-alt: #0b0b0b;
  --panel: rgba(15, 15, 15, 0.94);
  --panel-soft: rgba(255, 255, 255, 0.03);
  --text: #f7f3ea;
  --muted: #cbbd9b;
  --soft: #a99b7a;
  --line: rgba(214, 183, 104, 0.18);
  --line-strong: rgba(214, 183, 104, 0.38);
  --gold: #d6b768;
  --gold-soft: #f1dca2;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  --glow: 0 0 0 1px rgba(214, 183, 104, 0.08), 0 18px 40px rgba(0, 0, 0, 0.32);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(214, 183, 104, 0.10), transparent 24%),
    linear-gradient(180deg, #090909 0%, #040404 100%);
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a, button { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
.site-shell { width: min(calc(100% - 2rem), var(--max-width)); margin: 0 auto; }

.header {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
}
.brand img { width: clamp(170px, 22vw, 260px); }
.nav {
  display: flex; align-items: center; gap: 1rem; padding: 0.9rem 1rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: rgba(8, 8, 8, 0.84);
  box-shadow: var(--glow);
}
.nav a, .nav button {
  color: var(--soft); font-weight: 600; background: transparent; border: 0;
}
.nav a:hover, .nav a.is-active, .nav button:hover { color: var(--text); }
.nav-cta {
  padding: 0.92rem 1.28rem; border-radius: 999px; color: #0a0a0a !important;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 12px 30px rgba(214, 183, 104, 0.18);
}
.menu-toggle {
  display: none; border: 1px solid var(--line); background: rgba(8, 8, 8, 0.9);
  color: var(--text); border-radius: 999px; padding: 0.8rem 1rem;
}

.hero, .section, .page-hero { margin-bottom: 2rem; }
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.4rem; align-items: center;
  padding: 2rem 0 3rem;
}
.hero-copy, .page-hero { padding: 1rem 0; }
.eyebrow, .section-tag {
  margin: 0 0 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 0.78rem; font-weight: 700; color: var(--gold);
}
.hero-heading {
  margin: 0.5rem 0 0.9rem; color: var(--gold-soft); font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 500;
}
.hero-tagline { margin: -0.1rem 0 1rem; color: var(--text); font-size: 1.15rem; font-weight: 700; }
h1,h2,h3 { margin: 0 0 0.9rem; line-height: 1.05; }
h1,h2 { font-family: "Playfair Display", serif; }
h1 { font-size: clamp(3rem, 5vw, 5.3rem); }
h2 { font-size: clamp(2rem, 4vw, 3.05rem); }
h3 { font-size: 1.24rem; }
p, li { color: #ddd5c5; line-height: 1.72; font-size: 1.02rem; }
.lead { font-size: 1.08rem; }
.narrow { max-width: 720px; }
.hero-actions, .contact-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.5rem 0; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 54px;
  padding: 0.98rem 1.45rem; border-radius: 999px; font-weight: 700;
  transition: transform .3s ease, opacity .2s ease, box-shadow .3s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border: 1px solid rgba(255,255,255,0.12); color: #0a0a0a; box-shadow: 0 10px 26px rgba(214,183,104,0.12);
}
.button-secondary {
  border: 1px solid var(--line); background: rgba(255,255,255,0.02); color: var(--text);
}
.card-glow, .glass, .soft-border {
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--panel); box-shadow: var(--shadow);
}
.card-glow, .soft-border { position: relative; overflow: hidden; }
.card-glow::after, .soft-border::after {
  content: ""; position: absolute; inset: auto -8% -18% auto; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(214, 183, 104, 0.18), transparent 70%); pointer-events: none;
}
.hero-art { padding: 1rem; background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)); }
.hero-art img, .featured-shot img, .bio-photo img { width: 100%; border-radius: calc(var(--radius-lg) - 8px); }
.hero-logo { background: #050505; }
.section { padding: 2.2rem 0; position: relative; }
.section::before {
  content: ""; position: absolute; top: 0; left: 0; width: 180px; height: 1px;
  background: linear-gradient(90deg, rgba(214,183,104,0.95), rgba(214,183,104,0));
}
.section-heading { margin-bottom: 1.4rem; }
.booking-layout { display: grid; gap: 1.4rem; }
.booking-group, .policy-box, .contact-card, .bio-copy, .faq-item, .stat-card, .quote-box { padding: 1.5rem; }
.booking-grid { display: grid; gap: 1.2rem; }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stacked-links { display: grid; gap: 0.8rem; width: 100%; }
.booking-card, .service-card {
  display: flex; flex-direction: column; gap: 1rem; justify-content: space-between;
  min-height: 100%; padding: 1.4rem;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.97), rgba(10, 10, 10, 0.96));
}
.service-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.service-header.stacked { align-items: flex-start; flex-direction: column; gap: 0.35rem; }
.service-header span, .service-meta { color: var(--gold); font-weight: 800; }
.split-section, .contact-layout, .bio-layout, .stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start;
}
.policy-box ul, .contact-list { margin: 0; padding-left: 0; list-style: none; }
.policy-box li, .contact-list li { position: relative; padding-left: 1.15rem; margin-bottom: .72rem; }
.policy-box li::before, .contact-list li::before {
  content: "•"; position: absolute; left: 0; color: var(--gold);
}
.cta-panel {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 2rem;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: radial-gradient(circle at center, rgba(214,183,104,0.08), transparent 55%),
              linear-gradient(135deg, rgba(255,255,255,0.02), rgba(214,183,104,0.05));
}
.footer {
  display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0 2.5rem; color: var(--soft);
  border-top: 1px solid rgba(255,255,255,0.08); margin-top: 1rem;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.microcopy { font-size: .92rem; color: var(--soft); }
.quote-box { border-left: 3px solid var(--gold); }
.stat-card { background: var(--panel-soft); border: 1px solid var(--line); border-radius: var(--radius-md); }
.stat-card strong { display: block; font-size: 1.8rem; color: var(--gold-soft); font-family: "Playfair Display", serif; margin-bottom: 0.4rem; }
.brand-story { max-width: 780px; }
.hero-points, .detail-list { display: grid; gap: 0.85rem; margin: 1.25rem 0 0; padding: 0; list-style: none; }
.hero-points li, .detail-list li { padding-left: 1.2rem; position: relative; }
.hero-points li::before, .detail-list li::before { content: "•"; position: absolute; left: 0; color: var(--gold); }
.booking-modal {
  position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 100;
}
.booking-modal.is-open { display: flex; }
.booking-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.72); backdrop-filter: blur(10px); }
.booking-window {
  position: relative; width: min(calc(100% - 1.5rem), 620px); padding: 1.7rem; z-index: 1;
  background: linear-gradient(180deg, rgba(18, 18, 18, .99), rgba(9, 9, 9, .99));
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem; width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.05); color: #fff;
}
.modal-links { display: grid; gap: .9rem; margin-top: 1.3rem; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { animation: floatFade 1.2s ease both; }

@keyframes floatFade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .button { transition: none; animation: none; }
}

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: calc(100% + .5rem); right: 0; width: min(320px, 100%);
    flex-direction: column; align-items: stretch; padding: 1rem; border-radius: 24px;
    opacity: 0; pointer-events: none; transform: translateY(-8px); transition: all .25s ease;
  }
  .nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .hero, .split-section, .contact-layout, .bio-layout, .footer, .cta-panel, .two-up, .three-up, .stats-grid {
    grid-template-columns: 1fr; flex-direction: column; align-items: flex-start;
  }
  .hero { padding-top: 1rem; }
  h1 { font-size: clamp(2.55rem, 12vw, 3.8rem); }
  .site-shell { width: min(calc(100% - 1.2rem), var(--max-width)); }
}
