:root {
  --ink: #171717;
  --ink-soft: #4d4d4d;
  --muted: #747474;
  --paper: #fffdfb;
  --cream: #fff6ef;
  --cream-2: #f9e9dd;
  --orange: #ef5b2a;
  --orange-dark: #c94319;
  --orange-light: #ff8058;
  --peach: #ffd8c8;
  --ocean: #1aa8bf;
  --ocean-dark: #16778b;
  --green: #6a8a3a;
  --line: rgba(23, 23, 23, .10);
  --shadow-sm: 0 10px 30px rgba(32, 24, 18, .08);
  --shadow-md: 0 22px 65px rgba(32, 24, 18, .14);
  --shadow-lg: 0 36px 100px rgba(28, 18, 12, .20);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --container: min(1180px, calc(100% - 40px));
  --header-h: 78px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--peach); color: var(--ink); }

.container { width: var(--container); margin-inline: auto; }
.narrow { width: min(790px, calc(100% - 40px)); margin-inline: auto; }
.section { position: relative; padding: 94px 0; overflow: clip; }
.section-sm { padding: 64px 0; }
.section-cream { background: linear-gradient(180deg, #fff9f5 0%, #fff4eb 100%); }
.section-dark { background: #171717; color: #fff; }
.section-ocean { background: linear-gradient(145deg, #effcff 0%, #e0f8fb 100%); }
.section-wave::before {
  content: "";
  position: absolute;
  inset: -180px -10% auto;
  height: 230px;
  border-radius: 50%;
  background: var(--paper);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-size: .77rem;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}
.kicker {
  color: var(--orange);
  font-weight: 800;
  letter-spacing: .02em;
}
.display, h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(2.7rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.07rem; }
p { margin: 0; color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.26rem); line-height: 1.65; }
.text-white, .text-white p { color: rgba(255,255,255,.82); }
.text-center { text-align: center; }
.max-copy { max-width: 680px; }
.max-copy.center { margin-inline: auto; }
.orange { color: var(--orange); }
.muted { color: var(--muted); }
.small { font-size: .88rem; }
.tiny { font-size: .77rem; }

.announce {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 18px;
  color: #fff;
  background: var(--ink);
  text-align: center;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .025em;
}
.announce a { color: #ffd1c0; text-decoration: underline; text-underline-offset: 3px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(23,23,23,.07);
  background: rgba(255,253,251,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: 0 10px 32px rgba(24,17,12,.08); background: rgba(255,253,251,.96); }
.nav-shell {
  width: var(--container);
  min-height: var(--header-h);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  flex: 0 0 auto;
  font-size: 1.95rem;
  font-style: italic;
  font-weight: 1000;
  letter-spacing: -.075em;
  line-height: 1;
}
.logo .a { color: var(--orange); }
.logo .n { color: var(--ink); }
.logo small {
  margin-left: 10px;
  color: var(--muted);
  font-size: .62rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links > a {
  position: relative;
  font-size: .89rem;
  font-weight: 690;
  white-space: nowrap;
}
.nav-links > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--orange);
  transition: right .25s ease;
}
.nav-links > a:hover::after, .nav-links > a.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.country-menu { position: relative; }
.country-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: .79rem;
  font-weight: 760;
}
.country-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 210px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-7px);
  transition: .22s ease;
}
.country-menu.open .country-popover { opacity: 1; visibility: visible; transform: translateY(0); }
.country-popover a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  border-radius: 11px;
  font-size: .87rem;
  font-weight: 650;
}
.country-popover a:hover { background: var(--cream); }
.menu-toggle {
  width: 45px;
  height: 45px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  width: 19px;
  height: 2px;
  border-radius: 10px;
  background: var(--ink);
  transition: .25s ease;
}
.menu-toggle { gap: 4px; }
body.menu-open .menu-toggle span { opacity: 0; }
body.menu-open .menu-toggle::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-panel { display: none; }

.btn {
  position: relative;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  overflow: hidden;
  font-size: .91rem;
  font-weight: 850;
  letter-spacing: .01em;
  transition: transform .22s var(--ease), box-shadow .22s ease, background .22s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 28%, rgba(255,255,255,.32) 48%, transparent 68%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}
.btn:hover::before { transform: translateX(120%); }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange) 0%, #ff7548 100%);
  box-shadow: 0 14px 32px rgba(239,91,42,.28);
}
.btn-primary:hover { box-shadow: 0 18px 38px rgba(239,91,42,.38); }
.btn-dark { color: #fff; background: var(--ink); box-shadow: var(--shadow-sm); }
.btn-light { color: var(--ink); background: #fff; border: 1px solid var(--line); }
.btn-sm { min-height: 43px; padding-inline: 18px; border-radius: 12px; font-size: .82rem; }
.btn-arrow::after { content: "→"; font-size: 1.2em; transition: transform .22s ease; }
.btn-arrow:hover::after { transform: translateX(4px); }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; }

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--cream);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  z-index: -1;
  background: linear-gradient(to top, rgba(255,253,251,.95), transparent);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url('/assets/img/hero-beach.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
  will-change: transform;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 52%, rgba(255,255,255,.0) 0 20%, rgba(255,255,255,.12) 42%, transparent 60%),
    linear-gradient(90deg, rgba(255,250,246,.98) 0%, rgba(255,250,246,.90) 35%, rgba(255,250,246,.10) 70%, rgba(255,250,246,0) 100%);
}
.hero-inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(380px, 1.02fr);
  align-items: center;
  gap: 28px;
  padding: 76px 0 120px;
}
.hero-copy { position: relative; z-index: 5; max-width: 650px; }
.hero-logo-line {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 5px;
  font-size: clamp(3.2rem, 7.5vw, 6.8rem);
  font-style: italic;
  font-weight: 1000;
  letter-spacing: -.085em;
  line-height: .86;
}
.hero-logo-line .a { color: var(--orange); }
.hero-title { max-width: 650px; font-size: clamp(2.25rem, 4.5vw, 4.4rem); }
.hero-title strong { color: var(--orange); }
.hero-copy .lead { max-width: 590px; margin-top: 23px; }
.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 18px;
  margin: 28px 0;
}
.hero-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #262626;
  font-size: .94rem;
  font-weight: 680;
}
.hero-bullet i {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-style: normal;
  font-size: .72rem;
  box-shadow: 0 6px 14px rgba(239,91,42,.24);
}
.hero-note { margin-top: 16px; color: #5c5c5c; font-size: .78rem; }
.hero-visual { position: relative; min-height: 580px; align-self: end; }
.hero-product {
  position: absolute;
  width: min(490px, 46vw);
  right: 2%;
  bottom: -62px;
  z-index: 4;
  filter: drop-shadow(0 35px 32px rgba(42,24,16,.29));
  animation: heroFloat 5s ease-in-out infinite;
}
.hero-stamp {
  position: absolute;
  right: 0;
  top: 70px;
  z-index: 5;
  width: 150px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 2px solid rgba(255,255,255,.88);
  border-radius: 50%;
  color: #fff;
  background: rgba(23,23,23,.78);
  box-shadow: 0 16px 40px rgba(0,0,0,.24);
  backdrop-filter: blur(8px);
  text-align: center;
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  transform: rotate(7deg);
}
.hero-chip {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  font-size: .8rem;
  font-weight: 800;
}
.hero-chip.one { left: 1%; bottom: 102px; }
.hero-chip.two { right: -2%; bottom: 145px; }
.hero-chip span { color: var(--orange); font-size: 1.15rem; }
@keyframes heroFloat { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-12px) rotate(.5deg)} }

.trust-strip {
  position: relative;
  z-index: 8;
  width: min(1120px, calc(100% - 40px));
  margin: -64px auto 0;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}
.trust-item {
  min-height: 98px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--orange);
  background: var(--cream);
  font-size: 1.25rem;
}
.trust-item strong { display: block; font-size: .88rem; line-height: 1.2; }
.trust-item small { display: block; margin-top: 4px; color: var(--muted); font-size: .74rem; line-height: 1.35; }

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 44px;
}
.section-heading.center { display: block; max-width: 780px; margin: 0 auto 48px; text-align: center; }
.section-heading p { max-width: 520px; }

.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.card-grid.four { grid-template-columns: repeat(4,1fr); }
.card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 40px rgba(28,19,14,.045);
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s ease, border-color .28s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(239,91,42,.28); box-shadow: var(--shadow-md); }
.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 17px;
  color: var(--orange);
  background: var(--cream);
  font-size: 1.45rem;
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: .94rem; }
.card .link { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; color: var(--orange-dark); font-weight: 800; font-size: .86rem; }
.card .link::after { content: "→"; }
.card-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--orange-dark);
  background: var(--cream);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 70px;
}
.product-stage {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.95), rgba(255,255,255,.58) 36%, transparent 65%),
    linear-gradient(145deg, #ffe9dc, #fff8f2);
  overflow: hidden;
}
.product-stage::before, .product-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(239,91,42,.14);
}
.product-stage::before { width: 440px; height: 440px; }
.product-stage::after { width: 560px; height: 560px; }
.product-stage img { position: relative; z-index: 2; width: 84%; filter: drop-shadow(0 30px 28px rgba(36,20,14,.24)); }
.product-badge {
  position: absolute;
  z-index: 3;
  left: 28px;
  bottom: 28px;
  max-width: 220px;
  padding: 14px 17px;
  border-radius: 15px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow-sm);
  font-size: .82rem;
  font-weight: 780;
}
.feature-list { display: grid; gap: 16px; margin: 28px 0 34px; }
.feature-row { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.feature-row .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--orange);
  background: var(--cream);
  font-weight: 900;
}
.feature-row strong { display: block; margin-bottom: 3px; }
.feature-row p { font-size: .9rem; }

.ingredient-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.ingredient-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.ingredient-orb {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--cream), #fff);
  box-shadow: inset 0 0 0 1px rgba(239,91,42,.14);
  font-size: 2rem;
}
.ingredient-card h3 { margin-bottom: 10px; }
.ingredient-card p { font-size: .9rem; }
.ingredient-card .micro { margin-top: auto; padding-top: 20px; color: var(--muted); font-size: .75rem; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative;
  min-height: 280px;
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 34px;
  color: var(--orange);
  font-size: 3.3rem;
  font-weight: 950;
  letter-spacing: -.08em;
  line-height: 1;
}
.step::after {
  content: "";
  position: absolute;
  top: 58px;
  left: 92px;
  right: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.step h3 { margin-bottom: 12px; }
.step p { font-size: .94rem; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}
.stat { padding: 32px 22px; background: #fff; text-align: center; }
.stat strong { display: block; color: var(--orange); font-size: clamp(2rem,4vw,3.2rem); line-height: 1; letter-spacing: -.06em; }
.stat span { display: block; margin-top: 10px; color: var(--ink-soft); font-size: .84rem; font-weight: 700; }

.quote-panel {
  position: relative;
  padding: 55px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.quote-panel::after {
  content: "ANACA3";
  position: absolute;
  right: -30px;
  bottom: -45px;
  color: rgba(255,255,255,.045);
  font-size: 8rem;
  font-style: italic;
  font-weight: 1000;
  letter-spacing: -.1em;
}
.quote-panel p { color: rgba(255,255,255,.78); }
.quote-panel .button-row { margin-top: 28px; }

.geo-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.geo-card {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.geo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.geo-card .flag { font-size: 2.1rem; }
.geo-card h3 { margin-top: 18px; }
.geo-card p { margin-top: 8px; font-size: .85rem; }
.geo-card .link { margin-top: 20px; color: var(--orange); font-size: .82rem; font-weight: 850; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 21px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font-weight: 790;
}
.faq-question .plus {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--orange);
  background: var(--cream);
  transition: transform .25s ease;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s var(--ease); }
.faq-answer > div { overflow: hidden; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer p { padding: 0 21px 21px; font-size: .94rem; }

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--orange) 0%, #ff7e54 55%, #f99b61 100%);
  color: #fff;
  box-shadow: 0 35px 80px rgba(239,91,42,.25);
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -130px;
  top: -210px;
  border: 70px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.cta-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 35px; padding: 54px 58px; }
.cta-inner h2 { font-size: clamp(2rem,4vw,3.3rem); }
.cta-inner p { max-width: 650px; margin-top: 13px; color: rgba(255,255,255,.82); }
.cta-band .btn-light { min-width: 220px; }

.page-hero {
  position: relative;
  padding: 92px 0 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(26,168,191,.16), transparent 34%),
    radial-gradient(circle at 10% 80%, rgba(239,91,42,.13), transparent 34%),
    linear-gradient(145deg, #fff9f5, #fff);
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: -260px;
  border: 70px solid rgba(239,91,42,.06);
  border-radius: 50%;
}
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 26px; color: var(--muted); font-size: .78rem; font-weight: 650; }
.breadcrumbs span::before { content: "/"; margin-right: 8px; color: #b7b7b7; }
.page-hero-grid { display: grid; grid-template-columns: 1fr .72fr; align-items: center; gap: 60px; }
.page-hero h1 { max-width: 850px; font-size: clamp(2.7rem,6vw,5.2rem); }
.page-hero .lead { max-width: 720px; margin-top: 24px; }
.page-hero .button-row { margin-top: 30px; }
.page-hero-product { max-height: 430px; margin-inline: auto; filter: drop-shadow(0 28px 26px rgba(38,22,15,.18)); }

.content-grid { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 54px; align-items: start; }
.prose { max-width: 820px; }
.prose h2 { margin: 50px 0 18px; font-size: clamp(1.8rem,3.5vw,2.8rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 34px 0 12px; font-size: 1.45rem; }
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol { margin: 0 0 24px; padding-left: 1.25rem; color: var(--ink-soft); }
.prose li { margin: 8px 0; }
.prose a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 3px; }
.sidebar { position: sticky; top: 130px; display: grid; gap: 18px; }
.side-card { padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.side-card h3 { margin-bottom: 12px; font-size: 1.18rem; }
.side-card p { font-size: .87rem; }
.side-card .btn { width: 100%; margin-top: 18px; }
.side-links { display: grid; gap: 9px; }
.side-links a { padding: 10px 12px; border-radius: 10px; background: var(--cream); font-size: .82rem; font-weight: 700; }
.side-links a:hover { color: var(--orange-dark); }

.notice {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 20px;
  border: 1px solid rgba(239,91,42,.22);
  border-radius: 18px;
  background: var(--cream);
}
.notice .icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: #fff; color: var(--orange); font-weight: 900; }
.notice strong { display: block; margin-bottom: 4px; }
.notice p { font-size: .87rem; }
.notice.info { border-color: rgba(26,168,191,.22); background: #effbfc; }
.notice.info .icon { color: var(--ocean-dark); }

.table-wrap { width: 100%; overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { padding: 15px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: .88rem; }
th { color: var(--ink); background: var(--cream); font-size: .76rem; letter-spacing: .05em; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }

.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.article-card { display: flex; flex-direction: column; min-height: 355px; padding: 28px; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow-sm); }
.article-card .category { color: var(--orange); font-size: .72rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.article-card h3 { margin: 22px 0 14px; }
.article-card p { font-size: .9rem; }
.article-card .meta { margin-top: auto; padding-top: 22px; display: flex; justify-content: space-between; color: var(--muted); font-size: .75rem; }
.article-card .link { margin-top: 18px; color: var(--orange-dark); font-size: .84rem; font-weight: 850; }

.review-principles { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.principle { padding: 28px; border-radius: 24px; background: var(--cream); }
.principle .num { color: var(--orange); font-size: 2.6rem; font-weight: 950; letter-spacing: -.06em; }
.principle h3 { margin: 12px 0; }
.principle p { font-size: .9rem; }

.country-hero { padding-bottom: 20px; }
.country-panel { display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: stretch; }
.country-main { padding: 42px; border-radius: 30px; background: linear-gradient(145deg,#fff8f3,#fff); border: 1px solid var(--line); }
.country-main .flag { font-size: 3rem; }
.country-main h2 { margin-top: 22px; }
.country-main p { margin-top: 18px; }
.country-side { padding: 36px; border-radius: 30px; background: var(--ink); color: #fff; }
.country-side p { color: rgba(255,255,255,.72); }
.country-side .btn { width: 100%; margin-top: 26px; }

.offer-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 20% 20%, rgba(26,168,191,.15), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(239,91,42,.16), transparent 35%),
    var(--cream);
}
.offer-card {
  width: min(680px,100%);
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.offer-card .logo { justify-content: center; }
.offer-product { width: 240px; margin: 12px auto 0; filter: drop-shadow(0 20px 20px rgba(38,22,15,.16)); }
.loader {
  width: 54px;
  height: 54px;
  margin: 22px auto;
  border: 5px solid var(--cream-2);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.offer-card h1 { font-size: clamp(2rem,7vw,3.5rem); }
.offer-card p { margin-top: 15px; }
.offer-card .btn { margin-top: 24px; }
.offer-security { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 18px; margin-top: 24px; color: var(--muted); font-size: .75rem; }

.site-footer { padding: 70px 0 28px; color: #fff; background: #131313; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3,.8fr); gap: 55px; }
.site-footer .logo .n { color: #fff; }
.footer-brand p { max-width: 350px; margin-top: 20px; color: rgba(255,255,255,.58); font-size: .87rem; }
.footer-country { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.footer-country a { padding: 7px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: rgba(255,255,255,.76); font-size: .72rem; }
.footer-col h3 { margin-bottom: 18px; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-col a { display: block; margin: 9px 0; color: rgba(255,255,255,.58); font-size: .84rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.10); display: flex; justify-content: space-between; gap: 25px; color: rgba(255,255,255,.43); font-size: .72rem; }
.footer-disclaimer { max-width: 760px; }

.cookie-banner {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2000;
  max-width: 660px;
  display: none;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: .78rem; }
.cookie-banner .btn { flex: 0 0 auto; }

.mobile-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  color: #fff;
  background: rgba(23,23,23,.94);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
}
.mobile-cta strong { display: block; font-size: .82rem; line-height: 1.1; }
.mobile-cta small { color: rgba(255,255,255,.62); font-size: .67rem; }
.mobile-cta .btn { min-height: 44px; padding-inline: 16px; font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .09s; }
.reveal-delay-2 { transition-delay: .18s; }
.reveal-delay-3 { transition-delay: .27s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .nav-links { gap: 17px; }
  .nav-links > a { font-size: .82rem; }
  .nav-actions .btn { display: none; }
  .hero-inner { grid-template-columns: 1.1fr .9fr; }
  .hero-product { width: min(440px,48vw); right: -4%; }
  .hero-stamp { right: -2%; }
  .card-grid.four, .ingredient-grid, .geo-grid { grid-template-columns: repeat(2,1fr); }
  .product-split { gap: 42px; }
  .footer-grid { grid-template-columns: 1.2fr repeat(2,.8fr); }
  .footer-col:last-child { grid-column: 2 / 4; display: grid; grid-template-columns: repeat(2,1fr); gap: 0 20px; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 30px, 720px); --header-h: 68px; }
  .section { padding: 72px 0; }
  .nav-links, .country-menu { display: none; }
  .menu-toggle { display: grid; }
  .mobile-panel {
    position: fixed;
    inset: calc(34px + var(--header-h)) 0 0;
    z-index: 999;
    display: block;
    padding: 24px 20px 110px;
    background: rgba(255,253,251,.99);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .25s ease;
  }
  body.menu-open .mobile-panel { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-panel nav { display: grid; gap: 5px; }
  .mobile-panel nav a { padding: 14px 12px; border-bottom: 1px solid var(--line); font-size: 1rem; font-weight: 780; }
  .mobile-countries { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; margin: 25px 0; }
  .mobile-countries a { padding: 12px; border-radius: 12px; background: var(--cream); font-size: .82rem; font-weight: 700; }
  .mobile-panel .btn { width: 100%; }
  .hero { min-height: 920px; align-items: start; }
  .hero-bg { background-image: url('/assets/img/hero-beach-mobile.webp'); background-position: center top; }
  .hero::before { background: linear-gradient(180deg, rgba(255,250,246,.99) 0%, rgba(255,250,246,.90) 39%, rgba(255,250,246,.06) 66%, rgba(255,255,255,.90) 100%); }
  .hero-inner { display: block; padding: 58px 0 0; }
  .hero-copy { max-width: 620px; }
  .hero-logo-line { font-size: clamp(3.1rem,14vw,5.3rem); }
  .hero-title { max-width: 580px; font-size: clamp(2.2rem,8vw,3.5rem); }
  .hero-copy .lead { max-width: 540px; }
  .hero-visual { min-height: 395px; }
  .hero-product { width: min(400px,72vw); right: -2%; bottom: -36px; }
  .hero-stamp { width: 116px; top: 48px; right: 1%; font-size: .67rem; padding: 16px; }
  .hero-chip.one { left: 0; bottom: 50px; }
  .hero-chip.two { display: none; }
  .trust-strip { grid-template-columns: repeat(2,1fr); margin-top: -34px; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { display: block; }
  .section-heading p { margin-top: 20px; }
  .card-grid, .steps, .article-grid, .review-principles { grid-template-columns: 1fr; }
  .product-split, .page-hero-grid, .content-grid, .country-panel { grid-template-columns: 1fr; }
  .product-stage { min-height: 510px; }
  .content-grid { gap: 40px; }
  .sidebar { position: static; }
  .page-hero-product { max-height: 330px; }
  .cta-inner { grid-template-columns: 1fr; padding: 44px 32px; }
  .cta-band .btn-light { width: fit-content; }
  .footer-grid { grid-template-columns: repeat(2,1fr); gap: 40px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; display: block; }
  .footer-bottom { display: block; }
  .footer-bottom > * + * { margin-top: 15px; }
  .mobile-cta { display: flex; }
  .site-footer { padding-bottom: 100px; }
}

@media (max-width: 600px) {
  :root { --container: calc(100% - 24px); }
  body { font-size: 15px; }
  .announce { font-size: .67rem; }
  .logo { font-size: 1.7rem; }
  .logo small { display: none; }
  .hero { min-height: 880px; }
  .hero-inner { padding-top: 42px; }
  .hero-bullets { grid-template-columns: 1fr; gap: 8px; margin: 22px 0; }
  .hero-visual { min-height: 330px; }
  .hero-product { width: min(355px,85vw); right: -12%; bottom: -48px; }
  .hero-stamp { display: none; }
  .hero-chip.one { left: 0; bottom: 26px; }
  .trust-strip { width: calc(100% - 24px); margin-top: -20px; border-radius: 19px; }
  .trust-item { min-height: 88px; padding: 17px 15px; gap: 10px; }
  .trust-icon { width: 38px; height: 38px; border-radius: 12px; }
  .trust-item strong { font-size: .78rem; }
  .trust-item small { font-size: .66rem; }
  .card-grid.four, .ingredient-grid, .geo-grid, .stat-row { grid-template-columns: 1fr; }
  .stat-row { gap: 1px; }
  .product-stage { min-height: 430px; }
  .product-stage::before { width: 320px; height: 320px; }
  .product-stage::after { width: 400px; height: 400px; }
  .quote-panel { padding: 36px 25px; }
  .quote-panel::after { font-size: 5rem; }
  .cta-inner { padding: 36px 24px; }
  .cta-band .btn-light { width: 100%; }
  .page-hero { padding: 62px 0 55px; }
  .page-hero-grid { gap: 35px; }
  .page-hero-product { max-height: 280px; }
  .country-main, .country-side { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-col:last-child { grid-column: auto; }
  .cookie-banner { left: 10px; right: 10px; bottom: 84px; max-width: none; display: none; flex-direction: column; align-items: stretch; }
  .cookie-banner.show { display: flex; }
  .offer-card { padding: 32px 22px; }
  .offer-product { width: 210px; }
}
