/* Base styles */
:root {
  --bg: #080808;
  --bg-soft: #121212;
  --panel: #161616;
  --panel-alt: #1b1b1b;
  --text: #f2efe8;
  --muted: #b8ac92;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.14);
  --gold-border: rgba(212, 175, 55, 0.28);
  --white-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.4);
  --radius: 24px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.08), transparent 25%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(8, 8, 8, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.28), rgba(212, 175, 55, 0.08));
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.brand-text small {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}

.main-nav a {
  color: #e8dec9;
  font-size: 0.96rem;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

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

.button-primary {
  color: #0a0a0a;
  background: linear-gradient(135deg, #f1d271, var(--gold));
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.18);
}

.button-secondary,
.button-outline {
  border-color: var(--gold-border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

/* Hero */
.hero {
  padding: 4.8rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.06;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
  font-size: 1.8rem;
}

.lead,
.section-heading p,
.location-grid p,
.booking-copy p,
.info-card p,
.service-card p {
  color: #e2d7c3;
}

.hero-copy {
  padding: 2rem 0;
}

.hero-copy .lead {
  margin-top: 1.2rem;
  max-width: 60ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 1.4rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-points li {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--white-soft);
  background: rgba(255, 255, 255, 0.03);
  color: #eadfcb;
  font-size: 0.94rem;
}

.hero-card {
  position: relative;
}

.card-glow {
  position: absolute;
  inset: 8% 10% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.14);
  filter: blur(28px);
}

.info-card {
  position: relative;
  height: 100%;
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.96), rgba(16, 16, 16, 0.96));
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow);
}

.card-label {
  margin-top: 1.2rem;
  margin-bottom: 0.35rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

.instagram-link {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff1c4;
  font-weight: 600;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  padding-bottom: 0.2rem;
}

.instagram-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  background: rgba(212, 175, 55, 0.08);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card {
  padding: 1.5rem;
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid rgba(212, 175, 55, 0.12);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.service-card ul {
  padding-left: 1.15rem;
  margin: 1rem 0 0;
  color: #eadfcb;
}

.service-card li + li {
  margin-top: 0.35rem;
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: start;
}

.location-box,
.location-panel {
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.location-box {
  padding: 1.3rem 1.4rem;
  margin-top: 1.2rem;
}

.location-panel {
  padding: 0.7rem;
  display: grid;
  gap: 0.75rem;
}

.panel-item {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: var(--panel-alt);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.panel-item span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 0.25rem;
}

/* Booking */
.booking-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: center;
}

.instagram-cta {
  min-height: 180px;
  border-radius: 28px;
  border: 1px solid var(--gold-border);
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.05)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.2rem;
  padding: 1.6rem 1.8rem;
}

.instagram-cta-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
}

.instagram-cta-handle {
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.instagram-cta-arrow {
  margin-top: 0.45rem;
  font-size: 1.4rem;
  color: #fff1c4;
}

/* Footer */
.site-footer {
  padding: 1.6rem 0 2rem;
  color: var(--muted);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.4rem;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .services-grid,
  .location-grid,
  .booking-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .main-nav,
  .nav-cta {
    display: none;
  }

  .hero-copy,
  .info-card,
  .service-card,
  .instagram-cta,
  .location-box,
  .panel-item {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
