@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --color-luxury-gold: #D4AF37;
  --color-luxury-champagne: #F5E6D3;
  --color-luxury-cream: #F8F6F1;
  --color-luxury-charcoal: #1A1A1A;
  --color-luxury-black: #0D0D0D;
  --color-neo-coral: #FF6B6B;
  --color-aqua-pulse: #00F0D1;
  --color-lime-zest: #CFFF33;
  --color-ultra-violet: #7F00FF;
  --color-sky-neon: #3399FF;
  --color-base-light: #FFFFFF;
  --color-base-dark: #0F0F14;
  --color-text-primary: #1A1A24;
  --color-text-secondary: #4A4A5A;
  --color-text-muted: #7A7A8A;
  --font-heading: 'DM Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(15, 15, 20, 0.08);
  --shadow-md: 0 4px 16px rgba(15, 15, 20, 0.12);
  --shadow-lg: 0 8px 32px rgba(15, 15, 20, 0.16);
  --shadow-glow-coral: 0 0 24px rgba(255, 107, 107, 0.4);
  --shadow-glow-aqua: 0 0 24px rgba(0, 240, 209, 0.4);
  --shadow-glow-violet: 0 0 24px rgba(127, 0, 255, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --margin-xs: 0.5rem;
  --margin-sm: 1rem;
  --margin-md: 1.5rem;
  --margin-lg: 2rem;
  --margin-xl: 3rem;
  --margin-2xl: 4rem;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-base-light);
  overflow-x: hidden;
}

body.home-luxury {
  background: var(--color-luxury-black);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-sky-neon);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-ultra-violet);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(15, 15, 20, 0.06);
  transition: background var(--transition-normal), border-color var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
}

.header-dark {
  background: rgba(13, 13, 13, 0.6);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header-dark.scrolled {
  background: rgba(13, 13, 13, 0.92);
}

.header-dark .brand {
  color: white;
}

.header-dark .nav-list a {
  color: rgba(255, 255, 255, 0.8);
}

.header-dark .nav-list a:hover {
  color: var(--color-luxury-gold);
}

.header-dark .nav-list a::after {
  background: var(--color-luxury-gold);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--margin-md) var(--margin-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text-primary);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--margin-lg);
}

.nav-list a {
  color: var(--color-text-secondary);
  font-weight: 500;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-aqua-pulse);
  transition: width var(--transition-normal);
}

.nav-list a:hover::after {
  width: 100%;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem var(--margin-lg) var(--margin-2xl);
  background: var(--color-luxury-black);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 20%, rgba(212, 175, 55, 0.15), transparent 50%),
              radial-gradient(ellipse 60% 40% at 80% 80%, rgba(127, 0, 255, 0.08), transparent 40%),
              radial-gradient(ellipse 50% 30% at 20% 60%, rgba(0, 240, 209, 0.06), transparent 40%);
  animation: meshMove 15s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes meshMove {
  0% { opacity: 1; transform: scale(1) translate(0, 0); }
  100% { opacity: 0.9; transform: scale(1.1) translate(2%, 1%); }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--color-luxury-gold);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-orb.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--color-ultra-violet);
  bottom: -50px;
  left: -50px;
  animation-delay: -3s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--margin-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content .hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-luxury-gold);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-full);
  margin-bottom: var(--margin-md);
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  color: white;
  margin-bottom: var(--margin-md);
  opacity: 0;
  animation: fadeSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.hero-title span {
  background: linear-gradient(135deg, var(--color-luxury-champagne), var(--color-luxury-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-luxury-gold), transparent);
  opacity: 0;
  animation: lineReveal 1s ease 0.8s forwards;
}

@keyframes lineReveal {
  to { opacity: 0.6; }
}

.hero-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
  margin-bottom: var(--margin-lg);
  max-width: 480px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.hero-price-block {
  display: flex;
  align-items: baseline;
  gap: var(--margin-sm);
  margin-bottom: var(--margin-lg);
  opacity: 0;
  animation: fadeSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.price-current {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-luxury-gold);
  letter-spacing: 0.02em;
}

.price-old {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

.hero-media {
  position: relative;
  opacity: 0;
  animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-product-img {
  border-radius: var(--radius-xl);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2), 0 40px 80px rgba(0, 0, 0, 0.5);
  width: 100%;
  height: auto;
  animation: imgFloat 6s ease-in-out infinite;
}

@keyframes imgFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-rating {
  position: absolute;
  bottom: var(--margin-md);
  left: var(--margin-md);
  display: flex;
  align-items: center;
  gap: var(--margin-xs);
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(12px);
  padding: var(--margin-sm) var(--margin-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.3);
  animation: fadeSlideUp 0.8s ease 0.7s forwards;
  opacity: 0;
}

.hero-rating-stars {
  color: var(--color-luxury-gold);
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.hero-rating-text {
  font-weight: 600;
  color: var(--color-luxury-champagne);
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.order-form {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: var(--margin-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(127, 0, 255, 0.1);
}

.order-form-dark {
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.order-form-dark .form-group label {
  color: var(--color-luxury-champagne);
}

.order-form-dark .form-group input,
.order-form-dark .form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.2);
  color: white;
}

.order-form-dark .form-group input::placeholder,
.order-form-dark .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.order-form-dark .form-group input:focus,
.order-form-dark .form-group textarea:focus {
  border-color: var(--color-luxury-gold);
  background: rgba(255, 255, 255, 0.08);
}

.order-form-dark .checkbox-group label {
  color: rgba(255, 255, 255, 0.85);
}

.order-form-dark .checkbox-group a {
  color: var(--color-luxury-gold);
}

.form-group {
  margin-bottom: var(--margin-md);
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: var(--margin-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--margin-sm) var(--margin-md);
  border: 2px solid rgba(15, 15, 20, 0.1);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-aqua-pulse);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--color-neo-coral);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-error {
  color: var(--color-neo-coral);
  font-size: 0.875rem;
  margin-top: var(--margin-xs);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--margin-sm);
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--color-aqua-pulse);
}

.form-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--margin-md);
  line-height: 1.5;
}

.order-form .form-disclaimer {
  margin-top: calc(-1 * var(--margin-xs));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--margin-sm) var(--margin-xl);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-neo-coral), var(--color-ultra-violet));
  color: white;
  width: 100%;
  box-shadow: var(--shadow-glow-coral);
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 0 32px rgba(255, 107, 107, 0.5);
}

.order-form-dark .btn-primary {
  background: linear-gradient(135deg, var(--color-luxury-gold), #B8860B);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.order-form-dark .btn-primary:hover {
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.btn-primary:active {
  transform: scale(0.98);
}

.section {
  padding: var(--margin-2xl) var(--margin-lg);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-dark {
  background: var(--color-luxury-charcoal);
  color: white;
  padding: var(--margin-2xl) var(--margin-lg);
  margin: 0;
  max-width: none;
}

.section-dark .section-inner,
.section-dark > .section-title,
.section-dark > p,
.section-dark > ul,
.section-dark > .bento-grid,
.section-dark > .ingredients-spotlight,
.section-dark > .trust-block,
.section-dark > .stats-grid,
.section-dark > .faq-list,
.section-dark > .cta-section,
.section-dark > .disclaimer-block {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-dark .section-title,
.section-dark h2,
.section-dark h3 {
  color: white;
}

.section-dark .section-title span {
  color: var(--color-luxury-gold);
}

.section-dark p,
.section-dark .stat-label,
.section-dark .specs-list li,
.section-dark .benefits-list li {
  color: rgba(255, 255, 255, 0.8);
}

.section-dark .specs-list li,
.section-dark .benefits-list li {
  border-color: rgba(212, 175, 55, 0.15);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--margin-lg);
  color: var(--color-text-primary);
  position: relative;
}

.section-title span {
  color: var(--color-ultra-violet);
}

.home-luxury .section-title {
  color: white;
}

.home-luxury .section-title span {
  color: var(--color-luxury-gold);
}

.section-title-line {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-luxury-gold), transparent);
  margin: var(--margin-sm) auto var(--margin-md);
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.visible .section-title-line {
  opacity: 1;
  transform: scaleX(1);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.scale-in {
  transform: translateY(40px) scale(0.95);
}

.scroll-reveal.scale-in.visible {
  transform: translateY(0) scale(1);
}

.scroll-reveal.slide-left {
  transform: translateX(-60px);
}

.scroll-reveal.slide-left.visible {
  transform: translateX(0);
}

.scroll-reveal.slide-right {
  transform: translateX(60px);
}

.scroll-reveal.slide-right.visible {
  transform: translateX(0);
}

.scroll-reveal.rotate-in {
  transform: translateY(30px) rotate(-2deg);
}

.scroll-reveal.rotate-in.visible {
  transform: translateY(0) rotate(0);
}

.scroll-reveal.fade-only {
  transform: none;
}

.scroll-reveal.stagger-parent .stagger-child {
  opacity: 0;
  transform: translateY(20px);
  animation: staggerReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.scroll-reveal.stagger-parent.visible .stagger-child {
  opacity: 1;
}

@keyframes staggerReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer-text {
  background: linear-gradient(90deg, var(--color-luxury-gold), var(--color-luxury-champagne), var(--color-luxury-gold));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(127, 0, 255, 0.3); transform: scale(1); }
  50% { box-shadow: 0 0 40px rgba(127, 0, 255, 0.5); transform: scale(1.05); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--margin-xl);
  padding: var(--margin-2xl) 0;
}

.stat-card {
  text-align: center;
  padding: var(--margin-xl);
  background: linear-gradient(180deg, rgba(127, 0, 255, 0.05), rgba(0, 240, 209, 0.05));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(127, 0, 255, 0.12);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.home-luxury .stat-card {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(26, 26, 26, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-glow-violet);
}

.home-luxury .stat-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.15);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-ultra-violet), var(--color-aqua-pulse));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--margin-xs);
}

.home-luxury .stat-number {
  background: linear-gradient(135deg, var(--color-luxury-gold), var(--color-luxury-champagne));
  -webkit-background-clip: text;
  background-clip: text;
}

.stat-label {
  color: var(--color-text-secondary);
  font-size: 1rem;
  font-weight: 500;
}

.home-luxury .stat-label {
  color: rgba(255, 255, 255, 0.75);
}

.interactive-card {
  position: relative;
  overflow: hidden;
}

.interactive-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(127, 0, 255, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.interactive-card:hover::before {
  opacity: 1;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: var(--margin-md);
}

.bento-card {
  background: linear-gradient(135deg, rgba(127, 0, 255, 0.08), rgba(0, 240, 209, 0.08));
  border-radius: var(--radius-lg);
  padding: var(--margin-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.3s ease;
  border: 1px solid rgba(127, 0, 255, 0.1);
}

.home-luxury .bento-card {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.06), rgba(26, 26, 26, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.home-luxury .bento-card h3 {
  color: var(--color-luxury-champagne);
}

.home-luxury .bento-card p {
  color: rgba(255, 255, 255, 0.7);
}

.bento-card:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateY(-4px);
  box-shadow: var(--shadow-glow-violet);
}

.home-luxury .bento-card:hover {
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.4);
}

.bento-card.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-icon {
  margin-bottom: auto;
  align-self: flex-start;
  color: var(--color-ultra-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--margin-sm);
  border-radius: var(--radius-md);
  background: rgba(127, 0, 255, 0.08);
  transition: transform 0.35s ease, color 0.35s ease, background 0.35s ease;
}

.home-luxury .bento-icon {
  color: var(--color-luxury-gold);
  background: rgba(212, 175, 55, 0.12);
}

.bento-icon-glyph {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 1;
  display: block;
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
  -webkit-font-smoothing: antialiased;
}

.bento-icon-glyph-lg {
  font-size: 56px;
}

.bento-card:hover .bento-icon {
  transform: scale(1.08);
}

.home-luxury .bento-card:hover .bento-icon {
  background: rgba(212, 175, 55, 0.2);
}

.bento-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.bento-card p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin-top: var(--margin-xs);
}

.ingredients-spotlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--margin-lg);
}

.ingredient-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--margin-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 15, 20, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.home-luxury .ingredient-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.home-luxury .ingredient-card h3 {
  color: var(--color-luxury-champagne);
}

.home-luxury .ingredient-card p {
  color: rgba(255, 255, 255, 0.75);
}

.ingredient-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-glow-aqua);
}

.home-luxury .ingredient-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.ingredient-card:hover .ingredient-benefits {
  opacity: 1;
  max-height: 200px;
}

.ingredient-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--margin-md);
  background: linear-gradient(135deg, var(--color-aqua-pulse), var(--color-sky-neon));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-luxury .ingredient-icon {
  background: linear-gradient(135deg, var(--color-luxury-gold), #B8860B);
  color: var(--color-luxury-black);
}

.ingredient-card:hover .ingredient-icon {
  transform: rotate(10deg) scale(1.1);
}

.ingredient-benefits {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
  margin-top: var(--margin-md);
  padding-top: var(--margin-md);
  border-top: 1px solid rgba(15, 15, 20, 0.08);
}

.ingredient-benefits ul {
  list-style: none;
  text-align: left;
}

.ingredient-benefits li {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  padding: var(--margin-xs) 0;
  padding-left: 1.2rem;
  position: relative;
}

.ingredient-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-aqua-pulse);
  font-weight: 600;
}

.trust-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--margin-xl);
  text-align: center;
}

.trust-item {
  padding: var(--margin-xl);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 15, 20, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.home-luxury .trust-item {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.home-luxury .trust-item h3 {
  color: var(--color-luxury-champagne);
}

.home-luxury .trust-item p {
  color: rgba(255, 255, 255, 0.75);
}

.trust-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.home-luxury .trust-item:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.1);
}

.trust-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--margin-md);
}

.trust-item h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--margin-xs);
}

.trust-item p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--margin-lg);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.specs-list,
.benefits-list {
  list-style: none;
}

.specs-list li,
.benefits-list li {
  padding: var(--margin-sm) 0;
  border-bottom: 1px solid rgba(15, 15, 20, 0.06);
  display: flex;
  align-items: flex-start;
  gap: var(--margin-sm);
}

.specs-list li::before,
.benefits-list li::before {
  content: '•';
  color: var(--color-aqua-pulse);
  font-weight: bold;
}

.home-luxury .specs-list li::before,
.home-luxury .benefits-list li::before {
  color: var(--color-luxury-gold);
}

.faq-item {
  border-bottom: 1px solid rgba(15, 15, 20, 0.08);
}

.faq-question {
  width: 100%;
  padding: var(--margin-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  color: var(--color-text-primary);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-ultra-violet);
}

.home-luxury .faq-question {
  color: rgba(255, 255, 255, 0.95);
}

.home-luxury .faq-question:hover {
  color: var(--color-luxury-gold);
}

.home-luxury .faq-question::after {
  color: var(--color-luxury-gold);
}

.home-luxury .faq-answer-inner {
  color: rgba(255, 255, 255, 0.8);
}

.home-luxury .faq-item {
  border-color: rgba(212, 175, 55, 0.15);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-aqua-pulse);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer-inner {
  padding-bottom: var(--margin-md);
  color: var(--color-text-secondary);
}

.review-card {
  background: white;
  padding: var(--margin-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 15, 20, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-luxury .review-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.home-luxury .review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.home-luxury .review-text {
  color: rgba(255, 255, 255, 0.8);
}

.home-luxury .review-author {
  color: var(--color-luxury-champagne);
}

.home-luxury .review-stars {
  color: var(--color-luxury-gold);
}

.review-stars {
  color: var(--color-lime-zest);
  margin-bottom: var(--margin-sm);
}

.review-text {
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: var(--margin-md);
}

.review-author {
  font-weight: 600;
  color: var(--color-text-primary);
}

.cta-section {
  text-align: center;
  padding: var(--margin-2xl) var(--margin-lg);
  background: linear-gradient(135deg, rgba(127, 0, 255, 0.06), rgba(0, 240, 209, 0.06));
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.home-luxury .cta-section {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.9), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.home-luxury .cta-section p {
  color: rgba(255, 255, 255, 0.85);
}

.home-luxury .cta-section .btn-primary {
  background: linear-gradient(135deg, var(--color-luxury-gold), #B8860B);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.cta-section .btn {
  margin-top: var(--margin-md);
}

.disclaimer-block {
  padding: var(--margin-lg);
  background: rgba(15, 15, 20, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 15, 20, 0.08);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-top: var(--margin-xl);
}

.disclaimer-dark {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 175, 55, 0.2);
  color: rgba(255, 255, 255, 0.75);
}

.footer {
  background: var(--color-base-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--margin-2xl) var(--margin-lg) var(--margin-lg);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--margin-lg);
  margin-bottom: var(--margin-lg);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-links a:hover {
  color: var(--color-aqua-pulse);
}

.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 20, 0.98);
  color: white;
  padding: var(--margin-lg);
  z-index: 9999;
  display: none;
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--margin-md);
}

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
}

.cookie-banner-text p {
  margin-bottom: var(--margin-sm);
}

.cookie-banner-buttons {
  display: flex;
  gap: var(--margin-sm);
  flex-wrap: wrap;
}

.cookie-banner .btn {
  padding: var(--margin-sm) var(--margin-md);
}

.btn-accept {
  background: var(--color-aqua-pulse);
  color: var(--color-base-dark);
}

.btn-reject {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-settings {
  background: var(--color-ultra-violet);
  color: white;
}

.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal-content {
  background: white;
  padding: var(--margin-xl);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h3 {
  margin-bottom: var(--margin-lg);
  font-family: var(--font-heading);
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--margin-md) 0;
  border-bottom: 1px solid rgba(15, 15, 20, 0.08);
}

.cookie-category.necessary .cookie-toggle {
  opacity: 0.5;
  pointer-events: none;
}

.cookie-toggle {
  width: 48px;
  height: 26px;
  background: rgba(15, 15, 20, 0.2);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cookie-toggle.active {
  background: var(--color-aqua-pulse);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--transition-fast);
}

.cookie-toggle.active::after {
  transform: translateX(22px);
}



.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  width: 48px;
  height: 48px;
  z-index: 1002;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(212, 175, 55, 0.15);
}

.nav-toggle:active {
  transform: scale(0.96);
}

.nav-toggle-bars {
  width: 22px;
  height: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-luxury-champagne), var(--color-luxury-gold));
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.3s ease, top 0.45s ease, width 0.45s ease;
  transform-origin: center;
}

.header:not(.header-dark) .nav-toggle {
  border-color: rgba(127, 0, 255, 0.2);
  background: linear-gradient(135deg, rgba(127, 0, 255, 0.08), rgba(0, 240, 209, 0.08));
}

.header:not(.header-dark) .nav-toggle:hover {
  border-color: var(--color-ultra-violet);
  box-shadow: 0 0 20px rgba(127, 0, 255, 0.15);
}

.header:not(.header-dark) .nav-toggle-bar {
  background: linear-gradient(90deg, var(--color-ultra-violet), var(--color-aqua-pulse));
}

.nav-toggle.open .nav-toggle-bar:nth-child(1) {
  position: absolute;
  top: 50%;
  margin-top: -1px;
  transform: rotate(45deg);
}

.nav-toggle.open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open .nav-toggle-bar:nth-child(3) {
  position: absolute;
  top: 50%;
  margin-top: -1px;
  transform: rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.65);
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.4s;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s, 0s;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 420px);
  max-width: 100vw;
  z-index: 1001;
  pointer-events: none;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s linear 0.45s;
}

.nav-drawer.is-open {
  pointer-events: auto;
  transform: translateX(0);
  visibility: visible;
  transition-delay: 0s, 0s;
}

.nav-drawer-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #141418 0%, #0d0d10 100%);
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.55);
}

.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(var(--margin-md) + env(safe-area-inset-top, 0px)) var(--margin-lg) var(--margin-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.nav-drawer-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-luxury-champagne);
  letter-spacing: 0.04em;
}

.nav-drawer-close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-luxury-champagne);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.nav-drawer-close:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.35);
}

.nav-drawer-close:active {
  transform: scale(0.95);
}

.nav-drawer-close-icon {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
}

.nav-drawer-close-icon::before,
.nav-drawer-close-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
}

.nav-drawer-close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-drawer-close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--margin-md) var(--margin-lg) calc(var(--margin-2xl) + env(safe-area-inset-bottom, 0px));
  -webkit-overflow-scrolling: touch;
}

.nav-drawer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.nav-drawer-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.nav-drawer.is-open .nav-drawer-list li {
  opacity: 1;
  transform: translateX(0);
}

.nav-drawer.is-open .nav-drawer-list li:nth-child(1) { transition-delay: 0.05s; }
.nav-drawer.is-open .nav-drawer-list li:nth-child(2) { transition-delay: 0.09s; }
.nav-drawer.is-open .nav-drawer-list li:nth-child(3) { transition-delay: 0.13s; }
.nav-drawer.is-open .nav-drawer-list li:nth-child(4) { transition-delay: 0.17s; }
.nav-drawer.is-open .nav-drawer-list li:nth-child(5) { transition-delay: 0.21s; }
.nav-drawer.is-open .nav-drawer-list li:nth-child(6) { transition-delay: 0.25s; }

.nav-drawer-list a {
  display: block;
  padding: var(--margin-md) 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.25s ease, padding-left 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  position: relative;
}

.nav-drawer-list a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  margin-top: 0;
  border-radius: 0 2px 2px 0;
  background: var(--color-luxury-gold);
  transition: height 0.3s ease, margin-top 0.3s ease;
}

.nav-drawer-list a:hover,
.nav-drawer-list a:focus-visible {
  color: var(--color-luxury-gold);
  padding-left: var(--margin-sm);
  outline: none;
}

.nav-drawer-list a:hover::before,
.nav-drawer-list a:focus-visible::before {
  height: 60%;
  margin-top: -15%;
}

.nav-drawer-list a::after {
  display: none;
}

body.nav-menu-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .hero {
    padding-top: 5rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.bento-large {
    grid-column: span 1;
  }

  .ingredients-spotlight {
    grid-template-columns: 1fr;
  }

  .product-card {
    flex: 0 0 260px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 14px;
  }

  .header-inner {
    padding: var(--margin-sm) var(--margin-md);
  }

  .brand {
    font-size: 0.95rem;
  }

  .hero {
    padding: 4.5rem var(--margin-md) var(--margin-xl);
    min-height: auto;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .price-current {
    font-size: 1.5rem;
  }

  .order-form {
    padding: var(--margin-md);
  }

  .section {
    padding: var(--margin-xl) var(--margin-md);
  }

  .section-title {
    font-size: 1.5rem;
  }

  .bento-grid {
    gap: var(--margin-sm);
  }

  .bento-card {
    padding: var(--margin-md);
  }

  .bento-card h3 {
    font-size: 1.2rem;
  }

  .bento-icon-glyph {
    font-size: 40px;
  }

  .bento-icon-glyph-lg {
    font-size: 46px;
  }

  .trust-block {
    gap: var(--margin-lg);
  }

  .trust-item {
    padding: var(--margin-md);
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-card {
    padding: var(--margin-md);
  }

  .ingredient-card {
    padding: var(--margin-md);
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-drawer {
    width: min(100%, 100vw);
  }

  .nav-drawer-head {
    padding-left: var(--margin-md);
    padding-right: var(--margin-md);
  }

  .nav-drawer-body {
    padding-left: var(--margin-md);
    padding-right: var(--margin-md);
  }

  .nav-drawer-list a {
    font-size: 1.05rem;
  }

  .footer-inner {
    padding-top: var(--margin-lg);
  }

  .footer-links {
    gap: var(--margin-sm);
  }

  .footer-copyright {
    font-size: 0.8rem;
  }

  .cookie-banner-inner {
    padding: var(--margin-sm);
  }

  .disclaimer-block {
    font-size: 0.8rem;
    padding: var(--margin-md);
  }

  main.policy-page {
    padding: 4.5rem 0.75rem var(--margin-lg);
    max-width: 100%;
    box-sizing: border-box;
  }

  .policy-page .policy-header {
    padding: var(--margin-md) 0 var(--margin-lg);
    margin-bottom: var(--margin-md);
  }

  .policy-page .policy-header h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: var(--margin-xs);
    word-break: break-word;
    hyphens: auto;
  }

  .policy-page .policy-date {
    font-size: 0.72rem;
    line-height: 1.45;
    letter-spacing: 0.03em;
    padding: 0 var(--margin-xs);
  }

  .policy-page .policy-content {
    padding: var(--margin-md) 0.875rem;
    border-radius: var(--radius-md);
    margin: 0;
    box-shadow: 0 2px 16px rgba(15, 15, 20, 0.06);
  }

  .policy-page h1 {
    font-size: 1.5rem;
    margin-bottom: var(--margin-md);
  }

  .policy-page h2 {
    font-size: 1.05rem;
    line-height: 1.3;
    margin-top: var(--margin-lg);
    margin-bottom: var(--margin-sm);
    display: block;
    padding-bottom: 0.35rem;
  }

  .policy-page h3 {
    font-size: 0.95rem;
    margin-top: var(--margin-md);
    margin-bottom: var(--margin-xs);
  }

  .policy-page p {
    font-size: 0.8125rem;
    line-height: 1.65;
    margin-bottom: var(--margin-sm);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .policy-page ul,
  .policy-page ol {
    margin: var(--margin-sm) 0 var(--margin-md);
    padding-left: 1.125rem;
  }

  .policy-page li {
    font-size: 0.8125rem;
    line-height: 1.6;
    margin-bottom: 0.4rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .policy-page .policy-contact {
    padding: var(--margin-md) 0.75rem;
    margin-top: var(--margin-lg);
    border-radius: var(--radius-sm);
  }

  .policy-page .policy-contact h2 {
    margin-top: 0;
  }

  .policy-page a {
    word-break: break-word;
  }

  body:not(.home-luxury) .footer {
    padding: var(--margin-lg) 0.75rem;
  }

  body:not(.home-luxury) .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  body:not(.home-luxury) .footer-copyright {
    font-size: 0.72rem;
    line-height: 1.5;
    word-wrap: break-word;
  }

  body:not(.home-luxury) .cookie-banner {
    padding: var(--margin-sm) 0.75rem;
  }

  body:not(.home-luxury) .cookie-banner-text {
    min-width: 0;
  }

  body:not(.home-luxury) .cookie-banner-buttons {
    width: 100%;
  }

  body:not(.home-luxury) .cookie-banner .btn {
    width: 100%;
    justify-content: center;
  }

  body:not(.home-luxury) .cookie-modal-content {
    width: calc(100vw - 1.5rem);
    max-width: none;
    padding: var(--margin-md) 0.875rem;
    margin: 0.75rem;
    max-height: calc(100vh - 1.5rem);
  }

  body:not(.home-luxury) .cookie-modal h3 {
    font-size: 1.1rem;
  }

  body:not(.home-luxury) .cookie-category {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--margin-sm);
  }

  body:not(.home-luxury) .cookie-category .cookie-toggle {
    align-self: flex-end;
  }

  body:not(.home-luxury) main:not(.policy-page) {
    padding-top: 4.5rem;
  }

  body:not(.home-luxury) .thank-you-content {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    min-height: auto;
  }

  body:not(.home-luxury) .thank-you-content p {
    font-size: 0.875rem;
  }

  .thank-you-content .thank-you-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }

  .thank-you-content h1 {
    font-size: 1.75rem;
  }
}

.policy-page {
  padding: var(--margin-2xl) var(--margin-lg);
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-luxury-cream);
}

.policy-page .policy-header {
  text-align: center;
  padding: var(--margin-2xl) 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.3);
  margin-bottom: var(--margin-2xl);
}

.policy-page .policy-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--color-luxury-charcoal);
  margin-bottom: var(--margin-sm);
}

.policy-page .policy-date {
  font-size: 0.9rem;
  color: var(--color-luxury-gold);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.policy-page .policy-content {
  background: white;
  padding: var(--margin-2xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(15, 15, 20, 0.06);
  border: 1px solid rgba(201, 169, 98, 0.15);
}

.policy-page h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--margin-lg);
}

.policy-page h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: var(--margin-xl);
  margin-bottom: var(--margin-md);
  color: var(--color-luxury-charcoal);
  padding-bottom: var(--margin-xs);
  border-bottom: 2px solid var(--color-luxury-gold);
  display: inline-block;
}

.policy-page h3 {
  font-size: 1.1rem;
  margin-top: var(--margin-lg);
  margin-bottom: var(--margin-sm);
  color: var(--color-text-primary);
}

.policy-page p {
  margin-bottom: var(--margin-md);
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.policy-page ul {
  margin: var(--margin-md) 0 var(--margin-md) var(--margin-lg);
}

.policy-page li {
  margin-bottom: var(--margin-sm);
  color: var(--color-text-secondary);
}

.policy-page a {
  color: var(--color-luxury-gold);
}

.policy-page .policy-contact {
  margin-top: var(--margin-2xl);
  padding: var(--margin-lg);
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.08), rgba(127, 0, 255, 0.04));
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-luxury-gold);
}

.thank-you-content {
  text-align: center;
  padding: var(--margin-2xl) var(--margin-lg);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--color-luxury-cream) 0%, white 100%);
}

.thank-you-content .thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--margin-lg);
  background: linear-gradient(135deg, var(--color-aqua-pulse), var(--color-ultra-violet));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  font-weight: 700;
  animation: pulse-glow 2s ease-in-out infinite;
}

.thank-you-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: var(--margin-md);
  background: linear-gradient(135deg, var(--color-ultra-violet), var(--color-luxury-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thank-you-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--margin-lg);
  max-width: 480px;
  line-height: 1.7;
}

.magnetic-wrap {
  display: inline-block;
  transition: transform var(--transition-normal);
}

@media (max-width: 968px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-media {
    order: -1;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .bento-card.bento-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .trust-block {
    grid-template-columns: 1fr;
  }

  .nav-desktop .nav-list {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}