/* ================================================
   AmberNord — main.css
   Warm Nordic Cream · Light Theme
   Fonts: Cormorant Garamond + DM Sans
   ================================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 4; }

/* === DESIGN TOKENS === */
:root {
  /* Palette – warm amber-cream, not white */
  --c-bg:         #F8F2E7;   /* warm Nordic cream */
  --c-bg-alt:     #EDE5D3;   /* slightly deeper for alt sections */
  --c-surface:    #FEF9F2;   /* near-white, for cards */
  --c-nordic:     #0D2137;   /* deep navy – brand dark */
  --c-amber:      #F5A11E;   /* primary accent */
  --c-amber-dk:   #C47D0E;   /* darker amber for hover/text */
  --c-text:       #1A0F03;   /* warm near-black */
  --c-muted:      #6B5030;   /* warm mid-brown */
  --c-border:     #DDD0B5;   /* warm border */
  --c-shadow:     rgba(26,15,3,.07);

  /* Typography */
  --f-head: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --f-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Space scale */
  --sp-2:  0.5rem;
  --sp-4:  1rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-24: 6rem;

  /* Radii */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  24px;
  --r-xl:  36px;

  /* Transitions */
  --ease: 0.25s ease;

  /* Nav */
  --nav-h: 72px;
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* === BASE === */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img    { display: block; max-width: 100%; height: auto; }
a      { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
address { font-style: normal; }

/* === LAYOUT === */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--sp-24) 0;
}

.section:nth-child(even) {
  background: var(--c-bg-alt);
}

/* === GLOBAL TYPOGRAPHY === */
.section-eyebrow {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-amber-dk);
  margin-bottom: 0.875rem;
}

.section-title {
  font-family: var(--f-head);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: var(--sp-8);
  color: var(--c-text);
}

.section-title span  { display: block; }
.section-title em {
  display: block;
  font-style: italic;
  color: var(--c-nordic);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background var(--ease), color var(--ease), box-shadow var(--ease), transform var(--ease), border-color var(--ease);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn--accent {
  background: var(--c-amber);
  color: var(--c-nordic);
}
.btn--accent:hover,
.btn--accent:focus-visible {
  background: var(--c-amber-dk);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196,125,14,.35);
}

.btn--outline {
  background: transparent;
  color: var(--c-text);
  border: 1.5px solid var(--c-border);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: var(--c-amber);
  color: var(--c-amber-dk);
}

.btn--full { width: 100%; }

:focus-visible {
  outline: 2.5px solid var(--c-amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* === PILL BADGE === */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(196,125,14,.35);
  background: rgba(245,161,30,.1);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-amber-dk);
}
.pill__dot { opacity: 0.4; }

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(248,242,231,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--ease);
}
.nav.scrolled { box-shadow: 0 4px 28px var(--c-shadow); }

.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}

/* Logo */
.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}
.nav__logo-mark {
  font-family: var(--f-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-nordic);
  line-height: 1;
}
.nav__logo-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-amber-dk);
}

/* Desktop links */
.nav__menu {
  display: flex;
  flex: 1;
}
.nav__menu ul {
  display: flex;
  gap: 1.75rem;
}
.nav__menu a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-muted);
  transition: color var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--c-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.nav__menu a:hover,
.nav__menu a[aria-current="true"] { color: var(--c-text); }
.nav__menu a:hover::after,
.nav__menu a[aria-current="true"]::after { transform: scaleX(1); }

/* Actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-left: auto;
}

/* Lang switcher */
.lang-switcher {
  display: flex;
  gap: 2px;
  background: var(--c-bg-alt);
  border-radius: var(--r-sm);
  padding: 3px;
}
.lang-btn {
  padding: 0.25rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--c-muted);
  border-radius: 5px;
  transition: all var(--ease);
}
.lang-btn:hover        { color: var(--c-text); }
.lang-btn.active       { background: var(--c-nordic); color: #fff; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px 4px;
  margin-left: 0.5rem;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu ul   { display: flex; flex-direction: column; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-muted);
  border-bottom: 1px solid var(--c-border);
  transition: color var(--ease);
}
.mobile-menu a:hover { color: var(--c-text); }
.mobile-menu__lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + var(--sp-16));
  padding-bottom: var(--sp-24);
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: 15%;
  right: -5%;
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(ellipse at center, rgba(245,161,30,.15) 0%, rgba(245,161,30,.05) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-8);
  width: 100%;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.hero__title {
  font-family: var(--f-head);
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--c-nordic);
}
.hero__title span { display: block; }
.hero__title em {
  display: block;
  font-style: italic;
  color: var(--c-amber-dk);
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 44ch;
  margin-top: 0.25rem;
}

.hero__ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero__trust {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.hero__trust li {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-muted);
}

/* Product image */
.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__ring {
  position: absolute;
  width: 88%;
  height: 88%;
  border-radius: 50%;
  border: 1px solid rgba(196,125,14,.18);
  animation: ring-pulse 4s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.04); opacity: .5; }
}

.hero__media img {
  position: relative;
  z-index: 1;
  max-height: 520px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 64px rgba(196,125,14,.22));
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* ================================================
   MANIFEST / RITUAL
   ================================================ */
.manifest__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.manifest__body p {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 52ch;
  margin-bottom: var(--sp-8);
}

.protocol-block {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  background: var(--c-nordic);
  color: #fff;
  border-radius: var(--r-md);
  padding: 1.75rem 2rem;
}

.protocol-block__ratio {
  font-family: var(--f-head);
  font-size: 3rem;
  font-weight: 600;
  color: var(--c-amber);
  flex-shrink: 0;
  line-height: 1;
}

.protocol-block strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 0.4rem;
}
.protocol-block p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.55;
}

.manifest__visual img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: 0 28px 80px var(--c-shadow);
}

/* ================================================
   BENEFITS / ELIXIER
   ================================================ */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: var(--sp-4);
}

.benefit-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 2rem;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px var(--c-shadow);
  border-color: rgba(196,125,14,.3);
}

.benefit-card__glyph {
  font-family: var(--f-head);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--c-amber);
  margin-bottom: 0.875rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.benefit-card h3 {
  font-family: var(--f-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--c-nordic);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.65;
}

.cert-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: var(--sp-8);
}
.cert {
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--c-amber);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-amber-dk);
  background: rgba(245,161,30,.07);
  white-space: nowrap;
}

/* ================================================
   SOURCING
   ================================================ */
.sourcing__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: var(--sp-4);
  position: relative;
}

/* Connector line between steps */
.sourcing__steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(12.5% + 1.25rem);
  right: calc(12.5% + 1.25rem);
  height: 1px;
  background: linear-gradient(90deg, var(--c-border), var(--c-amber-dk), var(--c-border));
  opacity: .4;
  pointer-events: none;
}

.sourcing__step {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1.75rem 1.5rem;
  transition: box-shadow var(--ease);
}
.sourcing__step:hover { box-shadow: 0 12px 36px var(--c-shadow); }

.sourcing__num {
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 600;
  color: var(--c-amber);
  opacity: 0.55;
  display: block;
  margin-bottom: 0.875rem;
  line-height: 1;
}

.sourcing__step h3 {
  font-family: var(--f-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-nordic);
  margin-bottom: 0.5rem;
}

.sourcing__step p {
  font-size: 0.85rem;
  color: var(--c-muted);
  line-height: 1.6;
}

.sourcing__figure {
  margin-top: var(--sp-8);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px var(--c-shadow);
}
.sourcing__figure img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* ================================================
   PRODUCTS
   ================================================ */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--sp-4);
  align-items: start;
}

.product-card {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: box-shadow var(--ease), transform var(--ease);
}
.product-card:hover {
  box-shadow: 0 24px 60px var(--c-shadow);
  transform: translateY(-3px);
}

.product-card--featured {
  border-color: var(--c-amber);
  border-width: 2px;
  box-shadow: 0 8px 36px rgba(196,125,14,.14);
}

.product-tag {
  display: inline-block;
  padding: 0.28rem 0.8rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--c-bg-alt);
  color: var(--c-muted);
}
.product-tag--hot {
  background: var(--c-amber);
  color: var(--c-nordic);
}

.product-card__name {
  font-family: var(--f-head);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--c-nordic);
  line-height: 1;
}

.product-card__volume {
  font-size: 0.85rem;
  color: var(--c-muted);
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}
.price-main {
  font-family: var(--f-head);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1;
}
.price-currency {
  font-size: 1rem;
  color: var(--c-muted);
  font-weight: 400;
}

.product-card__daily {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-amber-dk);
}
.product-card__daily span:first-child {
  font-size: 1rem;
}

.product-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
  padding-top: 0.875rem;
  border-top: 1px solid var(--c-border);
}
.product-card__features li {
  font-size: 0.875rem;
  color: var(--c-muted);
  padding-left: 1.4rem;
  position: relative;
}
.product-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-amber-dk);
  font-weight: 700;
}

.product-card__note {
  font-size: 0.75rem;
  color: var(--c-muted);
  text-align: center;
  opacity: 0.7;
}

/* Payment */
.payment-row {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--c-border);
}
.payment-row span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-muted);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 0.35rem 0.875rem;
}

/* ================================================
   ABOUT
   ================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: var(--sp-16);
  align-items: center;
}

.about__visual img {
  width: 100%;
  border-radius: var(--r-xl);
  object-fit: cover;
  box-shadow: 0 28px 80px var(--c-shadow);
}

.about__name {
  font-family: var(--f-head);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--c-nordic);
  line-height: 1;
}

.about__role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-amber-dk);
  margin-top: 0.25rem;
  margin-bottom: var(--sp-6);
}

.about__body p {
  font-size: 1.05rem;
  color: var(--c-muted);
  margin-bottom: var(--sp-6);
  line-height: 1.7;
}

.about__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: var(--c-bg-alt);
  border-radius: var(--r-md);
  padding: 1.5rem;
}
.about__facts dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-amber-dk);
  margin-bottom: 0.35rem;
}
.about__facts dd {
  font-size: 0.875rem;
  color: var(--c-text);
  line-height: 1.5;
}

/* ================================================
   CONTACT
   ================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact__info p {
  font-size: 1.05rem;
  color: var(--c-muted);
  margin-bottom: var(--sp-6);
}

.contact__address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact__address a {
  color: var(--c-amber-dk);
  font-weight: 500;
  font-size: 1rem;
  transition: color var(--ease);
}
.contact__address a:hover { color: var(--c-nordic); }
.contact__address span   { font-size: 0.875rem; color: var(--c-muted); }

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  background: var(--c-surface);
  color: var(--c-text);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--c-muted); opacity: .6; }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-amber);
  box-shadow: 0 0 0 3px rgba(245,161,30,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-status {
  font-size: 0.875rem;
  color: var(--c-amber-dk);
  text-align: center;
  min-height: 1.5em;
}

/* ================================================
   LEGAL
   ================================================ */
.legal__tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--c-border);
  margin-top: var(--sp-8);
  padding-bottom: 0;
}

.legal__tab {
  padding: 0.65rem 1.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-muted);
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  border: 2px solid transparent;
  border-bottom: none;
  transition: all var(--ease);
  position: relative;
  bottom: -2px;
}
.legal__tab:hover:not(.active) { color: var(--c-text); background: var(--c-bg-alt); }
.legal__tab.active {
  color: var(--c-nordic);
  background: var(--c-surface);
  border-color: var(--c-border);
  border-bottom-color: var(--c-surface);
}

.legal__body {
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-top: none;
  border-radius: 0 var(--r-md) var(--r-md);
  padding: 2rem;
}

.legal__panel { display: none; }
.legal__panel.active,
.legal__panel:not([hidden]) { display: block; }

.legal__panel h3 {
  font-family: var(--f-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--c-nordic);
  margin-bottom: 1.25rem;
}
.legal__panel p {
  font-size: 0.925rem;
  color: var(--c-muted);
  margin-bottom: 0.875rem;
  line-height: 1.7;
}
.legal__panel strong { color: var(--c-text); }
.legal__panel a {
  color: var(--c-amber-dk);
  font-weight: 500;
}
.legal__panel a:hover { color: var(--c-nordic); }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--c-nordic);
  color: rgba(255,255,255,.8);
  padding: var(--sp-16) 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-12);
  align-items: start;
  padding-bottom: var(--sp-12);
}

.footer__logo {
  font-family: var(--f-head);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--c-amber);
  display: block;
  margin-bottom: 0.5rem;
}
.footer__brand p   { font-size: 0.875rem; opacity: .65; margin-bottom: .2rem; }
.footer__company   { font-size: 0.78rem; opacity: .4 !important; }

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}
.footer__nav a {
  font-size: 0.875rem;
  opacity: .65;
  transition: opacity var(--ease);
}
.footer__nav a:hover { opacity: 1; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  opacity: .45;
}
.footer__bottom-inner div {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.footer__bottom-inner a { opacity: .8; }
.footer__bottom-inner a:hover { opacity: 1; }

/* ================================================
   REVEAL ANIMATIONS
   ================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}

/* ================================================
   RESPONSIVE — Tablet (≤1024px)
   ================================================ */
@media (max-width: 1024px) {
  .sourcing__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .sourcing__steps::before { display: none; }

  .about__facts {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
}

/* ================================================
   RESPONSIVE — Mobile (≤768px)
   ================================================ */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
    --sp-24: 4rem;
    --sp-16: 3rem;
  }

  /* Nav */
  .nav__menu  { display: none; }
  .nav__cta   { display: none; }
  .lang-switcher { display: none; }
  .nav__burger   { display: flex; }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__media {
    order: -1;
    max-width: 260px;
    margin: 0 auto;
  }
  .hero__media img    { max-height: 300px; }
  .hero__sub          { margin: 0 auto; }
  .hero__ctas         { justify-content: center; }
  .hero__trust        { justify-content: center; }
  .pill               { align-self: center; }

  /* Manifest */
  .manifest__grid   { grid-template-columns: 1fr; gap: var(--sp-8); }
  .manifest__visual img { height: 240px; }
  .protocol-block   { flex-direction: column; text-align: center; gap: var(--sp-4); }

  /* Benefits */
  .benefits__grid   { grid-template-columns: 1fr; }

  /* Sourcing */
  .sourcing__steps  { grid-template-columns: 1fr; }
  .sourcing__figure img { height: 220px; }

  /* Products */
  .products__grid   { grid-template-columns: 1fr; }

  /* About */
  .about__grid      { grid-template-columns: 1fr; }
  .about__visual img { max-height: 300px; object-fit: cover; }
  .about__facts     { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact__grid    { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }

  /* Legal */
  .legal__tabs { flex-wrap: wrap; }

  /* Footer */
  .footer__inner    { grid-template-columns: 1fr; }
  .footer__nav ul   { text-align: left; flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: 0.5rem; }
}

/* ================================================
   RESPONSIVE — Small mobile (≤480px)
   ================================================ */
@media (max-width: 480px) {
  .about__facts   { grid-template-columns: 1fr; }
  .cert-row       { gap: 0.5rem; }
  .payment-row    { gap: 0.4rem; }
  .payment-row span { padding: 0.3rem 0.65rem; font-size: 0.72rem; }
}
