:root {
  --bg: #0C0A09;
  --bg-warm: #1A1614;
  --fg: #FAF7F2;
  --fg-muted: #B8A99A;
  --accent: #C9956B;
  --accent-light: #E8C9A8;
  --accent-glow: rgba(201, 149, 107, 0.15);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, var(--accent-glow), transparent),
    radial-gradient(ellipse 50% 80% at 80% 20%, rgba(201, 149, 107, 0.06), transparent),
    var(--bg);
}

.hero-inner {
  max-width: 720px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(201, 149, 107, 0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero .lede {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-accent {
  position: absolute;
  top: 15%;
  right: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 149, 107, 0.08), transparent 70%);
  pointer-events: none;
}

/* ===== SERVICES ===== */
.services {
  padding: 6rem 2rem;
  background: var(--bg-warm);
}

.services-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(250, 247, 242, 0.03);
  border: 1px solid rgba(250, 247, 242, 0.06);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s ease;
}

.service-card:hover {
  border-color: rgba(201, 149, 107, 0.25);
}

.service-price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== WHY ===== */
.why {
  padding: 6rem 2rem;
  background: var(--bg);
}

.why-inner {
  max-width: 700px;
  margin: 0 auto;
}

.why-text h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: 3rem;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.why-point {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.why-number {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--accent);
  min-width: 2rem;
  padding-top: 0.2rem;
}

.why-point h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 0.4rem;
}

.why-point p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 60%, var(--accent-glow), transparent),
    var(--bg-warm);
}

.closing-inner {
  max-width: 600px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(250, 247, 242, 0.06);
  background: var(--bg);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--fg);
}

.footer-location {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  background: rgba(12, 10, 9, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(250, 247, 242, 0.04);
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-cta {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* ===== HERO ACTIONS ===== */
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.btn-hero {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  transition: background 0.2s ease, transform 0.15s ease;
  display: inline-block;
}

.btn-hero:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.btn-hero-ghost {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  border: 1px solid rgba(250, 247, 242, 0.12);
  transition: color 0.2s ease, border-color 0.2s ease;
  display: inline-block;
}

.btn-hero-ghost:hover {
  color: var(--fg);
  border-color: rgba(250, 247, 242, 0.3);
}

/* ===== SERVICES CTA ===== */
.services-cta {
  margin-top: 3rem;
  text-align: center;
}

.btn-services-book {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(201, 149, 107, 0.3);
  padding: 0.7rem 1.8rem;
  border-radius: 100px;
  display: inline-block;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn-services-book:hover {
  border-color: var(--accent);
  background: rgba(201, 149, 107, 0.08);
}

/* ===== BOOKING FORM ===== */
.booking {
  padding: 7rem 2rem;
  background: var(--bg);
  position: relative;
}

.booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, var(--accent-glow), transparent);
  pointer-events: none;
}

.booking-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.booking-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.booking-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.req {
  color: var(--accent);
}

.form-group input,
.form-group textarea {
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid rgba(250, 247, 242, 0.1);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(184, 169, 154, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(201, 149, 107, 0.5);
  background: rgba(250, 247, 242, 0.06);
}

.form-group input.input-error,
.form-group select.input-error {
  border-color: rgba(220, 80, 80, 0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid rgba(250, 247, 242, 0.1);
  border-radius: 8px;
  padding: 0.85rem 2.5rem 0.85rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.2s ease;
}

.select-wrap select:focus {
  border-color: rgba(201, 149, 107, 0.5);
}

.select-wrap select option {
  background: #1A1614;
  color: var(--fg);
}

.select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fg-muted);
  font-size: 0.65rem;
  pointer-events: none;
}

.field-error {
  font-size: 0.8rem;
  color: #e07070;
  display: block;
}

.field-error:empty {
  display: none;
}

.form-submit-row {
  margin-top: 0.5rem;
}

.btn-book {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  border: none;
  border-radius: 100px;
  padding: 1rem 2.8rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  display: inline-block;
}

.btn-book:hover:not(:disabled) {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.btn-book:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-feedback {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.form-feedback--success {
  background: rgba(80, 180, 120, 0.12);
  border: 1px solid rgba(80, 180, 120, 0.25);
  color: #7de0a8;
}

.form-feedback--error {
  background: rgba(220, 80, 80, 0.1);
  border: 1px solid rgba(220, 80, 80, 0.2);
  color: #e07070;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.25rem; }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero {
    min-height: 90vh;
    padding: 5rem 1.5rem 3rem;
  }

  .services { padding: 4rem 1.5rem; }
  .why { padding: 4rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
  .booking { padding: 5rem 1.5rem; }

  .hero-accent { display: none; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero, .btn-hero-ghost {
    width: 100%;
    text-align: center;
  }

  .form-row--two {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}