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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --bg: #f7f5ee;
  --surface: #ffffff;
  --sage: #a9c2a0;
  --sage-dark: #7a9971;
  --blush: #f0d9d3;
  --lavender: #d8d3ea;
  --text: #3a3f36;
  --muted: #7c8574;
  --border: #e5e0d2;
  --radius: 20px;
  --font-display: 'Quicksand', sans-serif;
  --font-body: 'Nunito 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: 700; margin: 0; }
a { color: inherit; }
.container { max-width: 1080px; 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, 245, 238, 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, 245, 238, 0.97); box-shadow: 0 8px 30px rgba(122, 153, 113, 0.12); }
.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.3rem; font-weight: 700; color: var(--sage-dark); display: flex; align-items: center; gap: 0.4rem; }

.nav-links { display: flex; gap: 1.75rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; font-size: 0.88rem; font-weight: 600; color: var(--muted); }
.nav-links a:hover { color: var(--sage-dark); }

.nav-cta {
  background: var(--sage); color: #2b3327; border: none; padding: 0.65rem 1.4rem;
  font-size: 0.85rem; font-weight: 700; border-radius: 999px; cursor: pointer; text-decoration: none;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--sage-dark); color: #fff; }

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background-image:
    linear-gradient(180deg, rgba(58,63,54,0.35) 0%, rgba(58,63,54,0.55) 100%),
    url('https://images.unsplash.com/photo-1615528650248-8630bcd26814?auto=format&fit=crop&w=1800&q=75');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fdfcf7;
  padding: 5rem 1.5rem 8rem;
  text-align: center;
}
@media (max-width: 900px) { .hero { background-attachment: scroll; } }

.hero .eyebrow {
  display: inline-block; background: rgba(255,255,255,0.9); color: #2b3327;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; padding: 0.35rem 1rem;
  border-radius: 999px; margin-bottom: 1.5rem;
}
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); line-height: 1.2; max-width: 640px; margin: 0 auto 1.25rem; }
.hero p { color: #eef0ea; max-width: 520px; margin: 0 auto 2rem; font-size: 1rem; line-height: 1.7; }

.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(--sage-dark); color: #fff; border: none;
  padding: 0.9rem 2.1rem; font-size: 0.9rem; font-weight: 700; border-radius: 999px;
  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: #667a5f; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(122, 153, 113, 0.35); }
.btn-block { width: 100%; }

/* ============================================================
   BOOKING CARD
   ============================================================ */
.booking-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(122, 153, 113, 0.18);
  max-width: 760px; margin: -4.5rem auto 5rem; padding: 2.25rem; position: relative; z-index: 5;
}
.booking-card h2 { text-align: center; font-size: 1.4rem; margin-bottom: 1.4rem; color: var(--sage-dark); }

.booking-row { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.booking-row select {
  flex: 1; min-width: 220px; padding: 0.75rem 1rem; border: 1px solid var(--border);
  border-radius: 999px; 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: 14px;
  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.66rem; color: var(--muted); font-weight: 700; }
.day-btn .dom { display: block; font-size: 1.05rem; font-weight: 700; margin-top: 0.15rem; }
.day-btn.active { background: var(--sage-dark); color: #fff; border-color: var(--sage-dark); }
.day-btn.active .dow { color: #e7f0e3; }

.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: 999px;
  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(--sage-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.78rem; font-weight: 700; color: var(--muted); margin: 0.7rem 0 0.3rem; }
.booking-form input, .booking-form textarea {
  width: 100%; padding: 0.7rem 0.9rem; border: 1px solid var(--border); border-radius: 14px;
  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 {
  display: inline-block; background: var(--blush); color: #8a5a4d; font-size: 0.72rem; font-weight: 700;
  padding: 0.3rem 0.9rem; border-radius: 999px; margin-bottom: 0.75rem;
}
.section-header h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }

/* ---------- 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: var(--radius);
  padding: 2rem 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(122, 153, 113, 0.15); }
.service-card .icon {
  width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%; background: var(--bg);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  transition: transform 0.3s ease;
}
.service-card:hover .icon { transform: scale(1.12) rotate(4deg); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.service-card p { color: var(--muted); font-size: 0.85rem; margin: 0; }

/* ---------- Image break ---------- */
.image-break {
  position: relative;
  min-height: 400px;
  background-image:
    linear-gradient(180deg, rgba(58,63,54,0.25) 0%, rgba(58,63,54,0.6) 100%),
    url('https://images.unsplash.com/photo-1726235812628-23558521686f?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: #fdfcf7; padding: 4rem 1.5rem; border-radius: var(--radius); margin: 0 1.5rem;
}
@media (max-width: 900px) { .image-break { background-attachment: scroll; } }
.image-break .eyebrow { color: #eef0ea; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 1rem; }
.image-break h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); max-width: 620px; margin: 0 auto 1.1rem; }
.image-break p { max-width: 500px; margin: 0 auto; font-size: 0.92rem; line-height: 1.7; opacity: 0.95; }

/* ---------- Stats ---------- */
.stats-section { background: var(--sage-dark); color: #eef2ea; padding: 3.5rem 0; border-radius: 32px; margin: 0 1.5rem; }
.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.6rem); font-weight: 700; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; margin-top: 0.4rem; }
.stats-note { text-align: center; color: #dce6d6; opacity: 0.75; 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: var(--radius); 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(58,63,54,0.75), transparent 60%);
  width: 100%; height: 100%; display: flex; align-items: flex-end; padding: 1rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
@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: var(--radius); padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(122,153,113,0.15); }
.testimonial-stars { color: var(--sage-dark); font-size: 0.85rem; margin-bottom: 0.75rem; }
.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(--sage); color: #2b3327;
  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: 700; }
.testimonial-role { font-size: 0.75rem; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--sage-dark); color: #eef2ea; padding: 3rem 0 2rem; text-align: center; border-radius: 32px 32px 0 0; }
.footer .brand { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.75rem; }
.footer p { margin: 0.3rem 0; font-size: 0.85rem; }
.footer .socials { margin-top: 1rem; font-size: 0.8rem; }
