:root {
  --ink: #f5f2ea;
  --ink-soft: #b7b0a2;
  --ink-softer: #8b8577;
  --gold: #eac975;
  --gold-light: #f7e2ab;
  --gold-dark: #b8952c;
  --bg: #06070a;
  --surface: #0d0f14;
  --surface-raised: #14171f;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(234, 201, 117, 0.35);
  --btn-grad: linear-gradient(135deg, #f0d38a, #b8952c);
  --glow-gold: 0 0 0 1px rgba(234, 201, 117, 0.35), 0 4px 32px rgba(234, 201, 117, 0.15);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.wrap.narrow { max-width: 760px; }
.center { text-align: center; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.15; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.5rem; color: var(--gold-light); }

p { margin: 0 0 1em; color: var(--ink-soft); }
.lead { font-size: 1.15rem; color: var(--ink); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.eyebrow.center { text-align: center; }

.divider {
  text-align: center;
  color: var(--gold-dark);
  font-size: 1.2rem;
  margin: 40px 0;
  letter-spacing: 0.3em;
}

/* ─── header + hero banner, combined into one full-width block ─── */
.banner-block {
  position: relative;
  width: 100%;
}
.hero-banner-full {
  display: block;
  width: 100%;
  aspect-ratio: 3.4 / 1;
  object-fit: cover;
  object-position: top;
}
.banner-block::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 2;
}
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}
.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 24px 0;
}
.header-left {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.brand-row {
  display: block;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
}
.brand {
  display: inline;
  font-family: "Playfair Display", var(--serif);
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  font-weight: 700;
  color: var(--ink);
  text-shadow:
    0 0 24px rgba(234, 201, 117, 0.65),
    0 0 50px rgba(234, 201, 117, 0.4),
    0 2px 12px rgba(0, 0, 0, 0.8);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-nav a {
  color: var(--gold);
  font-size: 1.02rem;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  transition: color 0.15s ease;
}
.site-nav a:hover { color: var(--gold); }

.btn-book, .btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-book, .btn-primary {
  background: var(--btn-grad);
  color: #1a1206;
  box-shadow: var(--glow-gold);
  border: 1px solid transparent;
}
.btn-book:hover, .btn-primary:hover { transform: translateY(-1px); filter: brightness(1.06); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover { background: rgba(234, 201, 117, 0.08); border-color: var(--gold); }

.header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.btn-cancel-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink-softer);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.btn-cancel-pill:hover { color: var(--ink-soft); border-color: var(--border-strong); }

/* ─── hero ─── */
.hero {
  position: relative;
  padding: 56px 0 90px;
  overflow: hidden;
  text-align: center;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(234, 201, 117, 0.14), transparent 60%),
    radial-gradient(circle at 15% 100%, rgba(56, 130, 189, 0.08), transparent 45%);
  pointer-events: none;
}
.hero-inner { position: relative; }
.hero h1 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub {
  max-width: 600px;
  margin: 20px auto 32px;
  font-size: 1.08rem;
}

/* ─── philosophy ─── */
.philosophy {
  padding: 70px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ─── services ─── */
.services { position: relative; padding: 90px 0; overflow: hidden; }
.services-intro { max-width: 560px; margin: 14px auto 0; font-size: 1.02rem; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 44px 0 28px;
}
.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
}
.price-card.featured {
  border-color: var(--border-strong);
  box-shadow: var(--glow-gold);
  transform: translateY(-8px);
}
.price-card .ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--btn-grad);
  color: #1a1206;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin: 0;
}
.price-card h3 { margin-bottom: 6px; }
.price {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 10px;
}
.price-desc { font-size: 0.92rem; min-height: 44px; }
.policy-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-softer);
  max-width: 480px;
  margin: 0 auto;
}

/* ─── about ─── */
.about { padding: 90px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.team-member { margin-bottom: 44px; }
.together .signature { font-family: var(--serif); font-size: 1.2rem; color: var(--gold-light); font-style: italic; margin-top: 20px; }

/* ─── testimonials ─── */
.testimonials { padding: 90px 0; }
.testimonial-placeholder {
  margin-top: 30px;
  padding: 36px 30px;
  border: 1px dashed var(--border-strong);
  border-radius: 18px;
  background: rgba(234, 201, 117, 0.04);
}
.testimonial-placeholder p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
  text-align: left;
}
.testimonial-card {
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}
.testimonial-card p.quote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 14px;
}
.testimonial-card p.attribution {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0;
}

/* ─── contact ─── */
.contact { padding: 90px 0 110px; background: var(--surface); border-top: 1px solid var(--border); }
.contact-details {
  display: inline-block;
  text-align: left;
  margin: 24px 0 30px;
  padding: 22px 30px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}
.contact-details p { margin: 0 0 8px; color: var(--ink); }
.contact-details p:last-child { margin-bottom: 0; }
.todo {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.12);
  padding: 1px 8px;
  border-radius: 6px;
  font-size: 0.9em;
}
.fineprint { font-size: 0.82rem; color: var(--ink-softer); margin-top: 14px; }

/* ─── standalone pages (e.g. booking stub, faq) ─── */
.simple-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.simple-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.simple-header .site-nav a { text-shadow: none; }
.booking-stub { padding: 90px 0 110px; }
.policy-box {
  margin: 22px 0 0;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
}
.policy-box p { font-size: 0.85rem; color: var(--ink-softer); margin: 0; }
.policy-box strong { color: var(--ink-soft); }

/* ─── FAQ ─── */
.faq-page { padding: 90px 0 110px; }
.faq-list { margin-top: 48px; }
.faq-item { padding: 26px 0; border-bottom: 1px solid var(--border); }
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 1.25rem; margin-bottom: 10px; }
.faq-item p { margin-bottom: 0; }
.faq-item p + p { margin-top: 10px; }

/* ─── self-service cancellation ─── */
.appt-result-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}
.appt-result-card + .appt-result-card { margin-top: 12px; }
.appt-result-card .appt-info p { margin: 0; color: var(--ink); }
.appt-result-card .appt-info .appt-sub { color: var(--ink-softer); font-size: 0.85rem; margin-top: 2px; }
.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
  color: #f28b82;
  border: 1px solid rgba(242, 139, 130, 0.4);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.btn-danger:hover { background: rgba(242, 139, 130, 0.08); border-color: #f28b82; }
.btn-danger:disabled { opacity: 0.5; cursor: not-allowed; }

/* ─── booking form ─── */
.booking-card {
  margin-top: 8px;
  padding: 30px 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"],
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.8); cursor: pointer; }
.field textarea { resize: vertical; }

.pill-group { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-group .pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.pill-group .pill:hover { border-color: var(--border-strong); }
.pill-group .pill.selected {
  background: var(--btn-grad);
  border-color: transparent;
  color: #1a1206;
  box-shadow: var(--glow-gold);
}

.slots-status { font-size: 0.85rem; color: var(--ink-softer); margin: 10px 0 0; }
.booking-contact { display: flex; flex-direction: column; gap: 18px; padding-top: 4px; border-top: 1px solid var(--border); }
.booking-contact[hidden] { display: none; }
.form-error {
  color: var(--danger, #f87171);
  font-size: 0.88rem;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 10px;
  padding: 10px 14px;
  margin: 0;
}
.booking-card button[type="submit"]:disabled { opacity: 0.45; cursor: not-allowed; }

.booking-confirmation {
  margin-top: 8px;
  padding: 40px 28px;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--glow-gold);
}

/* ─── footer ─── */
.site-footer { padding: 34px 0; border-top: 1px solid var(--border); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.footer-inner img { height: 26px; width: 26px; object-fit: contain; opacity: 0.8; }
.footer-inner p { margin: 0; font-size: 0.85rem; color: var(--ink-softer); }

@media (max-width: 720px) {
  .header-inner { padding: 18px 16px 0; gap: 10px; }
  .brand { font-size: 1.5rem; }
  .btn-book { padding: 9px 18px; font-size: 0.85rem; }
  .menu-toggle { display: inline-flex; vertical-align: middle; margin-left: 10px; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    background: rgba(6, 7, 10, 0.97);
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    padding: 8px;
    min-width: 180px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
    z-index: 20;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
  }
  .site-nav a:hover, .site-nav a:active { background: rgba(234, 201, 117, 0.1); }
  .hero { padding: 80px 0 60px; }
  .price-card.featured { transform: none; }
}
