/* ═══════════════════════════════════════════════════
   GLOW ENVY — FINAL · Premium Velvety Beauty UI
   Fonts: Cormorant Garamond (display) + Jost (body)
   Palette: Forest greens + white · Black sparingly
   ═══════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* Greens */
  --forest:    #0b3d0b;
  --deep:      #155215;
  --mid:       #237023;
  --bright:    #3a9c3a;
  --soft:      #6dbf6d;
  --pale:      #b8e2b8;
  --mist:      #e0f5e0;
  --foam:      #f4fbf4;

  /* Neutrals */
  --white:     #ffffff;
  --off:       #f9fdf9;
  --ink:       #111c11;
  --body:      #2e3a2e;
  --muted:     #5a6b5a;
  --border:    #cce8cc;

  /* Accents */
  --gold:      #b8962a;
  --wa-green:  #25D366;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 40px;

  /* Shadow */
  --shadow-sm: 0 2px 12px rgba(35,112,35,.10);
  --shadow-md: 0 6px 28px rgba(35,112,35,.15);
  --shadow-lg: 0 16px 56px rgba(35,112,35,.20);

  /* Fonts */
  --display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans:    'Jost', 'Helvetica Neue', Arial, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--body);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.15; color: var(--forest); }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.mt-24 { margin-top: 24px; }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  background: var(--mist);
  border: 1px solid var(--border);
  padding: 5px 16px;
  border-radius: var(--r-xl);
  margin-bottom: 14px;
}
.eyebrow-light {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.section-header p { color: var(--muted); font-size: 1rem; max-width: 600px; margin: 0 auto; }
.light-header h2 { color: var(--white); }
.light-header p { color: rgba(255,255,255,.78); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 13px 30px;
  border-radius: var(--r-xl);
  transition: all .25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-solid {
  background: var(--mid);
  color: var(--white);
  border-color: var(--mid);
  box-shadow: var(--shadow-sm);
}
.btn-solid:hover { background: var(--forest); border-color: var(--forest); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.8); }

.btn-card {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  padding: 9px 20px;
  font-size: .82rem;
}
.btn-card:hover { background: var(--mid); transform: translateY(-1px); }

.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  border-color: var(--wa-green);
  padding: 15px 34px;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-wa:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.4); }

/* ── WHATSAPP FAB ── */
.wa-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  z-index: 9999;
  transition: all .25s;
  animation: wa-pulse 2.8s infinite;
}
.wa-fab:hover { transform: scale(1.12); animation: none; box-shadow: 0 10px 36px rgba(37,211,102,.6); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,.75); }
}

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#header.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 28px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 80px; height: 80px;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  transition: transform .3s;
}
.brand:hover .brand-logo { transform: scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest);
}
.brand-name em { font-style: normal; color: var(--mid); }
.brand-tagline { font-size: .62rem; color: var(--muted); letter-spacing: .05em; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-links li a {
  font-size: .84rem;
  font-weight: 500;
  color: var(--body);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: all .2s;
}
.nav-links li a:hover { background: var(--foam); color: var(--mid); }
.nav-links li a.nav-cta {
  background: var(--mid);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--r-xl);
  font-weight: 600;
}
.nav-links li a.nav-cta:hover { background: var(--forest); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 78px;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-bg-tint {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 48, 8, .90) 0%,
    rgba(18, 72, 18, .80) 35%,
    rgba(28, 96, 28, .68) 65%,
    rgba(10, 55, 10, .85) 100%
  );
}

.hero-body {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 64px 28px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  width: 100%;
}

/* Hero left */
.hero-brand-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.20);
  padding: 14px 22px;
  border-radius: var(--r-lg);
  margin-bottom: 28px;
}
.hero-logo {
  width: 140px; height: 140px;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}
.hbc-name {
  font-family: var(--display);
  font-size: 1.55rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.hbc-name strong { color: #a8e8a8; }
.hbc-sub { font-size: .72rem; color: rgba(255,255,255,.72); letter-spacing: .06em; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .76rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: .06em;
  margin-bottom: 20px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6ddf6d;
  animation: blink 2s infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-h1 {
  font-size: clamp(3rem, 5.5vw, 5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 22px;
  font-weight: 300;
}
.hero-h1 em {
  font-style: italic;
  color: #a8e8a8;
  font-weight: 400;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 28px;
}

.hero-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px;
}
.hero-pills li {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--white);
  font-size: .76rem;
  font-weight: 500;
  padding: 6px 15px;
  border-radius: var(--r-xl);
  backdrop-filter: blur(4px);
  .flag-icon{
  width:18px;
  height:auto;
  vertical-align:middle;
  margin-right:6px;
}
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero showcase */
.hero-showcase .hs-primary {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  border: 2px solid rgba(255,255,255,.18);
  margin-bottom: 14px;
}
.hs-primary img { width: 100%; max-height: 380px; object-fit: cover; }
.hs-spf-pill {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(11,61,11,.88);
  color: var(--white);
  border-radius: 50%;
  width: 68px; height: 68px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; line-height: 1.1;
  border: 2px solid rgba(255,255,255,.2);
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.hs-spf-pill strong { font-size: .68rem; letter-spacing: .06em; }
.hs-spf-pill span { font-family: var(--display); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.hs-spf-pill small { font-size: .58rem; opacity: .8; }

.hs-secondary {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.hs-mini {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .25s;
}
.hs-mini:hover { transform: translateY(-4px); }
.hs-mini img { width: 100%; height: 80px; object-fit: cover; }
.hs-mini span {
  display: block; padding: 8px 10px;
  font-size: .72rem; color: var(--white);
  text-align: center; line-height: 1.5;
}
.hs-mini span b { display: block; color: #a8e8a8; font-size: .7rem; }

/* ══════════════════════════════════
   TICKER
══════════════════════════════════ */
.ticker {
  background: var(--forest);
  padding: 12px 0;
  overflow: hidden;
  border-top: 2px solid var(--mid);
}
.ticker-inner {
  display: flex; gap: 48px; white-space: nowrap;
  animation: scroll-ticker 38s linear infinite;
}
.ticker-inner span {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  flex-shrink: 0;
}
@keyframes scroll-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual { position: relative; }
.about-img-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(11,61,11,.25));
  pointer-events: none;
}
.about-img-frame img { width: 100%; height: 540px; object-fit: cover; object-position: top; }

.about-cert-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--forest);
  color: var(--white);
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,.15);
}
.about-cert-badge span { font-size: 1.3rem; }
.about-cert-badge strong { display: block; font-size: .85rem; font-weight: 600; }
.about-cert-badge small { font-size: .7rem; opacity: .75; }

.about-leaf-accent {
  position: absolute;
  top: -20px; right: -20px;
  font-size: 3.5rem;
  opacity: .12;
  transform: rotate(25deg);
  pointer-events: none;
  animation: sway 8s ease-in-out infinite;
}
@keyframes sway { 0%,100%{transform:rotate(25deg)} 50%{transform:rotate(18deg) scale(1.05)} }

.about-copy h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.about-copy h2 em { font-style: italic; color: var(--mid); }
.about-copy > p { color: var(--muted); line-height: 1.85; margin-bottom: 28px; }

.vs-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vs-card {
  border-radius: var(--r-md);
  padding: 20px;
}
.vs-bad  { background: #fff6f6; border: 1.5px solid #ffd4d4; }
.vs-good { background: var(--foam); border: 1.5px solid var(--border); }
.vs-card h4 { font-family: var(--sans); font-size: .88rem; font-weight: 700; margin-bottom: 12px; color: var(--body); }
.vs-card ul li { font-size: .84rem; color: var(--muted); padding: 4px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.vs-card ul li:last-child { border: none; }

/* ══════════════════════════════════
   PRODUCTS
══════════════════════════════════ */
.products-section { background: var(--off); padding-bottom: 96px; padding-top: 0; }

.products-header {
  position: relative;
  height: 240px;
  overflow: hidden;
  margin-bottom: 0;
}
.ph-bg { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.ph-tint {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,48,8,.86), rgba(22,90,22,.80));
}
.ph-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 20px;
}
.ph-content h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 8px; }
.ph-content p { color: rgba(255,255,255,.8); font-size: .9rem; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  padding-top: 52px;
}

.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--soft);
}

.product-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-image img { transform: scale(1.06); }

/* Badges */
.badge {
  position: absolute;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: var(--r-xl);
}
.badge-hero  { top: 12px; left: 12px; background: var(--deep); color: var(--white); }
.badge-alt   { top: 12px; left: 12px; background: var(--gold); color: var(--white); }
.badge-new   { top: 12px; left: 12px; background: var(--bright); color: var(--white); }
.badge-value { top: 12px; left: 12px; background: var(--forest); color: var(--white); }
.badge-inner { top: 12px; left: 12px; background: var(--mid); color: var(--white); }
.badge-spf   { top: 12px; right: 12px; background: rgba(11,61,11,.85); color: var(--white); }

.product-info { padding: 20px 22px; }
.product-info h3 { font-size: 1.1rem; color: var(--forest); margin-bottom: 5px; line-height: 1.3; }
.product-meta {
  font-size: .72rem;
  font-weight: 600;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.product-desc { font-size: .88rem; color: var(--muted); line-height: 1.72; margin-bottom: 18px; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.product-price {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest);
}

/* Catalogue CTA */
.catalogue-cta {
  margin-top: 56px;
  background: linear-gradient(135deg, var(--forest), var(--deep));
  border-radius: var(--r-lg);
  padding: 40px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cc-text h3 { font-family: var(--display); color: var(--white); font-size: 1.5rem; margin-bottom: 6px; }
.cc-text p { color: rgba(255,255,255,.78); font-size: .9rem; }
.catalogue-cta .btn-solid { background: var(--white); color: var(--forest); border-color: var(--white); }
.catalogue-cta .btn-solid:hover { background: var(--mist); }

/* ══════════════════════════════════
   RESULTS
══════════════════════════════════ */
.results-section { position: relative; padding: 96px 0; }
.results-bg { position: absolute; inset: 0; z-index: 0; }
.results-bg img { width: 100%; height: 100%; object-fit: cover; }
.results-tint { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(5,35,5,.92), rgba(18,72,18,.88)); }
.results-body { position: relative; z-index: 1; }

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
}
.result-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.15);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.result-card img { width: 100%; height: 380px; object-fit: cover; object-position: top; }
.result-caption {
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(6px);
  padding: 16px 20px;
}
.result-tag {
  display: inline-block;
  background: var(--soft);
  color: var(--forest);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-xl);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.result-caption p { font-size: .88rem; color: rgba(255,255,255,.88); line-height: 1.65; }
.results-disclaimer {
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  max-width: 680px;
  margin: 0 auto;
}

/* ══════════════════════════════════
   REVIEWS
══════════════════════════════════ */
.reviews-section { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--foam);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all .25s;
  box-shadow: var(--shadow-sm);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--soft); }
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; }
.review-img { width: 88px; height: 78px; object-fit: cover; border-radius: var(--r-sm); border: 1.5px solid var(--border); flex-shrink: 0; }
.review-card blockquote { font-family: var(--display); font-style: italic; font-size: 1rem; color: var(--body); line-height: 1.8; margin-bottom: 12px; }
.reviewer { font-size: .8rem; color: var(--mid); font-weight: 600; }

/* ══════════════════════════════════
   BLOG
══════════════════════════════════ */
.blog-section { background: var(--off); position: relative; }
.blog-leaf-deco {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 180px;
  overflow: hidden;
  opacity: .06;
  pointer-events: none;
}
.blog-leaf-deco img { height: 100%; width: 100%; object-fit: cover; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative; z-index: 1;
}
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  transition: all .25s;
  box-shadow: var(--shadow-sm);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--soft); }
.blog-tag {
  display: inline-block;
  background: var(--mist);
  color: var(--deep);
  border: 1px solid var(--border);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 3px 11px;
  border-radius: var(--r-xl);
  margin-bottom: 11px;
}
.blog-card h3 { font-size: 1.05rem; color: var(--forest); margin-bottom: 12px; line-height: 1.35; }
.blog-card > p { font-size: .87rem; color: var(--muted); line-height: 1.82; margin-bottom: 16px; }
.blog-keys {
  background: var(--foam);
  border-left: 3px solid var(--mid);
  padding: 12px 16px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.blog-keys strong {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--forest);
  margin-bottom: 8px;
}
.blog-keys ul li { font-size: .83rem; color: var(--muted); padding: 3px 0; }
.blog-keys ul li::before { content: "→ "; color: var(--mid); font-weight: 600; }

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact-section { position: relative; padding: 96px 0; }
.contact-bg { position: absolute; inset: 0; z-index: 0; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.contact-tint { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(5,35,5,.92), rgba(15,65,15,.88)); }
.contact-body { position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-locations { display: flex; flex-direction: column; gap: 20px; }
.loc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-md);
  padding: 16px 20px;
  transition: background .2s;
}
.loc-item:hover { background: rgba(255,255,255,.12); }
.loc-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.loc-item strong { display: block; color: var(--white); font-size: .92rem; margin-bottom: 4px; }
.loc-item address, .loc-item span, .loc-item a { font-size: .87rem; color: rgba(255,255,255,.75); line-height: 1.65; }
.loc-item a { transition: color .2s; }
.loc-item a:hover { color: #a8e8a8; }

.contact-cta-card {
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-lg);
  padding: 36px;
  text-align: center;
}
.cta-card-logo {
  width: 120px; height: 120px;
  border-radius: 0;
  border: none;
  background: transparent;
  margin: 0 auto 20px;
  object-fit: contain;
}
.contact-cta-card h3 { font-family: var(--display); color: var(--black); font-size: 1.6rem; margin-bottom: 12px; }
.contact-cta-card p { color: rgba(14, 13, 13, 0.78); font-size: .93rem; line-height: 1.75; margin-bottom: 6px; }
.cta-card-store {
  width: 100%; border-radius: var(--r-md);
  border: 2px solid rgba(255,255,255,.15);
  margin-top: 24px;
  max-height: 200px;
  object-fit: cover;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer { background: var(--ink); color: #aaa; }
.footer-inner {
  padding: 60px 0 44px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 44px;
}

.footer-brand img { border-radius: 0; border: none; width: 100px; height: 100px; object-fit: contain; margin-bottom: 14px; background: transparent; }
.footer-brand strong { display: block; font-family: var(--display); color: var(--pale); font-size: 1.25rem; }
.footer-brand span { display: block; font-size: .75rem; color: #888; margin-bottom: 8px; }
.footer-brand p { font-size: .82rem; color: #777; line-height: 1.65; }

.footer-col h5 {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pale);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #1e1e1e;
}
.footer-col a, .footer-col span, .footer-col p {
  display: block;
  font-size: .83rem;
  color: #888;
  margin-bottom: 6px;
  line-height: 1.6;
  transition: color .2s;
}
.footer-col a:hover { color: var(--pale); }

.footer-social { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: var(--r-xl);
  transition: all .2s;
}
.social-link.instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #f77737); color: white; }
.social-link.instagram:hover { opacity: .88; transform: translateY(-1px); }
.social-link.whatsapp { background: var(--wa-green); color: white; }
.social-link.whatsapp:hover { background: #1da851; transform: translateY(-1px); }

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p { font-size: .78rem; color: #555; margin-bottom: 3px; }
.footer-seo-text { font-size: .68rem !important; color: #333 !important; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-body { grid-template-columns: 1fr; padding: 56px 28px 72px; text-align: center; }
  .hero-brand-card { margin: 0 auto 28px; }
  .hero-desc, .hero-pills { margin-left: auto; margin-right: auto; }
  .hero-pills { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-showcase { max-width: 420px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  #header .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--border);
    padding: 16px 20px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  #header .nav-links.open { display: flex; }
  #header .nav-links li { width: 100%; }
  #header .nav-links li a { display: block; padding: 11px 14px; border-radius: var(--r-sm); }
  #header { position: relative; }

  .results-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .vs-cards { grid-template-columns: 1fr; }
  .catalogue-cta { flex-direction: column; text-align: center; padding: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hs-secondary { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
}

@media (max-width: 520px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.6rem; }
  .hero-logo { width: 110px; height: 110px; }
  .wa-fab { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .hs-secondary { grid-template-columns: 1fr 1fr; }
  .hs-mini:last-child { display: none; }
}
