/* CR Clinic — design system
   Bege rosado, off-white, dourado. Boutique, não hospitalar.
   Serifa elegante nos títulos (Cormorant Garamond), sans fina no corpo (Poppins).
*/

:root {
  --cream: #F5EEE9;
  --beige-light: #E6D8CB;
  --beige: #CDB29A;
  --beige-deep: #A9866B;
  --warm-gray: #8F8175;
  --gold: #B79567;
  --gold-deep: #7C5D34;
  --gold-ink: #4A3620;
  --ink: #2C241F;
  --ink-soft: #6C6259;
  --white: #FFFFFF;
  --whatsapp-green: #25D366;
  --whatsapp-green-dark: #1ebe5a;
  --max: 1180px;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Poppins', -apple-system, 'Helvetica Neue', Arial, sans-serif;

  --shadow-soft: 0 20px 50px -20px rgba(140, 111, 69, .25);
  --radius: 8px;
  --radius-sm: 5px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-weight: 300;
  padding-top: 92px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}
h1 em, h2 em { font-style: italic; color: var(--gold-deep); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 14px;
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
/* prefers-reduced-motion reduz MOVIMENTO, nunca FUNCIONALIDADE: sob reduced-motion
   o conteúdo aparece de imediato (sem depender do reveal por scroll), nunca fica
   invisível. */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible { opacity: 1 !important; transform: none !important; transition: none; }
}

/* stagger — filhos diretos de grids revelam em cascata */
.services-grid.is-visible > *, .team-grid.is-visible > *, .gallery-grid.is-visible > *, .local-info.is-visible > *, .stats-grid.is-visible > *, .kids-stack.is-visible > *, .testimonial-grid.is-visible > * {
  animation: stagger-in .6s ease backwards;
}
.services-grid.is-visible > *:nth-child(1), .team-grid.is-visible > *:nth-child(1), .gallery-grid.is-visible > *:nth-child(1), .local-info.is-visible > *:nth-child(1), .stats-grid.is-visible > *:nth-child(1), .kids-stack.is-visible > *:nth-child(1), .testimonial-grid.is-visible > *:nth-child(1) { animation-delay: .05s; }
.services-grid.is-visible > *:nth-child(2), .team-grid.is-visible > *:nth-child(2), .gallery-grid.is-visible > *:nth-child(2), .local-info.is-visible > *:nth-child(2), .stats-grid.is-visible > *:nth-child(2), .kids-stack.is-visible > *:nth-child(2), .testimonial-grid.is-visible > *:nth-child(2) { animation-delay: .13s; }
.services-grid.is-visible > *:nth-child(3), .team-grid.is-visible > *:nth-child(3), .gallery-grid.is-visible > *:nth-child(3), .local-info.is-visible > *:nth-child(3), .stats-grid.is-visible > *:nth-child(3), .kids-stack.is-visible > *:nth-child(3), .testimonial-grid.is-visible > *:nth-child(3) { animation-delay: .21s; }
.services-grid.is-visible > *:nth-child(4), .local-info.is-visible > *:nth-child(4), .stats-grid.is-visible > *:nth-child(4), .gallery-grid.is-visible > *:nth-child(4), .kids-stack.is-visible > *:nth-child(4), .team-grid.is-visible > *:nth-child(4) { animation-delay: .29s; }
.services-grid.is-visible > *:nth-child(5), .gallery-grid.is-visible > *:nth-child(5), .kids-stack.is-visible > *:nth-child(5) { animation-delay: .37s; }
.services-grid.is-visible > *:nth-child(6), .kids-stack.is-visible > *:nth-child(6) { animation-delay: .45s; }
@keyframes stagger-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ---------- motivo floral decorativo ---------- */
.flower-mark { width: 22px; height: 22px; color: var(--gold); flex: 0 0 auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px; border-radius: 999px; font-size: 14px; font-weight: 500;
  letter-spacing: .03em; transition: background .25s ease, border-color .25s ease, transform .15s ease-out; border: 1px solid transparent;
  cursor: pointer; will-change: transform;
}
.btn-primary { background: var(--gold-deep); color: var(--white); }
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(44,36,31,.25); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-whatsapp { background: var(--whatsapp-green); color: var(--white); margin-top: 18px; }
.btn-whatsapp:hover { background: var(--whatsapp-green-dark); }

/* ---------- header ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2.5px; width: 0%; z-index: 80;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep)); transition: width .1s linear;
}
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(245,238,233,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(183,149,103,.18);
  box-shadow: 0 0 0 rgba(44,36,31,0);
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -14px rgba(44,36,31,.28); }
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 92px; transition: height .3s ease;
}
.site-header.is-scrolled .wrap { height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon { height: 42px; width: auto; transition: height .3s ease; }
.site-header.is-scrolled .brand-icon { height: 34px; }
.brand-word { height: 28px; width: auto; transition: height .3s ease; }
.site-header.is-scrolled .brand-word { height: 22px; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a:not(.nav-cta):not(.nav-ig) {
  position: relative; font-size: 14px; color: var(--ink-soft); transition: color .2s; padding-bottom: 3px;
}
.main-nav a:not(.nav-cta):not(.nav-ig)::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--gold-deep); transition: right .25s ease;
}
.main-nav a:not(.nav-cta):not(.nav-ig):hover { color: var(--gold-deep); }
.main-nav a:not(.nav-cta):not(.nav-ig):hover::after { right: 0; }
.main-nav .nav-cta {
  background: var(--gold-deep); color: var(--white); padding: 10px 22px; border-radius: 999px;
  transition: background .2s, transform .2s;
}
.main-nav .nav-cta:hover { background: var(--ink); transform: translateY(-1px); }
.nav-ig {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px; border: 1px solid rgba(44,36,31,.2);
  color: var(--ink-soft); flex: 0 0 auto; transition: all .2s;
}
.nav-ig svg { width: 17px; height: 17px; }
.nav-ig:hover { color: var(--white); background: var(--gold-deep); border-color: var(--gold-deep); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 34px; height: 34px; background: none; border: none; cursor: pointer;
}
.nav-toggle span { height: 1.5px; width: 100%; background: var(--ink); transition: all .25s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: -15% 0; z-index: 0; will-change: transform; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-textpanel .eyebrow.reveal { transition-delay: .1s; }
.hero-textpanel h1.reveal { transition-delay: .22s; transform: translateY(34px); }
/* reset precisa da mesma especificidade do seletor acima, senão o h1 fica travado deslocado (sobrepondo o parágrafo) */
.hero-textpanel h1.reveal.is-visible { transform: none; }
.hero-textpanel .hero-lede.reveal { transition-delay: .38s; }
.hero-textpanel .hero-actions.reveal { transition-delay: .52s; }
.hero-credential.reveal { transition-delay: .68s; transform: translateY(24px) scale(.96); }
.hero-credential.reveal.is-visible { transform: none; }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(30,24,20,.86) 0%, rgba(30,24,20,.68) 40%, rgba(30,24,20,.4) 75%, rgba(30,24,20,.3) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 660px; padding-top: 40px; padding-bottom: 60px; }
/* painel escuro atrás do texto — garante leitura independente do que tem na foto de fundo */
.hero-textpanel {
  background: rgba(20,16,13,.42); backdrop-filter: blur(3px);
  padding: 36px 40px; border-radius: var(--radius); max-width: 600px;
}
.hero .eyebrow { color: var(--beige-light); }
.hero h1 { font-size: clamp(38px, 5.5vw, 62px); color: var(--white); margin-bottom: 22px; }
/* palavra que "digita" no hero — tom dourado claro pra ler bem sobre o painel escuro */
.hero h1 em.tw { color: #EBCEA2; font-style: italic; white-space: nowrap; }
.hero h1 em.tw .tw-text { text-shadow: 0 1px 10px rgba(0,0,0,.35); }
.hero h1 em.tw .tw-caret {
  display: inline-block; width: 2px; height: .82em; margin-left: 4px;
  background: currentColor; vertical-align: -0.04em; border-radius: 1px;
  animation: twBlink 1.05s steps(1) infinite;
}
@keyframes twBlink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .hero h1 em.tw .tw-caret { animation: none; opacity: 0; } }
.hero-lede { color: rgba(255,255,255,.88); font-size: 17px; max-width: 460px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.45); }
.hero-actions .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* cartão de credencial flutuando sobre a foto do hero */
.hero-credential {
  position: absolute; z-index: 2; right: 7%; bottom: 150px;
  display: flex; align-items: center; gap: 14px;
  background: rgba(245,238,233,.94); backdrop-filter: blur(6px);
  padding: 18px 24px; border-radius: var(--radius); box-shadow: var(--shadow-soft);
  max-width: 260px;
}
.hero-credential .flower-mark { width: 30px; height: 30px; }
.hero-credential div { display: flex; flex-direction: column; }
.hc-eyebrow { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.hero-credential strong { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--ink); line-height: 1.25; }
.hc-cro { font-size: 12px; color: var(--gold-deep); font-weight: 500; margin-top: 1px; }

/* curva de transição no rodapé do hero */
.section-curve { position: absolute; z-index: 1; left: 0; right: 0; bottom: -1px; line-height: 0; }
.section-curve svg { width: 100%; height: 70px; display: block; }
.section-curve path { fill: var(--ink); }

/* curva de transição entre Serviços e Kids — gradiente suave, borda esfumada, respiração bem sutil */
.section-curve-top {
  top: -1px; bottom: auto; z-index: 0; height: 84px; filter: blur(3px);
  animation: curve-breathe 9s ease-in-out infinite;
}
.section-curve-top svg { height: 84px; }
.section-curve-top path { fill: url(#kidsCurveGrad); opacity: .82; }
@keyframes curve-breathe {
  0%, 100% { transform: scaleY(1) translateY(0); }
  50% { transform: scaleY(1.08) translateY(-2px); }
}

/* curva espelhada no rodapé da seção Kids — eco discreto, não repete o arco-íris cheio */
.section-curve-bottom {
  z-index: 0; height: 90px; filter: blur(4px) saturate(.55);
}
.section-curve-bottom svg { height: 90px; }
.section-curve-bottom path { fill: url(#kidsCurveGrad); opacity: .3; }

/* ---------- stats ---------- */
.stats-strip { background: var(--ink); padding: 56px 0; position: relative; overflow: hidden; }
.stats-flower { position: absolute; top: 50%; left: 50%; width: 150px; height: 150px; transform: translate(-50%,-50%); opacity: .07; color: var(--gold); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; position: relative; }
.stat-n { display: block; font-family: var(--font-display); font-size: 40px; color: var(--gold); font-weight: 500; }
.stat-l { display: block; font-size: 12.5px; color: rgba(245,238,233,.65); margin-top: 6px; letter-spacing: .02em; }

/* ---------- sections ---------- */
.section { padding: 100px 0; }
.section.off { background: var(--beige-light); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; position: relative; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); }
.head-flower { width: 32px; height: 32px; margin-bottom: 8px; }

/* about */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-soft); }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-copy h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 22px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 16px; font-size: 15.5px; }
.check-list { list-style: none; margin-top: 22px; }
.check-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 14.5px; color: var(--ink); }
.check-list li .flower-mark { width: 18px; height: 18px; }

/* services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(44,36,31,.08); perspective: 1200px; }
.service-card {
  display: block; background: var(--white); padding: 40px 34px 56px; color: inherit; text-decoration: none;
  transition: background .3s, transform .15s ease-out; position: relative; overflow: hidden; will-change: transform;
}
.service-card:hover { background: var(--cream); }
.service-cta {
  position: absolute; left: 34px; right: 34px; bottom: 22px; display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 500; color: var(--gold-deep); opacity: .75; transition: opacity .2s ease, gap .2s ease;
}
.service-cta svg { width: 14px; height: 14px; flex: 0 0 auto; }
.service-card:hover .service-cta { opacity: 1; gap: 10px; }
.service-n {
  position: absolute; top: -6px; right: 14px; font-family: var(--font-display);
  font-size: 90px; color: var(--beige-light); font-weight: 500; line-height: 1; z-index: 0;
  transition: color .3s;
}
.service-card:hover .service-n { color: var(--beige); }
.service-card h3 { font-size: 22px; margin: 34px 0 12px; position: relative; z-index: 1; }
.service-card p { font-size: 14px; color: var(--ink-soft); position: relative; z-index: 1; }

/* ---------- Momento Sorrir Kids ---------- */
.kids-section {
  background:
    radial-gradient(rgba(111,179,184,.10) 2px, transparent 2px) 0 0/34px 34px,
    radial-gradient(rgba(232,121,142,.10) 2px, transparent 2px) 17px 17px/34px 34px,
    var(--cream);
  position: relative; overflow: hidden; padding-top: 96px; padding-bottom: 200px;
}
.kd { position: absolute; color: var(--gold-deep); pointer-events: none; z-index: 0; animation: kd-drift 6s ease-in-out infinite; }
.kd:nth-child(3n) { animation-duration: 7.5s; }
.kd:nth-child(3n+1) { animation-duration: 5.5s; animation-delay: -1.2s; }
.kd:nth-child(3n+2) { animation-duration: 6.8s; animation-delay: -2.6s; }
@keyframes kd-drift { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
.kd-dino-hero {
  position: absolute; bottom: 40px; right: 2%; width: 220px; height: auto;
  pointer-events: none; z-index: 6; transform-origin: bottom center;
  filter: drop-shadow(0 10px 16px rgba(140,111,69,.22));
  animation: kd-bob 4.2s ease-in-out infinite;
}
@keyframes kd-bob { 0%, 100% { transform: translateY(0) rotate(-1.5deg); } 50% { transform: translateY(-14px) rotate(1.5deg); } }
.kids-section .wrap { position: relative; z-index: 2; }
.kids-dots { display: inline-flex; gap: 6px; margin-bottom: 14px; }
.kids-dots i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; animation: kd-dot-pop 1.6s ease-in-out infinite; }
.kids-dots i:nth-child(1) { background: #F2A65A; animation-delay: 0s; }
.kids-dots i:nth-child(2) { background: #E8798E; animation-delay: .18s; }
.kids-dots i:nth-child(3) { background: #6FB3B8; animation-delay: .36s; }
@keyframes kd-dot-pop { 0%, 60%, 100% { transform: scale(1); } 30% { transform: scale(1.5); } }
.kids-lede { color: var(--ink-soft); font-size: 15.5px; margin-top: 10px; }
.kids-stack { display: grid; grid-template-columns: repeat(5, minmax(120px, 176px)); justify-content: start; gap: 20px 16px; padding: 10px 0 20px; }
.kids-card {
  background: var(--white); padding: 10px 10px 16px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft); transition: transform .35s ease, box-shadow .35s ease;
  position: relative; transform-origin: center center;
}
.kids-card:hover {
  transform: rotate(0deg) scale(1.4) !important;
  box-shadow: 0 20px 36px -12px rgba(140,111,69,.45);
  z-index: 5;
}
.kids-photo { overflow: hidden; border-radius: var(--radius-sm); }
.kids-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.kids-card:nth-child(6n+1) { transform: rotate(-3deg); }
.kids-card:nth-child(6n+2) { transform: rotate(2deg); }
.kids-card:nth-child(6n+3) { transform: rotate(-1.5deg); }
.kids-card:nth-child(6n+4) { transform: rotate(3deg); }
.kids-card:nth-child(6n+5) { transform: rotate(-2deg); }
.kids-card:nth-child(6n+6) { transform: rotate(1.5deg); }
.kids-card::after {
  content: ''; position: absolute; left: 10px; right: 10px; bottom: 6px; height: 4px; border-radius: 4px;
}
.kids-card:nth-child(3n+1)::after { background: #F2A65A; }
.kids-card:nth-child(3n+2)::after { background: #E8798E; }
.kids-card:nth-child(3n+3)::after { background: #6FB3B8; }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 14px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.span-2 { grid-column: span 2; }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0,260px)); gap: 28px; justify-content: center; perspective: 1200px; }
.team-card { text-align: center; transition: transform .15s ease-out; will-change: transform; }
.team-photo { aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; box-shadow: var(--shadow-soft); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-card h3 { font-size: 24px; }
.team-role { font-size: 13px; color: var(--ink-soft); margin-top: 4px; letter-spacing: .02em; }

/* ---------- depoimentos ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card {
  text-align: left; position: relative; display: flex; flex-direction: column;
  background: var(--white); padding: 34px 28px 26px; border-radius: var(--radius); box-shadow: var(--shadow-soft);
}
.testimonial-badge {
  position: absolute; top: 18px; right: 18px; font-size: 10px; letter-spacing: .04em; text-transform: uppercase;
  background: var(--gold-deep); color: var(--white); padding: 4px 10px; border-radius: 999px; font-weight: 500;
}
.quote-mark {
  display: block; font-family: var(--font-display); font-style: italic; font-size: 52px;
  color: var(--gold); line-height: 1; margin-bottom: 2px;
}
.testimonial-text { font-family: var(--font-display); font-size: 17.5px; font-style: italic; color: var(--ink); line-height: 1.5; margin-bottom: 22px; flex: 1; }
.testimonial-foot { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--beige-light); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 16px;
  flex: 0 0 auto;
}
.testimonial-foot div { text-align: left; }
.testimonial-author { font-size: 13.5px; font-weight: 500; color: var(--ink); }
.testimonial-source { font-size: 12px; color: var(--ink-soft); margin-top: 1px; }
.testimonial-note { text-align: center; font-size: 11.5px; color: var(--ink-soft); opacity: .8; margin-top: 20px; }

/* ---------- instagram cta ---------- */
.ig-cta {
  background: var(--ink); color: var(--white); border-radius: var(--radius);
  padding: 56px 40px 44px; text-align: center; position: relative; overflow: hidden;
}
.ig-flower { position: absolute; top: -40px; right: -40px; width: 220px; height: 220px; opacity: .07; }
.ig-cta .ig-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.ig-cta h2 { color: var(--white); font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 34px; }
.ig-profile-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm);
  max-width: 420px; margin: 0 auto 30px; padding: 22px 22px 0; text-align: left;
}
.ig-profile-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.ig-avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; border: 2px solid var(--gold); }
.ig-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ig-profile-name { font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 6px; font-family: var(--font-body); }
.ig-profile-name svg { width: 13px; height: 13px; }
.ig-profile-handle { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }
.ig-profile-followers { font-size: 12px; color: rgba(255,255,255,.75); margin-top: 6px; }
.ig-profile-followers b { color: var(--gold); font-weight: 600; }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin: 18px -22px 0; }
.ig-grid a { aspect-ratio: 1; overflow: hidden; display: block; }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ig-grid a:hover img { transform: scale(1.08); }
.btn-ig {
  display: inline-flex; align-items: center; gap: 10px; background: var(--gold-deep); color: var(--white);
  padding: 14px 28px; border-radius: 999px; font-size: 14px; font-weight: 500;
}
.btn-ig:hover { background: var(--gold); }
.btn-ig svg { width: 18px; height: 18px; stroke: #fff; }

/* ---------- owner ---------- */
.owner-section { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: center; }
.owner-section.flip { grid-template-columns: 1fr 320px; }
.owner-section.flip .owner-photo { order: 2; }
.owner-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-soft); }
.owner-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.owner-section h2 { font-size: clamp(28px, 3.6vw, 38px); margin-bottom: 18px; }
.owner-section p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 14px; }
.owner-handle { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font-weight: 600; font-size: 14px; color: var(--gold-deep); }

/* ---------- contact ---------- */
.local-grid { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.local-map {
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 4/3;
  background: radial-gradient(circle at 50% 42%, var(--beige-light) 0%, var(--beige) 100%);
}
.local-map::before {
  content: ''; position: absolute; inset: 0; z-index: 0; opacity: .4;
  background-image: radial-gradient(rgba(140,111,69,.25) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}
.local-map-pin {
  position: absolute; top: 42%; left: 50%; transform: translate(-50%,-50%); z-index: 0; width: 46px; height: 46px;
  color: var(--gold-deep); opacity: .55;
}
.local-map iframe { position: relative; z-index: 1; display: block; width: 100%; height: 100%; border: 0; filter: grayscale(.15) contrast(1.02); background: transparent; }
.map-cta {
  position: absolute; z-index: 2; left: 20px; bottom: 20px; display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); color: var(--ink); padding: 13px 22px; border-radius: 999px; font-size: 14px; font-weight: 500;
  box-shadow: 0 14px 30px -10px rgba(44,36,31,.35); transition: background .2s, color .2s;
}
.map-cta svg { width: 17px; height: 17px; color: var(--gold-deep); }
.map-cta:hover { background: var(--gold-deep); color: var(--white); }
.map-cta:hover svg { color: var(--white); }

.local-info { display: flex; flex-direction: column; gap: 16px; }
.local-info-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); padding: 22px 24px; border-radius: var(--radius); border: 1px solid rgba(183,149,103,.2);
}
.local-icon {
  width: 42px; height: 42px; border-radius: 50%; background: var(--beige-light); color: var(--gold-ink);
  display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
}
.local-icon svg { width: 20px; height: 20px; }
.local-contact-block { flex: 1 1 auto; min-width: 0; }
.local-info-card h3 { font-family: var(--font-display); font-size: 19px; margin-bottom: 7px; color: var(--gold-ink); font-weight: 600; }
.local-info-card p, .local-info-card a { font-size: 14.5px; color: var(--ink); font-weight: 400; line-height: 1.5; }
.local-info-card a:hover { color: var(--gold-ink); }
.btn-sm { padding: 9px 18px; font-size: 12.5px; margin-top: 10px; }
.local-info-card .contact-line {
  display: flex; align-items: flex-start; gap: 8px; padding: 9px 0; font-size: 13px;
  overflow-wrap: anywhere; color: var(--ink); font-weight: 500; line-height: 1.5;
}
.local-info-card .contact-line + .contact-line { border-top: 1px solid rgba(183,149,103,.22); }
.local-info-card .contact-line span { white-space: normal; }
.local-info-card .contact-line:hover { color: var(--gold-ink); }
.contact-icon { width: 18px; height: 18px; flex: 0 0 auto; color: var(--gold-ink); margin-top: 3px; }
.contact-icon.is-insta { color: transparent; }
.hours-list { display: flex; flex-direction: column; gap: 10px; }
.hours-row { display: flex; flex-direction: column; font-size: 14px; }
.hours-row span:first-child { color: var(--ink); font-weight: 600; }
.hours-row span:last-child { color: var(--ink-soft); margin-top: 1px; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(245,238,233,.7); padding: 32px 0; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-right: calc(32px + 84px); }
.footer-copy { font-size: 13px; min-width: 0; flex: 0 1 auto; }

/* ---------- whatsapp float ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%; background: var(--whatsapp-green);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(37,211,102,.4);
  animation: wa-pulse 2.4s infinite;
}
.wa-float svg { width: 30px; height: 30px; color: var(--white); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,.4); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,.4), 0 0 0 10px rgba(37,211,102,.12); }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .main-nav { position: fixed; top: 92px; left: 0; right: 0; background: var(--cream); flex-direction: column;
    align-items: flex-start; gap: 0; padding: 8px 32px 20px; border-bottom: 1px solid rgba(183,149,103,.18);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; }
  .main-nav.nav-open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav a { padding: 12px 0; width: 100%; }
  .main-nav .nav-cta { margin-top: 8px; text-align: center; }
  .main-nav .nav-ig { width: 36px; padding: 0; margin: 4px 0 2px; }
  .nav-toggle { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-item.span-2 { grid-column: span 2; }
  .team-grid { grid-template-columns: repeat(2, minmax(0,260px)); max-width: 560px; margin: 0 auto; }
  .owner-section, .owner-section.flip { grid-template-columns: 1fr; gap: 30px; }
  .owner-section.flip .owner-photo { order: 0; }
  .owner-photo { max-width: 280px; margin: 0 auto; }
  .local-grid { grid-template-columns: 1fr; }
  .local-map { min-height: 300px; }
  .local-map iframe { min-height: 300px; }
  .section { padding: 70px 0; }
  .hero { flex-direction: column; justify-content: center; padding: 140px 0 48px; }
  .hero-credential { position: static; margin: 28px auto 0; max-width: 460px; }
  .kids-stack { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .kd-dino-hero { width: 140px; right: 3%; bottom: 20px; }
}

@media (max-width: 560px) {
  body { padding-top: 76px; }
  .site-header .wrap { height: 76px; }
  .brand-icon { height: 32px; }
  .brand-word { height: 21px; }
  .hero { min-height: 88vh; padding-bottom: 20px; }
  .hero-textpanel { padding: 26px 24px; }
  .wrap { padding: 0 20px; }
  .footer-grid { padding-right: 78px; }
  .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .quote-mark { font-size: 56px; }
  .kids-stack { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
  .kids-card { transform: none !important; }
  .local-map, .local-map iframe { min-height: 220px; }
  .map-cta { left: 14px; right: 14px; bottom: 14px; justify-content: center; font-size: 13px; padding: 12px 16px; }
  .kd-dino-hero { width: 100px; right: 2%; bottom: 14px; }
}
