/* ─── Design System ─────────────────────────────────── */
:root {
  --purple:     #4E1169;
  --purple-dark:#1A0830;
  --purple-mid: #6B1FA0;
  --purple-pale:#F3E8FF;
  --gold:       #B8912A;
  --gold-light: #D4A93E;
  --gold-pale:  #FBF5E6;
  --green:      #2D6A4F;
  --green-pale: #EAF4EF;
  --gray-900:   #111827;
  --gray-700:   #374151;
  --gray-500:   #6B7280;
  --gray-300:   #D1D5DB;
  --gray-100:   #F3F4F6;
  --white:      #FFFFFF;
  --cream:      #FDFAF4;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.22s ease;
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--gray-900); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography ─────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.18; color: var(--gray-900); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
p  { color: var(--gray-500); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow::after {
  content: ''; display: block; width: 24px; height: 1.5px; background: var(--gold);
}
.lead { font-size: 1.05rem; color: var(--gray-500); line-height: 1.75; max-width: 580px; }

/* ─── Layout ─────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 6rem 0; }
.section--gray   { background: var(--gray-100); }
.section--cream  { background: var(--cream); }
.section--dark   { background: var(--gray-900); }
.section--purple { background: var(--purple); }

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.82rem 1.85rem; border-radius: 4px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.02em; transition: all var(--transition); white-space: nowrap;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gray-900); color: var(--white); }
.btn-primary:hover { background: var(--purple); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebe5c; }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-dark { background: transparent; color: var(--gray-900); border-color: var(--gray-300); }
.btn-outline-dark:hover { border-color: var(--gray-900); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.82rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ─── Navbar ─────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 0; transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  padding: 0.8rem 0; border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.navbar.scrolled .navbar__brand,
.navbar.scrolled .navbar__nav a { color: var(--gray-900); }
.navbar.scrolled .navbar__nav a:hover { color: var(--purple); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; }
.navbar__logo  { display: flex; align-items: center; gap: 0.75rem; }
.navbar__logo img { width: 38px; height: 38px; border-radius: 50%; }
.navbar__brand { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--white); transition: color var(--transition); }
.navbar__nav   { display: flex; align-items: center; gap: 2.25rem; }
.navbar__nav a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.88); transition: color var(--transition); }
.navbar__nav a:hover { color: var(--gold-light); }
.navbar__cta   { display: flex; align-items: center; gap: 0.75rem; }
.navbar__burger { display: none; flex-direction: column; gap: 5px; }
.navbar__burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.navbar.scrolled .navbar__burger span { background: var(--gray-900); }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(17,24,39,0.97); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.75rem; color: var(--white); transition: color var(--transition); }
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu__close { position: absolute; top: 1.5rem; right: 1.75rem; color: var(--white); font-size: 1.75rem; }

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  padding: 8rem 0 5rem; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--gray-900);
}
.hero__bg-img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.35;
}
.hero__bg-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0D001A 0%, #2D0B4E 45%, #1A0A30 100%);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.hero__eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.25rem; }
.hero__title { color: var(--white); margin-bottom: 1.5rem; font-size: clamp(2.6rem, 5vw, 4rem); }
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__sub { color: rgba(255,255,255,0.78); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2.25rem; max-width: 480px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.12); border-radius: var(--radius-md); overflow: hidden; }
.hero__stat { padding: 1.25rem 1rem; background: rgba(0,0,0,0.35); text-align: center; }
.hero__stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.hero__stat-lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); margin-top: 0.4rem; }

/* Hero visual / dog photo */
.hero__visual { display: flex; justify-content: center; align-items: center; }
.hero__photo-wrap {
  width: 380px; height: 460px; border-radius: var(--radius-xl);
  overflow: hidden; position: relative;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: var(--shadow-lg);
}
.hero__photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, rgba(78,17,105,0.6), rgba(26,8,48,0.8));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem;
}
.hero__photo-placeholder span { font-size: 5rem; }
.hero__photo-placeholder p { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-align: center; padding: 0 1.5rem; }

/* ─── Divider ────────────────────────────────────────── */
.brand-bar {
  background: var(--gray-900); padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.brand-bar__inner { display: flex; align-items: center; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.brand-bar__item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.65); letter-spacing: 0.05em; text-transform: uppercase; }
.brand-bar__item span:first-child { font-size: 1.1rem; }

/* ─── Story ──────────────────────────────────────────── */
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.story__photo-wrap { position: sticky; top: 6rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.story__photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.story__photo-placeholder { width: 100%; height: 100%; min-height: 500px; background: var(--gray-100); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
.story__photo-placeholder span { font-size: 4rem; }
.story__photo-placeholder p { font-size: 0.78rem; color: var(--gray-500); text-align: center; }
.story__eyebrow { margin-bottom: 1rem; }
.story__title { margin-bottom: 0.75rem; }
.story__title em { color: var(--purple); font-style: italic; }
.story__intro { font-size: 1rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 2.5rem; }
.story__timeline { display: flex; flex-direction: column; gap: 0; }
.story__event { display: flex; gap: 1.5rem; padding-bottom: 2rem; position: relative; }
.story__event:not(:last-child)::before { content: ''; position: absolute; left: 23px; top: 52px; bottom: 0; width: 1px; background: var(--gray-300); }
.story__dot { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--gold); background: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.story__event-body h4 { font-size: 0.95rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.3rem; padding-top: 0.6rem; }
.story__event-body p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; }
.story__quote { margin-top: 2.5rem; padding: 1.75rem; border-left: 3px solid var(--gold); background: var(--gold-pale); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.story__quote p { font-family: var(--font-display); font-size: 1.05rem; color: var(--gray-700); font-style: italic; line-height: 1.7; }
.story__quote cite { display: block; margin-top: 0.75rem; font-size: 0.8rem; color: var(--gold); font-style: normal; font-weight: 600; }

/* ─── Products ───────────────────────────────────────── */
.products__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 3.5rem; }
.products__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.product-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* Product photo */
.product-card__photo { aspect-ratio: 1/1; overflow: hidden; background: var(--gray-100); position: relative; }
.product-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card__photo img { transform: scale(1.04); }
.product-card__photo-placeholder { width: 100%; height: 100%; min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; }
.product-card__photo-placeholder span { font-size: 3.5rem; }
.product-card__photo-placeholder p { font-size: 0.72rem; color: var(--gray-500); text-align: center; padding: 0 1rem; }
.product-card__badge-wrap { position: absolute; top: 1rem; left: 1rem; }
.product-card__badge { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.3rem 0.7rem; border-radius: 3px; }

.product-card__body { padding: 1.5rem 1.5rem 1rem; flex: 1; }
.product-card__name { font-size: 1.25rem; color: var(--gray-900); margin-bottom: 0.2rem; }
.product-card__sub { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 1rem; font-weight: 500; }
.product-card__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1rem; }
.tag { font-size: 0.68rem; padding: 0.22rem 0.6rem; background: var(--gray-100); color: var(--gray-700); border-radius: 3px; font-weight: 500; }
.product-card__desc { font-size: 0.82rem; color: var(--gray-500); line-height: 1.6; }
.product-card__prices { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; padding: 1rem 1.5rem; border-top: 1px solid var(--gray-100); }
.price-box { padding: 0.65rem; background: var(--gray-100); border-radius: var(--radius-sm); text-align: center; }
.price-box__size { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); font-weight: 600; }
.price-box__val { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--purple); }
.product-card__footer { padding: 1rem 1.5rem 1.5rem; }
.product-card__footer .btn { width: 100%; }

/* Delivery banner */
.delivery-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--gray-300); border: 1px solid var(--gray-300); border-radius: var(--radius-md); overflow: hidden; margin-top: 2.5rem; }
.delivery-item { padding: 1.25rem 1.5rem; background: var(--white); display: flex; align-items: center; gap: 0.875rem; }
.delivery-item__icon { font-size: 1.4rem; flex-shrink: 0; }
.delivery-item__text { font-size: 0.82rem; color: var(--gray-500); line-height: 1.45; }
.delivery-item__text strong { color: var(--gray-900); display: block; }

/* ─── Dogs eating (lifestyle) ────────────────────────── */
.lifestyle { position: relative; overflow: hidden; min-height: 440px; display: flex; align-items: center; }
.lifestyle__bg { position: absolute; inset: 0; }
.lifestyle__bg img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle__bg-placeholder { width: 100%; height: 100%; background: var(--purple); }
.lifestyle__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.lifestyle__content { position: relative; z-index: 1; text-align: center; color: var(--white); padding: 5rem 0; }
.lifestyle__content h2 { color: var(--white); margin-bottom: 1rem; }
.lifestyle__content p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }

/* ─── Ingredients ────────────────────────────────────── */
.ingredients__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ingredients__photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.ingredients__photo img { width: 100%; height: 100%; object-fit: cover; }
.ingredients__photo-placeholder { width: 100%; height: 100%; min-height: 320px; background: var(--gray-100); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
.ingredients__photo-placeholder span { font-size: 3.5rem; }
.ingredients__photo-placeholder p { font-size: 0.78rem; color: var(--gray-500); text-align: center; }
.ingredients__list { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.ingredient-row { display: flex; align-items: center; gap: 1rem; padding: 0.875rem 1rem; background: var(--gray-100); border-radius: var(--radius-sm); transition: background var(--transition); }
.ingredient-row:hover { background: var(--gold-pale); }
.ingredient-row__icon { font-size: 1.5rem; flex-shrink: 0; width: 2rem; text-align: center; }
.ingredient-row__info { flex: 1; }
.ingredient-row__name { font-size: 0.88rem; font-weight: 700; color: var(--gray-900); }
.ingredient-row__desc { font-size: 0.78rem; color: var(--gray-500); }
.ingredient-row__pct { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--gold); }

/* Compare table */
.compare-wrap { margin-top: 4rem; }
.compare-wrap h3 { text-align: center; margin-bottom: 1.5rem; font-size: 1.4rem; }
.compare-table { width: 100%; border-collapse: collapse; border: 1px solid var(--gray-300); border-radius: var(--radius-md); overflow: hidden; }
.compare-table th { padding: 1rem 1.25rem; font-size: 0.8rem; font-weight: 700; text-align: center; }
.compare-table th:first-child { text-align: left; background: var(--gray-100); color: var(--gray-700); }
.compare-table th:nth-child(2) { background: var(--purple); color: var(--white); }
.compare-table th:nth-child(3) { background: var(--gray-300); color: var(--gray-700); }
.compare-table td { padding: 0.875rem 1.25rem; font-size: 0.82rem; border-top: 1px solid var(--gray-100); }
.compare-table td:first-child { color: var(--gray-700); font-weight: 500; }
.compare-table td:nth-child(2) { text-align: center; font-weight: 600; color: var(--green); }
.compare-table td:nth-child(3) { text-align: center; color: #DC2626; }
.compare-table tr:hover td { background: var(--gray-100); }

/* ─── Process ────────────────────────────────────────── */
.process__steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 4rem; }
.process-step { text-align: center; }
.process-step__num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 1.25rem;
  background: var(--gray-900); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
}
.process-step__title { font-size: 0.95rem; color: var(--white); margin-bottom: 0.5rem; }
.process-step__desc { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ─── Testimonials ───────────────────────────────────── */
.testimonials__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.testimonial-card { padding: 2rem; border: 1px solid var(--gray-300); border-radius: var(--radius-lg); background: var(--white); transition: box-shadow var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card__stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 1rem; }
.testimonial-card__text { font-size: 0.92rem; color: var(--gray-700); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial-card__avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; background: var(--gray-100); flex-shrink: 0; }
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__avatar-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.testimonial-card__name { font-weight: 700; font-size: 0.875rem; color: var(--gray-900); }
.testimonial-card__dog { font-size: 0.78rem; color: var(--gray-500); }

/* ─── Newsletter ─────────────────────────────────────── */
.newsletter-section { padding: 6rem 0; }
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.newsletter__title { color: var(--white); margin-bottom: 1rem; }
.newsletter__sub { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.newsletter__form { display: flex; gap: 0; max-width: 440px; }
.newsletter__input {
  flex: 1; padding: 0.875rem 1.25rem;
  border: none; font-family: var(--font-body); font-size: 0.9rem;
  background: rgba(255,255,255,0.12); color: var(--white);
  border-radius: 4px 0 0 4px; outline: none;
  border: 1px solid rgba(255,255,255,0.2); border-right: none;
  transition: border-color var(--transition);
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter__input:focus { border-color: var(--gold-light); }
.newsletter__form .btn { border-radius: 0 4px 4px 0; }
.newsletter__perks { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.75rem; }
.newsletter__perk { display: flex; align-items: center; gap: 0.625rem; font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.newsletter__success { display: none; margin-top: 1rem; font-size: 0.875rem; color: #86EFAC; }
.newsletter__success.show { display: block; }
.newsletter__visual { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.newsletter__visual img { width: 100%; height: 100%; object-fit: cover; }
.newsletter__visual-placeholder { width: 100%; height: 100%; min-height: 280px; background: rgba(255,255,255,0.06); border: 1px dashed rgba(255,255,255,0.2); border-radius: var(--radius-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
.newsletter__visual-placeholder span { font-size: 3.5rem; }
.newsletter__visual-placeholder p { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-align: center; }

/* ─── Footer ─────────────────────────────────────────── */
.footer { background: #0A0A0F; padding: 4.5rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 2rem; }
.footer__logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer__logo img { width: 42px; height: 42px; border-radius: 50%; }
.footer__logo-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); font-weight: 700; }
.footer__desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 270px; margin-bottom: 1.75rem; }
.footer__social { display: flex; gap: 0.625rem; }
.footer__social-link {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); transition: all var(--transition);
}
.footer__social-link:hover { background: var(--purple); border-color: var(--purple); color: var(--white); }
.footer__col h4 { font-family: var(--font-display); font-size: 0.9rem; color: var(--white); margin-bottom: 1.25rem; font-weight: 700; }
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { font-size: 0.83rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer__links a:hover { color: var(--gold-light); }
.footer__contact { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.footer__contact-row { display: flex; align-items: center; gap: 0.6rem; font-size: 0.83rem; color: rgba(255,255,255,0.45); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; }
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ─── WhatsApp FAB ───────────────────────────────────── */
.wa-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 50;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.wa-fab__ping { position: absolute; inset: -4px; border-radius: 50%; background: rgba(37,211,102,0.35); animation: ping 2s ease infinite; }

/* ─── Animations ─────────────────────────────────────── */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes ping  { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.8);opacity:0} }
.fade-up { opacity:0; transform:translateY(20px); transition:opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity:1; transform:none; }
.fade-up:nth-child(2){transition-delay:.1s}
.fade-up:nth-child(3){transition-delay:.2s}
.fade-up:nth-child(4){transition-delay:.3s}

/* ─── Responsive ─────────────────────────────────────── */
@media(max-width:1024px){
  .products__grid{grid-template-columns:repeat(2,1fr)}
  .ingredients__layout{grid-template-columns:1fr}
  .process__steps{grid-template-columns:repeat(2,1fr)}
  .newsletter-grid{grid-template-columns:1fr}
  .newsletter__visual{display:none}
}
@media(max-width:768px){
  .hero__inner{grid-template-columns:1fr; text-align:center}
  .hero__sub{margin:0 auto 2rem}
  .hero__actions{justify-content:center}
  .hero__visual{display:none}
  .story__grid{grid-template-columns:1fr}
  .story__photo-wrap{position:static;aspect-ratio:3/2}
  .products__grid{grid-template-columns:1fr}
  .testimonials__grid{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr;gap:2rem}
  .footer__bottom{flex-direction:column;gap:.5rem;text-align:center}
  .delivery-strip{grid-template-columns:1fr}
  .navbar__nav,.navbar__cta{display:none}
  .navbar__burger{display:flex}
  .products__intro{grid-template-columns:1fr}
}
@media(max-width:480px){
  .brand-bar__inner{gap:1.5rem}
  .process__steps{grid-template-columns:1fr}
  .hero__stats{grid-template-columns:1fr;max-width:220px;margin:0 auto}
}
