/* ============================================================
   EMPACADOS 3000 C.A. — Servicio de catering corporativo
   Hoja de estilos principal
   ============================================================ */

/* ---------- Tipografías de marca ---------- */
@font-face {
  font-family: "Always Forever";
  src: url("../fonts/AlwaysForever.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Always Forever";
  src: url("../fonts/AlwaysForever-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Tw Cen MT";
  src: url("../fonts/TwCenMT.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Tw Cen MT";
  src: url("../fonts/TwCenMT-Italic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Tw Cen MT";
  src: url("../fonts/TwCenMT-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Tw Cen MT Condensed";
  src: url("../fonts/TwCenMT-Condensed.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Tw Cen MT Condensed";
  src: url("../fonts/TwCenMT-CondensedBold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Tw Cen MT Condensed XB";
  src: url("../fonts/TwCenMT-CondensedExtraBold.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ---------- Variables de marca ---------- */
:root {
  /* Base: negro elegante + neutros (la comida es la protagonista) */
  --ink:        #14100c;   /* carbón cálido (texto oscuro, nav y footer) */
  --ink-2:      #1e1711;   /* panel oscuro secundario */
  --ink-3:       #FFFFFF;  /* tarjetas sobre oscuro */
  --cream:      #f6f0e5;   /* texto claro / papel cálido */
  --cream-soft: #cec6b6;   /* texto claro secundario */
  --muted:      #948b7c;   /* texto tenue */

  /* Acentos (psicologia del color) */
  --coral:      #2f6bfe;   /* acento azul (paleta del cliente) */
  --coral-dark: #1f4fd0;
  --gold:       #e6b34a;   /* dorado: alto nivel, elegancia */
  --green:      #7fae3a;   /* verde: salud, natural */

  /* Superficies claras */
  --paper:      #ffffff;
  --paper-2:    #f4f3f1;
  --line:       #e7e4df;

  /* Tipografia */
  --font-hand:  "Always Forever", "Segoe Script", cursive;
  --font-head:  "Tw Cen MT", "Century Gothic", system-ui, sans-serif;
  --font-xb:    "Tw Cen MT", "Century Gothic", sans-serif;
  --font-body:  "Tw Cen MT", "Century Gothic", system-ui, sans-serif;

  --wrap: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 18px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea, option { font-family: var(--font-body); }
::placeholder { font-family: var(--font-body); color: var(--muted); opacity: 1; }
ul { list-style: none; }

/* ---------- Utilidades ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(24px, 6vw, 56px); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .78rem;
  color: var(--coral);
}

.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  font-size: .95rem; padding: .95em 1.7em;
  border-radius: 2px; transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--coral); color: #fff; }
.btn--solid:hover { background: var(--coral-dark); }
.btn--ghost { background: transparent; color: var(--cream); box-shadow: inset 0 0 0 1px rgba(244,241,234,.35); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--cream); background: rgba(244,241,234,.06); }
.btn__arrow { transition: transform .35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ---------- Navegacion ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(20px, 5vw, 56px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom-color: var(--line);
  padding-block: 8px;
  box-shadow: 0 8px 24px -16px rgba(20,16,12,.35);
}
.nav__logo { display: flex; align-items: center; gap: 15px; }
.nav__mark { height: 94px; width: auto; transition: height .4s var(--ease); }
.nav.is-scrolled .nav__mark { height: 54px; }
.nav__mark--dark { display: none; }
.nav.is-scrolled .nav__mark--light { display: none; }
.nav.is-scrolled .nav__mark--dark { display: block; }
.nav__word { display: flex; flex-direction: column; align-items: center; }
.nav__word-main {
  font-family: var(--font-hand); font-weight: 700;
  font-size: 3.6rem; letter-spacing: 0; color: #fff;
  line-height: .74; text-shadow: 0 2px 14px rgba(0,0,0,.4);
  transition: font-size .4s var(--ease), color .4s var(--ease);
}
.nav.is-scrolled .nav__word-main { font-size: 2.55rem; color: var(--ink); text-shadow: none; }
.nav__word-sub {
  font-family: var(--font-head); text-transform: uppercase;
  font-size: .78rem; letter-spacing: .16em; color: #e2eaff;
  margin-top: 2px; text-shadow: 0 1px 10px rgba(0,0,0,.35);
  transition: font-size .4s var(--ease), color .4s var(--ease);
}
.nav.is-scrolled .nav__word-sub { font-size: .62rem; color: var(--coral); text-shadow: none; }
.nav__menu { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav__link {
  font-family: var(--font-head); font-weight: 400;
  text-transform: uppercase; letter-spacing: .18em; font-size: .8rem;
  color: #fff; position: relative; padding: 4px 0;
  transition: color .3s var(--ease); text-shadow: 0 1px 10px rgba(0,0,0,.35);
}
.nav.is-scrolled .nav__link { color: var(--ink); text-shadow: none; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: #fff; transition: width .35s var(--ease);
}
.nav.is-scrolled .nav__link::after { background: var(--coral); }
.nav__link:hover { color: #fff; }
.nav.is-scrolled .nav__link:hover { color: var(--coral); }
.nav__link:hover::after { width: 100%; }
.nav__cta { padding: .7em 1.3em; font-size: .82rem; }
.nav__cta, .nav.is-scrolled .nav__cta { color: #fff; text-shadow: none; }
.nav__cta::after { display: none; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 6px; transform-origin: center; transition: transform .4s var(--ease); }
.nav.is-scrolled .nav__burger { transform: scale(.9); }
.nav__burger span { width: 25px; height: 2px; background: #fff; transition: .3s var(--ease); }
.nav.is-scrolled .nav__burger span { background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 88vh;
  display: grid; grid-template-columns: 1.05fr .95fr;
  padding-top: 90px;
}
.hero__content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 72px) clamp(40px, 6vw, 70px);
  max-width: 680px; margin-left: auto; width: 100%;
}
.hero__title {
  font-family: var(--font-body); font-weight: 400;
  font-size: clamp(2.35rem, 6.8vw, 5.6rem); line-height: 1.02;
  letter-spacing: -.015em; text-transform: none; margin: 22px 0 0; max-width: 16ch;
}
.hero__title em { font-style: italic; color: var(--coral); }
.hero__lead {
  font-size: 1.25rem; color: #5f5b53;
  max-width: 40ch; margin: 26px 0 32px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.link-underline {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-body); font-size: 1.08rem; color: var(--ink);
  padding-bottom: 6px; border-bottom: 1px solid var(--coral);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.link-underline span { color: var(--coral); transition: transform .3s var(--ease); }
.link-underline:hover { gap: .9em; }
.link-underline:hover span { transform: translateX(4px); }
.hero__stats {
  display: flex; gap: clamp(24px, 4vw, 48px); flex-wrap: wrap;
  margin-top: 46px; padding-top: 28px;
  border-top: 1px solid rgba(244,241,234,.12);
}
.stat__num {
  font-family: var(--font-xb); font-size: 2.3rem; line-height: 1; color: var(--gold);
}
.stat__label {
  font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .14em; font-size: .72rem; color: var(--muted); margin-top: 6px;
}

/* Panel visual del hero: oculto por ahora (la foto oscura no combina con el blanco).
   Aquí colocaremos luego la imagen real de otra forma. */
.hero__visual {
  position: relative; background: var(--paper-2);
  display: block; overflow: hidden;
}
.hero__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__visual::after, .hero__visual::before { display: none; }
.hero__watermark {
  width: min(74%, 460px); opacity: .07; filter: none;
  animation: floaty 9s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-14px) } }
.hero__ph-note {
  position: absolute; text-align: center; color: var(--muted);
  font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .2em; font-size: .72rem; line-height: 1.9;
}
.hero__tag {
  position: absolute; bottom: 28px; right: 28px;
  background: rgba(14,14,13,.82); border: 1px solid rgba(244,241,234,.16);
  padding: 12px 16px; border-radius: 3px; backdrop-filter: blur(4px);
}
.hero__tag small {
  display: block; font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .16em; font-size: .66rem; color: var(--muted);
}
.hero__tag strong {
  font-family: var(--font-hand); font-weight: 400; font-size: 1.35rem; color: var(--cream);
}

.hero__scroll {
  position: absolute; left: clamp(28px, 5vw, 72px); bottom: 26px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .2em; font-size: .68rem; color: var(--muted);
}
.hero__scroll i { width: 1px; height: 34px; background: var(--muted); position: relative; overflow: hidden; }
.hero__scroll i::after {
  content: ""; position: absolute; inset: 0; background: var(--coral);
  animation: scrolldot 2s var(--ease) infinite;
}
@keyframes scrolldot { 0% { transform: translateY(-100%) } 60%,100% { transform: translateY(100%) } }

/* ---------- Encabezado de sección (reutilizable) ---------- */
.section-head { max-width: 660px; margin-bottom: 44px; }
.section-title {
  font-family: var(--font-head); font-weight: 700; text-transform: none;
  font-size: clamp(1.9rem, 4.2vw, 3.1rem); line-height: 1.08; letter-spacing: -.02em;
  margin: 14px 0 0; color: inherit;
}
.section-title .hand {
  font-family: var(--font-body); font-style: italic; font-weight: 400;
  text-transform: none; letter-spacing: 0; color: var(--coral); font-size: 1em;
}
.section-sub { font-size: 1.1rem; margin-top: 20px; color: #5f5b53; max-width: 52ch; }

/* ---------- Sección Propuesta ---------- */
.intro { background: var(--ink-2); color: var(--cream); padding: clamp(70px, 9vw, 118px) 0; }
.intro .eyebrow { color: var(--coral); }
.intro__wrap { max-width: 900px; }
.intro__title {
  font-family: var(--font-head); font-weight: 400;
  font-size: clamp(1.9rem, 3.9vw, 3rem); line-height: 1.14;
  letter-spacing: -.015em; margin: 16px 0 22px; color: var(--cream);
}
.intro__title em { font-style: italic; color: var(--coral); }
.intro__text { font-size: 1.2rem; line-height: 1.75; color: var(--cream-soft); max-width: 62ch; }

/* ---------- Sección Menú ---------- */
.menu { background: var(--paper); color: var(--ink); padding: clamp(72px, 10vw, 128px) 0; }
.menu .eyebrow { color: var(--coral); }

.menu__filters {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 12px 28px; margin-bottom: 40px;
  padding-bottom: 26px; border-bottom: 1px solid var(--line);
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips--cat { margin-left: auto; }
.chip {
  font-family: var(--font-head); font-weight: 400; text-transform: uppercase;
  letter-spacing: .14em; font-size: .78rem;
  color: var(--ink); background: transparent;
  border: 1px solid rgba(14,14,13,.2); padding: .68em 1.2em; border-radius: 2px;
  transition: all .25s var(--ease);
}
.chip:hover { border-color: var(--ink); transform: translateY(-1px); }
.chip.is-active { background: var(--coral); border-color: var(--coral); color: #fff; }
.chip--healthy { display: inline-flex; align-items: center; gap: .5em; border-color: rgba(127,174,58,.55); color: #4f7d1e; }
.chip--healthy:hover { border-color: var(--green); transform: translateY(-1px); }
.chip--healthy.is-active { background: var(--green); border-color: var(--green); color: #fff; }
.chip--healthy svg { display: block; }

.menu__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  column-gap: clamp(40px, 6vw, 80px); row-gap: 0;
}
.dish {
  display: flex; gap: 18px; align-items: center;
  padding: 15px 4px; border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .5s var(--ease);
}
.dish.is-in { opacity: 1; transform: none; }
.dish__media { flex: 0 0 76px; height: 76px; border-radius: 8px; overflow: hidden; background: var(--paper-2); }
.dish__ph { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s var(--ease); }
.dish:hover .dish__ph { transform: scale(1.07); }
.dish__body { flex: 1; min-width: 0; }
.dish__name {
  font-family: var(--font-head); font-weight: 400; font-size: 1.5rem;
  line-height: 1.1; letter-spacing: -.01em; color: var(--ink);
  transition: color .3s var(--ease);
}
.dish:hover .dish__name { color: var(--coral); }
.dish__desc { font-size: .96rem; color: #8a8172; margin-top: 4px; }
.dish__health { display: none; color: #4f7d1e; font-style: normal; }
.menu__grid.is-healthy .dish__health { display: inline; }
.menu__foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 18px; margin-top: 42px;
}
.menu__foot .link-underline { color: var(--ink); }
.menu__count { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; color: var(--muted); }
.menu__empty { grid-column: 1 / -1; text-align: center; padding: 40px; color: var(--muted); font-size: 1.05rem; }

@media (max-width: 720px) {
  .chips--cat { margin-left: 0; width: 100%; }
}

/* ---------- Sección Beneficios ---------- */
.benefits { background: var(--paper-2); color: var(--ink); padding: clamp(72px, 10vw, 128px) 0; position: relative; }
.benefits .section-sub { color: #5f5b53; }
.benefits .section-title .hand { color: var(--coral); }
.benefits__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); gap: 22px;
}
.benefit {
  padding: 34px 28px 30px; border: 1px solid var(--line);
  border-radius: 12px; background: #fff;
  box-shadow: 0 1px 2px rgba(20,16,12,.04), 0 14px 30px -22px rgba(20,16,12,.15);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.benefit:hover { transform: translateY(-6px); border-color: rgba(47,107,254,.45); box-shadow: 0 18px 36px -22px rgba(20,16,12,.4); }
.benefit__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--coral); margin-bottom: 20px;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .45s var(--ease);
}
.benefit:hover .benefit__icon { background: var(--coral); border-color: var(--coral); color: #fff; transform: rotate(-6deg); }
.benefit__icon svg { width: 26px; height: 26px; }
.benefit__title {
  font-family: var(--font-head); font-weight: 400; text-transform: none;
  letter-spacing: -.01em; font-size: 1.55rem; color: var(--ink); margin-bottom: 10px;
}
.benefit__text { font-size: 1rem; color: #5f5b53; line-height: 1.6; }

/* ---------- Sección Sobre nosotros (oscura) ---------- */
.about { background: var(--paper-2); color: var(--ink); padding: clamp(72px, 10vw, 128px) 0; }
.about .eyebrow { color: var(--coral); }
.about__head { max-width: 840px; margin-bottom: clamp(36px, 5vw, 64px); }
.about__promise { font-size: clamp(1.15rem, 2.2vw, 1.5rem); line-height: 1.55; color: #5f5b53; margin-top: 18px; max-width: 60ch; }
.about__promise em { font-style: italic; color: var(--coral); }
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about__media { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--paper-2); }
.about__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__text { font-size: 1.12rem; line-height: 1.75; color: #5f5b53; margin-top: 18px; max-width: 56ch; }
.about__quote {
  margin: 28px 0 0; padding-left: 20px; border-left: 2px solid var(--coral);
  font-family: var(--font-body); font-style: italic; font-size: 1.28rem;
  line-height: 1.5; color: var(--ink);
}
.about__quote cite { display: block; margin-top: 10px; font-style: normal; font-size: .9rem; letter-spacing: .04em; color: var(--muted); }

.testimonials__title { font-family: var(--font-head); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -.01em; color: var(--ink); margin: clamp(52px, 7vw, 96px) 0 24px; }
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.testimonial { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 26px 24px; box-shadow: 0 1px 2px rgba(20,16,12,.04), 0 14px 30px -22px rgba(20,16,12,.14); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.testimonial:hover { transform: translateY(-4px); box-shadow: 0 1px 2px rgba(20,16,12,.04), 0 24px 46px -26px rgba(20,16,12,.22); }
.testimonial blockquote { font-size: 1.15rem; line-height: 1.55; color: var(--ink); }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial__avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--coral); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: .85rem; letter-spacing: .04em; flex: 0 0 auto;
}
.testimonial figcaption strong { display: block; font-size: .98rem; color: var(--ink); }
.testimonial figcaption small { color: var(--muted); font-size: .82rem; }

/* ---------- Sección Precios ---------- */
.pricing { background: var(--paper); color: var(--ink); padding: clamp(72px, 10vw, 128px) 0; }
.pricing .eyebrow { color: var(--coral); }
.pricing__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.price-card { padding: 34px 30px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 1px 2px rgba(20,16,12,.04), 0 14px 30px -22px rgba(20,16,12,.15); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.price-card:hover { transform: translateY(-6px); border-color: rgba(47,107,254,.4); box-shadow: 0 20px 40px -24px rgba(20,16,12,.5); }
.price-card:hover .price-card__num { color: var(--coral); -webkit-text-stroke-width: 0; }
.price-card__num { font-family: var(--font-xb); font-size: 2.4rem; color: transparent; -webkit-text-stroke: 1.5px var(--coral); letter-spacing: .02em; transition: color .35s var(--ease), -webkit-text-stroke-width .35s var(--ease); }
.price-card__title { font-family: var(--font-head); font-weight: 400; text-transform: none; font-size: 1.65rem; letter-spacing: -.01em; color: var(--ink); margin: 14px 0 10px; }
.price-card__text { font-size: 1rem; color: #6b675f; line-height: 1.6; }
.pricing__cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-top: 44px; padding: 32px 34px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.pricing__cta p { font-family: var(--font-head); font-weight: 400; text-transform: none; letter-spacing: -.01em; font-size: 1.5rem; color: var(--ink); }

/* ---------- Sección Contacto ---------- */
.contact { background: var(--paper-2); color: var(--ink); padding: clamp(72px, 10vw, 128px) 0; }
.contact .eyebrow { color: var(--coral); }
.contact__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.contact .section-head { margin-bottom: 0; }
.contact .section-sub { color: #5f5b53; }
.contact__list { margin: 30px 0 26px; display: flex; flex-direction: column; gap: 14px; }
.contact__list li { display: flex; flex-direction: column; gap: 2px; }
.contact__list span { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .16em; font-size: .7rem; color: var(--muted); }
.contact__list a { font-size: 1.15rem; color: var(--ink); transition: color .25s var(--ease); }
.contact__list a:hover { color: var(--coral); }
.btn--wa { background: transparent; color: var(--cream); box-shadow: inset 0 0 0 1px rgba(244,241,234,.35); }
.btn--wa:hover { box-shadow: inset 0 0 0 1px var(--cream); background: rgba(244,241,234,.06); }

.contact__form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: clamp(24px, 3vw, 36px); box-shadow: 0 1px 2px rgba(20,16,12,.04), 0 20px 44px -28px rgba(20,16,12,.2); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: #5f5b53; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 6px; padding: 12px 14px; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(47,107,254,.18);
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; cursor: pointer; }
.contact__submit { grid-column: 1 / -1; justify-content: center; margin-top: 4px; }
.contact__note { grid-column: 1 / -1; font-size: .95rem; color: #5f5b53; margin: 0; min-height: 1.2em; }
.contact__note.is-ok { color: #7fd39a; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--cream-soft); padding-top: 54px; border-top: 1px solid rgba(244,241,234,.08); }
.footer__wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-bottom: 34px; }
.footer__brand { display: flex; align-items: center; gap: 18px; max-width: 520px; }
.footer__brand img { height: 60px; width: auto; }
.footer__brand p { font-size: .92rem; color: var(--muted); line-height: 1.5; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__nav a { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; color: var(--cream-soft); transition: color .25s var(--ease); }
.footer__nav a:hover { color: var(--coral); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding: 20px 0; margin-top: 8px; border-top: 1px solid rgba(244,241,234,.08); font-size: .82rem; color: var(--muted); }

@media (max-width: 820px) {
  .contact__wrap { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .footer__wrap { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer__bottom span { max-width: 100%; }
}
@media (max-width: 520px) {
  .contact__form { grid-template-columns: 1fr; }
  .pricing__cta { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reveal al hacer scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-reveal], .dish { opacity: 1 !important; transform: none !important; }
}

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff;
  box-shadow: 0 10px 24px -6px rgba(0,0,0,.45);
  transition: transform .3s var(--ease), box-shadow .25s var(--ease), opacity .4s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 28px -6px rgba(0,0,0,.5); }
.wa-float svg { width: 30px; height: 30px; }
.cta-float { display: none; }

/* En el hero (arriba) los flotantes están ocultos; aparecen al hacer
   scroll, en el mismo momento en que el nav se compacta (is-scrolled). */
.wa-float, .cta-float { opacity: 0; transform: translateY(16px); pointer-events: none; }
body.is-scrolled .wa-float, body.is-scrolled .cta-float { opacity: 1; transform: none; pointer-events: auto; }

/* Al llegar al formulario/footer, los flotantes se desvanecen */
.floats-hidden .wa-float, .floats-hidden .cta-float {
  opacity: 0; transform: translateY(16px); pointer-events: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { order: 1; max-width: none; padding: 120px clamp(20px, 5vw, 56px) 40px; }
  .hero__visual { order: 2; display: block; height: 44vh; min-height: 300px; }

  .nav__mark { height: 80px; }
  .nav.is-scrolled .nav__mark { height: 48px; }
  .nav__word-main { font-size: 3rem; }
  .nav.is-scrolled .nav__word-main { font-size: 2.2rem; }
  .nav__word-sub { font-size: .68rem; letter-spacing: .14em; }
  .nav.is-scrolled .nav__word-sub { font-size: .56rem; }
  .nav__burger { display: flex; position: relative; z-index: 60; }
  .nav__menu {
    position: fixed; top: 0; left: 0; right: 0; z-index: 45;
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 22px; padding: 108px 34px 44px; min-height: 62vh;
    background: #fff;
    border-bottom: 1px solid var(--line);
    transform: translateY(-100%); pointer-events: none;
    transition: transform .42s var(--ease);
  }
  body.nav-open .nav__menu { transform: none; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
  .nav__menu .nav__link { font-size: 1.2rem; letter-spacing: .12em; color: var(--ink); text-shadow: none; }
  .nav__menu .nav__link::after { background: var(--coral); }
  .nav__menu .nav__cta { margin-top: 10px; font-size: 1rem; color: #fff; }
  /* Con el menú móvil abierto (fondo blanco), logo y burger en oscuro */
  body.nav-open .nav__mark--light { display: none; }
  body.nav-open .nav__mark--dark { display: block; }
  body.nav-open .nav__word-main { color: var(--ink); text-shadow: none; }
  body.nav-open .nav__word-sub { color: var(--coral); text-shadow: none; }
  body.nav-open .nav__burger span { background: var(--ink); }
  body.nav-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav__burger span:nth-child(2) { opacity: 0; }
  body.nav-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Botón flotante directo al formulario */
  .cta-float {
    display: inline-flex; align-items: center; gap: .45em;
    position: fixed; left: 16px; bottom: 18px; z-index: 60;
    background: var(--coral); color: #fff;
    font-family: var(--font-head); text-transform: uppercase; letter-spacing: .12em;
    font-size: .8rem; padding: 14px 20px; border-radius: 40px;
    box-shadow: 0 10px 24px -6px rgba(0,0,0,.45);
    transition: transform .3s var(--ease), box-shadow .25s var(--ease), opacity .4s var(--ease);
  }
  .cta-float:hover { transform: translateY(-3px); }
  body.nav-open .wa-float, body.nav-open .cta-float { opacity: 0; pointer-events: none; }
}
/* ---------- Menú como carrusel deslizable (solo móvil) ---------- */
@media (max-width: 640px) {
  /* Filtros: que se envuelvan para ver todos completos (sin cortar) */
  .menu__filters { flex-direction: column; align-items: stretch; gap: 14px; padding-bottom: 22px; }
  #mealFilters { flex-wrap: wrap; gap: 8px; }
  .chips--cat { margin-left: 0; }

  /* Carrusel de platos */
  .menu__grid {
    display: flex; gap: 14px;
    overflow-x: auto; scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch; padding-bottom: 12px; margin: 0 -4px;
  }
  .dish {
    display: block; flex: 0 0 80%; scroll-snap-align: center;
    border: 1px solid var(--line); border-radius: 12px;
    background: #fff; padding: 0; overflow: hidden; cursor: pointer;
    box-shadow: 0 1px 2px rgba(20,16,12,.04), 0 16px 34px -24px rgba(20,16,12,.18);
  }
  .dish__media { display: block; position: relative; flex: none; height: 178px; border-radius: 0; background: var(--paper-2); }
  .dish__ph { width: 100%; height: 100%; object-fit: cover; display: block; }
  .dish__body { padding: 16px 18px 18px; }
  .dish:hover .dish__name { color: var(--ink); transform: none; }
  .dish.is-open .dish__name { color: var(--coral); }
  .dish__desc {
    max-height: 0; overflow: hidden; opacity: 0; margin-top: 0;
    transition: max-height .4s var(--ease), opacity .3s var(--ease), margin-top .3s var(--ease);
  }
  .dish.is-open .dish__desc { max-height: 200px; opacity: 1; margin-top: 8px; }
  .dish__body::after {
    content: "toca para ver más"; display: block; margin-top: 12px;
    font-family: var(--font-head); text-transform: uppercase; letter-spacing: .14em;
    font-size: .62rem; color: var(--muted);
  }
  .dish.is-open .dish__body::after { content: "toca para cerrar"; }
  .menu__foot { margin-top: 26px; }

  /* Beneficios y Precios también deslizables en móvil */
  .benefits__grid, .pricing__grid {
    display: flex; gap: 14px;
    overflow-x: auto; scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch; padding-bottom: 12px; margin: 0 -4px;
  }
  .benefit, .price-card { flex: 0 0 82%; scroll-snap-align: center; }

  /* Quiénes somos: apilar y testimonios deslizables */
  .about__grid { grid-template-columns: 1fr; gap: 26px; }
  .about__media { aspect-ratio: 16 / 11; }
  .testimonials {
    display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch; padding-bottom: 12px; margin: 0 -4px;
  }
  .testimonial { flex: 0 0 84%; scroll-snap-align: center; }

  /* Que el scroll vertical no se quede pegado en los carruseles:
     apagamos el scroll vertical del contenedor y dejamos solo el horizontal */
  .menu__grid, .benefits__grid, .pricing__grid, .testimonials {
    touch-action: pan-x; overscroll-behavior: contain;
    overflow-y: hidden; padding-top: 4px; padding-bottom: 30px;
  }
}

@media (max-width: 520px) {
  body { font-size: 17px; }
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .wa-float svg { width: 27px; height: 27px; }
}

/* ============================================================
   REDISEÑO v2 — estructura tipo landing (coral)
   ============================================================ */

/* Botones */
.btn--pill { border-radius: 40px; padding: 1em 1.9em; }
.nav__cta { border-radius: 40px; background: var(--coral); color: #fff; }
.nav__cta:hover { background: var(--coral-dark); color: #fff; }
.btn--play {
  background: transparent; color: var(--ink);
  display: inline-flex; align-items: center; gap: .55em; padding: 1em 1.3em;
}
.btn--play svg { color: var(--coral); }
.btn--play:hover { color: var(--coral); }
.btn--outline { background: transparent; color: var(--coral); box-shadow: inset 0 0 0 1.5px var(--coral); }
.btn--outline:hover { background: var(--coral); color: #fff; box-shadow: inset 0 0 0 1.5px var(--coral); }

.section-head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-cta { text-align: center; margin-top: 46px; }

/* HERO — foto a todo el ancho con velo oscuro */
.hero2 {
  position: relative; overflow: hidden; isolation: isolate; background: #14100c;
  display: flex; flex-direction: column;
  min-height: 100vh; min-height: 100svh;
}
.hero2__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 42%; z-index: -2;
}
.hero2__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(15,12,9,.9) 0%, rgba(15,12,9,.76) 40%, rgba(15,12,9,.44) 72%, rgba(15,12,9,.22) 100%),
    linear-gradient(0deg, rgba(15,12,9,.66) 0%, rgba(15,12,9,0) 30%);
}
.hero2__wrap {
  flex: 1 1 auto;
  display: flex; align-items: center;
  padding-block: 128px 20px;
}
.hero2__content { max-width: 42rem; }
/* Stats dentro del hero (se ven sin hacer scroll) */
.hero2__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding-block: 22px 34px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero2__stats .stat2__ico { background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(2px); }
.hero2__stats .stat2 strong { color: #fff; text-shadow: 0 1px 14px rgba(0,0,0,.55); }
.hero2__stats .stat2 small { color: rgba(255,255,255,.86); text-shadow: 0 1px 10px rgba(0,0,0,.5); }
.hero2 .eyebrow { color: #a9c4ff; }
.hero2__title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2.4rem, 5.4vw, 4.3rem); line-height: 1.05;
  letter-spacing: -.025em; margin: 18px 0 0; color: #fff;
  text-shadow: 0 2px 26px rgba(0,0,0,.42);
}
.hero2__title em { font-style: normal; color: #6f9bff; }
.hero2__lead { font-size: 1.22rem; color: rgba(255,255,255,.92); max-width: 44ch; margin: 22px 0 30px; text-shadow: 0 1px 16px rgba(0,0,0,.38); }
.hero2__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero2 .btn--play { color: #fff; }
.hero2 .btn--play svg { color: #a9c4ff; }
.hero2 .btn--play:hover { color: #a9c4ff; }

/* STATS */
.stats { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(28px, 4vw, 46px) 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat2 { display: flex; align-items: center; gap: 14px; justify-content: center; }
.stat2__ico { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 50%; background: #e9f0ff; color: var(--coral); flex: 0 0 auto; }
.stat2__ico svg { width: 24px; height: 24px; }
.stat2 strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: var(--ink); line-height: 1; }
.stat2 small { color: #6f6b62; font-size: .9rem; }

/* SERVICIOS */
.services { background: var(--paper-2); padding: clamp(50px, 7vw, 88px) 0; }
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 44px; }
.service {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; padding-bottom: 26px;
  box-shadow: 0 1px 2px rgba(20,16,12,.04), 0 20px 42px -28px rgba(20,16,12,.2);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service:hover { transform: translateY(-6px); box-shadow: 0 32px 56px -30px rgba(20,16,12,.32); }
.service__img { height: 188px; overflow: hidden; background: var(--paper-2); }
.service__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.service:hover .service__img img { transform: scale(1.06); }
.service__ico {
  position: absolute; top: 164px; left: 24px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--coral); color: #fff; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 22px -8px rgba(47,107,254,.6);
}
.service__ico svg { width: 24px; height: 24px; }
.service h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--ink); margin: 36px 24px 8px; }
.service p { color: #6f6b62; font-size: 1rem; margin: 0 24px; line-height: 1.5; }

/* CÓMO FUNCIONA */
.steps { background: #fff; padding: clamp(50px, 7vw, 88px) 0; }
.steps__grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-top: 52px; }
@media (min-width: 900px) {
  .steps__grid::before {
    content: ""; position: absolute; top: 37px; left: 14%; right: 14%; height: 2px;
    background: var(--line); z-index: 0;
  }
}
.step { position: relative; z-index: 1; text-align: center; }
.step__ico {
  display: inline-flex; width: 74px; height: 74px; border-radius: 50%; background: #fff;
  border: 1px solid var(--line); color: var(--coral); align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -18px rgba(20,16,12,.3);
}
.step__ico svg { width: 30px; height: 30px; }
.step__num {
  display: inline-flex; width: 26px; height: 26px; border-radius: 50%; background: var(--coral); color: #fff;
  align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700;
  font-size: .9rem; margin: 14px 0 4px;
}
.step h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--ink); margin: 6px 0 8px; }
.step p { color: #6f6b62; font-size: .98rem; max-width: 26ch; margin: 0 auto; line-height: 1.5; }

/* VENTAJAS */
.features { background: var(--paper-2); padding: clamp(50px, 7vw, 88px) 0; }
.features__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px 18px;
  margin-top: 48px; background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: clamp(34px, 4vw, 54px);
  box-shadow: 0 1px 2px rgba(20,16,12,.04), 0 26px 52px -34px rgba(20,16,12,.18);
}
.feature { text-align: center; }
.feature__ico { display: inline-flex; width: 62px; height: 62px; border-radius: 50%; background: #e9f0ff; color: var(--coral); align-items: center; justify-content: center; margin-bottom: 16px; }
.feature__ico svg { width: 28px; height: 28px; }
.feature h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--ink); margin-bottom: 6px; }
.feature p { color: #6f6b62; font-size: .95rem; max-width: 24ch; margin: 0 auto; line-height: 1.5; }

/* CLIENTES */
.clients { background: var(--paper-2); padding: clamp(56px, 8vw, 92px) 0; text-align: center; }
.clients__label { display: block; margin-bottom: 32px; }
.clients__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 26px; }
.client-logo {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: #b9b3a7; font-size: 1.05rem; border: 1px dashed var(--line); border-radius: 10px; padding: 16px 30px;
}
.clients__note { margin-top: 24px; color: var(--muted); font-size: .9rem; }

/* BANDA CTA — banda blanca limpia */
.ctaband { background: #fff; padding: clamp(52px, 7vw, 92px) 0; }
.ctaband .btn--solid { background: var(--coral); color: #fff; }
.ctaband .btn--solid:hover { background: var(--coral-dark); color: #fff; }
.ctaband__wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.ctaband__text h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: var(--ink); line-height: 1.1; letter-spacing: -.02em; }
.ctaband__text p { color: #5f5b53; font-size: 1.12rem; margin: 16px 0 28px; max-width: 46ch; }
.ctaband__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 20px; box-shadow: 0 30px 60px -30px rgba(20,16,12,.35); }

/* FOOTER 2 (claro) */
.footer2 { background: #fff; border-top: 1px solid var(--line); padding-top: 60px; color: var(--ink); }
.footer2__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 46px; }
.footer2__brand img { height: 80px; width: auto; }
.footer2__brand p { color: #6f6b62; font-size: .95rem; line-height: 1.6; margin-top: 14px; max-width: 34ch; }
.footer2__col h4 { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; color: var(--ink); margin-bottom: 14px; }
.footer2__col a { display: block; color: #6f6b62; font-size: .98rem; margin-bottom: 10px; transition: color .25s var(--ease); }
.footer2__col a:hover { color: var(--coral); }
.footer2__cta { color: #fff; margin-top: 10px; }
.footer2__cta:hover { color: #fff; }
.footer2__social { display: flex; gap: 12px; margin-top: 20px; }
.footer2__social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; color: #6f6b62;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.footer2__social a:hover { color: var(--coral); border-color: var(--coral); }
.footer2__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding: 22px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }

/* Responsive rediseño */
@media (max-width: 900px) {
  .hero2__wrap { padding-block: 96px 14px; }
  .hero2__content { max-width: none; }
  /* Zoom a los platos en móvil (que llenen y no domine el fondo IA) */
  .hero2__bg { object-position: 60% 50%; transform: scale(1.28); transform-origin: 60% 54%; }
  .hero2__title { font-size: clamp(2rem, 8.5vw, 2.7rem); }
  .hero2__lead { font-size: 1.04rem; margin: 16px 0 24px; }
  .hero2__veil {
    background:
      linear-gradient(180deg, rgba(15,12,9,.86) 0%, rgba(15,12,9,.56) 38%, rgba(15,12,9,.34) 62%, rgba(15,12,9,.6) 100%);
  }
  .hero2__stats { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; padding-block: 16px 22px; }
  .hero2__stats .stat2 { justify-content: flex-start; gap: 11px; }
  .hero2__stats .stat2__ico { width: 40px; height: 40px; }
  .hero2__stats .stat2 strong { font-size: 1.35rem; }
  .hero2__stats .stat2 small { font-size: .82rem; }
  .ctaband__wrap { grid-template-columns: 1fr; }
  .footer2__top { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .footer2__brand { grid-column: 1 / -1; }
  .features__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  /* Servicios: carrusel horizontal en móvil (como el menú del v1) */
  .services__grid {
    display: flex; gap: 16px; margin-top: 36px;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
    touch-action: pan-x; overscroll-behavior: contain;
    padding: 8px 0 34px;
  }
  .services__grid > .service { flex: 0 0 80%; scroll-snap-align: center; }
}
@media (max-width: 560px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat2 { justify-content: flex-start; }
  .features__grid { grid-template-columns: repeat(2, 1fr); padding: 30px 22px; }
  .footer2__top { grid-template-columns: 1fr; }
  .footer2__bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}
