/* ===================================================================
   Bits'n Bowl by Bubayou — Sistema de marca
   Basado en el Brandbook v1.0
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Lato:wght@400;700&display=swap');

:root {
  /* Paleta oficial */
  --red: #B91D1D;
  --red-dark: #7A1212;
  --red-light: #E24B4A;
  --gold: #FBBF24;
  --gold-dark: #BA7517;
  --kraft: #C49C6E;
  --kraft-light: #D9B894;
  --black: #2C2C2A;
  --gray-90: #444441;
  --gray-60: #5F5E5A;
  --gray-40: #888780;
  --gray-20: #D3D1C7;
  --gray-10: #EDEAE0;
  --cream: #FCF4DC;
  --cream-dark: #F5EBC8;
  --bg-warm: #FAF5EB;
  --white: #FFFFFF;

  /* Colores por salsa (etiquetas) */
  --sauce-bbq: #B91D1D;
  --sauce-piripiri: #E24B4A;
  --sauce-honey: #FBBF24;
  --sauce-curry: #854F0B;
  --sauce-mojo: #0F6E56;
  --sauce-caesar: #5F5E5A;

  /* Tipografía */
  --font-display: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Lato', system-ui, -apple-system, sans-serif;

  /* Espacios */
  --space-xs: 0.5rem;
  --space-s: 1rem;
  --space-m: 1.5rem;
  --space-l: 2.5rem;
  --space-xl: 4rem;
  --space-xxl: 6rem;

  /* Otros */
  --radius-s: 4px;
  --radius-m: 8px;
  --radius-l: 16px;
  --shadow-s: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-m: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-l: 0 12px 40px rgba(0,0,0,0.14);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1240px;
}

/* ===== 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);
  color: var(--gray-90);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== Tipografía ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); }
h4 { font-size: 1.15rem; font-weight: 600; }
p { margin-bottom: 1rem; max-width: 65ch; }
.tag {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--red);
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: var(--space-xxl) 0; }
.section-warm { background: var(--bg-warm); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--black); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }
.section-red { background: var(--red); color: var(--cream); }
.section-red h1, .section-red h2, .section-red h3 { color: var(--cream); }

.section-head { text-align: center; margin-bottom: var(--space-xl); }
.section-head .tag { display: block; margin-bottom: 0.75rem; }
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p { margin: 0 auto; color: var(--gray-60); font-size: 1.1rem; max-width: 600px; }
.section-rule { width: 48px; height: 3px; background: var(--red); margin: 0 auto var(--space-m); border-radius: 1.5px; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-10);
  transition: all var(--transition);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.brand-mark { display: flex; align-items: center; gap: 0.75rem; }
.brand-mark img { height: 56px; width: auto; }
.nav-primary { display: flex; gap: 2rem; align-items: center; }
.nav-primary a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-90);
  position: relative;
  padding: 0.25rem 0;
}
.nav-primary a:hover { color: var(--red); }
.nav-primary a.active { color: var(--red); }
.nav-primary a.active::after {
  content: ""; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--red); border-radius: 1px;
}
.nav-cta {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 600;
  background: var(--red);
  color: var(--cream) !important;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-s);
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block; height: 2px; width: 24px;
  background: var(--black); border-radius: 1px;
  transition: all var(--transition);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.95rem 1.8rem;
  border-radius: var(--radius-s);
  letter-spacing: 0.04em;
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--cream); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-m); }
.btn-dark { background: var(--black); color: var(--cream); }
.btn-dark:hover { background: #444; transform: translateY(-2px); box-shadow: var(--shadow-m); }
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--cream); }
.btn-cream { background: var(--cream); color: var(--red); }
.btn-cream:hover { background: var(--white); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: #ffd45a; transform: translateY(-2px); }

/* ===== Hero ===== */
.hero {
  background: var(--bg-warm);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; top: -50%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(185,29,29,0.06), transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  background: rgba(185,29,29,0.1);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 1.02;
  margin-bottom: 1.25rem;
}
.hero h1 .accent { color: var(--red); }
.hero h1 .dot { color: var(--gold); }
.hero-lede {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: var(--gray-60);
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-media {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  aspect-ratio: 4/5;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--cream);
  color: var(--black);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-s);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow-m);
}
.hero-badge .price { color: var(--red); display: block; font-size: 1.1rem; font-weight: 700; }

/* ===== Delivery strip ===== */
.delivery-strip {
  background: var(--black);
  color: var(--cream);
  padding: 1.25rem 0;
}
.delivery-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.delivery-strip .label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.delivery-strip .label .red-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.delivery-links { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }
.delivery-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.55rem 1.1rem;
  background: transparent;
  border: 1px solid rgba(252,244,220,0.3);
  border-radius: var(--radius-s);
  transition: all var(--transition);
}
.delivery-links a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

/* ===== Manifest band ===== */
.manifesto-band {
  background: var(--red);
  color: var(--cream);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto-band::before, .manifesto-band::after {
  content: "\201C";
  position: absolute;
  font-family: Georgia, serif;
  font-size: 14rem;
  line-height: 1;
  color: rgba(252,244,220,0.08);
  font-weight: 700;
}
.manifesto-band::before { top: 0; left: 5%; }
.manifesto-band::after { content: "\201D"; bottom: -3rem; right: 5%; }
.manifesto-band blockquote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.manifesto-band cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ===== Bowl cards ===== */
.bowls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.bowl-card {
  background: var(--white);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--gray-10);
  display: flex;
  flex-direction: column;
}
.bowl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-l);
}
.bowl-card .bowl-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.bowl-card .bowl-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.bowl-card:hover .bowl-img img { transform: scale(1.06); }
.bowl-card .sauce-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--cream);
  color: var(--black);
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bowl-card .sauce-tag.bbq { background: var(--sauce-bbq); color: var(--cream); }
.bowl-card .sauce-tag.piripiri { background: var(--sauce-piripiri); color: var(--cream); }
.bowl-card .sauce-tag.honey { background: var(--sauce-honey); color: var(--black); }
.bowl-card .sauce-tag.curry { background: var(--sauce-curry); color: var(--cream); }
.bowl-card .sauce-tag.mojo { background: var(--sauce-mojo); color: var(--cream); }
.bowl-card .sauce-tag.caesar { background: var(--sauce-caesar); color: var(--cream); }
.bowl-card .bowl-body { padding: 1.4rem 1.4rem 1.3rem; flex: 1; display: flex; flex-direction: column; }
.bowl-card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.bowl-card .desc {
  font-size: 0.92rem;
  color: var(--gray-60);
  margin-bottom: 1rem;
  flex: 1;
  line-height: 1.5;
}
.bowl-card .bowl-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-10);
  gap: 1rem;
}
.bowl-card .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--black);
}
.bowl-card .price .sm { font-size: 0.75rem; color: var(--gray-40); font-weight: 500; margin-left: 0.25rem; }
.bowl-card .combo-price {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--gray-60);
}
.bowl-card .combo-price strong { color: var(--red); font-weight: 700; }
.bowl-card .order-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  background: var(--black);
  color: var(--cream);
  border-radius: var(--radius-s);
  transition: all var(--transition);
  white-space: nowrap;
}
.bowl-card .order-btn:hover { background: var(--red); }

/* ===== Two-col layout (story etc) ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.tight { gap: 3rem; }
.two-col img { border-radius: var(--radius-l); width: 100%; height: 100%; object-fit: cover; min-height: 360px; box-shadow: var(--shadow-m); }
.two-col .copy h2 { margin-bottom: 1.25rem; }
.two-col .copy .tag { margin-bottom: 0.75rem; display: block; }
.two-col .copy p { color: var(--gray-90); margin-bottom: 1rem; font-size: 1.05rem; }
.two-col .copy p:first-of-type { font-family: var(--font-display); font-weight: 400; font-size: 1.2rem; color: var(--black); }

/* ===== Stats / values strip ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}
.stat-item .stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-item .stat-lbl {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-60);
  font-weight: 500;
}

/* ===== Sauce filters (menu page) ===== */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--gray-20);
  border-radius: 999px;
  color: var(--gray-90);
  transition: all var(--transition);
  cursor: pointer;
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--cream);
}

/* ===== Cards (values/franquicia) ===== */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 2rem 1.75rem;
  border: 1px solid var(--gray-10);
  transition: all var(--transition);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.feature-card .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 1rem;
}
.feature-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--black);
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--gray-60);
  line-height: 1.55;
  margin: 0;
}

/* ===== Locations / sucursales ===== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.location-card {
  background: var(--white);
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--gray-10);
  transition: all var(--transition);
}
.location-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.location-img {
  height: 200px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
.location-img .city {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
}
.location-img.cancun { background: linear-gradient(135deg, #0F6E56, #04342C); }
.location-body { padding: 1.75rem; }
.location-body h3 { margin-bottom: 0.5rem; }
.location-body .addr {
  color: var(--gray-60);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.location-body .hours {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gray-90);
  padding-top: 1rem;
  border-top: 1px solid var(--gray-10);
}
.location-body .hours strong { color: var(--red); }

/* ===== Forms ===== */
.form-wrap {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-l);
  border: 1px solid var(--gray-10);
  box-shadow: var(--shadow-s);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field { margin-bottom: 1.25rem; }
.form-field.full { grid-column: span 2; }
.form-field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-60);
  margin-bottom: 0.4rem;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background: var(--bg-warm);
  border: 1px solid var(--gray-10);
  border-radius: var(--radius-s);
  color: var(--black);
  transition: all var(--transition);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}
.form-field textarea { min-height: 120px; resize: vertical; }

/* ===== Footer ===== */
.site-footer {
  background: var(--black);
  color: var(--cream);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 80px; width: auto; margin-bottom: 1rem; filter: brightness(1.05); }
.footer-brand p { color: rgba(252,244,220,0.7); font-size: 0.95rem; max-width: 280px; }
.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a {
  font-size: 0.92rem;
  color: rgba(252,244,220,0.75);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }

.social-row { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social-row a {
  width: 36px; height: 36px;
  background: rgba(252,244,220,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social-row a:hover { background: var(--red); }
.social-row svg { width: 16px; height: 16px; fill: var(--cream); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(252,244,220,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(252,244,220,0.6);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== Page hero (for non-home pages) ===== */
.page-hero {
  background: var(--bg-warm);
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-10);
}
.page-hero .tag { display: block; margin-bottom: 0.75rem; }
.page-hero h1 { margin-bottom: 1rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.page-hero p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--gray-60);
  max-width: 640px;
  margin: 0 auto;
}

/* ===== Comments section ===== */
.comments-section {
  background: var(--bg-warm);
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}
.comments-section::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(251,191,36,0.08), transparent 70%);
  pointer-events: none;
}
.comments-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.comments-intro h2 { margin-bottom: 1.25rem; }
.comments-intro .lede {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--gray-90);
  margin-bottom: 2rem;
}
.testimonial-quote {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 1.5rem 1.75rem;
  margin-top: 1.25rem;
  border-left: 4px solid var(--gold);
  position: relative;
}
.testimonial-quote .quote-mark {
  font-family: Georgia, serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 0.8;
  position: absolute;
  top: 0.6rem; left: 0.8rem;
  opacity: 0.4;
}
.testimonial-quote p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  color: var(--gray-90);
  line-height: 1.55;
  margin: 0 0 0.6rem 0;
  padding-left: 1.5rem;
}
.testimonial-quote cite {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  padding-left: 1.5rem;
}

.comments-form .form-wrap {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-l);
  border: 1px solid var(--gray-10);
  box-shadow: var(--shadow-m);
}

.consent-row {
  background: var(--bg-warm);
  padding: 1rem 1.1rem;
  border-radius: var(--radius-s);
  border-left: 3px solid var(--gold);
  margin: 1rem 0 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.consent-row input[type="checkbox"] {
  width: 20px; height: 20px;
  margin-top: 2px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
}
.consent-row .consent-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--gray-90);
}
.consent-row .consent-text strong {
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 600;
  display: block;
  margin-bottom: 0.1rem;
}

.form-success {
  display: none;
  background: #EAF5EE;
  border-left: 4px solid #1D9E75;
  padding: 1.25rem;
  border-radius: var(--radius-s);
  font-family: var(--font-display);
  font-weight: 500;
  color: #0F6E56;
}
.form-success.show { display: block; }

@media (max-width: 900px) {
  .comments-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ===== Story (historia) ===== */
.story-quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  line-height: 1.4;
  color: var(--black);
  padding: 2rem 2rem 2rem 2.5rem;
  border-left: 4px solid var(--red);
  background: var(--bg-warm);
  margin: 2.5rem 0;
  max-width: 900px;
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
}

/* ===== Mobile ===== */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col img { min-height: 280px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .section { padding: 4rem 0; }
  .hero { padding: 4rem 0 3rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }

  .menu-toggle { display: flex; }
  .nav-primary {
    position: fixed; top: 88px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--gray-10);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }
  .nav-primary.open { transform: translateY(0); }
}
@media (max-width: 540px) {
  .delivery-strip .container { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.5rem; }
}
