:root {
  --bg: #ffffff;
  --fg: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;
  --primary: #0f2942;
  --accent: #0d9488;
  --accent-soft: #ccfbf1;
  --whatsapp: #25d366;
  --radius: 16px;
  --shadow-card: 0 10px 30px -12px rgba(15, 41, 66, .18);
  --shadow-elegant: 0 20px 50px -18px rgba(13, 148, 136, .35);
  --grad-primary: linear-gradient(135deg, #0d9488, #0f2942);
  --grad-hero: linear-gradient(180deg, #f0fdfa, #ffffff);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .brand-name, .stat { font-family: 'Sora', sans-serif; letter-spacing: -.02em; }
h1 { font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); font-weight: 700; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.accent { color: var(--accent); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.muted { color: var(--muted); }
.center { text-align: center; }
.mt { margin-top: 1rem; }
.mt-xl { margin-top: 3.5rem; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1rem; }
.container.narrow { max-width: 760px; }
.section { padding: 4rem 1rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; border-radius: 12px; padding: .65rem 1.1rem; cursor: pointer;
  border: 1px solid transparent; transition: .2s; font-size: .95rem; line-height: 1;
}
.btn-sm { padding: .5rem .85rem; font-size: .85rem; }
.btn-xl { padding: .95rem 1.6rem; font-size: 1.05rem; border-radius: 14px; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { filter: brightness(.95); }
.btn-outline { background: #fff; border-color: var(--border); color: var(--fg); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-teal { background: var(--accent); color: #fff; }
.full { width: 100%; }
.grow { flex: 2; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: .5rem; }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; overflow: hidden; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-name { font-weight: 700; font-size: 1.1rem; }
.nav-links { display: flex; gap: 1.6rem; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: .9rem; }
.nav-links a:hover { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: .5rem; }
.menu-toggle { display: none; width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 10px; background: #fff; font-size: 1.1rem; cursor: pointer; }

/* Hero */
.hero { background: var(--grad-hero); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; padding-top: 3.5rem; padding-bottom: 3.5rem; }
.pill { display: inline-flex; align-items: center; gap: .4rem; border: 1px solid var(--accent-soft); background: var(--accent-soft); color: var(--accent); padding: .3rem .8rem; border-radius: 999px; font-size: .75rem; font-weight: 700; }
.lead { margin-top: 1.2rem; color: var(--muted); font-size: 1.1rem; max-width: 36rem; }
.hero-cta { display: flex; gap: .8rem; margin-top: 1.8rem; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 1.5rem; margin-top: 1.8rem; color: var(--muted); font-size: .9rem; }
.hero-media { position: relative; }
.hero-media img { border-radius: 28px; box-shadow: var(--shadow-elegant); animation: float 6s ease-in-out infinite; }
.hero-badge { position: absolute; bottom: 1rem; left: 1rem; display: flex; align-items: center; gap: .6rem; background: rgba(255,255,255,.92); padding: .6rem .9rem; border-radius: 16px; box-shadow: var(--shadow-card); backdrop-filter: blur(6px); }
.hb-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); }
.hero-badge small { display: block; color: var(--muted); font-size: .75rem; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* About */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2.5rem; align-items: center; }
.about-photo img { border-radius: 28px; box-shadow: var(--shadow-card); width: 100%; object-fit: cover; }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; font-weight: 700; color: var(--accent); }
.role { color: var(--muted); font-size: 1.1rem; font-weight: 500; }
.badge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-top: 1.4rem; }
.badge-card { display: flex; align-items: center; gap: .5rem; border: 1px solid var(--border); border-radius: 12px; padding: .7rem .9rem; font-weight: 600; font-size: .9rem; background: var(--card); }

/* Services */
.services { background: #f8fafc; padding: 4rem 0; }
.section-head { max-width: 38rem; margin: 0 auto; text-align: center; }
.section-head .muted { margin-top: .7rem; }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
.service-card { border: 1px solid var(--border); border-radius: 18px; background: var(--card); padding: 1.4rem; transition: .25s; }
.service-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--shadow-elegant); }
.service-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); font-size: 1.3rem; }
.service-card h3 { margin-top: 1rem; font-size: 1.05rem; }
.service-card p { margin-top: .5rem; color: var(--muted); font-size: .88rem; }

/* Locations */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; max-width: 840px; margin: 2.5rem auto 0; }
.loc-card { border: 1px solid var(--border); border-radius: 18px; background: var(--card); padding: 1.6rem; box-shadow: var(--shadow-card); }
.loc-card h3 { font-size: 1.2rem; }
.loc-addr { color: var(--muted); font-size: .88rem; margin-top: .3rem; }
.loc-row { display: flex; align-items: center; gap: .5rem; background: #f1f5f9; border-radius: 12px; padding: .65rem .9rem; margin-top: .7rem; font-weight: 600; font-size: .9rem; }
.loc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: 1rem; }
.fee-note { max-width: 720px; margin: 2rem auto 0; text-align: center; border: 1px solid var(--accent-soft); background: #f0fdfa; border-radius: 16px; padding: 1rem; font-weight: 600; }

/* Booking */
.book { background: var(--grad-hero); padding: 4rem 0; }
.book-form { margin-top: 2.5rem; border: 1px solid var(--border); border-radius: 24px; background: var(--card); padding: 1.8rem; box-shadow: var(--shadow-card); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; }
.field input, .field select { border: 1px solid var(--border); border-radius: 10px; padding: .65rem .8rem; font: inherit; background: #fff; }
.field input:focus, .field select:focus { outline: 2px solid var(--accent); outline-offset: 0; border-color: var(--accent); }
.book-form .btn { margin-top: 1.4rem; }
.fine { text-align: center; font-size: .78rem; color: var(--muted); margin-top: .7rem; }

/* Stats / testimonials */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center; border: 1px solid var(--border); border-radius: 24px; padding: 2rem; background: var(--card); box-shadow: var(--shadow-card); }
.stat { font-size: 2.4rem; font-weight: 800; color: var(--accent); }
.marquee { overflow: hidden; margin-top: 2.5rem; }
.marquee-track { display: flex; gap: 1.2rem; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.tcard { width: 320px; flex-shrink: 0; border: 1px solid var(--border); border-radius: 18px; background: var(--card); padding: 1.4rem; }
.tcard .stars { color: var(--accent); }
.tcard blockquote { margin-top: .7rem; color: var(--muted); font-size: .9rem; }
.tcard figcaption { margin-top: 1rem; font-weight: 600; font-size: .9rem; }

/* FAQ */
.faq { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; font: inherit; font-weight: 600; padding: 1.1rem 0; cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; }
.faq-q span { color: var(--accent); transition: .2s; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s; color: var(--muted); }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.1rem; }

/* Footer */
.site-footer { background: var(--primary); color: #fff; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding: 3rem 1rem 1.5rem; }

.site-footer .muted { color: rgba(255,255,255,.7); }
.foot-head { text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; color: rgba(255,255,255,.6); }
.foot-list { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.foot-list a { color: rgba(255,255,255,.8); font-size: .9rem; }
.foot-list a:hover { color: #fff; }
.socials { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.socials a { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0; border-radius: 12px; background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); transition: background .2s, color .2s; }
.socials a svg { width: 22px; height: 22px; display: block; }
.socials a:hover { background: var(--accent); color: #fff; }
.disclaimer { padding: 1.5rem 1rem 2.5rem; border-top: 1px solid rgba(255,255,255,.15); font-size: .78rem; color: rgba(255,255,255,.6); }
.disclaimer p:first-child { background: rgba(255,255,255,.05); border-radius: 12px; padding: 1rem; }
.copy { margin-top: 1rem; }

/* Mobile sticky CTA */
.mobile-cta { display: none; position: fixed; inset: auto 0 0 0; z-index: 50; background: rgba(255,255,255,.96); border-top: 1px solid var(--border); padding: .7rem; gap: .5rem; backdrop-filter: blur(8px); }
.mobile-cta .btn { flex: 1; }

/* Responsive */
@media (max-width: 1000px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; background: #fff; border-bottom: 1px solid var(--border); padding: .8rem 1rem; gap: .2rem; }
  .nav-links.open a { padding: .7rem .5rem; }
  .menu-toggle { display: block; }
  .hide-mobile { display: none; }
  .hero-grid, .about-grid, .loc-grid, .footer-grid { grid-template-columns: 1fr; }
  .card-grid, .form-grid, .stats { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .about-photo { max-width: 360px; margin: 0 auto; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 78px; }
  .section { padding: 3rem 1rem; }
}
