@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --azul:       #1A365D;
  --azul-light: #2a4a7f;
  --arena:      #E2D8C3;
  --olivo:      #6B705C;
  --blanco:     #F8F9FA;
  --white:      #ffffff;
  --text-dark:  #1A365D;
  --text-mid:   #4a5568;
  --text-light: #718096;
  --hairline:   #d4cbb8;
  --hairline-o: rgba(107,112,92,0.25);
  --max-w:      1440px;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Inter', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--blanco);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--serif); line-height: 1.2; color: var(--azul); }
h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
p  { font-size: 1rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─── CONTAINER ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow { max-width: 900px; }
.container--mid    { max-width: 1100px; }

/* ─── HAIRLINE ─────────────────────────────────────────────── */
.hairline {
  width: 100%;
  height: 1px;
  background: var(--hairline);
}

/* ─── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(248, 249, 250, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--azul);
  letter-spacing: 0.02em;
}
.logo span { color: var(--olivo); }

.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.25s ease;
}
.site-nav a:hover,
.site-nav a.active { color: var(--azul); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--azul);
  transition: all 0.3s ease;
}

/* ─── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--azul);
  color: rgba(255,255,255,0.75);
  padding: 4rem 2rem 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto 3rem;
}
.footer-brand .logo { color: var(--white); }
.footer-brand .logo span { color: var(--arena); }
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin-top: 1rem;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--arena);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-col p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.35rem;
}
.footer-schedule { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.5rem; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal p { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--arena); }
.footer-editorial-note {
  font-size: 0.78rem;
  color: rgba(226,216,195,0.65);
  margin-top: 1rem;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ─── PAGE WRAPPER ─────────────────────────────────────────── */
.page-content { padding-top: 72px; }

/* ─── FADE-IN ANIMATION ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SECTION SPACING ──────────────────────────────────────── */
.section { padding: 5rem 2rem; }
.section--arena  { background: var(--arena); }
.section--white  { background: var(--white); }
.section--blanco { background: var(--blanco); }
.section--azul   { background: var(--azul); }

/* ─── EDITORIAL LABEL ──────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olivo);
  margin-bottom: 1rem;
}
.label--light { color: var(--arena); }

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 1.5px solid currentColor;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}
.btn--dark {
  color: var(--azul);
  border-color: var(--azul);
}
.btn--dark:hover { background: var(--azul); color: var(--white); }
.btn--light {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--light:hover { background: rgba(255,255,255,0.12); }
.btn--arena {
  color: var(--azul);
  background: var(--arena);
  border-color: var(--arena);
}
.btn--arena:hover { opacity: 0.85; }
.btn--olivo {
  color: var(--white);
  background: var(--olivo);
  border-color: var(--olivo);
}
.btn--olivo:hover { opacity: 0.85; }

/* ─── TWO-COLUMN EDITORIAL ─────────────────────────────────── */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.editorial-split--reverse { direction: rtl; }
.editorial-split--reverse > * { direction: ltr; }
.editorial-split__img {
  overflow: hidden;
  min-height: 480px;
}
.editorial-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.editorial-split__img:hover img { transform: scale(1.02); }
.editorial-split__body {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ─── FULL-WIDTH IMAGE BAND ────────────────────────────────── */
.img-band {
  width: 100%;
  height: 480px;
  overflow: hidden;
}
.img-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── STAT STRIP ───────────────────────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stat-strip__item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--hairline);
  text-align: center;
}
.stat-strip__item:last-child { border-right: none; }
.stat-strip__num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--azul);
  display: block;
}
.stat-strip__label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olivo);
  display: block;
  margin-top: 0.25rem;
}

/* ─── CARD GRID ────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border: 1px solid var(--hairline);
  transition: opacity 0.25s ease;
}
.card:hover { opacity: 0.88; }
.card__num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--arena);
  line-height: 1;
  margin-bottom: 1rem;
}
.card__title { font-size: 1.1rem; margin-bottom: 0.75rem; }
.card__text { font-size: 0.9rem; color: var(--text-light); }

/* ─── POLICY PAGES ─────────────────────────────────────────── */
.policy-hero {
  background: var(--azul);
  color: var(--white);
  padding: 6rem 2rem 4rem;
}
.policy-hero h1 { color: var(--white); }
.policy-hero .label--light { color: var(--arena); }
.policy-body {
  padding: 4rem 2rem;
  max-width: 860px;
  margin: 0 auto;
}
.policy-body h2 {
  font-size: 1.3rem;
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--hairline);
}
.policy-body p { margin-bottom: 1rem; }
.policy-body ul, .policy-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.policy-body ul { list-style: disc; }
.policy-body ol { list-style: decimal; }
.policy-body li { font-size: 1rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 0.4rem; }
.policy-updated {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-style: italic;
}

/* ─── FAQ / ACCORDION ──────────────────────────────────────── */
.faq-hero {
  background: var(--azul);
  padding: 6rem 2rem 4rem;
  color: var(--white);
}
.faq-hero h1 { color: var(--white); }
.accordion { border-top: 1px solid var(--hairline); }
.accordion-item { border-bottom: 1px solid var(--hairline); }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--azul);
  transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--olivo); }
.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 1rem;
  position: relative;
}
.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--olivo);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.accordion-icon::before { width: 14px; height: 1.5px; top: 50%; left: 3px; transform: translateY(-50%); }
.accordion-icon::after  { width: 1.5px; height: 14px; top: 3px; left: 50%; transform: translateX(-50%); }
.accordion-item.open .accordion-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.accordion-body-inner { padding: 0 0 1.5rem; }
.accordion-body-inner p { font-size: 0.95rem; }

/* ─── CONTACT PAGE ─────────────────────────────────────────── */
.contact-hero {
  background: var(--azul);
  padding: 6rem 2rem 4rem;
  color: var(--white);
}
.contact-hero h1 { color: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}
.contact-img { overflow: hidden; }
.contact-img img { width: 100%; height: 100%; object-fit: cover; }
.contact-form-block {
  background: var(--white);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info-row { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg { width: 16px; height: 16px; stroke: var(--olivo); fill: none; }
.contact-info-text p { font-size: 0.875rem; margin: 0; }
.contact-info-text strong { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olivo); }

/* ─── FORM ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olivo);
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--hairline);
  background: var(--blanco);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-control:focus { border-color: var(--azul); }
textarea.form-control { resize: vertical; min-height: 140px; }

/* ─── ABOUT PAGE ───────────────────────────────────────────── */
.about-hero {
  background: var(--azul);
  padding: 6rem 2rem 4rem;
  color: var(--white);
}
.about-hero h1 { color: var(--white); max-width: 700px; }
.about-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 650px;
  margin-top: 1.25rem;
  line-height: 1.75;
}
.matrix-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.matrix-text h2 { margin-bottom: 1.5rem; }
.matrix-text p { margin-bottom: 1.25rem; }
.matrix-marginal {
  padding-left: 2rem;
  border-left: 2px solid var(--hairline);
}
.marginal-item { margin-bottom: 2rem; }
.marginal-item h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.marginal-item p  { font-size: 0.875rem; color: var(--text-light); }

/* ─── THANK YOU ─────────────────────────────────────────────── */
.thankyou-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}
.thankyou-inner { text-align: center; max-width: 560px; }
.thankyou-inner .label { margin-bottom: 1.5rem; }
.thankyou-inner h1 { margin-bottom: 1rem; }
.thankyou-inner p { margin-bottom: 2rem; }

/* ─── 404 ───────────────────────────────────────────────────── */
.notfound-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}
.notfound-num {
  font-family: var(--serif);
  font-size: 8rem;
  font-weight: 700;
  color: var(--arena);
  line-height: 1;
}

/* ─── COOKIE BANNER ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--azul);
  color: rgba(255,255,255,0.85);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.85rem; margin: 0; color: rgba(255,255,255,0.8); }
.cookie-banner a { color: var(--arena); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-btn:hover { background: rgba(255,255,255,0.1); }
.cookie-btn--accept {
  background: var(--arena);
  border-color: var(--arena);
  color: var(--azul);
}
.cookie-btn--accept:hover { opacity: 0.85; }

/* ─── INDEX QUIZ STYLES ─────────────────────────────────────── */
.quiz-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
}
.quiz-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.quiz-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quiz-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,54,93,0.88) 50%, rgba(26,54,93,0.35) 100%);
  z-index: 1;
}
.quiz-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 4rem 2rem 4rem 6%;
}
.quiz-hero__content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  margin-bottom: 1.25rem;
}
.quiz-hero__content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.quiz-hero__meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
}

/* quiz flow */
.quiz-section { background: var(--blanco); padding: 5rem 2rem; }
.quiz-wrapper {
  max-width: 740px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 3rem;
}
.quiz-progress-bar-outer {
  width: 100%;
  height: 3px;
  background: var(--arena);
  margin-bottom: 2.5rem;
}
.quiz-progress-bar-inner {
  height: 3px;
  background: var(--azul);
  transition: width 0.4s ease;
}
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-step-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olivo);
  margin-bottom: 0.75rem;
}
.quiz-question {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--azul);
  margin-bottom: 2rem;
  line-height: 1.3;
}
.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.quiz-option {
  border: 1.5px solid var(--hairline);
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--blanco);
  transition: border-color 0.2s, background 0.2s;
  text-align: left;
  font-family: var(--sans);
}
.quiz-option:hover,
.quiz-option.selected {
  border-color: var(--azul);
  background: rgba(26,54,93,0.06);
}
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
}
.quiz-counter { font-size: 0.78rem; color: var(--text-light); }
.quiz-result { display: none; }
.quiz-result.active { display: block; }
.quiz-result__header { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--hairline); }
.quiz-result__header h2 { margin-bottom: 0.75rem; }
.result-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}
.result-card {
  border: 1px solid var(--hairline);
  padding: 1.5rem;
  background: var(--blanco);
}
.result-card__icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.result-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.result-card p { font-size: 0.875rem; color: var(--text-light); margin: 0; }

/* editorial bands on index */
.band-full {
  width: 100%;
  height: 520px;
  overflow: hidden;
  position: relative;
}
.band-full img { width: 100%; height: 100%; object-fit: cover; }
.band-full__caption {
  position: absolute;
  bottom: 2rem; left: 3rem;
  color: var(--white);
  max-width: 420px;
}
.band-full__caption h2 { color: var(--white); font-size: 2rem; }

.content-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 5rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.trio-item { }
.trio-item h3 { margin-bottom: 0.75rem; }
.trio-item p  { font-size: 0.9rem; }

.index-cta {
  background: var(--azul);
  padding: 5rem 2rem;
  text-align: center;
  color: var(--white);
}
.index-cta h2 { color: var(--white); margin-bottom: 1rem; }
.index-cta p  { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 2rem; }

/* ingredient strip */
.ingredient-strip {
  background: var(--arena);
  padding: 4rem 2rem;
}
.ingredient-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}
.ingredient-strip__img { overflow: hidden; height: 380px; }
.ingredient-strip__img img { width: 100%; height: 100%; object-fit: cover; }
.ingredient-strip__body {}
.ingredient-strip__body h2 { margin-bottom: 1.5rem; }
.ingredient-strip__body p { margin-bottom: 1rem; }
.ingredient-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 1.5rem; }
.ingredient-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.ingredient-item:nth-last-child(-n+2) { border-bottom: none; }
.ingredient-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--olivo);
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.ingredient-item strong { font-size: 0.875rem; font-weight: 600; color: var(--azul); display: block; }
.ingredient-item span  { font-size: 0.8rem; color: var(--text-light); }

/* photo gallery editorial */
.photo-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.photo-editorial__item { overflow: hidden; height: 300px; }
.photo-editorial__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.photo-editorial__item:hover img { transform: scale(1.03); }

/* asymmetric block */
.asym-block {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.asym-block--reverse { grid-template-columns: 2fr 3fr; }
.asym-body {
  padding: 5rem 4rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.asym-img { overflow: hidden; min-height: 460px; }
.asym-img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-strip__item:nth-child(2) { border-right: none; }
  .stat-strip__item:nth-child(3) { border-top: 1px solid var(--hairline); }
  .content-trio { grid-template-columns: 1fr 1fr; }
  .ingredient-strip__inner { grid-template-columns: 1fr; }
  .ingredient-strip__img { height: 260px; }
  .photo-editorial { grid-template-columns: 1fr 1fr; }
  .asym-block, .asym-block--reverse { grid-template-columns: 1fr; }
  .asym-body { padding: 3rem 2rem; }
}

@media (max-width: 768px) {
  .site-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--blanco); flex-direction: column; padding: 1.5rem 2rem; gap: 1.25rem; border-bottom: 1px solid var(--hairline); }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .editorial-split { grid-template-columns: 1fr; }
  .editorial-split--reverse { direction: ltr; }
  .editorial-split__img { min-height: 300px; }
  .editorial-split__body { padding: 2.5rem 1.5rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-block { padding: 2.5rem 1.5rem; }
  .matrix-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .quiz-options { grid-template-columns: 1fr; }
  .result-cards { grid-template-columns: 1fr; }
  .quiz-hero__content { padding: 4rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-legal { flex-direction: column; align-items: flex-start; }
  .card-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .content-trio { grid-template-columns: 1fr; }
  .photo-editorial { grid-template-columns: 1fr; }
  .ingredient-list { grid-template-columns: 1fr; }
  .band-full { height: 340px; }
  .quiz-wrapper { padding: 2rem 1.25rem; }
  .img-band { height: 300px; }
  h1 { font-size: 2rem; }
  .section { padding: 3.5rem 1.25rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .quiz-hero__content h1 { font-size: 1.8rem; }
  .notfound-num { font-size: 5rem; }
}
