/* One stylesheet for every vertical; the page injects the theme's custom properties in <style>. */
:root {
  --bg: #fafafa; --surface: #ffffff; --text: #18181b; --muted: #71717a;
  --primary: #4f46e5; --primary-contrast: #ffffff; --accent: #25d366;
  --border: rgba(0,0,0,0.08); --overlay: rgba(0,0,0,0.55);
  --radius: 14px; --font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; --heading-font: var(--font);
  --max: 680px; --pad: 20px; --fab-space: 88px;
}
* { box-sizing: border-box; }
.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; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.55; }
body.page { padding-bottom: var(--fab-space); }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--heading-font); line-height: 1.2; margin: 0; }
h2 { font-size: 1.35rem; margin-bottom: 14px; }
a { color: var(--primary); }
.container { max-width: var(--max); margin: 0 auto; padding: 24px var(--pad); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 22px; border-radius: 999px;
  background: var(--primary); color: var(--primary-contrast); text-decoration: none; font-weight: 700; border: 0; cursor: pointer; font-size: 1rem; }
.btn--small { padding: 10px 16px; font-size: 0.9rem; white-space: nowrap; }
.btn--ghost { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn--whatsapp { background: var(--accent); color: #fff; width: 100%; padding: 16px; font-size: 1.05rem; }

/* Hero */
.hero { position: relative; background: var(--surface); border-bottom: 1px solid var(--border); }
.hero--image { color: #fff; min-height: 62vh; display: flex; align-items: flex-end;
  background-image: linear-gradient(to top, var(--overlay) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.05) 100%), var(--hero-image);
  background-size: cover; background-position: center; }
.hero__inner { max-width: var(--max); margin: 0 auto; padding: 36px var(--pad) 28px; width: 100%; }
.hero__logo { width: 72px; height: 72px; border-radius: 16px; object-fit: cover; margin-bottom: 14px; background: #fff; }
.hero__logo--large { width: auto; height: 200px; max-width: 90%; border-radius: 0; object-fit: contain; background: transparent; margin: 0 auto 18px; }
.hero--logo .hero__inner { text-align: center; }
.hero--logo .hero__meta { justify-content: center; }
.hero__kicker { margin: 0 0 6px; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }
.hero__title { font-size: 2.1rem; }
.hero__tagline { margin: 8px 0 0; font-size: 1.1rem; opacity: 0.92; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 0; }
.hero__cta { margin-top: 18px; }
.hero:not(.hero--image) .hero__kicker { color: var(--muted); }
.badge { display: inline-block; padding: 5px 10px; border-radius: 999px; font-size: 0.82rem; font-weight: 600; background: rgba(255,255,255,0.18); backdrop-filter: blur(4px); }
.hero:not(.hero--image) .badge { background: var(--bg); border: 1px solid var(--border); }
.badge--open { color: #bbf7d0; } .badge--closed { color: #fecaca; }
.hero:not(.hero--image) .badge--open { color: #15803d; } .hero:not(.hero--image) .badge--closed { color: #b91c1c; }

/* Sections */
.sections { max-width: var(--max); margin: 0 auto; padding: 8px var(--pad) 0; }
.section { padding: 26px 0; border-bottom: 1px solid var(--border); }
.section:last-child { border-bottom: 0; }
.about p { margin: 0; font-size: 1.05rem; color: var(--text); }

/* Services */
.services { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.service { display: flex; align-items: center; justify-content: space-between; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; }
.service__name { font-size: 1.05rem; font-family: var(--font); }
.service__desc { margin: 2px 0 0; color: var(--muted); font-size: 0.92rem; }
.service__meta { margin: 6px 0 0; display: flex; gap: 12px; font-size: 0.9rem; color: var(--muted); }
.service__price { color: var(--text); font-weight: 700; }

/* Gallery */
.gallery { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
.gallery img { flex: 0 0 78%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); scroll-snap-align: start; }
@media (min-width: 560px) { .gallery img { flex-basis: 44%; } }

/* Hours */
.hours { margin: 0; display: grid; gap: 6px; }
.hours__row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--border); }
.hours__row dt { font-weight: 600; } .hours__row dd { margin: 0; color: var(--muted); }

/* Location */
.address { margin: 0 0 12px; }
.map { aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; background: var(--surface); }
.map iframe { width: 100%; height: 100%; border: 0; }

/* Testimonials */
.testimonials { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; }
.stars { margin: 0 0 6px; color: #f59e0b; letter-spacing: 2px; }
.testimonial blockquote { margin: 0; font-style: italic; }
.testimonial cite { display: block; margin-top: 8px; font-style: normal; color: var(--muted); font-size: 0.9rem; }

/* Footer */
.footer { max-width: var(--max); margin: 0 auto; padding: 28px var(--pad) 20px; text-align: center; color: var(--muted); font-size: 0.9rem; }
.footer p { margin: 4px 0; }
.footer__name { font-weight: 700; color: var(--text); }
.footer__contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; margin: 10px 0 6px; }
.footer__contact a { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; color: var(--text); font-weight: 600; }
.footer__contact svg { flex: 0 0 auto; color: var(--primary); }
.footer__location { margin-top: 6px; }
.footer__brand { margin-top: 14px; font-size: 0.8rem; opacity: 0.8; }
.footer__brand a { color: inherit; text-decoration: none; }

/* Floating CTA */
.fab { position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 20; display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; background: var(--accent); color: #fff; text-decoration: none; font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25); white-space: nowrap; max-width: calc(100% - 32px); }
.fab svg { flex: 0 0 auto; }

/* Booking sheet (dialog) */
.sheet { border: 0; padding: 0; width: 100%; max-width: 100%; margin: 0; background: transparent; color: var(--text); }
.sheet::backdrop { background: rgba(0,0,0,0.5); }
.sheet__form { background: var(--surface); border-radius: 20px 20px 0 0; padding: 18px var(--pad) 24px; position: fixed; left: 0; right: 0; bottom: 0; max-height: 92vh; overflow-y: auto; }
@media (min-width: 640px) { .sheet__form { position: static; max-width: 460px; margin: 0 auto; border-radius: 20px; } .sheet { margin: auto; } }
.sheet__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.sheet__head h2 { font-size: 1.2rem; margin: 0; }
.sheet__close { background: transparent; border: 0; font-size: 1.6rem; line-height: 1; color: var(--muted); cursor: pointer; padding: 4px 8px; }
.field { display: block; margin-bottom: 14px; }
.field > span { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--muted); }
.field select, .field textarea { width: 100%; padding: 12px; border-radius: 12px; border: 1px solid var(--border); background: var(--bg); color: var(--text); font: inherit; }
.chips { border: 0; padding: 0; margin: 0 0 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.chips legend { font-size: 0.85rem; font-weight: 600; color: var(--muted); margin-bottom: 6px; padding: 0; width: 100%; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span { display: inline-block; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--border); background: var(--bg); font-size: 0.92rem; cursor: pointer; }
.chip input:checked + span { background: var(--primary); color: var(--primary-contrast); border-color: var(--primary); }
.chip input:focus-visible + span { outline: 2px solid var(--primary); outline-offset: 2px; }
.sheet__preview { margin: 4px 0 12px; font-size: 0.9rem; color: var(--muted); min-height: 1.4em; }
