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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --bg: #f7f3ec;
  --surface: #ffffff;
  --dark: #1a1814;
  --dark-2: #262319;
  --text: #201d17;
  --muted: #6f6858;
  --border: #e6ddcc;
  --gold: #c9a961;
  --gold-dark: #a5843f;
  --radius: 4px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Work Sans', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.01em; margin: 0; }
a { color: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: 0.1s; }
.reveal-delay-2.is-visible { transition-delay: 0.2s; }
.reveal-delay-3.is-visible { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 243, 236, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled { background: rgba(247, 243, 236, 0.97); box-shadow: 0 8px 30px rgba(26, 24, 20, 0.08); }

.nav .container { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.5rem; }

.brand { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

.nav-links { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  position: relative;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold-dark);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 0.6rem 1.3rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--gold-dark); }

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(26,24,20,0.55) 0%, rgba(26,24,20,0.85) 100%),
    url('https://images.unsplash.com/photo-1759134248487-e8baaf31e33e?auto=format&fit=crop&w=1800&q=75');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  color: #fdfbf6;
  padding: 6rem 1.5rem 10rem;
  text-align: center;
}
@media (max-width: 900px) { .hero { background-attachment: scroll; } }

.hero .eyebrow { font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.15; max-width: 780px; margin: 0 auto 1.25rem; }
.hero p { color: #cfc9ba; max-width: 560px; margin: 0 auto 2rem; font-size: 1rem; line-height: 1.6; }

.hero .eyebrow, .hero h1, .hero p, .hero .btn {
  opacity: 0; transform: translateY(18px); animation: heroIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero .eyebrow { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.25s; }
.hero p { animation-delay: 0.4s; }
.hero .btn { animation-delay: 0.55s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow, .hero h1, .hero p, .hero .btn { opacity: 1; transform: none; animation: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  background: var(--gold);
  color: #201d17;
  border: none;
  padding: 0.85rem 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { background: #d9bd7c; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201, 169, 97, 0.35); }
.btn:active { transform: translateY(0); }
.btn-block { width: 100%; }

/* ============================================================
   BOOKING CARD
   ============================================================ */
.booking-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(26, 24, 20, 0.25);
  max-width: 780px;
  margin: -6rem auto 5rem;
  padding: 2rem;
  position: relative;
  z-index: 5;
  transition: box-shadow 0.3s ease;
}
.booking-card h2 { text-align: center; font-size: 1.5rem; margin-bottom: 1.25rem; }

.booking-row { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.booking-row select {
  flex: 1; min-width: 220px; padding: 0.7rem 0.9rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: inherit; font-size: 0.9rem; background: var(--bg);
}

.day-picker { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.5rem; margin-bottom: 1.25rem; }
.day-btn {
  border: 1px solid var(--border); background: var(--bg); border-radius: var(--radius);
  padding: 0.6rem 0.25rem; text-align: center; cursor: pointer; font-family: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.day-btn:hover { transform: translateY(-2px); }
.day-btn .dow { display: block; font-size: 0.68rem; text-transform: uppercase; color: var(--muted); letter-spacing: 0.05em; }
.day-btn .dom { display: block; font-size: 1.1rem; font-weight: 600; margin-top: 0.15rem; }
.day-btn.active { background: var(--dark); color: #fff; border-color: var(--dark); }
.day-btn.active .dow { color: var(--gold); }

.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 0.5rem; }
.slot-btn {
  border: 1px solid var(--border); background: var(--bg); border-radius: var(--radius);
  padding: 0.55rem; font-size: 0.85rem; cursor: pointer; font-family: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.slot-btn:hover { border-color: var(--gold-dark); transform: translateY(-2px); }

.booking-empty { color: var(--muted); font-size: 0.85rem; text-align: center; padding: 1rem 0; }

.booking-form { margin-top: 1.25rem; border-top: 1px solid var(--border); padding-top: 1.25rem; }
.booking-form label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin: 0.7rem 0 0.3rem; }
.booking-form input, .booking-form textarea {
  width: 100%; padding: 0.65rem 0.8rem; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: 0.9rem; background: var(--bg);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 4.5rem 0; }
.section.alt { background: var(--surface); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .eyebrow { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.6rem; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 6px;
  padding: 1.75rem 1.5rem; text-align: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(26, 24, 20, 0.1); }
.service-card .icon {
  width: 48px; height: 48px; margin: 0 auto 1rem; border-radius: 50%; background: var(--bg);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--gold-dark);
  transition: transform 0.3s ease;
}
.service-card:hover .icon { transform: scale(1.1) rotate(-4deg); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.service-card p { color: var(--muted); font-size: 0.85rem; margin: 0; }

/* ---------- Image break ---------- */
.image-break {
  position: relative;
  min-height: 420px;
  background-image:
    linear-gradient(180deg, rgba(26,24,20,0.35) 0%, rgba(26,24,20,0.7) 100%),
    url('https://images.unsplash.com/photo-1546596468-13349ee0c504?auto=format&fit=crop&w=1800&q=75');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: #fdfbf6; padding: 4rem 1.5rem;
}
@media (max-width: 900px) { .image-break { background-attachment: scroll; } }
.image-break .eyebrow { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; }
.image-break h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); max-width: 640px; margin: 0 auto 1.25rem; }
.image-break p { color: #d8d2c4; max-width: 520px; margin: 0 auto; font-size: 0.95rem; line-height: 1.7; }

/* ---------- Stats ---------- */
.stats-section { background: var(--dark); color: #fdfbf6; padding: 3.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 2rem; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: #b9b2a0; margin-top: 0.4rem; }
.stats-note { text-align: center; color: #8a8375; font-size: 0.72rem; margin-top: 2rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-tile { position: relative; overflow: hidden; border-radius: 6px; aspect-ratio: 4/3; }
.gallery-tile img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-tile:hover img { transform: scale(1.08); }
.gallery-label {
  position: relative; z-index: 2; color: #fff;
  background: linear-gradient(0deg, rgba(26,24,20,0.75), transparent 60%);
  width: 100%; height: 100%; display: flex; align-items: flex-end; padding: 1rem;
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.03em;
}
@media (max-width: 720px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 1.75rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(26,24,20,0.08); }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }
.testimonial-quote { font-size: 0.92rem; line-height: 1.7; color: var(--text); margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--dark); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; flex-shrink: 0;
}
.testimonial-name { font-size: 0.85rem; font-weight: 600; }
.testimonial-role { font-size: 0.75rem; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: #cfc9ba; padding: 3rem 0 2rem; text-align: center; }
.footer .brand { font-family: var(--font-display); font-size: 1.3rem; color: #fff; margin-bottom: 0.75rem; }
.footer p { margin: 0.3rem 0; font-size: 0.85rem; }
.footer .socials { margin-top: 1rem; font-size: 0.8rem; letter-spacing: 0.05em; color: var(--gold); }
