@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@400;500;600&display=swap');

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

:root {
  --bg: #0d0d0d;
  --fg: #ede8df;
  --card: #141414;
  --border: #292929;
  --muted: #8a7e6b;
  --gold: #c4a55a;
  --gold-light: #d4bf8a;
  --off-white: #141414;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-sans); line-height: 1.6; }
a { color: inherit; text-decoration: none; }

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all 0.3s; }
.nav.scrolled { background: rgba(13,13,13,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 72rem; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; }
.logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.nav-links { display: none; gap: 2.5rem; font-size: 0.875rem; font-weight: 500; color: var(--muted); }
.nav-links a:hover { color: var(--fg); }
@media(min-width:768px) { .nav-links { display: flex; } .nav-inner { padding: 1.25rem 2.5rem; } }

/* Hero */
.hero { max-width: 72rem; margin: 0 auto; padding: 9rem 1.5rem 7rem; }
@media(min-width:768px) { .hero { padding: 12rem 2.5rem 10rem; } }
.hero-label { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.25em; color: var(--gold); margin-bottom: 1.5rem; }
.hero h1 { font-family: var(--font-serif); font-size: clamp(2.8rem,8vw,5.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.hero p { margin-top: 2rem; max-width: 36rem; color: var(--muted); font-size: 1rem; }
.hero-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.btn-gold { display: inline-block; background: var(--gold); color: var(--bg); padding: 0.875rem 2rem; font-size: 0.875rem; font-weight: 500; border-radius: 2px; border: none; cursor: pointer; transition: background 0.2s; }
.btn-gold:hover { background: var(--gold-light); }
.link-arrow { font-size: 0.875rem; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.link-arrow:hover { color: var(--fg); }
.link-arrow span { color: var(--gold); display: inline-block; transition: transform 0.2s; }
.link-arrow:hover span { transform: translateX(4px); }

/* Gold Banner */
.gold-banner { background: var(--gold); }
.gold-banner-inner { max-width: 72rem; margin: 0 auto; padding: 6rem 1.5rem; display: flex; flex-direction: column; gap: 2.5rem; }
@media(min-width:768px) { .gold-banner-inner { flex-direction: row; align-items: center; justify-content: space-between; padding: 8rem 2.5rem; } }
.gold-banner h2 { font-family: var(--font-serif); font-size: clamp(1.8rem,5vw,3.5rem); font-weight: 700; line-height: 1.25; color: var(--bg); }
.gold-banner p { max-width: 18rem; font-size: 0.875rem; color: rgba(13,13,13,0.6); }

/* Section */
.section { border-top: 1px solid var(--border); }
.section-inner { max-width: 72rem; margin: 0 auto; padding: 6rem 1.5rem; }
@media(min-width:768px) { .section-inner { padding: 9rem 2.5rem; } }
.section-label { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.25em; color: var(--gold); margin-bottom: 1rem; }
.section-title { font-family: var(--font-serif); font-size: clamp(1.8rem,4vw,3rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4rem; }
@media(min-width:768px) { .section-title { margin-bottom: 6rem; } }

/* Steps Grid */
.steps-grid { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--border); }
@media(min-width:768px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
.step { border-bottom: 1px solid var(--border); padding: 2rem; }
@media(min-width:768px) { .step { padding: 3rem; } .step:nth-child(odd) { border-right: 1px solid var(--border); } }
.step-num { font-family: var(--font-serif); font-size: 0.875rem; font-weight: 700; color: var(--gold); }
.step h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; margin-top: 1rem; }
.step p { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted); }

/* Why list */
.why-list { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-item { display: flex; flex-direction: column; gap: 1rem; padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.why-item:last-child { border-bottom: none; }
@media(min-width:768px) { .why-item { flex-direction: row; align-items: flex-start; gap: 4rem; padding: 3.5rem 0; } }
.why-item .step-num { flex-shrink: 0; }
.why-item h3 { font-family: var(--font-serif); font-size: 1.125rem; font-weight: 700; }
.why-item p { margin-top: 0.5rem; max-width: 32rem; font-size: 0.875rem; color: var(--muted); }

/* CTA */
.cta { background: var(--off-white); }
.cta-inner { max-width: 48rem; margin: 0 auto; padding: 7rem 1.5rem; text-align: center; }
@media(min-width:768px) { .cta-inner { padding: 10rem 2.5rem; } }
.cta h2 { font-family: var(--font-serif); font-size: clamp(1.8rem,5vw,3.5rem); font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; }
.cta p { margin: 1.5rem auto 0; max-width: 28rem; font-size: 0.875rem; color: var(--muted); }
.cta .btn-gold { margin-top: 2.5rem; padding: 1rem 2.5rem; }

/* Footer */
.footer { border-top: 1px solid var(--border); }
.footer-inner { max-width: 72rem; margin: 0 auto; padding: 2.5rem 1.5rem; text-align: center; font-size: 0.875rem; color: var(--muted); }
.footer-inner strong { font-family: var(--font-serif); color: var(--fg); font-weight: 600; }

/* Book page */
.book-nav { border-bottom: 1px solid var(--border); }
.book-header { margin-bottom: 3.5rem; }
.book-header .hero-label { margin-bottom: 1rem; }
.book-header h1 { font-family: var(--font-serif); font-size: clamp(1.8rem,4vw,3rem); font-weight: 700; letter-spacing: -0.02em; }
.book-header p { margin-top: 1rem; max-width: 32rem; font-size: 0.875rem; color: var(--muted); }

.book-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media(min-width:1024px) { .book-grid { grid-template-columns: 1fr 1fr; } }

.cal-section h3, .form-section h3 { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 1rem; }

/* Calendar */
.calendar-wrap { display: inline-block; border: 1px solid var(--border); border-radius: 8px; background: var(--card); padding: 1rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; text-align: center; }
.cal-header { font-size: 0.75rem; color: var(--muted); padding: 0.5rem 0; font-weight: 600; }
.cal-day { padding: 0.5rem; font-size: 0.875rem; border-radius: 4px; cursor: pointer; border: none; background: transparent; color: var(--fg); transition: all 0.15s; }
.cal-day:hover:not(.disabled):not(.selected) { background: rgba(196,165,90,0.15); }
.cal-day.selected { background: var(--gold); color: var(--bg); font-weight: 600; }
.cal-day.disabled { color: var(--border); cursor: default; }
.cal-month-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.cal-month-nav span { font-family: var(--font-serif); font-weight: 600; font-size: 0.95rem; }
.cal-month-nav button { background: none; border: 1px solid var(--border); color: var(--fg); padding: 0.25rem 0.75rem; border-radius: 4px; cursor: pointer; font-size: 0.875rem; }
.cal-month-nav button:hover { border-color: var(--gold); }

/* Time slots */
.time-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem; margin-top: 2rem; }
@media(min-width:640px) { .time-grid { grid-template-columns: repeat(4,1fr); } }
.time-slot { padding: 0.625rem 1rem; font-size: 0.875rem; font-weight: 500; border: 1px solid var(--border); border-radius: 2px; background: transparent; color: var(--muted); cursor: pointer; transition: all 0.15s; }
.time-slot:hover { border-color: rgba(196,165,90,0.5); color: var(--fg); }
.time-slot.selected { border-color: var(--gold); background: var(--gold); color: var(--bg); }

/* Form */
.form-section { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group label { display: block; font-size: 0.875rem; color: var(--muted); margin-bottom: 0.375rem; }
.form-group input { width: 100%; padding: 0.75rem 1rem; font-size: 0.875rem; font-family: var(--font-sans); border: 1px solid var(--border); border-radius: 2px; background: var(--card); color: var(--fg); outline: none; transition: border-color 0.2s; }
.form-group input::placeholder { color: rgba(138,126,107,0.5); }
.form-group input:focus { border-color: var(--gold); }

.booking-summary { border: 1px solid rgba(196,165,90,0.3); background: rgba(196,165,90,0.05); border-radius: 2px; padding: 1.25rem; font-size: 0.875rem; color: var(--muted); display: none; }
.booking-summary.show { display: block; }
.booking-summary strong { color: var(--fg); font-weight: 600; }
.booking-summary .time-highlight { color: var(--gold); font-weight: 600; }

.btn-submit { width: 100%; padding: 1rem; font-size: 0.875rem; font-weight: 500; font-family: var(--font-sans); border: none; border-radius: 2px; background: var(--gold); color: var(--bg); cursor: pointer; transition: all 0.2s; }
.btn-submit:hover { background: var(--gold-light); }
.btn-submit:disabled { opacity: 0.4; cursor: not-allowed; }
.form-note { text-align: center; font-size: 0.75rem; color: rgba(138,126,107,0.7); }
