:root {
  --surface: #fcf9f5;
  --surface-low: #f6f3f0;
  --surface-container: #f0edea;
  --surface-high: #eae8e4;
  --canvas: #ffffff;
  --ink: #1b1c1a;
  --ink-soft: #44483e;
  --primary: #506539;
  --primary-deep: #3b4e25;
  --primary-container: #a8bf8b;
  --primary-fixed: #d3ebb3;
  --on-primary: #ffffff;
  --secondary: #8e4c3c;
  --secondary-container: #fea995;
  --secondary-fixed: #ffdad2;
  --coral: #f6a28e;
  --tertiary: #715b31;
  --tertiary-fixed: #fedea9;
  --gold: #e8ca96;
  --blush: #f8dedf;
  --lavender: #dcc5e1;
  --sky: #cde7f0;
  --sage-card: #d2e2c0;
  --gold-card: #fae7c4;
  --coral-card: #ffdcd4;
  --outline: rgba(43, 43, 41, 0.08);
  --font-display: Quicksand, sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --radius-sm: 0.5rem;
  --radius: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --radius-xl: 3rem;
  --pill: 9999px;
  --shadow: 0 8px 24px -4px rgba(43, 43, 41, 0.05), 0 2px 6px -1px rgba(168, 191, 139, 0.08);
  --shadow-lg: 0 16px 36px -6px rgba(43, 43, 41, 0.08), 0 4px 12px -2px rgba(43, 43, 41, 0.04);
  --wrap: 1280px;
  --gutter: 1.5rem;
  --header-h: 5rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  background: var(--ink);
  color: var(--surface);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.skip-link:focus { top: 12px; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.icon {
  font-family: "Material Symbols Outlined", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  display: inline-block;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  user-select: none;
  vertical-align: middle;
}
.icon.fill { font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.lede {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1.5px solid transparent;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn .icon { font-size: 20px; }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--primary-deep); }

.hero-actions .btn-primary {
  background: var(--primary-container);
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(80, 101, 57, 0.16);
}
.hero-actions .btn-primary:hover { background: #98b078; }

.btn-coral {
  background: var(--primary-container);
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(80, 101, 57, 0.16);
}
.btn-coral:hover { background: #98b078; }

.btn-soft {
  background: var(--surface-low);
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(43, 43, 41, 0.06);
}
.btn-soft:hover { background: var(--surface-container); }

.hero-actions .btn-soft {
  background: var(--blush);
  color: var(--ink);
}
.hero-actions .btn-soft:hover { background: #f0d0d2; }

.btn-blush {
  background: var(--blush);
  color: var(--ink);
}
.btn-blush:hover { background: #f0d0d2; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(27, 28, 26, 0.2);
}
.btn-ghost:hover { background: var(--blush); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 249, 245, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px -2px rgba(43, 43, 41, 0.06);
}
.nav-bar .wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
  margin-right: auto;
}
.brand img {
  width: auto;
  height: 36px;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.brand-tag {
  display: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.site-nav {
  display: none;
  align-items: center;
  gap: 4px;
  background: var(--surface-low);
  padding: 4px;
  border-radius: var(--pill);
  box-shadow: 0 2px 8px -1px rgba(43, 43, 41, 0.04);
}
.site-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 16px;
  border-radius: var(--pill);
  white-space: nowrap;
}
.site-nav a:hover {
  color: var(--ink);
  background: var(--surface);
}
.site-nav a[aria-current="page"] {
  background: var(--blush);
  color: var(--ink);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-cta { white-space: nowrap; }

.agendar-menu { position: relative; }
.agendar-menu > summary {
  list-style: none;
  cursor: pointer;
  font: inherit;
}
.agendar-menu > summary::-webkit-details-marker { display: none; }
.agendar-menu > summary::marker { content: ""; }
.agendar-menu > summary .caret { transition: transform 0.15s ease; }
.agendar-menu[open] > summary .caret { transform: rotate(180deg); }
.hero-actions .agendar-menu .menu-panel { left: 0; right: auto; }

.nav-menu { display: block; position: relative; }
.nav-menu > summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--pill);
  background: var(--primary);
  color: #fff;
}
.nav-menu > summary::-webkit-details-marker,
.nav-menu > summary::marker { display: none; content: ""; }
.menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 220px;
  background: var(--canvas);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: grid;
  z-index: 20;
}
.menu-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  color: var(--ink);
}
.menu-panel a:hover { background: var(--surface-low); }
.menu-panel .icon { color: var(--primary); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 64px;
}
.hero-blob {
  position: absolute;
  border-radius: var(--pill);
  pointer-events: none;
  filter: blur(72px);
  z-index: 0;
}
.hero-blob-a {
  top: -8rem;
  left: -5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(211, 235, 179, 0.45);
}
.hero-blob-b {
  top: 10rem;
  right: -6rem;
  width: 28rem;
  height: 28rem;
  background: rgba(255, 218, 210, 0.45);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  align-items: center;
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 16ch;
}
.hero-copy h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
}
.hero-copy .lede {
  font-size: 18px;
  line-height: 1.55;
  max-width: 36rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-container);
  color: var(--ink-soft);
  padding: 4px 16px;
  border-radius: var(--pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.chip-dot.coral { background: var(--secondary); }
.chip-dot.gold { background: var(--tertiary); }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-frame {
  position: relative;
  width: 100%;
  max-width: 28rem;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: linear-gradient(to top right, rgba(248, 222, 223, 0.7), var(--surface), rgba(220, 197, 225, 0.6));
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
}
.hero-logo-wrap {
  position: relative;
  display: grid;
  width: min(22rem, 88%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #f6f1eb;
  box-shadow: var(--shadow);
}
.hero-logo-wrap img,
.hero-logo-wrap video {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}
.hero-logo-wrap video {
  pointer-events: none;
  background: transparent;
  transition: opacity 0.35s ease;
}
.hero-logo-wrap video.is-done {
  opacity: 0;
}
.hero-logo-wrap video::-webkit-media-controls,
.hero-logo-wrap video::-webkit-media-controls-enclosure,
.hero-logo-wrap video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

/* Trust */
.trust {
  background: var(--surface-low);
  padding: 64px 0;
}
.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 32px;
}
.section-head h2,
.about-copy h2,
.services-intro h2,
.contact-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-top: 4px;
}
.services-intro h2 { margin-top: 0; }
.section-head .lede { margin-top: 8px; }

.trust-grid {
  display: grid;
  gap: 16px;
}
.trust-card {
  background: var(--canvas);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 1px 4px rgba(43, 43, 41, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 26px;
}
.trust-icon.sage { background: var(--primary-fixed); color: #0f2000; }
.trust-icon.coral { background: var(--secondary-fixed); color: #390b03; }
.trust-icon.gold { background: var(--tertiary-fixed); color: #271900; }
.trust-icon.sky { background: var(--sky); color: #234351; }
.trust-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}
.trust-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.js-reveal .trust-card {
  opacity: 0;
  transform: translateX(-1.25rem);
}
.js-reveal .trust.is-in .trust-card {
  opacity: 1;
  transform: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.js-reveal .trust.is-in .trust-card:nth-child(1) { transition-delay: 0.08s; }
.js-reveal .trust.is-in .trust-card:nth-child(2) { transition-delay: 0.22s; }
.js-reveal .trust.is-in .trust-card:nth-child(3) { transition-delay: 0.36s; }
.js-reveal .trust.is-in .trust-card:nth-child(4) { transition-delay: 0.5s; }

/* About */
.about { padding: 64px 0; }
.about-card {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 40px;
  align-items: center;
}
.about-photo {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-photo img {
  width: min(20rem, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  outline: 8px solid rgba(211, 235, 179, 0.35);
}
.rescue-badge {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-container);
  color: var(--ink);
  padding: 6px 16px;
  border-radius: var(--pill);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.about-copy { display: flex; flex-direction: column; gap: 16px; }
.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-copy p { color: var(--ink-soft); line-height: 1.65; }
.stats {
  display: grid;
  gap: 12px;
  padding-top: 8px;
}
.stat {
  background: var(--blush);
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink-soft);
}
.stat span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* Services */
.services {
  background: var(--surface-low);
  padding: 64px 0;
}
.services-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.services-intro-copy { max-width: 28rem; }
.services-intro-copy .lede { margin-top: 8px; }
.service-grid {
  display: grid;
  gap: 24px;
}
.service-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 100%;
  box-shadow: 0 1px 4px rgba(43, 43, 41, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card.blush { background: var(--blush); }
.service-card.lavender { background: var(--lavender); }
.service-card.sage { background: var(--sage-card); }
.service-card.gold { background: var(--gold-card); }
.service-card.sky { background: var(--sky); }
.service-card.coral { background: var(--coral-card); }
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.service-card.blush .service-icon,
.service-card.coral .service-icon { color: var(--secondary); }
.service-card.lavender .service-icon { color: #5c3e66; }
.service-card.sage .service-icon { color: var(--primary); }
.service-card.gold .service-icon { color: var(--tertiary); }
.service-card.sky .service-icon { color: #234351; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 8px;
}
.service-card.blush .service-link,
.service-card.coral .service-link { color: var(--secondary); }
.service-card.lavender .service-link { color: #5c3e66; }
.service-card.sage .service-link { color: var(--primary); }
.service-card.gold .service-link { color: var(--tertiary); }
.service-card.sky .service-link { color: #234351; }
.service-link:hover { text-decoration: underline; }
.service-link .icon { font-size: 16px; }

/* Patients / gallery */
.patients { padding: 64px 0; }
.patient-carousel {
  position: relative;
  --reel: min(18rem, 72vw);
}
.patient-track {
  position: relative;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px calc((100% - var(--reel)) / 2) 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.patient-track::-webkit-scrollbar { display: none; }
.patient-card {
  flex: 0 0 var(--reel);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  background: var(--canvas);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(43, 43, 41, 0.04);
  opacity: 0.42;
  transform: scale(0.92);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.patient-card.is-active {
  opacity: 1;
  transform: none;
}
.patient-card:not(.is-active) video {
  pointer-events: none;
}
.patient-media {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--surface-high);
  overflow: hidden;
}
.patient-media img,
.patient-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-stage {
  position: relative;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--canvas);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
}
.carousel-btn .icon { font-size: 28px; }
.carousel-btn:hover { background: var(--blush); }
.carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
  background: var(--canvas);
}
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }
.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--surface-high);
  cursor: pointer;
}
.carousel-dot[aria-current="true"] {
  background: var(--primary);
  width: 22px;
  border-radius: var(--pill);
}

/* Featured video */
.featured {
  background: rgba(220, 197, 225, 0.3);
  padding: 64px 0;
}
.featured-carousel {
  position: relative;
}
.featured-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  max-width: 64rem;
  margin: 0 auto;
}
.featured-track::-webkit-scrollbar { display: none; }
.featured-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 32px;
  align-items: center;
}
.featured-card:not(.is-active) video {
  pointer-events: none;
}
.featured-player {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #30302e;
  aspect-ratio: 9 / 16;
  max-height: 32rem;
  width: min(100%, 18rem);
  margin: 0 auto;
}
.featured-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.featured-carousel .carousel-dots { margin-top: 16px; }
.video-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blush);
  color: var(--ink);
  padding: 4px 16px;
  border-radius: var(--pill);
  font-size: 11px;
  font-weight: 700;
}
.featured-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.25;
}
.featured-copy .lede { line-height: 1.65; }
.featured-copy .btn-soft {
  background: var(--primary-container);
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(80, 101, 57, 0.16);
}
.featured-copy .btn-soft:hover { background: #98b078; }

/* Testimonials */
.quotes { padding: 64px 0; }
.quote-grid {
  display: grid;
  gap: 24px;
}
.quote-card {
  background: var(--canvas);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 4px rgba(43, 43, 41, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.stars { display: flex; gap: 2px; color: #f5c542; }
.stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}
.quote-card p {
  font-style: italic;
  line-height: 1.65;
}
.quote-card footer {
  padding-top: 16px;
}
.quote-card strong { display: block; font-size: 14px; }
.quote-card span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}

/* Contact */
.contact {
  background: var(--surface-container);
  padding: 64px 0;
}
.contact-card {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 40px;
  align-items: center;
}
.contact-copy { display: flex; flex-direction: column; gap: 24px; }
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.info-icon.sage { background: var(--primary-fixed); color: #0f2000; }
.info-icon.coral { background: var(--secondary-fixed); color: #390b03; }
.info-icon.gold { background: var(--tertiary-fixed); color: #271900; }
.info-row h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}
.info-row p { font-size: 14px; color: var(--ink-soft); }
.info-row p strong { color: var(--ink); font-weight: 700; }
.note-coral { color: var(--secondary); font-weight: 600; font-size: 12px; margin-top: 4px; }
.note-sage { color: var(--primary); font-weight: 600; font-size: 12px; margin-top: 4px; }
.info-row .btn { margin-top: 12px; }
.info-row .contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.info-row .contact-cta .btn { margin-top: 0; }
.map-panel {
  position: relative;
  min-height: 20rem;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-low);
}
.map-panel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--surface-low);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  gap: 40px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 24rem;
  margin-top: 12px;
  line-height: 1.5;
}
.site-footer h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.site-footer h3 .icon { color: var(--primary); font-size: 20px; }
.site-footer li,
.site-footer .footer-col p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--primary); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 16px;
  font-size: 14px;
  color: var(--ink-soft);
}

.wa-fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 40;
}
.wa-fab > summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--pill);
  background: var(--primary-container);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(80, 101, 57, 0.16);
  animation: fab-pulse 2.6s ease-in-out infinite;
}
.wa-fab > summary:hover,
.wa-fab > summary:focus-visible,
.wa-fab[open] > summary {
  animation: none;
}
.wa-fab > summary:hover { background: #98b078; }
.wa-fab .menu-panel {
  top: auto;
  bottom: calc(100% + 10px);
  right: 0;
}
@keyframes fab-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(80, 101, 57, 0.16);
  }
  50% {
    transform: scale(1.035);
    box-shadow: 0 8px 24px rgba(80, 101, 57, 0.26);
  }
}

.page-404 {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  padding: 64px 0;
  text-align: center;
}
.page-404 h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}
.page-404 p {
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.js-reveal main > section:not(.hero) {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js-reveal main > section.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 760px) {
  .nav-actions .agendar-menu { display: none; }
  .hero-actions .agendar-menu,
  .hero-actions .agendar-menu > summary,
  .hero-actions .btn { width: 100%; }
}

@media (min-width: 640px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .brand-tag { display: block; }
}

@media (min-width: 768px) {
  .about-card,
  .contact-card,
  .featured-card { padding: 40px; }
  .featured-player {
    width: min(100%, 20rem);
  }
  .quote-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 7fr 5fr; }
  .about-card { grid-template-columns: 5fr 7fr; }
  .contact-card { grid-template-columns: 1fr 1fr; }
  .featured-card { grid-template-columns: 1fr 1fr; }
  .services-intro {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .trust-card h3 {
    font-size: 16px;
    white-space: nowrap;
  }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .quote-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 4fr 3fr 3fr 2fr; }
}

@media (min-width: 1100px) {
  .site-nav { display: flex; }
  .nav-menu { display: none; }
  :root { --gutter: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover,
  .service-card:hover { transform: none; }
  .js-reveal main > section:not(.hero),
  .js-reveal .trust-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-logo-wrap video { display: none; }
  .wa-fab > summary { animation: none; }
  .patient-track,
  .featured-track { scroll-behavior: auto; }
}
