/* ====== vuzno.com | Vuzno Cocina | Peruvian Andean Kitchen ====== */
:root {
  --ochre: #b45a17;          /* burnt ochre */
  --ochre-deep: #8f4511;
  --terracotta: #9c4a2f;     /* earth terracotta */
  --clay: #5e2c1a;
  --teal: #16575c;           /* andean teal */
  --teal-deep: #0d3538;
  --sand: #f4ecdd;           /* warm sand */
  --sand-deep: #e7d7bc;
  --cream: #fdf9f0;
  --ink: #2a211a;
  --gold: #f0c987;
  --heading-font: 'Fraunces', Georgia, serif;
  --body-font: 'Work Sans', 'Helvetica Neue', Arial, sans-serif;
  --btn-radius: 2px;
  --stripe: linear-gradient(90deg,
    var(--teal) 0 18%, var(--gold) 18% 30%, var(--terracotta) 30% 52%,
    var(--sand-deep) 52% 64%, var(--ochre) 64% 86%, var(--teal-deep) 86% 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  font-family: var(--body-font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ochre-deep); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--terracotta); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4 { font-family: var(--heading-font); color: var(--teal-deep); line-height: 1.2; font-weight: 600; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* small-caps kicker used across sections */
.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-variant: small-caps;
  color: var(--ochre-deep);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 26px; height: 2px;
  background: var(--ochre);
  vertical-align: middle;
  margin-right: 12px;
}

/* scroll reveal (JS adds .will-reveal only when allowed; degrades gracefully) */
.will-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.will-reveal.revealed { opacity: 1; transform: none; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,249,240,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42,33,26,0.08);
  transition: box-shadow 0.3s;
}
.navbar::before {
  content: "";
  display: block;
  height: 5px;
  background: var(--stripe);
}
.navbar.scrolled { box-shadow: 0 2px 14px rgba(42,33,26,0.1); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--heading-font);
  font-size: 23px; font-weight: 700;
  color: var(--teal-deep);
  letter-spacing: -0.3px;
}
.nav-logo em { font-style: italic; color: var(--ochre-deep); }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; font-size: 26px; color: var(--teal-deep);
}
.nav-links { list-style: none; display: flex; gap: 26px; align-items: center; }
.nav-links a {
  color: var(--ink);
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.3px;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--ochre-deep); border-bottom-color: var(--ochre); }

/* ===== HERO (split editorial) ===== */
.hero {
  position: relative;
  background: linear-gradient(128deg, var(--teal-deep) 0%, var(--teal) 46%, var(--clay) 100%);
  padding: 96px 24px 104px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 85% 10%, rgba(240,201,135,0.10) 0%, transparent 45%),
    repeating-linear-gradient(90deg, rgba(253,249,240,0.025) 0 2px, transparent 2px 90px);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-content { max-width: 580px; }
.hero-tagline {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.06;
  color: var(--cream);
  margin-bottom: 26px;
  letter-spacing: -0.5px;
  font-weight: 600;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-content p {
  font-size: 19px;
  color: rgba(253,249,240,0.85);
  line-height: 1.7;
  margin-bottom: 38px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.btn-hero {
  display: inline-block;
  background: var(--gold);
  color: var(--clay);
  padding: 17px 36px;
  border-radius: var(--btn-radius);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.4px;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  box-shadow: 0 4px 22px rgba(0,0,0,0.25);
}
.btn-hero:hover {
  background: #f6d9a4;
  color: var(--clay);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.32);
}
.btn-hero-ghost {
  display: inline-block;
  color: var(--cream);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 6px;
  border-bottom: 2px solid rgba(253,249,240,0.4);
  transition: border-color 0.2s, color 0.2s;
}
.btn-hero-ghost:hover { color: var(--gold); border-bottom-color: var(--gold); }
.hero-photo { position: relative; }
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 2px solid rgba(240,201,135,0.5);
  border-radius: 4px;
  pointer-events: none;
}
.hero-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.hero-photo figcaption {
  position: absolute; left: 20px; bottom: 20px;
  background: rgba(13,53,56,0.82);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 2px;
}

/* ===== PRODUCT / WELLNESS SECTIONS ===== */
.shapeon-section {
  background: linear-gradient(180deg, var(--teal-deep) 0%, var(--teal) 100%);
  padding: 88px 24px;
  color: var(--cream);
}
.shapeon-section--bottom, #wellness.shapeon-section {
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
}
.shapeon-header { max-width: 780px; margin: 0 auto 20px; text-align: center; }
.shapeon-badge {
  display: inline-block;
  background: rgba(240,201,135,0.12);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(240,201,135,0.35);
}
.shapeon-header h2 {
  font-family: var(--heading-font);
  font-size: clamp(30px, 4vw, 46px);
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.15;
}
.shapeon-header h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.shapeon-header p {
  font-size: 18px;
  color: rgba(253,249,240,0.82);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1100px;
  margin: 52px auto;
}
.product-card {
  background: rgba(253,249,240,0.05);
  border: 1px solid rgba(253,249,240,0.14);
  border-radius: 6px;
  padding: 34px 26px 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240,201,135,0.5);
  box-shadow: 0 14px 44px rgba(0,0,0,0.32);
}
.product-card.featured {
  background: rgba(253,249,240,0.09);
  border-color: var(--gold);
  transform: scale(1.045);
}
.product-card.featured:hover { transform: scale(1.045) translateY(-6px); }
.product-label {
  display: inline-block;
  background: rgba(253,249,240,0.12);
  color: var(--cream);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(253,249,240,0.2);
}
.product-card.featured .product-label { background: var(--gold); color: var(--clay); border-color: var(--gold); }
.product-img { width: 160px; height: 200px; object-fit: contain; margin: 10px auto 20px; }
.product-bottles { font-family: var(--heading-font); color: var(--cream); font-size: 28px; margin-bottom: 8px; font-weight: 600; }
.product-supply { color: var(--gold); font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.product-note { color: rgba(253,249,240,0.8); font-size: 15px; margin-bottom: 10px; min-height: 48px; }
.product-shipping { color: rgba(253,249,240,0.75); font-size: 13px; letter-spacing: 0.5px; margin-bottom: 24px; }
.product-price { margin-bottom: 6px; line-height: 1; }
.product-price .price-old { color: rgba(253,249,240,0.5); font-size: 18px; margin-right: 8px; }
.product-price .price-old s { text-decoration: line-through; }
.product-price .price-now { font-family: var(--heading-font); color: var(--gold); font-size: 42px; font-weight: 700; }
.product-price .price-unit { color: rgba(253,249,240,0.7); font-size: 14px; margin-left: 4px; }
.product-total { color: var(--cream); font-size: 15px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 18px; }
.btn-order {
  display: block;
  width: 100%;
  background: var(--gold);
  color: var(--clay);
  padding: 15px 20px;
  border-radius: var(--btn-radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-order:hover { background: #f6d9a4; color: var(--clay); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(0,0,0,0.3); }
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  margin: 34px auto;
  max-width: 800px;
}
.trust-badges img { height: 46px; width: auto; opacity: 0.85; filter: brightness(0) invert(1); }
.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(253,249,240,0.05);
  border: 1px solid rgba(253,249,240,0.14);
  border-radius: 6px;
  padding: 26px 34px;
  max-width: 720px;
  margin: 34px auto 0;
}
.guarantee img { width: 82px; height: 82px; flex-shrink: 0; }
.guarantee p { color: rgba(253,249,240,0.88); font-size: 15px; margin: 0; text-align: left; }

/* ===== RECIPES ===== */
.recipes-section {
  padding: 96px 24px 88px;
  background:
    repeating-linear-gradient(0deg, rgba(180,90,23,0.028) 0 1px, transparent 1px 56px),
    var(--sand);
}
.recipes-header { text-align: center; max-width: 740px; margin: 0 auto 60px; }
.recipes-header h2 {
  font-family: var(--heading-font);
  font-size: clamp(34px, 4vw, 52px);
  color: var(--teal-deep);
  margin-bottom: 18px;
  line-height: 1.12;
}
.recipes-header h2 em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.recipes-header p { font-size: 18px; color: var(--ink); opacity: 0.82; line-height: 1.7; }
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.recipe-card {
  background: var(--cream);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 18px rgba(94,44,26,0.09);
  border: 1px solid rgba(94,44,26,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.recipe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(94,44,26,0.16);
}
.recipe-img-wrap { overflow: hidden; position: relative; }
.recipe-img { width: 100%; height: 225px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.recipe-card:hover .recipe-img { transform: scale(1.05); }
.recipe-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(253,249,240,0.94);
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.14);
}
.recipe-info { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.recipe-info h3 {
  font-family: var(--heading-font);
  font-size: 23px;
  color: var(--teal-deep);
  margin-bottom: 10px;
  line-height: 1.25;
}
.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  color: var(--terracotta);
  font-size: 13px;
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.recipe-meta span { white-space: nowrap; }
.recipe-desc {
  color: var(--ink);
  opacity: 0.82;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}
.btn-expand {
  background: var(--teal-deep);
  color: var(--cream);
  border: none;
  padding: 13px 20px;
  border-radius: var(--btn-radius);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
  text-align: center;
}
.btn-expand:hover { background: var(--teal); transform: translateY(-1px); }
.recipe-details {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--sand-deep);
  animation: fadeIn 0.3s ease;
}
.recipe-details.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.recipe-details h4 {
  font-family: var(--heading-font);
  color: var(--terracotta);
  font-size: 17px;
  margin: 16px 0 10px;
  letter-spacing: 0.2px;
}
.recipe-details h4:first-child { margin-top: 0; }
.recipe-details ul, .recipe-details ol {
  padding-left: 22px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
}
.recipe-details ul li, .recipe-details ol li { margin-bottom: 6px; }

/* ===== ABOUT / CASA VUZNO ===== */
.about-section {
  background: var(--cream);
  padding: 96px 24px;
}
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-photo { position: relative; }
.about-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 18px 48px rgba(94,44,26,0.2);
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 2px solid var(--sand-deep);
  border-radius: 4px;
  z-index: -1;
}
.about-content h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  margin-bottom: 20px;
  line-height: 1.15;
}
.about-content h2 em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.about-content p { font-size: 18px; line-height: 1.75; margin-bottom: 18px; opacity: 0.88; }
.about-principles {
  list-style: none;
  margin-top: 26px;
  display: grid;
  gap: 12px;
}
.about-principles li {
  padding-left: 30px;
  position: relative;
  font-size: 17px;
  font-weight: 500;
}
.about-principles li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 14px; height: 14px;
  background: var(--stripe);
  border-radius: 2px;
}

/* ===== ANDES BANNER ===== */
.andes-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.andes-banner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.andes-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,53,56,0.55) 0%, rgba(94,44,26,0.62) 100%);
}
.andes-quote {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 72px 24px;
}
.andes-quote p {
  font-family: var(--heading-font);
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 14px;
}
.andes-quote span {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, var(--teal-deep) 0%, #082225 100%);
  color: rgba(253,249,240,0.85);
  padding: 0 24px 32px;
}
.footer::before {
  content: "";
  display: block;
  height: 5px;
  background: var(--stripe);
  margin: 0 -24px 60px;
}
.footer .container { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-logo {
  font-family: var(--heading-font);
  font-size: 25px;
  font-weight: 700;
  color: var(--cream);
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo em { font-style: italic; color: var(--gold); }
.footer-brand p { color: rgba(253,249,240,0.7); font-size: 15px; line-height: 1.7; }
.footer-links h4, .footer-company h4 {
  color: var(--gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(253,249,240,0.72); font-size: 15px; transition: color 0.2s; display: inline-block; padding: 3px 0; }
.footer-links a:hover { color: var(--gold); }
.footer-company p { color: rgba(253,249,240,0.72); font-size: 14px; line-height: 1.75; }
.footer-company strong { color: var(--cream); }
.footer-disclaimer {
  border-top: 1px solid rgba(253,249,240,0.12);
  padding-top: 28px;
  margin-bottom: 20px;
}
.footer-disclaimer p { color: rgba(253,249,240,0.55); font-size: 13px; line-height: 1.7; max-width: 1100px; }
.footer-bottom {
  border-top: 1px solid rgba(253,249,240,0.08);
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p { color: rgba(253,249,240,0.5); font-size: 13px; margin: 0; }

/* ===== LEGAL PAGES ===== */
.legal-main {
  max-width: 900px;
  margin: 64px auto 88px;
  padding: 0 24px;
  line-height: 1.75;
  color: var(--ink);
}
.legal-main h1 {
  font-family: var(--heading-font);
  font-size: clamp(36px, 5vw, 54px);
  color: var(--teal-deep);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.legal-main h2 {
  font-family: var(--heading-font);
  font-size: clamp(22px, 3vw, 28px);
  color: var(--teal-deep);
  margin: 38px 0 14px;
}
.legal-main h3 { font-family: var(--heading-font); font-size: 19px; color: var(--teal-deep); margin: 18px 0 10px; }
.legal-main p { margin-bottom: 14px; font-size: 17px; }
.legal-main ul, .legal-main ol { margin: 14px 0 14px 28px; }
.legal-main li { margin-bottom: 8px; font-size: 17px; }
.legal-main a { color: var(--ochre-deep); text-decoration: underline; }
.legal-main a:hover { color: var(--terracotta); }
.legal-main strong { color: var(--teal-deep); font-weight: 700; }
.legal-meta { opacity: 0.65; font-style: italic; margin-bottom: 34px; }
.company-contact-box {
  background: var(--sand);
  border-left: 4px solid var(--ochre);
  padding: 26px;
  border-radius: 6px;
  margin-top: 26px;
}
.company-contact-box h3 { margin-top: 0; color: var(--teal-deep); }
.company-contact-box p { margin-bottom: 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo img { height: 380px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo img { height: 360px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .recipes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 77px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-200%);
    transition: transform 0.3s;
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .hero { padding: 64px 20px 72px; }
  .hero-photo::before { inset: 14px -14px -14px 14px; }
  .hero-photo img { height: 300px; }
  .product-grid { grid-template-columns: 1fr; max-width: 400px; }
  .product-card.featured { transform: none; }
  .product-card.featured:hover { transform: translateY(-6px); }
  .product-note { min-height: 0; }
  .recipes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-badges { gap: 20px; }
  .trust-badges img { height: 36px; }
  .guarantee { flex-direction: column; padding: 22px; text-align: center; }
  .guarantee p { text-align: center; }
  .about-photo::after { display: none; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 34px; }
  .hero-content p { font-size: 17px; }
  .hero-photo img { height: 240px; }
  .recipes-section { padding: 64px 16px; }
  .shapeon-section { padding: 64px 16px; }
  .about-section { padding: 64px 16px; }
  .andes-quote { padding: 56px 18px; }
}
