:root {
  --gold: #f7b731;
  --gold-deep: #b97a13;
  --mustard: #f39c12;
  --cream: #fdf8ec;
  --cream-2: #faf1da;
  --ink: #3d2411;
  --brown: #6b3f1d;
  --ink-soft: #6b5237;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(168, 123, 22, 0.12);
  --radius: 12px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; }
a { color: var(--gold-deep); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; color: var(--brown); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
section { padding: 72px 0; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 248, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 154, 46, 0.25);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 10px 20px; max-width: 1160px; margin: 0 auto; }
.brand { font-family: var(--font-head); font-size: 1.9rem; letter-spacing: 3px; color: var(--brown); font-weight: 700; line-height: 1.05; }
.brand small { display: block; font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 2px; color: var(--ink-soft); text-transform: uppercase; }
.nav-links { display: flex; gap: 22px; align-items: center; list-style: none; }
.nav-links a { color: var(--brown); font-size: 0.97rem; font-weight: 500; }
.nav-links a:hover { color: var(--gold-deep); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--gold-deep); cursor: pointer; }

.btn {
  display: inline-block; padding: 13px 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--mustard));
  color: var(--brown) !important; font-weight: 500; letter-spacing: 0.5px;
  border: none; cursor: pointer; font-size: 1rem; font-family: var(--font-body);
  box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(168,123,22,.22); }
.btn.ghost { background: transparent; color: var(--brown) !important; border: 2px solid var(--gold); box-shadow: none; }
.btn.whatsapp { color: #fff !important; }
.btn.small { padding: 9px 20px; font-size: 0.88rem; }
.btn.whatsapp { background: linear-gradient(135deg, #35c15f, #1f9e4a); }

/* Hero */
.hero {
  background:
    radial-gradient(ellipse at 75% 20%, rgba(217,164,65,.28), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(201,154,46,.18), transparent 50%),
    var(--cream-2);
  text-align: center; padding: 110px 20px 90px;
}
.hero .eyebrow { text-transform: uppercase; letter-spacing: 4px; font-size: .8rem; color: var(--gold-deep); margin-bottom: 14px; }
.hero h1 { font-size: clamp(2.3rem, 5.4vw, 3.6rem); margin-bottom: 18px; letter-spacing: -.5px; }
.hero h1 span { color: var(--gold-deep); font-style: italic; }
.hero h1 { color: var(--brown); }
.hero p.lead { max-width: 640px; margin: 0 auto 32px; color: var(--ink-soft); font-size: 1.1rem; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.section-head { text-align: center; margin-bottom: 44px; }
.section-head .eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: .75rem; color: var(--gold-deep); }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-top: 6px; }
.section-head p { color: var(--ink-soft); max-width: 560px; margin: 10px auto 0; }

/* Cards */
.grid { display: grid; gap: 24px; }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card {
  background: var(--white); border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow); border: 1px solid rgba(201,154,46,.15);
  transition: transform .18s ease;
}
.card:hover { transform: translateY(-4px); }
.card .icon { font-size: 2rem; margin-bottom: 12px; }
.card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: .95rem; }
.card .price { display: block; margin-top: 14px; font-weight: 600; color: var(--gold-deep); font-size: 1.15rem; }

.alt-bg { background: var(--cream-2); }

/* About */
.about-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: center; }
.about-photo {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  border: 4px solid var(--gold);
}
.about-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-size: 2.2rem; margin-bottom: 16px; }
.about-text p { color: var(--ink-soft); margin-bottom: 12px; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badge { background: #fff; border: 1px solid rgba(201,154,46,.45); padding: 7px 16px; border-radius: 6px; font-size: .82rem; font-weight: 600; letter-spacing: .4px; text-transform: uppercase; color: var(--brown); }

/* Hours */
.hours-list { list-style: none; max-width: 420px; margin: 0 auto; }
.hours-list li { display: flex; justify-content: space-between; padding: 12px 4px; border-bottom: 1px dashed rgba(201,154,46,.4); }

/* Testimonials */
.testimonial { font-style: italic; color: var(--ink-soft); }
.testimonial .who { margin-top: 14px; font-style: normal; font-weight: 600; color: var(--gold-deep); }

/* FAQ */
details { background: var(--white); border-radius: 10px; padding: 18px 22px; margin-bottom: 12px; border: 1px solid rgba(201,154,46,.2); }
details summary { cursor: pointer; font-weight: 500; font-size: 1.05rem; }
details p { margin-top: 10px; color: var(--ink-soft); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info p { margin-bottom: 14px; color: var(--ink-soft); }
.contact-info strong { color: var(--ink); }

/* Forms */
form label { display: block; font-size: .9rem; font-weight: 500; margin: 14px 0 6px; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(201,154,46,.4);
  background: #fff; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--mustard); border-color: transparent; }

/* Booking slots */
.slot-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.slot {
  padding: 9px 16px; border-radius: 6px; border: 1.5px solid var(--gold);
  background: #fff; color: var(--ink); cursor: pointer; font-family: var(--font-body); font-size: .92rem;
}
.slot.selected { background: var(--brown); color: #fff; border-color: var(--brown); }
.slot:disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.booking-panel { max-width: 640px; margin: 0 auto; }
.notice { background: var(--cream-2); border: 1px solid rgba(201,154,46,.35); border-radius: 10px; padding: 14px 18px; font-size: .92rem; color: var(--ink-soft); margin-top: 18px; }
.success-box { text-align: center; padding: 40px 20px; }
.success-box .big { font-size: 3rem; }

/* Footer */
.site-footer { background: var(--brown); color: #f2e3c8; padding: 56px 20px 28px; margin-top: 40px; }
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.site-footer h4 { color: var(--gold); margin-bottom: 12px; font-size: 1.2rem; }
.site-footer a { color: #f2e3c8; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; font-size: .92rem; }
.copyright { text-align: center; margin-top: 40px; font-size: .8rem; color: #cdb389; }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.25); color: #fff !important;
}

@media (max-width: 820px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 18px; border-bottom: 1px solid rgba(201,154,46,.3); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .about-wrap, .contact-grid { grid-template-columns: 1fr; }
  section { padding: 52px 0; }
}

/* Brand logo */
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 68px; height: 68px; flex-shrink: 0; }


/* Corporate refinements */
.card.svc { padding: 0; overflow: hidden; }
.card.svc h3 { margin: 22px 26px 8px; }
.card.svc p { margin: 0 26px 26px; }
.svc-img { width: 100%; height: 185px; object-fit: cover; display: block; border-bottom: 3px solid var(--gold); }

.stat-band { padding: 44px 0; border-top: 1px solid rgba(201,154,46,.25); border-bottom: 1px solid rgba(201,154,46,.25); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; text-align: center; }
.stat-num { display: block; font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: var(--brown); line-height: 1.1; }
.stat-lbl { display: block; font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }
