/* =========================================================================
   Dr. Ricardo Corral — Pediatría en Chihuahua
   Estilos base (mobile-first, sin dependencias)
   ========================================================================= */

:root {
  /* Paleta médica cálida */
  --blue:        #2E6FB0;   /* azul médico suave */
  --blue-600:    #245c95;
  --blue-700:    #1d4e7e;
  --blue-050:    #eef5fb;
  --mint:        #35c4b0;   /* aqua / verde menta */
  --mint-050:    #e6f8f5;
  --peach:       #ff9e7a;   /* calidez, uso puntual */
  --peach-050:   #fff1ea;

  --ink:         #1c2b39;   /* gris oscuro para texto */
  --muted:       #5b6b7b;
  --line:        #e6ecf2;
  --bg:          #ffffff;
  --bg-alt:      #f4f8fc;
  --bg-warm:     #fbfcfe;

  --wa:          #25d366;
  --wa-dark:     #1eb955;

  --radius:      14px;
  --radius-lg:   22px;
  --radius-full: 999px;

  --shadow-sm:   0 1px 2px rgba(20,45,70,.05);
  --shadow-md:   0 10px 24px -12px rgba(20,45,70,.18);
  --shadow-lg:   0 24px 50px -20px rgba(20,45,70,.28);

  --font:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;

  --maxw: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -.015em; margin: 0; color: var(--ink); text-wrap: balance; }
p { margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 760px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--blue); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* -------------------------------------------------------------- Botones -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem; font-family: var(--font); font-weight: 600; font-size: .98rem;
  border: 1.6px solid transparent; border-radius: var(--radius-full); cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { flex: none; }
.btn-sm { padding: .62rem 1.1rem; font-size: .9rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--blue-700); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-ghost { background: #fff; color: var(--blue-700); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 12px 26px -12px rgba(37,211,102,.7); }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); }

/* -------------------------------------------------------------- Header --- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 18px; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark {
  display: grid; place-items: center; width: 42px; height: 42px; flex: none;
  color: #fff; border-radius: 13px;
  background: linear-gradient(140deg, var(--blue) 0%, var(--mint) 130%);
  box-shadow: var(--shadow-md);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 1.12rem; color: var(--ink); }
.brand-sub { font-size: .74rem; color: var(--muted); letter-spacing: .02em; }

.nav { display: none; gap: 26px; }
.nav a { font-size: .93rem; font-weight: 500; color: var(--muted); position: relative; padding: 4px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--blue); border-radius: 2px; transition: width .22s ease; }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.header-cta { display: none; }

.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: flex; flex-direction: column; gap: 4px; padding: 12px 22px 20px; border-bottom: 1px solid var(--line); background: #fff; }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 12px 4px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border: none; margin-top: 10px; }
.mobile-menu .btn { color: #fff; }

/* --------------------------------------------------------------- Hero ---- */
.hero { position: relative; overflow: hidden; padding: 48px 0 52px; background: linear-gradient(180deg, var(--blue-050) 0%, #fff 82%); }
.hero-glow { position: absolute; top: -160px; right: -120px; width: 440px; height: 440px; border-radius: 50%; background: radial-gradient(circle, rgba(53,196,176,.28), transparent 66%); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; gap: 30px; align-items: center; }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; color: var(--blue-700); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: var(--radius-full); font-size: .82rem; font-weight: 600;
  box-shadow: var(--shadow-sm); margin-bottom: 18px;
}
.pill svg { color: var(--mint); }

.hero-copy h1 { font-size: clamp(2.3rem, 7vw, 3.7rem); font-weight: 700; letter-spacing: -.025em; }
/* Resaltado tipo marcador dibujado a mano (trazo SVG con bordes irregulares)
   que se pinta de izquierda a derecha al cargar. */
.hero-copy h1 .hl {
  color: var(--blue); position: relative; padding: 0 .1em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 52' preserveAspectRatio='none'%3E%3Cpath d='M5 33 C2 15 14 12 34 11 C120 6 210 9 300 6 C316 6 318 22 314 30 C312 37 316 44 300 45 C200 50 110 44 26 47 C6 48 3 44 5 33 Z' fill='%2335c4b0' opacity='0.55'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 62%;
  background-size: 0% .86em;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  animation: hlDraw 1.05s cubic-bezier(.22,1,.36,1) .55s forwards;
}
@keyframes hlDraw { to { background-size: 100% .86em; } }
.hero-copy .lead { margin: 20px 0 28px; font-size: 1.1rem; color: var(--muted); max-width: 34ch; text-wrap: pretty; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-cards { display: grid; gap: 12px; margin-top: 30px; }
.mini-card { display: flex; align-items: center; gap: 13px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 13px 15px; box-shadow: var(--shadow-sm); }
.mini-icon { display: grid; place-items: center; width: 42px; height: 42px; flex: none; border-radius: 11px; background: var(--blue-050); color: var(--blue); }
.mini-label { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.mini-value { display: block; font-weight: 600; color: var(--ink); font-size: .96rem; }

/* Visual del hero: foto original nítida enmarcada */
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-visual::before {
  content: ""; position: absolute; z-index: 0; width: min(78vw, 360px); aspect-ratio: 1;
  right: -4%; top: 6%; border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  background: linear-gradient(145deg, var(--blue) 0%, var(--mint) 118%); opacity: .14;
  animation: blobmorph 13s ease-in-out infinite;
}
@keyframes blobmorph {
  0%,100% { border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; }
  50%     { border-radius: 58% 42% 45% 55% / 44% 58% 42% 56%; }
}
.hero-photo {
  position: relative; z-index: 1; margin: 0; width: min(84vw, 420px); aspect-ratio: 4 / 5;
  border-radius: 24px; overflow: hidden; border: 6px solid #fff; box-shadow: var(--shadow-lg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; display: block; }
.hero-float {
  position: absolute; z-index: 2; left: -6px; bottom: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-full);
  padding: 9px 15px; font-size: .84rem; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-md); animation: floaty 5s ease-in-out infinite;
}
.hero-float svg { color: var(--peach); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ------------------------------------------------------------ Secciones -- */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin: 0 auto clamp(32px, 5vw, 52px); text-align: center; }
.section-head--left { margin-left: 0; margin-right: 0; text-align: left; max-width: 30ch; }
.section-head h2 { font-size: clamp(1.75rem, 4.6vw, 2.55rem); text-wrap: balance; }
.section-sub { margin-top: 14px; color: var(--muted); font-size: 1.05rem; text-wrap: pretty; }

.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

/* Confianza — banda de color (momento de impacto) */
.band {
  position: relative; overflow: hidden; color: #fff;
  padding: clamp(56px, 8vw, 92px) 0;
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue) 52%, #2ea6a0 128%);
}
.band-orb { position: absolute; top: -30%; right: -8%; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(53,196,176,.55), transparent 62%); pointer-events: none; }
.band .container { position: relative; z-index: 1; }
.band-head { max-width: 40ch; margin-bottom: clamp(34px, 5vw, 52px); }
.band-head h2 { color: #fff; font-size: clamp(1.85rem, 5vw, 2.7rem); text-wrap: balance; }
.band-head p { margin-top: 14px; color: rgba(255,255,255,.86); font-size: 1.08rem; text-wrap: pretty; }
.band-grid { display: grid; gap: 34px 28px; grid-template-columns: 1fr; }
.band-item h3 { color: #fff; font-size: 1.14rem; margin: 14px 0 7px; }
.band-item p { color: rgba(255,255,255,.82); font-size: .96rem; text-wrap: pretty; }
.band-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 15px;
  background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.22); }

/* Servicios */
.service { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, border-color .3s ease; }
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--blue) 30%, var(--line)); }
.service-icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 15px; background: linear-gradient(140deg, var(--blue-050), var(--mint-050)); color: var(--blue); margin-bottom: 16px; transition: transform .3s cubic-bezier(.22,1,.36,1); }
.service:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.service h3 { font-size: 1.12rem; margin-bottom: 8px; }
.service p { color: var(--muted); font-size: .95rem; text-wrap: pretty; }
.service em { color: var(--muted); font-style: italic; font-size: .88rem; }

/* Para papás — flujo numerado conectado */
.flow { list-style: none; margin: 0; padding: 0; display: grid; gap: 28px 24px; counter-reset: none; }
.flow-step { position: relative; padding-top: 6px; }
.flow-num {
  display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 16px;
  font-family: var(--serif); font-size: 1.35rem; font-weight: 700; color: #fff;
  background: linear-gradient(140deg, var(--blue) 0%, var(--mint) 130%);
  border-radius: 50%; box-shadow: var(--shadow-md);
}
.flow-step h3 { font-size: 1.1rem; margin-bottom: 7px; }
.flow-step p { color: var(--muted); font-size: .96rem; text-wrap: pretty; }

/* Foto en encabezado de Servicios */
.svc-intro { display: grid; gap: 24px; align-items: center; margin-bottom: clamp(28px, 4vw, 44px); }
.svc-photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 16 / 10; }

/* Para papás — foto + pasos apilados */
.papas-grid { display: grid; gap: 28px; align-items: center; }
.papas-photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.papas-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; display: block; aspect-ratio: 4 / 3; }
.flow--stack { display: flex; flex-direction: column; gap: 22px; grid-template-columns: none; }
.flow--stack::before { display: none; }
.flow--stack .flow-step { display: flex; align-items: flex-start; gap: 16px; padding-top: 0; }
.flow--stack .flow-num { margin-bottom: 0; flex: none; }

/* FAQ — foto + acordeón */
.faq-grid { display: grid; gap: 30px; align-items: start; }
.faq-aside h2 { font-size: clamp(1.75rem, 4.6vw, 2.55rem); }
.faq-aside .section-sub { margin: 14px 0 22px; }
.faq-photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.faq-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 26%; display: block; aspect-ratio: 5 / 4; }

/* Consultorio */
.consult-grid { display: grid; gap: 30px; align-items: center; }
.consult-copy .section-sub { margin: 14px 0 22px; }
.info-list { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 14px; }
.info-list li { display: flex; align-items: flex-start; gap: 13px; }
.info-icon { display: grid; place-items: center; width: 42px; height: 42px; flex: none; border-radius: 12px; background: #fff; border: 1px solid var(--line); color: var(--blue); }
.info-k { display: block; font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.info-v { display: block; font-weight: 600; color: var(--ink); }
.map-placeholder { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); min-height: 320px; }
.map-placeholder iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.consult-photo { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }
.consult-tag {
  position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px); color: var(--blue-700);
  padding: 8px 13px; border-radius: var(--radius-full); font-size: .82rem; font-weight: 600;
  box-shadow: var(--shadow-md);
}
.consult-tag svg { color: var(--mint); }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s ease, border-color .2s ease; }
.faq-item[open] { box-shadow: var(--shadow-md); border-color: transparent; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 20px; font-weight: 600; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--blue); transition: transform .25s ease; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 20px 18px; color: var(--muted); font-size: .97rem; }

/* CTA + formulario */
.cta-card { display: grid; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.cta-copy { background: linear-gradient(150deg, var(--blue-700) 0%, var(--blue) 60%, var(--mint) 150%); color: #fff; padding: 40px 32px; }
.cta-copy h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.2rem); }
.cta-copy p { color: rgba(255,255,255,.9); margin: 14px 0 24px; }

.contact-form { background: #fff; padding: 34px 30px; }
.contact-form h3 { font-size: 1.25rem; margin-bottom: 18px; }
.field { margin-bottom: 15px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; font-family: var(--font); font-size: .97rem; color: var(--ink);
  background: var(--bg-alt); border: 1.5px solid var(--line); border-radius: 11px; transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px var(--blue-050); }
.field textarea { resize: vertical; }
.contact-form .btn-block { margin-top: 6px; }

.form-success { text-align: center; padding: 12px 6px; }
.success-icon { display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: var(--mint-050); color: var(--mint); margin-bottom: 12px; }
.form-success strong { display: block; font-family: var(--serif); font-size: 1.35rem; margin-bottom: 6px; }
.form-success p { color: var(--muted); margin-bottom: 16px; }

/* --------------------------------------------------------------- Footer -- */
.site-footer { background: #14263a; color: #cdd8e4; padding: 46px 0 30px; }
.footer-grid { display: grid; gap: 24px; padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: #9fb0c2; }
.footer-brand .brand-mark { box-shadow: none; }
.footer-loc { margin-top: 12px; color: #9fb0c2; font-size: .92rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 22px; align-content: start; }
.footer-nav a { color: #cdd8e4; font-size: .93rem; }
.footer-nav a:hover { color: #fff; }
.footer-note { margin-top: 22px; display: grid; gap: 6px; }
.footer-note p { font-size: .84rem; color: #8397ab; }
.footer-copy { color: #6f8298 !important; }

/* ------------------------------------------------------ WhatsApp flotante */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: inline-flex; align-items: center; gap: 0; overflow: hidden;
  background: var(--wa); color: #fff; height: 58px; border-radius: var(--radius-full);
  padding: 0 15px; box-shadow: 0 14px 30px -8px rgba(37,211,102,.6);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -8px rgba(37,211,102,.7); }
.wa-float svg { flex: none; }
.wa-float-label { font-weight: 600; max-width: 0; opacity: 0; margin-left: 0; transition: max-width .3s ease, opacity .3s ease, margin-left .3s ease; white-space: nowrap; }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: waPulse 2.4s infinite; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* --------------------------------------------------------- Animaciones --- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-copy h1 .hl { background-size: 100% .86em; }
}

/* ------------------------------------------------------------- Responsive */
@media (min-width: 560px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .band-grid { grid-template-columns: 1fr 1fr; }
  .flow { grid-template-columns: 1fr 1fr; }
  .hero-cards { grid-template-columns: 1fr 1fr; }
  .wa-float-label { max-width: 120px; opacity: 1; margin-left: 9px; }
}

@media (min-width: 860px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle, .mobile-menu { display: none !important; }

  .hero { padding: 72px 0 64px; }
  .hero-grid { grid-template-columns: 1.02fr .98fr; gap: 48px; }
  .hero-copy .lead { font-size: 1.15rem; }

  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .band-grid { grid-template-columns: repeat(4, 1fr); gap: 40px 32px; }

  /* Flujo con línea conectora entre los pasos */
  .flow { grid-template-columns: repeat(4, 1fr); gap: 36px; position: relative; }
  .flow::before {
    content: ""; position: absolute; left: 23px; right: 23px; top: 29px; height: 2px;
    background: repeating-linear-gradient(90deg, color-mix(in srgb, var(--blue) 34%, transparent) 0 8px, transparent 8px 16px);
    z-index: 0;
  }
  .flow-step { z-index: 1; }

  .consult-grid { grid-template-columns: 1fr 1.05fr; gap: 44px; }
  .cta-card { grid-template-columns: 1fr 1fr; }

  .svc-intro { grid-template-columns: 1fr 1.05fr; gap: 40px; }
  .svc-photo img { aspect-ratio: 16 / 11; }

  .papas-grid { grid-template-columns: .92fr 1.08fr; gap: 46px; }
  .papas-photo img { aspect-ratio: 4 / 5; object-position: 50% 24%; }

  .faq-grid { grid-template-columns: .82fr 1.18fr; gap: 46px; }
  .faq-aside { position: sticky; top: 96px; }
  .faq-photo img { aspect-ratio: 3 / 4; }
}

@media (min-width: 1024px) {
  .hero { padding: 92px 0 76px; }
  .section-head { margin-bottom: clamp(40px, 4vw, 56px); }
}
