/* ============================================================
   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('https://images.unsplash.com/photo-1511537190424-bbbab87ac5eb?auto=format&fit=crop&q=80&w=1920');
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 24, 16, 0.80) 0%,
    rgba(44, 24, 16, 0.40) 45%,
    rgba(44, 24, 16, 0.88) 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;
}

.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;
}

.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                     */
/* ---------------------------------------------------------- */
.products {
  background-color: var(--parchment);
  padding: 80px var(--space-md);
}

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

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

.products__title {
  font-family: var(--font-headline);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--warm-charcoal);
  line-height: 1.2;
}

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

/* --- Product Card --- */
.product-card {
  background-color: var(--white);
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(44, 24, 16, 0.16);
}

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--espresso-night);
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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: var(--terracotta);
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
}

.product-card__body {
  padding: 24px;
}

.product-card__altitude {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--harvest-gold);
  margin-bottom: 6px;
}

.product-card__name {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  color: var(--warm-charcoal);
  margin-bottom: 4px;
  line-height: 1.2;
}

.product-card__process {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--colombian-soil);
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.product-card__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 20px;
}

.product-card__notes li {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: var(--colombian-soil);
}

.product-card__notes li:not(:last-child)::after {
  content: ' · ';
  color: rgba(111, 78, 55, 0.4);
  font-style: normal;
  margin: 0 4px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.product-card__price {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 700;
  color: var(--warm-charcoal);
}

/* ---------------------------------------------------------- */
/* 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 {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: rgba(111, 78, 55, 0.3);
  margin-bottom: 28px;
}

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

.origin-step:hover .origin-step__image-wrap img {
  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;
  }
}

/* — 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 {
    aspect-ratio: 3 / 4;
  }

  /* 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;
  align-items: stretch;
  width: 100%;
  max-width: 460px;
}

/* Luxury underline-only input — no white box */
.footer-newsletter__input {
  flex: 1;
  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: flex-end;
  margin-left: 16px;
}

/* ══════════════════════════════════════════════════
   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;
  }
}
