:root
{
  --charcoal: #161311;
  --charcoal-soft: #231f1b;
  --espresso: #3a312a;
  --cream: #faf7f2;
  --cream-muted: #efe8df;
  --pearl: #fffcf7;
  --ink: #1a1714;
  --muted: #5c534a;
  --accent-gold: #c4a062;
  --accent-gold-deep: #8e6b3a;
  --rose-metal: #b89278;
  --petrol: #1c3a45;
  --petrol-soft: rgba(28, 58, 69, 0.2);
  --white: #fffcf7;
  --footer-bg: #e5dfd5;
  --radius: 16px;
  --shadow-soft: 0 24px 64px rgba(22, 19, 17, 0.1), 0 8px 28px rgba(22, 19, 17, 0.06);
  --parallax-strength: 0.35;
  --glow-cta: 0 0 0 1px rgba(196, 160, 98, 0.45), 0 6px 28px rgba(196, 160, 98, 0.32), 0 18px 56px rgba(22, 19, 17, 0.14);
  --glow-soft: 0 0 0 1px rgba(196, 160, 98, 0.22), 0 10px 36px rgba(196, 160, 98, 0.14), 0 0 48px rgba(28, 58, 69, 0.08);
  --glow-icon: 0 0 20px rgba(196, 160, 98, 0.38), 0 8px 32px rgba(28, 58, 69, 0.12);
  --glow-card: 0 0 0 1px rgba(255, 252, 247, 0.14), 0 12px 40px rgba(22, 19, 17, 0.07), 0 0 72px rgba(196, 160, 98, 0.1);
  --glow-ring: 0 0 0 2px rgba(196, 160, 98, 0.38), 0 10px 32px rgba(196, 160, 98, 0.22), 0 22px 64px rgba(22, 19, 17, 0.1);
  --twinkle-dur: 4.2s;
  --editorial-card-bg: linear-gradient(165deg, var(--pearl) 0%, rgba(239, 232, 223, 0.72) 100%);
  --editorial-card-border: 1px solid rgba(196, 160, 98, 0.18);
  --editorial-card-radius: calc(var(--radius) + 4px);
  --editorial-card-shadow: var(--shadow-soft);
}

@media (max-width: 768px)
{
  :root
  {
    --parallax-strength: 0.12;
    --twinkle-dur: 2.5s;
  }
}

@keyframes hero-mesh-drift
{
  0%
  {
    background-position: 0% 30%, 100% 70%, 40% 50%;
  }

  100%
  {
    background-position: 100% 60%, 0% 40%, 60% 30%;
  }
}

@keyframes hero-shimmer-pass
{
  0%
  {
    transform: translateX(-50%) skewX(-14deg);
    opacity: 0;
  }

  20%
  {
    opacity: 0.14;
  }

  100%
  {
    transform: translateX(160%) skewX(-14deg);
    opacity: 0;
  }
}

@keyframes twinkle-spark
{
  0%, 100%
  {
    opacity: 0.1;
    transform: scale(0.85);
  }

  50%
  {
    opacity: 0.5;
    transform: scale(1);
  }
}

@keyframes hero-float-drift
{
  0%, 100%
  {
    transform: translateY(0) rotate(var(--float-rot, 0deg));
  }

  50%
  {
    transform: translateY(-4px) rotate(calc(var(--float-rot, 0deg) + 0.5deg));
  }
}

@keyframes btn-shine-sweep
{
  0%
  {
    transform: translateX(-130%) skewX(-16deg);
  }

  100%
  {
    transform: translateX(200%) skewX(-16deg);
  }
}

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

html
{
  scroll-behavior: smooth;
}

body
{
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  background-image: radial-gradient(120% 80% at 10% 0%, rgba(196, 160, 98, 0.06), transparent 50%),
    radial-gradient(90% 60% at 100% 20%, rgba(28, 58, 69, 0.04), transparent 45%);
}

h1, h2, h3, .logo-type
{
  font-family: Montserrat, system-ui, sans-serif;
}

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

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

.sr-only
{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container
{
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* —— Glow hover —— */
.glow-hover
{
  transition: box-shadow 0.4s ease, transform 0.35s ease, border-color 0.35s ease, filter 0.35s ease;
}
/*
.glow-hover:hover,
.glow-hover:focus-visible
{
  box-shadow: var(--glow-soft);
  transform: translateY(-1px);
}*/

/* ========== Scroll reveal ========== */
.reveal
{
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

html.w-reveal .reveal:not(.is-visible)
{
  opacity: 0;
  transform: translateY(32px);
  will-change: opacity, transform;
}

html.w-reveal .reveal.is-visible
{
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

html:not(.w-reveal) .reveal
{
  opacity: 1;
  transform: none;
}

/* ========== Header ========== */
#top
{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(196, 160, 98, 0.18);
  box-shadow: 0 1px 0 rgba(255, 252, 247, 0.6) inset, 0 8px 32px rgba(22, 19, 17, 0.04);
}

.header-inner
{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.logo-type
{
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  background: linear-gradient(105deg, var(--ink) 0%, var(--espresso) 40%, var(--accent-gold) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.nav-main
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.35rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-main a
{
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: transform 0.3s ease, opacity 0.3s ease, border-color 0.3s ease, box-shadow 0.35s ease;
}

.nav-main a:hover,
.nav-main a:focus-visible
{
  border-bottom-color: var(--accent-gold-deep);
  box-shadow: 0 10px 28px rgba(196, 160, 98, 0.22), 0 0 24px rgba(28, 58, 69, 0.08);
  transform: translateY(-2px) scale(1.02);
  opacity: 1;
}

.header-icons
{
  display: flex;
  justify-content: flex-end;
  justify-self: end;
  width: fit-content;
  margin-left: auto;
  gap: 0;
}

.header-icons a
{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--ink);
  transition: box-shadow 0.35s ease, transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.header-icons a:hover,
.header-icons a:focus-visible
{
  box-shadow: var(--glow-icon);
  background: rgba(255, 252, 247, 0.92);
  color: var(--petrol);
  transform: translateY(-2px) scale(1.04);
}

.header-icons svg
{
  width: 22px;
  height: 22px;
}

@media (max-width: 900px)
{
  .nav-main
  {
    display: none;
  }

  .header-inner
  {
    grid-template-columns: 1fr auto;
  }
}

/* ========== Hero ========== */
#hero
{
  position: relative;
  overflow-x: visible;
  overflow-y: visible;
  touch-action: pan-y;
  background: linear-gradient(155deg, var(--cream-muted) 0%, var(--pearl) 38%, #e8dfd4 72%, var(--cream) 100%);
  min-height: min(88vh, 720px);
  isolation: isolate;
}

#hero::before
{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(ellipse 80% 55% at 15% 25%, rgba(196, 160, 98, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 88% 15%, rgba(28, 58, 69, 0.12), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(255, 252, 247, 0.9), transparent 58%);
  background-size: 140% 140%, 130% 130%, 100% 100%;
  animation: hero-mesh-drift 22s ease-in-out infinite alternate;
  pointer-events: none;
}

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

.hero-shimmer-layer::after
{
  content: "";
  position: absolute;
  top: -20%;
  left: 0;
  width: 45%;
  height: 140%;
  background: linear-gradient(95deg, transparent 0%, rgba(255, 252, 247, 0.55) 45%, rgba(196, 160, 98, 0.15) 55%, transparent 100%);
  animation: hero-shimmer-pass 7s ease-in-out infinite;
}

.hero-glitter
{
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-glitter .spark
{
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 252, 247, 0.95) 0%, rgba(196, 160, 98, 0.5) 45%, transparent 70%);
  box-shadow: 0 0 10px rgba(196, 160, 98, 0.35);
  animation: twinkle-spark var(--twinkle-dur) ease-in-out infinite;
  will-change: opacity, transform;
}

.hero-glitter .spark:nth-child(1)
{
  top: 18%;
  left: 12%;
  animation-delay: 0s;
}

.hero-glitter .spark:nth-child(2)
{
  top: 42%;
  left: 8%;
  animation-delay: 0.7s;
}

.hero-glitter .spark:nth-child(3)
{
  top: 28%;
  left: 55%;
  animation-delay: 1.2s;
}

.hero-glitter .spark:nth-child(4)
{
  top: 62%;
  left: 22%;
  animation-delay: 0.3s;
}

.hero-glitter .spark:nth-child(5)
{
  top: 14%;
  left: 78%;
  animation-delay: 1.8s;
}

.hero-glitter .spark:nth-child(6)
{
  top: 72%;
  left: 68%;
  animation-delay: 0.9s;
}

.hero-glitter .spark:nth-child(7)
{
  top: 52%;
  left: 88%;
  animation-delay: 2.1s;
}

@media (max-width: 768px)
{
  .hero-glitter .spark:nth-child(n + 5)
  {
    display: none;
  }

  .hero-glitter .spark
  {
    width: 3px;
    height: 3px;
  }
}

.hero-grid
{
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 3rem 0 4rem;
}

.hero-copy h1
{
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  margin: 0 0 0.5rem;
  color: var(--charcoal);
  text-shadow: 0 0 40px rgba(196, 160, 98, 0.15);
}

.hero-tagline
{
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 1rem;
}

.hero-copy p
{
  max-width: 34ch;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.hero-copy > p.hero-tagline + p
{
  margin-bottom: 1.85rem;
}

.hero-copy .lux-size
{
  margin-top: 0.35rem;
}

/* —— Premium price + size (hero & size-cta) —— */
.lux-price
{
  margin: 0 0 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lux-price__was
{
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
  letter-spacing: 0.02em;
}

.lux-price__main
{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem 0.85rem;
}

.lux-price__now
{
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  background: linear-gradient(105deg, var(--charcoal) 0%, var(--charcoal-soft) 55%, var(--accent-gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.lux-price__now .js-count
{
  background: linear-gradient(105deg, var(--charcoal) 0%, var(--charcoal-soft) 55%, var(--accent-gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.lux-price__badge
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-gold-deep);
  border: 1px solid rgba(196, 160, 98, 0.65);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.55);
  box-shadow: 0 0 0 1px rgba(196, 160, 98, 0.12) inset;
}

.lux-size
{
  margin: 0 0 1.5rem;
  max-width: 420px;
}

.lux-size__legend
{
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.65rem;
}

.lux-size__row
{
  display: flex;
  gap: 0.65rem;
  align-items: stretch;
}

.lux-size__opt
{
  flex: 1 1 0;
  min-width: 0;
}

.lux-size__opt label
{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-height: 100%;
  padding: 0.95rem 1rem;
  cursor: pointer;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(196, 160, 98, 0.22);
  background: rgba(255, 252, 247, 0.42);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  box-shadow: 0 4px 24px rgba(22, 19, 17, 0.05);
  transition: box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease, transform 0.25s ease;
}

.lux-size__opt label:hover
{
  border-color: rgba(196, 160, 98, 0.45);
  background: rgba(255, 252, 247, 0.72);
  box-shadow: 0 8px 28px rgba(196, 160, 98, 0.12);
  transform: translateY(-1px);
}

.lux-size__opt input:checked + label
{
  border-color: rgba(196, 160, 98, 0.55);
  background: rgba(255, 252, 247, 0.88);
  box-shadow:
    0 0 0 1px rgba(196, 160, 98, 0.18),
    0 0 32px rgba(196, 160, 98, 0.18),
    inset 0 -4px 0 0 var(--accent-gold),
    inset 0 -8px 24px rgba(196, 160, 98, 0.12);
  transform: translateY(0);
}

.lux-size input:focus-visible + label
{
  outline: 2px solid var(--accent-gold-deep);
  outline-offset: 3px;
}

.lux-size__name
{
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--charcoal);
}

.lux-size__ml
{
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

/* ========== Size CTA strip ========== */
#size-cta
{
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #faf6f0 0%, var(--pearl) 100%);
  border-top: 1px solid rgba(196, 160, 98, 0.12);
  border-bottom: 1px solid rgba(196, 160, 98, 0.12);
}

.size-cta-inner
{
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
}

.size-cta-inner .lux-price
{
  align-items: center;
}

.size-cta-inner .lux-price__main
{
  justify-content: center;
}

.size-cta-inner .lux-size
{
  margin-inline: auto;
}

.size-cta-inner h2
{
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  margin: 0 0 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.size-cta-inner > p
{
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.btn-sage
{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--rose-metal) 48%, var(--accent-gold-deep) 100%);
  color: var(--pearl);
  font-weight: 600;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--glow-cta);
  transition: box-shadow 0.4s ease, transform 0.3s ease, filter 0.3s ease;
}

.btn-sage::after
{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, transparent 0%, rgba(255, 252, 247, 0.35) 50%, transparent 100%);
  transform: translateX(-130%) skewX(-16deg);
  animation: btn-shine-sweep 4.5s ease-in-out infinite;
  pointer-events: none;
}

.btn-sage:hover,
.btn-sage:focus-visible
{
  box-shadow: var(--glow-cta), 0 0 48px rgba(196, 160, 98, 0.35);
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-sage:hover::after,
.btn-sage:focus-visible::after
{
  animation-duration: 2.8s;
}

.hero-visual
{
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(min(520px, 70vh) + 2.5rem);
  padding: 1rem 0.5rem 1.5rem;
  box-sizing: border-box;
  overflow: visible;
}

#pres-trust.op-scroll-target
{
  scroll-margin-top: 5.5rem;
}

.hero-img-wrap
{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: min(690px, 100%);
  margin-inline: auto;
}

.hero-product-stack
{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: min(690px, 100%);
  margin-inline: auto;
  will-change: transform;
}

.hero-product-stack .hero-product-img--base
{
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(520px, 70vh);
  object-fit: contain;
  object-position: center;
  /*filter: drop-shadow(0 28px 48px rgba(22, 19, 17, 0.14))
    drop-shadow(0 12px 28px rgba(28, 58, 69, 0.1))
    drop-shadow(0 0 36px rgba(196, 160, 98, 0.18));*/
  transition: opacity 0.55s ease;
}

.hero-product-stack .hero-product-img--alt
{
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(520px, 70vh);
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%);
  /*filter: drop-shadow(0 28px 48px rgba(22, 19, 17, 0.14))
    drop-shadow(0 12px 28px rgba(28, 58, 69, 0.1))
    drop-shadow(0 0 36px rgba(196, 160, 98, 0.18))
    hue-rotate(44deg) saturate(1.16) brightness(1.05);*/
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.hero-product-stack.is-large .hero-product-img--base
{
  opacity: 0;
}

.hero-product-stack.is-large .hero-product-img--alt
{
  opacity: 1;
}

@media (prefers-reduced-motion: reduce)
{
  .hero-product-stack .hero-product-img--base,
  .hero-product-stack .hero-product-img--alt
  {
    transition-duration: 0.01ms;
  }
}

.hero-watermark
{
  position: absolute;
  z-index: 0;
  right: -0.5rem;
  top: 50%;
  max-width: none;
  width: max-content;
  overflow: visible;
  transform: translateY(-50%) rotate(-90deg);
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: clamp(4rem, 12vw, 7rem);
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: rgba(26, 23, 20, 0.19);
  text-shadow: 0 0 0.5px rgba(255, 252, 247, 0.95),
    0 1px 2px rgba(22, 19, 17, 0.12),
    0 0 40px rgba(196, 160, 98, 0.15);
  pointer-events: none;
  white-space: nowrap;
  will-change: transform;
}

.hero-floaties
{
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: visible;
}

.hero-floaty
{
  position: absolute;
  max-width: min(240px, 42vw);
  color: var(--accent-gold);
  animation: hero-float-drift 7.5s ease-in-out infinite;
  will-change: transform;
}

.hero-floaty__stars-row
{
  display: flex;
  align-items: center;
  gap: 2px;
  filter: drop-shadow(0 2px 8px rgba(196, 160, 98, 0.22));
}

.hero-floaty__star
{
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  color: inherit;
}

.hero-floaty__stars-row--pill .hero-floaty__star,
.hero-floaty__stars-row--quote .hero-floaty__star
{
  width: 11px;
  height: 11px;
}

.hero-floaty__stars-row--pill
{
  color: var(--accent-gold-deep);
}

.hero-floaty--rating
{
  --float-rot: 0deg;
  top: 10%;
  right: 6%;
  max-width: min(220px, 56vw);
  animation-duration: 8.5s;
  animation-delay: 0.35s;
  color: var(--charcoal-soft);
}

.hero-floaty__rating-pill
{
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(255, 252, 247, 0.42);
  border: 1px solid rgba(196, 160, 98, 0.28);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  box-shadow: 0 4px 22px rgba(22, 19, 17, 0.06), 0 0 0 1px rgba(255, 252, 247, 0.35) inset;
}

.hero-floaty__score
{
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--accent-gold-deep);
}

.hero-floaty__reviews
{
  font-weight: 600;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-floaty--quote
{
  max-width: min(280px, 54vw);
  animation-duration: 6.75s;
}

.hero-floaty--q1
{
  --float-rot: -2.1deg;
  left: 8%;
  bottom: 18%;
  animation-delay: 0.15s;
}

.hero-floaty--q2
{
  --float-rot: 1.85deg;
  right: 8%;
  bottom: 16%;
  animation-delay: 0.55s;
  animation-duration: 8.1s;
}

.hero-floaty--q3
{
  --float-rot: -1.35deg;
  right: 6%;
  top: 46%;
  animation-delay: 0.95s;
  animation-duration: 7.2s;
}

.hero-floaty__quote-card
{
  margin: 0;
  padding: 0.55rem 0.75rem 0.65rem;
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 500;
  color: var(--charcoal-soft);
  background: rgba(255, 252, 247, 0.78);
  border: 1px solid rgba(196, 160, 98, 0.28);
  border-radius: calc(var(--radius) - 4px);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  box-shadow: 0 10px 32px rgba(22, 19, 17, 0.1), 0 0 0 1px rgba(255, 252, 247, 0.5) inset;
  overflow: visible;
  max-width: min(260px, 48vw);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-floaty__quote-head
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.hero-floaty__quote-score
{
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-gold-deep);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.hero-floaty__quote-text
{
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.42;
  font-weight: 500;
  color: var(--charcoal-soft);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}

.hero-parallax-bg
{
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 28% 38%, rgba(255, 252, 247, 0.5), transparent 52%),
    radial-gradient(circle at 75% 55%, rgba(196, 160, 98, 0.12), transparent 45%);
  pointer-events: none;
  will-change: transform;
}

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

  .hero-visual
  {
    min-height: calc(min(400px, 58vh) + 2rem);
    padding: 0.75rem 0.5rem 1.25rem;
  }

  .hero-product-img
  {
    max-height: min(400px, 58vh);
  }

  .hero-watermark
  {
    right: 0;
    font-size: 3.5rem;
    color: rgba(26, 23, 20, 0.21);
    text-shadow: 0 0 0.55px rgba(255, 252, 247, 0.96),
      0 1px 2px rgba(22, 19, 17, 0.14),
      0 0 36px rgba(196, 160, 98, 0.16);
  }

  .hero-floaties
  {
    transform: scale(0.88);
    transform-origin: 50% 45%;
  }

  .hero-floaties .hero-floaty:nth-child(n + 4)
  {
    display: none;
  }
}

/* ========== Stats ========== */
#stats
{
  padding: 4rem 0;
  background: var(--pearl);
  border-bottom: 1px solid rgba(196, 160, 98, 0.12);
}

.stats-grid
{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-num
{
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.35rem;
}

#stats .stat-num .js-count,
.lux-price__was .js-count,
.lux-price__now .js-count,
.lux-price__badge .js-count
{
  font-variant-numeric: tabular-nums;
}

.stat-label
{
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 700px)
{
  .stats-grid
  {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== Full-bleed strips ========== */
.fullbleed
{
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  overflow: hidden;
}

.fullbleed-bg
{
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--charcoal-soft);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.fullbleed-scrim
{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(22, 19, 17, 0.12) 0%, rgba(22, 19, 17, 0.62) 100%);
}

.fullbleed-scrim--soft
{
  background: linear-gradient(105deg, rgba(22, 19, 17, 0.45) 0%, rgba(22, 19, 17, 0.18) 48%, rgba(28, 58, 69, 0.35) 100%);
}

.fullbleed-inner
{
  position: relative;
  z-index: 2;
}

.fullbleed-kicker
{
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.fullbleed-sub
{
  margin: 0;
  max-width: 22rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.35;
  color: var(--pearl);
  text-shadow: 0 1px 18px rgba(22, 19, 17, 0.45);
}

.fullbleed--mood
{
  min-height: clamp(240px, 48vh, 520px);
  background: #fffcf7;
}
.fullbleed--mood > div.container{
  position: relative;
}

.fullbleed--mood .fullbleed-inner
{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: clamp(240px, 48vh, 520px);
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
  padding-left: 3rem;
}

.fullbleed--tall
{
  min-height: clamp(320px, 52vh, 640px);
}

#atelier-mood .fullbleed-bg
{
  background-image: url("https://picsum.photos/seed/oneproduct-mood1/1920/800");
  background-position: 52% 56%;
}

#lookbook .fullbleed-bg
{
  background-image: url("https://picsum.photos/seed/oneproduct-editorial/1920/960");
  background-position: 48% 55%;
}

@media(max-width: 768px){
  .fullbleed--mood{
    min-height: clamp(240px, 38vh, 520px);
  }
  .fullbleed--mood .fullbleed-inner{
    min-height: clamp(240px, 38vh, 520px);
  }
}

.fullbleed-band
{
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(1.5rem, 4vw, 2.75rem) 0;
  background: linear-gradient(0deg, rgba(22, 19, 17, 0.78) 0%, rgba(22, 19, 17, 0.2) 55%, transparent 100%);
}

.fullbleed-band .container
{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.fullbleed-claim
{
  margin: 0;
  flex: 1 1 12rem;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--pearl);
  line-height: 1.25;
}

.fullbleed-cta
{
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  border-bottom: 1px solid rgba(196, 160, 98, 0.55);
  padding-bottom: 0.15rem;
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.fullbleed-cta:hover,
.fullbleed-cta:focus-visible
{
  color: var(--pearl);
  border-color: rgba(255, 252, 247, 0.65);
  box-shadow: 0 4px 0 -2px rgba(196, 160, 98, 0.35);
}

#craft-split .split-grid
{
  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
  min-height: clamp(280px, 42vh, 520px);
}

#craft-split .split-visual
{
  position: relative;
  min-height: clamp(280px, 42vh, 520px);
  background: var(--charcoal);
}

#craft-split .split-visual img
{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 42% center;
}

#craft-split .split-copy
{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3.5rem);
  background: linear-gradient(165deg, var(--pearl) 0%, var(--cream-muted) 100%);
  border-left: 1px solid rgba(196, 160, 98, 0.2);
}

#craft-split .split-copy .fullbleed-kicker
{
  color: var(--accent-gold-deep);
}

#craft-split .split-title
{
  margin: 0;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

#craft-split .split-text
{
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 28rem;
}

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

  #craft-split .split-visual
  {
    min-height: clamp(220px, 36vh, 360px);
  }

  #craft-split .split-copy
  {
    border-left: none;
    border-top: 1px solid rgba(196, 160, 98, 0.2);
  }
}

/* ========== Why ========== */
#why
{
  padding: 4.75rem 0;
  background: linear-gradient(180deg, var(--pearl) 0%, var(--cream) 100%);
}

.section-head
{
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  padding-inline: 0.5rem;
}

.section-head h2
{
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
  color: var(--charcoal-soft);
}

.section-head p
{
  margin: 0 auto;
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
  letter-spacing: 0.02em;
}

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

.why-card
{
  text-align: center;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(255, 252, 247, 0.92) 0%, rgba(239, 232, 223, 0.55) 100%);
  border: 1px solid rgba(196, 160, 98, 0.16);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.45s ease, transform 0.4s ease, border-color 0.35s ease;
}

.why-card:hover
{
  box-shadow: var(--glow-soft), var(--shadow-soft);
  transform: translateY(-6px);
  border-color: rgba(196, 160, 98, 0.35);
}

.why-icon
{
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  color: var(--accent-gold-deep);
}

.why-card h3
{
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.why-card p
{
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

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

/* ========== About ========== */
#about
{
  padding: 4.75rem 0;
  background: var(--cream-muted);
}

.about-grid
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-copy h2
{
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
}

.about-copy p
{
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.about-actions
{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-outline
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 2px solid var(--petrol);
  color: var(--charcoal);
  background: rgba(255, 252, 247, 0.35);
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  font-size: 0.95rem;
  transition: box-shadow 0.4s ease, transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.btn-outline:hover,
.btn-outline:focus-visible
{
  box-shadow: var(--glow-soft), 0 0 0 1px rgba(28, 58, 69, 0.12);
  transform: translateY(-2px);
  background: rgba(255, 252, 247, 0.75);
}

.about-visual
{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 1rem 0.75rem 1.25rem;
}

.about-visual img
{
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(420px, 55vh);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 28px 48px rgba(22, 19, 17, 0.14))
    drop-shadow(0 12px 28px rgba(28, 58, 69, 0.1))
    drop-shadow(0 0 36px rgba(196, 160, 98, 0.18));
}

.about-dots
{
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 6px);
  gap: 6px;
}

.about-dots span
{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
}

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

/* ========== Products ========== */
#products
{
  padding: 4.75rem 0;
  background: var(--pearl);
}

.products-row
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.product-ring
{
  text-align: center;
  width: 120px;
}

.product-ring a
{
  display: block;
}

.ring-svg
{
  width: 100px;
  height: 100px;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-deep);
  background: var(--white);
  transition: box-shadow 0.4s ease, transform 0.35s ease, border-color 0.35s ease, filter 0.35s ease;
}

.ring-svg svg
{
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 6px rgba(196, 160, 98, 0.25));
}

.product-ring a:hover .ring-svg,
.product-ring a:focus-visible .ring-svg
{
  box-shadow: var(--glow-ring);
  transform: translateY(-5px);
}

.product-ring span
{
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--charcoal-soft);
}

/* ========== Editorial split (container card) ========== */
.editorial-split
{
  width: min(1120px, 100%);
  margin-inline: auto;
  border-radius: var(--editorial-card-radius);
  overflow: hidden;
  border: var(--editorial-card-border);
  box-shadow: var(--editorial-card-shadow);
  background: var(--editorial-card-bg);
}

.editorial-split__grid
{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: stretch;
  min-height: clamp(260px, 38vh, 440px);
}

.editorial-split__copy
{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: clamp(1.5rem, 4vw, 2.75rem);
}

.editorial-split__kicker
{
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold-deep);
}

.editorial-split__copy h2
{
  margin: 0;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  line-height: 1.25;
}

.editorial-split__copy p
{
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.58;
  color: var(--muted);
  letter-spacing: 0.02em;
  max-width: 36rem;
}

.editorial-split__link
{
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold-deep);
  border-bottom: 1px solid rgba(196, 160, 98, 0.45);
  padding-bottom: 0.12rem;
  width: fit-content;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.editorial-split__link:hover,
.editorial-split__link:focus-visible
{
  color: var(--petrol);
  border-color: rgba(28, 58, 69, 0.35);
}

.editorial-split__media
{
  position: relative;
  min-height: clamp(220px, 34vh, 400px);
  background: var(--charcoal-soft);
}

.editorial-split__media video,
.editorial-split__media img
{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

#ritual-film
{
  padding: 4.75rem 0;
  background: linear-gradient(180deg, var(--cream-muted) 0%, var(--pearl) 55%, var(--pearl) 100%);
}

/* ========== Texture lab (image left, card) ========== */
#texture-lab
{
  padding: 4.75rem 0;
  background: linear-gradient(180deg, var(--pearl) 0%, var(--cream) 100%);
}

.texture-lab-card
{
  border-radius: var(--editorial-card-radius);
  overflow: hidden;
  border: var(--editorial-card-border);
  box-shadow: var(--editorial-card-shadow);
  background: var(--editorial-card-bg);
}

.texture-lab-grid
{
  display: grid;
  grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
  align-items: stretch;
  min-height: clamp(280px, 42vh, 480px);
}

.texture-lab-visual
{
  position: relative;
  min-height: clamp(240px, 38vh, 440px);
  background: var(--charcoal);
}

.texture-lab-visual img
{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.texture-lab-copy
{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border-left: var(--editorial-card-border);
}

.texture-lab-copy .texture-lab-kicker
{
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--petrol);
}

.texture-lab-copy h2
{
  margin: 0;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  line-height: 1.28;
}

.texture-lab-copy p,
.texture-lab-copy li
{
  font-size: 0.95rem;
  line-height: 1.58;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.texture-lab-copy p
{
  margin: 0;
}

.texture-lab-list
{
  margin: 0;
  padding: 0 0 0 1.15rem;
}

.texture-lab-list li
{
  margin-bottom: 0.45rem;
}

.texture-lab-list li:last-child
{
  margin-bottom: 0;
}

.texture-lab-anchors
{
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.texture-lab-anchors a
{
  color: var(--accent-gold-deep);
  border-bottom: 1px solid rgba(196, 160, 98, 0.4);
  /*padding-bottom: 0.12rem;*/
  transition: color 0.3s ease, border-color 0.3s ease;
}

.texture-lab-anchors a:hover,
.texture-lab-anchors a:focus-visible
{
  color: var(--petrol);
  border-color: rgba(28, 58, 69, 0.35);
}

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

  .editorial-split__media
  {
    min-height: clamp(200px, 42vw, 280px);
  }

  .texture-lab-grid
  {
    grid-template-columns: 1fr;
  }

  .texture-lab-visual
  {
    min-height: clamp(200px, 48vw, 320px);
  }

  .texture-lab-copy
  {
    border-left: none;
    border-top: var(--editorial-card-border);
  }
}

/* ========== Testimonials ========== */
#testimonials
{
  padding: 4.75rem 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--pearl) 45%, #faf6f0 100%);
}

.testi-track
{
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0 1.75rem;
  background: transparent;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.testi-track::-webkit-scrollbar
{
  height: 6px;
}

.testi-track::-webkit-scrollbar-thumb
{
  background: var(--accent-gold);
  border-radius: 99px;
}

.testi-card
{
  flex: 0 0 min(340px, 85vw);
  scroll-snap-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(196, 160, 98, 0.12);
  box-shadow: 0 8px 24px rgba(22, 19, 17, 0.06), 0 2px 8px rgba(22, 19, 17, 0.04);
  opacity: 0.55;
  transform: scale(0.94);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease, border-color 0.35s ease;
}

.testi-card.is-center
{
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 14px 36px rgba(22, 19, 17, 0.08), 0 4px 12px rgba(22, 19, 17, 0.05), 0 0 0 1px rgba(196, 160, 98, 0.12);
  border-color: rgba(196, 160, 98, 0.22);
}

.testi-card:hover,
.testi-card:focus-within
{
  box-shadow: 0 12px 32px rgba(22, 19, 17, 0.08), 0 2px 10px rgba(22, 19, 17, 0.05);
  border-color: rgba(196, 160, 98, 0.26);
}

.testi-card.is-center:hover,
.testi-card.is-center:focus-within
{
  box-shadow: 0 18px 44px rgba(22, 19, 17, 0.1), 0 4px 14px rgba(22, 19, 17, 0.06), 0 0 0 1px rgba(196, 160, 98, 0.18);
  border-color: rgba(196, 160, 98, 0.28);
}

.testi-quote
{
  color: var(--accent-gold-deep);
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.35rem;
  font-family: Georgia, serif;
}

.testi-stars
{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 0.65rem;
  color: var(--accent-gold);
}

.testi-stars svg
{
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}

.testi-rating-num
{
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-gold-deep);
}

.testi-text
{
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
  line-height: 1.58;
}

.testi-author
{
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-author img
{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-author strong
{
  display: block;
  font-size: 0.9rem;
}

.testi-author span
{
  font-size: 0.8rem;
  color: var(--muted);
}

/* ========== Partners ========== */
#partners
{
  padding: 4rem 0;
  background: linear-gradient(180deg, #f3ece4 0%, var(--cream-muted) 55%, #ebe4da 100%);
}

.partners-row
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2.5rem;
}

.partner-ph
{
  min-width: 120px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.72);
  border: 1px solid rgba(28, 58, 69, 0.12);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  transition: box-shadow 0.35s ease, transform 0.3s ease, border-color 0.3s ease;
}

.partner-ph:hover,
.partner-ph:focus-visible
{
  box-shadow: var(--glow-soft);
  transform: translateY(-1px);
  border-color: rgba(196, 160, 98, 0.35);
}

/* ========== Newsletter ========== */
#newsletter
{
  padding: 4.75rem 0;
  background: linear-gradient(180deg, #ebe4da 0%, var(--white) 28%, var(--white) 100%);
}

.news-grid
{
  display: grid;
  grid-template-columns: minmax(100px, 140px) 1fr;
  gap: 2rem;
  align-items: stretch;
  background: linear-gradient(135deg, var(--cream-muted) 0%, rgba(255, 252, 247, 0.9) 55%, var(--cream-muted) 100%);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid rgba(196, 160, 98, 0.14);
  box-shadow: var(--shadow-soft);
}

.news-deco
{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 1.5rem 1rem;
  background: rgba(28, 58, 69, 0.05);
  border-right: 1px solid rgba(196, 160, 98, 0.12);
}

.news-deco svg
{
  width: min(120px, 100%);
  max-width: 120px;
  height: auto;
  color: var(--petrol);
}

.news-form-wrap
{
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-form-wrap h2
{
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.news-form-wrap > p
{
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.news-row
{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.news-row input
{
  flex: 1 1 200px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(26, 23, 20, 0.14);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  background: rgba(255, 252, 247, 0.85);
  transition: box-shadow 0.35s ease, border-color 0.3s ease, transform 0.25s ease;
}

.news-row input:focus-visible
{
  outline: none;
  border-color: rgba(196, 160, 98, 0.55);
  box-shadow: 0 0 0 3px rgba(196, 160, 98, 0.2), 0 0 36px rgba(196, 160, 98, 0.25), 0 8px 28px rgba(28, 58, 69, 0.08);
  transform: scale(1.01);
}

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

  .news-deco
  {
    min-height: 0;
    padding: 1.25rem 1rem 0.5rem;
    border-right: none;
    border-bottom: 1px solid rgba(196, 160, 98, 0.1);
    justify-content: center;
  }

  .news-deco svg
  {
    max-width: 88px;
  }
}

/* ========== Footer ========== */
#footer
{
  background: var(--footer-bg);
  padding: 3.5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid
{
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo-type
{
  margin-bottom: 0.75rem;
}

.footer-social
{
  display: flex;
  gap: 0.5rem;
}

.footer-social a
{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: box-shadow 0.35s ease, transform 0.3s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible
{
  box-shadow: var(--glow-soft);
  transform: scale(1.06);
}

.footer-social svg
{
  width: 18px;
  height: 18px;
}

.footer-col h3
{
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.footer-col ul
{
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li
{
  margin-bottom: 0.45rem;
}

.footer-col a:hover
{
  text-decoration: underline;
}

.footer-mini input
{
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(44, 44, 44, 0.12);
  margin-bottom: 0.5rem;
  font-family: inherit;
}

.footer-bottom
{
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(44, 44, 44, 0.08);
}

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

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

@media (prefers-reduced-motion: reduce)
{
  html
  {
    scroll-behavior: auto;
  }

  #hero::before
  {
    animation: none !important;
    background-position: 40% 35%, 70% 25%, 50% 100%;
  }

  .hero-shimmer-layer::after
  {
    animation: none !important;
    opacity: 0;
  }

  .hero-glitter .spark
  {
    animation: none !important;
    opacity: 0.2;
    transform: none;
  }

  .hero-floaty
  {
    animation: none !important;
    transform: none !important;
  }

  .btn-sage::after
  {
    animation: none !important;
    opacity: 0;
  }

  html.w-reveal .reveal
  {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .parallax-layer,
  .hero-product-img,
  .hero-watermark
  {
    transform: none !important;
  }

  .glow-hover
  {
    transition: none !important;
  }

  .glow-hover:hover,
  .glow-hover:focus-visible
  {
    transform: none;
  }

  .nav-main a:hover,
  .nav-main a:focus-visible
  {
    transform: none;
  }

  .header-icons a:hover,
  .header-icons a:focus-visible
  {
    transform: none;
  }

  .lux-size__opt label:hover
  {
    transform: none;
  }

  .btn-sage:hover,
  .btn-sage:focus-visible
  {
    transform: none;
  }

  .btn-outline:hover,
  .btn-outline:focus-visible
  {
    transform: none;
  }

  .why-card:hover
  {
    transform: none;
  }

  .product-ring a:hover .ring-svg,
  .product-ring a:focus-visible .ring-svg
  {
    transform: none;
  }

  .partner-ph:hover,
  .partner-ph:focus-visible
  {
    transform: none;
  }

  .footer-social a:hover,
  .footer-social a:focus-visible
  {
    transform: none;
  }

  .news-row input:focus-visible
  {
    transform: none;
  }
}

/* Tema: üst güven şeridi (CMS Trust satırları) */
.op-pres-trust
{
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(196, 160, 98, 0.14);
  background: rgba(255, 252, 247, 0.55);
}

.op-pres-trust-inner
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
}

.op-pres-trust-sep
{
  color: rgba(92, 83, 74, 0.35);
  user-select: none;
}

.op-pres-trust-item
{
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: 0.02em;
}

.op-pres-trust-icon
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05rem;
  height: 1.05rem;
  color: var(--ink);
  opacity: 0.7;
}

.op-pres-trust-icon svg
{
  width: 100%;
  height: 100%;
}

.hero-img-wrap
{
  position: relative;
}

.hero-product-badge
{
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  z-index: 5;
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid rgba(196, 160, 98, 0.32);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(22, 19, 17, 0.08);
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.hero-product-badge__kicker
{
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold-deep);
  font-weight: 600;
}

.hero-product-badge__title
{
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
}

@media (max-width: 600px)
{
  .hero-product-badge
  {
    top: 0.2rem;
    left: 0.2rem;
    padding: 0.4rem 0.65rem;
  }

  .hero-product-badge__kicker
  {
    font-size: 0.55rem;
  }

  .hero-product-badge__title
  {
    font-size: 0.72rem;
  }
}

.texture-lab-variant-label
{
  display: block;
  margin-top: 0.75rem;
}

.texture-lab-anchors--cta
{
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.news-form-text
{
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.news-row--cta
{
  justify-content: flex-start;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%
}

.input-group>.form-control,.input-group>.form-floating,.input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0
}

.input-group>.form-control:focus,.input-group>.form-floating:focus-within,.input-group>.form-select:focus {
    z-index: 5
}

.input-group .btn {
    position: relative;
    z-index: 2
}

.input-group .btn:focus {
    z-index: 5
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .375rem
}

.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .5rem
}

.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .25rem
}

.input-group-lg>.form-select,.input-group-sm>.form-select {
    padding-right: 3rem
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.custom-quantity{
  background: #f0f0f0;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  line-height: 1.5;
}
.custom-quantity span{
  display: block;
}
.custom-quantity .btn{
  background: #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border: 1px solid #dedede;
  color: #242424;
  padding: 10px;
  cursor: pointer;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.custom-quantity .btn:hover{
  color: var(--main-color);
}
.custom-quantity input{
  border: 1px solid #dedede;
  color: #242424;
  width: 50px;
  height: 40px;
  text-align: center;
}
.custom-quantity input[type="number"]::-webkit-outer-spin-button,
.custom-quantity input[type="number"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}
.custom-quantity input[type="number"]{
  -moz-appearance: textfield;
  appearance: textfield;
}

.op-pdp-announce{
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
  border: 1px solid #eee;
}
.op-pdp-announce img{
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.f-spot{
  color: rgba(26, 23, 20, 0.88);
  margin-bottom: 0.75rem;
}

.op-mobile-menu{
    display: none;
}
@media(max-width: 768px){
    .op-nav{
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #fff;
        flex-direction: column;
        width: 100%;
        padding: 1rem;
        gap: 10px;
        display: none;
    }
    .op-nav.show{
        display: flex;
    }
    .hero-grid{
        gap: 1rem;
        padding: 3rem 0;
    }
    #size-cta{
        padding: 3rem 0;
    }
    .op-select{
        max-width: 100%;
    }
    .op-mobile-menu{
        display: block;
    }
    .op-header-actions{
        gap: 1rem;
    }
}

.op-pdp-buybox{
  position: sticky;
  top: 130px;
}
.op-pdp-grid{
  align-items: flex-start;
}