:root {
  --black: #080706;
  --ink: #f7ead6;
  --champagne: #090806;
  --ivory: #fff4df;
  --beige: #1a130e;
  --warm: #d7ad70;
  --gold: #c69b62;
  --silver: #b9b0a4;
  --grey: #100d0a;
  --muted: #b8aa98;
  --line: rgba(214, 174, 118, .2);
  --dark-line: rgba(246, 238, 223, .14);
  --shadow: 0 30px 90px rgba(0, 0, 0, .42);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--black);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(198,155,98,.2), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(190,134,67,.16), transparent 30%),
    linear-gradient(180deg, #050504 0%, #100b08 48%, #070605 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--black);
  color: white;
  transform: translateY(-150%);
  transition: transform .25s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 12px 18px;
  background: rgba(8, 7, 6, .9);
  color: var(--ivory);
  border-bottom: 1px solid var(--dark-line);
  backdrop-filter: blur(18px);
}
.brand img { width: 86px; height: 42px; object-fit: cover; border-radius: 14px; }
.site-header nav { display: none; }
.site-header nav a {
  color: rgba(255,250,241,.78);
  font-size: 12px;
  letter-spacing: .08em;
  transition: color .25s ease;
}
.site-header nav a:hover { color: var(--gold); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,250,241,.48);
  font-size: 11px;
  letter-spacing: .08em;
}
.lang-button {
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid transparent;
  color: rgba(255,250,241,.48);
  background: none;
  font-size: 11px;
  letter-spacing: .08em;
  cursor: pointer;
}
.lang-button.active {
  color: var(--gold);
  border-color: var(--gold);
}
.header-cta {
  padding: 11px 17px;
  border: 1px solid rgba(255,250,241,.22);
  border-radius: 999px;
  color: var(--ivory);
  font-size: 12px;
  letter-spacing: .06em;
  transition: transform .25s ease, background .25s ease;
}
.header-cta:hover { transform: translateY(-2px); background: rgba(255,255,255,.08); }

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  gap: 34px;
  padding: 56px 20px 44px;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 78% 34%, rgba(214,169,106,.42), transparent 31%),
    radial-gradient(circle at 48% 95%, rgba(245,236,221,.08), transparent 32%),
    linear-gradient(150deg, #030302 0%, #100c09 48%, #2a1b10 100%);
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -.04em;
}
h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(54px, 14vw, 122px);
  line-height: .92;
}
.hero-subtitle {
  margin-bottom: 28px;
  color: rgba(255,250,241,.8);
  font-size: clamp(19px, 5vw, 34px);
  font-weight: 300;
  line-height: 1.36;
  letter-spacing: -.02em;
}
.hero-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-dark { background: var(--ivory); color: var(--black); box-shadow: 0 18px 45px rgba(0,0,0,.22); }
.button-outline { border: 1px solid rgba(255,250,241,.34); color: var(--ivory); }
.button-outline:hover { background: rgba(255,255,255,.08); }
.hero-product {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
}
.hero-product img {
  position: relative;
  z-index: 2;
  width: min(84vw, 395px);
  max-height: 72vh;
  object-fit: contain;
  filter: drop-shadow(0 40px 55px rgba(0,0,0,.48));
}
.product-glow {
  position: absolute;
  width: min(84vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,190,135,.58), rgba(227,190,135,.08) 48%, transparent 70%);
  filter: blur(4px);
}

.intro-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(214,174,118,.18), transparent 36%),
    #050403;
}
.intro-strip p {
  margin: 0;
  padding: 18px 12px;
  border: 1px solid rgba(214,174,118,.5);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(214,174,118,.2), rgba(255,244,223,.055));
  color: #ffe4b8;
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  box-shadow: 0 18px 45px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,244,223,.12);
}

.section {
  padding: 78px 20px;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}
.section-heading.centered { text-align: left; }
.section-heading h2 {
  margin-bottom: 18px;
  color: var(--ivory);
  font-size: clamp(38px, 10vw, 76px);
  line-height: 1;
}
.section-heading p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.why {
  background:
    radial-gradient(circle at 8% 8%, rgba(198,155,98,.16), transparent 28%),
    linear-gradient(180deg, #080706 0%, #110c08 100%);
}
.icon-grid, .ingredient-grid, .feature-grid, .contact-grid {
  display: grid;
  gap: 14px;
}
.icon-grid article, .ingredient-grid article, .feature-grid article, .contact-card, .steps article, .faq-list details {
  border: 1px solid rgba(214,174,118,.18);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,244,223,.075), rgba(255,244,223,.025));
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.icon-grid article:hover, .ingredient-grid article:hover, .feature-grid article:hover, .contact-card:hover, .steps article:hover {
  transform: translateY(-6px);
  border-color: rgba(198,155,98,.52);
  box-shadow: 0 34px 90px rgba(24, 17, 10, .16);
}
.icon-grid article {
  min-height: 210px;
  padding: 26px;
}
.icon-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 54px;
  padding: 0 13px;
  margin-bottom: 32px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--black), #302219);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}
.icon-grid h3, .ingredient-grid h3, .feature-grid h3, .steps h3 {
  margin-bottom: 12px;
  color: var(--ivory);
  font-size: 20px;
  line-height: 1.18;
}
.icon-grid p, .ingredient-grid p, .feature-grid p, .steps p, .faq-list p, .contact-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.ingredients {
  background:
    radial-gradient(circle at 78% 4%, rgba(198,155,98,.18), transparent 26%),
    linear-gradient(180deg, #0b0806 0%, #050403 100%);
}
.ingredient-grid article {
  padding: 28px;
  min-height: 230px;
}
.ingredient-grid small {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
}

.love {
  color: var(--ivory);
  background:
    radial-gradient(circle at 12% 20%, rgba(205,159,96,.25), transparent 30%),
    linear-gradient(145deg, #050403 0%, #15100c 58%, #2b1d13 100%);
}
.love .section-heading h2 { color: var(--ivory); }
.love .section-heading p:not(.eyebrow) { color: rgba(255,250,241,.68); }
.feature-grid article {
  padding: 28px;
  background: rgba(255,250,241,.06);
  border-color: rgba(255,250,241,.12);
  box-shadow: none;
}
.feature-grid h3 { color: var(--ivory); }
.feature-grid h3::before {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  margin-bottom: 32px;
  background: var(--gold);
}
.feature-grid p { color: rgba(255,250,241,.68); }

.use {
  background:
    radial-gradient(circle at 16% 16%, rgba(198,155,98,.13), transparent 28%),
    linear-gradient(180deg, #070605 0%, #120d09 100%);
}
.steps {
  display: grid;
  gap: 14px;
}
.steps article {
  padding: 28px;
  background: linear-gradient(145deg, rgba(255,244,223,.075), rgba(255,244,223,.025));
}
.step-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 30px;
  border-radius: 50%;
  border: 1px solid rgba(198,155,98,.42);
  background: radial-gradient(circle, #2d2015, #0b0806);
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 24px;
}

.faq {
  background:
    radial-gradient(circle at 86% 10%, rgba(198,155,98,.12), transparent 26%),
    linear-gradient(180deg, #050403 0%, #0e0a07 100%);
}
.faq-list { display: grid; gap: 12px; }
.faq-list details {
  padding: 0 22px;
  background: linear-gradient(145deg, rgba(255,244,223,.075), rgba(255,244,223,.025));
  box-shadow: 0 18px 48px rgba(0,0,0,.32);
}
.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--ivory);
  font-weight: 600;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold);
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 0 0 22px; }

.about {
  padding: 86px 20px;
  color: var(--ivory);
  background:
    linear-gradient(rgba(8,7,6,.68), rgba(8,7,6,.82)),
    radial-gradient(circle at 72% 35%, rgba(212,166,101,.28), transparent 34%),
    #080706;
}
.about h2 {
  margin: 0 0 24px;
  max-width: 920px;
  color: var(--ivory);
  font-size: clamp(45px, 11vw, 96px);
  line-height: .98;
}
.about p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255,250,241,.72);
  font-size: 16px;
  line-height: 1.9;
}

.company-profile {
  padding: 86px 20px;
  background:
    radial-gradient(circle at 16% 12%, rgba(198,155,98,.14), transparent 28%),
    linear-gradient(180deg, #070605 0%, #100b08 100%);
}
.company-grid {
  display: grid;
  gap: 14px;
}
.company-grid article {
  padding: 22px;
  border: 1px solid rgba(214,174,118,.18);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,244,223,.075), rgba(255,244,223,.025));
  box-shadow: var(--shadow);
}
.company-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.company-grid strong {
  color: var(--ivory);
  font-size: 18px;
  line-height: 1.35;
}

.contact {
  background:
    radial-gradient(circle at 15% 8%, rgba(198,155,98,.15), transparent 28%),
    linear-gradient(180deg, #100b08 0%, #050403 100%);
}
.company-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(214,174,118,.18);
  color: rgba(255,244,223,.58) !important;
  font-size: 13px !important;
}
.contact-card {
  display: grid;
  gap: 7px;
  padding: 28px;
  color: var(--ivory);
}
.contact-card small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.contact-card strong {
  overflow-wrap: anywhere;
  font-size: 20px;
  line-height: 1.25;
}
.social-icon {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  background: var(--gold);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
.instagram-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8Zm8.7 2.2a1.3 1.3 0 1 1 0 2.6 1.3 1.3 0 0 1 0-2.6ZM12 7.2a4.8 4.8 0 1 1 0 9.6 4.8 4.8 0 0 1 0-9.6Zm0 2a2.8 2.8 0 1 0 0 5.6 2.8 2.8 0 0 0 0-5.6Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8Zm8.7 2.2a1.3 1.3 0 1 1 0 2.6 1.3 1.3 0 0 1 0-2.6ZM12 7.2a4.8 4.8 0 1 1 0 9.6 4.8 4.8 0 0 1 0-9.6Zm0 2a2.8 2.8 0 1 0 0 5.6 2.8 2.8 0 0 0 0-5.6Z'/%3E%3C/svg%3E");
}
.whatsapp-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12.04 2A9.9 9.9 0 0 0 2.1 11.84c0 1.73.46 3.42 1.34 4.9L2 22l5.38-1.41a9.92 9.92 0 0 0 4.66 1.18h.01A9.9 9.9 0 0 0 22 11.93 9.94 9.94 0 0 0 12.04 2Zm.01 17.98h-.01a8.18 8.18 0 0 1-4.17-1.14l-.3-.18-3.2.84.86-3.12-.2-.32a8.1 8.1 0 1 1 7.02 3.92Zm4.45-6.06c-.24-.12-1.44-.71-1.66-.79-.22-.08-.38-.12-.54.12-.16.24-.62.79-.76.95-.14.16-.28.18-.52.06-.24-.12-1.02-.38-1.94-1.2-.72-.64-1.2-1.43-1.34-1.67-.14-.24-.02-.37.1-.49.11-.11.24-.28.36-.42.12-.14.16-.24.24-.4.08-.16.04-.3-.02-.42-.06-.12-.54-1.3-.74-1.78-.2-.47-.39-.4-.54-.41h-.46c-.16 0-.42.06-.64.3-.22.24-.84.82-.84 2s.86 2.32.98 2.48c.12.16 1.7 2.6 4.13 3.64.58.25 1.03.4 1.38.51.58.18 1.1.16 1.52.1.46-.07 1.44-.59 1.64-1.16.2-.57.2-1.06.14-1.16-.06-.1-.22-.16-.46-.28Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12.04 2A9.9 9.9 0 0 0 2.1 11.84c0 1.73.46 3.42 1.34 4.9L2 22l5.38-1.41a9.92 9.92 0 0 0 4.66 1.18h.01A9.9 9.9 0 0 0 22 11.93 9.94 9.94 0 0 0 12.04 2Zm.01 17.98h-.01a8.18 8.18 0 0 1-4.17-1.14l-.3-.18-3.2.84.86-3.12-.2-.32a8.1 8.1 0 1 1 7.02 3.92Zm4.45-6.06c-.24-.12-1.44-.71-1.66-.79-.22-.08-.38-.12-.54.12-.16.24-.62.79-.76.95-.14.16-.28.18-.52.06-.24-.12-1.02-.38-1.94-1.2-.72-.64-1.2-1.43-1.34-1.67-.14-.24-.02-.37.1-.49.11-.11.24-.28.36-.42.12-.14.16-.24.24-.4.08-.16.04-.3-.02-.42-.06-.12-.54-1.3-.74-1.78-.2-.47-.39-.4-.54-.41h-.46c-.16 0-.42.06-.64.3-.22.24-.84.82-.84 2s.86 2.32.98 2.48c.12.16 1.7 2.6 4.13 3.64.58.25 1.03.4 1.38.51.58.18 1.1.16 1.52.1.46-.07 1.44-.59 1.64-1.16.2-.57.2-1.06.14-1.16-.06-.1-.22-.16-.46-.28Z'/%3E%3C/svg%3E");
}
.email-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 5h18a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1Zm9 8.1L4.6 7H4v10h16V7h-.6L12 13.1ZM6.8 7l5.2 4.25L17.2 7H6.8Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 5h18a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1Zm9 8.1L4.6 7H4v10h16V7h-.6L12 13.1ZM6.8 7l5.2 4.25L17.2 7H6.8Z'/%3E%3C/svg%3E");
}

.floating-contact {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  display: grid;
  gap: 9px;
}
.floating-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 210px;
  padding: 10px 13px;
  border: 1px solid rgba(255,250,241,.18);
  border-radius: 999px;
  background: rgba(8,7,6,.88);
  color: var(--ivory);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
  backdrop-filter: blur(16px);
  transition: transform .25s ease, background .25s ease;
}
.floating-contact a:hover { transform: translateY(-3px); background: rgba(23,19,15,.96); }
.floating-contact .social-icon {
  width: 18px;
  height: 18px;
  margin: 0;
  background: var(--gold);
}
.floating-contact b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
}

footer {
  display: grid;
  gap: 26px;
  padding: 48px 20px 110px;
  background: var(--black);
  color: rgba(255,250,241,.76);
}
footer img { width: 98px; height: 48px; object-fit: cover; border-radius: 14px; }
footer p { margin: 12px 0 0; color: var(--gold); font-family: "Playfair Display", serif; }
footer address {
  display: grid;
  gap: 10px;
  font-style: normal;
}
footer a { transition: color .25s ease; }
footer a:hover { color: var(--gold); }
.footer-company {
  display: grid;
  gap: 6px;
  color: rgba(255,250,241,.58);
  font-size: 11px;
  line-height: 1.55;
}
.footer-company p {
  margin: 0;
  color: rgba(255,250,241,.58);
  font-family: inherit;
}
.footer-company strong {
  color: var(--gold);
  letter-spacing: .08em;
}
footer small { color: rgba(255,250,241,.48); }

.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .site-header { padding: 14px 32px; }
  .brand img { width: 104px; height: 54px; }
  .site-header nav { display: flex; align-items: center; gap: 28px; }
  .header-actions { gap: 18px; }
  .hero {
    grid-template-columns: 1.03fr .97fr;
    min-height: calc(100vh - 82px);
    padding: 7vw 6vw;
  }
  .hero-actions { flex-direction: row; align-items: center; }
  .button { min-width: 180px; }
  .intro-strip { grid-template-columns: repeat(4, 1fr); padding: 22px 6vw; }
  .section { padding: 110px 6vw; }
  .section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
  .section-heading.centered p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
  .icon-grid, .ingredient-grid, .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .faq-list { max-width: 900px; margin: 0 auto; }
  .about { padding: 130px 8vw; }
  .company-profile { padding: 110px 6vw; }
  .company-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: 6vw; align-items: start; }
  .contact-grid { grid-template-columns: 1fr; }
  footer {
    grid-template-columns: 1fr auto;
    align-items: start;
    padding: 60px 6vw 70px;
  }
  footer small { grid-column: 1 / -1; }
}

@media (min-width: 1080px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
  .contact { display: block; }
}

@media (max-width: 759px) {
  body { padding-bottom: 84px; }
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 14px 12px;
  }
  .brand img {
    width: 78px;
    height: 38px;
    border-radius: 12px;
  }
  .header-actions {
    margin-left: auto;
    gap: 10px;
  }
  .header-cta {
    padding: 9px 12px;
    font-size: 11px;
  }
  .language-switch,
  .lang-button {
    font-size: 10px;
  }
  .site-header nav {
    order: 3;
    display: flex;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 1px;
    scrollbar-width: none;
  }
  .site-header nav::-webkit-scrollbar { display: none; }
  .site-header nav a {
    flex: 0 0 auto;
    padding: 8px 12px;
    border: 1px solid rgba(214,174,118,.22);
    border-radius: 999px;
    background: rgba(255,244,223,.045);
    font-size: 10px;
    white-space: nowrap;
  }
  .hero {
    min-height: auto;
    gap: 18px;
    padding: 42px 18px 36px;
    text-align: center;
  }
  .eyebrow {
    margin-bottom: 14px;
    font-size: 9.5px;
    letter-spacing: .17em;
  }
  h1 {
    margin: 0 auto 18px;
    font-size: clamp(48px, 15vw, 66px);
    line-height: .94;
  }
  .hero-subtitle {
    margin-bottom: 22px;
    font-size: 20px;
  }
  .hero-actions {
    max-width: 360px;
    margin: 0 auto;
  }
  .button {
    min-height: 52px;
    font-size: 12px;
  }
  .hero-product {
    min-height: 335px;
    margin-top: -4px;
  }
  .hero-product img {
    width: min(76vw, 315px);
    max-height: 380px;
  }
  .product-glow {
    width: min(78vw, 330px);
    opacity: .78;
  }
  .intro-strip {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px 14px 22px;
  }
  .intro-strip p {
    min-height: 64px;
    display: grid;
    place-items: center;
    padding: 14px 8px;
    font-size: 10px;
    line-height: 1.45;
    letter-spacing: .08em;
  }
  .section {
    padding: 68px 18px;
  }
  .section-heading {
    margin-bottom: 26px;
  }
  .section-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.05;
  }
  .section-heading p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.85;
  }
  .icon-grid article,
  .ingredient-grid article,
  .feature-grid article,
  .steps article,
  .contact-card {
    border-radius: 22px;
    padding: 22px;
  }
  .icon-grid article,
  .ingredient-grid article {
    min-height: auto;
  }
  .icon-grid span {
    width: 48px;
    height: 48px;
    min-width: 48px;
    margin-bottom: 24px;
    border-radius: 15px;
    font-size: 11px;
  }
  .ingredient-grid small {
    margin-bottom: 34px;
  }
  .about {
    padding: 76px 20px;
  }
  .company-profile {
    padding: 68px 18px;
  }
  .company-grid article {
    border-radius: 22px;
    padding: 20px;
  }
  .company-grid strong {
    font-size: 16px;
  }
  .about h2 {
    font-size: clamp(40px, 12vw, 58px);
  }
  .contact-card strong {
    font-size: 17px;
  }
  .floating-contact {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr 1fr;
  }
  .floating-contact a {
    justify-content: center;
    max-width: none;
    padding: 12px 10px;
  }
  .floating-contact b {
    font-size: 10px;
  }
  footer {
    padding-bottom: 120px;
  }
}

.bio-page {
  min-height: 100vh;
  color: var(--ivory);
  background:
    radial-gradient(circle at 50% 0%, rgba(214,174,118,.3), transparent 36%),
    radial-gradient(circle at 100% 100%, rgba(214,174,118,.2), transparent 30%),
    #050403;
}
.bio-page::before { display: none; }
.bio-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 22px;
}
.bio-card {
  width: min(100%, 460px);
  padding: 28px 20px 24px;
  border: 1px solid rgba(214,174,118,.28);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,244,223,.09), rgba(255,244,223,.025));
  box-shadow: 0 32px 100px rgba(0,0,0,.48);
  text-align: center;
}
.bio-logo {
  width: 132px;
  height: 64px;
  margin: 0 auto 16px;
  object-fit: cover;
  border-radius: 18px;
}
.bio-kicker {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.bio-card h1 {
  margin: 0 auto 14px;
  font-size: clamp(40px, 12vw, 56px);
  line-height: .98;
}
.bio-card h1 span {
  color: var(--gold);
}
.bio-copy {
  max-width: 330px;
  margin: 0 auto 16px;
  color: rgba(255,244,223,.72);
  font-size: 13px;
  line-height: 1.7;
}
.bio-product {
  width: min(62vw, 230px);
  max-height: 330px;
  object-fit: contain;
  margin: 0 auto 18px;
  filter: drop-shadow(0 24px 32px rgba(0,0,0,.55));
}
.bio-links {
  display: grid;
  gap: 11px;
}
.bio-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  border: 1px solid rgba(214,174,118,.36);
  border-radius: 999px;
  background: rgba(8,7,6,.54);
  color: var(--ivory);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.bio-link:hover {
  transform: translateY(-3px);
  border-color: rgba(214,174,118,.7);
  background: rgba(214,174,118,.15);
}
.bio-link.primary {
  background: linear-gradient(135deg, #e6c083, #a16d33);
  color: #080706;
  border-color: rgba(255,244,223,.4);
}
.bio-link.subtle {
  color: var(--gold);
}
.bio-footer {
  margin: 18px 0 0;
  color: rgba(255,244,223,.5);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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