/* ============================================================
   Hasspal — design tokens
   ============================================================ */
:root {
  --bg-void: #0a1310;
  --bg-panel: #0f1b14;
  --bg-panel-2: #15271a;
  --bg-panel-3: #1b3021;

  --green-900: #0e1f13;
  --green-800: #17331f;
  --green-700: #204a29;
  --green-600: #2c6636;
  --green-500: #3f8a46;
  --green-400: #5aab52;

  --lime-400: #9ed14b;
  --lime-300: #c2e17f;
  --lime-200: #dcedab;

  --cream-100: #faf5e6;
  --cream-200: #f1e6c8;

  --gold-400: #e3b563;
  --gold-500: #cf9a3f;
  --gold-600: #a97a2e;

  --text-hi: #f8f6ee;
  --text-mid: #cdd9c8;
  --text-low: #8fa38a;

  --line: rgba(248, 246, 238, 0.1);
  --line-strong: rgba(248, 246, 238, 0.18);

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-soft: 0 20px 50px -25px rgba(0, 0, 0, 0.65);
  --shadow-hard: 0 30px 70px -20px rgba(0, 0, 0, 0.75);

  --font-display: "Fredoka", "Baloo 2", ui-rounded, system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 76px;
}

/* ============================================================
   Reset
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

body {
  margin: 0;
  background: var(--bg-void);
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-hi);
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .container { padding-inline: 40px; }
}

section {
  position: relative;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--lime-400);
  color: var(--green-900);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 200;
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: 16px;
}

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--lime-400);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============================================================
   Utility
   ============================================================ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime-300);
  margin-bottom: 14px;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-400);
  box-shadow: 0 0 0 4px rgba(158, 209, 75, 0.2);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4.2vw, 2.75rem);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--text-mid);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.98rem;
  border: none;
  white-space: nowrap;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.btn svg { flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--lime-400), var(--green-500));
  color: var(--green-900);
  box-shadow: 0 12px 30px -10px rgba(158, 209, 75, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -10px rgba(158, 209, 75, 0.7);
}

.btn-ghost {
  background: rgba(248, 246, 238, 0.06);
  color: var(--text-hi);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(248, 246, 238, 0.12);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--green-900);
  box-shadow: 0 12px 30px -10px rgba(207, 154, 63, 0.55);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -10px rgba(207, 154, 63, 0.7);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(248, 246, 238, 0.07);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream-200);
}

.pill svg { color: var(--lime-400); flex-shrink: 0; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* Background texture: soft radial glows */
.glow-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.glow-bg span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 19, 16, 0.52);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out), backdrop-filter 0.35s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(10, 19, 16, 0.86);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px -20px rgba(0, 0, 0, 0.6);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  height: 34px;
  width: auto;
}

.main-nav {
  display: none;
}

@media (min-width: 960px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 246, 238, 0.05);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 6px;
  }

  .main-nav a {
    padding: 10px 18px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-mid);
    transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(248, 246, 238, 0.1);
    color: var(--text-hi);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  display: none;
}

@media (min-width: 640px) {
  .header-cta { display: inline-flex; }
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(248, 246, 238, 0.07);
  border: 1px solid var(--line);
  flex-shrink: 0;
}

@media (min-width: 960px) {
  .nav-toggle { display: none; }
}

.nav-toggle span {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--text-hi);
  display: block;
  transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text-hi);
  transition: transform 0.25s var(--ease-out), top 0.25s var(--ease-out);
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(9, 16, 12, 0.98);
  backdrop-filter: blur(10px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 28px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
}

.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

@media (min-width: 960px) {
  .mobile-nav { display: none; }
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-hi);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-nav .btn {
  margin-top: 12px;
  width: 100%;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media picture,
.hero-media img {
  position: absolute;
  inset: -8% -4%;
  width: 108%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* edge reinforcement: keeps header nav and scroll-cue legible, stays out of the mid-photo */
    linear-gradient(180deg, rgba(6, 12, 9, 0.58) 0%, rgba(6, 12, 9, 0) 18%, rgba(6, 12, 9, 0) 72%, rgba(6, 12, 9, 0.62) 100%),
    /* primary tint: strong over the text column on the left, soft over Paltín on the right */
    linear-gradient(100deg, rgba(8, 15, 11, 0.64) 0%, rgba(8, 15, 11, 0.52) 30%, rgba(8, 15, 11, 0.32) 54%, rgba(8, 15, 11, 0.16) 82%, rgba(8, 15, 11, 0.22) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 680px;
  padding-block: 90px 60px;
}

.hero-content .pill {
  margin-bottom: 22px;
  background: rgba(10, 19, 16, 0.55);
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 22px;
  text-wrap: balance;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--lime-300);
}

.hero-content .lede {
  font-size: 1.15rem;
  color: var(--cream-200);
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-paltin {
  position: absolute;
  right: 4%;
  bottom: -20px;
  width: clamp(140px, 16vw, 240px);
  z-index: 1;
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.5));
  animation: paltin-float 5s ease-in-out infinite;
}

@media (max-width: 767px) {
  /* text spans the full width on mobile (no Paltín on the right to go easy on),
     so keep the tint strong and even across the whole photo instead of fading right */
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(6, 12, 9, 0.62) 0%, rgba(6, 12, 9, 0.4) 20%, rgba(6, 12, 9, 0.46) 58%, rgba(6, 12, 9, 0.74) 100%),
      linear-gradient(100deg, rgba(8, 15, 11, 0.5) 0%, rgba(8, 15, 11, 0.42) 100%);
  }

  .hero-paltin { display: none; }
}

@keyframes paltin-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-low);
  opacity: 0.8;
}

.scroll-cue .dot-track {
  width: 2px;
  height: 34px;
  border-radius: 2px;
  background: var(--line-strong);
  overflow: hidden;
  position: relative;
}

.scroll-cue .dot-track::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--lime-400);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { top: -10px; }
  60% { top: 34px; }
  100% { top: 34px; }
}

/* ============================================================
   Sobre Hasspal
   ============================================================ */
.about {
  padding-block: 110px;
  background: var(--bg-panel);
}

.about-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

@media (min-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 72px;
  }
}

.about-text .lede {
  font-size: 1.08rem;
  margin-bottom: 32px;
  color: var(--text-mid);
}

.value-props {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}

@media (min-width: 560px) {
  .value-props { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
  background: rgba(248, 246, 238, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(248, 246, 238, 0.07);
}

.value-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--lime-400), var(--green-600));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--green-900);
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--text-low);
}

.paltin-quote {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(158, 209, 75, 0.12), rgba(207, 154, 63, 0.08));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 20px;
}

.paltin-quote img {
  width: 56px;
  height: auto;
  flex-shrink: 0;
}

.paltin-quote p {
  font-size: 0.96rem;
  color: var(--cream-200);
}

.paltin-quote strong {
  color: var(--lime-300);
  font-family: var(--font-display);
  font-weight: 600;
}

.about-media {
  position: relative;
}

.about-media .frame-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  aspect-ratio: 4 / 5;
}

.about-media .frame-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.about-media:hover .frame-main img {
  transform: scale(1.05);
}

.about-media .frame-float {
  position: absolute;
  width: 42%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  border: 4px solid var(--bg-panel);
  bottom: -8%;
  left: -10%;
  aspect-ratio: 1;
}

.about-media .frame-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 559px) {
  .about-media .frame-float { display: none; }
}

/* ============================================================
   Productos
   ============================================================ */
.productos {
  padding-block: 110px;
  background: var(--bg-void);
}

.hass-feature {
  display: grid;
  gap: 40px;
  background: linear-gradient(135deg, var(--green-800), var(--bg-panel-2));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-bottom: 72px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 900px) {
  .hass-feature {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 56px;
  }
}

.hass-feature-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
}

.hass-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hass-feature-copy h3 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 16px;
}

.hass-feature-copy > p {
  margin-bottom: 22px;
  color: var(--text-mid);
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--cream-200);
}

.check-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--lime-400);
}

.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.gallery-head .section-head { margin-bottom: 0; }

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .product-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 960px) {
  .product-gallery { grid-template-columns: repeat(6, 1fr); }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .tag {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 12px;
  border-radius: 100px;
  background: rgba(10, 19, 16, 0.72);
  backdrop-filter: blur(6px);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--cream-100);
  text-align: center;
}

/* ============================================================
   Como pedir
   ============================================================ */
.como-pedir {
  padding-block: 110px;
  background: var(--bg-panel);
}

.steps {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 760px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.step-card {
  position: relative;
  background: rgba(248, 246, 238, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
}

.step-card .num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--lime-400);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.94rem;
  color: var(--text-low);
}

@media (min-width: 760px) {
  .step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 48px;
    right: -20px;
    width: 24px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px);
  }
}

.info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(120deg, rgba(158, 209, 75, 0.12), rgba(207, 154, 63, 0.1));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.info-strip-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   Zona de cobertura
   ============================================================ */
.cobertura {
  padding-block: 110px;
  background: var(--bg-void);
  overflow: hidden;
}

.cobertura-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .cobertura-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.cobertura-copy .lede {
  margin-bottom: 24px;
  font-size: 1.02rem;
}

.cobertura-illustration {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin-inline: auto;
}

.cobertura-illustration svg {
  width: 100%;
  height: 100%;
}

.cobertura-pin-label {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -100%);
  background: var(--cream-100);
  color: var(--green-900);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

/* ============================================================
   Nuestro local
   ============================================================ */
.local {
  padding-block: 110px;
  background: var(--bg-panel);
}

.local-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}

@media (min-width: 760px) {
  .local-gallery {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
  }
  .local-gallery a:first-child {
    grid-row: span 2;
  }
}

.local-gallery a {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 760px) {
  .local-gallery a { aspect-ratio: auto; height: 100%; }
}

.local-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.local-gallery a:hover img {
  transform: scale(1.06);
}

.trust-badges {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .trust-badges { grid-template-columns: repeat(3, 1fr); }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(248, 246, 238, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.trust-badge .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(227, 181, 99, 0.16);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cream-200);
}

/* ============================================================
   Contacto / Footer
   ============================================================ */
.contacto {
  padding-block: 110px;
  background: var(--bg-void);
}

.contact-grid {
  display: grid;
  gap: 40px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

.contact-info {
  padding: 48px 40px;
}

.contact-info .section-head { margin-bottom: 32px; }

.contact-list {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-list .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(158, 209, 75, 0.14);
  color: var(--lime-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-list .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-low);
  margin-bottom: 2px;
}

.contact-list .value {
  font-size: 1rem;
  color: var(--text-hi);
  font-weight: 600;
}

.contact-list a.value:hover {
  color: var(--lime-300);
}

.contact-map {
  position: relative;
  min-height: 320px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
  filter: grayscale(0.3) invert(0.92) contrast(0.9) brightness(0.95) hue-rotate(180deg);
}

.contact-map .map-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(10, 19, 16, 0.85);
  color: var(--cream-100);
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-strong);
}

/* Footer */
.site-footer {
  background: var(--bg-void);
  border-top: 1px solid var(--line);
  padding-block: 40px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.footer-inner img { height: 26px; opacity: 0.85; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.86rem;
  color: var(--text-low);
}

.footer-nav a:hover { color: var(--lime-300); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-low);
  width: 100%;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

/* ============================================================
   Paltín Widget
   ============================================================ */
.paltin-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

@media (min-width: 640px) {
  .paltin-widget { right: 28px; bottom: 28px; }
}

.paltin-bubble {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime-400), var(--green-600));
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px -10px rgba(158, 209, 75, 0.6);
  position: relative;
  animation: bubble-idle 3.4s ease-in-out infinite;
}

.paltin-bubble:hover { animation-play-state: paused; transform: scale(1.06); }

.paltin-bubble img {
  width: 74%;
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.paltin-bubble .ping {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-400);
  border: 2px solid var(--bg-void);
}

@keyframes bubble-idle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-4deg); }
}

@media (prefers-reduced-motion: reduce) {
  .paltin-bubble { animation: none; }
}

.paltin-panel {
  width: min(92vw, 360px);
  max-height: min(74vh, 560px);
  background: var(--bg-panel-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform-origin: bottom right;
  transform: scale(0.9) translateY(12px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out), visibility 0.3s;
}

.paltin-panel.is-open {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
}

.paltin-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  flex-shrink: 0;
}

.paltin-panel-header img {
  width: 42px;
  height: auto;
  flex-shrink: 0;
}

.paltin-panel-header .titles {
  flex: 1;
  min-width: 0;
}

.paltin-panel-header h2 {
  font-size: 1.02rem;
  color: var(--text-hi);
}

.paltin-panel-header .status {
  font-size: 0.76rem;
  color: var(--lime-300);
  display: flex;
  align-items: center;
  gap: 6px;
}

.paltin-panel-header .status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime-400);
}

.panel-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(248, 246, 238, 0.1);
  border: none;
  color: var(--text-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s var(--ease-out);
}

.panel-close:hover { background: rgba(248, 246, 238, 0.2); }

.paltin-panel-body {
  padding: 18px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel-cta {
  width: 100%;
}

.panel-faq-title {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-low);
  font-weight: 700;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(248, 246, 238, 0.03);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 16px;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream-200);
}

.faq-question .chev {
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out);
  color: var(--lime-400);
}

.faq-item[data-open="true"] .faq-question .chev {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease-out);
}

.faq-item[data-open="true"] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 16px 14px;
  font-size: 0.85rem;
  color: var(--text-low);
}

.panel-footer-note {
  font-size: 0.76rem;
  color: var(--text-low);
  text-align: center;
}

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