/* =========================================================================
   AMBERNORD — LANDING PAGE STYLES
   css/landing.css
   Hero · Trust ribbon · Shop · Editorial · Exclusive section · Magic Garden · MasterBox
   ========================================================================= */

/* =========================================================================
   LANDING-PAGE STICKY NAV
   Appears after hero scrolls off screen. Different from the global nav.
   ========================================================================= */

.landing-sticky-nav {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(10px);
  z-index: var(--z-sticky);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  transition: top 0.4s var(--ease-smooth);
  border-bottom: 1px solid var(--color-border-gold);
}

.landing-sticky-nav.is-visible {
  top: 0;
}

.landing-sticky-voucher {
  display: none;
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
}

.landing-sticky-nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.landing-sticky-nav-btn {
  background-color: var(--color-gold);
  color: var(--color-bg);
  padding: 12px 30px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: background-color var(--t-fast) ease;
}

.landing-sticky-nav-btn:hover {
  background-color: var(--color-gold-hover);
}

@media (min-width: 768px) {
  .landing-sticky-voucher { display: block; }
}

@media (max-width: 768px) {
  .landing-sticky-nav    { padding: 15px 20px; }
  .landing-sticky-nav-btn { padding: 10px 20px; font-size: 10px; }
}

/* =========================================================================
   GSAP HERO SECTION
   ========================================================================= */

.scroll-track {
  position: relative;
  height: 200vh;
  background-color: var(--color-bg);
  width: 100%;
}

.sticky-viewport {
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scalable-hero {
  position: relative;
  width: calc(100vw - 40px);
  height: calc(100vh - 120px);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  will-change: width, height, border-radius;
  z-index: var(--z-above);
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.ambernord-hero-shade {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.65) 0%,
    rgba(10,10,10,0.85) 85%,
    rgba(10,10,10,1) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100vw;
  max-width: 900px;
  padding: 20px;
  color: var(--color-text);
  will-change: opacity;
  box-sizing: border-box;
  text-align: center;
}

.animation-workspace {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

/* Floating image cards */
.float-img {
  position: absolute;
  border-radius: 16px;
  opacity: 0;
  transform: scale(0.2);
  will-change: transform, opacity;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.float-card {
  background-size: cover;
  background-position: center;
  border: 1px solid var(--color-border-gold);
  overflow: hidden;
  box-sizing: border-box;
}

.float-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.8) 50%, rgba(10,10,10,0.4) 100%);
  z-index: 1;
}

.visual-card .float-card-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.float-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 20px;
  color: var(--color-text);
  text-align: left;
}

.float-card .card-eyebrow {
  color: var(--color-gold);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.float-card .card-value {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.1;
}

.float-card .card-text {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.img-1 { top: 6%;   left: 0%;   width: 260px; height: 280px; }
.img-2 { top: 38%;  left: -5%;  width: 240px; height: 300px; }
.img-3 { bottom: 5%; left: -3%; width: 300px; height: 240px; }
.img-4 { top: 10%;  right: 6%;  width: 200px; height: 260px; }
.img-5 { top: 35%;  right: -2%; width: 240px; height: 320px; }
.img-6 { bottom: 6%; right: 10%;width: 240px; height: 300px; }

/* Hero inner content */
#ambernord-hero-content {
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
}

.top-tagline-container {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(237, 163, 35, 0.4);
  padding-bottom: 8px;
  position: relative;
}

.tagline-part-1 {
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: inline;
}

.bio-wrapper {
  position: relative;
  display: inline-block;
}

.eu-bio-logo {
  height: 48px;
  width: auto;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  display: block;
}

#scrollTrack h1 {
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 30px;
  margin-top: 0;
  letter-spacing: 0.5px;
}

#scrollTrack h1 span {
  font-style: italic;
  color: var(--color-gold);
}

.ambernord-btn-clean {
  display: inline-block;
  padding: 16px 45px;
  background-color: var(--color-gold);
  color: var(--color-bg);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  transition: background-color var(--t-fast) ease,
              transform var(--t-fast) ease,
              box-shadow var(--t-fast) ease;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(237, 163, 35, 0.3);
}

.ambernord-btn-clean:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237, 163, 35, 0.5);
  color: var(--color-bg);
}

.hero-features-box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: -10px;
  margin-bottom: 50px;
  width: 100%;
}

.hero-product-img {
  height: 200px;
  width: 100px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-benefits-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: normal;
  line-height: 1.3;
  font-size: clamp(15px, 2.5vw, 28px);
  color: var(--color-text);
}

.hero-benefits-list span {
  margin: 5px 0;
}

.hero-benefits-list span:first-child { margin-top: 0; }
.hero-benefits-list span:last-child  { margin-bottom: 0; }

.native-oils-text {
  font-size: 12px;
  color: var(--color-text);
  font-weight: 500;
  margin-top: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-sans);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  line-height: 1.5;
}

/* Floating info button */
.floating-info-btn {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(15, 15, 15, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a0a0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  z-index: var(--z-sticky);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.floating-info-btn:hover {
  background: rgba(237, 163, 35, 0.1);
  border-color: rgba(237, 163, 35, 0.4);
  color: var(--color-gold);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 0 15px rgba(237, 163, 35, 0.2);
}

.floating-info-tooltip {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(5px);
  border: 1px solid var(--color-border-gold);
  color: var(--color-text);
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.floating-info-btn:hover .floating-info-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* =========================================================================
   TRUST RIBBON
   ========================================================================= */

.conversion-booster-wrapper {
  background-color: var(--color-bg);
  position: relative;
  z-index: var(--z-above);
  padding: 20px var(--container-pad) 0;
  max-width: 1100px;
  margin: -200px auto 0 auto;
  padding-top: 220px;
}

.trust-ribbon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  padding: 30px 0;
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  margin-bottom: 50px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.8;
  transition: opacity var(--t-fast) ease;
}

.trust-item:hover { opacity: 1; }

.trust-icon {
  color: var(--color-gold);
  font-size: 20px;
}

.trust-text {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

.trust-subtext {
  display: block;
  font-size: 10px;
  color: var(--color-text-dim);
  font-weight: 400;
  margin-top: 3px;
  font-family: var(--font-sans);
}

/* =========================================================================
   SHOP SECTION (Product cards on landing page)
   ========================================================================= */

.ambernord-section-wrapper {
  background-color: var(--color-bg);
  padding: 20px var(--container-pad) 80px;
  width: 100%;
  position: relative;
  z-index: var(--z-above);
  box-sizing: border-box;
}

.ambernord-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ambernord-content-title {
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 30px;
  margin-top: 0;
}

.ambernord-text-gold {
  color: var(--color-gold);
  font-style: italic;
  transition: color var(--t-base) ease;
}

.ambernord-content-subtitle {
  display: inline-block;
  color: #d8d8d8;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--color-border-gold);
  padding-bottom: 10px;
}

.ambernord-content-text {
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 25px;
}

.ambernord-content-text.no-margin { margin-bottom: 0; }
.ambernord-fw-500 { color: var(--color-text); font-weight: 500; }

.premium-product-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-surface-2);
  border-radius: 24px;
  border: 1px solid rgba(237, 163, 35, 0.15);
  padding: 40px 50px;
  margin-bottom: 40px;
  text-decoration: none;
  transition: transform var(--t-base) ease, border-color var(--t-base) ease;
  position: relative;
  gap: 30px;
  box-sizing: border-box;
  width: 100%;
}

.premium-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(237, 163, 35, 0.35);
}

.premium-product-card.highlight-habit {
  background: linear-gradient(145deg, #121212 0%, #16130c 100%);
  border-color: rgba(237, 163, 35, 0.35);
}

.premium-product-card.highlight-habit:hover {
  border-color: var(--color-gold);
}

.product-info-left {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.daily-price {
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: 28px;
  margin-bottom: 5px;
}

.p-extra-info {
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
}

.benefit-list li {
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-size: 13px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  line-height: 1.4;
}

.benefit-list li::before {
  content: '✓';
  color: var(--color-gold);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.product-card-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.card-img {
  width: 80px;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  margin-right: 30px;
  transition: transform var(--t-base) ease;
}

.premium-product-card:hover .card-img {
  transform: scale(1.05);
}

.premium-product-card.highlight-habit .card-img {
  width: 100px;
  max-height: 180px;
}

.card-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 140px;
}

.card-title    { color: var(--color-text);     font-family: var(--font-serif); font-size: 24px; margin: 0 0 4px 0; }
.card-units    { color: #888;                  font-family: var(--font-sans);  font-size: 13px; margin-bottom: 10px; }
.card-price    { color: #999;                  font-family: var(--font-sans);  font-size: 13px; font-weight: 400; margin-bottom: 0; }
.card-price .einmalig { font-size: 11px; font-weight: 300; opacity: 0.8; }
.card-shipping-note { color: #777; font-family: var(--font-sans); font-size: 9px; margin: 2px 0 12px 0; }

.card-arrow {
  color: var(--color-gold);
  font-size: 24px;
  margin-left: 20px;
  transition: transform var(--t-fast) ease;
}

.premium-product-card:hover .card-arrow {
  transform: translateX(5px);
}

.ambernord-card-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--color-gold);
  color: var(--color-bg);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: background-color var(--t-fast) ease;
}

.premium-product-card:hover .ambernord-card-btn {
  background-color: var(--color-gold-hover);
}

.product-badge {
  position: absolute;
  top: -12px;
  right: 30px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 4px;
  z-index: var(--z-above);
  line-height: 1.3;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 28px;
  width: max-content;
  max-width: 90%;
}

.badge-voucher {
  background: #121212;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
}

.badge-voucher span {
  font-size: 7.5px;
  font-weight: 600;
  color: #aaa;
  margin-top: 2px;
}

.badge-bestseller {
  background: var(--color-gold);
  color: var(--color-bg);
  border: 1px solid var(--color-gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 10px 24px;
}

.trust-payment-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-payment-row img {
  height: 20px;
  width: auto;
  opacity: 0.5;
  transition: opacity var(--t-fast) ease;
  object-fit: contain;
}

.trust-payment-row img:hover { opacity: 0.9; }

.protocol-info-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.protocol-info-title {
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.protocol-info-text {
  color: #a0a0a0;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

.protocol-info-text strong {
  color: var(--color-text);
  font-weight: 500;
}

/* =========================================================================
   EDITORIAL BENTO GRID (Manifest + Ritual cards)
   ========================================================================= */

.dynamic-editorial-wrapper {
  background-color: var(--color-bg);
  width: 100%;
}

.editorial-bento-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px var(--container-pad) 20px;
  position: relative;
  z-index: var(--z-above);
  box-sizing: border-box;
}

.nature-hero-wrapper { flex: 1; min-width: 0; }

.nature-hero-block {
  position: relative;
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(237, 163, 35, 0.4);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  z-index: 1;
  background-color: var(--color-surface);
  transition: border-color var(--t-base) ease;
  min-height: 350px;
}

.nature-hero-block:hover { border-color: var(--color-gold); }

.nature-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(0.8) contrast(1.05);
}

.nature-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  background: linear-gradient(
    to top,
    #111111 0%,
    rgba(10,10,10,0.6) 60%,
    rgba(10,10,10,0.2) 100%
  );
  transition: background var(--t-base) ease;
}

/* ✅ JAUNS */
.nature-hero-content {
  position: relative;
  z-index: 2;
  padding: 50px 60px;
  margin-top: auto;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nature-hero-content .ambernord-content-title,
.nature-hero-content .ambernord-content-subtitle,
.nature-hero-content .ambernord-content-text {
  max-width: 700px;
}

.nature-hero-content .card-hidden-content {
  max-width: 700px;
  text-align: center;
}

/* Accordion trigger */
.card-expand-trigger {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  margin-top: 30px;
  background: rgba(237, 163, 35, 0.05);
  border: 1px solid var(--color-gold);
  border-radius: 6px;
  cursor: pointer;
  color: var(--color-gold);
  transition: all var(--t-fast) ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  gap: 15px;
  width: max-content;
}

.card-expand-trigger:hover,
.card-expand-trigger.is-active {
  background: rgba(237, 163, 35, 0.15);
  box-shadow: 0 4px 15px rgba(237, 163, 35, 0.2);
}

.card-expand-trigger span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.card-expand-icon {
  transition: transform var(--t-base) ease;
  stroke: var(--color-gold);
}

.card-expand-trigger.is-active .card-expand-icon {
  transform: rotate(180deg);
}

.card-hidden-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity var(--t-base) ease, margin-top var(--t-base) ease;
}

.card-hidden-content.is-open {
  max-height: 800px;
  opacity: 1;
  margin-top: 20px;
}

/* =========================================================================
   EXCLUSIVE SECTION (scroll-triggered background reveal)
   ========================================================================= */

.exclusive-section-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.exclusive-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0;
  will-change: opacity;
}

.exclusive-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exclusive-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #0a0a0a 0%,
    rgba(10,10,10,0.75) 15%,
    rgba(10,10,10,0.75) 85%,
    #0a0a0a 100%
  );
}

.exclusive-content {
  position: relative;
  z-index: 2;
}

.exclusive-content .ambernord-content-text {
  color: var(--color-text);
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 0 4px rgba(0,0,0,0.7);
}

/* =========================================================================
   MAGIC GARDEN (Wide split rows + mini gallery + YouTube)
   ========================================================================= */

.magic-garden-core {
  width: 100%;
  padding: 80px var(--container-pad) 40px;
  position: relative;
  box-sizing: border-box;
}

.wide-split-row {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto 120px auto;
}

.wide-split-row.reverse { flex-direction: row-reverse; }

.wide-split-img {
  flex: 1;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  position: relative;
}

.wide-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
  transition: transform var(--t-slow) ease, filter var(--t-slow) ease;
}

.wide-split-row:hover .wide-split-img img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.wide-split-text {
  flex: 1;
  max-width: 500px;
}

.wide-split-text h2 {
  font-size: clamp(36px, 4vw, 52px);
  margin-bottom: 30px;
}

.wide-split-text p {
  font-size: 17px;
  line-height: 1.8;
}

/* YouTube embed */
.yt-video-wrapper {
  position: relative;
}

.yt-facade {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  cursor: pointer;
  background: #000;
}

.yt-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity var(--t-fast) ease;
}

.yt-facade:hover .yt-thumbnail { opacity: 1; }

.yt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 48px;
  transition: transform var(--t-fast) ease;
}

.yt-facade:hover .yt-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

.yt-video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Mini gallery (desktop 3-col grid, mobile horizontal scroll) */
.sourcing-mini-gallery {
  max-width: 1100px;
  margin: 0 auto 120px auto;
  padding: 0 var(--container-pad);
}

@media (min-width: 992px) {
  .sourcing-mini-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
  }

  .mini-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: #121212;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: transform var(--t-base) ease, box-shadow var(--t-base) ease;
    cursor: pointer;
  }

  .mini-gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
  }

  .mini-gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .mini-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow) ease;
    display: block;
  }

  .mini-gallery-item:hover img { transform: scale(1.04); }
}

.mini-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: var(--color-text);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-sans);
}

/* =========================================================================
   MASTERBOX CTA BLOCK
   ========================================================================= */

.show-more-btn {
  display: inline-block;
  padding: 14px 35px;
  background-color: var(--color-gold);
  color: var(--color-bg);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background-color var(--t-fast) ease;
  text-decoration: none;
}

.show-more-btn:hover {
  background-color: var(--color-gold-hover);
  color: var(--color-bg);
}

/* =========================================================================
   BOTTOM ANNOUNCEMENT BAR
   ========================================================================= */

.bottom-announcement {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-surface);
  color: var(--color-gold);
  text-align: center;
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: var(--z-sticky);
  border-top: 1px solid rgba(237, 163, 35, 0.2);
  box-sizing: border-box;
}

/* =========================================================================
   RESPONSIVE — LANDING PAGE
   ========================================================================= */

@media (max-width: 991px) {
  .float-img { display: none; }

  .scalable-hero h1 { font-size: 32px; }

  #ambernord-hero-content { padding: 40px 5px 30px 5px; }

  .top-tagline-container {
    border-bottom: none;
    padding-bottom: 0;
  }

  .tagline-part-1 {
    display: block;
    font-size: 10px;
    letter-spacing: 1.5px;
    border-bottom: 1px solid rgba(237, 163, 35, 0.4);
    padding-bottom: 8px;
  }

  .eu-bio-logo    { height: 38px; bottom: calc(100% + 5px); }
  .hero-product-img { height: 160px; width: 80px; }
  .hero-benefits-list { font-size: 15px; }
  .native-oils-text   { font-size: 9px; margin-top: 12px; }

  .trust-ribbon { flex-direction: column; gap: 25px; padding: 20px 0; }

  .premium-product-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 35px 25px 25px 25px;
    gap: 25px;
  }

  .product-info-left  { min-width: 100%; }
  .product-card-right { width: 100%; justify-content: flex-start; }
  .product-badge { top: -30px; right: 20px; }
  .badge-bestseller { font-size: 14px; padding: 12px 24px; }
  .card-img  { width: 65px; margin-right: 20px; }
  .premium-product-card.highlight-habit .card-img { width: 75px; }
  .card-title { font-size: 22px; }
  .daily-price { font-size: 24px; }
  .card-arrow { margin-left: auto; }
  .protocol-info-block { text-align: left; }
  .protocol-info-text  { font-size: 13px; }

  .wide-split-row {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }

  .wide-split-row.reverse { flex-direction: column; }
  .wide-split-img { height: 400px; width: 100%; }
  .wide-split-img.yt-video-wrapper { height: auto; aspect-ratio: 16 / 9; }
  .wide-split-text { max-width: 100%; padding: 0 10px; }

  .sourcing-mini-gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    margin-bottom: 60px;
    padding: 0 var(--container-pad) 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .sourcing-mini-gallery::-webkit-scrollbar { display: none; }

  .mini-gallery-item {
    flex: 0 0 85%;
    height: 280px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: center;
  }

  .mini-gallery-item img { width: 100%; height: 100%; object-fit: cover; }

  .nature-hero-content { padding: 30px 20px; }

  .floating-info-btn {
    right: 15px;
    bottom: 80px;
    top: auto;
    transform: none;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .floating-info-btn:hover { transform: scale(1.05); }

  .bottom-announcement { font-size: 9px; padding: 10px; }
}

@media (max-width: 768px) {
  #scrollTrack h1 { font-size: clamp(20px, 5.5vw, 28px); margin-bottom: 25px; }
  .ambernord-btn-clean { padding: 14px 35px; font-size: 13px; margin-bottom: 35px; }

  body.landing-page-active {
    padding-bottom: 40px;
  }
}
