/* =============================================================
   Posta Veterinaria Alerce — landing page
   Dirección: estudio/agencia profesional, no genérica ni infantil.
   Fotografía grande como protagonista, mucho aire, jerarquía tipográfica
   fuerte, tarjetas mínimas (solo donde aportan), microanimaciones suaves.
   Paleta de marca: azul marino (principal), naranjo/amarillo (acento),
   blanco (limpieza) — tomada del logo oficial.
   =============================================================
   ÍNDICE
   1. Tokens
   2. Reset & base
   3. Utilities
   4. Typography
   5. Components (botones, tarjetas, nav, chips, formulario)
   6. Sections
   7. Effects & animation
   8. Responsive
   9. Reduced-motion
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Marca */
  --navy:        #102a4c;   /* azul marino principal (del logo) */
  --navy-2:      #1b3f6e;   /* azul marino, un tono más claro para degradados */
  --blue:        #2f6fb0;   /* azul secundario — enlaces, detalles */
  --navy-wash:   #eaf0f8;   /* lavado pálido de azul para fondos/tarjetas */
  --amber:       #f2921c;   /* naranjo/amarillo — acento y CTA principal */
  --amber-dark:  #d97a08;
  --amber-wash:  #fef1de;
  --mint-wash:   #eaf5f1;   /* verde-menta pálido, eco del fondo del logo */

  --bg:          #fdfcfa;
  --card:        #ffffff;
  --ink:         #17222f;
  --ink-soft:    #3d4b59;
  --ink-mute:    #6d7a87;
  --line:        rgba(23, 34, 47, 0.11);

  --shadow-sm: 0 10px 24px -14px rgba(16, 42, 76, 0.22);
  --shadow-md: 0 24px 48px -20px rgba(16, 42, 76, 0.28);
  --shadow-lg: 0 36px 70px -24px rgba(16, 42, 76, 0.32);

  --display: "Plus Jakarta Sans", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  --sans:    "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1200px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul { list-style: none; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--navy);
  text-wrap: balance;
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 800;
}
::selection { background: var(--amber-wash); color: var(--navy); }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 720px) { .container { padding-inline: 2.5rem; } }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--navy); color: #fff;
  border-radius: 999px; font-weight: 700; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--display); font-size: .8rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--amber-dark);
}
.eyebrow svg { width: 16px; height: 16px; flex-shrink: 0; }

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); position: relative; }
.section-head { max-width: 640px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section-head p { margin-top: .9rem; font-size: 1.08rem; color: var(--ink-mute); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-tint { background: var(--navy-wash); }
.section-tint-mint { background: var(--mint-wash); }

.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--navy); }
.link-arrow svg { width: 16px; height: 16px; transition: transform .3s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(4px); }

/* =============================================================
   4. Typography
   ============================================================= */
h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.22rem; }

/* =============================================================
   5. Components
   ============================================================= */

/* --- Logo: usa el archivo real cuando esté disponible; si falla, cae a un
   lockup tipográfico para no bloquear el diseño mientras se entrega el logo
   oficial (que se integra sin modificar, tal como pide el cliente). --- */
.logo { display: inline-flex; align-items: center; gap: .6rem; }
.brand-logo-img { height: 44px; width: 44px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.brand-logo-text { display: none; font-family: var(--display); font-weight: 800; font-size: 1.02rem; color: var(--navy); line-height: 1.05; }
.logo.is-placeholder .brand-logo-img { display: none; }
.logo.is-placeholder .brand-logo-text { display: block; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.9rem; border-radius: 999px;
  font-family: var(--display); font-weight: 700; font-size: .98rem; white-space: nowrap;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-soft), background-color .3s, border-color .3s;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: .12s; }

.btn-primary { background: var(--amber); color: #1a1206; box-shadow: 0 16px 30px -12px rgba(242, 146, 28, 0.55); }
.btn-primary:hover { background: var(--amber-dark); box-shadow: 0 20px 38px -12px rgba(217, 122, 8, 0.6); }

.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 16px 30px -12px rgba(16, 42, 76, 0.45); }
.btn-navy:hover { background: var(--navy-2); }

.btn-ghost { background: #fff; color: var(--navy); border: 2px solid var(--line); }
.btn-ghost:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }

.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border: 2px solid rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); border-color: #fff; }

.btn-whatsapp { background: #ffffff; color: #1f9c4a; border: 2px solid rgba(31, 156, 74, 0.35); }
.btn-whatsapp:hover { border-color: #1f9c4a; box-shadow: var(--shadow-sm); }

.btn-block { width: 100%; }
.btn-sm { padding: .75rem 1.3rem; font-size: .88rem; }

/* --- Card --- */
.card { background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.card-border { background: var(--card); border-radius: var(--radius-lg); border: 1px solid var(--line); }

/* --- Nav --- */
.nav { position: fixed; top: 0; inset-inline: 0; z-index: 200; padding-block: 1rem; transition: padding .35s var(--ease-out); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .55rem .8rem .55rem 1.1rem;
  border-radius: 999px; background: rgba(253,252,250,0);
  transition: background-color .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.nav.is-scrolled { padding-block: .6rem; }
.nav.is-scrolled .nav-inner { background: rgba(253,252,250,0.94); box-shadow: var(--shadow-sm); backdrop-filter: blur(8px); }
.nav-links { display: none; align-items: center; gap: 1.4rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
@media (min-width: 1120px) { .nav-links { gap: 1.8rem; } }
.nav-link { position: relative; font-family: var(--display); font-weight: 700; font-size: .92rem; color: var(--ink-soft); padding: .3rem 0; white-space: nowrap; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; border-radius: 2px;
  background: var(--amber); transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.nav-link:hover { color: var(--navy); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: none; }
@media (min-width: 640px) { .nav-cta { display: inline-flex; padding: .75rem 1.4rem; } }
.nav-burger { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--navy-wash); flex-shrink: 0; }
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger svg { width: 20px; height: 20px; color: var(--navy); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 190; background: rgba(253, 252, 250, 0.99);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  clip-path: circle(0% at calc(100% - 2.4rem) 2.4rem);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile.is-open { clip-path: circle(150% at calc(100% - 2.4rem) 2.4rem); }
.nav-mobile a { font-family: var(--display); font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.nav-mobile .btn { margin-top: 1rem; }

/* --- Floating WhatsApp button (solo escritorio; en mobile ya está la barra inferior) --- */
.fab-whatsapp {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 250;
  width: 60px; height: 60px; border-radius: 50%;
  background: #1f9c4a; color: #fff;
  display: none; place-items: center;
  box-shadow: 0 16px 34px -10px rgba(31, 156, 74, 0.6);
  transition: transform .35s var(--ease-out);
}
@media (min-width: 640px) { .fab-whatsapp { display: grid; } }
.fab-whatsapp:hover { transform: translateY(-3px) scale(1.06); }
.fab-whatsapp svg { width: 28px; height: 28px; }

/* --- Barra inferior móvil --- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 260;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(253, 252, 250, 0.97); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -8px 24px -16px rgba(16, 42, 76, 0.3);
}
@media (min-width: 640px) { .mobile-bar { display: none; } }
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .2rem;
  padding: .6rem .3rem .55rem; font-family: var(--display); font-weight: 700; font-size: .68rem;
  color: var(--ink-soft);
}
.mobile-bar a:not(:last-child) { border-right: 1px solid var(--line); }
.mobile-bar svg { width: 20px; height: 20px; }
.mobile-bar a.is-accent { color: var(--amber-dark); }
.mobile-bar a.is-accent svg { color: var(--amber-dark); }
.mobile-bar a.is-whatsapp { color: #1f9c4a; }

/* Deja aire al final de la página para que la barra fija no tape el footer */
@media (max-width: 639px) {
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom, 0)); }
}

/* --- Chips / indicadores --- */
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem; border-radius: 999px; background: var(--navy-wash);
  font-size: .85rem; font-weight: 700; color: var(--navy);
}
.chip svg { width: 16px; height: 16px; flex-shrink: 0; }

.quickfacts { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .quickfacts { grid-template-columns: repeat(3, 1fr); } }
.quickfact { display: flex; gap: 1rem; align-items: flex-start; padding: 1.4rem; }
.quickfact-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; background: var(--amber-wash); color: var(--amber-dark);
}
.quickfact-icon svg { width: 22px; height: 22px; }
.quickfact strong { display: block; color: var(--navy); font-family: var(--display); font-size: .98rem; }
.quickfact span { display: block; margin-top: .2rem; font-size: .89rem; color: var(--ink-mute); }

/* =============================================================
   6. Sections
   ============================================================= */

/* --- Hero --- */
.hero { position: relative; padding-top: clamp(7.5rem, 12vw, 9.5rem); padding-bottom: clamp(3rem, 6vw, 5rem); overflow: clip; }
.hero-grid { display: grid; gap: clamp(2.5rem, 6vw, 4rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }

.hero-copy h1 { margin-top: .8rem; }
.hero-lede { margin-top: 1.2rem; font-size: 1.14rem; color: var(--ink-mute); max-width: 52ch; }
.hero-actions { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-chips { margin-top: 1.7rem; display: flex; flex-wrap: wrap; gap: .6rem; }

.hero-photo-wrap { position: relative; }
.hero-photo {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: clip;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 640px) { .hero-photo { aspect-ratio: 5/4; } }
@media (min-width: 960px) { .hero-photo { aspect-ratio: 4/5; } }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo.is-placeholder img { display: none; }
.hero-photo.is-placeholder {
  background:
    radial-gradient(circle at 22% 20%, rgba(255,255,255,.14), transparent 45%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 55%, var(--amber) 160%);
  display: grid; place-items: center; text-align: center; padding: 2rem;
}
.hero-photo.is-placeholder::before {
  content: ""; position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(circle, #fff 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}
.hero-photo-badge {
  position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: .7rem; color: #fff;
}
.hero-photo-badge svg { width: 54px; height: 54px; opacity: .92; }
.hero-photo-badge span { font-family: var(--display); font-weight: 800; font-size: 1.1rem; max-width: 20ch; }

.hero-float-card {
  position: absolute; left: -1.2rem; bottom: -1.2rem; z-index: 2;
  padding: 1.1rem 1.3rem; display: flex; align-items: center; gap: .8rem;
  animation: floatCard 5.5s ease-in-out infinite;
}
@media (max-width: 639px) { .hero-float-card { left: .8rem; bottom: -1rem; padding: .9rem 1.1rem; } }
.hero-float-icon { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--amber-wash); color: var(--amber-dark); flex-shrink: 0; }
.hero-float-icon svg { width: 20px; height: 20px; }
.hero-float-card strong { display: block; font-family: var(--display); color: var(--navy); font-size: 1rem; }
.hero-float-card span { display: block; font-size: .82rem; color: var(--ink-mute); }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* --- Servicios --- */
.services-grid { display: grid; gap: 1.4rem 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-item { padding: 1.9rem 1.7rem; }
.service-item:hover { box-shadow: var(--shadow-md); }
.service-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm); display: grid; place-items: center;
  background: var(--navy-wash); color: var(--navy); margin-bottom: 1.1rem;
}
.service-icon svg { width: 26px; height: 26px; }
.service-item h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.service-item p { font-size: .95rem; color: var(--ink-mute); }
.service-note {
  margin-top: 1.8rem; display: flex; gap: .8rem; align-items: flex-start;
  padding: 1.2rem 1.4rem; border-radius: var(--radius-md); background: var(--amber-wash);
}
.service-note svg { width: 22px; height: 22px; color: var(--amber-dark); flex-shrink: 0; margin-top: .1rem; }
.service-note p { font-size: .93rem; color: var(--ink-soft); }
.service-note strong { color: var(--navy); }

/* --- Sobre nosotros --- */
.about-grid { display: grid; gap: 2.6rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 960px) { .about-grid { grid-template-columns: .9fr 1.1fr; gap: 3.6rem; } }
.about-photo { border-radius: var(--radius-lg); overflow: clip; box-shadow: var(--shadow-md); aspect-ratio: 4/5; position: relative; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo.is-placeholder img { display: none; }
.about-photo.is-placeholder { background: linear-gradient(155deg, var(--mint-wash), var(--navy-wash)); display: grid; place-items: center; }
.about-photo.is-placeholder::after { content: ""; width: 64px; height: 64px; background: var(--navy); mask: radial-gradient(circle, #000 60%, transparent 62%); border-radius: 50%; opacity: .12; }
.about-list { margin-top: 1.8rem; display: grid; gap: 1.1rem; }
.about-list li { display: flex; gap: 1rem; align-items: flex-start; }
.about-list .tick {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; margin-top: .1rem;
  background: var(--amber-wash); color: var(--amber-dark); display: grid; place-items: center;
}
.about-list .tick svg { width: 15px; height: 15px; }
.about-list strong { color: var(--navy); }

/* --- Galería --- */
.gallery-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-card { position: relative; overflow: clip; aspect-ratio: 1/1; border-radius: var(--radius-md); }
.gallery-card:nth-child(4n+1) { aspect-ratio: 4/5; }
@media (min-width: 640px) { .gallery-card:nth-child(3n+2) { aspect-ratio: 4/5; } }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 5s var(--ease-soft); }
.gallery-card:hover img { transform: scale(1.08); }
.gallery-card.is-placeholder img { display: none; }
.gallery-card.is-placeholder { background: linear-gradient(155deg, var(--navy-wash), var(--mint-wash)); display: grid; place-items: center; }
.gallery-card.is-placeholder svg { width: 30px; height: 30px; color: var(--navy); opacity: .28; }

/* --- FAQ --- */
.faq-wrap { max-width: 780px; margin-inline: auto; }
.accordion-item { border-radius: var(--radius-md); margin-bottom: .8rem; overflow: hidden; background: var(--card); border: 1px solid var(--line); }
.accordion-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.4rem;
  font-family: var(--display); font-weight: 800; color: var(--navy); font-size: 1.02rem;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-chevron {
  width: 26px; height: 26px; flex-shrink: 0; display: grid; place-items: center; border-radius: 50%;
  background: var(--navy-wash); color: var(--navy);
  transition: transform .35s var(--ease-soft);
}
.accordion-item[open] .accordion-chevron { transform: rotate(135deg); }
.accordion-body { padding: 0 1.4rem 1.3rem; color: var(--ink-mute); max-width: 64ch; }

/* --- Reseñas --- */
.reviews-head { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; justify-content: space-between; margin-bottom: clamp(2rem, 5vw, 3rem); }
.rating-badge { display: flex; align-items: center; gap: 1rem; }
.rating-badge-score { font-family: var(--display); font-weight: 800; font-size: 2.6rem; color: var(--navy); line-height: 1; }
.rating-stars { display: flex; gap: .15rem; color: var(--amber); }
.rating-stars svg { width: 18px; height: 18px; }
.rating-badge-meta { font-size: .88rem; color: var(--ink-mute); margin-top: .3rem; }
.reviews-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
.review-card { padding: 1.8rem 1.9rem; }
.review-mark { font-family: var(--display); font-size: 2.2rem; color: var(--amber); line-height: 1; opacity: .8; }
.review-quote { margin-top: .5rem; font-size: 1.02rem; color: var(--ink); line-height: 1.55; }
.review-author { margin-top: 1rem; display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--ink-mute); font-weight: 600; }
.review-author svg { width: 16px; height: 16px; flex-shrink: 0; }

/* --- CTA final --- */
.cta-final {
  position: relative; overflow: clip; isolation: isolate;
  padding: clamp(3rem, 7vw, 5rem); text-align: center; border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff;
}
.cta-final::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background: radial-gradient(circle at 85% 20%, rgba(242,146,28,.35), transparent 55%);
}
.cta-final h2 { color: #fff; max-width: 24ch; margin-inline: auto; }
.cta-final p { margin-top: 1.1rem; max-width: 50ch; margin-inline: auto; color: rgba(255,255,255,.82); font-size: 1.08rem; }
.cta-final .hero-actions { justify-content: center; margin-top: 2.1rem; }

/* --- Contacto / formulario --- */
.contact-grid { display: grid; gap: 1.8rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1.05fr .95fr; } }
.contact-form-card { padding: clamp(1.8rem, 4vw, 2.6rem); }
.form-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .form-grid.is-2col { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field label { font-size: .84rem; font-weight: 700; color: var(--navy); }
.field input, .field select, .field textarea {
  padding: .85rem 1rem; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  background: #fff; font-size: .96rem; color: var(--ink); transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--amber); box-shadow: 0 0 0 4px var(--amber-wash); outline: none;
}
.field textarea { resize: vertical; min-height: 90px; }
.form-note { margin-top: 1.1rem; font-size: .84rem; color: var(--ink-mute); display: flex; gap: .5rem; align-items: flex-start; }
.form-note svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: .15rem; color: var(--ink-mute); }

.info-card { padding: clamp(1.8rem, 4vw, 2.4rem); display: flex; flex-direction: column; gap: 1.5rem; }
.map-embed { border-radius: var(--radius-md); overflow: clip; }
.map-embed iframe { width: 100%; height: 230px; border: 0; display: block; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; padding-block: .9rem; border-top: 1px solid var(--line); }
.info-row:first-of-type { border-top: none; padding-top: 0; }
.info-row svg { width: 21px; height: 21px; color: var(--amber-dark); flex-shrink: 0; margin-top: .1rem; }
.info-row strong { display: block; color: var(--navy); font-family: var(--display); font-size: .95rem; }
.info-row span, .info-row a { display: block; font-size: .9rem; color: var(--ink-mute); }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; padding-block: .5rem; font-size: .93rem; }
.hours-row:not(:last-child) { border-bottom: 1px solid var(--line); }
.hours-row span:first-child { color: var(--navy); font-weight: 700; }
.hours-row span:last-child { color: var(--ink-mute); }

/* --- Footer --- */
.footer { padding-block: 3.2rem 1.8rem; border-top: 1px solid var(--line); background: var(--navy-wash); }
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-tagline { margin-top: 1rem; font-size: .93rem; color: var(--ink-mute); max-width: 32ch; }
.footer h4 { font-family: var(--display); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--navy); margin-bottom: 1rem; }
.footer-links { display: grid; gap: .65rem; }
.footer-links a { font-size: .95rem; color: var(--ink-soft); transition: color .25s; }
.footer-links a:hover { color: var(--navy); }
.footer-social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: #fff; display: grid; place-items: center;
  color: var(--navy); box-shadow: var(--shadow-sm);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: 2.6rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .7rem; justify-content: space-between; align-items: center;
  font-size: .84rem; color: var(--ink-mute);
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* =============================================================
   7. Effects & animation
   ============================================================= */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-soft), transform .7s var(--ease-soft); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease-soft), transform .6s var(--ease-soft); }
[data-reveal-stagger].is-revealed > * { opacity: 1; transform: none; }
[data-reveal-stagger].is-revealed > *:nth-child(1) { transition-delay: .02s; }
[data-reveal-stagger].is-revealed > *:nth-child(2) { transition-delay: .09s; }
[data-reveal-stagger].is-revealed > *:nth-child(3) { transition-delay: .16s; }
[data-reveal-stagger].is-revealed > *:nth-child(4) { transition-delay: .23s; }
[data-reveal-stagger].is-revealed > *:nth-child(5) { transition-delay: .3s; }
[data-reveal-stagger].is-revealed > *:nth-child(6) { transition-delay: .37s; }

.hero-photo-wrap[data-parallax] { will-change: transform; }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (min-width: 1600px) { .container { max-width: 1320px; } }

/* =============================================================
   9. Reduced-motion — solo se toca lo verdaderamente intrusivo
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-float-card { animation: none; }
  .hero-photo-wrap[data-parallax] { transform: none !important; }
  [data-reveal], [data-reveal-stagger] > * { transition-duration: .01s; }
}
