/* ==========
   RESET & BASE
   ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(circle at top, #0f2a26 0%, #050809 55%, #020304 100%);
  color: #f5f1e6;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========
   TYPOGRAPHY
   ========== */
.serif {
  font-family: "Georgia", "Times New Roman", serif;
  letter-spacing: .04em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 0.7rem;
  color: rgba(245, 241, 230, 0.65);
}

h1, h2, h3, h4 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 500;
}

p {
  font-size: 0.95rem;
  color: rgba(245, 241, 230, 0.8);
}

.small-note {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ==========
   LAYOUT
   ========== */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

.content {
  flex: 1;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
  position: relative;
}

/* Subtle vignette & fog bands */
.page-wrapper::before,
.page-wrapper::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.page-wrapper::before {
  background:
    radial-gradient(circle at top left, rgba(120, 184, 148, 0.18) 0, transparent 60%),
    radial-gradient(circle at bottom right, rgba(83, 122, 96, 0.22) 0, transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.7;
}

.page-wrapper::after {
  background:
    radial-gradient(circle at top, rgba(0, 0, 0, 0.9) 0, transparent 55%),
    radial-gradient(circle at bottom, rgba(0, 0, 0, 0.92) 0, transparent 60%);
  mix-blend-mode: multiply;
}

.section {
  padding: 3.5rem 0;
  position: relative;
}

.section + .section {
  border-top: 1px solid rgba(221, 188, 120, 0.16);
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-size: 1.6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-header p {
  margin-top: 0.5rem;
  max-width: 540px;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

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

.grid-2-stacked {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
}

.divider {
  border-top: 1px solid rgba(221, 188, 120, 0.28);
  margin: 2.5rem 0 2rem;
}

.watermark {
  position: absolute;
  inset-inline: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-size: 4.2rem;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  user-select: none;
}

.marker {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
}

.marker::before,
.marker::after {
  content: "✦";
  margin: 0 0.35rem;
  opacity: 0.7;
}

/* ==========
   AD BADGE & STICKY STRIP
   ========== */
.ad-strip {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  padding: 0.4rem 0.8rem;
  background: linear-gradient(90deg, #f9ff2e, #ff6bd3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.ad-pill {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  padding: 0.3rem 1.1rem;
  border-radius: 999px;
  background: #111111;
  color: #f9ff2e;
  border: 1px solid rgba(0, 0, 0, 0.7);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.7),
    0 0 0 3px rgba(255, 255, 255, 0.09),
    0 0 18px rgba(0, 0, 0, 0.9);
}

.ad-pill span {
  color: #111111;
}

/* ==========
   HEADER
   ========== */
.site-header {
  position: sticky;
  top: 2.3rem;
  z-index: 30;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(221, 188, 120, 0.4);
  background: radial-gradient(circle at top left, rgba(54, 91, 71, 0.85), rgba(10, 16, 14, 0.98));
  box-shadow:
    0 18px 70px rgba(0, 0, 0, 0.78),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 10%, #f1e7c0, #d0b27d, #1c2a22);
  box-shadow:
    0 0 0 1px rgba(12, 19, 16, 0.9),
    0 10px 25px rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10120f;
  font-family: "Georgia", serif;
  font-weight: 700;
  font-size: 1.05rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 0.9rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.7rem;
  opacity: 0.75;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 230, 0.75);
  padding: 0.25rem 0;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #f3e6c4, #d4b57d);
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 0.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(221, 188, 120, 0.8);
  background: radial-gradient(circle at top left, rgba(239, 222, 177, 0.22), rgba(22, 34, 29, 0.98));
  color: #f9f4e6;
  box-shadow:
    0 0 0 1px rgba(4, 6, 5, 0.85),
    0 18px 55px rgba(0, 0, 0, 0.88);
  transition: transform 0.23s ease, box-shadow 0.23s ease, background 0.23s ease;
}

.btn span.icon {
  font-size: 0.85rem;
}

.btn:hover {
  transform: translateY(-1px) translateZ(0);
  background: radial-gradient(circle at top left, rgba(246, 233, 195, 0.35), rgba(28, 46, 37, 0.97));
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.9),
    0 20px 65px rgba(0, 0, 0, 0.95);
}

.btn-secondary {
  border-color: rgba(221, 188, 120, 0.5);
  background: rgba(12, 19, 16, 0.9);
}

.btn-secondary:hover {
  background: rgba(23, 35, 30, 0.98);
}

.age-note {
  margin-top: 0.6rem;
  font-size: 0.76rem;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.age-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe66b, #d9a84f);
  box-shadow: 0 0 6px rgba(255, 230, 107, 0.8);
}

.mobile-nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(221, 188, 120, 0.55);
  align-items: center;
  justify-content: center;
  color: #f5f1e6;
}

.mobile-nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: #f5f1e6;
  position: relative;
}

.mobile-nav-toggle span::before,
.mobile-nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: #f5f1e6;
}

.mobile-nav-toggle span::before {
  top: -5px;
}

.mobile-nav-toggle span::after {
  top: 5px;
}

.nav-mobile-open .mobile-nav-toggle span {
  background: transparent;
}

.nav-mobile-open .mobile-nav-toggle span::before {
  transform: translateY(5px) rotate(45deg);
}

.nav-mobile-open .mobile-nav-toggle span::after {
  transform: translateY(-5px) rotate(-45deg);
}

.nav-mobile-open .nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ==========
   HERO
   ========== */
.hero {
  padding-top: 4.5rem;
  padding-bottom: 4rem;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 3.2rem;
  align-items: center;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.hero-kicker-line {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, rgba(219, 186, 116, 0.0), rgba(219, 186, 116, 0.55));
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-headline span.accent {
  display: inline-block;
  background: linear-gradient(120deg, #f6e4bf, #d8b476, #f0e2c5);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  margin-top: 1.4rem;
  max-width: 480px;
  font-size: 0.98rem;
}

.hero-ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.1rem;
  align-items: center;
}

.hero-meta {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 230, 0.7);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-meta span.dot {
  width: 4px;
  height: 4px;
  background: rgba(221, 188, 120, 0.9);
  border-radius: 999px;
}

.hero-media {
  position: relative;
}

.hero-card {
  border-radius: 28px;
  padding: 1.4rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(145deg, rgba(22, 34, 29, 0.98), rgba(7, 11, 9, 0.98));
  border: 1px solid rgba(221, 188, 120, 0.55);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.92),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-image-placeholder {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(19, 33, 28, 0.9), rgba(4, 6, 5, 0.95)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 3px);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-label {
  position: absolute;
  left: 1.1rem;
  top: 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245, 241, 230, 0.8);
  background: rgba(1, 3, 2, 0.7);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(221, 188, 120, 0.65);
}

.hero-image-caption {
  position: absolute;
  right: 1.1rem;
  bottom: 1rem;
  font-size: 0.7rem;
  max-width: 230px;
  text-align: right;
  color: rgba(245, 241, 230, 0.8);
}

.hero-image-visual {
  font-size: 0.82rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(245, 241, 230, 0.5);
}

.hero-chip {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 10% 0, #ffe9b5, #d0aa68, #322719);
  color: #17130b;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
.hero-chip {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 10% 0, #ffe9b5, #d0aa68, #322719);
  color: #17130b;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.8),
    0 16px 40px rgba(0, 0, 0, 0.9);
}

.hero-chip span {
  display: block;
}

.hero-chip strong {
  font-size: 0.9rem;
}

.hero-disclaimer {
  margin-top: 1.3rem;
}

/* ==========
   DISCLAIMER BANNER (NEON)
   ========== */
.disclaimer-banner {
  border-radius: 18px;
  background: linear-gradient(120deg, #f9ff2e, #ffd84a, #fffb9c);
  color: #101010;
  padding: 0.9rem 1rem;
  font-size: 0.82rem;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.7),
    0 20px 40px rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.disclaimer-banner .badge {
  margin-top: 0.08rem;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #101010;
  color: #f9ff2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
}

.disclaimer-banner strong {
  font-weight: 600;
}

/* ==========
   STORY / CONCEPT SECTIONS
   ========== */
.story {
  position: relative;
}

.story-block {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
  padding: 2.8rem 0;
}

.story-block:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.story-block + .story-block {
  border-top: 1px solid rgba(221, 188, 120, 0.2);
}

.story-heading {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}

.story-copy p + p {
  margin-top: 0.7rem;
}

.story-tag {
  margin-bottom: 0.6rem;
}

.story-meta {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  opacity: 0.86;
}

.image-card {
  border-radius: 24px;
  padding: 1.1rem;
  border: 1px solid rgba(221, 188, 120, 0.45);
  background: radial-gradient(circle at top left, rgba(51, 85, 68, 0.8), rgba(6, 10, 8, 0.98));
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.9),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.image-placeholder {
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(14, 25, 21, 0.98), rgba(6, 8, 7, 0.98)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 3px);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.image-placeholder.alt {
  aspect-ratio: 3 / 4;
}

.image-placeholder-label {
  position: absolute;
  top: 0.7rem;
  left: 0.9rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245, 241, 230, 0.82);
}

.image-placeholder-caption {
  position: absolute;
  bottom: 0.8rem;
  right: 1rem;
  font-size: 0.72rem;
  max-width: 220px;
  text-align: right;
  color: rgba(245, 241, 230, 0.86);
}

.image-placeholder-visual {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  color: rgba(245, 241, 230, 0.6);
}

.luxury-detail-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.luxury-detail {
  flex: 1;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(25, 42, 36, 0.96), rgba(7, 10, 8, 0.96));
  padding: 0.35rem 0.8rem;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(245, 241, 230, 0.85);
}

.luxury-detail span.label {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.luxury-detail span.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle, #f6e3bd, #d2aa67);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.8),
    0 0 11px rgba(255, 226, 177, 0.9);
}

/* ==========
   BENEFITS GRID
   ========== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.benefit-card {
  border-radius: 18px;
  border: 1px solid rgba(221, 188, 120, 0.35);
  padding: 1.2rem 1.3rem;
  background: radial-gradient(circle at top left, rgba(42, 68, 54, 0.8), rgba(8, 11, 9, 0.98));
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.9),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card-content {
  position: relative;
}

.benefit-tag {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 230, 0.75);
}

.benefit-title {
  margin-top: 0.6rem;
  font-size: 1.08rem;
}

.benefit-body {
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.benefit-footnote {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  opacity: 0.8;
}

/* ==========
   INGREDIENTS
   ========== */
.ingredients-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
}

.ingredient-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.ingredient-tile {
  border-radius: 18px;
  border: 1px solid rgba(221, 188, 120, 0.35);
  padding: 0.6rem 0.7rem;
  background:
    linear-gradient(145deg, rgba(14, 25, 21, 0.98), rgba(7, 9, 8, 0.98));
}

.ingredient-tile-main {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(22, 40, 33, 0.98), rgba(5, 7, 6, 0.98));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(245, 241, 230, 0.72);
  text-align: center;
}

.ingredient-tile-caption {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  opacity: 0.82;
}

.accordion {
  border-radius: 20px;
  border: 1px solid rgba(221, 188, 120, 0.45);
  background:
    radial-gradient(circle at top left, rgba(46, 78, 61, 0.85), rgba(8, 11, 9, 0.97));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.92),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.accordion-item + .accordion-item {
  border-top: 1px solid rgba(221, 188, 120, 0.28);
}

.accordion-header {
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.accordion-title {
  font-size: 0.96rem;
}

.accordion-toggle {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(221, 188, 120, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.accordion-content {
  padding: 0 1.2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content-inner {
  padding: 0 0 1.1rem;
  font-size: 0.9rem;
}

.accordion-content-inner p + p {
  margin-top: 0.5rem;
}

.accordion-meta {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.85;
}

.accordion-link {
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

.accordion-link a {
  text-decoration: underline;
}

.accordion-item.open .accordion-content {
  padding-top: 0.2rem;
}

/* ==========
   ORDER SECTION
   ========== */
.order-card {
  border-radius: 26px;
  border: 1px solid rgba(221, 188, 120, 0.6);
  padding: 1.5rem 1.5rem 1.2rem;
  background:
    radial-gradient(circle at top left, rgba(65, 108, 84, 0.88), rgba(8, 11, 9, 0.98));
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.94),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 2.5rem;
}

form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.3rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.form-required {
  color: #ffb3bd;
}

input,
textarea,
select {
  background: rgba(9, 13, 11, 0.9);
  border-radius: 999px;
  border: 1px solid rgba(221, 188, 120, 0.45);
  padding: 0.6rem 0.9rem;
  color: #f5f1e6;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
  min-height: 90px;
  resize: vertical;
  border-radius: 18px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(243, 219, 163, 0.95);
  box-shadow: 0 0 0 1px rgba(243, 219, 163, 0.6);
  background: rgba(12, 18, 16, 0.98);
}

.checkbox-field {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  border-radius: 6px;
}

.form-footer {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-error {
  font-size: 0.8rem;
  color: #ffb3bd;
  display: none;
}

form.invalid .form-error {
  display: block;
}

/* ==========
   PRODUCT / PACKSHOT
   ========== */
.packshot {
  border-radius: 20px;
  border: 1px solid rgba(221, 188, 120, 0.5);
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(18, 31, 26, 0.98), rgba(6, 8, 7, 0.98));
}

.packshot-inner {
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0, rgba(103, 157, 124, 0.35), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(41, 63, 50, 0.9), rgba(4, 7, 6, 1));
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.packshot-caption {
  position: absolute;
  bottom: 0.85rem;
  right: 1rem;
  font-size: 0.72rem;
  max-width: 190px;
  text-align: right;
}

.packshot-placeholder {
  width: 52%;
  height: 64%;
  border-radius: 14px;
  border: 1px solid rgba(221, 188, 120, 0.76);
  background:
    linear-gradient(180deg, rgba(9, 15, 12, 0.98), rgba(21, 35, 29, 0.98));
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
}

.packshot-placeholder-title {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.packshot-placeholder-sub {
  font-size: 0.8rem;
  opacity: 0.8;
}

.packshot-ring {
  position: absolute;
  inset: auto;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  border: 1px dashed rgba(241, 220, 168, 0.3);
}

/* ==========
   LIFESTYLE CAROUSEL
   ========== */
.carousel {
  margin-top: 1.7rem;
  border-radius: 20px;
  border: 1px solid rgba(221, 188, 120, 0.4);
  background:
    radial-gradient(circle at top left, rgba(46, 78, 61, 0.85), rgba(8, 11, 9, 0.97));
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.7s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 1.1rem 1.2rem 1.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: center;
}

.carousel-visual {
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(22, 40, 33, 0.98), rgba(4, 7, 6, 0.98));
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(245, 241, 230, 0.7);
  position: relative;
}

.carousel-visual-caption {
  position: absolute;
  left: 0.85rem;
  top: 0.8rem;
  font-size: 0.7rem;
}

.carousel-visual-note {
  position: absolute;
  right: 0.8rem;
  bottom: 0.75rem;
  font-size: 0.72rem;
  max-width: 180px;
  text-align: right;
}

.carousel-copy h3 {
  font-size: 1.05rem;
}

.carousel-copy p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.carousel-controls {
  position: absolute;
  inset-inline: 0.9rem;
  bottom: 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.carousel-dots {
  display: flex;
  gap: 0.25rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(221, 188, 120, 0.7);
  background: transparent;
  opacity: 0.6;
}

.carousel-dot.active {
  background: rgba(221, 188, 120, 0.9);
  opacity: 1;
}

.carousel-arrows {
  display: flex;
  gap: 0.4rem;
}

.carousel-arrow {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(221, 188, 120, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  background: rgba(12, 18, 16, 0.9);
}

/* ==========
   RESEARCH & REFERENCES
   ========== */
.references-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.reference-card {
  border-radius: 18px;
  border: 1px solid rgba(221, 188, 120, 0.45);
  padding: 1rem 1.1rem 1.1rem;
  background:
    radial-gradient(circle at top left, rgba(42, 68, 54, 0.8), rgba(8, 11, 9, 0.98));
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.9),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.reference-source {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 230, 0.75);
}

.reference-title {
  font-size: 0.95rem;
}

.reference-summary {
  font-size: 0.86rem;
}

.reference-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}

.reference-url {
  opacity: 0.7;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* ==========
   FAQ
   ========== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 2rem;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(221, 188, 120, 0.35);
  padding: 1rem 1.2rem;
  background:
    linear-gradient(135deg, rgba(15, 26, 22, 0.98), rgba(6, 8, 7, 0.98));
}

.faq-question {
  font-size: 0.96rem;
  margin-bottom: 0.4rem;
}

.faq-answer {
  font-size: 0.86rem;
}

/* ==========
   FOOTER
   ========== */
.site-footer {
  padding: 1.8rem 1.5rem 2.2rem;
  border-top: 1px solid rgba(221, 188, 120, 0.38);
  background: radial-gradient(circle at top, rgba(17, 29, 25, 0.98), rgba(5, 7, 6, 1));
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.footer-brand {
  max-width: 360px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  font-size: 0.82rem;
}

.footer-nav-column-title {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  margin-bottom: 0.5rem;
}

.footer-nav a {
  display: block;
  margin-bottom: 0.25rem;
  opacity: 0.82;
}

.footer-bottom {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.78rem;
}

.footer-ad {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #f9ff2e, #ff6bd3);
  color: #111;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.footer-disclaimer {
  opacity: 0.8;
}

/* ==========
   SECONDARY PAGES
   ========== */
.page-hero {
  padding-top: 4.3rem;
  padding-bottom: 2.8rem;
}

.page-hero-title {
  font-size: 2rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero-sub {
  margin-top: 0.9rem;
  max-width: 520px;
}

.legal-section {
  margin-bottom: 2.4rem;
}

.legal-section h2 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

.legal-section h3 {
  font-size: 1.02rem;
  margin-top: 0.7rem;
}

.legal-section p + p {
  margin-top: 0.5rem;
}

.legal-list {
  margin-top: 0.4rem;
  padding-left: 1rem;
}

.legal-list li {
  list-style: disc;
  margin-bottom: 0.3rem;
}

/* ==========
   CONTACT PAGE
   ========== */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.6rem;
}

.contact-card {
  border-radius: 22px;
  border: 1px solid rgba(221, 188, 120, 0.55);
  padding: 1.5rem 1.4rem 1.3rem;
  background:
    radial-gradient(circle at top left, rgba(54, 91, 71, 0.85), rgba(10, 16, 14, 0.98));
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.92),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.contact-info-item + .contact-info-item {
  margin-top: 0.9rem;
}

.contact-info-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.contact-info-value {
  font-size: 0.9rem;
}

/* ==========
   COOKIE BANNER
   ========== */
.cookie-banner {
  position: fixed;
  inset-inline: 0.7rem;
  bottom: 0.7rem;
  max-width: 520px;
  margin-inline: auto;
  border-radius: 18px;
  border: 1px solid rgba(221, 188, 120, 0.65);
  background:
    radial-gradient(circle at top left, rgba(52, 88, 68, 0.92), rgba(6, 10, 8, 0.98));
  color: #f5f1e6;
  padding: 1rem 1.1rem;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.96),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  display: none;
  z-index: 60;
}

.cookie-banner-header {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.cookie-banner-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.cookie-banner-body {
  font-size: 0.82rem;
}

.cookie-banner-actions {
  margin-top: 0.8rem;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-ghost {
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(221, 188, 120, 0.5);
  background: transparent;
  color: #f5f1e6;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn-ghost.secondary {
  border-color: rgba(221, 188, 120, 0.28);
  opacity: 0.85;
}

/* ==========
   ANIMATIONS & INTERACTIONS
   ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hover-lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.95);
  border-color: rgba(243, 219, 163, 0.95);
}

/* ==========
   REDUCED MOTION
   ========== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========
   RESPONSIVE
   ========== */
@media (max-width: 1024px) {
  .hero-inner,
  .story-block,
  .ingredients-layout,
  .order-layout,
  .carousel-slide,
  .footer-inner,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-inner {
    gap: 2.4rem;
  }

  .hero-media {
    order: -1;
  }

  .story-block:nth-child(even) {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    gap: 1.7rem;
  }
}

@media (max-width: 840px) {
  .header-inner {
    border-radius: 22px;
  }

  .nav {
    position: absolute;
    left: 50%;
    top: calc(100% + 0.4rem);
    transform: translate(-50%, -6px);
    padding: 0.9rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(221, 188, 120, 0.6);
    background: radial-gradient(circle at top left, rgba(42, 68, 54, 0.98), rgba(7, 9, 8, 1));
    box-shadow:
      0 26px 60px rgba(0, 0, 0, 0.95),
      inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav a {
    font-size: 0.8rem;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .references-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 640px) {
  .content {
    padding-inline: 1.1rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    padding: 1rem;
  }

  .benefits-grid,
  .references-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-2,
  .grid-3,
  .grid-2-stacked {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carousel-slide {
    grid-template-columns: minmax(0, 1fr);
  }

  .carousel-visual {
    order: -1;
  }

  .cookie-banner {
    inset-inline: 0.5rem;
  }
}


