/* ============================================================
   AMX Luxury — Design System & Layout
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --black: #0A0A0A;
  --white: #FAFAFA;
  --gold: #C5A44E;
  --gold-light: #D4AF37;
  --gold-dark: #A8893A;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-400: #999;
  --gray-600: #666;
  --gray-800: #333;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1200px;
  --gutter: 24px;
  --section-pad: clamp(80px, 10vw, 140px);

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 3rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s var(--ease-out);
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 24px rgba(197, 164, 78, 0.35);
}

.btn--outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--gray-800);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}
.nav--scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 0.75rem;
}

.nav__tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav__logo {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}
.nav__logo span {
  font-weight: 600;
  color: var(--gold);
}

.nav__links {
  display: flex;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  transition: color 0.3s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-smooth);
}
.nav__links a:hover {
  color: var(--white);
}
.nav__links a:hover::after {
  width: 100%;
}

/* Language switcher */
.lang-switch {
  display: flex;
  gap: 0;
  margin-left: 1.5rem;
  border: 1px solid rgba(197, 164, 78, 0.3);
  overflow: hidden;
}
.lang-switch__btn {
  padding: 5px 10px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.lang-switch__btn--active {
  background: var(--gold);
  color: var(--black);
}
.lang-switch__btn:hover:not(.lang-switch__btn--active) {
  color: var(--white);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-shrink: 0;
  z-index: 1002;
  border: 1px solid rgba(197, 164, 78, 0.35);
  border-radius: 4px;
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
  filter: brightness(0.6) saturate(0.8);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(197, 164, 78, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(197, 164, 78, 0.06) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.7) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
}

.hero__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(197, 164, 78, 0.3);
  padding: 8px 24px;
  margin-bottom: 2.5rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__title-line {
  display: block;
}
.hero__title-line:last-child {
  color: var(--gold);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.hero__cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   STORY
   ============================================================ */
.story {
  padding: var(--section-pad) 0;
  background: var(--white);
}

/* -- Video + Intro block -- */
.story__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--gray-200);
}

.story__video {
  width: 100%;
}

.story__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  background: var(--black);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.story__video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.story__greeting {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.story__intro-text p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.story__intro-text p:last-child {
  margin-bottom: 0;
}
.story__intro-text em {
  color: var(--gold-dark);
  font-style: italic;
}
.story__intro-text strong {
  color: var(--black);
  font-weight: 600;
}

/* -- Chapters -- */
.story__grid {
  max-width: 800px;
  margin: 0 auto;
}

.story__chapter {
  margin-bottom: 3.5rem;
  position: relative;
  padding-left: 60px;
}

.story__number {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.story__chapter h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.story__chapter p {
  color: var(--gray-600);
  font-size: 1.02rem;
  line-height: 1.8;
}

.story__quote {
  margin: 3rem 0;
  padding: 2.5rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
}

.story__quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--black);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 1rem;
}

.story__quote cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   VALUES
   ============================================================ */
.values {
  padding: var(--section-pad) 0;
  background: var(--black);
  color: var(--white);
}
.values .section-title {
  text-align: center;
}
.values .section-label {
  text-align: center;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.values__card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(197, 164, 78, 0.15);
  transition: border-color 0.4s;
}
.values__card:hover {
  border-color: rgba(197, 164, 78, 0.5);
}

.values__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}
.values__icon svg {
  width: 100%;
  height: 100%;
}

.values__card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.values__card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ============================================================
   PRODUCT SETS
   ============================================================ */
.set {
  padding: var(--section-pad) 0;
}

.set--dark {
  background: var(--black);
  color: var(--white);
}

.set--light {
  background: var(--gray-100);
  color: var(--black);
}

.set__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.set__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gray-400);
  margin-top: -2rem;
}
.set--dark .set__subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.section-title--dark {
  color: var(--black);
}

.set__products {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.set__product {
  flex: 1 1 220px;
  max-width: 340px;
  text-align: center;
}

.set__product-image {
  margin-bottom: 1.5rem;
}
.set__product-image img {
  max-height: 260px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
  margin: 0 auto;
  filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.25));
  transition: transform 0.6s var(--ease-smooth);
}
.set__product-image:hover img {
  transform: scale(1.04);
}

.set__product-info h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
.set--dark .set__product-info h3 {
  color: var(--gold);
}
.set__product-info h3 span {
  font-weight: 400;
}

.set__product-type {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.set__product-info ul {
  text-align: left;
  max-width: 300px;
  margin: 0 auto;
}
.set__product-info li {
  padding: 6px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(128, 128, 128, 0.12);
  padding-left: 20px;
  position: relative;
}
.set--dark .set__product-info li {
  color: rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.set__product-info li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}
.set__product-info li:last-child {
  border-bottom: none;
}

.set__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.set__divider span {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
}

.set__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.set__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.set__price-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.set__price--dark .set__price-label {
  color: var(--gray-400);
}

.set__price-amount {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.set__price-save {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2ecc71;
}
.set__price--dark .set__price-save { color: #27ae60; }

.set__price-options {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.set__price--highlight {
  padding: 1rem 1.5rem;
  border: 2px solid var(--gold);
  border-radius: 6px;
  background: rgba(197, 164, 78, 0.06);
  position: relative;
}
.set__price--dark.set__price--highlight {
  border-color: rgba(10, 10, 10, 0.2);
  background: rgba(10, 10, 10, 0.03);
}

.set__product-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin: 0.25rem 0 0.5rem;
  font-weight: 600;
}

.btn--lg {
  padding: 18px 52px;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}

.set__sub-link {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}
.set__sub-link a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.set__sub-link a:hover { color: var(--gold-light); }
.set__sub-link--dark { color: var(--gray-400); }
.set__sub-link--dark a { color: var(--gold-dark); }

/* Single product spotlight (homepage) */
.product-spotlight__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.product-spotlight__image {
  text-align: center;
}
.product-spotlight__image img {
  max-height: 420px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}
.product-spotlight__info h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.product-spotlight__info h3 span {
  font-weight: 400;
  font-style: italic;
  opacity: 0.85;
}
.product-spotlight__tagline {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.product-spotlight__price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.product-spotlight__features {
  list-style: none;
  margin-bottom: 2rem;
}
.product-spotlight__features li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}
.product-spotlight__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.product-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 768px) {
  .product-spotlight__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .product-spotlight__features li {
    text-align: left;
  }
  .product-spotlight__actions {
    justify-content: center;
  }
}

/* ============================================================
   VEGAN SECTION
   ============================================================ */
.vegan {
  padding: var(--section-pad) 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.vegan__content {
  max-width: 900px;
  margin: 0 auto;
}

.vegan__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.3;
  margin-bottom: 3.5rem;
}

.vegan__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.vegan__stat {
  padding: 2rem 1rem;
  border: 1px solid rgba(197, 164, 78, 0.2);
}

.vegan__stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.vegan__stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.vegan__statement {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 60px 0 30px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(197, 164, 78, 0.15);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-block;
  margin-bottom: 1rem;
}
.footer__logo span {
  font-weight: 600;
  color: var(--gold);
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__links h4,
.footer__newsletter h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer__links li {
  margin-bottom: 0.6rem;
}
.footer__links a {
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer__links a:hover {
  color: var(--gold);
}

.footer__newsletter p {
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.footer__form {
  display: flex;
  gap: 0;
}
.footer__form input {
  flex: 1;
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 164, 78, 0.3);
  border-right: none;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
}
.footer__form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.footer__form input:focus {
  border-color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
}

.footer__badges {
  display: flex;
  gap: 1.5rem;
}
.footer__badges span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .story__intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .set__products {
    flex-direction: column;
    gap: 1.5rem;
  }
  .set__product {
    max-width: 400px;
  }
  .set__divider {
    width: 40px;
    height: 40px;
  }
  .set__price-options {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 20px;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem var(--gutter);
    gap: 1.2rem;
    z-index: 1001;
    border-top: 1px solid rgba(197, 164, 78, 0.15);
  }
  .nav__links--open {
    display: flex;
  }
  .nav__toggle {
    display: flex;
  }
  .nav__tools {
    margin-left: auto;
  }
  .lang-switch {
    margin-left: 0;
    margin-right: 0;
  }
  .nav__toggle--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav__toggle--active span:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .values__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story__chapter {
    padding-left: 48px;
  }

  .set__product-image img {
    max-height: 260px;
  }

  .vegan__stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
