/* Turismo Shuar Bucay — hoja unica.
   Paleta de selva: verdes profundos, tierra humeda y un ambar de fruta madura
   para las llamadas a la accion. Tipografia: Cormorant Garamond para titulares
   (voz de folleto de viaje) y Lora para el cuerpo. */

:root {
  --verde-selva: #0f3d22;
  --verde-hoja: #1f7a3f;
  --verde-claro: #47a96a;
  --ambar: #e0a72e;
  --tierra: #7a4a24;
  --crema: #fbfaf5;
  --crema-alt: #f2f1e7;
  --tinta: #1d2a20;
  --tinta-suave: #55635a;
  --borde: #e0e0d4;

  --sombra-s: 0 1px 2px rgba(15, 61, 34, .06), 0 2px 8px rgba(15, 61, 34, .05);
  --sombra-m: 0 4px 12px rgba(15, 61, 34, .08), 0 12px 32px rgba(15, 61, 34, .08);
  --sombra-l: 0 12px 28px rgba(15, 61, 34, .14), 0 24px 60px rgba(15, 61, 34, .12);

  --radio: 14px;
  --radio-l: 22px;
  --ancho: 1180px;
  --nav-h: 76px;
  /* Ritmo vertical unico: todas las secciones respiran igual. */
  --bloque: clamp(64px, 9vw, 116px);
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  /* Sin esto, un enlace a #products deja el titulo debajo de la barra fija. */
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.75;
  color: var(--tinta);
  background: var(--crema);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -.01em;
  text-wrap: balance;
  color: var(--verde-selva);
}
h1 { font-size: clamp(2.6rem, 1.6rem + 4.4vw, 5rem); }
h2 { font-size: clamp(2rem, 1.35rem + 2.6vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + .6vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p { text-wrap: pretty; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, a, input, textarea, select { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }

:where(a, button, input, textarea, summary):focus-visible {
  outline: 3px solid var(--ambar);
  outline-offset: 3px;
  border-radius: 4px;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ico { width: 1em; height: 1em; display: inline-block; vertical-align: -.125em; fill: currentColor; flex: none; }

.container { width: 100%; max-width: var(--ancho); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.section { padding-block: var(--bloque); }
.section + .section { border-top: 1px solid var(--borde); }

.skip-link {
  position: absolute; left: 12px; top: -80px; z-index: 200;
  background: var(--verde-selva); color: #fff;
  padding: 12px 20px; border-radius: 0 0 var(--radio) var(--radio);
  transition: top .25s ease;
}
.skip-link:focus { top: 0; }

.eyebrow {
  display: inline-block;
  font-family: 'Lora', serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--verde-hoja);
  margin-bottom: 14px;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 42px; height: 2px;
  margin-top: 8px;
  background: var(--ambar);
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); }
.section-head .eyebrow::after { margin-inline: auto; }
.section-head p { color: var(--tinta-suave); margin-top: 16px; font-size: 1.05em; }

/* ---------- botones ---------- */
.btn-primary, .btn-outline, .btn-ghost, .prod-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Lora', serif; font-weight: 600; font-size: .98rem;
  padding: 15px 30px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.btn-primary { background: var(--verde-hoja); color: #fff; box-shadow: var(--sombra-m); }
.btn-primary:hover { background: var(--verde-selva); transform: translateY(-2px); box-shadow: var(--sombra-l); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; transform: translateY(-2px); }
.btn-outline { color: var(--verde-selva); border-color: var(--verde-selva); padding: 13px 26px; }
.btn-outline:hover { background: var(--verde-selva); color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- cabecera ---------- */
header.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
header.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(10, 30, 18, .68), rgba(10, 30, 18, 0));
  transition: opacity .35s ease;
}
header.nav.scrolled {
  background: rgba(251, 250, 245, .94);
  backdrop-filter: saturate(160%) blur(10px);
  box-shadow: 0 1px 0 var(--borde), 0 6px 24px rgba(15, 61, 34, .07);
}
header.nav.scrolled::before { opacity: 0; }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  height: var(--nav-h);
  max-width: var(--ancho); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
/* El logo del cliente es un JPEG sin transparencia: sin la plaquita blanca
   sale como un recuadro gris sobre la cabecera oscura. */
.brand img { height: 46px; width: auto; background: #fff; border-radius: 9px; padding: 4px; box-shadow: var(--sombra-s); }
.brand span {
  font-family: 'Cormorant Garamond', serif; font-size: 1.32rem; font-weight: 600;
  letter-spacing: .04em; color: #fff; white-space: nowrap;
  transition: color .35s ease;
}
header.nav.scrolled .brand span { color: var(--verde-selva); }

.nav-desktop { display: none; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-size: .95rem; color: #fff; position: relative; transition: color .3s ease; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 2px;
  background: var(--ambar); transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }
header.nav.scrolled .nav-links a { color: var(--tinta); }
.nav-cta {
  background: var(--verde-hoja); color: #fff !important;
  padding: 11px 24px; border-radius: 999px; font-weight: 600;
  transition: background .3s ease, transform .3s ease;
}
.nav-cta:hover { background: var(--verde-selva); transform: translateY(-2px); }
.nav-cta::after { display: none; }

.hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 0; cursor: pointer;
}
.hamburger span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: background .35s ease; }
header.nav.scrolled .hamburger span { background: var(--verde-selva); }

.overlay {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(10, 30, 18, .55); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .3s ease;
}
.overlay.show { opacity: 1; }

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 120;
  width: min(84vw, 330px);
  padding: calc(80px + env(safe-area-inset-top, 0px)) 32px 40px;
  background: var(--verde-selva); color: #fff;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.mobile-menu a {
  display: block; padding: 14px 0;
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.mobile-menu a:hover { color: var(--ambar); }
.mobile-menu .close {
  position: absolute; top: calc(22px + env(safe-area-inset-top, 0px)); right: 24px;
  width: 44px; height: 44px; font-size: 2rem; line-height: 1;
  background: none; border: 0; color: #fff; cursor: pointer;
}

/* ---------- hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: min(100svh, 860px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 20px 90px;
}
.hero-bg {
  position: absolute; inset: -8% 0; z-index: -2;
  background: var(--verde-selva) url('assets/hero-selva.jpg') center/cover no-repeat;
  will-change: transform;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom, rgba(8, 26, 16, .72) 0%, rgba(8, 26, 16, .42) 38%, rgba(8, 26, 16, .78) 100%),
    radial-gradient(ellipse at 50% 55%, rgba(8, 26, 16, 0) 30%, rgba(8, 26, 16, .45) 100%);
}
.hero-content { max-width: 880px; color: #fff; }
.hero-content h1 { color: #fff; text-shadow: 0 2px 26px rgba(0,0,0,.4); }
.hero-content p {
  margin: 22px auto 0; max-width: 620px;
  font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem);
  color: rgba(255,255,255,.92);
}
.eyebrow-light { color: rgba(255,255,255,.88); }
.eyebrow-light::after { background: var(--ambar); margin-inline: auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; display: grid; place-items: center;
  color: rgba(255,255,255,.8); font-size: 1.6rem;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 9px); } }

/* ---------- por que elegirnos ---------- */
.cards-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.v-card {
  background: #fff; border: 1px solid var(--borde); border-radius: var(--radio-l);
  padding: 34px 28px; box-shadow: var(--sombra-s);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.v-card:hover { transform: translateY(-5px); box-shadow: var(--sombra-m); border-color: var(--verde-claro); }
.v-icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.6rem; color: var(--verde-hoja);
  background: linear-gradient(140deg, rgba(71, 169, 106, .18), rgba(224, 167, 46, .16));
  margin-bottom: 20px;
}
.v-card h3 { margin-bottom: 10px; }
.v-card p { color: var(--tinta-suave); font-size: .98rem; }

/* ---------- contadores ---------- */
.counters {
  padding-block: clamp(44px, 6vw, 68px);
  background: var(--verde-selva);
  color: #fff;
  background-image: radial-gradient(ellipse at 15% 0%, rgba(71,169,106,.32), transparent 55%),
                    radial-gradient(ellipse at 85% 100%, rgba(224,167,46,.18), transparent 55%);
}
.counters-grid { display: grid; gap: 30px; grid-template-columns: repeat(2, 1fr); text-align: center; }
.counter .num {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: clamp(2.6rem, 2rem + 2.4vw, 3.9rem); line-height: 1; color: var(--ambar);
  font-variant-numeric: tabular-nums;
}
.counter .label {
  margin-top: 8px; font-size: .82rem; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.82);
}

/* ---------- historia ---------- */
.story-grid { display: grid; gap: clamp(32px, 5vw, 64px); align-items: center; }
.story-img {
  position: relative; border-radius: var(--radio-l); overflow: hidden;
  box-shadow: var(--sombra-l);
}
.story-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.story-img::after {
  content: ""; position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,.28); border-radius: inherit; pointer-events: none;
}
.story-text p { color: var(--tinta-suave); margin-top: 16px; }
.story-text h2 + p { margin-top: 20px; }
.story-text .btn-outline { margin-top: 30px; }

/* ---------- experiencias ---------- */
.products { background: var(--crema-alt); }
.prod-grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.prod-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--borde); border-radius: var(--radio-l);
  overflow: hidden; box-shadow: var(--sombra-s);
  transition: transform .3s ease, box-shadow .3s ease;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--sombra-l); }
.prod-img { overflow: hidden; background: var(--verde-selva); }
.prod-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s cubic-bezier(.2,.6,.3,1); }
.prod-card:hover .prod-img img { transform: scale(1.06); }
/* El afiche es de 214x272: estirado a lo ancho de la tarjeta se ve como un
   cartel pixelado. Contenido y centrado conserva su proporcion. */
.prod-img-poster img { object-fit: contain; padding: 14px; }
.prod-body { display: flex; flex-direction: column; flex: 1; padding: 26px 24px 24px; }
.prod-body h3 { margin-bottom: 10px; }
.prod-body > p { color: var(--tinta-suave); font-size: .96rem; flex: 1; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.price {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700;
  color: var(--verde-hoja); line-height: 1;
}
.prod-btn {
  margin-left: auto; padding: 11px 22px; font-size: .92rem;
  background: var(--verde-selva); color: #fff;
}
.prod-btn:hover { background: var(--verde-hoja); transform: translateY(-2px); }

/* ---------- galeria ----------
   En movil apila a una columna. De 620px arriba, tres columnas con la primera
   foto ocupando 2x2: son 4 celdas + 5 sueltas = 9, justo tres filas completas.
   Con dos "altas" sueltas salian 8 celdas en una rejilla de 9 y quedaba un
   hueco blanco en medio de la galeria. */
.gal-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.gal-item {
  position: relative; overflow: hidden; border-radius: var(--radio);
  box-shadow: var(--sombra-s); background: var(--crema-alt);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform .7s cubic-bezier(.2,.6,.3,1); }
.gal-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,26,16,.35), transparent 55%);
  opacity: 0; transition: opacity .4s ease;
}
.gal-item:hover img { transform: scale(1.07); }
.gal-item:hover::after { opacity: 1; }

/* ---------- testimonios ---------- */
.testi-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); }
.t-card {
  position: relative; background: #fff; border: 1px solid var(--borde);
  border-radius: var(--radio-l); padding: 34px 28px 28px; box-shadow: var(--sombra-s);
  display: flex; flex-direction: column;
}
.t-card::before {
  content: "\201C";
  position: absolute; top: 4px; right: 24px;
  font-family: 'Cormorant Garamond', serif; font-size: 6rem; line-height: 1;
  color: rgba(71, 169, 106, .16);
}
.t-stars { display: flex; gap: 3px; color: var(--ambar); font-size: 1.05rem; margin-bottom: 14px; }
.t-text { font-style: italic; color: var(--tinta-suave); flex: 1; }
.t-who { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--borde); }
/* Avatar con iniciales en lugar de un retrato de banco de imagenes: poner la
   cara de una persona real junto a un testimonio que no es suyo no se puede
   publicar. */
.t-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.15rem;
  color: #fff; letter-spacing: .04em;
  background: linear-gradient(140deg, var(--verde-hoja), var(--verde-selva));
}
.t-who strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--verde-selva); }
.t-who span span { font-size: .85rem; color: var(--tinta-suave); }

/* ---------- contacto ---------- */
.contact-grid { display: grid; gap: clamp(32px, 5vw, 56px); }
.contacto-form {
  background: #fff; border: 1px solid var(--borde); border-radius: var(--radio-l);
  padding: clamp(24px, 4vw, 36px); box-shadow: var(--sombra-s);
}
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block; margin-bottom: 8px;
  font-size: .88rem; font-weight: 600; letter-spacing: .04em; color: var(--verde-selva);
}
.form-field .opt { font-weight: 400; color: var(--tinta-suave); letter-spacing: 0; }
.form-field input, .form-field textarea {
  width: 100%; padding: 14px 16px;
  font-family: inherit; font-size: 1rem; color: var(--tinta);
  background: var(--crema); border: 1.5px solid var(--borde); border-radius: var(--radio);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #a3aca6; }
.form-field input:focus, .form-field textarea:focus {
  outline: none; background: #fff;
  border-color: var(--verde-claro); box-shadow: 0 0 0 4px rgba(71, 169, 106, .16);
}
.form-field.invalid input, .form-field.invalid textarea { border-color: #c0392b; }
.form-field.invalid input:focus, .form-field.invalid textarea:focus { box-shadow: 0 0 0 4px rgba(192, 57, 43, .14); }
.field-err { margin-top: 7px; font-size: .85rem; color: #c0392b; }
.form-msg {
  margin-top: 18px; padding: 14px 18px;
  background: rgba(71, 169, 106, .14); border: 1px solid var(--verde-claro);
  border-radius: var(--radio); color: var(--verde-selva); font-size: .95rem;
}

.info-item { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 26px; }
.info-item .ic {
  width: 48px; height: 48px; flex: none; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.3rem;
  color: var(--verde-hoja); background: rgba(71, 169, 106, .14);
}
.info-item h4 { color: var(--verde-selva); margin-bottom: 4px; }
.info-item p { color: var(--tinta-suave); font-size: .97rem; }
.info-item a:hover { color: var(--verde-hoja); text-decoration: underline; }
.map { width: 100%; height: 300px; border: 0; border-radius: var(--radio-l); box-shadow: var(--sombra-s); }

/* ---------- faq ---------- */
.faq { background: var(--crema-alt); }
.faq-list { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--borde); border-radius: var(--radio); overflow: hidden; }
.faq-item h3 { font-size: inherit; margin: 0; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px; text-align: left; cursor: pointer;
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.15rem, 1.05rem + .35vw, 1.4rem);
  font-weight: 600; color: var(--verde-selva);
  background: none; border: 0;
  transition: background .25s ease;
}
.faq-q:hover { background: rgba(71, 169, 106, .07); }
.faq-q .ico { font-size: 1.4rem; color: var(--verde-hoja); transition: transform .3s ease; }
.faq-q[aria-expanded="true"] .ico { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--tinta-suave); font-size: .98rem; }

/* ---------- pie ---------- */
footer {
  background: var(--verde-selva); color: rgba(255,255,255,.8);
  padding-block: clamp(52px, 7vw, 76px) 0;
}
.foot-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
.foot-brand img { height: 58px; width: auto; background: #fff; border-radius: 10px; padding: 6px; margin-bottom: 18px; }
.foot-brand p { font-size: .95rem; max-width: 34ch; }
.foot-social { display: flex; gap: 12px; margin-top: 20px; }
.foot-social a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.05rem; color: #fff; background: rgba(255,255,255,.1);
  transition: background .3s ease, transform .3s ease;
}
.foot-social a:hover { background: var(--verde-hoja); transform: translateY(-3px); }
.foot-col h4 { color: #fff; margin-bottom: 18px; font-size: 1.28rem; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: .95rem; }
.foot-col a:hover { color: var(--ambar); }
.foot-bottom {
  margin-top: clamp(40px, 6vw, 60px); padding-block: 24px calc(24px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255,255,255,.14); text-align: center; font-size: .88rem;
}
.foot-bottom a { color: var(--ambar); }
.foot-bottom a:hover { text-decoration: underline; }

/* ---------- whatsapp flotante ---------- */
.whatsapp-float {
  position: fixed; z-index: 90;
  right: 20px; bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.7rem;
  color: #fff; background: #25d366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .42);
  transition: transform .3s ease, box-shadow .3s ease;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 12px 30px rgba(37, 211, 102, .5); }

/* ---------- aparicion al hacer scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- puntos de ruptura ---------- */
@media (min-width: 620px) {
  .gal-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: clamp(150px, 15.5vw, 225px); }
  .gal-item img { height: 100%; aspect-ratio: auto; }
  .gal-feature { grid-column: span 2; grid-row: span 2; }
}
@media (min-width: 768px) {
  .counters-grid { grid-template-columns: repeat(4, 1fr); }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1.05fr .95fr; }
  .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}
@media (min-width: 992px) {
  .nav-desktop { display: block; }
  .hamburger { display: none; }
}

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

@media print {
  header.nav, .whatsapp-float, .hero-scroll, .mobile-menu, .overlay { display: none !important; }
  .reveal { opacity: 1; transform: none; }
}
