@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --rose1: #e8c9ad;
  --rose2: #c4916e;
  --rose3: #8a5a3d;
  --bg: #000;
  --panel: #120f0d;
  --text: #e8ded7;
  --muted: #a8998e;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

.wrap { max-width: 900px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

a { color: var(--rose2); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,0.9);
  border-bottom: 1px solid #2a221c;
  backdrop-filter: blur(6px);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
}
.logo-wordmark-header { height: 84px; width: auto; }
@media (max-width: 480px) { .logo-wordmark-header { height: 26px; } }
.btn-call-nav { padding: 10px 18px; font-size: 13px; }

/* Hero */
.hero {
  text-align: center;
  padding: 70px 20px 60px;
  background: radial-gradient(circle at 50% 0%, rgba(196,145,110,0.10) 0%, transparent 60%);
}
.logo-hero {
  width: 140px;
  border-radius: 14px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  background: linear-gradient(180deg, var(--rose1), var(--rose2) 60%, var(--rose3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.hero-sub {
  color: var(--muted);
  font-size: 16px;
  letter-spacing: 0.03em;
  margin-bottom: 34px;
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-call {
  display: inline-block;
  background: linear-gradient(180deg, var(--rose1), var(--rose2));
  color: #1a1108;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,145,110,0.25); }

.btn-outline {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--rose2);
  color: var(--rose1);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: background 0.2s ease;
}
.btn-outline:hover { background: rgba(196,145,110,0.1); }

/* About */
.about { padding: 60px 20px; border-top: 1px solid #2a221c; text-align: center; }
.about h2 { font-size: 30px; margin-bottom: 18px; color: var(--rose1); }
.about p { color: var(--muted); max-width: 640px; margin: 0 auto 28px; }

/* Booking */
.booking { padding: 60px 20px 90px; border-top: 1px solid #2a221c; }
.booking h2 { text-align: center; font-size: 30px; color: var(--rose1); margin-bottom: 8px; }
.booking-sub { text-align: center; color: var(--muted); margin-bottom: 36px; }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 720px) {
  .booking-grid { grid-template-columns: 1fr; }
}

.calendar-panel, .slots-panel {
  background: var(--panel);
  border: 1px solid #2a221c;
  border-radius: 14px;
  padding: 20px;
}

.cal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  color: var(--rose1);
  font-weight: 500;
}
.cal-nav button {
  background: none;
  border: 1px solid #3a2f27;
  color: var(--rose1);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
  font-size: 13px;
}
.cal-grid .dow { color: var(--muted); font-size: 11px; padding: 4px 0; }
.cal-grid .day {
  padding: 8px 0;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text);
}
.cal-grid .day:hover { background: rgba(196,145,110,0.15); }
.cal-grid .day.disabled { color: #3a332d; cursor: default; pointer-events: none; }
.cal-grid .day.selected { background: var(--rose2); color: #1a1108; font-weight: 600; }
.cal-grid .day.empty { visibility: hidden; }

.slots-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.slot-btn {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #3a2f27;
  background: none;
  color: var(--rose1);
  cursor: pointer;
  font-size: 13px;
}
.slot-btn:hover, .slot-btn.selected { background: var(--rose2); color: #1a1108; border-color: var(--rose2); }
.no-slots { color: var(--muted); font-size: 14px; }

.booking-form {
  margin-top: 30px;
  background: var(--panel);
  border: 1px solid #2a221c;
  border-radius: 14px;
  padding: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.booking-form label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}
.booking-form input, .booking-form textarea, .booking-form select {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  background: #0a0806;
  border: 1px solid #3a2f27;
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
}
.selected-summary { color: var(--rose1); margin-bottom: 16px; font-size: 14px; }
.form-status { margin-top: 12px; font-size: 14px; }
.form-status.success { color: #8fd19e; }
.form-status.error { color: #e08a8a; }

/* Footer */
.site-footer {
  text-align: center;
  padding: 50px 20px;
  border-top: 1px solid #2a221c;
  color: var(--muted);
  font-size: 13px;
}
.site-footer .btn-call { margin-bottom: 16px; }
.site-footer p { margin-top: 8px; }
.copyright { color: #4a413a; margin-top: 20px; letter-spacing: 0.08em; text-transform: uppercase; font-size: 11px; }
