/* ============================================================
   Happy Trip — Sitio estático fiel
   Reconstruido desde el diseño aprobado (Claude Design).
   Tokens, componentes y layout idénticos al prototipo.
   Versión escritorio + móvil unificadas en responsive.
   Sin dependencias externas: fuentes e imágenes locales.
   ============================================================ */

@import url("/assets/fonts/fonts.css");

:root {
  --ht-turquoise: #2BC4CB;
  --ht-turquoise-light: #5FD9DE;
  --ht-blue: #4B7FC4;
  --ht-purple: #6B2EA0;
  --ht-purple-deep: #4A1B7A;
  --ht-gradient: linear-gradient(135deg, #2BC4CB 0%, #4B7FC4 50%, #6B2EA0 100%);
  --ht-gradient-soft: linear-gradient(135deg, rgba(43,196,203,0.08) 0%, rgba(107,46,160,0.08) 100%);

  --ht-ink: #0F172A;
  --ht-ink-2: #1E293B;
  --ht-muted: #475569;
  --ht-muted-2: #64748B;
  --ht-line: #E5E7EB;
  --ht-line-2: #EEF0F4;
  --ht-bg: #FFFFFF;
  --ht-bg-2: #F7F8FB;
  --ht-bg-3: #FAFBFD;

  --ht-radius-sm: 10px;
  --ht-radius: 16px;
  --ht-radius-lg: 24px;

  --ht-shadow-sm: 0 1px 2px rgba(15,23,42,0.04), 0 1px 3px rgba(15,23,42,0.06);
  --ht-shadow: 0 4px 12px rgba(15,23,42,0.06), 0 8px 24px rgba(15,23,42,0.04);
  --ht-shadow-lg: 0 10px 30px rgba(15,23,42,0.08), 0 20px 60px rgba(15,23,42,0.06);
  --ht-shadow-brand: 0 12px 28px rgba(107,46,160,0.18), 0 4px 10px rgba(43,196,203,0.18);

  --ht-font: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ht-header-h: 81px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ht-font);
  color: var(--ht-ink);
  background: var(--ht-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { color: inherit; }

/* Las secciones con ancla dejan espacio bajo el header fijo */
section[id] { scroll-margin-top: 90px; }

/* ---------- Botones ---------- */
.ht-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; font-family: inherit;
  font-weight: 600; font-size: 15px; line-height: 1; letter-spacing: -0.01em;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .2s cubic-bezier(.2,.7,.3,1), box-shadow .2s ease, filter .2s ease, border-color .2s ease;
  white-space: nowrap;
  isolation: isolate;
}
.ht-btn-primary {
  background: var(--ht-gradient); color: #fff;
  border: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -1px 0 rgba(74,27,122,0.25),
    0 1px 2px rgba(74,27,122,0.20),
    0 6px 16px rgba(74,27,122,0.22);
}
.ht-btn-primary::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(74,27,122,0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.ht-btn-primary:hover {
  transform: translateY(-1.5px);
  filter: saturate(1.05) brightness(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    inset 0 -1px 0 rgba(74,27,122,0.28),
    0 2px 4px rgba(74,27,122,0.22),
    0 12px 28px rgba(74,27,122,0.28);
}
.ht-btn-primary:active { transform: translateY(0); filter: brightness(0.99); }
.ht-btn-ghost {
  background: #fff; color: var(--ht-ink);
  border-color: var(--ht-line);
  box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
.ht-btn-ghost:hover {
  border-color: rgba(107,46,160,0.4);
  box-shadow: 0 2px 8px rgba(107,46,160,0.10);
}
.ht-btn-sm { padding: 10px 16px; font-size: 13px; }
.ht-btn-lg { padding: 18px 28px; font-size: 16px; }

/* ---------- Tipografía ---------- */
.ht-h1 { font-size: 64px; line-height: 1.04; letter-spacing: -0.025em; font-weight: 600; margin: 0; }
.ht-h2 { font-size: 44px; line-height: 1.08; letter-spacing: -0.02em; font-weight: 600; margin: 0; }
.ht-h3 { font-size: 22px; line-height: 1.25; letter-spacing: -0.01em; font-weight: 600; margin: 0; }
.ht-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ht-purple);
}
.ht-lead { font-size: 18px; line-height: 1.55; color: var(--ht-muted); margin: 0; }
.ht-text { font-size: 15px; line-height: 1.6; color: var(--ht-muted); margin: 0; }
.ht-grad-text {
  background: var(--ht-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Layout ---------- */
.ht-section { padding: 96px 64px; }
.ht-container { max-width: 1240px; margin: 0 auto; }

/* ---------- Tarjetas ---------- */
.ht-card {
  background: #fff;
  border: 1px solid var(--ht-line);
  border-radius: var(--ht-radius);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.ht-card:hover {
  border-color: rgba(107,46,160,0.25);
  box-shadow: var(--ht-shadow);
  transform: translateY(-2px);
}

/* ---------- Formularios ---------- */
.ht-field { display: flex; flex-direction: column; gap: 6px; }
.ht-label { font-size: 13px; font-weight: 500; color: var(--ht-ink-2); letter-spacing: -0.005em; }
.ht-label .req { color: var(--ht-purple); margin-left: 2px; }
.ht-input, .ht-textarea, .ht-select {
  width: 100%; padding: 13px 14px; border-radius: 12px;
  border: 1px solid var(--ht-line); background: #fff;
  font-family: inherit; font-size: 14px; color: var(--ht-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
  outline: none;
}
.ht-input:focus, .ht-textarea:focus, .ht-select:focus {
  border-color: var(--ht-turquoise);
  box-shadow: 0 0 0 4px rgba(43,196,203,0.14);
}
.ht-input::placeholder, .ht-textarea::placeholder { color: #94A3B8; }
.ht-textarea { resize: vertical; min-height: 110px; }
.ht-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23475569' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.ht-error { font-size: 12px; color: #B91C1C; margin-top: 2px; }
.ht-input.invalid, .ht-select.invalid, .ht-textarea.invalid {
  border-color: #DC2626; box-shadow: 0 0 0 4px rgba(220,38,38,0.10);
}
.ht-input.valid { border-color: rgba(43,196,203,0.7); }

/* ---------- Iconos SVG (sprite incrustado) ---------- */
.ht-ic {
  stroke: currentColor; fill: none; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  display: inline-block; vertical-align: middle; flex-shrink: 0;
}
.ht-ic--fill { fill: currentColor; }

/* ---------- Logo / decorativos ---------- */
.ht-logo-img { display: block; border-radius: 50%; object-fit: contain; }
.ht-sparkle {
  display: inline-block; width: 24px; height: 24px;
  background: var(--ht-gradient);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1l2.4 7.2L21.6 12l-7.2 2.4L12 23l-2.4-8.6L1.6 12l8-2.4z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1l2.4 7.2L21.6 12l-7.2 2.4L12 23l-2.4-8.6L1.6 12l8-2.4z'/></svg>") center/contain no-repeat;
  vertical-align: -2px;
}

/* ============================================================
   HEADER
   ============================================================ */
.ht-header {
  border-bottom: 1px solid var(--ht-line);
  background: rgba(255,255,255,0.86); backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 30;
}
.ht-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 64px;
}
.ht-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ht-ink); }
.ht-logo .ht-logo-img { width: 40px; height: 40px; }
.ht-logo-name { font-weight: 700; font-size: 18px; letter-spacing: -0.02em; line-height: 1.05; }
.ht-logo-sub { font-size: 11px; color: var(--ht-muted); letter-spacing: 0.02em; line-height: 1.05; }
.ht-nav { display: flex; gap: 28px; }
.ht-nav a { color: var(--ht-ink-2); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: -0.005em; }
.ht-nav a:hover { color: var(--ht-purple); }
.ht-header-wa { }
.ht-burger {
  display: none; background: none; border: none; padding: 8px;
  cursor: pointer; color: var(--ht-ink); line-height: 0;
}
.ht-mobile-menu { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.ht-hero { padding: 64px 64px 96px; }
.ht-hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
}
.ht-hero-text { display: flex; flex-direction: column; gap: 28px; max-width: 560px; }
.ht-hero-desc { font-size: 16px; line-height: 1.6; color: var(--ht-muted); margin: 0; max-width: 520px; }
.ht-hero-desc strong { color: var(--ht-ink); }
.ht-hero-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; max-width: 480px; }
.ht-hero-ctas .row { display: flex; gap: 12px; flex-wrap: wrap; }
.ht-hero-loc { display: flex; align-items: center; gap: 18px; margin-top: 8px; color: var(--ht-muted); font-size: 15px; }
.ht-hero-loc span { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }

.ht-collage { position: relative; width: 100%; max-width: 560px; margin-left: auto; }
.ht-collage-blob {
  position: absolute; inset: -10% -6%;
  background: var(--ht-gradient);
  filter: blur(72px); opacity: 0.18;
  border-radius: 50%; z-index: 0; pointer-events: none;
}
.ht-collage-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1fr 1fr 0.85fr;
  grid-template-areas: "a b" "a c" "d d";
  gap: 14px;
  aspect-ratio: 1 / 1.1;
}
.ht-tile {
  position: relative; border-radius: 18px; overflow: hidden;
  box-shadow: var(--ht-shadow);
  transition: transform .35s ease, box-shadow .35s ease;
}
.ht-tile:hover { transform: translateY(-3px); box-shadow: var(--ht-shadow-lg); }
.ht-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ht-tile .grade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,196,203,0.30) 0%, rgba(75,127,196,0.20) 50%, rgba(107,46,160,0.22) 100%);
  mix-blend-mode: soft-light;
}
.ht-tile .shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 45%);
}
.ht-tile .label {
  position: absolute; left: 14px; bottom: 14px; right: 14px;
  color: #fff; font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  line-height: 1.15;
}

/* ============================================================
   STATS
   ============================================================ */
.ht-stats {
  background: var(--ht-bg-2);
  border-top: 1px solid var(--ht-line); border-bottom: 1px solid var(--ht-line);
  padding: 28px 64px;
}
.ht-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ht-stat-value { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; }
.ht-stat-label { font-size: 13px; color: var(--ht-muted); margin-top: 2px; }

/* ============================================================
   SERVICIOS
   ============================================================ */
.ht-services { background: #fff; }
.ht-services-head { margin-bottom: 36px; max-width: 720px; }
.ht-services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px;
}
.ht-svc-card { padding: 24px; }
.ht-svc-ic { margin-bottom: 14px; margin-left: -4px; height: 66px; display: flex; align-items: center; }
.ht-svc-ic img { display: block; width: 66px; height: 66px; }
.ht-svc-card h3 { margin-bottom: 8px; }
.ht-svc-card p { font-size: 14px; }

/* ============================================================
   POR QUÉ NOSOTROS
   ============================================================ */
.ht-why { background: var(--ht-bg-2); }
.ht-why-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.ht-why-intro { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 100px; }
.ht-reasons { display: flex; flex-direction: column; gap: 14px; }
.ht-reason {
  padding: 28px;
  display: grid; grid-template-columns: 92px 1fr; gap: 24px; align-items: center;
}
.ht-reason-num { font-size: 42px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.ht-reason h3 { margin-bottom: 6px; }
.ht-reason p { font-size: 14px; }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.ht-testi { background: #fff; }
.ht-testi-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: 48px; flex-wrap: wrap;
}
.ht-testi-head .intro { display: flex; flex-direction: column; gap: 14px; max-width: 560px; }
.ht-testi-rate { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ht-testi-rate .stars { display: flex; align-items: center; gap: 8px; color: var(--ht-purple); }
.ht-testi-rate .stars span { font-size: 14px; color: var(--ht-muted); margin-left: 6px; }
.ht-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ht-testi-card { padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.ht-testi-card .stars { color: var(--ht-purple); display: flex; gap: 2px; }
.ht-testi-card .quote { font-size: 16px; line-height: 1.55; color: var(--ht-ink-2); margin: 0; font-weight: 400; text-wrap: pretty; }
.ht-testi-card .author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 6px; }
.ht-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ht-gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 13px; letter-spacing: 0.5px; flex-shrink: 0;
}
.ht-author-name { font-size: 14px; font-weight: 600; color: var(--ht-ink); }
.ht-author-trip { font-size: 12px; color: var(--ht-muted); }

/* Modal "Comparte su experiencia" */
.ht-modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15,23,42,0.45); backdrop-filter: blur(3px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.ht-modal.open { display: flex; }
.ht-modal-card {
  background: #fff; border-radius: 20px; width: 100%; max-width: 460px;
  padding: 30px; box-shadow: var(--ht-shadow-lg);
  display: flex; flex-direction: column; gap: 16px;
}
.ht-modal-head { display: flex; justify-content: space-between; align-items: flex-start; }
.ht-modal-head p { font-size: 13px; color: var(--ht-muted); margin: 4px 0 0; }
.ht-iconbtn { background: none; border: none; cursor: pointer; color: var(--ht-muted); padding: 4px; line-height: 0; }
.ht-stars-pick { display: flex; gap: 6px; }
.ht-stars-pick button { background: none; border: none; cursor: pointer; padding: 2px; color: var(--ht-purple); line-height: 0; }
.ht-stars-pick button.off { opacity: 0.25; }
.ht-modal-actions { display: flex; justify-content: flex-end; gap: 10px; }

/* ============================================================
   COTIZACIÓN (FORMULARIO)
   ============================================================ */
.ht-quote {
  background: var(--ht-bg-2);
  background-image:
    radial-gradient(circle at 0% 0%, rgba(43,196,203,0.08), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(107,46,160,0.08), transparent 40%);
}
.ht-quote-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.ht-quote-pitch { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; }
.ht-checks { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.ht-check { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ht-ink-2); }
.ht-check .dot {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--ht-gradient); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; line-height: 0;
}
.ht-quote-fine { font-size: 12px; color: var(--ht-muted-2); margin: 6px 0 0; line-height: 1.5; }
.ht-contact-card {
  margin-top: 12px; padding: 16px; background: #fff;
  border-radius: 14px; border: 1px solid var(--ht-line);
  display: flex; flex-direction: column; gap: 12px;
}
.ht-contact-card .lbl { font-size: 13px; color: var(--ht-muted); }
.ht-contact-card a { display: flex; align-items: center; gap: 10px; color: var(--ht-ink); text-decoration: none; font-size: 14px; font-weight: 500; }
.ht-contact-card a:hover { color: var(--ht-purple); }

.ht-form {
  background: #fff; border-radius: 20px;
  border: 1px solid var(--ht-line); padding: 32px;
  box-shadow: var(--ht-shadow);
  display: flex; flex-direction: column; gap: 18px;
}
.ht-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ht-row-pax { display: grid; grid-template-columns: 1fr 1fr 2fr; gap: 16px; }
.ht-form-foot {
  display: flex; flex-direction: row; align-items: center;
  justify-content: space-between; gap: 14px; margin-top: 4px;
}
.ht-form-foot p { font-size: 12px; color: var(--ht-muted); margin: 0; max-width: 360px; }
.ht-form-foot a { color: var(--ht-purple); font-weight: 500; }
/* Honeypot: oculto para personas, accesible para bots */
.ht-hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Consentimiento */
.ht-consent { display: flex; align-items: flex-start; gap: 10px; }
.ht-consent input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--ht-purple); cursor: pointer; }
.ht-consent label { font-size: 13px; color: var(--ht-muted); line-height: 1.5; }
.ht-consent a { color: var(--ht-purple); font-weight: 500; }
.ht-consent.invalid input { outline: 2px solid #DC2626; outline-offset: 2px; }

.ht-quote-formwrap { width: 100%; }
.ht-success {
  display: none; flex-direction: column; align-items: center; text-align: center;
  gap: 14px; background: #fff; border: 1px solid var(--ht-line);
  border-radius: 20px; padding: 40px 32px; box-shadow: var(--ht-shadow);
}
.ht-success.show { display: flex; }
.ht-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--ht-gradient); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--ht-shadow-brand);
}
.ht-success-text { font-size: 15px; line-height: 1.6; color: var(--ht-muted); margin: 0; max-width: 440px; }
#waContinue { margin-top: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.ht-footer { background: var(--ht-ink); color: #CBD5E1; padding: 64px 64px 36px; }
.ht-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 36px; }
.ht-footer-brand { display: flex; flex-direction: column; gap: 16px; }
.ht-footer-brand .top { display: flex; align-items: center; gap: 12px; }
.ht-footer-brand .top img { width: 44px; height: 44px; border-radius: 50%; }
.ht-footer-brand .nm { color: #fff; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.ht-footer-brand .sb { font-size: 12px; color: #94A3B8; }
.ht-footer-brand p { font-size: 14px; color: #CBD5E1; line-height: 1.6; margin: 0; max-width: 380px; }
.ht-footer-rnt { font-size: 12px; color: #94A3B8; }
.ht-footer-rnt strong { color: #fff; font-weight: 500; }
.ht-footer h4 {
  color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin: 0 0 16px;
}
.ht-footer-col .links { display: flex; flex-direction: column; gap: 12px; }
.ht-footer-col a, .ht-footer-col span {
  color: #CBD5E1; text-decoration: none; display: flex; align-items: center; gap: 10px; font-size: 14px;
}
.ht-footer-col a:hover { color: #fff; }
.ht-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; flex-direction: row; gap: 12px;
  align-items: center; justify-content: space-between;
  font-size: 12px; color: #94A3B8;
}
.ht-footer-bottom a { color: #94A3B8; text-decoration: none; }
.ht-footer-bottom a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE — versión móvil (≤ 860px), fiel al diseño "mobile"
   ============================================================ */
@media (max-width: 860px) {
  .ht-section { padding: 56px 24px; }
  .ht-h1 { font-size: 36px; }
  .ht-h2 { font-size: 28px; }
  .ht-h3 { font-size: 18px; }
  .ht-lead { font-size: 16px; }

  /* Header → hamburguesa */
  .ht-header-inner { padding: 16px 20px; }
  .ht-logo .ht-logo-img { width: 36px; height: 36px; }
  .ht-nav-desktop, .ht-header-wa { display: none; }
  .ht-burger { display: inline-flex; }
  .ht-mobile-menu {
    display: none;
    border-bottom: 1px solid var(--ht-line);
    padding: 12px 20px 20px; box-shadow: var(--ht-shadow); background: #fff;
  }
  .ht-mobile-menu.open { display: block; }
  .ht-mobile-menu a {
    display: block; padding: 12px 0; color: var(--ht-ink);
    text-decoration: none; font-size: 15px; font-weight: 500;
    border-bottom: 1px solid var(--ht-line-2);
  }
  .ht-mobile-menu .ht-btn { width: 100%; margin-top: 14px; }

  /* Hero */
  .ht-hero { padding: 32px 24px; }
  .ht-hero-grid { display: flex; flex-direction: column; gap: 36px; }
  .ht-hero-text { gap: 20px; }
  .ht-hero-desc { font-size: 15px; }
  .ht-collage { max-width: 380px; margin-left: auto; margin-right: auto; }
  .ht-collage-grid { gap: 10px; aspect-ratio: 1 / 1.15; }

  /* Stats */
  .ht-stats { padding: 24px 20px; }
  .ht-stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .ht-stat { text-align: center; }
  .ht-stat-value { font-size: 22px; }
  .ht-stat-label { font-size: 12px; }

  /* Servicios */
  .ht-services-head { margin-bottom: 24px; }
  .ht-services-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Por qué */
  .ht-why-grid { grid-template-columns: 1fr; gap: 32px; }
  .ht-why-intro { position: static; }
  .ht-reason { padding: 20px; grid-template-columns: auto 1fr; gap: 16px; }
  .ht-reason-num { font-size: 30px; }

  /* Testimonios */
  .ht-testi-head { margin-bottom: 28px; }
  .ht-testi-grid { grid-template-columns: 1fr; gap: 14px; }
  .ht-testi-card { padding: 22px; }
  .ht-testi-card .quote { font-size: 15px; }
  .ht-modal-card { padding: 22px; }

  /* Cotización */
  .ht-quote-grid { grid-template-columns: 1fr; gap: 28px; }
  .ht-quote-pitch { position: static; }
  .ht-form { padding: 20px; }
  .ht-row-2 { grid-template-columns: 1fr; }
  .ht-row-pax { grid-template-columns: 1fr 1fr; }
  .ht-row-pax .pax-edades { grid-column: 1 / -1; }
  .ht-form-foot { flex-direction: column; align-items: stretch; }
  .ht-form-foot .ht-btn { width: 100%; }

  /* Footer */
  .ht-footer { padding: 44px 24px 28px; }
  .ht-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .ht-footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Pantallas intermedias: servicios y testimonios a 2 columnas */
@media (min-width: 861px) and (max-width: 1080px) {
  .ht-testi-grid { grid-template-columns: 1fr 1fr; }
}
