/* ============================================================
   COFFEE MASTELO — Main Stylesheet
   Stack: HTML5 + CSS3 (Flexbox/Grid) · Mobile-first
   ============================================================ */

/* ---------------------------------------------------------- */
/* 1. GOOGLE FONTS                                            */
/* ---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Sacramento&family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;1,400&display=swap');

/* ---------------------------------------------------------- */
/* 2. DESIGN TOKENS                                           */
/* ---------------------------------------------------------- */
:root {
  /* Color Palette — Colombian Highland */
  --espresso-night:  #2C1810;
  --colombian-soil:  #6F4E37;
  --parchment:       #F5F0E8;
  --terracotta:      #C2703E;
  --andean-green:    #2D4A3E;
  --harvest-gold:    #C9A96E;
  --warm-charcoal:   #3B2F2F;
  --white:           #FFFFFF;

  /* Typography */
  --font-headline:  'Playfair Display', Georgia, serif;
  --font-body:      'Source Sans Pro', system-ui, sans-serif;
  --font-accent:    'Sacramento', cursive;

  /* Spacing scale */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  --space-2xl: 100px;

  /* Transitions */
  --transition: 0.3s ease;
}

/* ---------------------------------------------------------- */
/* 3. CSS 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);
  font-size: 16px;
  color: var(--warm-charcoal);
  background-color: var(--espresso-night);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------------------------------------------------------- */
/* 4. UTILITIES                                               */
/* ---------------------------------------------------------- */

/* Screen-reader-only — hides visually but keeps accessible */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* BUTTON SYSTEM */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 0; /* Rectangular — luxury aesthetic */
  cursor: pointer;
  transition: background var(--transition),
              color var(--transition),
              transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--terracotta);
  color: var(--parchment);
  border: 1px solid var(--terracotta);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: #a85e32;
  border-color: #a85e32;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194, 112, 62, 0.35);
}

.btn--ghost {
  background-color: transparent;
  color: var(--harvest-gold);
  border: 1px solid var(--harvest-gold);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background-color: rgba(201, 169, 110, 0.1);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 2px;
}

/* ---------------------------------------------------------- */
/* 5. SECTION 1 — ANNOUNCEMENT BAR                           */
/* ---------------------------------------------------------- */
.announcement-bar {
  position: relative;
  z-index: 100;
  background-color: var(--espresso-night);
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  padding: var(--space-xs) var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.announcement-bar__shipping {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.85);
}

.announcement-bar__shipping-icon {
  font-size: 13px;
  flex-shrink: 0;
}

.announcement-bar__shipping-full {
  display: none; /* hidden on mobile */
}

.announcement-bar__shipping-short {
  display: block; /* short copy on mobile */
}

.announcement-bar__controls {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.lang-btn {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  padding: 4px 6px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
}

.lang-btn.is-active {
  color: var(--harvest-gold);
  border-bottom: 1px solid var(--harvest-gold);
}

.lang-btn:hover {
  color: var(--harvest-gold);
}

.lang-divider {
  font-size: 10px;
  color: rgba(201, 169, 110, 0.3);
  line-height: 1;
  padding: 0 2px;
}

.currency-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--harvest-gold);
  cursor: pointer;
  padding: 4px 20px 4px 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  margin-left: 8px;
  border-left: 1px solid rgba(201, 169, 110, 0.3);
  padding-left: 12px;
}

.currency-select option {
  background-color: var(--espresso-night);
  color: var(--parchment);
}

/* ---------------------------------------------------------- */
/* 6. SECTION 2 — IMMERSIVE HERO                             */
/* ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh; /* fallback */
  display: flex;
  align-items: center;
  background-color: var(--espresso-night);
  background-image: url('../img/Mastelo_hero.jpg');
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 22, 20, 0.55) 0%,
    rgba(26, 22, 20, 0.35) 50%,
    rgba(26, 22, 20, 0.65) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  padding: 100px var(--space-md) 80px;
}

.hero__accent {
  font-family: var(--font-accent);
  font-size: 22px;
  color: var(--harvest-gold);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: block;
}

.hero__headline {
  font-family: var(--font-headline);
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 700;
  color: var(--parchment);
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.60);
}

.hero__headline em {
  font-style: italic;
  color: var(--harvest-gold);
}

.hero__subheadline {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(245, 240, 232, 0.80);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 36px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.60);
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-body);
  font-size: 20px;
  color: rgba(201, 169, 110, 0.6);
  animation: pulse-scroll 2.4s ease-in-out infinite;
  letter-spacing: 0;
}

@keyframes pulse-scroll {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.9; transform: translateX(-50%) translateY(6px); }
}

/* ---------------------------------------------------------- */
/* 7. SECTION 3 — TRUST SIGNALS TICKER                       */
/* ---------------------------------------------------------- */
.trust-ticker {
  background-color: var(--colombian-soil);
  border-top: 1px solid rgba(201, 169, 110, 0.25);
  border-bottom: 1px solid rgba(201, 169, 110, 0.25);
  overflow: hidden;
  padding: 14px 0;
}

.trust-ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 36s linear infinite;
}

.trust-ticker:hover .trust-ticker__track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trust-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--parchment);
  padding: 0 36px;
  white-space: nowrap;
}

.trust-ticker__item::after {
  content: '·';
  color: rgba(201, 169, 110, 0.5);
  font-size: 16px;
  margin-left: 36px;
}

.trust-ticker__item:last-child::after {
  /* Still keep separator — items loop seamlessly */
}

/* ---------------------------------------------------------- */
/* 8. SECTION 4 — FEATURED PRODUCTS GRID                     */
/* ---------------------------------------------------------- */
/* ══════════════════════════════════════════════════
   SECTION 4 — FEATURED PRODUCTS GRID (DARK LUXURY)
══════════════════════════════════════════════════ */

/* ── Section shell ── */
.products {
  background-color: #1a1614;
  padding: 80px 24px;
}

.products__header {
  text-align: center;
  margin-bottom: 48px;
}

.products__label {
  font-family: 'Sacramento', cursive;
  font-size: 26px;
  color: #C9A96E;
  margin-bottom: 8px;
  display: block;
}

.products__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #F5F0E8;
  line-height: 1.2;
  margin: 0;
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Product Card shell ── */
.product-card {
  background-color: #2a2421;
  border: 1px solid rgba(201, 169, 110, 0.20);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.50);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease,
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.65);
  border-color: rgba(201, 169, 110, 0.50);
}

/* ── Card image ── */
.product-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #2C1810;
  flex-shrink: 0;
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image-wrap img {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  right: 0;
  background-color: #C2703E;
  color: #F5F0E8;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
}

/* ── Card body ── */
.product-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1; /* fills card height so footer is always at bottom */
}

.product-card__altitude {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9A96E;
  margin: 0 0 6px;
}

.product-card__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #F5F0E8;
  margin: 0 0 4px;
  line-height: 1.2;
}

.product-card__process {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(201, 169, 110, 0.70);
  letter-spacing: 1px;
  margin: 0 0 14px;
}

.product-card__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.product-card__notes li {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(245, 240, 232, 0.55);
}

.product-card__notes li:not(:last-child)::after {
  content: ' · ';
  color: rgba(201, 169, 110, 0.35);
  font-style: normal;
  margin: 0 4px;
}

/* ── Card footer: price above, buttons below ── */
.product-card__footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 18px;
  margin-top: auto; /* push to bottom of card body */
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.product-card__price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #F5F0E8;
  margin: 0;
  line-height: 1;
}

/* ── Dual button row ── */
.product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* Primary — solid Terracotta */
.btn--buy {
  display: block;
  width: 100%;
  background-color: #C2703E;
  color: #F5F0E8;
  border: 1px solid #C2703E;
  border-radius: 3px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  padding: 13px 16px;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.3s ease,
              box-shadow 0.3s ease,
              transform 0.3s ease;
}

.btn--buy:hover,
.btn--buy:focus-visible {
  background-color: #a85e30;
  border-color: #a85e30;
  box-shadow: 0 0 20px rgba(194, 112, 62, 0.50);
  transform: translateY(-1px);
  color: #F5F0E8;
}

/* Secondary — ghost with gold border */
.btn--discover {
  display: block;
  width: 100%;
  background-color: transparent;
  color: #C9A96E;
  border: 1px solid rgba(201, 169, 110, 0.50);
  border-radius: 3px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  padding: 12px 16px;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.3s ease,
              border-color 0.3s ease,
              color 0.3s ease;
}

.btn--discover:hover,
.btn--discover:focus-visible {
  background-color: rgba(201, 169, 110, 0.12);
  border-color: #C9A96E;
  color: #dfc07a;
}

/* ≥ 480px: buttons sit side by side */
@media (min-width: 480px) {
  .product-card__actions {
    flex-direction: row;
  }

  .btn--buy,
  .btn--discover {
    flex: 1;
    width: auto;
  }
}

/* ---------------------------------------------------------- */
/* 9. SECTION 5 — ORIGIN STORY TRIPTYCH                      */
/* ---------------------------------------------------------- */
.origin {
  background-color: var(--espresso-night);
  padding: 100px var(--space-md);
}

.origin__header {
  text-align: center;
  margin-bottom: 64px;
}

.origin__label {
  font-family: var(--font-accent);
  font-size: 26px;
  color: var(--harvest-gold);
  margin-bottom: 12px;
  display: block;
}

.origin__title {
  font-family: var(--font-headline);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--parchment);
  line-height: 1.15;
}

.origin__triptych {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Origin Step Panel --- */
.origin-step {
  display: flex;
  flex-direction: column;
}

.origin-step__image-wrap {
  height: 420px;
  overflow: hidden;
  background-color: rgba(111, 78, 55, 0.3);
  margin-bottom: 28px;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.origin-step__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}

/* Triptych photos — shared class for all three columns */
.origin-step__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.origin-step:hover .origin-step__image-wrap img,
.origin-step:hover .origin-step__photo {
  transform: scale(1.04);
}

.origin-step__content {
  position: relative;
  padding-left: 4px;
}

.origin-step__number {
  font-family: var(--font-headline);
  font-size: 72px;
  font-weight: 900;
  color: rgba(201, 169, 110, 0.15);
  line-height: 1;
  display: block;
  margin-bottom: -28px; /* ghosted numeral overlaps title */
  user-select: none;
}

.origin-step__title {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 700;
  color: var(--parchment);
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 16px;
}

.origin-step__title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--harvest-gold);
}

.origin-step__body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.72);
}

/* ---------------------------------------------------------- */
/* 10. MEDIA QUERIES — RESPONSIVE BREAKPOINTS                 */
/* ---------------------------------------------------------- */

/* — 480px: small phones — */
@media (min-width: 480px) {
  .announcement-bar__shipping-short {
    display: none;
  }
  .announcement-bar__shipping-full {
    display: block;
  }
}

/* — hero: mobile overrides ≤ 768px — */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    min-height: 100dvh; /* fallback for older Android */
    background-position: center center;
    background-size: cover;
  }

  .hero__headline {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 280px;
  }

  .hero__cta-group .btn {
    width: 100%;
    text-align: center;
  }
}

/* — 768px: tablet — */
@media (min-width: 768px) {
  .announcement-bar {
    padding: 10px var(--space-lg);
  }

  .announcement-bar__shipping {
    font-size: 11px;
  }

  .lang-btn,
  .currency-select {
    font-size: 11px;
  }

  .hero__content {
    padding: 140px var(--space-lg) 100px;
  }

  .products {
    padding: 100px var(--space-lg);
  }

  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .origin {
    padding: 100px var(--space-lg);
  }
}

/* — 1024px: desktop — */
@media (min-width: 1024px) {
  .announcement-bar {
    padding: 10px 60px;
  }

  .hero__content {
    padding: 160px 80px 120px;
  }

  .products {
    padding: 120px 60px;
  }

  .products__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .origin {
    padding: 120px 60px;
  }

  .origin__triptych {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px; /* hairline gap — refined separator */
  }

  .origin-step__image-wrap {
    height: 480px;
  }

  /* Offset triptych panels for editorial rhythm */
  .origin-step:nth-child(2) {
    margin-top: 40px;
  }
  .origin-step:nth-child(3) {
    margin-top: 80px;
  }
}

/* — 1280px: wide desktop — */
@media (min-width: 1280px) {
  .hero__content {
    padding: 180px 100px 140px;
  }

  .products {
    padding: 140px 80px;
  }

  .origin {
    padding: 140px 80px;
  }
}

/* ---------------------------------------------------------- */
/* 11. FOOTER                                                 */
/* ---------------------------------------------------------- */

/* ── Base: force color inheritance for all footer descendants ── */
.site-footer {
  background-color: #2C1810; /* --espresso-night */
  color: #F5F0E8;            /* --parchment */
}

.site-footer p,
.site-footer span:not(.footer-brand-seal__name):not(.footer-brand-seal__est),
.site-footer li,
.site-footer address {
  color: #F5F0E8;
}

.site-footer a {
  color: rgba(245, 240, 232, 0.72);
  text-decoration: none;
}

/* ══════════════════════════════════════════════════
   ZONE 1 — NEWSLETTER BAR
══════════════════════════════════════════════════ */
.footer-newsletter {
  background-color: #2D4A3E; /* --andean-green, explicit hex */
  border-top: 1px solid rgba(201, 169, 110, 0.25);
  padding: 56px 24px;
}

.footer-newsletter__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.footer-newsletter__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #F5F0E8;
  line-height: 1.2;
  margin: 0 0 8px;
}

.footer-newsletter__sub {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  color: rgba(245, 240, 232, 0.65);
  letter-spacing: 0.5px;
  margin: 0;
}

.footer-newsletter__form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 460px;
}

/* Luxury underline-only input — no white box */
.footer-newsletter__input {
  width: 100%;
  min-width: 0;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 15px;
  color: #F5F0E8;
  background: transparent;
  border: none;
  border-bottom: 1px solid #C9A96E; /* --harvest-gold */
  padding: 10px 16px 10px 0;
  outline: none;
  -webkit-appearance: none;
  transition: border-color 0.3s ease;
}

.footer-newsletter__input::placeholder {
  color: rgba(245, 240, 232, 0.38);
}

.footer-newsletter__input:focus {
  border-bottom-color: #F5F0E8;
}

.footer-newsletter__btn {
  flex-shrink: 0;
  border-radius: 0;
  white-space: nowrap;
  align-self: stretch;
  margin-left: 0;
  margin-top: 20px;
}

/* ══════════════════════════════════════════════════
   ZONE 2 — MAIN FOOTER GRID
══════════════════════════════════════════════════ */
.footer-main {
  background-color: #2C1810; /* --espresso-night */
  padding: 72px 24px 56px;
  border-top: 1px solid rgba(201, 169, 110, 0.12);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

/* ── Left Column: Brand Seal ── */
.footer-col--brand {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-brand-seal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand-seal__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #F5F0E8;
  text-transform: uppercase;
  letter-spacing: 4px;
  display: block;
  margin: 0;
}

.footer-brand-seal__rule {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-seal__rule::before,
.footer-brand-seal__rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: #C9A96E;
  opacity: 0.4;
  display: block;
}

.footer-brand-seal__est {
  font-family: 'Sacramento', cursive;
  font-size: 20px;
  color: #C9A96E; /* --harvest-gold */
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.footer-trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
  list-style: none;
}

.footer-trust-list li::before {
  content: '◈';
  color: #C9A96E;
  font-size: 10px;
  flex-shrink: 0;
}

/* ── Center Column: Identity & Social ── */
.footer-col--identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.7;
  margin: 0;
}

.footer-social__label {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.60);
  margin: 28px 0 14px;
  display: block;
}

.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(245, 240, 232, 0.50);
  border: 1px solid rgba(201, 169, 110, 0.22);
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.footer-social__link:hover,
.footer-social__link:focus-visible {
  color: #C9A96E;
  border-color: rgba(201, 169, 110, 0.65);
  transform: translateY(-2px);
}

/* ── Right Column: Contact ── */
.footer-col--contact {
  display: flex;
  flex-direction: column;
}

.footer-col__heading {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C9A96E; /* --harvest-gold */
  margin: 0 0 24px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin: 0;
}

.footer-contact-list__item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  list-style: none;
}

.footer-contact-list__label {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.55);
  display: block;
}

.footer-contact-list__value {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  color: rgba(245, 240, 232, 0.72);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list__value:hover,
.footer-contact-list__value:focus-visible {
  color: #F5F0E8;
}

.footer-contact-list__item--email .footer-contact-list__value {
  font-size: 13px;
  word-break: break-all;
}

.footer-contact-list__item--whatsapp {
  margin-top: 6px;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(37, 211, 102, 0.85);
  text-decoration: none;
  border: 1px solid rgba(37, 211, 102, 0.28);
  padding: 9px 16px;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.footer-whatsapp:hover,
.footer-whatsapp:focus-visible {
  color: rgb(37, 211, 102);
  border-color: rgba(37, 211, 102, 0.6);
  background-color: rgba(37, 211, 102, 0.07);
}

/* ══════════════════════════════════════════════════
   ZONE 3 — LEGAL STRIP
══════════════════════════════════════════════════ */
.footer-legal {
  background-color: #1a0e0a; /* perceptibly darker than espresso-night */
  border-top: 1px solid rgba(201, 169, 110, 0.12);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-legal__copy {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.30);
  margin: 0;
}

.footer-legal__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.footer-legal__links a {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.30);
  text-decoration: none;
  padding: 4px 14px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.footer-legal__links a:hover,
.footer-legal__links a:focus-visible {
  color: rgba(245, 240, 232, 0.70);
}

.footer-legal__links a:not(:last-child)::after {
  content: '·';
  margin-left: 14px;
  color: rgba(201, 169, 110, 0.30);
  pointer-events: none;
}

/* ══════════════════════════════════════════════════
   FOOTER RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════════ */

/* ≥ 768px: tablet */
@media (min-width: 768px) {
  .footer-newsletter {
    padding: 64px 40px;
  }

  .footer-newsletter__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
  }

  .footer-newsletter__text {
    flex: 1;
  }

  .footer-newsletter__form {
    flex-shrink: 0;
    width: 380px;
  }

  .footer-main {
    padding: 80px 40px 64px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 56px;
  }

  .footer-legal {
    padding: 22px 40px;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ≥ 1024px: desktop — 3-column grid */
@media (min-width: 1024px) {
  .footer-newsletter {
    padding: 72px 60px;
  }

  .footer-main {
    padding: 88px 60px 72px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  .footer-col--identity {
    align-items: center;
    text-align: center;
  }

  .footer-tagline {
    text-align: center;
  }

  .footer-social__label {
    text-align: center;
  }

  .footer-legal {
    padding: 22px 60px;
  }
}

/* ≥ 1280px: wide desktop */
@media (min-width: 1280px) {
  .footer-newsletter {
    padding: 72px 80px;
  }

  .footer-main {
    padding: 88px 80px 72px;
  }

  .footer-legal {
    padding: 22px 80px;
  }
}

/* ---------------------------------------------------------- */
/* 12. ACCESSIBILITY — REDUCED MOTION                         */
/* ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .trust-ticker__track {
    animation: none;
  }
}

/* ============================================================
   13. PROCESO SUBPAGE — proceso-lavado.html
   Shared dark-luxury system; all classes namespaced .proceso-*
   ============================================================ */

/* ── Global subpage reset: defeat main body cascade ── */
body.proceso-page {
  background-color: #1a1614 !important;
  color: #F5F0E8 !important;
  font-family: 'Source Sans Pro', system-ui, sans-serif;
}

/* All text nodes inside the subpage — explicit cream */
.proceso-page p,
.proceso-page li,
.proceso-page span,
.proceso-page address,
.proceso-page strong,
.proceso-page em,
.proceso-page label,
.proceso-page time {
  color: rgba(245, 240, 232, 0.80);
}

/* Headings: Playfair Display in parchment white */
.proceso-page h1,
.proceso-page h2,
.proceso-page h3,
.proceso-page h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #F5F0E8;
}

/* Links inherit parchment, no browser-default blue */
.proceso-page a {
  color: rgba(245, 240, 232, 0.70);
  text-decoration: none;
}

.proceso-page a:hover {
  color: #F5F0E8;
}

/* ── Navigation ── */
.proceso-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: rgba(26, 22, 20, 0.92);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.proceso-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.proceso-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.60);
  text-decoration: none;
  transition: color 0.3s ease;
}

.proceso-nav__back:hover {
  color: #C9A96E;
}

.proceso-nav__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: #F5F0E8;
  text-decoration: none;
  letter-spacing: 1px;
  /* Logo sits in the centre of the three-item nav */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Language toggle group — right side of subpage nav */
.proceso-nav__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

/* ── Hero ── */
.proceso-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 64px; /* nav offset */
}

.proceso-hero__bg {
  position: absolute;
  inset: 0;
  background-color: #2C1810;
  background-image: url('../img/finca.webp');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.proceso-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 22, 20, 0.65) 0%,
    rgba(26, 22, 20, 0.35) 40%,
    rgba(26, 22, 20, 0.90) 100%
  );
  z-index: 1;
}

.proceso-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 760px;
}

.proceso-hero__accent {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C9A96E;
  margin: 0 0 16px;
}

.proceso-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 700;
  color: #F5F0E8;
  line-height: 1.0;
  margin: 0 0 12px;
  letter-spacing: -1px;
}

.proceso-hero__subtitle {
  font-family: 'Sacramento', cursive;
  font-size: clamp(26px, 4vw, 42px);
  color: #C9A96E;
  margin: 0 0 32px;
}

.proceso-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 13px;
  color: rgba(245, 240, 232, 0.60);
  letter-spacing: 0.5px;
}

.proceso-hero__meta strong {
  color: rgba(245, 240, 232, 0.85);
  font-weight: 600;
}

.proceso-hero__meta-divider {
  color: rgba(201, 169, 110, 0.35);
}

.proceso-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 20px;
  color: rgba(201, 169, 110, 0.50);
  animation: pulse-scroll 2.4s ease-in-out infinite;
}

/* ── Educational block ── */
.proceso-edu {
  background-color: #1a1614;
  padding: 96px 24px;
}

.proceso-edu__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.proceso-edu__label {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C9A96E;
  margin: 0 0 12px;
}

.proceso-edu__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: #F5F0E8;
  line-height: 1.15;
  margin: 0 0 28px;
}

.proceso-edu__body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 1.80;
  color: rgba(245, 240, 232, 0.70);
  margin: 0 0 20px;
  max-width: 560px;
}

/* Process steps */
.proceso-edu__steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.proceso-edu__step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.proceso-edu__step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 900;
  color: rgba(201, 169, 110, 0.20);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.proceso-edu__step strong {
  display: block;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #F5F0E8;
  margin-bottom: 4px;
}

.proceso-edu__step p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.55);
  margin: 0;
}

/* Image column */
.proceso-edu__image-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background-color: #2a2421;
  min-height: 420px;
}

.proceso-edu__image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Gold corner accents — "refined imperfection" detail */
.proceso-edu__corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(201, 169, 110, 0.55);
  border-style: solid;
  pointer-events: none;
}

.proceso-edu__corner--tl {
  top: 14px;
  left: 14px;
  border-width: 1px 0 0 1px;
}

.proceso-edu__corner--br {
  bottom: 14px;
  right: 14px;
  border-width: 0 1px 1px 0;
}

/* ── Tasting Profile ── */
.proceso-profile {
  background-color: #211c1a;
  padding: 96px 24px;
  border-top: 1px solid rgba(201, 169, 110, 0.10);
  border-bottom: 1px solid rgba(201, 169, 110, 0.10);
}

.proceso-profile__inner {
  max-width: 760px;
  margin: 0 auto;
}

.proceso-profile__label {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C9A96E;
  margin: 0 0 12px;
  text-align: center;
}

.proceso-profile__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #F5F0E8;
  text-align: center;
  margin: 0 0 56px;
}

/* Attribute progress bars */
.proceso-profile__attributes {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 56px;
}

.proceso-profile__attr-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.proceso-profile__attr-name {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F5F0E8;
}

.proceso-profile__attr-level {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #C9A96E;
  letter-spacing: 1px;
}

.proceso-profile__bar {
  height: 3px;
  background-color: rgba(245, 240, 232, 0.08);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.proceso-profile__bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--bar-width, 0%);
  background: linear-gradient(90deg, #C2703E, #C9A96E);
  border-radius: 2px;
  animation: bar-grow 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.proceso-profile__bar-fill--low {
  background: linear-gradient(90deg, #2D4A3E, #4a7a6a);
}

@keyframes bar-grow {
  from { width: 0; }
  to   { width: var(--bar-width, 0%); }
}

/* Tasting note pills */
.proceso-profile__notes-section {
  margin-bottom: 48px;
}

.proceso-profile__notes-label {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.55);
  margin: 0 0 16px;
  text-align: center;
}

.proceso-profile__notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.proceso-profile__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #F5F0E8;
  background-color: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.22);
  padding: 10px 18px;
  border-radius: 2px;
}

.proceso-profile__note svg {
  color: #C9A96E;
  flex-shrink: 0;
}

/* Brew methods */
.proceso-profile__brew-label {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.55);
  margin: 0 0 16px;
  text-align: center;
}

.proceso-profile__brew-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.proceso-profile__brew-item {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  border-bottom: 1px solid rgba(201, 169, 110, 0.20);
  padding-bottom: 2px;
}

/* ── CTA Section ── */
.proceso-cta {
  background-color: #2C1810;
  padding: 112px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind CTA */
.proceso-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(194, 112, 62, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.proceso-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.proceso-cta__accent {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C9A96E;
  margin: 0 0 16px;
}

.proceso-cta__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #F5F0E8;
  line-height: 1.15;
  margin: 0 0 20px;
}

.proceso-cta__sub {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.60);
  margin: 0 0 44px;
}

.proceso-cta__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Reuse .btn--buy with size override */
.proceso-cta__btn {
  font-size: 13px;
  letter-spacing: 2px;
  padding: 18px 40px;
  display: inline-block;
  width: auto;
}

.proceso-cta__link {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.60);
  text-decoration: none;
  transition: color 0.3s ease;
}

.proceso-cta__link:hover {
  color: #C9A96E;
}

/* ── Bottom strip ── */
.proceso-footer-strip {
  background-color: #100e0d;
  border-top: 1px solid rgba(201, 169, 110, 0.10);
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.proceso-footer-strip__link {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(245, 240, 232, 0.35);
  text-decoration: none;
  transition: color 0.3s ease;
}

.proceso-footer-strip__link:hover {
  color: rgba(245, 240, 232, 0.70);
}

.proceso-footer-strip__copy {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.20);
}

/* ── Proceso page responsive breakpoints ── */

/* ≥ 768px: tablet */
@media (min-width: 768px) {
  .proceso-edu {
    padding: 112px 40px;
  }

  .proceso-profile {
    padding: 112px 40px;
  }

  .proceso-cta {
    padding: 128px 40px;
  }

  .proceso-cta__group {
    flex-direction: row;
    justify-content: center;
  }

  .proceso-footer-strip {
    flex-direction: row;
    justify-content: space-between;
    padding: 18px 40px;
  }
}

/* ≥ 1024px: desktop */
@media (min-width: 1024px) {
  .proceso-edu {
    padding: 120px 60px;
  }

  .proceso-edu__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .proceso-profile {
    padding: 120px 60px;
  }

  .proceso-cta {
    padding: 140px 60px;
  }

  .proceso-footer-strip {
    padding: 18px 60px;
  }
}

/* ≥ 1280px: wide desktop */
@media (min-width: 1280px) {
  .proceso-edu {
    padding: 140px 80px;
  }

  .proceso-profile {
    padding: 140px 80px;
  }

  .proceso-cta {
    padding: 160px 80px;
  }

  .proceso-footer-strip {
    padding: 20px 80px;
  }
}

/* ============================================================
   NEWSLETTER FEEDBACK — AJAX response messages
   ============================================================ */

.newsletter-feedback {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.newsletter-feedback.is-visible {
  max-height: 120px;
  opacity: 1;
  padding-top: 16px;
}

/* Success — Dark Luxury: serif italic, cream */
.newsletter-feedback--success {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: #F5F0E8;
  text-align: center;
}

/* Error — subtle terracotta warning */
.newsletter-feedback--error {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: #E07A5F;
  text-align: center;
}

/* ============================================================
   INTL-TEL-INPUT — Dark Luxury theme overrides
   Scoped to .footer-newsletter so it doesn't bleed globally
   ============================================================ */

/* Wrapper: block so it fills the column slot */
.footer-newsletter .iti {
  display: block;
  width: 100%;
}

/* Flag button: transparent, gold right-border as separator */
.footer-newsletter .iti__selected-flag {
  background-color: transparent !important;
  border-right: 1px solid rgba(201, 169, 110, 0.30);
  padding-right: 10px;
  outline: none;
  transition: background-color 0.2s ease;
}

.footer-newsletter .iti__selected-flag:hover,
.footer-newsletter .iti__selected-flag:focus {
  background-color: rgba(201, 169, 110, 0.07) !important;
}

/* Dropdown arrow */
.footer-newsletter .iti__arrow {
  border-top-color: rgba(201, 169, 110, 0.60);
}

.footer-newsletter .iti__arrow--up {
  border-bottom-color: rgba(201, 169, 110, 0.60);
}

/* Dial code shown next to flag e.g. "+57" */
.footer-newsletter .iti__selected-dial-code {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  color: rgba(201, 169, 110, 0.80);
  margin-left: 6px;
}

/* Country dropdown list */
.footer-newsletter .iti__country-list {
  background-color: #1a1614;
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.65);
  max-height: 220px;
}

/* Individual row */
.footer-newsletter .iti__country {
  padding: 10px 14px;
}

.footer-newsletter .iti__country.iti__highlight,
.footer-newsletter .iti__country:hover {
  background-color: rgba(201, 169, 110, 0.10);
}

/* Country name text */
.footer-newsletter .iti__country-name {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 13px;
  color: #F5F0E8;
}

/* Dial code in the list (+57) */
.footer-newsletter .iti__dial-code {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 12px;
  color: rgba(201, 169, 110, 0.65);
}

/* Divider between preferred and full list */
.footer-newsletter .iti__divider {
  border-bottom: 1px solid rgba(201, 169, 110, 0.18);
  margin: 4px 0;
}

/* Scrollbar — thin gold on dark */
.footer-newsletter .iti__country-list::-webkit-scrollbar {
  width: 4px;
}

.footer-newsletter .iti__country-list::-webkit-scrollbar-track {
  background: #1a1614;
}

.footer-newsletter .iti__country-list::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 110, 0.35);
  border-radius: 2px;
}

/* ============================================================
   NEWSLETTER — FIELDS WRAPPER + PHONE INPUT + SUCCESS STATE
   ============================================================ */

/* Stacked fields column inside the form */
.footer-newsletter__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* Phone input — slightly subtler gold underline to signal optional */
.footer-newsletter__input--phone {
  font-size: 14px;
  border-bottom-color: rgba(201, 169, 110, 0.40);
}

/* Success container — hidden until JS adds .is-visible */
.newsletter-success {
  display: none;
  opacity: 0;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 8px 0 4px;
  width: 100%;
  max-width: 460px;
}

.newsletter-success.is-visible {
  display: flex;
  animation: newsletter-fade-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes newsletter-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* Circular checkmark icon */
.newsletter-success__check {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A96E;
}

/* Success message — Playfair italic, cream */
.newsletter-success__msg {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: #F5F0E8;
  margin: 0;
  max-width: 340px;
}

/* ============================================================
   STORY TEASER — Homepage section (above footer)
   ============================================================ */

.story-teaser {
  background-color: #211c1a;
  color: #F5F0E8; /* base — defeats body { color: var(--warm-charcoal) } cascade */
  padding: 100px 24px;
  border-top: 1px solid rgba(201, 169, 110, 0.10);
  border-bottom: 1px solid rgba(201, 169, 110, 0.10);
}

.story-teaser__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

/* Label */
.story-teaser__label {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #C9A96E;
  margin: 0 0 20px;
}

/* Headline */
.story-teaser__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  color: #F5F0E8;
  line-height: 1.10;
  margin: 0 0 28px;
  letter-spacing: -0.5px;
}

/* Body */
.story-teaser__body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 17px;
  line-height: 1.80;
  color: rgba(245, 240, 232, 0.65);
  margin: 0 0 40px;
  max-width: 520px;
}

/* CTA — Ghost button with gold border */
.story-teaser__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C9A96E;
  text-decoration: none;
  border: 1px solid rgba(201, 169, 110, 0.50);
  padding: 14px 28px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.story-teaser__cta::after {
  content: '→';
  font-size: 14px;
  transition: transform 0.3s ease;
}

.story-teaser__cta:hover {
  background-color: rgba(201, 169, 110, 0.08);
  border-color: #C9A96E;
  color: #F5F0E8;
}

.story-teaser__cta:hover::after {
  transform: translateX(4px);
}

/* Image column */
.story-teaser__image-wrap {
  position: relative;
  overflow: hidden;
  background-color: #2a2421;
  min-height: 420px;
}

.story-teaser__image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.85) saturate(0.90);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.story-teaser__image-wrap:hover img {
  filter: brightness(0.95) saturate(1.0);
  transform: scale(1.02);
}

/* Gold corner accents — reuse same pattern */
.story-teaser__corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(201, 169, 110, 0.55);
  border-style: solid;
  pointer-events: none;
}

.story-teaser__corner--tl { top: 14px; left: 14px; border-width: 1px 0 0 1px; }
.story-teaser__corner--br { bottom: 14px; right: 14px; border-width: 0 1px 1px 0; }

/* ≥ 1024px: 2-column grid */
@media (min-width: 1024px) {
  .story-teaser {
    padding: 120px 60px;
  }
  .story-teaser__inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

@media (min-width: 1280px) {
  .story-teaser {
    padding: 140px 80px;
  }
}


/* ============================================================
   OUR STORY PAGE — Hero
   ============================================================ */

.our-story-page {
  background-color: #1a1614;
}

.story-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 64px;
}

.story-hero__bg {
  position: absolute;
  inset: 0;
  background-color: #1a1614;
  background-image: url('../img/our-story-hero.webp');
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

@media (max-width: 768px) {
  .story-hero__bg {
    background-position: center 60%;
  }
}

.story-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 22, 20, 0.60) 0%,
    rgba(26, 22, 20, 0.30) 40%,
    rgba(26, 22, 20, 0.55) 100%
  );
  z-index: 1;
}

.story-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
}

.story-hero__label {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #C9A96E;
  margin: 0 0 20px;
}

.story-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  color: #F5F0E8;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 20px;
}

.story-hero__subtitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(245, 240, 232, 0.60);
  line-height: 1.65;
  margin: 0 0 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.story-hero__rule {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A96E, transparent);
  margin: 0 auto 24px;
}

.story-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.40);
}

.story-hero__meta-dot {
  color: rgba(201, 169, 110, 0.50);
  font-size: 10px;
}

.story-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 20px;
  color: rgba(201, 169, 110, 0.50);
  animation: pulse-scroll 2.4s ease-in-out infinite;
}


/* ============================================================
   OUR STORY PAGE — Content blocks
   ============================================================ */

.story-block {
  padding: 100px 24px;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.story-block--origin { background-color: #1a1614; }
.story-block--family { background-color: #211c1a; }
.story-block--ice    { background-color: #1a1614; }

.story-block__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

/* Label above title */
.story-block__label {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #C9A96E;
  margin: 0 0 16px;
}

/* Block title */
.story-block__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: #F5F0E8;
  line-height: 1.10;
  margin: 0 0 10px;
}

/* Subtitle / location line */
.story-block__subtitle {
  font-family: 'Sacramento', cursive;
  font-size: clamp(20px, 3vw, 28px);
  color: rgba(201, 169, 110, 0.80);
  margin: 0 0 32px;
}

/* Body paragraphs */
.story-block__body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.68);
  margin: 0 0 22px;
  max-width: 560px;
}

/* Pull quote */
.story-block__quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 24px);
  color: #C9A96E;
  line-height: 1.55;
  margin: 40px 0 0;
  padding-left: 24px;
  border-left: 2px solid rgba(201, 169, 110, 0.40);
}

.story-block__quote--large {
  font-size: clamp(22px, 3vw, 30px);
  margin: 40px 0 48px;
}

/* CTA link inside story block */
.story-block__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #F5F0E8;
  background-color: #C2703E;
  text-decoration: none;
  padding: 16px 32px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.story-block__cta::after {
  content: '→';
  font-size: 14px;
  transition: transform 0.3s ease;
}

.story-block__cta:hover {
  background-color: #a85e32;
}

.story-block__cta:hover::after {
  transform: translateX(4px);
}

/* Image wrapper — shared with teaser corners */
.story-block__image-wrap {
  position: relative;
  overflow: hidden;
  background-color: #2a2421;
  min-height: 480px;
}

.story-block__photo {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.88) saturate(0.85);
  transition: filter 0.6s ease;
}

.story-block__image-wrap:hover .story-block__photo {
  filter: brightness(0.98) saturate(1.0);
}

.story-block__corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(201, 169, 110, 0.55);
  border-style: solid;
  pointer-events: none;
  z-index: 1;
}

.story-block__corner--tl { top: 14px; left: 14px; border-width: 1px 0 0 1px; }
.story-block__corner--br { bottom: 14px; right: 14px; border-width: 0 1px 1px 0; }

/* ── Family cards (daughter profiles) ── */
.story-family__cards {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.story-family__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 160px;
  padding: 20px;
  background-color: rgba(201, 169, 110, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.18);
}

.story-family__card-icon {
  color: #C9A96E;
}

.story-family__card-caption {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.60);
  margin: 0;
  line-height: 1.55;
}

/* ── Ice block — abstract visual placeholder ── */
.story-block__image-wrap--ice {
  background-color: #0f0d0c;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.story-ice__visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-ice__arc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-ice__location {
  position: relative;
  z-index: 1;
  font-family: 'Sacramento', cursive;
  font-size: 42px;
  color: rgba(201, 169, 110, 0.30);
  text-align: center;
  margin: 0;
  pointer-events: none;
}

/* ── Desktop grid layouts ── */
@media (min-width: 1024px) {
  .story-block {
    padding: 120px 60px;
  }

  .story-block__inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  /* Reversed block: text left, image right → swap order */
  .story-block--reversed .story-block__inner {
    direction: rtl;
  }

  .story-block--reversed .story-block__inner > * {
    direction: ltr;
  }
}

@media (min-width: 1280px) {
  .story-block {
    padding: 140px 80px;
  }
}


/* ============================================================
   LEGAL PAGES  (privacy.html · terms.html · refund.html)
   ============================================================ */

/* ── Hero ── */
.legal-hero {
  position: relative;
  padding: 120px 24px 80px;
  background-color: #1a1614;
  text-align: center;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201, 169, 110, 0.06), transparent);
  pointer-events: none;
}

.legal-hero__label {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #C9A96E;
  margin: 0 0 16px;
}

.legal-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: #F5F0E8;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.legal-hero__sub {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 20px;
}

.legal-hero__updated {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.50);
}

/* ── Content body ── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 120px;
  color: #F5F0E8;
}

.legal-section {
  margin-bottom: 56px;
}

.legal-section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: #F5F0E8;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

/* Prose body — rendered via data-i18n-html */
.legal-section__body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.80;
  color: rgba(245, 240, 232, 0.78);
}

.legal-section__body p {
  margin: 0 0 16px;
}

.legal-section__body p:last-child {
  margin-bottom: 0;
}

.legal-section__body ul {
  margin: 8px 0 16px 20px;
  padding: 0;
}

.legal-section__body li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-section__body strong {
  color: #F5F0E8;
  font-weight: 600;
}

.legal-section__body em {
  color: rgba(245, 240, 232, 0.90);
  font-style: italic;
}

.legal-section__body code {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  background: rgba(201, 169, 110, 0.10);
  color: #C9A96E;
  padding: 2px 6px;
  border-radius: 3px;
}

.legal-section__body a {
  color: #C9A96E;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section__body a:hover {
  color: #F5F0E8;
}

/* ── Responsive adjustments ── */
@media (min-width: 768px) {
  .legal-hero {
    padding: 140px 48px 100px;
  }

  .legal-content {
    padding: 88px 48px 140px;
  }
}

@media (min-width: 1024px) {
  .legal-content {
    padding: 100px 0 160px;
  }
}


/* ============================================================
   GRAIN-HIELO — Carousel section (our-story.html)
   ============================================================ */
.grain-hielo {
  background: #1a1614;
  padding: 100px 40px;
  border-top: 1px solid rgba(201,169,110,0.2);
  text-align: center;
}
.grain-hielo__eyebrow {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 12px;
}
.grain-hielo__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #F5F0E6;
  margin-bottom: 16px;
  line-height: 1.2;
}
.grain-hielo__subtitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  color: rgba(245,240,230,0.6);
  max-width: 520px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.grain-hielo__carousel {
  max-width: 480px;
  margin: 0 auto;
}
.grain-hielo__track {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}
.grain-hielo__slide {
  display: none;
  position: relative;
}
.grain-hielo__slide.active {
  display: block;
  animation: ghFade 0.7s ease;
}
@keyframes ghFade {
  from { opacity: 0; transform: scale(1.03); }
  to   { opacity: 1; transform: scale(1); }
}
.grain-hielo__slide img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.grain-hielo__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(
    to top,
    rgba(26,22,20,0.95) 0%,
    rgba(26,22,20,0.65) 55%,
    transparent 100%
  );
  padding: 48px 28px 28px;
  text-align: left;
}
.grain-hielo__quote {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: #F5F0E6;
  line-height: 1.55;
  margin-bottom: 10px;
}
.grain-hielo__author {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C9A96E;
}
.grain-hielo__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}
.grain-hielo__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(201,169,110,0.25);
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}
.grain-hielo__dot.active {
  background: #C9A96E;
  transform: scale(1.4);
}
.grain-hielo__body {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(245,240,230,0.75);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.85;
}
@media (max-width: 768px) {
  .grain-hielo { padding: 72px 20px; }
  .grain-hielo__carousel { max-width: 100%; }
}
