/* ============================================================
   ERM Fisioterapia — Design Tokens + Component Styles
   Fonts: Kumbh Sans (display + body)
   Source: "Manual básico de identidad corporativa ERM v1"
   ============================================================ */

:root {
  /* ===== BRAND COLORS ===== */
  --erm-mint:        #98c7bc;
  --erm-pine:        #336e63;
  --erm-coral:       #d37269;

  /* ===== TEAL SCALE ===== */
  --teal-50:   #f1f8f6;
  --teal-100:  #ddeee9;
  --teal-200:  #c2e0d8;
  --teal-300:  #98c7bc;
  --teal-400:  #6fb1a3;
  --teal-500:  #4f998a;
  --teal-600:  #3d8073;
  --teal-700:  #336e63;
  --teal-800:  #2a574f;
  --teal-900:  #1f413b;

  /* ===== CORAL SCALE ===== */
  --coral-50:  #fdf2f0;
  --coral-100: #fbe1dd;
  --coral-200: #f6c4bc;
  --coral-300: #eca096;
  --coral-400: #e08a7e;
  --coral-500: #d37269;
  --coral-600: #c0584f;
  --coral-700: #a3463e;

  /* ===== NEUTRALS ===== */
  --ink:       #243330;
  --ink-soft:  #4a5d58;
  --muted:     #7d8d89;
  --line:      #e3ebe8;
  --line-soft: #eef3f1;
  --surface:   #ffffff;
  --bg:        #f7faf9;
  --bg-cream:  #fbf9f5;
  --white:     #ffffff;

  /* ===== SEMANTIC ===== */
  --fg-1: var(--ink);
  --fg-2: var(--ink-soft);
  --fg-3: var(--muted);
  --primary:        var(--erm-pine);
  --primary-hover:  var(--teal-800);
  --secondary:      var(--erm-mint);
  --accent:         var(--erm-coral);
  --accent-hover:   var(--coral-600);
  --on-primary:     #ffffff;
  --on-accent:      #ffffff;

  /* ===== TYPE ===== */
  --font-display: "Kumbh Sans", system-ui, sans-serif;
  --font-body:    "Kumbh Sans", system-ui, sans-serif;

  /* ===== RADII ===== */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* ===== SHADOWS ===== */
  --shadow-sm:  0 1px 2px rgba(36,51,48,0.06), 0 1px 3px rgba(36,51,48,0.05);
  --shadow-md:  0 4px 12px rgba(36,51,48,0.07), 0 2px 6px rgba(36,51,48,0.05);
  --shadow-lg:  0 14px 40px rgba(31,65,59,0.12), 0 4px 12px rgba(31,65,59,0.06);
  --shadow-xl:  0 28px 70px rgba(31,65,59,0.16);

  /* ===== MOTION ===== */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 140ms;
  --dur: 240ms;
  --dur-slow: 420ms;
}

/* ============================================================
   Component Styles
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { overflow-x: hidden;
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
:focus-visible { outline: 3px solid var(--coral-300); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- shared atoms ---------- */
.eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
  margin: 0 0 16px;
}
.section-title {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.015em; line-height: 1.12; color: var(--ink); margin: 0;
  text-wrap: balance;
}
.section-sub {
  font-size: clamp(16px, 2vw, 18px); line-height: 1.6; color: var(--ink-soft);
  margin: 16px 0 0; text-wrap: pretty;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer; border: none; text-align: center;
  font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: 0.01em;
  border-radius: var(--r-pill); padding: 16px 30px; line-height: 1.2;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-accent { background: var(--erm-coral); color: #fff; box-shadow: var(--shadow-md); }
.btn-accent:hover { background: var(--coral-600); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.btn-primary { background: var(--erm-pine); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--teal-800); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #fff; box-shadow: var(--shadow-md); }
.btn-wa:hover { background: #1ebe5a; box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--erm-pine); border: 1.5px solid var(--teal-300); padding: 14px 28px; }
.btn-ghost:hover { background: var(--teal-50); border-color: var(--erm-pine); }
.btn-lg { font-size: 17px; padding: 18px 38px; }
.btn-block { width: 100%; }

.link-more {
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--erm-coral);
  display: inline-flex; align-items: center; gap: 8px; transition: gap var(--dur) var(--ease);
}
.link-more:hover { gap: 13px; }
.link-more svg { width: 18px; height: 18px; }

.section { padding: clamp(64px, 8vw, 112px) 0; }
.section.tint { background: var(--bg); }
.section.cream { background: var(--bg-cream); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto clamp(40px, 5vw, 60px); }

.trust-line {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--muted); font-weight: 500;
}
.trust-line svg { width: 16px; height: 16px; color: var(--erm-pine); }

/* ---------- topbar ---------- */
.topbar { background: var(--erm-mint); color: #fff; }
.topbar .container { display: flex; align-items: center; justify-content: flex-end; gap: 28px; min-height: 42px; flex-wrap: wrap; padding-top: 6px; padding-bottom: 6px; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: #fff; }
.topbar .tb-item svg { width: 15px; height: 15px; stroke: #fff; }
.topbar .tb-item:hover { color: #fff; opacity: 0.9; }

/* ---------- navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 86px; gap: 16px; }
.nav-logo { height: 56px; width: auto; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-wa {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--erm-pine);
  padding: 11px 18px; border-radius: var(--r-pill); border: 1.5px solid var(--teal-200);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav-wa:hover { background: var(--teal-50); border-color: var(--teal-300); }
.nav-wa svg { width: 19px; height: 19px; color: #25D366; }
.nav-wa .lbl { display: inline; }

/* ---------- hero ---------- */
.hero { padding: clamp(40px, 5vw, 72px) 0 clamp(56px, 6vw, 88px); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.avail-badge {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px;
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px; letter-spacing: 0.01em;
  color: var(--erm-pine); background: var(--teal-100); padding: 8px 16px; border-radius: var(--r-pill);
}
.avail-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #23c552; flex: none; animation: availPulse 2.2s ease-out infinite; }
@keyframes availPulse {
  0% { box-shadow: 0 0 0 0 rgba(35,197,82,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(35,197,82,0); }
  100% { box-shadow: 0 0 0 0 rgba(35,197,82,0); }
}
.hero h1 {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.06; letter-spacing: -0.02em; margin: 0 0 18px; color: var(--ink); text-wrap: balance;
}
.hero h1 .hl { color: var(--erm-coral); }
.hero .lede {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.4; color: var(--erm-pine); margin: 0 0 24px; text-wrap: pretty;
}
.hero-bullets { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 13px; }
.hero-bullets li { display: flex; align-items: center; gap: 11px; font-size: 16px; font-weight: 500; color: var(--ink); }
.hero-bullets svg { width: 20px; height: 20px; stroke: var(--erm-pine); flex: none; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-media { position: relative; overflow: visible; }
.hero-media .photo {
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}
.hero-media .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: -22px; bottom: 28px; display: block;
  background: #fff; border-radius: var(--r-md); box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 18px 22px; max-width: 300px;
}
.hero-badge .hb-stars { display: flex; gap: 2px; margin-bottom: 9px; }
.hero-badge .hb-stars svg { width: 18px; height: 18px; fill: #f5b945; stroke: none; }
.hero-badge .hb-rating { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.hero-badge .hb-rating strong { font-weight: 700; }
.hero-badge .hb-sub { font-size: 13px; line-height: 1.42; color: var(--ink-soft); }

/* ---------- why ERM ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 34px 30px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-icon { width: 60px; height: 60px; border-radius: var(--r-md); background: var(--coral-50); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.why-icon svg { width: 30px; height: 30px; stroke: var(--erm-coral); }
.why-card:nth-child(2) .why-icon { background: var(--teal-50); }
.why-card:nth-child(2) .why-icon svg { stroke: var(--erm-pine); }
.why-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 21px; margin: 0 0 12px; color: var(--ink); }
.why-card p { font-size: 15.5px; line-height: 1.62; color: var(--ink-soft); margin: 0; }

/* ---------- treatments with photos (2x2) ---------- */
.treat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; }
.treat-card {
  display: flex; flex-direction: column; background: #fff; border-radius: var(--r-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-md); overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.treat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.treat-photo { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--teal-50); }
.treat-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.treat-card:hover .treat-photo img { transform: scale(1.045); }
.treat-chip {
  position: absolute; left: 16px; bottom: 16px; width: 48px; height: 48px; border-radius: 14px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(4px); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
}
.treat-chip svg { width: 25px; height: 25px; stroke: var(--erm-pine); }
.treat-card.tc-coral .treat-chip svg { stroke: var(--erm-coral); }
.treat-body { padding: 24px 26px 28px; }
.treat-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 20px; margin: 0 0 8px; color: var(--ink); }
.treat-body p { font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* ---------- price cards ---------- */
.price-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 880px; margin: 0 auto; align-items: stretch; }
.price-card {
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-md); border: 1px solid var(--line);
  padding: 34px clamp(26px, 3vw, 38px); display: flex; flex-direction: column;
}
.price-card.pc-pelvico { border-color: var(--coral-200); }
.pc-head { padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.price-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 21px; margin: 0 0 8px; color: var(--ink); }
.pc-price { font-family: var(--font-display); font-weight: 800; font-size: 46px; line-height: 1; color: var(--erm-pine); }
.pc-pelvico .pc-price { color: var(--erm-coral); }
.pc-sub { font-size: 14px; color: var(--muted); margin: 8px 0 0; }
.pc-list { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.pc-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; line-height: 1.45; color: var(--ink); }
.pc-list svg { width: 19px; height: 19px; stroke: var(--erm-pine); flex: none; margin-top: 1px; }
.pc-pelvico .pc-list svg { stroke: var(--erm-coral); }
.price-note { text-align: center; max-width: 640px; margin: 32px auto 0; font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* ---------- testimonials ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-md);
  padding: 30px 28px; display: flex; flex-direction: column;
}
.stars { display: flex; gap: 3px; margin-bottom: 18px; }
.stars svg { width: 19px; height: 19px; fill: #f5b945; stroke: none; }
.review .quote { font-size: 15.5px; line-height: 1.65; color: var(--ink); margin: 0 0 24px; flex: 1; }
.review .who { display: flex; align-items: center; gap: 13px; }
.review .avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
}
.review .who > span:last-child { display: flex; flex-direction: column; min-width: 0; }
.review .who .name { font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--ink); }
.review .who .city { font-size: 13.5px; color: var(--muted); }
.reviews-foot { text-align: center; margin-top: 40px; }

/* ---------- faq ---------- */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-center { max-width: 820px; margin: 0 auto; }
.faq-q {
  width: 100%; text-align: left; cursor: pointer; border: none;
  display: flex; justify-content: space-between; gap: 18px; align-items: center;
  padding: 21px 26px; border-radius: var(--r-md);
  background: var(--erm-mint); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 16.5px; line-height: 1.35;
  transition: background var(--dur) var(--ease), border-radius var(--dur) var(--ease);
}
.faq-q:hover { background: var(--teal-400); }
.faq-item.open .faq-q { background: var(--erm-coral); border-radius: var(--r-md) var(--r-md) 0 0; }
.faq-item.open .faq-q:hover { background: var(--erm-coral); }
.faq-icon { flex: none; display: flex; color: #fff; }
.faq-icon svg { width: 22px; height: 22px; }
.faq-icon .ic-open { display: none; }
.faq-item.open .faq-icon .ic-open { display: block; }
.faq-item.open .faq-icon .ic-closed { display: none; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease); }
.faq-a-inner { padding: 20px 26px 6px; }
.faq-a p { font-size: 15.5px; line-height: 1.72; color: var(--ink-soft); margin: 0; }

/* ---------- contact + form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 56px); align-items: start; }
.form-col { display: flex; flex-direction: column; gap: 18px; }
.form-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: clamp(28px, 4vw, 40px); }
.form-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 26px; margin: 0 0 6px; letter-spacing: -0.01em; color: var(--ink); }
.form-card .sub { font-size: 15px; color: var(--ink-soft); margin: 0 0 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 14px 15px; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--erm-pine); background: #fff; box-shadow: 0 0 0 3px rgba(51,110,99,0.12); }
.field.err input, .field.err textarea { border-color: var(--coral-500); box-shadow: 0 0 0 3px rgba(211,114,105,0.12); }
.field .msg { font-size: 12.5px; color: var(--coral-600); margin-top: 6px; display: none; }
.field.err .msg { display: block; }
.check-row { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 22px; cursor: pointer; }
.check-row input { width: 19px; height: 19px; margin: 1px 0 0; accent-color: var(--erm-pine); flex: none; cursor: pointer; }
.check-row span { font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); }
.check-row a { color: var(--erm-pine); text-decoration: underline; }
.form-note { text-align: center; font-size: 12.5px; line-height: 1.5; color: var(--muted); margin: 14px 0 0; }
.form-ok { text-align: center; padding: 20px 0; }
.form-ok .ok-badge { width: 68px; height: 68px; border-radius: 50%; background: var(--teal-50); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-ok .ok-badge svg { width: 34px; height: 34px; stroke: var(--erm-pine); }
.form-ok h3 { margin-bottom: 10px; }

.contact-info h3 { font-family: var(--font-display); font-weight: 700; font-size: 26px; margin: 0 0 22px; letter-spacing: -0.01em; color: var(--ink); }
.contact-info .wa-top { margin-bottom: 26px; }
.contact-info .info-list { margin-bottom: 26px; }
.contact-info .map-wrap { margin-bottom: 0; }
.map-wrap { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 24px; aspect-ratio: 16/9; background: var(--teal-50); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.info-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15.5px; line-height: 1.5; color: var(--ink); }
.info-list .ii { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-50); display: flex; align-items: center; justify-content: center; flex: none; }
.info-list .ii svg { width: 20px; height: 20px; stroke: var(--erm-pine); }
.info-list a:hover { color: var(--erm-pine); }
.info-list .lbl { display: block; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; margin-bottom: 2px; font-family: var(--font-display); }
.info-list a, .info-list li, .footer a, .footer li { overflow-wrap: anywhere; }

/* ---------- footer ---------- */
.footer { background: var(--teal-900); color: rgba(255,255,255,0.74); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.3fr; gap: 44px; }
.footer-logo { height: 68px; width: auto; filter: brightness(0) invert(1); opacity: 0.96; margin-bottom: 20px; }
.footer p { font-size: 14.5px; line-height: 1.6; margin: 0 0 18px; max-width: 320px; }
.footer h5 { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: #fff; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.footer a:hover { color: var(--erm-mint); }
.footer .f-row { display: flex; gap: 11px; align-items: flex-start; }
.footer .f-row svg { width: 17px; height: 17px; flex: none; margin-top: 2px; stroke: var(--erm-mint); }
.socials { display: flex; gap: 12px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: background var(--dur) var(--ease); }
.socials a:hover { background: var(--erm-coral); }
.socials svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--erm-mint); }

/* ---------- whatsapp FAB ---------- */
.wa-fab {
  position: fixed; bottom: 22px; right: 22px; z-index: 70;
  display: flex; align-items: center; gap: 0;
  background: #25D366; color: #fff; border-radius: var(--r-pill);
  box-shadow: 0 8px 24px rgba(37,211,102,0.42); cursor: pointer;
  padding: 0; height: 60px; overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-fab:hover { transform: scale(1.04); box-shadow: 0 12px 30px rgba(37,211,102,0.5); }
.wa-fab .wa-ic { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; flex: none; }
.wa-fab .wa-ic svg { width: 32px; height: 32px; fill: #fff; }
.wa-fab .wa-lbl {
  font-family: var(--font-display); font-weight: 600; font-size: 15px; white-space: nowrap;
  max-width: 0; opacity: 0; padding-right: 0;
  transition: max-width var(--dur-slow) var(--ease), opacity var(--dur) var(--ease), padding var(--dur-slow) var(--ease);
}
.wa-fab.expanded .wa-lbl { max-width: 160px; opacity: 1; padding-right: 22px; }
.wa-fab.pulse { animation: waPulse 2s ease-out 2; }
@keyframes waPulse {
  0% { box-shadow: 0 8px 24px rgba(37,211,102,0.42), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 8px 24px rgba(37,211,102,0.42), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,0.42), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- cookie banner ---------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80;
  max-width: 720px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-xl); padding: 18px 22px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  transform: translateY(140%); transition: transform var(--dur-slow) var(--ease-out);
}
.cookie.show { transform: translateY(0); }
.cookie p { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); margin: 0; flex: 1; min-width: 0; }
.cookie p a { color: var(--erm-pine); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex: none; }
.cookie .btn { padding: 11px 22px; font-size: 14px; }

/* ---------- scroll reveal ---------- */
.js-anim .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.js-anim .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-anim .reveal { opacity: 1; transform: none; transition: none; }
  .wa-fab.pulse { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .why-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .reviews { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-media { order: -1; margin-bottom: 32px; }
  .hero-media .photo { aspect-ratio: 16/11; max-height: 360px; }
  .hero-badge { left: auto; right: 14px; bottom: 14px; max-width: 244px; padding: 13px 16px; }
  .hero-badge .hb-stars svg { width: 16px; height: 16px; }
  .hero-badge .hb-rating { font-size: 14px; }
  .hero-badge .hb-sub { font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 28px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer p { max-width: 480px; }
}

@media (max-width: 720px) {
  .topbar .tb-item:nth-child(2) { display: none; }
  .topbar .container { justify-content: center; }
  .hero-media { text-align: center; }
  .hero-badge {
    position: static; max-width: none; width: auto;
    margin: 14px auto 0; display: inline-flex; flex-wrap: wrap;
    align-items: center; gap: 6px 16px; padding: 14px 20px;
    box-shadow: var(--shadow-md);
  }
  .hero-badge .hb-stars { margin-bottom: 0; }
}

@media (max-width: 680px) {
  .treat-grid { grid-template-columns: 1fr; max-width: 460px; }
  .price-cards { grid-template-columns: 1fr; max-width: 440px; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 34px; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav .container { height: 66px; }
  .nav-logo { height: 36px; }
  .nav-wa .lbl { display: none; }
  .nav-wa { padding: 10px; }
  .nav .btn { padding: 12px 20px; font-size: 15px; }
  .hero { padding-top: 28px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-bullets li { font-size: 15px; }
  .footer { padding: 48px 0 24px; }
  .cookie { flex-direction: column; align-items: stretch; }
  .cookie-actions .btn { flex: 1; }
  .wa-fab.expanded .wa-lbl { max-width: 0; opacity: 0; padding-right: 0; }
}
