/* ═══════════════════════════════════════════════════════════
   CoquiCool VERANO — Design System (2026-05-22)
   ═══════════════════════════════════════════════════════════ */

/* ── Tokens ───────────────────────────────────────────────── */
:root {
  /* Paleta tropical */
  --c-coral:        #ff5b6a;
  --c-coral-soft:   #ffb3ba;
  --c-cyan:         #2dd4bf;
  --c-cyan-dark:    #14b8a6;
  --c-cyan-deep:    #0e9488;
  --c-wa:           #25d366;
  --c-wa-dark:      #128c7e;
  --c-orange:       #fb923c;
  --c-yellow:       #fbbf24;
  --c-pink:         #ec4899;

  /* Fondos / superficies */
  --bg:             #ffffff;
  --bg-soft:        #fff8eb;
  --bg-sand:        #fdf6e9;
  --surface:        #ffffff;
  --surface-2:      #fff5e1;

  /* Texto */
  --ink:            #1a1d24;
  --ink-soft:       #4a4f5a;
  --ink-mute:       #8d92a0;
  --ink-on-color:   #ffffff;

  /* Bordes y sombras */
  --border:         rgba(26, 29, 36, 0.08);
  --shadow-sm:      0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md:      0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg:      0 16px 48px rgba(0, 0, 0, 0.12);

  /* Radius */
  --r-sm:   10px;
  --r-md:   18px;
  --r-lg:   24px;
  --r-pill: 999px;

  /* Tipografias */
  --font-display: 'Fredoka', 'Quicksand', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;
  --font-script:  'Caveat', 'Pacifico', cursive;

  /* Tamanos contenedor */
  --container-max: 1180px;
  --container-pad: 24px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
}

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ── Botones ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform 0.15s, box-shadow 0.15s, background-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--c-cyan);
  color: var(--ink-on-color);
  box-shadow: 0 4px 14px rgba(45, 212, 191, 0.4);
}
.btn-primary:hover { background: var(--c-cyan-dark); }
.btn-outline {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border: 1.5px solid rgba(26, 29, 36, 0.12);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { background: #fff; border-color: var(--c-cyan); color: var(--c-cyan-dark); }
.btn-wa {
  background: var(--c-wa);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}
.btn-wa:hover { background: var(--c-wa-dark); }
.btn-coral {
  background: var(--c-coral);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 91, 106, 0.4);
}

/* ── HEADER ───────────────────────────────────────────────── */
.header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.header-logo img { height: 44px; width: auto; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--c-coral); }
.header-nav a.active { color: var(--c-coral); }
.header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-coral);
  border-radius: 2px;
}
.header-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn-wa-mini {
  background: var(--c-wa);
  color: #fff;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: background-color 0.2s, transform 0.15s;
}
.btn-wa-mini:hover { background: var(--c-wa-dark); transform: translateY(-1px); }
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #d4f1f4;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/verano/hero-banner.png') center right / cover no-repeat;
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.55) 35%,
    rgba(255, 255, 255, 0) 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 620px;
  padding: 60px 0;
}
.hero-content {
  max-width: 550px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--ink);
}
.hero-title .script {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--c-coral);
  display: inline-block;
  font-size: 1.4em;
  line-height: 0.9;
  margin: 0 0.05em;
  transform: rotate(-3deg);
}
.hero-subtitle {
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-wave {
  width: 90px;
  height: 12px;
  margin: 8px 0 28px 0;
  color: var(--c-cyan);
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── HERO STATS bar ────────────────────────────────────────── */
.hero-stats {
  position: relative;
  z-index: 3;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  margin: -50px auto 40px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: calc(var(--container-max) - 40px);
}
.stat {
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}
.stat-icon.cyan   { background: var(--c-cyan); }
.stat-icon.orange { background: var(--c-orange); }
.stat-icon.yellow { background: var(--c-yellow); }
.stat-icon.wa     { background: var(--c-wa); }
.stat-text h4 {
  font-size: 0.98rem;
  margin: 0 0 4px;
  font-weight: 700;
}
.stat-text p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-mute);
}

.hero-image-mobile { display: none; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 980px) {
  .header-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; min-height: 0; padding: 80px 0 0; }
  .hero-bg { display: none; }
  .hero { background: linear-gradient(to bottom, #d4f1f4 0%, #fff8eb 100%); }
  .hero-content { max-width: 100%; text-align: left; }
  .hero-image-mobile {
    display: block;
    margin-top: 30px;
    width: 100%;
    height: 320px;
    background: url('../img/verano/hero-banner.png') center right / cover no-repeat;
    border-radius: 0;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    margin: -30px 16px 30px;
    padding: 22px;
  }
}
@media (max-width: 600px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .btn { font-size: 0.88rem; padding: 12px 22px; }
  .header-logo img { height: 36px; }
  .btn-wa-mini { padding: 9px 16px; font-size: 0.82rem; }
}

/* ═══════════════════════════════════════════════════════════
   FASE 2 — Sabores grid + Industrias
   ═══════════════════════════════════════════════════════════ */

/* ── Section header (titulo con olas decorativas) ─────────── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0;
}
.section-title::before,
.section-title::after {
  content: '';
  width: 50px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 14'><path d='M2 7 Q 8 1, 14 7 T 26 7 T 38 7 T 48 7' stroke='%232dd4bf' stroke-width='2.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Sabores section ──────────────────────────────────────── */
.sabores-section {
  padding: 90px 0;
  background: var(--bg);
}
.sabores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sabor-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}
.sabor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.sabor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Industrias section ───────────────────────────────────── */
.industrias-section {
  padding: 90px 0;
  background: var(--bg-soft);
}
.industrias-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.industria-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 28px 18px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.industria-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-cyan);
}
.industria-icon {
  font-size: 2.4rem;
  color: var(--c-cyan);
  margin-bottom: 14px;
  line-height: 1;
}
.industria-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 8px;
  color: var(--ink);
}
.industria-card p {
  font-size: 0.82rem;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.4;
}

/* ── Responsive Fase 2 ────────────────────────────────────── */
@media (max-width: 980px) {
  .sabores-grid { grid-template-columns: repeat(2, 1fr); }
  .industrias-grid { grid-template-columns: repeat(3, 1fr); }
  .sabores-section, .industrias-section { padding: 70px 0; }
}
@media (max-width: 600px) {
  .sabores-grid { grid-template-columns: 1fr; gap: 18px; }
  .industrias-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 1.6rem; gap: 12px; }
  .section-title::before,
  .section-title::after { width: 36px; }
}

/* ═══════════════════════════════════════════════════════════
   FASE 3 — Proceso 3 pasos + CTA Footer + Footer
   ═══════════════════════════════════════════════════════════ */

/* ── Proceso section ──────────────────────────────────────── */
.proceso-section {
  padding: 90px 0 110px;
  background: var(--bg);
}
.proceso-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.proceso-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 18px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.proceso-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.proceso-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  flex-shrink: 0;
}
.proceso-circle.wa { background: var(--c-wa); }
.proceso-circle.cyan { background: var(--c-cyan); }
.proceso-circle.coral { background: var(--c-coral); }
.proceso-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
}
.proceso-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 6px;
}
.proceso-step p {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.45;
}
.proceso-arrow {
  width: 60px;
  height: 24px;
  color: var(--c-cyan);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── CTA Footer (banner turquesa + rana surfista) ────────── */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--c-cyan) 0%, var(--c-cyan-deep) 100%);
  color: #fff;
  padding: 60px 0 70px;
  overflow: hidden;
  margin-bottom: 0;
}
.cta-banner::before {
  /* Olas blancas arriba */
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 50px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 50' preserveAspectRatio='none'><path d='M0 30 Q 150 0, 300 25 T 600 25 T 900 25 T 1200 30 L 1200 0 L 0 0 Z' fill='%23ffffff'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding-top: 30px;
}
.cta-text h2 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 8px;
}
.cta-text .cta-sub {
  font-size: 1.05rem;
  opacity: 0.95;
  margin: 0 0 22px;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: transform 0.2s;
}
.cta-phone:hover { transform: scale(1.02); }
.cta-phone i {
  font-size: 0.7em;
  background: rgba(255,255,255,0.18);
  width: 1.5em;
  height: 1.5em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.cta-pill {
  display: inline-block;
  margin-top: 18px;
  background: var(--c-yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 14px rgba(251, 191, 36, 0.5);
}
.cta-surfer {
  position: relative;
  width: 320px;
  flex-shrink: 0;
}
.cta-surfer img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
}

/* ── Footer estandar ──────────────────────────────────────── */
.footer {
  background: #1a1d24;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img {
  height: 50px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.footer-col h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1rem;
  margin: 0 0 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin-bottom: 8px;
}
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--c-cyan); }
.footer-col p {
  font-size: 0.9rem;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-col p i { color: var(--c-cyan); width: 16px; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.footer-social a:hover { background: var(--c-cyan); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.65); margin-left: 16px; }
.footer-bottom a:hover { color: var(--c-cyan); }

/* ── Responsive Fase 3 ────────────────────────────────────── */
@media (max-width: 980px) {
  .proceso-grid { grid-template-columns: 1fr; gap: 16px; }
  .proceso-arrow { transform: rotate(90deg); margin: -4px auto; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-surfer { width: 240px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 600px) {
  .cta-banner { padding: 50px 0 60px; }
  .cta-phone { font-size: 2.1rem; gap: 10px; }
  .cta-surfer { width: 200px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   FASE 4 — Page heroes (paginas internas) + Search
   ═══════════════════════════════════════════════════════════ */

.page-hero {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  padding: 80px 0 50px;
  text-align: center;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}
.page-hero-title .script {
  font-family: var(--font-script);
  color: var(--c-coral);
  font-size: 1.3em;
  display: inline-block;
  line-height: 0.9;
  margin: 0 0.05em;
  transform: rotate(-2deg);
}
.page-hero-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Search input ─────────────────────────────────────────── */
.search-wrap {
  max-width: 520px;
  margin: 32px auto 0;
  position: relative;
}
.search-wrap i {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-mute);
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 14px 22px 14px 50px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input:focus {
  border-color: var(--c-cyan);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.15);
}
.search-input::placeholder { color: var(--ink-mute); }

/* ── Sabor badge (Mas vendido / Nuevo) ────────────────────── */
.sabor-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--c-coral);
  color: #fff;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.sabor-badge-new { background: var(--c-cyan); }

@media (max-width: 600px) {
  .page-hero { padding: 60px 0 40px; }
  .page-hero-title { font-size: 2rem; }
  .search-wrap { max-width: 100%; padding: 0 4px; }
}

/* ═══════════════════════════════════════════════════════════
   FASE 4b — Sobre Nosotros
   ═══════════════════════════════════════════════════════════ */

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-cyan-dark);
  background: rgba(45, 212, 191, 0.1);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}

.about-block {
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 24px;
  line-height: 1.15;
}
.about-title .script {
  font-family: var(--font-script);
  color: var(--c-coral);
  font-size: 1.25em;
  display: inline-block;
  transform: rotate(-2deg);
  line-height: 0.9;
  margin: 0 0.05em;
}
.about-block p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}
.about-image img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

/* Mision quote */
.mission-section {
  background: var(--c-cyan);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.35;
  text-align: center;
  margin: 0;
  max-width: 880px;
  margin: 0 auto;
  font-weight: 500;
  color: #fff;
  font-style: normal;
  position: relative;
  padding: 0 30px;
}
.mission-quote::before,
.mission-quote::after {
  content: '"';
  font-family: var(--font-script);
  font-size: 4rem;
  position: absolute;
  opacity: 0.45;
  line-height: 1;
}
.mission-quote::before { left: -8px; top: -28px; }
.mission-quote::after { right: -8px; bottom: -52px; }
.mission-quote .script {
  font-family: var(--font-script);
  color: var(--c-yellow);
  font-size: 1.35em;
  display: inline-block;
  transform: rotate(-1deg);
  line-height: 0.9;
  margin: 0 0.05em;
}

/* Valores grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-card .value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 10px;
}
.value-card p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Timeline */
.timeline-verano {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  margin-top: 30px;
}
.timeline-verano::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--c-cyan) 0 8px,
    transparent 8px 16px
  );
}
.tl-item {
  text-align: center;
  position: relative;
}
.tl-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-cyan);
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px var(--c-cyan);
  margin: 22px auto 22px;
  position: relative;
  z-index: 2;
}
.tl-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 22px 18px;
  border: 1px solid var(--border);
  text-align: left;
}
.tl-year {
  display: inline-block;
  background: var(--c-coral);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 10px;
}
.tl-card h4 {
  font-size: 1rem;
  margin: 0 0 6px;
  font-family: var(--font-display);
}
.tl-card p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* Cifras */
.cifras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.cifra-card {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  padding: 32px 20px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  text-align: center;
}
.cifra-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--c-coral);
  line-height: 1;
  margin-bottom: 6px;
}
.cifra-lbl {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.highlight-box-verano {
  background: linear-gradient(135deg, var(--c-cyan) 0%, var(--c-cyan-deep) 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 36px 36px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.highlight-box-verano h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 12px;
}
.highlight-box-verano p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.95;
}

/* Responsive 4b */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-verano { grid-template-columns: repeat(2, 1fr); }
  .timeline-verano::before { display: none; }
  .cifras-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .timeline-verano { grid-template-columns: 1fr; }
  .about-block { padding: 60px 0; }
  .mission-section { padding: 50px 0; }
  .mission-quote { font-size: 1.2rem; padding: 0 12px; }
  .mission-quote::before { left: -2px; top: -20px; font-size: 3rem; }
  .mission-quote::after { right: -2px; bottom: -42px; font-size: 3rem; }
}

/* ═══════════════════════════════════════════════════════════
   FASE 4c — Registro (form + info column)
   ═══════════════════════════════════════════════════════════ */

.registro-verano {
  padding: 50px 0 90px;
  background: var(--bg);
}
.registro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: flex-start;
  max-width: 1180px;
  margin: 0 auto;
}

/* Form card */
.form-card-verano {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px 38px;
  box-shadow: var(--shadow-md);
}
.form-card-verano h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 0 0 6px;
  color: var(--ink);
}
.form-sub {
  color: var(--ink-mute);
  font-size: 0.95rem;
  margin: 0 0 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-group .req { color: var(--c-coral); }
.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--c-cyan);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.15);
}
.form-group input::placeholder { color: var(--ink-mute); }
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'><path d='M3 5 L 7 9 L 11 5' stroke='%238d92a0' stroke-width='2' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.checkbox-group {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 14px 0;
}
.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--c-cyan);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-group label {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.45;
  cursor: pointer;
}
.checkbox-group label a {
  color: var(--c-cyan-dark);
  text-decoration: underline;
}

.btn-submit-verano {
  width: 100%;
  margin-top: 14px;
  padding: 16px;
  background: var(--c-cyan);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(45, 212, 191, 0.4);
  position: relative;
  transition: background-color 0.2s, transform 0.15s;
}
.btn-submit-verano:hover:not(.loading) {
  background: var(--c-cyan-dark);
  transform: translateY(-2px);
}
.btn-submit-verano.loading .btn-text { visibility: hidden; }
.btn-submit-verano.loading .spinner-verano {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.btn-submit-verano .spinner-verano { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Info column */
.info-column-verano {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-card-verano {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.info-card-verano:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.info-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.info-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.info-card-verano h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0;
  color: var(--ink);
}
.benefits-list-verano,
.steps-list-verano {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefits-list-verano li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.benefits-list-verano li i {
  color: var(--c-cyan);
  margin-top: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.steps-list-verano {
  counter-reset: step;
}
.steps-list-verano li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-card-verano p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.contact-card-verano p i { color: var(--c-orange); width: 16px; text-align: center; }
.contact-card-verano p a { color: var(--ink-soft); }
.contact-card-verano p a:hover { color: var(--c-cyan-dark); }

.coqui-ai-banner-verano {
  background: linear-gradient(135deg, var(--c-cyan) 0%, var(--c-cyan-deep) 100%);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  color: #fff;
}
.coqui-ai-banner-verano .ai-emoji {
  font-size: 2.5rem;
  margin-bottom: 6px;
}
.coqui-ai-banner-verano h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 8px;
}
.coqui-ai-banner-verano p {
  margin: 0 0 16px;
  font-size: 0.9rem;
  opacity: 0.95;
  line-height: 1.45;
}
.coqui-ai-banner-verano .btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-wa);
  color: #fff;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: var(--shadow-sm);
}
.coqui-ai-banner-verano .btn-wa:hover { background: var(--c-wa-dark); }

/* Toast */
.toast-verano {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9999;
  max-width: calc(100% - 40px);
  text-align: center;
}
.toast-verano.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.toast-verano.success { background: var(--c-wa); }
.toast-verano.error { background: var(--c-coral); }

/* Responsive 4c */
@media (max-width: 980px) {
  .registro-grid { grid-template-columns: 1fr; gap: 24px; }
  .info-column-verano { order: 1; }
  .form-card-verano { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-card-verano { padding: 26px 20px; }
}

/* ═══════════════════════════════════════════════════════════
   FASE 4d — Puntos de venta + Mapa
   ═══════════════════════════════════════════════════════════ */

.partner-banner-verano {
  background: linear-gradient(135deg, var(--c-coral) 0%, #ff7a8a 100%);
  color: #fff;
  padding: 14px 0;
}
.partner-banner-verano .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.partner-banner-verano i.fa-store { font-size: 1.1rem; }
.partner-banner-verano .btn-mini {
  background: #fff;
  color: var(--c-coral);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.15s;
}
.partner-banner-verano .btn-mini:hover { transform: translateY(-1px); }

.locations-section { padding: 60px 0 80px; }

.locations-controls {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  background: #fff;
  color: var(--ink-soft);
  border: 1.5px solid var(--border);
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.pill:hover { border-color: var(--c-cyan); color: var(--c-cyan-dark); }
.pill.active {
  background: var(--c-cyan);
  color: #fff;
  border-color: var(--c-cyan);
  box-shadow: 0 4px 14px rgba(45, 212, 191, 0.4);
}

.locations-stats-verano {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 22px;
  margin-bottom: 28px;
}
.loc-stat { text-align: center; }
.loc-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--c-coral);
  line-height: 1;
  margin-bottom: 4px;
}
.loc-stat-lbl {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.map-wrapper-verano {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
#map {
  width: 100%;
  height: 480px;
}

/* Leaflet popup styling */
.leaflet-popup-content-wrapper {
  border-radius: var(--r-md) !important;
  box-shadow: var(--shadow-lg) !important;
  padding: 4px !important;
}
.leaflet-popup-content {
  font-family: var(--font-body) !important;
  margin: 12px 16px !important;
  min-width: 180px;
}
.leaflet-popup-content h4 {
  font-family: var(--font-display) !important;
  font-size: 1rem !important;
  margin: 0 0 6px !important;
  color: var(--ink) !important;
}
.leaflet-popup-content p {
  margin: 4px 0 !important;
  font-size: 0.85rem !important;
  color: var(--ink-soft) !important;
  line-height: 1.4 !important;
}

/* Cards de locaciones */
.locations-grid-verano {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.loc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 20px;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
}
.loc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-cyan);
}
.loc-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.12);
  color: var(--c-cyan-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.loc-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.25;
}
.loc-card-addr {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0 0 6px;
  line-height: 1.4;
}
.loc-card-town {
  font-size: 0.82rem;
  color: var(--ink-mute);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.loc-card-town i { color: var(--c-coral); }
.loc-card-type {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

.no-results-verano {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-mute);
}
.no-results-verano i {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
  opacity: 0.4;
}

/* Responsive 4d */
@media (max-width: 980px) {
  .locations-grid-verano { grid-template-columns: repeat(2, 1fr); }
  #map { height: 380px; }
}
@media (max-width: 600px) {
  .locations-grid-verano { grid-template-columns: 1fr; }
  .locations-controls { flex-direction: column; align-items: stretch; }
  .filter-pills { justify-content: center; }
  .partner-banner-verano .container { font-size: 0.85rem; gap: 10px; padding: 0 16px; }
  #map { height: 320px; }
}

/* ═══════════════════════════════════════════════════════════
   FASE 4e — Paginas legales (privacidad + terminos)
   ═══════════════════════════════════════════════════════════ */

.legal-section-verano {
  padding: 50px 0 80px;
  background: var(--bg);
}
.legal-section-verano .container { max-width: 820px; }

.legal-back-verano {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-cyan-dark);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 30px;
  transition: color 0.2s;
}
.legal-back-verano:hover { color: var(--c-cyan-deep); }

.legal-block {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-block:last-of-type { border-bottom: none; }
.legal-block h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  margin: 0 0 14px;
}
.legal-block p {
  margin: 0 0 12px;
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.legal-block p strong { color: var(--ink); }
.legal-block ul {
  margin: 8px 0 16px;
  padding-left: 22px;
}
.legal-block li {
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 6px;
}
.legal-block li::marker { color: var(--c-cyan); }
.legal-block a {
  color: var(--c-cyan-dark);
  text-decoration: underline;
}
.legal-block a:hover { color: var(--c-cyan-deep); }

.legal-contact-verano {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  margin: 32px 0;
}
.legal-contact-verano h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0 0 14px;
}
.legal-contact-verano p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.legal-contact-verano p i {
  color: var(--c-cyan);
  width: 18px;
  text-align: center;
}
.legal-contact-verano p a {
  color: var(--ink-soft);
  font-weight: 500;
}
.legal-contact-verano p a:hover { color: var(--c-cyan-dark); }

.legal-nav-verano {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .legal-section-verano { padding: 30px 0 60px; }
  .legal-block h2 { font-size: 1.15rem; }
  .legal-contact-verano { padding: 22px 20px; }
  .legal-nav-verano { flex-direction: column; }
  .legal-nav-verano .btn { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   FIX 2026-05-24 — Menu mobile drop-down al hacer click hamburguer
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .header-nav.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 24px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-top: 1px solid var(--border);
    z-index: 99;
    align-items: stretch;
  }
  .header-nav.open a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    width: 100%;
    font-size: 1rem;
  }
  .header-nav.open a:last-child { border-bottom: none; }
  .header-nav.open a.active::after { display: none; }
  .header-nav.open a.active { color: var(--c-coral); background: rgba(255, 91, 106, 0.06); border-radius: 8px; padding-left: 12px; padding-right: 12px; }
  .menu-toggle { font-size: 1.6rem; padding: 6px 10px; cursor: pointer; color: var(--ink); }
}
