/*!
 * Milklab Activation 2026 — style.css
 * Updated design to match MILKLAB brand aesthetic
 * Clean, minimal, black & white with warm accents
 */

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

:root {
  /* ─── Backgrounds ─── */
  --bg:           #F5F2EB;   /* warm cream - main background */
  --bg-card:      #FFFFFF;   /* white - card surfaces */
  --bg-dark:      #1A1A1A;   /* near-black - dark sections */
  --bg-darker:    #0D0D0D;   /* pure black - footer, hero dark */
  --bg-cream:     #F5EDD6;   /* milklab cream - inner sections */

  /* ─── Text ─── */
  --text:         #1A1A1A;   /* primary text - dark */
  --text-lt:      #5C5C5C;   /* secondary text - improved from 6B6B6B */
  --text-muted:   #8A8A8A;   /* muted/placeholder text */
  --text-white:   #FFFFFF;   /* text on dark backgrounds */
  --text-cream:   #F5EDD6;   /* text on light backgrounds */

  /* ─── Brand Colors ─── */
  --primary:      #000000;   /* black - buttons, nav */
  --accent:       #B8860B;   /* dark goldenrod - CTA, highlights */
  --accent-light:  #D4A843;   /* lighter gold - hover states */
  --accent-hover:  #9A7209;   /* darker gold - active states */

  /* ─── Borders ─── */
  --border:       #E0DDD5;   /* subtle borders */
  --border-dark:  rgba(255,255,255,.15); /* borders on dark bg */

  /* ─── Semantic ─── */
  --success:      #5A7A5C;   /* green - active badges */
  --error:        #C0392B;   /* red - form errors */

  /* ─── Typography ─── */
  --font-b:       'Inter', system-ui, -apple-system, sans-serif;
  --font-a:       'DM Sans', system-ui, sans-serif;

  /* ─── Spacing ─── */
  --r-sm: 4px; --r-md: 8px; --r-lg: 16px; --r-xl: 24px; --r-full: 9999px;

  /* ─── Transitions ─── */
  --t-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ─── Shadows ─── */
  --sh-sm:  0 1px 3px rgba(0,0,0,.06);
  --sh-md:  0 4px 12px rgba(0,0,0,.08);
  --sh-lg:  0 8px 24px rgba(0,0,0,.10);
  --sh-xl:  0 16px 48px rgba(0,0,0,.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-b);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
}
.h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.h3 { font-size: 1.25rem; }
.text-sm  { font-size: .875rem; }
.text-xs  { font-size: .75rem; }
.label {
  font-family: var(--font-a);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.text-center { text-align: center; }
.text-white { color: var(--text-white); }
.text-lt { color: var(--text-lt); }
.accent { color: var(--accent); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-md);
  font-family: var(--font-b);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--t-base);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--text-white);
  border: 1.5px solid var(--primary);
}
.btn-primary:hover {
  background: #888;
  border-color: #888;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}
.btn-outline:hover {
  background: #999;
  color: #fff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(150,150,150,0.2);
  border-color: rgba(150,150,150,0.5);
}
.btn-sm { padding: 10px 20px; font-size: .8rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-family: var(--font-a);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.badge-black {
  background: var(--primary);
  color: var(--text-white);
}
.badge-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 242, 235, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--t-base);
}
#navbar.scrolled { box-shadow: var(--sh-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-b);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}
.nav-logo .dot { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--r-md);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-lt);
  transition: var(--t-fast);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(0,0,0,.05);
}
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t-base);
}

/* ── Mobile Nav ── */
#mobile-nav { position: fixed; inset: 0; z-index: 200; pointer-events: none; }
.mobile-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  transition: var(--t-base);
}
.mobile-drawer {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 90vw);
  background: var(--bg-card);
  padding: 24px;
  transform: translateX(100%);
  transition: var(--t-base);
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
#mobile-nav.open { pointer-events: all; }
#mobile-nav.open .mobile-overlay { opacity: 1; }
#mobile-nav.open .mobile-drawer { transform: translateX(0); }
.mobile-drawer a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--t-fast);
}
.mobile-drawer a:hover,
.mobile-drawer a.active {
  background: rgba(0,0,0,.05);
  color: var(--accent);
}
.mobile-drawer .btn-primary { color: var(--text-white); }
.mobile-close {
  align-self: flex-end;
  background: none; border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-lt);
  margin-bottom: 16px;
  padding: 4px 8px;
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://cdn.prod.website-files.com/63dc84411f66ed4f02eb49f0/668c8ebd140a39cfe62968a8_MILK-LAB12460-BW.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
}
.hero-blob { position: absolute; border-radius: 50%; pointer-events: none; }
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,134,11,0.12), transparent);
  top: -200px; right: -150px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,0,0,0.04), transparent);
  bottom: -100px; left: 5%;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow-line {
  width: 32px;
  height: 1.5px;
  background: var(--accent);
}
.hero-title { margin-bottom: 24px; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-lt);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}
.stat-item { text-align: left; }
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: .8rem;
  color: var(--text-lt);
  font-family: var(--font-a);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.hero-visual { position: relative; }
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--sh-lg);
}
.passport-mock {
  background: var(--primary);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.passport-title {
  font-weight: 600;
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 4px;
}
.passport-sub {
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  font-family: var(--font-a);
}
.stamps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.stamp {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}
.stamp.filled {
  background: var(--accent);
  border-style: solid;
  border-color: var(--accent);
  color: var(--text-white);
}
.hero-card-footer {
  color: var(--text-lt);
  font-size: .8rem;
  text-align: center;
  font-family: var(--font-a);
  margin-top: 16px;
}
.hero-product-images {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
.product-thumb {
  width: 80px;
  height: auto;
  border-radius: var(--r-md);
  object-fit: contain;
  mix-blend-mode: multiply;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.4;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .eyebrow {
  color: var(--accent);
  font-family: var(--font-a);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header .h2 { margin-bottom: 16px; }
.section-header p {
  color: var(--text-lt);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Info Cards ── */
#info-cards {
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}
#info-cards::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://cdn.prod.website-files.com/63dc84411f66ed4f02eb49f0/641b6aee834f156a914212cf_640aa4ad98dc7bf87a8d5811_CG-5553.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
}
#info-cards .container { position: relative; z-index: 1; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  text-align: center;
  transition: var(--t-base);
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--accent);
}
.info-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.info-card .h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.info-card p {
  color: var(--text-lt);
  font-size: .9rem;
  line-height: 1.7;
}

/* ── Steps ── */
#mechanics { background: var(--primary); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(184,134,11,0.3));
}
.step { text-align: center; padding: 0 24px; position: relative; }
.step-num {
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(184,134,11,.3);
}
.step .h3 { color: var(--text-white); margin-bottom: 12px; font-size: 1.1rem; }
.step p { color: rgba(255,255,255,.6); font-size: .9rem; }
.steps-cta { text-align: center; margin-top: 56px; }

/* ── Location Cards ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: var(--t-base);
  position: relative;
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--accent);
}
.location-badge { position: absolute; top: 16px; right: 16px; }
.location-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 6px;
}
.location-area {
  font-size: .85rem;
  color: var(--text-lt);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.location-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ── Gallery ── */
#gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child {
  grid-row: span 2;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  opacity: 0;
  transition: var(--t-base);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  color: var(--text-white);
  font-size: .85rem;
  font-family: var(--font-a);
}

/* ── Articles ── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t-base);
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.article-thumb {
  height: 200px;
  background: var(--bg);
  overflow: hidden;
}
.article-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-body { padding: 24px; }
.article-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.article-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.article-excerpt {
  color: var(--text-lt);
  font-size: .875rem;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-expand {
  padding: 0 24px 24px;
  color: var(--text);
  font-size: .9rem;
  line-height: 1.8;
}
.article-expand.open { display: block; }

/* ── Partners ── */
#partners { background: var(--primary); }
.partners-strip { display: flex; gap: 24px; overflow: hidden; padding: 8px 0; }
.partners-track { display: flex; gap: 24px; animation: scroll 25s linear infinite; }
.partner-logo {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 16px 32px;
  white-space: nowrap;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  flex-shrink: 0;
  transition: var(--t-base);
}
.partner-logo:hover {
  background: rgba(255,255,255,.1);
  color: var(--text-white);
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-lt); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-text .label { color: var(--text-lt); margin-bottom: 2px; }
.contact-item-text a,
.contact-item-text span { font-weight: 500; font-size: .95rem; }
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--sh-sm);
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 500; font-size: .875rem; color: var(--text); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font: 400 .9rem var(--font-b);
  color: var(--text);
  transition: var(--t-fast);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,134,11,.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-input.error { border-color: #C0392B; }

/* ── Footer ── */
#footer { background: var(--primary); padding: 80px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .nav-logo { font-size: 1.2rem; margin-bottom: 20px; color: var(--text-white); }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .9rem; max-width: 280px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t-base);
  color: #fff;
}
.social-btn:hover {
  background: rgba(150,150,150,0.3);
  border-color: rgba(150,150,150,0.5);
}
.footer-col h4 {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: .9rem; color: rgba(255,255,255,.5); transition: var(--t-fast); }
.footer-col ul a:hover { color: var(--text-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ── WhatsApp FAB ── */
#wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t-spring);
}
#wa-fab:hover { transform: scale(1.1); box-shadow: var(--sh-xl); }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Akordion ── */
.akord-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 12px;
}
.akord-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.akord-content.open { max-height: 400px; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--cream);
  text-align: center;
}
.page-hero .eyebrow {
  font-family: var(--font-a);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.page-hero .h1 { margin-bottom: 16px; }
.page-hero p {
  color: var(--text-lt);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Filter Bar ── */
.filter-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.filter-bar input,
.filter-bar select {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: .9rem;
}

/* ── Shop Grid ── */
.shops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.shop-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--t-base);
  cursor: pointer;
}
.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--accent);
}
.shop-initial {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
}
.shop-card .h3 { font-size: .95rem; margin-bottom: 8px; }

/* ── Highlight Cards ── */
.highlight-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.highlight-card {
  border-radius: var(--r-xl);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.highlight-num {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-white);
  margin: 0 auto 20px;
}

/* ── Stats Banner ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-big-number {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
}
.stat-big-label {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  font-family: var(--font-a);
  margin-top: 8px;
}

/* ── Redirect Page ── */
.redirect-box { text-align: center; color: var(--text-white); padding: 40px; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 16px 32px; border-radius: var(--r-md);
  font-weight: 600; font-size: 1rem; text-decoration: none;
  transition: var(--t-base);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .shops-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .shops-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .filter-bar { flex-direction: column; }
  .filter-bar > div { width: 100%; }
  .filter-bar > div input,
  .filter-bar > div select { width: 100%; }
  #resultCount { width: 100%; text-align: center; }
  .location-card { padding: 16px; }
  .location-card .btn-sm { width: 100%; justify-content: center; }
  #locations-hero { padding: 40px 0; }
  #locations-hero h1 { font-size: 1.75rem; }
  #locations .locations-grid { grid-template-columns: 1fr; gap: 16px; }
  #locations .location-card { padding: 16px; }
  #locations .location-card .location-footer { flex-direction: column; gap: 12px; align-items: flex-start; }
  #locations .location-card .btn-sm { width: 100%; justify-content: center; }
  #locations .see-all { margin-top: 24px; }
  #locations .see-all .btn { width: 100%; }
  #locations .section-header { margin-bottom: 24px; }
  #locations .section-header h2 { font-size: 1.5rem; }
  #locations .section-header p { font-size: 0.9rem; }
  .hero-content { padding: 0 20px; }
  .hero-title { font-size: 2.5rem; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 24px; }
  .info-card { padding: 20px; }
  .steps-grid { gap: 32px; }
  #mechanics .section-header h2 { font-size: 1.5rem; }
  .step { padding: 20px; }
  .step-num { width: 48px; height: 48px; font-size: 1.25rem; }
  .articles-grid { grid-template-columns: 1fr; gap: 16px; }
  .article-card { padding: 20px; }
  #articles .section-header h2 { font-size: 1.5rem; }
  #gallery .section-header h2 { font-size: 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  #contact .contact-grid { grid-template-columns: 1fr; }
  .footer-brand p { font-size: 0.9rem; }
  .footer-col h4 { font-size: 1rem; }
  .footer-col ul li { margin-bottom: 8px; }
}

/* ── Coming Soon Modal ── */
#cs-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}
#cs-modal.open {
  opacity: 1;
  pointer-events: all;
}
#cs-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.7);
  backdrop-filter: blur(6px);
}
.cs-modal-box {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: var(--sh-xl);
  transform: scale(0.95);
  transition: transform var(--t-base) cubic-bezier(0.34, 1.56, 0.64, 1);
}
#cs-modal.open .cs-modal-box {
  transform: scale(1);
}
.cs-modal-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.cs-modal-title {
  font-family: var(--font-h);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}
.cs-modal-text {
  color: var(--text-lt);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 28px;
}
.cs-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cs-modal-close {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--text-lt);
  padding: 10px 24px;
  border-radius: var(--r-md);
  font: 500 14px var(--font-b);
  cursor: pointer;
  transition: var(--t-fast);
}
.cs-modal-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .partner-logo, .stamp.filled { animation: none; }
  .info-card:hover, .location-card:hover, .article-card:hover, .shop-card:hover { transform: none; }
}