:root {
  --color-wine: #4a0d1a;
  --color-pearl: #f8ebd8;
  --color-amber: #d4a373;
  --color-ocean: #0b3c5d;
  --color-graphite: #262626;
  --color-white: #ffffff;
  --font-heading: "Segoe UI", system-ui, sans-serif;
  --font-body: "Segoe UI", system-ui, sans-serif;
  --fs-hero: clamp(2.25rem, 5vw, 3.75rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.15rem, 2vw, 1.35rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --lh-tight: 1.15;
  --lh-body: 1.6;
  --shadow-sm: 0 2px 8px rgba(38, 38, 38, 0.08);
  --shadow-md: 0 8px 24px rgba(38, 38, 38, 0.12);
  --shadow-lg: 0 16px 48px rgba(38, 38, 38, 0.16);
  --shadow-glow-wine: 0 12px 40px rgba(74, 13, 26, 0.35);
  --shadow-glow-ocean: 0 12px 40px rgba(11, 60, 93, 0.3);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
  --glass-bg: rgba(248, 235, 216, 0.72);
  --glass-border: rgba(74, 13, 26, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-graphite);
  background: var(--color-pearl);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-ocean);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-wine);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 10000;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-ocean);
  color: var(--color-pearl);
}

.skip-link:focus {
  left: var(--space-sm);
  top: var(--space-sm);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-wine);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand:hover {
  color: var(--color-ocean);
}

.nav-primary {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.nav-primary a {
  color: var(--color-graphite);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--fs-small);
}

.nav-primary a:hover {
  color: var(--color-wine);
}

.nav-panel {
  display: flex;
  align-items: center;
}

.burger {
  display: none;
  position: relative;
  z-index: 10003;
  touch-action: manipulation;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(74, 13, 26, 0.18);
  border-radius: 14px;
  background: rgba(248, 235, 216, 0.55);
  backdrop-filter: blur(10px);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background var(--transition-fast), border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.burger:hover {
  border-color: rgba(11, 60, 93, 0.35);
  box-shadow: var(--shadow-sm);
}

.burger__line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-wine);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease,
    top 0.35s ease;
}

.burger.is-open {
  background: rgba(11, 60, 93, 0.12);
  border-color: rgba(11, 60, 93, 0.35);
}

.burger.is-open .burger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.is-open .burger__line:nth-child(2) {
  opacity: 0;
}

.burger.is-open .burger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(38, 38, 38, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10002;
    height: 100vh;
    width: min(320px, 88vw);
    max-width: 100%;
    background: linear-gradient(165deg, rgba(248, 235, 216, 0.97) 0%, rgba(255, 255, 255, 0.98) 55%, rgba(248, 235, 216, 0.94) 100%);
    backdrop-filter: blur(18px);
    border-left: 1px solid rgba(74, 13, 26, 0.12);
    box-shadow: -12px 0 48px rgba(38, 38, 38, 0.18);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-panel.is-open {
    transform: translateX(0);
  }

  .nav-primary {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-md) var(--space-lg) var(--space-xl);
  }

  .nav-primary a {
    font-size: 1.05rem;
    padding: 0.35rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(74, 13, 26, 0.08);
  }
}

main {
  min-height: 50vh;
}

.section {
  padding: var(--space-xl) var(--space-md);
}

.section--tight {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.wrap {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.hero {
  --hero-mx: 0;
  --hero-my: 0;
  background: linear-gradient(155deg, #2d0812 0%, var(--color-wine) 28%, var(--color-ocean) 58%, #061a28 100%);
  background-size: 140% 140%;
  animation: hero-bg-flow 22s ease-in-out infinite alternate;
  color: var(--color-pearl);
  padding: clamp(3rem, 8vw, 6rem) var(--space-md);
  position: relative;
  overflow: hidden;
}

@keyframes hero-bg-flow {
  0% {
    background-position: 0% 40%;
  }
  100% {
    background-position: 100% 60%;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 55% at 65% 15%, rgba(212, 163, 115, 0.22), transparent 52%),
    radial-gradient(ellipse 70% 45% at 15% 80%, rgba(11, 60, 93, 0.35), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.12) 0%,
    transparent 35%,
    transparent 65%,
    rgba(0, 0, 0, 0.2) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero__wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero__wrap {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero__rings {
    opacity: 0.4;
    width: min(420px, 130vw);
    height: min(420px, 130vw);
  }
}

.hero__aurora {
  position: absolute;
  inset: -20%;
  z-index: 0;
  will-change: opacity;
  background: conic-gradient(
    from 210deg at 50% 50%,
    rgba(212, 163, 115, 0.14),
    transparent 25%,
    rgba(11, 60, 93, 0.2),
    transparent 55%,
    rgba(74, 13, 26, 0.18),
    transparent 80%
  );
  animation: hero-aurora-breathe 18s ease-in-out infinite;
  transform: translate(calc(var(--hero-mx) * 48px), calc(var(--hero-my) * 36px));
  transition: transform 0.4s ease-out;
  pointer-events: none;
}

@keyframes hero-aurora-breathe {
  0%,
  100% {
    opacity: 0.68;
  }
  50% {
    opacity: 0.96;
  }
}

.hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.14;
  will-change: opacity;
  background-image: linear-gradient(rgba(248, 235, 216, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 235, 216, 0.35) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 20%, transparent 75%);
  animation: hero-mesh-pulse 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-mesh-pulse {
  0%,
  100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.18;
  }
}

.hero__rings {
  position: absolute;
  width: min(520px, 85vw);
  height: min(520px, 85vw);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  z-index: 1;
  pointer-events: none;
}

.hero__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(212, 163, 115, 0.22);
}

.hero__ring--1 {
  animation: hero-ring-pulse 14s ease-in-out infinite;
}

.hero__ring--2 {
  inset: 12%;
  border-color: rgba(248, 235, 216, 0.12);
  animation: hero-ring-pulse 14s ease-in-out infinite reverse;
  animation-delay: 1.5s;
}

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

.hero__col {
  min-width: 0;
}

.hero__col--visual {
  position: relative;
}

.hero__visual {
  position: relative;
  perspective: 1200px;
}

.hero__visual-inner {
  position: relative;
  border-radius: calc(var(--radius-xl) + 6px);
  padding: 0.5rem;
  transform-style: preserve-3d;
  background: linear-gradient(
    135deg,
    rgba(248, 235, 216, 0.35) 0%,
    rgba(11, 60, 93, 0.25) 45%,
    rgba(74, 13, 26, 0.3) 100%
  );
  background-size: 200% 200%;
  animation: hero-frame-glow 10s ease-in-out infinite alternate;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(248, 235, 216, 0.12) inset,
    0 0 60px rgba(212, 163, 115, 0.15);
}

@keyframes hero-frame-glow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.hero__figure {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.15);
}

.hero__img {
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
  animation: hero-product-float 7s ease-in-out infinite;
  display: block;
  width: 100%;
  height: auto;
}

@keyframes hero-product-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.01);
  }
}

.hero__shine {
  position: absolute;
  inset: -30% -40%;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.12) 48%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.12) 52%,
    transparent 65%
  );
  animation: hero-shine-sweep 6.5s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}

@keyframes hero-shine-sweep {
  0% {
    transform: translateX(-35%) rotate(8deg);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  45% {
    transform: translateX(35%) rotate(8deg);
    opacity: 1;
  }
  60%,
  100% {
    opacity: 0;
  }
}

.hero__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(248, 235, 216, 0.72);
  margin: 0 0 var(--space-sm);
  animation: hero-rise 1s cubic-bezier(0.2, 0.85, 0.2, 1) 0.05s both;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  animation: hero-rise 1s cubic-bezier(0.2, 0.85, 0.2, 1) 0.12s both;
}

.hero__badge {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 235, 216, 0.28);
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(248, 235, 216, 0.92);
  line-height: 1.35;
  max-width: 100%;
}

.hero__price-note {
  font-size: 0.72rem;
  line-height: 1.45;
  opacity: 0.85;
  max-width: 46ch;
  margin: -0.25rem 0 var(--space-md);
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--color-amber);
  font-size: var(--fs-small);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
  font-weight: 800;
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.03em;
}

.hero__title-text {
  display: inline-block;
  background: linear-gradient(
    110deg,
    #f8ebd8 0%,
    #fff8ef 18%,
    #d4a373 42%,
    #f8ebd8 58%,
    #d4a373 78%,
    #f8ebd8 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hero-title-gleam 9s ease-in-out infinite, hero-rise 1.05s cubic-bezier(0.2, 0.85, 0.2, 1) 0.2s both;
  filter: drop-shadow(0 4px 28px rgba(0, 0, 0, 0.35));
}

@keyframes hero-title-gleam {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(32px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero__lead {
  font-size: 1.1rem;
  line-height: 1.65;
  opacity: 0.94;
  margin: 0 0 var(--space-md);
  max-width: 38ch;
  animation: hero-rise 1.1s cubic-bezier(0.2, 0.85, 0.2, 1) 0.32s both;
}

.hero .order-form {
  animation: hero-rise 1.15s cubic-bezier(0.2, 0.85, 0.2, 1) 0.58s both;
  transition: box-shadow 0.45s ease, border-color 0.45s ease;
}

.hero .order-form:hover {
  box-shadow: 0 0 0 1px rgba(248, 235, 216, 0.28) inset, 0 18px 50px rgba(0, 0, 0, 0.28);
  border-color: rgba(248, 235, 216, 0.42);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.hero .price-row {
  animation: hero-rise 1.1s cubic-bezier(0.2, 0.85, 0.2, 1) 0.5s both;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-amber);
}

.price--old {
  font-size: 1.15rem;
  text-decoration: line-through;
  opacity: 0.65;
  font-weight: 600;
}

.order-form {
  background: rgba(248, 235, 216, 0.12);
  border: 1px solid rgba(248, 235, 216, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  backdrop-filter: blur(8px);
}

.order-form label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.order-form input,
.order-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(248, 235, 216, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-pearl);
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.order-form input::placeholder,
.order-form textarea::placeholder {
  color: rgba(248, 235, 216, 0.5);
}

.order-form input:focus,
.order-form textarea:focus {
  outline: none;
  border-color: var(--color-amber);
  box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.25);
}

.order-form .field-error {
  color: #ffb4b4;
  font-size: 0.8rem;
  margin: -0.35rem 0 var(--space-sm);
  min-height: 1.1em;
}

.order-form .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.order-form .checkbox-row input {
  width: auto;
  margin: 0.2rem 0 0;
}

.order-form .checkbox-row label {
  margin: 0;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-amber) 0%, #c98f5a 100%);
  color: var(--color-wine);
  box-shadow: 0 8px 28px rgba(212, 163, 115, 0.45);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(212, 163, 115, 0.55);
}

.btn--outline {
  background: transparent;
  color: var(--color-pearl);
  border: 2px solid var(--color-amber);
}

.btn--outline:hover {
  background: rgba(212, 163, 115, 0.15);
}

.btn--dark {
  background: var(--color-wine);
  color: var(--color-pearl);
}

.btn--dark:hover {
  background: #5c1020;
}

.magnetic-wrap {
  display: inline-block;
  position: relative;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  color: var(--color-wine);
  margin: 0 0 var(--space-md);
  line-height: var(--lh-tight);
}

.section-lead {
  max-width: 62ch;
  margin: 0 0 var(--space-lg);
  color: var(--color-graphite);
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-md);
}

.bento__card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(74, 13, 26, 0.08);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bento__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bento__card--large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 280px;
  background: linear-gradient(160deg, var(--color-ocean), #072a42);
  color: var(--color-pearl);
  justify-content: flex-end;
}

.bento__card--large .bento__title {
  color: var(--color-pearl);
}

.bento__icon {
  display: block;
  width: 44px;
  height: 44px;
  color: var(--color-amber);
  margin-bottom: var(--space-sm);
  flex-shrink: 0;
}

.bento__icon svg {
  width: 100%;
  height: 100%;
  transition: transform var(--transition-smooth), color var(--transition-fast);
}

.bento__card:hover .bento__icon svg {
  transform: scale(1.08);
  color: var(--color-ocean);
}

.bento__card--large .bento__icon {
  color: var(--color-amber);
}

.bento__card--large:hover .bento__icon svg {
  color: var(--color-pearl);
}

.bento__card--wide {
  grid-column: span 2;
}

.bento__title {
  font-size: var(--fs-h3);
  margin: 0 0 var(--space-xs);
  color: var(--color-wine);
}

.bento__text {
  margin: 0;
  font-size: var(--fs-small);
  opacity: 0.9;
}

@media (max-width: 900px) {
  .bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento__card--large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 200px;
  }

  .bento__card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 520px) {
  .bento {
    grid-template-columns: 1fr;
  }

  .bento__card--large,
  .bento__card--wide {
    grid-column: span 1;
  }
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.ingredient-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid rgba(11, 60, 93, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-ocean);
}

.ingredient-card__front,
.ingredient-card__back {
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.ingredient-card__back {
  position: absolute;
  inset: 0;
  padding: var(--space-md);
  background: linear-gradient(180deg, var(--color-ocean), var(--color-wine));
  color: var(--color-pearl);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ingredient-card:hover .ingredient-card__front {
  opacity: 0;
}

.ingredient-card:hover .ingredient-card__back {
  opacity: 1;
}

.ingredient-card h3 {
  margin: 0 0 var(--space-xs);
  font-size: var(--fs-h3);
  color: var(--color-ocean);
}

.ingredient-card:hover h3 {
  color: var(--color-pearl);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: start;
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-item {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(74, 13, 26, 0.06);
}

.trust-item svg {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-sm);
}

@keyframes trust-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.92;
  }
}

@keyframes trust-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.trust-item:nth-child(1) svg {
  animation: trust-pulse 2.8s ease-in-out infinite;
}

.trust-item:nth-child(2) svg .trust-spin {
  animation: trust-rotate 12s linear infinite;
  transform-origin: 32px 32px;
}

.trust-item:nth-child(3) svg {
  animation: trust-pulse 3.2s ease-in-out 0.4s infinite;
}

.trust-item h3 {
  margin: 0 0 var(--space-xs);
  color: var(--color-wine);
  font-size: var(--fs-h3);
}

.trust-item p {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--color-graphite);
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: var(--space-md) 0;
}

.carousel__track {
  display: flex;
  transition: transform var(--transition-smooth);
}

.carousel__slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  padding: var(--space-md);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  max-width: 340px;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s ease, box-shadow var(--transition-smooth);
  transform-style: preserve-3d;
}

.product-card--glow {
  box-shadow: var(--shadow-glow-wine), var(--shadow-md);
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--color-wine);
  color: var(--color-pearl);
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-md);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.carousel__btn:hover {
  background: var(--color-ocean);
  transform: translateY(-50%) scale(1.05);
}

.carousel__btn--prev {
  left: var(--space-sm);
}

.carousel__btn--next {
  right: var(--space-sm);
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(74, 13, 26, 0.25);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.carousel__dot.is-active {
  background: var(--color-wine);
  transform: scale(1.15);
}

.spec-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.spec-item,
.benefit-item {
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-amber);
  box-shadow: var(--shadow-sm);
}

.prose-block {
  max-width: 75ch;
}

.prose-block p {
  margin: 0 0 var(--space-sm);
}

.reviews {
  display: grid;
  gap: var(--space-md);
}

.review-card {
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(38, 38, 38, 0.06);
}

.review-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--color-ocean);
}

.faq details {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(11, 60, 93, 0.1);
  overflow: hidden;
}

.faq summary {
  padding: var(--space-md);
  cursor: pointer;
  font-weight: 700;
  color: var(--color-wine);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] summary {
  border-bottom: 1px solid rgba(11, 60, 93, 0.08);
}

.faq .faq__body {
  padding: 0 var(--space-md) var(--space-md);
  margin: 0;
}

.disclaimer-box {
  background: rgba(74, 13, 26, 0.06);
  border: 1px solid rgba(74, 13, 26, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-size: var(--fs-small);
  margin-top: var(--space-lg);
}

.disclaimer-box--footer {
  margin-top: var(--space-md);
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.5;
}

.ads-compliance p {
  margin-bottom: var(--space-sm);
}

.ads-compliance p:last-child {
  margin-bottom: 0;
}

.site-footer {
  background: var(--color-graphite);
  color: var(--color-pearl);
  padding: var(--space-xl) var(--space-md);
}

.site-footer a {
  color: var(--color-amber);
}

.site-footer a:hover {
  color: var(--color-pearl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-nav a {
  text-decoration: none;
}

.footer-copy {
  font-size: var(--fs-small);
  opacity: 0.85;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  padding: var(--space-md);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -8px 32px rgba(38, 38, 38, 0.12);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  justify-content: space-between;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.btn--ghost {
  background: transparent;
  color: var(--color-wine);
  border: 1px solid var(--color-wine);
}

.btn--ghost:hover {
  background: rgba(74, 13, 26, 0.08);
}

.btn--block {
  width: 100%;
  margin-top: 0.75rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: rgba(38, 38, 38, 0.45);
}

.modal.is-open {
  display: flex;
}

.modal__panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

.modal__panel h2 {
  margin: 0 0 var(--space-md);
  color: var(--color-wine);
}

.cookie-category {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(74, 13, 26, 0.1);
}

.cookie-category h3 {
  margin: 0 0 var(--space-xs);
  font-size: 1rem;
  color: var(--color-ocean);
}

.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch__slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ccc;
  border-radius: 26px;
  transition: background var(--transition-fast);
}

.switch__slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.switch input:checked + .switch__slider {
  background: var(--color-ocean);
}

.switch input:checked + .switch__slider::before {
  transform: translateX(22px);
}

.switch input:disabled + .switch__slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cta-band {
  background: linear-gradient(90deg, var(--color-wine), var(--color-ocean));
  color: var(--color-pearl);
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-xl);
}

.cta-band h2 {
  margin: 0 0 var(--space-sm);
  font-size: var(--fs-h2);
}

.cta-band p {
  margin: 0 0 var(--space-md);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.alt-section {
  background: var(--color-white);
}

.thank-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.thank-page h1 {
  color: var(--color-wine);
  font-size: var(--fs-h2);
}

.thank-page article {
  margin: 0 auto;
  max-width: 42rem;
}

.policy-page h1:not(.lux-title) {
  color: var(--color-wine);
  font-size: var(--fs-h2);
}

.policy-page ul {
  margin: 0 0 var(--space-md);
  padding-left: 1.25rem;
}

.policy-page {
  padding-bottom: var(--space-2xl);
}

.policy-page table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-small);
  margin: var(--space-sm) 0;
}

.policy-page th,
.policy-page td {
  border: 1px solid rgba(38, 38, 38, 0.15);
  padding: var(--space-xs) var(--space-sm);
  text-align: left;
}

.hero__blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.38;
  animation: blob-float 16s ease-in-out infinite;
  will-change: transform;
}

.hero__blob--1 {
  width: 300px;
  height: 300px;
  left: -8%;
  top: 10%;
  background: radial-gradient(circle at 30% 30%, rgba(212, 163, 115, 0.55), transparent 65%);
  animation-delay: 0s;
}

.hero__blob--2 {
  width: 240px;
  height: 240px;
  right: 5%;
  bottom: 8%;
  background: radial-gradient(circle at 70% 40%, rgba(11, 60, 93, 0.45), transparent 60%);
  animation-delay: 2.2s;
}

.hero__blob--3 {
  width: 180px;
  height: 180px;
  right: 35%;
  top: 18%;
  background: radial-gradient(circle at 50% 50%, rgba(74, 13, 26, 0.4), transparent 55%);
  animation-delay: 4.4s;
}

.hero__blob--4 {
  width: 120px;
  height: 120px;
  left: 42%;
  bottom: 22%;
  background: radial-gradient(circle at 50% 50%, rgba(248, 235, 216, 0.35), transparent 60%);
  animation-delay: 1s;
  animation-duration: 19s;
}

@keyframes blob-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(16px, -22px) scale(1.06);
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  max-width: 420px;
  animation: hero-rise 1.1s cubic-bezier(0.2, 0.85, 0.2, 1) 0.42s both;
}

.hero-stat {
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(248, 235, 216, 0.18);
  text-align: center;
}

.hero-stat__value {
  display: block;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-amber);
  letter-spacing: -0.02em;
}

.hero-stat__label {
  display: block;
  font-size: 0.7rem;
  line-height: 1.35;
  opacity: 0.88;
  margin-top: 0.2rem;
}

.ritual-section {
  position: relative;
  overflow: hidden;
}

.ritual-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ritual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.55;
  animation: orb-drift 18s ease-in-out infinite;
}

.ritual-orb--1 {
  width: 320px;
  height: 320px;
  left: -10%;
  top: 5%;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.55), transparent 70%);
}

.ritual-orb--2 {
  width: 260px;
  height: 260px;
  right: -5%;
  bottom: 0;
  background: radial-gradient(circle, rgba(11, 60, 93, 0.45), transparent 70%);
  animation-delay: 3s;
}

.ritual-orb--3 {
  width: 200px;
  height: 200px;
  left: 35%;
  bottom: 15%;
  background: radial-gradient(circle, rgba(74, 13, 26, 0.35), transparent 70%);
  animation-delay: 6s;
}

@keyframes orb-drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-16px, 20px);
  }
}

.ritual-wrap {
  position: relative;
  z-index: 1;
}

.ritual-shell {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(74, 13, 26, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.ritual-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(74, 13, 26, 0.1);
}

.ritual-tab {
  padding: 1rem 0.75rem;
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-graphite);
  cursor: pointer;
  transition: background var(--transition-smooth), color var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.ritual-tab:hover {
  background: rgba(212, 163, 115, 0.12);
  color: var(--color-wine);
}

.ritual-tab.is-active {
  background: linear-gradient(180deg, rgba(212, 163, 115, 0.22), rgba(255, 255, 255, 0));
  color: var(--color-ocean);
  box-shadow: inset 0 -3px 0 var(--color-amber);
}

.ritual-panels {
  padding: var(--space-lg) var(--space-md);
  min-height: 220px;
}

.ritual-panel {
  display: none;
  animation: panel-in 0.55s ease both;
}

.ritual-panel.is-active {
  display: block;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ritual-panel__title {
  margin: 0 0 var(--space-sm);
  font-size: var(--fs-h3);
  color: var(--color-wine);
}

.ritual-list {
  margin: var(--space-sm) 0 0;
  padding-left: 1.15rem;
}

.ritual-list li {
  margin-bottom: 0.35rem;
}

.page-lux {
  background: radial-gradient(1200px 600px at 10% 0%, rgba(212, 163, 115, 0.14), transparent 55%),
    radial-gradient(900px 500px at 100% 20%, rgba(11, 60, 93, 0.12), transparent 50%), var(--color-pearl);
}

.lux-main {
  padding-bottom: var(--space-2xl);
}

.lux-hero {
  position: relative;
  padding: var(--space-2xl) var(--space-md) var(--space-lg);
  border-bottom: 1px solid rgba(74, 13, 26, 0.1);
  background: linear-gradient(135deg, rgba(74, 13, 26, 0.06) 0%, rgba(11, 60, 93, 0.05) 100%);
  overflow: hidden;
}

.lux-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(212, 163, 115, 0.12), transparent);
  opacity: 0.35;
  pointer-events: none;
}

.lux-hero__inner {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.lux-eyebrow {
  display: inline-block;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-ocean);
  margin: 0 0 var(--space-sm);
}

.lux-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  color: var(--color-wine);
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.02em;
}

.lux-subtitle {
  margin: 0 auto var(--space-md);
  max-width: 62ch;
  color: var(--color-graphite);
}

.lux-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 13, 26, 0.14);
  background: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-small);
  font-weight: 600;
}

.lux-date time {
  color: var(--color-ocean);
}

.lux-content {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md) 0;
}

.lux-content h2 {
  font-family: var(--font-heading);
  color: var(--color-wine);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  margin: var(--space-lg) 0 var(--space-sm);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(212, 163, 115, 0.45);
}

.lux-content h2:first-child {
  margin-top: 0;
}

.lux-content p,
.lux-content li {
  color: var(--color-graphite);
}

.lux-content ul {
  margin: 0 0 var(--space-md);
  padding-left: 1.2rem;
}

.lux-card {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 60, 93, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.lux-divider {
  height: 1px;
  margin: var(--space-lg) 0;
  background: linear-gradient(90deg, transparent, rgba(74, 13, 26, 0.18), transparent);
}

.lux-actions {
  text-align: center;
  margin-top: var(--space-lg);
}

.page-thank {
  background: linear-gradient(165deg, #faf6f1 0%, var(--color-pearl) 40%, #f0e8df 100%);
}

.thank-main {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: flex;
  align-items: center;
  padding: var(--space-xl) var(--space-md);
}

.thank-stage {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.thank-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(74, 13, 26, 0.06);
  text-align: center;
}

.thank-check {
  width: 88px;
  height: 88px;
  margin: 0 auto var(--space-md);
  color: var(--color-ocean);
}

.thank-check svg {
  width: 100%;
  height: 100%;
}

.thank-check__circle {
  animation: thank-check-draw 0.8s ease-out forwards;
}

.thank-check__mark {
  animation: thank-check-draw 0.5s ease-out 0.35s forwards;
}

@keyframes thank-check-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.thank-card__title {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: var(--color-wine);
}

.thank-card__lead {
  margin: 0 0 var(--space-sm);
  color: var(--color-graphite);
  line-height: 1.6;
}

.thank-card__date {
  margin: 0 0 var(--space-md);
  font-size: var(--fs-small);
  color: var(--color-ocean);
  font-weight: 600;
}

.thank-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: rgba(11, 60, 93, 0.04);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-amber);
  text-align: left;
}

.thank-step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  color: var(--color-graphite);
}

.thank-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--color-ocean);
}

.thank-step__icon svg {
  width: 20px;
  height: 20px;
}

.thank-card__note {
  margin: 0 0 var(--space-md);
  font-size: var(--fs-small);
  color: var(--color-graphite);
  line-height: 1.55;
}

.thank-card__cta {
  display: inline-block;
  margin-top: var(--space-sm);
}

.thank-lux {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thank-lux__panel {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(74, 13, 26, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.thank-lux__panel h1 {
  margin: 0 0 var(--space-sm);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  color: var(--color-wine);
}

.thank-lux__panel p {
  margin: 0 0 var(--space-md);
  color: var(--color-graphite);
}

@media (prefers-reduced-motion: reduce) {
  .hero {
    animation: none !important;
    background: linear-gradient(155deg, #2d0812 0%, var(--color-wine) 28%, var(--color-ocean) 58%, #061a28 100%);
  }

  .hero__aurora,
  .hero__mesh,
  .hero__ring,
  .hero__shine,
  .hero__title-text,
  .hero__visual-inner {
    animation: none !important;
  }

  .hero__blob,
  .ritual-orb,
  .reveal {
    animation: none !important;
  }

  .hero__eyebrow,
  .hero__meta,
  .hero__title-text,
  .hero__lead,
  .hero-stats,
  .hero .price-row,
  .hero .order-form {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hero__img {
    animation: none !important;
  }

  .ritual-panel {
    animation: none !important;
  }

  .thank-check__circle,
  .thank-check__mark {
    animation: none !important;
    stroke-dashoffset: 0 !important;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .ritual-tabs {
    grid-template-columns: 1fr;
  }

  .ritual-tab {
    text-align: left;
    border-bottom: 1px solid rgba(74, 13, 26, 0.08);
  }

  .ritual-tab.is-active {
    box-shadow: inset 4px 0 0 var(--color-amber);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 15px;
  }

  body {
    min-width: 280px;
  }

  .wrap {
    width: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .site-header__inner {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
    gap: 0.5rem;
  }

  .brand {
    font-size: 0.92rem;
    line-height: 1.2;
    max-width: 62%;
  }

  .burger {
    width: 44px;
    height: 44px;
  }

  .section {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .hero {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }

  .hero__price-note {
    font-size: 0.68rem;
  }

  .hero__title {
    font-size: 1.85rem;
  }

  .price {
    font-size: 1.65rem;
  }

  .order-form {
    padding: 0.85rem;
  }

  .btn {
    width: 100%;
    padding: 0.8rem 1rem;
  }

  .magnetic-wrap {
    display: block;
    width: 100%;
  }

  .cta-band {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .cookie-banner__inner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .lux-content {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .lux-hero {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .policy-page table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
