/* =========================================================
   Mundo Teckel — hoja de estilos
   Paleta: verde teal + crema cálido. Tipografía: Fraunces + Plus Jakarta Sans.
   ========================================================= */

:root {
  --brand: #0f7a6e;
  --brand-dark: #0a544c;
  --brand-light: #16a394;
  --brand-tint: #e4f3f0;
  --gold: #dd9b34;
  --gold-tint: #fbeed6;

  --ink: #10221f;
  --ink-soft: #556965;
  --cream: #fdf8f3;
  --sand: #f6eee5;
  --surface: #ffffff;
  --border: #e8ddd0;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(16, 34, 31, .06);
  --shadow: 0 16px 40px rgba(16, 34, 31, .09);
  --shadow-lg: 0 28px 70px rgba(16, 34, 31, .14);

  --max: 1160px;
  --header-h: 72px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.015em;
  margin: 0 0 .6rem;
}
h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.15rem; letter-spacing: -.01em; }
p { margin: 0 0 1rem; }

a { color: var(--brand-dark); }

ul, ol, dl { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.hidden { display: none; }

.skip-link {
  position: absolute;
  left: -999px;
  z-index: 200;
  background: var(--brand);
  color: #fff;
  padding: .7rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; top: 0; }

:focus-visible {
  outline: 3px solid var(--brand-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Animación de entrada ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, .9, .3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Barra de anuncio + header
   ========================================================= */
.announce {
  background: var(--ink);
  color: #dfeeea;
  font-size: .85rem;
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .55rem 0;
  text-align: center;
}
.announce p { margin: 0; }
.announce strong { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(253, 248, 243, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 6px 24px rgba(16, 34, 31, .06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--ink);
}
.logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--brand-tint);
  border-radius: 12px;
}
.logo-mark svg { width: 22px; fill: var(--brand); }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -.02em;
}
.logo-text strong { color: var(--brand); font-weight: 700; }

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 500;
  position: relative;
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: width .25s;
}
.nav a:not(.btn):hover::after { width: 100%; }
.nav a:not(.btn):hover { color: var(--brand-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: .6rem;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.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); }

/* =========================================================
   Botones
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--brand);
  color: #fff;
  padding: .72rem 1.5rem;
  border: 2px solid var(--brand);
  border-radius: 999px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background .22s, border-color .22s, transform .22s, box-shadow .22s;
}
.btn:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 122, 110, .25);
}
.btn:active { transform: translateY(0); }

.btn-sm { padding: .45rem 1.1rem; font-size: .87rem; }
.btn-lg { padding: .95rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-ghost {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand);
}
.btn-ghost:hover { background: var(--brand); color: #fff; }

.link {
  display: inline-block;
  font-weight: 600;
  color: var(--brand-dark);
  text-decoration: none;
  transition: gap .2s, color .2s;
}
.link:hover { color: var(--brand-light); text-decoration: underline; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -160px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(22, 163, 148, .16), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--brand-tint);
  color: var(--brand-dark);
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  background: var(--brand-light);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22, 163, 148, .18);
}
.center-eyebrow { margin-inline: auto; }

h1 em {
  font-style: italic;
  color: var(--brand);
  position: relative;
  white-space: nowrap;
}
h1 em::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: .06em;
  height: .22em;
  background: var(--gold-tint);
  border-radius: 999px;
  z-index: -1;
}

.lead {
  font-size: 1.09rem;
  color: var(--ink-soft);
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin: 1.8rem 0 2.6rem;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}
.stats dt {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1;
}
.stats .unit { font-size: 1.2rem; color: var(--ink-soft); }
.stats dd {
  margin: .35rem 0 0;
  font-size: .87rem;
  color: var(--ink-soft);
}

/* Collage del hero */
.hero-art {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  min-height: 420px;
}
.art-card {
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: var(--shadow);
  background: linear-gradient(150deg, #e6f4f1, #bfe3da);
}
.art-card-main {
  grid-row: 1 / span 2;
  background: linear-gradient(150deg, #d9efe9, #a9dbcf);
}
.art-card-b { background: linear-gradient(150deg, #fdf0dd, #f3d3a3); }
.art-card-c { background: linear-gradient(150deg, #eceaf7, #d3cfea); }

.art-emoji {
  font-size: clamp(3rem, 8vw, 5.5rem);
  filter: drop-shadow(0 10px 18px rgba(16, 34, 31, .18));
}
.art-card-main .art-emoji { font-size: clamp(4rem, 11vw, 7.5rem); }

.art-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 999px;
}

.art-badge {
  position: absolute;
  left: -14px;
  bottom: 18%;
  background: var(--surface);
  border-radius: var(--radius);
  padding: .9rem 1.1rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: float 5s ease-in-out infinite;
}
.art-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brand);
  line-height: 1;
}
.art-badge span {
  font-size: .72rem;
  color: var(--ink-soft);
  max-width: 9ch;
  display: inline-block;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =========================================================
   Secciones genéricas
   ========================================================= */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-alt { background: var(--sand); }

.section-head { max-width: 60ch; margin-bottom: 3rem; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-sub { color: var(--ink-soft); margin: 0; }

.section-foot {
  text-align: center;
  margin: 2.5rem 0 0;
  color: var(--ink-soft);
}

/* =========================================================
   Garantías
   ========================================================= */
.trust-section { padding-top: 0; }
.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.trust li { padding: .5rem 1rem; }
.trust li + li { border-left: 1px solid var(--border); }
.trust-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--brand-tint);
  border-radius: 14px;
  font-size: 1.35rem;
  margin-bottom: .8rem;
}
.trust h3 { font-size: 1.02rem; }
.trust p { margin: 0; font-size: .9rem; color: var(--ink-soft); }

/* =========================================================
   Razas por tamaño
   ========================================================= */
.breeds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.breed {
  background: linear-gradient(160deg, var(--tone-a), var(--tone-b));
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.9rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.breed:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.breed-emoji {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 8px 14px rgba(16, 34, 31, .14));
}
.breed p { color: var(--ink-soft); font-size: .95rem; }
.breed-note {
  display: inline-block;
  background: rgba(255, 255, 255, .75);
  color: var(--ink) !important;
  font-size: .78rem;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

/* =========================================================
   Cachorros disponibles
   ========================================================= */
.puppies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.puppy {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.puppy:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.puppy-media {
  position: relative;
  background: linear-gradient(160deg, var(--tone-a), var(--tone-b));
  display: grid;
  place-items: center;
  padding: 2.4rem 0;
}
.puppy-emoji {
  font-size: 3.6rem;
  filter: drop-shadow(0 8px 14px rgba(16, 34, 31, .16));
  transition: transform .3s;
}
.puppy:hover .puppy-emoji { transform: scale(1.08) rotate(-4deg); }
.is-out .puppy-media { filter: saturate(.45); }

.badge {
  position: absolute;
  top: .8rem;
  left: .8rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: .25rem .7rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
}
.badge-new { background: var(--brand); color: #fff; }
.badge-hot { background: var(--gold); color: #3a2708; }
.badge-out { background: #d8d2ca; color: #4a463f; }

.puppy-body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.puppy-meta {
  font-size: .82rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.puppy-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: auto;
  flex-wrap: wrap;
}
.price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-dark);
}
.price small { font-size: .68rem; color: var(--ink-soft); font-weight: 500; }

/* =========================================================
   Proceso en 4 pasos
   ========================================================= */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem 1.75rem;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding-top: 3.9rem;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-tint);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
}
.steps li::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 64px;
  right: -12px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 7px, transparent 7px 14px);
}
.steps li:last-child::after { display: none; }
.steps p { color: var(--ink-soft); font-size: .93rem; margin: 0; }

/* =========================================================
   Testimonios y galería
   ========================================================= */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.stars { color: var(--gold); letter-spacing: .15em; margin: 0 0 .8rem; }
.review blockquote {
  margin: 0 0 1.4rem;
  color: var(--ink-soft);
  font-size: .95rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--brand-tint);
  color: var(--brand-dark);
  border-radius: 50%;
  font-size: .82rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: .94rem; }
.review-author span { font-size: .8rem; color: var(--ink-soft); }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.gallery li {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(155deg, var(--tone-a), var(--tone-b));
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  transition: transform .3s;
}
.gallery li:hover { transform: scale(1.05) rotate(2deg); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.faq-aside { position: sticky; top: calc(var(--header-h) + 24px); }
.faq-aside .section-sub { margin-bottom: 1.5rem; }

.faq-list { display: grid; gap: .75rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--brand);
  line-height: 1;
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: .8rem 0 0;
  color: var(--ink-soft);
  font-size: .94rem;
}

/* =========================================================
   Contacto
   ========================================================= */
.contact-section {
  background: linear-gradient(165deg, var(--brand-dark), var(--brand));
  color: #eaf6f3;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.contact-copy h2 { color: #fff; }
.contact-copy > p { color: rgba(234, 246, 243, .85); max-width: 42ch; }
.contact-list { margin-top: 1.8rem; display: grid; gap: .7rem; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 500;
}

.form {
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-lg);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .35rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .78rem .95rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color .2s, background .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  background: #fff;
}
.field textarea { resize: vertical; }
.form-note {
  margin: .9rem 0 0;
  font-size: .78rem;
  color: var(--ink-soft);
  text-align: center;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: #b9cbc7;
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-brand .logo-text { color: #fff; display: inline-block; margin-bottom: .8rem; }
.footer-brand .logo-text strong { color: var(--brand-light); }
.footer-brand p { font-size: .9rem; max-width: 42ch; }

.social { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.social a {
  display: inline-block;
  padding: .35rem .9rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #d9e7e4;
  font-size: .82rem;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.social a:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

.footer-col h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col a, .footer-col p {
  display: block;
  color: #b9cbc7;
  text-decoration: none;
  font-size: .9rem;
  margin: 0 0 .5rem;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
  padding-top: 1.5rem;
  font-size: .82rem;
}
.footer-bottom p { margin: 0; }

/* =========================================================
   Botón flotante de WhatsApp
   ========================================================= */
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .42);
  transition: transform .25s;
}
.whatsapp-fab svg { width: 30px; fill: #fff; }
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .5);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* =========================================================
   Páginas de gracias / 404
   ========================================================= */
.centered {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}
.centered .emoji { font-size: 4.5rem; margin: 0 0 .5rem; }
.centered .lead { margin-inline: auto; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
}

@media (max-width: 860px) {
  .hero-inner,
  .contact-inner { grid-template-columns: 1fr; }
  .hero-art { min-height: 320px; order: -1; }
  .art-badge { left: auto; right: -6px; bottom: -10px; }

  .trust { padding: 1.25rem; }
  .trust li + li { border-left: 0; border-top: 1px solid var(--border); }

  .steps li::after { display: none; }

  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    inset: 100% 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: .5rem 1.25rem 1.4rem;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .8rem 0; }
  .nav a:not(.btn)::after { display: none; }
  .nav a.btn { margin-top: .6rem; }
}

@media (max-width: 620px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero-actions .btn { width: 100%; }
  .whatsapp-fab { width: 52px; height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
