/* Fonts: self-hosted via css/fonts.css (no Google Fonts / external requests) */
/* tokens.css is loaded via <link> in index.html so layout variables work even if @import is blocked on the host */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--adf-font-body);
  font-size: 1.0625rem;
  line-height: var(--adf-leading-body);
  color: var(--adf-text-body);
  background: var(--adf-cream-base);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--adf-berry-primary);
  text-decoration: none;
  transition: color var(--adf-duration-hover) var(--adf-ease-out);
}

a:hover {
  color: var(--adf-berry-primary-hover);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--adf-gutter);
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--adf-onyx);
  color: var(--adf-white);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Layout */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem var(--adf-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: none;
  outline: none;
  box-shadow: none;
  /* No top “white wash” — let the hero / video show through; readability when scrolled uses .is-scrolled */
  background: transparent;
  transition:
    background 0.35s var(--adf-ease-out),
    backdrop-filter 0.35s var(--adf-ease-out);
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem 1.35rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.lang-switch__sep {
  font-family: var(--adf-font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
  user-select: none;
  line-height: 1;
  transition:
    color 0.3s var(--adf-ease-out),
    text-shadow 0.3s var(--adf-ease-out);
}

.lang-switch__btn {
  margin: 0;
  padding: 0.15rem 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--adf-font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: var(--adf-tracking-label);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  transition:
    color 0.3s var(--adf-ease-out),
    box-shadow 0.3s var(--adf-ease-out),
    text-shadow 0.3s var(--adf-ease-out);
  box-shadow: 0 1px 0 transparent;
}

.lang-switch__btn:hover {
  color: rgba(255, 255, 255, 1);
}

.lang-switch__btn.is-active {
  color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.site-header.is-scrolled:not(.is-on-dark) .lang-switch__sep {
  color: rgba(61, 61, 61, 0.35);
  text-shadow: none;
}

.site-header.is-scrolled:not(.is-on-dark) .lang-switch__btn {
  color: var(--adf-onyx-soft);
  text-shadow: none;
}

.site-header.is-scrolled:not(.is-on-dark) .lang-switch__btn:hover {
  color: var(--adf-berry-primary);
}

.site-header.is-scrolled:not(.is-on-dark) .lang-switch__btn.is-active {
  color: var(--adf-berry-primary);
  box-shadow: 0 1px 0 var(--adf-berry-primary);
}

.lang-switch__btn:focus-visible {
  outline: 2px solid rgba(196, 30, 107, 0.35);
  outline-offset: 3px;
}

.site-header.is-scrolled {
  background: rgba(250, 247, 245, 0.92);
  backdrop-filter: blur(10px);
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.logo-mark-img {
  display: block;
  height: clamp(2.75rem, 7vw, 3.85rem);
  width: auto;
  max-width: min(300px, 62vw);
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--adf-font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: var(--adf-tracking-label);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
  transition: color 0.3s var(--adf-ease-out), text-shadow 0.3s var(--adf-ease-out);
}

.nav-links a:hover {
  color: rgba(255, 255, 255, 1);
}

.site-header.is-scrolled:not(.is-on-dark) .nav-links a {
  color: var(--adf-onyx);
  text-shadow: none;
}

.site-header.is-scrolled:not(.is-on-dark) .nav-links a:hover {
  color: var(--adf-berry-primary);
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .site-header__nav {
    justify-content: flex-end;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-family: var(--adf-font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: var(--adf-tracking-label);
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition:
    background var(--adf-duration-hover) var(--adf-ease-out),
    color var(--adf-duration-hover) var(--adf-ease-out),
    border-color var(--adf-duration-hover) var(--adf-ease-out),
    box-shadow var(--adf-duration-hover) var(--adf-ease-out),
    transform var(--adf-duration-hover) var(--adf-ease-out);
}

.btn--primary {
  background: var(--adf-berry-primary);
  color: var(--adf-white);
}

.btn--primary:hover {
  background: var(--adf-berry-primary-hover);
  color: var(--adf-white);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--adf-onyx);
  border: 1px solid var(--adf-charcoal-line);
}

.btn--ghost:hover {
  border-color: var(--adf-berry-primary);
  color: var(--adf-berry-primary);
}

/* Sticky micro-CTA */
/* Hero — default markup uses .hero--immersive (full-bleed); non-immersive rules support legacy / reduced layouts */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  background: var(--adf-cream-warm);
  overflow: hidden;
}

.hero__video-stage {
  position: absolute;
  z-index: 0;
  overflow: hidden;
  background: var(--adf-cream-warm);
  border-radius: 4px;
  box-shadow: 0 24px 48px rgba(28, 28, 28, 0.08);
  transition:
    top 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    right 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    bottom 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    left 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    width 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    height 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    max-width 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    max-height 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 1.35s cubic-bezier(0.22, 1, 0.36, 1);
  top: 50%;
  right: var(--adf-gutter);
  left: auto;
  bottom: auto;
  width: min(44vw, 440px);
  max-width: calc(50vw - var(--adf-gutter) - 0.75rem);
  aspect-ratio: 4 / 5;
  max-height: min(520px, 68vh);
  height: auto;
  transform: translateY(-50%);
}

@media (max-width: 899px) {
  .hero__video-stage {
    top: auto;
    bottom: 12%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: min(86vw, 400px);
    max-width: none;
    max-height: min(48vh, 420px);
  }
}

.hero--immersive .hero__video-stage {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  aspect-ratio: auto;
  transform: none;
  border-radius: 0;
  box-shadow: none;
}

.hero__video-film {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    165deg,
    rgba(255, 251, 249, 0.25) 0%,
    rgba(255, 255, 255, 0) 38%,
    rgba(243, 228, 234, 0.17) 100%
  );
  transition: opacity 1s ease;
}

.hero--immersive .hero__video-film {
  /* Lighter veil so the source footage stays closer to native contrast/saturation */
  opacity: 0.38;
  background: linear-gradient(
    125deg,
    rgba(236, 214, 224, 0.06) 0%,
    rgba(255, 255, 255, 0) 52%,
    rgba(243, 228, 234, 0.09) 100%
  );
}

/*
 * Read-side atmosphere: plum-blush veil (not flat white).
 * Logic: one soft gradient + the copy card handle contrast — avoid stacking
 * cream scrim + frosted card + heavy text-shadow (that reads as a “white halo”).
 */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.1s ease 0.15s;
  background: linear-gradient(
    118deg,
    rgba(225, 198, 214, 0.36) 0%,
    rgba(236, 216, 226, 0.2) 34%,
    rgba(244, 232, 238, 0.07) 56%,
    rgba(244, 236, 240, 0) 78%
  );
}

.hero--immersive .hero__scrim {
  opacity: 1;
}

@media (max-width: 899px) {
  .hero__scrim {
    background: linear-gradient(
      185deg,
      rgba(228, 204, 216, 0.34) 0%,
      rgba(238, 222, 230, 0.16) 42%,
      rgba(244, 236, 240, 0) 82%
    );
  }
}

.hero__shell {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem var(--adf-gutter) var(--adf-section-y);
}

.hero__inner {
  position: relative;
  max-width: var(--adf-max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero:not(.hero--immersive) .hero__inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero--immersive .hero__inner {
    grid-template-columns: 1fr;
    max-width: var(--adf-max-width);
    margin: 0 auto;
    justify-items: start;
  }

  .hero--immersive .hero__copy {
    max-width: min(36rem, 100%);
  }

  .hero__spacer {
    min-height: min(520px, 68vh);
  }

  .hero--immersive .hero__spacer {
    display: none;
  }
}

@media (max-width: 899px) {
  .hero__spacer {
    display: none;
  }

  .hero--immersive .hero__inner {
    max-width: 36rem;
  }
}

/* Hero copy — blush-tinted glass (matches scrim; avoids a stark white slab) */
.hero__copy {
  padding: 1.3rem 1.4rem;
  max-width: 100%;
  background: rgba(252, 244, 248, 0.4);
  backdrop-filter: blur(18px) saturate(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-right: none;
  border-radius: 2px;
  box-shadow:
    0 10px 40px rgba(42, 18, 32, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

@media (max-width: 899px) {
  .hero__copy {
    padding: 1.45rem 1.5rem;
    background: rgba(252, 244, 248, 0.5);
    backdrop-filter: blur(22px) saturate(1.06);
    -webkit-backdrop-filter: blur(22px) saturate(1.06);
  }
}

@media (min-width: 900px) {
  .hero__copy {
    padding: 1.5rem 1.85rem 1.85rem 1.55rem;
    background: rgba(252, 244, 248, 0.16);
    backdrop-filter: blur(11px) saturate(1.03);
    -webkit-backdrop-filter: blur(11px) saturate(1.03);
    border: 1px solid rgba(255, 248, 252, 0.32);
    border-left: 2px solid rgba(196, 30, 107, 0.2);
    border-right: none;
    border-radius: 0 4px 4px 0;
    box-shadow:
      0 6px 28px rgba(42, 18, 32, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.32);
  }

  .hero--immersive .hero__copy {
    margin-left: -0.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__copy {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(252, 244, 248, 0.82);
  }

  @media (min-width: 900px) {
    .hero__copy {
      background: rgba(252, 244, 248, 0.45);
    }
  }
}

/* Hero type: Manrope label + Cormorant title + Source Sans body (no third serif) */
.hero__eyebrow {
  font-family: var(--adf-font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 182, 210, 0.95);
  margin: 0 0 1.15rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero__eyebrow::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  margin-top: 0.7rem;
  margin-bottom: 0.15rem;
  background: linear-gradient(
    90deg,
    rgba(148, 50, 92, 0.55),
    rgba(196, 30, 107, 0)
  );
}

/* Light hero type — trial for contrast on dark video (revert colors if you prefer dark on glass) */
.hero h1 {
  font-family: "EB Garamond", "Cormorant Garamond", Garamond, Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.15rem, 4.5vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0.012em;
  color: rgba(255, 252, 250, 0.97);
  margin: 0 0 1.45rem;
  text-transform: none;
  font-variant-ligatures: none;
  font-feature-settings: "kern" 1, "liga" 0, "clig" 0, "dlig" 0;
  text-shadow:
    0 1px 22px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(0, 0, 0, 0.2);
}

.hero__lede {
  font-family: var(--adf-font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.012em;
  max-width: 38ch;
  margin: 0 0 2.35rem;
  color: rgba(255, 252, 250, 0.88);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.42);
}

.hero__lede em {
  font-family: var(--adf-font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 1em;
  letter-spacing: 0.01em;
  color: rgba(255, 196, 218, 0.95);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__ctas .btn--primary {
  background: rgba(8, 4, 10, 0.2);
  color: rgba(255, 252, 250, 0.95);
  border: 1.5px solid rgba(255, 182, 210, 0.65);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  letter-spacing: 0.16em;
  padding: 1rem 1.85rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero__ctas .btn--primary:hover {
  background: rgba(196, 30, 107, 0.35);
  color: rgba(255, 252, 250, 1);
  border-color: rgba(255, 200, 220, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.hero__ctas .btn--primary:focus-visible {
  outline: 2px solid rgba(196, 30, 107, 0.5);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  /* Solid hero panel: restore dark type for contrast */
  .hero h1 {
    color: #1a1417;
    text-shadow: none;
  }

  .hero__lede {
    color: rgba(30, 24, 28, 0.9);
    text-shadow: none;
  }

  .hero__lede em {
    color: #6b3050;
    text-shadow: none;
  }

  .hero__eyebrow {
    color: #7d3555;
    text-shadow: none;
  }

  .hero__ctas .btn--primary {
    background: rgba(252, 244, 248, 0.85);
    color: #8b2a55;
    border-color: rgba(196, 30, 107, 0.55);
    text-shadow: none;
    box-shadow: none;
  }

  .hero__ctas .btn--primary:hover {
    background: rgba(196, 30, 107, 0.12);
    color: #6d1f42;
    transform: none;
    box-shadow: none;
  }
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Full opacity: values below 1 blend with the stage and read “washed” vs the source file */
  opacity: 1;
  filter: none;
}

.hero--immersive .hero__video {
  opacity: 1;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video-stage,
  .hero__scrim,
  .hero__video-film {
    transition: none !important;
  }

  .hero__video {
    opacity: 1;
    filter: none;
  }
}

/* Sections */
.section {
  padding: var(--adf-section-y) var(--adf-gutter);
  position: relative;
}

.section--alt {
  background: var(--adf-blush-soft);
}

.section--cream {
  background: var(--adf-cream-warm);
}

.section__inner {
  max-width: var(--adf-max-width);
  margin: 0 auto;
}

.section__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.section__header h2 {
  font-family: var(--adf-font-heading);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: var(--adf-tracking-heading);
  text-transform: uppercase;
  color: var(--adf-text-heading);
  margin: 0 0 1rem;
}

.section__header p {
  margin: 0;
  color: var(--adf-onyx-soft);
}

/* D flourish divider — one shared path in index.html; hairline stroke reads clean on cream + blush */
.flourish {
  display: block;
  margin: 0 auto 1.25rem;
  width: 120px;
  height: 12px;
  overflow: visible;
  color: var(--adf-flourish-stroke);
}

.flourish path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  shape-rendering: geometricPrecision;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--adf-duration-reveal) var(--adf-ease-out),
    transform var(--adf-duration-reveal) var(--adf-ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > *:nth-child(1) {
  transition-delay: 0s;
}
.reveal-stagger > *:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal-stagger > *:nth-child(3) {
  transition-delay: 0.2s;
}

/* Philosophy grid */
.philosophy-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .philosophy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.philosophy-card {
  padding: 2rem;
  background: var(--adf-white);
  border: 1px solid var(--adf-charcoal-line);
}

.philosophy-card h3 {
  font-family: var(--adf-font-heading);
  font-size: 0.8rem;
  letter-spacing: var(--adf-tracking-label);
  text-transform: uppercase;
  color: var(--adf-berry-primary);
  margin: 0 0 0.75rem;
}

.philosophy-card p {
  margin: 0;
  font-size: 0.98rem;
}

/* Product edge */
.edge-list {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .edge-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.edge-item {
  text-align: center;
  padding: 1.5rem;
}

.edge-item strong {
  display: block;
  font-family: var(--adf-font-heading);
  font-size: 0.75rem;
  letter-spacing: var(--adf-tracking-label);
  text-transform: uppercase;
  color: var(--adf-text-heading);
  margin-bottom: 0.5rem;
}

/* Ritual steps */
.ritual-steps {
  display: grid;
  gap: 2rem;
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .ritual-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ritual-step {
  position: relative;
  padding-top: 2.5rem;
  border-top: 1px solid var(--adf-charcoal-line);
}

.ritual-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -0.6rem;
  left: 0;
  font-family: var(--adf-font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--adf-berry-primary);
  background: var(--adf-cream-base);
  padding-right: 0.5rem;
}

.ritual-step h3 {
  font-family: var(--adf-font-heading);
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--adf-text-heading);
}

.ritual-step p {
  margin: 0;
  font-size: 0.98rem;
}

/* Parallax band — soft plum field, drifting petals */
.parallax-band {
  position: relative;
  min-height: clamp(300px, 38vw, 380px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    ellipse 130% 100% at 50% 30%,
    #2c2430 0%,
    #1a151f 42%,
    #121016 100%
  );
  color: rgba(255, 251, 249, 0.92);
  overflow: hidden;
  border: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.parallax-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(196, 30, 107, 0.12) 0%,
    transparent 58%
  );
  animation: parallax-band-mist 14s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .parallax-band::before {
    animation: none;
  }
}

@keyframes parallax-band-mist {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.03);
  }
}

.parallax-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(18, 16, 22, 0.2) 0%,
    transparent 35%,
    transparent 65%,
    rgba(18, 16, 22, 0.35) 100%
  );
}

.parallax-band__petals {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.parallax-band__petal {
  position: absolute;
  width: 12px;
  height: 15px;
  background: var(--adf-berry-primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  will-change: transform;
  box-shadow: 0 0 14px rgba(196, 30, 107, 0.45);
}

.parallax-band__petal--blush {
  background: rgba(232, 168, 195, 0.75);
  box-shadow: 0 0 12px rgba(232, 168, 195, 0.35);
}

.parallax-band__inner {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.25rem 1.75rem;
  max-width: 34rem;
}

.parallax-band__inner::before,
.parallax-band__inner::after {
  content: "";
  position: absolute;
  top: 12%;
  bottom: 12%;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(196, 30, 107, 0.55) 22%,
    rgba(196, 30, 107, 0.35) 50%,
    rgba(196, 30, 107, 0.55) 78%,
    transparent 100%
  );
  opacity: 0.55;
  pointer-events: none;
}

.parallax-band__inner::before {
  left: 0.35rem;
}

.parallax-band__inner::after {
  right: 0.35rem;
}

@media (max-width: 520px) {
  .parallax-band__inner::before,
  .parallax-band__inner::after {
    opacity: 0.35;
    top: 18%;
    bottom: 18%;
  }

  .parallax-band__inner::before {
    left: 0.1rem;
  }

  .parallax-band__inner::after {
    right: 0.1rem;
  }
}

.parallax-band__label {
  margin: 0 0 0.65rem;
  font-family: var(--adf-font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: var(--adf-tracking-label);
  text-transform: uppercase;
  color: rgba(232, 168, 195, 0.95);
}

.parallax-band__ornament {
  width: min(7.5rem, 42vw);
  height: auto;
  margin: 0 0 1rem;
  color: var(--adf-berry-primary);
  opacity: 0.75;
}

.parallax-band__quote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 0.5rem;
  max-width: 36ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.28rem, 2.85vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.03em;
  line-height: 1.42;
  color: rgba(255, 252, 250, 0.96);
  text-shadow:
    0 1px 28px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(196, 30, 107, 0.08);
}

.parallax-band__quote-mark {
  display: inline;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: rgba(196, 30, 107, 0.85);
  font-size: 1.15em;
  line-height: 0;
  vertical-align: -0.05em;
}

/* Scent cards */
.scent-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .scent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .scent-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.scent-card {
  background: var(--adf-white);
  border: 1px solid var(--adf-charcoal-line);
  padding: 1.5rem;
  transition:
    border-color var(--adf-duration-hover) var(--adf-ease-out),
    box-shadow var(--adf-duration-hover) var(--adf-ease-out);
}

.scent-card:hover {
  border-color: var(--adf-berry-primary);
  box-shadow: 0 16px 48px var(--adf-berry-muted);
}

.scent-card__emotion {
  font-size: 0.7rem;
  font-family: var(--adf-font-heading);
  font-weight: 600;
  letter-spacing: var(--adf-tracking-label);
  text-transform: uppercase;
  color: var(--adf-berry-primary);
  margin-bottom: 0.35rem;
}

.scent-card h3 {
  font-family: var(--adf-font-heading);
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--adf-text-heading);
}

.scent-card p {
  margin: 0;
  font-size: 0.9rem;
}

/* Trust */
.trust-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  font-style: italic;
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
  color: var(--adf-text-heading);
}

.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--adf-berry-primary);
  font-weight: 600;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  font-family: var(--adf-font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: var(--adf-tracking-label);
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  background: var(--adf-berry-muted);
  color: var(--adf-berry-primary);
}

/* Final CTA */
.site-footer {
  padding: 2rem var(--adf-gutter);
  text-align: center;
  font-size: 0.85rem;
  color: var(--adf-onyx-soft);
  background: var(--adf-cream-base);
}

.site-footer__inner {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem 0.65rem;
  max-width: 100%;
}

.site-footer a {
  color: var(--adf-onyx-soft);
}

.site-footer a:hover {
  color: var(--adf-berry-primary);
}

/* Link with D flourish hover */
.link-flourish {
  position: relative;
  font-family: var(--adf-font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--adf-tracking-label);
  text-transform: uppercase;
  color: var(--adf-berry-primary);
}

.link-flourish::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--adf-berry-primary);
  border-radius: 2px 12px 2px 2px;
  transition: width 0.35s var(--adf-ease-out);
}

.link-flourish:hover::after {
  width: 100%;
}

/* Page loader — brand mark (assets/just the logo.png) */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--adf-cream-warm);
  transition: opacity 0.5s var(--adf-ease-out), visibility 0.5s;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__icon {
  display: block;
  width: auto;
  height: clamp(3.25rem, 14vw, 6rem);
  max-width: min(220px, 72vw);
  object-fit: contain;
  object-position: center;
  animation: adf-pulse 1.2s ease-in-out infinite;
}

@keyframes adf-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

/* --- Wholesale / Contact (dark luxury — spec #1a0510) --- */
.contact-wholesale {
  --cw-bg: #1a0510;
  --cw-card-tint: rgba(42, 24, 36, 0.55);
  --cw-muted: #a89bab;
  --cw-line: rgba(255, 255, 255, 0.42);
  background: var(--cw-bg);
  color: #f0e8f2;
  padding: clamp(4.25rem, 10vw, 6.75rem) var(--adf-gutter);
}

.contact-wholesale a:not(.contact-wholesale__submit) {
  color: inherit;
}

.contact-wholesale__inner {
  max-width: var(--adf-max-width);
  margin: 0 auto;
}

.contact-wholesale__header {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 3.75rem;
}

.contact-wholesale__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--adf-font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: var(--adf-tracking-label);
  text-transform: uppercase;
  color: var(--adf-berry-primary);
  margin: 0 0 1.5rem;
}

.contact-wholesale__eyebrow-line {
  flex: 1;
  max-width: 5rem;
  height: 1px;
  background: var(--adf-berry-primary);
  opacity: 0.9;
}

.contact-wholesale__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  font-weight: 500;
  color: #fff;
  margin: 0 0 1.25rem;
  line-height: 1.18;
  letter-spacing: 0.03em;
}

/* Script accent — signature berry “Partnership” */
.contact-wholesale__title-script {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
  color: var(--adf-berry-primary);
  font-size: 1.42em;
  letter-spacing: 0.02em;
  margin-left: 0.12em;
  white-space: nowrap;
}

@media (max-width: 420px) {
  .contact-wholesale__title-script {
    white-space: normal;
    display: inline-block;
    width: 100%;
    margin-left: 0;
    margin-top: 0.08em;
  }
}

.contact-wholesale__lede {
  margin: 0 auto;
  max-width: 38rem;
  color: #fff;
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
}

.contact-wholesale__brand-card {
  background: #120810;
  border-radius: 16px;
  padding: clamp(1.35rem, 3vw, 1.75rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.4);
}

.contact-wholesale__logo {
  display: block;
  max-width: 75px; /* 50% of prior 150px */
  width: auto;
  height: auto;
  margin: 0 0 0.75rem;
  object-fit: contain;
}

.contact-wholesale__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .contact-wholesale__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: 3rem;
  }
}

.contact-wholesale__photo {
  position: relative;
  margin: 0 0 1.35rem;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.contact-wholesale__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.82) saturate(0.92);
}

.contact-wholesale__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(26, 5, 16, 0.2) 0%,
    rgba(26, 5, 16, 0.78) 100%
  );
  pointer-events: none;
  border-radius: inherit;
}

.contact-wholesale__photo-cap {
  position: absolute;
  bottom: 1.1rem;
  left: 1.1rem;
  z-index: 2;
  margin: 0;
  font-family: var(--adf-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.98);
}

.contact-wholesale__details {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-wholesale__details li {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.35rem;
}

.contact-wholesale__details li:last-child {
  margin-bottom: 0;
}

.contact-wholesale__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #0d0609;
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  margin-top: 0.42rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-wholesale__label {
  display: block;
  font-family: var(--adf-font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: var(--adf-tracking-label);
  text-transform: uppercase;
  color: var(--cw-muted);
  margin-bottom: 0.28rem;
}

.contact-wholesale__value {
  color: #f2eef6;
  font-size: 0.97rem;
  line-height: 1.45;
}

.contact-wholesale__link:hover {
  color: var(--adf-berry-primary);
}

.contact-wholesale__form-card {
  background: var(--cw-card-tint);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 16px;
  padding: clamp(1.85rem, 4vw, 2.75rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

.contact-wholesale__form-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.45rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.contact-wholesale__form-sub {
  margin: 0 0 1.85rem;
  font-size: 0.9rem;
  color: var(--cw-muted);
}

.contact-wholesale__row {
  display: grid;
  gap: 1.35rem;
  margin-bottom: 1.35rem;
}

@media (min-width: 640px) {
  .contact-wholesale__row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-wholesale__field label {
  display: block;
  font-family: var(--adf-font-heading);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: var(--adf-tracking-label);
  text-transform: uppercase;
  color: var(--cw-muted);
  margin-bottom: 0.4rem;
}

.contact-wholesale__field abbr {
  text-decoration: none;
  color: var(--adf-berry-primary);
}

.contact-wholesale__field input,
.contact-wholesale__field select,
.contact-wholesale__field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--cw-line);
  padding: 0.45rem 0 0.7rem;
  color: #fff;
  font-family: var(--adf-font-body);
  font-size: 1rem;
  border-radius: 0;
}

.contact-wholesale__field input:focus,
.contact-wholesale__field select:focus,
.contact-wholesale__field textarea:focus {
  outline: none;
  border-bottom-color: var(--adf-berry-primary);
}

.contact-wholesale__field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath stroke='%239c96a8' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 top 55%;
  padding-right: 1.75rem;
}

.contact-wholesale__field select:invalid {
  color: var(--cw-muted);
}

.contact-wholesale__field select:not(:invalid) {
  color: #fff;
}

.contact-wholesale__field select option {
  color: #1a0510;
  background: #fff;
}

.contact-wholesale__field textarea::placeholder {
  color: rgba(168, 155, 171, 0.85);
}

.contact-wholesale__field textarea {
  resize: vertical;
  min-height: 6.5rem;
  margin-top: 0.15rem;
}

.contact-wholesale__field--full {
  margin-bottom: 0;
}

.contact-wholesale__hint {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  color: var(--cw-muted);
}

.contact-wholesale__submit {
  width: 100%;
  margin-top: 1.85rem;
  padding: 1.2rem 1.5rem;
  background: var(--adf-berry-primary);
  color: #fff;
  font-family: var(--adf-font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: var(--adf-tracking-label);
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  transition:
    filter var(--adf-duration-hover) var(--adf-ease-out),
    background var(--adf-duration-hover) var(--adf-ease-out);
}

.contact-wholesale__submit:hover {
  background: var(--adf-berry-primary);
  filter: brightness(1.12);
  color: #fff;
  transform: none;
}

.contact-wholesale__submit:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

/* Header legibility over dark contact section */
.site-header.is-on-dark {
  background: linear-gradient(
    to bottom,
    rgba(26, 5, 16, 0.95),
    rgba(26, 5, 16, 0.82),
    transparent
  );
}

.site-header.is-on-dark .nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: none;
}

.site-header.is-on-dark .nav-links a:hover {
  color: var(--adf-berry-primary);
}

.site-header.is-on-dark .lang-switch__sep {
  color: rgba(255, 255, 255, 0.32);
  text-shadow: none;
}

.site-header.is-on-dark .lang-switch__btn {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: none;
}

.site-header.is-on-dark .lang-switch__btn:hover {
  color: var(--adf-berry-primary);
}

.site-header.is-on-dark .lang-switch__btn.is-active {
  color: rgba(232, 168, 195, 0.98);
  box-shadow: 0 1px 0 rgba(232, 168, 195, 0.65);
}

