/* VA HOME v13.3.0 — page-specific cascade: site-discovery. Shared rules live in core.css. */

/* ===== home.css ===== */
/* ==========================================================================
   VA HOME — Home page
   ========================================================================== */

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--color-black);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-slow) var(--ease-standard);
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.hero-slide__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,7,0.72) 0%, rgba(8,8,7,0.35) 48%, rgba(8,8,7,0.08) 100%);
}

.hero-slide__content {
  position: relative;
  z-index: 1;
  grid-column: 1 / span 1;
  padding: var(--space-8) var(--container-pad) var(--space-6);
  max-width: 620px;
}

.hero-slide__eyebrow {
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.hero-slide__title {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-3);
}

.hero-slide__subtitle {
  font-size: var(--fs-lead);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  max-width: 40ch;
}

.hero-slide__actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.hero-nav {
  position: absolute;
  bottom: var(--space-4);
  left: var(--container-pad);
  z-index: 2;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }
  .hero-slide {
    position: relative;
    grid-template-columns: 1fr;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
  }
  .hero-slide__media::after {
    background: linear-gradient(180deg, rgba(8,8,7,0.15) 30%, rgba(8,8,7,0.9) 100%);
  }
  .hero-slide__content {
    max-width: none;
    padding: var(--space-6) var(--container-pad) var(--space-7);
  }
  .hero-slide__actions {
    flex-direction: column;
  }
  .hero-slide__actions .btn {
    width: 100%;
  }
  .hero-nav {
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    bottom: var(--space-3);
  }
}

/* ---- Perks (uses shared .perks-strip/.perks-grid from components.css) ---- */

/* ---- Collections grid ---- */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 28px);
}

/* On the homepage collection cards are editorial tiles: image first, text below. */
.collections-grid .collection-card {
  display: grid;
  grid-template-rows: auto 1fr;
  aspect-ratio: auto;
  min-width: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  color: var(--text-primary);
}

.collections-grid .collection-card__media {
  position: relative;
  inset: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-charcoal);
}

.collections-grid .collection-card__media::after {
  background: linear-gradient(180deg, rgba(8,8,7,0.02), rgba(8,8,7,0.18));
  transition: opacity var(--duration-fast) var(--ease-standard);
}

.collections-grid .collection-card__media img {
  transition: transform 700ms var(--ease-standard);
}

.collections-grid .collection-card__body {
  position: relative;
  height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title arrow"
    "tagline arrow"
    "price arrow";
  align-items: center;
  column-gap: 12px;
  padding: 14px 2px 0;
}

.collections-grid .collection-card__eyebrow {
  grid-area: title;
  margin: 0 0 5px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}

.collections-grid .collection-card__tagline {
  grid-area: tagline;
  margin: 0 0 5px;
  color: var(--text-secondary);
  font-size: var(--fs-small);
}

.collections-grid .collection-card__price {
  grid-area: price;
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--fs-small);
}

.collection-card__arrow {
  grid-area: arrow;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-hairline);
  border-radius: 50%;
  color: var(--color-gold);
  transition: transform var(--duration-fast) var(--ease-standard),
              border-color var(--duration-fast) var(--ease-standard),
              background-color var(--duration-fast) var(--ease-standard);
}

.collection-card__arrow svg {
  width: 17px;
  height: 17px;
}

@media (hover: hover) {
  .collections-grid .collection-card:hover .collection-card__media img {
    transform: scale(1.035);
  }

  .collections-grid .collection-card:hover .collection-card__media::after {
    opacity: 0.55;
  }

  .collections-grid .collection-card:hover .collection-card__arrow {
    transform: translateX(3px);
    border-color: var(--color-gold);
    background: rgba(184, 135, 70, 0.08);
  }
}

@media (max-width: 767px) {
  .collections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 12px;
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 0;
  }

  .collections-grid .collection-card__media {
    aspect-ratio: 4 / 5;
  }

  .collections-grid .collection-card__body {
    padding-top: 10px;
    column-gap: 7px;
  }

  .collections-grid .collection-card__eyebrow {
    font-size: clamp(14px, 4vw, 17px);
  }

  .collections-grid .collection-card__price {
    font-size: 12px;
  }

  .collection-card__arrow {
    width: 28px;
    height: 28px;
  }

  .collection-card__arrow svg {
    width: 14px;
    height: 14px;
  }
}

/* ---- Discovery banner ---- */
.discovery-banner {
  background: var(--bg-contrast);
  color: var(--text-on-contrast);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
}

.discovery-banner__media {
  min-height: 340px;
  background: var(--color-charcoal);
}

.discovery-banner__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.discovery-banner__body .eyebrow {
  color: var(--color-dark-gold);
}

.discovery-banner__body h2 {
  margin-bottom: var(--space-2);
}

.discovery-banner__body p {
  color: rgba(23, 21, 18, 0.72);
  margin-bottom: var(--space-3);
}

.discovery-banner__actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.discovery-banner__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4);
  border-left: 1px solid rgba(23, 21, 18, 0.12);
  text-align: center;
}

.discovery-banner__badge {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px solid rgba(23, 21, 18, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.discovery-banner__side p {
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-caption);
  text-transform: uppercase;
  color: rgba(23, 21, 18, 0.6);
}

@media (max-width: 900px) {
  .discovery-banner {
    grid-template-columns: 1fr;
  }
  .discovery-banner__side {
    border-left: none;
    border-top: 1px solid rgba(23, 21, 18, 0.12);
  }
}

/* ---- Scent finder ---- */
.scent-finder {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: var(--space-5);
  align-items: center;
}

.scent-finder__text p {
  margin-block: var(--space-2) var(--space-3);
}

.scent-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}

.scent-category {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
}

.scent-category::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 7, 0.38);
  transition: background-color var(--duration-fast) var(--ease-standard);
}

.scent-category:hover::after,
.scent-category:focus-visible::after {
  background: rgba(8, 8, 7, 0.2);
}

.scent-category__label {
  position: absolute;
  left: var(--space-2);
  bottom: var(--space-2);
  z-index: 1;
  color: var(--color-ivory);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .scent-finder {
    grid-template-columns: 1fr;
  }
  .scent-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Featured products ---- */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

/* ---- Brand process: proof without loud comparison ---- */
.brand-process{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.35fr);gap:clamp(2rem,6vw,6rem);padding:clamp(1.5rem,4vw,3.5rem);border:1px solid var(--border-hairline);background:linear-gradient(135deg,rgba(199,151,77,.075),rgba(255,255,255,.012))}
.brand-process__intro h2{margin:.35rem 0 1rem}
.brand-process__intro>p:last-child{max-width:52ch;color:var(--text-secondary);line-height:1.75}
.brand-process__steps{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--border-hairline);list-style:none;padding:0;margin:0}
.brand-process__steps li{min-height:150px;padding:1.25rem;background:var(--bg-primary)}
.brand-process__steps span{display:block;margin-bottom:1rem;color:var(--text-gold);font-size:.7rem;letter-spacing:.12em}
.brand-process__steps strong{display:block;margin-bottom:.4rem}
.brand-process__steps p{color:var(--text-secondary);font-size:.82rem;line-height:1.55}
@media(max-width:820px){.brand-process{grid-template-columns:1fr}.brand-process__steps{grid-template-columns:1fr}.brand-process__steps li{min-height:0}}

/* ---- Brand story: human context without founder theatre ---- */
.brand-story{display:grid;grid-template-columns:minmax(260px,.78fr) minmax(0,1.22fr);gap:clamp(2rem,7vw,7rem);padding-block:clamp(1.5rem,4vw,3rem);border-top:1px solid var(--border-hairline);border-bottom:1px solid var(--border-hairline)}
.brand-story__heading h2{max-width:14ch;margin-top:.35rem}
.brand-story__copy{display:grid;gap:1.15rem;max-width:66ch;color:var(--text-secondary);font-size:clamp(1rem,1.5vw,1.12rem);line-height:1.8}
.brand-story__copy p:first-child{color:var(--text-primary)}
@media(max-width:760px){.brand-story{grid-template-columns:1fr;gap:1.5rem}.brand-story__heading h2{max-width:none}}

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

@media (max-width: 480px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
  }
}

/* ---- About split ---- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
}

.about-split__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  order: 1;
}

.about-split__body {
  order: 2;
}

.about-split--reverse .about-split__media {
  order: 2;
}

.about-split--reverse .about-split__body {
  order: 1;
}

.about-split__body p {
  margin-bottom: var(--space-2);
}

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

/* ---- Atmosphere strip ---- */
.atmosphere-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

.atmosphere-strip__item {
  aspect-ratio: 1 / 1.1;
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (max-width: 640px) {
  .atmosphere-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-1);
  }
}

/* ---- Instagram grid ---- */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-2);
}

@media (max-width: 900px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.instagram-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 820px;
}
.home-reviews__grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:var(--space-2)}
.home-review-card{display:block;background:var(--bg-elevated);min-width:0;border:1px solid var(--border-hairline-strong);border-radius:var(--radius-sm);overflow:hidden;color:inherit;text-decoration:none;transition:border-color var(--duration-fast) var(--ease-standard),transform var(--duration-fast) var(--ease-standard),box-shadow var(--duration-slow) var(--ease-standard)}
@media (hover: hover) and (pointer: fine) {
  .home-review-card:hover {
    border-color: rgba(199,151,77,.5);
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(0,0,0,.28), 0 0 28px rgba(199,151,77,.07);
  }
  .home-review-card:hover .home-review-card__photo { transform: scale(1.035); }
}
.home-review-card__photo{display:block;width:100%;aspect-ratio:4/5;object-fit:cover;filter:saturate(0.75) brightness(0.85) sepia(0.22) contrast(1.05);transition:transform var(--duration-slow) var(--ease-standard)}
.home-review-card__body{padding:clamp(.9rem,1.8vw,1.25rem)}
.home-review-card__stars{color:var(--color-gold);letter-spacing:.1em;margin-bottom:.7rem;font-size:.85rem}
.home-review-card p{line-height:1.5;color:var(--text-primary);margin-bottom:.85rem;font-size:.88rem}
.home-review-card footer{display:flex;flex-wrap:wrap;align-items:center;gap:.4rem .7rem;font-size:.72rem;color:var(--text-secondary)}
.home-review-card footer strong{color:var(--text-primary)}
.home-review-card footer em{font-style:normal;color:var(--color-gold);border:1px solid var(--border-hairline-strong);padding:.2rem .4rem}
@media(max-width:900px){.home-reviews__grid{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.home-reviews__grid{grid-template-columns:1fr 1fr;gap:var(--space-2)}}
@media(max-width:600px){
  .home-reviews{padding-block:clamp(2.5rem,10vw,4rem)}
  .home-reviews .section-head{align-items:flex-start;gap:1rem;margin-bottom:1.5rem}
  .home-reviews .section-head h2{font-size:clamp(2rem,10vw,3rem);line-height:1.05}
  .home-review-card__body{padding:.85rem .75rem}
  .home-review-card__stars{margin-bottom:.5rem;font-size:.75rem}
  .home-review-card p{font-size:.8rem;line-height:1.4;margin-bottom:.6rem}
  .home-review-card footer{align-items:flex-start;gap:.35rem .5rem;font-size:.66rem}
  .home-review-card footer em{display:block;width:max-content;max-width:100%}
}

/* ========================================================================== 
   VA HOME v6.2 — Editorial Homepage
   ========================================================================== */
.home-page { background:#0b0b0a; }
.home-page .section { padding-block:clamp(88px,10vw,150px); }
.home-page .section--tight { padding-block:clamp(68px,8vw,110px); }
.hero--editorial { min-height:100svh; }
.hero--editorial .hero-slide { min-height:100svh; align-items:end; }
.hero--editorial .hero-slide__media::after { background:linear-gradient(90deg,rgba(5,5,4,.78) 0%,rgba(5,5,4,.46) 42%,rgba(5,5,4,.08) 76%),linear-gradient(0deg,rgba(5,5,4,.35),transparent 42%); }
.hero--editorial .hero-slide__content { padding-bottom:clamp(72px,9vw,130px); max-width:760px; }
.hero--editorial .hero-slide__title { font-size:clamp(54px,7.4vw,116px); line-height:.92; letter-spacing:-.025em; max-width:10ch; }
.hero--editorial .hero-slide__subtitle { max-width:48ch; font-size:clamp(16px,1.5vw,21px); line-height:1.65; }
.hero-scroll { position:absolute; right:var(--container-pad); bottom:42px; z-index:2; display:flex; align-items:center; gap:14px; color:rgba(255,255,255,.7); font-size:11px; letter-spacing:.18em; text-transform:uppercase; }
.hero-scroll i { display:block; width:64px; height:1px; background:currentColor; position:relative; }
.hero-scroll i::after { content:""; position:absolute; right:0; top:-3px; width:7px; height:7px; border-right:1px solid currentColor; border-bottom:1px solid currentColor; transform:rotate(-45deg); }
.brand-facts { padding:36px 0; border-bottom:1px solid rgba(255,255,255,.1); background:#0f0f0e; }
.brand-facts__grid { display:grid; grid-template-columns:repeat(4,1fr); }
.brand-facts__grid>div { padding:8px clamp(18px,3vw,48px); border-right:1px solid rgba(255,255,255,.1); }
.brand-facts__grid>div:first-child { padding-left:0; }
.brand-facts__grid>div:last-child { border-right:0; }
.brand-facts strong { display:block; font-family:var(--font-display); font-size:clamp(28px,3vw,48px); font-weight:500; color:var(--color-gold); margin-bottom:4px; }
.brand-facts span { color:rgba(255,255,255,.58); font-size:12px; letter-spacing:.08em; text-transform:uppercase; }
.brand-manifesto { min-height:min(82vh,900px); position:relative; display:grid; place-items:center; overflow:hidden; }
.brand-manifesto__media,.brand-manifesto__shade { position:absolute; inset:0; }
.brand-manifesto__media img { transform:scale(1.02); }
.brand-manifesto__shade { background:rgba(5,5,4,.48); }
.brand-manifesto__content { position:relative; z-index:1; width:min(1100px,calc(100% - 48px)); text-align:center; }
.brand-manifesto__content h2 { font-family:var(--font-display); font-weight:500; font-size:clamp(38px,5.4vw,82px); line-height:1.03; letter-spacing:-.02em; }
.collections-grid { gap:clamp(18px,2.4vw,38px); }
.collections-grid .collection-card:nth-child(even) { transform:translateY(44px); }
.discovery-banner { border-radius:0; grid-template-columns:1.15fr 1fr; min-height:620px; }
.discovery-banner__media { min-height:620px; }
.discovery-banner__body { padding:clamp(42px,6vw,90px); }
.discovery-banner__body h2 { font-size:clamp(42px,5vw,76px); line-height:1; }
.discovery-banner__side { display:none; }
.scent-finder { border-radius:0; }
.brand-process,.about-split { border-radius:0; }
.atmosphere-strip { gap:0; }
.atmosphere-strip__item:nth-child(2) { transform:translateY(42px); }
.journal-grid { display:grid; grid-template-columns:1.35fr 1fr; gap:clamp(18px,2vw,30px); }
.journal-card { display:grid; grid-template-columns:1fr 1fr; min-height:260px; background:#11110f; color:var(--text-primary); overflow:hidden; }
.journal-card--large { grid-row:span 2; grid-template-columns:1fr; min-height:620px; }
.journal-card__media { min-height:260px; overflow:hidden; }
.journal-card--large .journal-card__media { min-height:450px; }
.journal-card__media img { transition:transform 900ms var(--ease-standard); }
.journal-card__body { padding:clamp(24px,3vw,42px); display:flex; flex-direction:column; justify-content:flex-end; }
.journal-card__body p { color:var(--color-gold); text-transform:uppercase; letter-spacing:.14em; font-size:10px; margin-bottom:16px; }
.journal-card__body h3 { font-family:var(--font-display); font-size:clamp(25px,2.3vw,38px); font-weight:500; line-height:1.08; margin-bottom:28px; }
.journal-card__body span { font-size:11px; text-transform:uppercase; letter-spacing:.14em; color:var(--text-secondary); }
@media (hover:hover){ .journal-card:hover img{transform:scale(1.04)} }
@media(max-width:900px){
 .hero--editorial .hero-slide__media::after{background:linear-gradient(180deg,rgba(5,5,4,.08) 18%,rgba(5,5,4,.9) 82%)}
 .hero--editorial .hero-slide__content{padding-bottom:86px}.hero--editorial .hero-slide__title{font-size:clamp(48px,14vw,76px)}.hero-scroll{display:none}
 .brand-facts__grid{grid-template-columns:1fr 1fr;gap:28px 0}.brand-facts__grid>div{border-right:0;padding:0 18px 0 0}.brand-facts strong{font-size:32px}.brand-facts span{font-size:10px}
 .collections-grid .collection-card:nth-child(even){transform:none}
 .brand-manifesto{min-height:70vh}.brand-manifesto__content h2 br{display:none}
 .discovery-banner{grid-template-columns:1fr;min-height:auto}.discovery-banner__media{min-height:420px}.discovery-banner__body{padding:38px 24px}
 .journal-grid{grid-template-columns:1fr}.journal-card,.journal-card--large{grid-template-columns:1fr;min-height:auto;grid-row:auto}.journal-card__media,.journal-card--large .journal-card__media{min-height:330px}.journal-card__body{min-height:220px}
 .atmosphere-strip__item:nth-child(2){transform:none}
}
@media(max-width:560px){
 .home-page .section{padding-block:74px}.hero--editorial .hero-slide__actions{gap:10px}.brand-manifesto__content{width:calc(100% - 32px)}
 .brand-manifesto__content h2{font-size:38px}.discovery-banner__media{min-height:330px}.journal-card__media,.journal-card--large .journal-card__media{min-height:280px}
}

/* v6.3 responsive hero safety patch */
.hero--editorial .hero-slide__content {
  padding-top: calc(var(--header-height, 86px) + clamp(28px, 5vh, 64px));
  box-sizing: border-box;
}
.hero--editorial .hero-slide__title {
  font-size: clamp(48px, min(7.4vw, 11.5vh), 104px);
  line-height: .94;
  max-width: 11ch;
  text-wrap: balance;
}
@media (min-width: 901px) and (max-height: 850px) {
  .hero--editorial .hero-slide__content {
    padding-top: calc(var(--header-height, 78px) + 22px);
    padding-bottom: clamp(34px, 5vh, 58px);
    max-width: 700px;
  }
  .hero--editorial .hero-slide__title {
    font-size: clamp(46px, min(6.4vw, 9.4vh), 78px);
    line-height: .96;
    margin-bottom: 18px;
  }
  .hero--editorial .hero-slide__subtitle {
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.5;
    margin-bottom: 22px;
  }
  .hero--editorial .hero-slide__eyebrow { margin-bottom: 14px; }
  .hero-scroll { bottom: 26px; }
}
@media (min-width: 901px) and (max-height: 720px) {
  .hero--editorial .hero-slide__content { padding-top: 96px; padding-bottom: 28px; }
  .hero--editorial .hero-slide__title { font-size: clamp(42px, min(5.8vw, 8.2vh), 64px); }
  .hero--editorial .hero-slide__subtitle { max-width: 42ch; }
  .hero-scroll { display:none; }
}
@media (max-width: 900px) {
  .hero--editorial .hero-slide__content { padding-top: calc(var(--header-height, 72px) + 36px); }
  .hero--editorial .hero-slide__title { font-size: clamp(44px, 13vw, 72px); max-width: 10ch; }
}

/* ========================================================================== 
   Production QA patch — stable editorial hero across common laptop heights
   ========================================================================== */
.home-page .hero--editorial,
.home-page .hero--editorial .hero-slide {
  height: 100svh;
  min-height: 620px;
}

.home-page .hero--editorial .hero-slide__content {
  width: min(760px, calc(100vw - (2 * var(--container-pad))));
  max-width: none;
  padding-top: calc(var(--header-height, 86px) + 24px);
  padding-bottom: clamp(36px, 6vh, 72px);
}

.home-page .hero--editorial .hero-slide__title {
  font-size: clamp(46px, min(6.4vw, 9.2vh), 86px);
  line-height: .96;
  max-width: 11ch;
  margin-bottom: clamp(16px, 2.4vh, 26px);
}

.home-page .hero--editorial .hero-slide__subtitle {
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.55;
  margin-bottom: clamp(18px, 2.6vh, 28px);
}

@media (min-width: 901px) and (max-height: 760px) {
  .home-page .hero--editorial,
  .home-page .hero--editorial .hero-slide {
    min-height: 560px;
  }

  .home-page .hero--editorial .hero-slide__content {
    padding-top: calc(var(--header-height, 76px) + 18px);
    padding-bottom: 28px;
  }

  .home-page .hero--editorial .hero-slide__title {
    font-size: clamp(42px, min(5.5vw, 8vh), 62px);
  }

  .home-page .hero--editorial .hero-slide__eyebrow {
    margin-bottom: 10px;
  }

  .home-page .hero--editorial .hero-slide__subtitle {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 18px;
  }

  .home-page .hero--editorial .hero-scroll {
    display: none;
  }
}

@media (max-width: 900px) {
  .home-page .hero--editorial,
  .home-page .hero--editorial .hero-slide {
    min-height: 600px;
  }

  .home-page .hero--editorial .hero-slide__content {
    width: 100%;
    padding-top: calc(var(--header-height, 72px) + 24px);
    padding-bottom: max(56px, calc(32px + env(safe-area-inset-bottom)));
  }

  .home-page .hero--editorial .hero-slide__title {
    font-size: clamp(42px, 12vw, 68px);
    line-height: .98;
    max-width: 10ch;
  }
}

@media (max-width: 430px) {
  .home-page .hero--editorial .hero-slide__content {
    padding-inline: 18px;
  }

  .home-page .hero--editorial .hero-slide__title {
    font-size: clamp(40px, 12.5vw, 56px);
  }
}

/* ========================================================================== 
   v11.8.3 — Hero controls overlap fix
   Reserve a dedicated lower zone for the slide navigation on desktop and
   short laptop viewports. The CTA row must always finish above 01 / 02 / 03.
   ========================================================================== */
@media (min-width: 901px) {
  .home-page .hero--editorial .hero-slide__content {
    /* Navigation occupies the lower ~58px; keep a safe visual gap above it. */
    padding-bottom: clamp(104px, 13vh, 132px);
  }

  .home-page .hero--editorial .hero-nav {
    bottom: clamp(22px, 3.5vh, 34px);
  }
}

/* Short notebook screens need smaller type, never a smaller controls gap. */
@media (min-width: 901px) and (max-height: 850px) {
  .home-page .hero--editorial .hero-slide__content {
    padding-bottom: 100px;
  }

  .home-page .hero--editorial .hero-nav {
    bottom: 22px;
  }
}

@media (min-width: 901px) and (max-height: 720px) {
  .home-page .hero--editorial .hero-slide__content {
    padding-bottom: 88px;
  }

  .home-page .hero--editorial .hero-slide__actions {
    gap: 10px;
  }

  .home-page .hero--editorial .hero-nav {
    bottom: 16px;
  }
}

/* v11.8.20 — readable scent labels over photography */
.scent-category__label {
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 13px 8px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(12,11,9,.48);
  -webkit-backdrop-filter: blur(10px) saturate(.9);
  backdrop-filter: blur(10px) saturate(.9);
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  color: #fffaf1;
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,.48);
}
@media (max-width: 480px) {
  .scent-category__label { left: 9px; bottom: 9px; min-height: 32px; padding: 6px 10px 7px; font-size: .98rem; }
}

/* ===== discovery-premium.css ===== */
/* VA HOME v9.7.4 — Discovery Set editorial page */
.discovery-page .breadcrumb-strip .breadcrumbs{position:static;z-index:auto;top:auto;color:var(--text-secondary)}
.discovery-hero{position:relative;isolation:isolate;min-height:min(780px,calc(100svh - 72px));display:flex;align-items:center;overflow:hidden;border-bottom:1px solid var(--border-hairline)}
.discovery-hero::before{content:"";position:absolute;inset:0;z-index:-2;background:url('../images/pages/discovery-hero.webp') center/cover no-repeat}
.discovery-hero::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(90deg,rgba(5,5,4,.96) 0%,rgba(5,5,4,.76) 46%,rgba(5,5,4,.2) 80%),linear-gradient(0deg,rgba(5,5,4,.68),transparent 52%)}
.discovery-hero__content{max-width:650px;padding:150px 0 90px}
.discovery-hero h1{font-family:var(--font-display);font-size:clamp(4rem,7vw,7.5rem);font-weight:500;line-height:.88;letter-spacing:-.04em}
.discovery-hero .lead{max-width:45ch;margin-top:28px;color:rgba(245,239,230,.75);font-size:clamp(1rem,1.4vw,1.25rem);line-height:1.7}
.discovery-meta{display:flex;flex-wrap:wrap;gap:10px 24px;margin-top:34px;color:var(--color-gold);font-size:.72rem;letter-spacing:.12em;text-transform:uppercase}
.discovery-variants-section{padding:clamp(70px,9vw,130px) 0;background:#090908}
.discovery-variants-section__head{display:grid;grid-template-columns:1fr 1fr;gap:30px;align-items:end;margin-bottom:40px}
.discovery-variants-section__head h2{font-size:clamp(2.8rem,5vw,5.4rem);line-height:.95}
.discovery-variants{grid-template-columns:1fr 1fr;gap:1px;background:var(--border-hairline);border:1px solid var(--border-hairline)}
.discovery-variant-card{min-height:480px;padding:clamp(32px,4vw,58px);background:linear-gradient(145deg,#171512,#0d0c0a);display:flex;flex-direction:column}
.discovery-variant-card__count{font-family:var(--font-display);font-size:clamp(2.5rem,4vw,4.6rem);line-height:1}
.discovery-variant-card__price{margin:18px 0 30px;font-size:1.45rem;color:var(--color-gold)}
.discovery-variant-card .text-muted{max-width:48ch;line-height:1.75}
.discovery-variant-card .btn,.discovery-picker-open{margin-top:auto}
.discovery-ritual{display:grid;grid-template-columns:1fr 1fr;min-height:650px;background:#11100e;border-block:1px solid var(--border-hairline)}
.discovery-ritual__media img{width:100%;height:100%;object-fit:cover}
.discovery-ritual__copy{display:flex;flex-direction:column;justify-content:center;padding:clamp(42px,7vw,100px)}
.discovery-ritual__copy h2{font-size:clamp(3rem,5.5vw,6rem);line-height:.92}
.discovery-steps{display:grid;gap:22px;margin-top:38px}
.discovery-step{display:grid;grid-template-columns:44px 1fr;gap:16px;padding-top:20px;border-top:1px solid var(--border-hairline)}
.discovery-step span{color:var(--color-gold);font-size:.72rem;letter-spacing:.12em}
.discovery-step h3{font-size:1.2rem;margin-bottom:6px}
.discovery-info{padding:clamp(70px,9vw,130px) 0}
.discovery-page .info-block-grid{grid-template-columns:repeat(3,1fr);gap:1px;background:var(--border-hairline);border:1px solid var(--border-hairline)}
.discovery-page .info-block{min-height:240px;background:#11100e;padding:34px}
.discovery-page .info-block--guide{
  grid-column:1/-1;
  min-height:190px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:32px;
  align-items:end;
  background:linear-gradient(110deg,#11100e 0%,#17130d 62%,#241a0d 100%);
}
.discovery-page .info-block--guide h3{
  font-family:var(--font-display);
  font-size:clamp(30px,3vw,44px);
  font-weight:500;
}
.discovery-page .info-block--guide p{max-width:620px}
.discovery-page .info-block--guide .link-arrow{align-self:end;white-space:nowrap}
@media(max-width:900px){.discovery-variants,.discovery-ritual,.discovery-variants-section__head{grid-template-columns:1fr}.discovery-ritual__media{min-height:460px}.discovery-page .info-block-grid{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.discovery-hero{min-height:690px;align-items:flex-end}.discovery-hero::before{background-position:58% center}.discovery-hero::after{background:linear-gradient(0deg,rgba(5,5,4,.97),rgba(5,5,4,.45))}.discovery-hero__content{padding:150px 0 60px}.discovery-hero h1{font-size:3.6rem}.discovery-variant-card{min-height:430px}.discovery-page .info-block-grid{grid-template-columns:1fr}.discovery-page .info-block--guide{grid-template-columns:1fr;gap:18px}.discovery-ritual__media{min-height:340px}}

/* v11.8.9 — stable Discovery Set interactions */
.discovery-variant-card,
.info-block,
.discovery-step,
.discovery-ritual__media,
.discovery-ritual__copy {
  transform: none !important;
  will-change: auto;
}
.discovery-picker[open] {
  animation: discoveryPickerFade .22s ease-out both;
}
.discovery-picker::backdrop {
  animation: discoveryBackdropFade .22s ease-out both;
}
@keyframes discoveryPickerFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes discoveryBackdropFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== final-polish.css ===== */
/* VA HOME v10.0 — final supporting pages polish */
.status-premium,.thank-premium,.not-found-premium{position:relative;overflow:hidden;background:#080806}
.status-premium::before,.thank-premium::before,.not-found-premium::before{content:"";position:absolute;inset:0;background-size:cover;background-position:center;opacity:.48;transform:scale(1.02)}
.status-premium::after,.thank-premium::after,.not-found-premium::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(5,5,4,.97) 0%,rgba(5,5,4,.83) 44%,rgba(5,5,4,.28) 100%)}
.status-premium::before{background-image:url('../images/home/hero-main.webp')}
.thank-premium::before{background-image:url('../images/home/hero-discovery.webp')}
.not-found-premium::before{background-image:url('../images/home/hero-noir.webp')}
.status-premium>.container,.thank-premium>.container,.not-found-premium>.container{position:relative;z-index:1}
.status-premium{min-height:calc(100dvh - 82px);display:flex;align-items:center;padding:clamp(70px,10vw,130px) 0}
.status-premium .order-track__container{max-width:760px;margin-left:max(var(--container-pad),calc((100vw - var(--container-width))/2));margin-right:auto}
.status-premium h1,.thank-premium h1,.not-found-premium h1{font-family:var(--font-display);font-weight:500;line-height:.92;font-size:clamp(4rem,8vw,7.8rem);max-width:9ch}
.status-premium .order-track__lead{font-size:clamp(1rem,1.6vw,1.25rem);max-width:45ch;line-height:1.7}
.status-premium .order-track__form{margin-top:34px;padding:clamp(22px,3vw,34px);border:1px solid var(--border-hairline);background:rgba(12,11,9,.82);backdrop-filter:blur(14px)}
.status-premium .order-track__result{margin-top:28px;border:1px solid var(--border-hairline);background:#0d0c0a}
.status-premium .order-status-timeline{display:grid;gap:0;margin-top:24px;border:1px solid var(--border-hairline)}
.status-premium .order-status-step{display:grid;grid-template-columns:22px 1fr;gap:14px;padding:18px 20px;border-bottom:1px solid var(--border-hairline)}
.status-premium .order-status-step:last-child{border-bottom:0}
.status-premium .order-status-step i{width:10px;height:10px;border-radius:50%;margin-top:6px;border:1px solid var(--gold);box-shadow:0 0 0 5px rgba(190,141,70,.08)}
.status-premium .order-status-step.is-active i{background:var(--gold)}
.thank-premium{padding:clamp(72px,10vw,130px) 0}
.thank-premium .order-success__container{position:relative;z-index:1}
.thank-premium .order-success__lead{max-width:48ch;font-size:clamp(1.05rem,1.7vw,1.3rem);line-height:1.7}
.thank-premium .order-success__number,.thank-premium .order-success__grid,.thank-premium .order-success__note{background:rgba(10,9,8,.88);backdrop-filter:blur(14px)}
.thank-premium .post-purchase-steps{display:grid;grid-template-columns:repeat(3,1fr);margin:28px 0 38px;border:1px solid var(--border-hairline)}
.thank-premium .post-purchase-steps div{padding:22px;border-right:1px solid var(--border-hairline)}
.thank-premium .post-purchase-steps div:last-child{border-right:0}
.thank-premium .post-purchase-steps strong{display:block;margin-bottom:8px}
.thank-premium .thank-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
.collections-premium-hero{position:relative;min-height:clamp(460px,66vh,700px);display:flex;align-items:flex-end;background:url('../images/collections/noir.webp') center/cover no-repeat;overflow:hidden}
.collections-premium-hero::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(5,5,4,.97),rgba(5,5,4,.72) 48%,rgba(5,5,4,.12))}
.collections-premium-hero .container{position:relative;z-index:1;padding-bottom:clamp(50px,8vw,100px)}
.collections-premium-hero h1{font-family:var(--font-display);font-size:clamp(4.3rem,8vw,8rem);font-weight:500;line-height:.9;max-width:8ch}
.collections-premium-hero .lead{max-width:42ch}
.collections-compare{margin-top:-1px;background:#0d0c0a}
.collection-editorial{scroll-margin-top:100px}
.not-found-premium{min-height:calc(100dvh - 82px);display:flex;align-items:center}
.not-found-premium .container{padding-top:80px;padding-bottom:80px}
.not-found-premium p{max-width:40ch;font-size:1.12rem;line-height:1.75}
.not-found-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px}
.legal-premium{padding-top:40px;padding-bottom:90px}
.legal-layout{display:grid;grid-template-columns:minmax(0,1fr) 260px;gap:clamp(40px,7vw,100px);align-items:start;max-width:1120px}
.legal-copy{max-width:760px}
.legal-copy>h1{font-family:var(--font-display);font-size:clamp(3.7rem,7vw,6.4rem);font-weight:500;line-height:.95;max-width:10ch}
.legal-copy .product-detail-section{scroll-margin-top:120px;padding:34px 0}
.legal-copy .product-detail-section__title{font-family:var(--font-display);font-weight:500!important;font-size:clamp(1.7rem,3vw,2.5rem)!important}
.legal-nav{position:sticky;top:110px;padding:24px;border:1px solid var(--border-hairline);background:#0d0c0a}
.legal-nav strong{display:block;margin-bottom:16px;color:var(--gold);letter-spacing:.12em;text-transform:uppercase;font-size:.76rem}
.legal-nav a{display:block;padding:10px 0;color:var(--text-secondary);border-bottom:1px solid var(--border-hairline);font-size:.9rem}
.legal-nav a:last-child{border-bottom:0}
.legal-nav a:hover{color:var(--text-primary)}
@media(max-width:900px){.legal-layout{grid-template-columns:1fr}.legal-nav{position:static;order:-1}.post-purchase-steps{grid-template-columns:1fr!important}.thank-premium .post-purchase-steps div{border-right:0;border-bottom:1px solid var(--border-hairline)}.thank-premium .post-purchase-steps div:last-child{border-bottom:0}.status-premium::after,.thank-premium::after,.not-found-premium::after{background:linear-gradient(180deg,rgba(5,5,4,.82),rgba(5,5,4,.97) 72%)}.status-premium .order-track__container{margin-inline:auto}}

/* VA HOME v10.1 — final hero alignment + product typography/mobile repair */
@media (min-width: 901px) {
  .collections-premium-hero .container,
  .discovery-hero__content,
  .scent-experience__hero-content,
  .status-premium .order-track__container,
  .journal-hero .container {
    transform: translate(-56px,-34px);
  }

  .collections-premium-hero {
    align-items: center;
  }

  .collections-premium-hero .container {
    padding-bottom: 0;
  }

  .discovery-hero__content {
    padding-top: 100px;
    padding-bottom: 54px;
  }

  .scent-experience__hero-content {
    padding-top: 96px;
    padding-bottom: 48px;
  }

  .status-premium {
    align-items: flex-start;
    padding-top: clamp(72px,8vh,105px);
  }

  .journal-hero {
    align-items: flex-start;
    padding-top: clamp(92px,10vh,130px);
  }
}

/* Product names must never break inside words. */
.product-hero__name {
  overflow-wrap: normal !important;
  word-break: keep-all !important;
  hyphens: none !important;
}

@media (min-width: 1060px) {
  .has-editorial-product-story .product-hero__name,
  .product-story-legacy-disabled .product-hero__name,
  .has-product-story-v10 .product-hero__name {
    max-width: 12ch !important;
    font-size: clamp(3.35rem,5vw,6.2rem) !important;
  }
}

/* Fix the cinematic product story on phones: no squeezed 2–4 letter columns. */
@media (max-width: 900px) {
  .has-product-story-v10 .story-composition,
  .has-product-story-v10 .story-notes__grid,
  .has-product-story-v10 .story-discovery__inner {
    grid-template-columns: minmax(0,1fr) !important;
  }

  .has-product-story-v10 .story-composition__copy,
  .has-product-story-v10 .story-dna,
  .has-product-story-v10 .story-composition__macro {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .has-product-story-v10 .story-composition__copy,
  .has-product-story-v10 .story-dna {
    padding: 3rem max(1.25rem,var(--container-pad)) !important;
  }

  .has-product-story-v10 .story-composition__copy h2,
  .has-product-story-v10 .story-composition__copy p,
  .has-product-story-v10 .story-dna * {
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .has-product-story-v10 .story-composition__macro {
    min-height: 62vh !important;
  }
}

@media (max-width: 620px) {
  .product-hero__name {
    max-width: 100% !important;
    font-size: clamp(2.7rem,13vw,4rem) !important;
    line-height: .92 !important;
  }

  .collections-premium-hero .container,
  .discovery-hero__content,
  .scent-experience__hero-content,
  .status-premium .order-track__container,
  .journal-hero .container {
    transform: none;
  }

  .status-premium h1,
  .thank-premium h1,
  .not-found-premium h1 {
    max-width: 12ch;
    font-size: clamp(3.2rem,16vw,5rem);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
}

/* VA HOME v10.2 — delivery-style internal heroes + guaranteed product title wrapping */
@media (min-width: 901px) {
  .collections-premium-hero,
  .discovery-hero,
  .scent-experience__hero,
  .status-premium,
  .not-found-premium {
    align-items: center !important;
  }

  .collections-premium-hero .container,
  .discovery-hero__content,
  .scent-experience__hero-content,
  .status-premium .order-track__container,
  .not-found-premium .container {
    transform: none !important;
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
  }

  .collections-premium-hero .container,
  .discovery-hero__content,
  .scent-experience__hero-content,
  .status-premium .order-track__container,
  .not-found-premium .container {
    padding-top: clamp(52px,7vh,86px) !important;
    padding-bottom: clamp(42px,6vh,72px) !important;
  }

  .collections-premium-hero .container > *,
  .discovery-hero__content > *,
  .scent-experience__hero-content > *,
  .status-premium .order-track__container > *,
  .not-found-premium .container > * {
    max-width: 690px;
  }

  .collections-premium-hero h1,
  .discovery-hero h1,
  .scent-experience__hero h1,
  .status-premium h1,
  .not-found-premium h1 {
    font-size: clamp(3.55rem,5.7vw,6.35rem) !important;
    line-height: .92 !important;
    letter-spacing: -.035em !important;
    max-width: 10.5ch !important;
    margin-top: .65rem !important;
    margin-bottom: 1.35rem !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .collections-premium-hero .lead,
  .discovery-hero .lead,
  .scent-experience__hero-copy,
  .status-premium .order-track__lead,
  .not-found-premium p {
    max-width: 610px !important;
    font-size: clamp(1rem,1.35vw,1.22rem) !important;
    line-height: 1.65 !important;
  }

  .collections-premium-hero .container {
    padding-bottom: clamp(42px,6vh,72px) !important;
  }

  .status-premium {
    padding-top: 0 !important;
  }

  .product-hero__name {
    max-width: none !important;
    width: 100% !important;
    font-size: clamp(3.2rem,4.35vw,5.25rem) !important;
    line-height: .9 !important;
  }

  .product-hero__name .product-title-line {
    display: block;
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .collections-premium-hero h1,
  .discovery-hero h1,
  .scent-experience__hero h1,
  .status-premium h1,
  .not-found-premium h1 {
    font-size: clamp(3rem,14vw,4.6rem) !important;
    line-height: .94 !important;
    max-width: 10ch !important;
  }

  .product-hero__name .product-title-line {
    display: block;
    white-space: nowrap;
  }
}


/* VA HOME v10.4 — editorial refinement */
.collections-compare-cards{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1px;margin-top:clamp(42px,6vw,78px);background:var(--border-hairline);border:1px solid var(--border-hairline)}
.collection-compare-card{position:relative;min-height:460px;overflow:hidden;color:var(--text-primary);text-decoration:none;background:#0c0b09}
.collection-compare-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.48;transition:transform 1.2s var(--ease-standard),opacity .6s ease}
.collection-compare-card::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(5,5,4,.96) 0%,rgba(5,5,4,.18) 72%)}
.collection-compare-card>div{position:absolute;z-index:1;inset:auto 0 0;padding:clamp(24px,3vw,38px)}
.collection-compare-card span{color:var(--color-gold);font-size:.68rem;letter-spacing:.14em;text-transform:uppercase}
.collection-compare-card h2{margin:.55rem 0 .8rem;font-size:clamp(1.8rem,2.4vw,3rem);line-height:.95}
.collection-compare-card p{min-height:4.8em;color:rgba(245,239,230,.72);font-size:.88rem;line-height:1.6}
.collection-compare-card strong{display:block;margin-top:1.2rem;color:var(--color-gold);font-weight:500}
.collection-compare-card:hover img{transform:scale(1.045);opacity:.64}

.has-product-story-v10 .story-dna{display:flex;flex-direction:column;justify-content:center}
.story-dna__radar{width:min(100%,330px);margin:1.6rem auto 1rem;aspect-ratio:1}
.story-dna__radar svg{display:block;width:100%;height:100%;overflow:visible}
.story-dna__grid polygon,.story-dna__grid line{fill:none;stroke:rgba(244,240,233,.13);stroke-width:1}
.story-dna__shape{fill:rgba(184,138,75,.22);stroke:var(--color-gold);stroke-width:2;filter:drop-shadow(0 0 14px rgba(184,138,75,.16))}
.story-dna__legend{display:grid;grid-template-columns:1fr 1fr;gap:.65rem 1.4rem;margin:0;padding:0;list-style:none}
.story-dna__legend li{display:flex;justify-content:space-between;gap:1rem;padding-bottom:.55rem;border-bottom:1px solid rgba(244,240,233,.1);font-size:.74rem;letter-spacing:.04em}
.story-dna__legend span{color:var(--text-secondary)}
.story-dna__legend strong{color:var(--color-gold);font-weight:500}
.story-media-missing{position:relative;min-height:320px;background:radial-gradient(circle at 70% 20%,rgba(184,138,75,.13),transparent 35%),linear-gradient(145deg,#181510,#090807)}
.story-media-missing::after{content:"VA HOME · ATMOSPHERE";position:absolute;inset:auto 1.5rem 1.5rem;color:rgba(244,240,233,.42);font-size:.62rem;letter-spacing:.18em}

.scent-experience__hero--consultation .scent-experience__hero-content{position:relative;max-width:760px;margin-left:max(0px,calc((100vw - 1500px)/2));padding-left:clamp(28px,5vw,78px);border-left:1px solid rgba(184,138,75,.42)}
.scent-experience__index{position:absolute;right:0;top:0;color:rgba(184,138,75,.55);font-family:var(--font-display);font-size:clamp(2rem,4vw,4.8rem)}
.scent-experience__hero--consultation h1{max-width:10ch;font-size:clamp(4.2rem,7vw,8.2rem);line-height:.87}
.scent-experience__hero--consultation .scent-experience__hero-media img{filter:saturate(.78) contrast(1.05)}

@media(max-width:1100px){.collections-compare-cards{grid-template-columns:1fr 1fr}.collection-compare-card{min-height:390px}}
@media(max-width:700px){.collections-compare-cards{grid-template-columns:1fr}.collection-compare-card{min-height:360px}.collection-compare-card p{min-height:0}.story-dna__legend{grid-template-columns:1fr}.scent-experience__index{display:none}.scent-experience__hero--consultation .scent-experience__hero-content{margin-left:0;padding-left:0;border-left:0}}

/* ==========================================================
   VA HOME v11.0 — Creative Direction Polish
   ========================================================== */

/* Shared cinematic hero entrance for Discovery + Scent Guide */
.motion-ready .discovery-hero::before,
.motion-ready .scent-experience__hero-media img {
  animation: vaV11HeroDrift 16s var(--motion-ease-soft) both;
  transform-origin: 68% 48%;
  will-change: transform;
}

@keyframes vaV11HeroDrift {
  from { transform: scale(1.015) translate3d(0,0,0); }
  to { transform: scale(1.07) translate3d(-.7%,-.35%,0); }
}

.motion-ready .discovery-hero__content > *,
.motion-ready .scent-experience__hero-content > * {
  opacity: 0;
  transform: translate3d(0,24px,0);
  transition: opacity 900ms var(--motion-ease-luxury), transform 1100ms var(--motion-ease-luxury);
}

.motion-ready .discovery-hero__content.is-visible > *,
.motion-ready .scent-experience__hero-content.is-visible > * {
  opacity: 1;
  transform: none;
}

.motion-ready .discovery-hero__content > *:nth-child(1),
.motion-ready .scent-experience__hero-content > *:nth-child(1){transition-delay:100ms}
.motion-ready .discovery-hero__content > *:nth-child(2),
.motion-ready .scent-experience__hero-content > *:nth-child(2){transition-delay:220ms}
.motion-ready .discovery-hero__content > *:nth-child(3),
.motion-ready .scent-experience__hero-content > *:nth-child(3){transition-delay:350ms}
.motion-ready .discovery-hero__content > *:nth-child(4),
.motion-ready .scent-experience__hero-content > *:nth-child(4){transition-delay:480ms}
.motion-ready .discovery-hero__content > *:nth-child(5),
.motion-ready .scent-experience__hero-content > *:nth-child(5){transition-delay:600ms}

/* Collections: remove cramped four-column card wall and restore editorial scale */
.collections-premium-hero{padding-bottom:clamp(72px,9vw,130px)}
.collections-premium-hero .lead{max-width:62ch}
.collections-compare-cards{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  padding:0;
  background:transparent;
  border:0;
}
.collection-compare-card{
  min-height:clamp(460px,48vw,650px);
  border:1px solid var(--border-hairline);
  isolation:isolate;
}
.collection-compare-card img{opacity:.62}
.collection-compare-card::after{
  background:linear-gradient(0deg,rgba(5,5,4,.97) 0%,rgba(5,5,4,.64) 30%,rgba(5,5,4,.08) 76%);
}
.collection-compare-card>div{max-width:520px;padding:clamp(28px,4vw,52px)}
.collection-compare-card h2{
  max-width:11ch;
  font-size:clamp(2.6rem,4.4vw,5.2rem);
  line-height:.92;
  overflow-wrap:normal;
  word-break:normal;
  hyphens:none;
}
.collection-compare-card p{
  max-width:38ch;
  min-height:0;
  font-size:.95rem;
  line-height:1.7;
  overflow-wrap:normal;
  word-break:normal;
}
.collection-compare-card strong{font-size:.78rem;letter-spacing:.08em;text-transform:uppercase}
.collection-editorial{padding-block:clamp(80px,10vw,150px)}
.collection-editorial .about-split{gap:clamp(36px,7vw,110px);align-items:center}
.collection-editorial .about-split__media{min-height:clamp(480px,58vw,760px);overflow:hidden}
.collection-editorial .about-split__media img{transition:transform 1.3s var(--motion-ease-luxury)}
.collection-editorial .about-split:hover .about-split__media img{transform:scale(1.025)}
.collection-editorial .about-split__body{max-width:520px}
.collection-editorial .about-split__body h2{font-size:clamp(3rem,5.7vw,6rem);line-height:.92;overflow-wrap:normal;word-break:normal}
.collection-editorial .aroma-list{margin-block:28px 34px}

/* Product pages: final polish without redesigning their structure */
body[class*="has-product-story"] .product-hero,
.product-page .product-hero{border-bottom:1px solid var(--border-hairline)}
.product-page h1,.product-page h2,.product-page h3,
body[class*="has-product-story"] h1,body[class*="has-product-story"] h2{overflow-wrap:normal;word-break:normal;hyphens:none}
.story-quote,.story-composition,.story-notes,.story-ritual{contain:layout paint}
.story-composition__media,.story-notes__media,.story-ritual__media{background:linear-gradient(145deg,#171512,#090908);overflow:hidden}
.story-composition__media img,.story-notes__media img,.story-ritual__media img{transition:transform 1.4s var(--motion-ease-luxury),filter .9s ease}
@media(hover:hover) and (pointer:fine){
  .story-composition__media:hover img,.story-notes__media:hover img,.story-ritual__media:hover img{transform:scale(1.025)}
}
.product-page .btn,.product-page button{min-height:48px}

@media(max-width:900px){
  .collections-compare-cards{grid-template-columns:1fr}
  .collection-compare-card{min-height:520px}
  .collection-editorial .about-split,
  .collection-editorial .about-split--reverse{grid-template-columns:1fr}
  .collection-editorial .about-split--reverse .about-split__media{order:0}
  .collection-editorial .about-split--reverse .about-split__body{order:1}
}

@media(max-width:640px){
  .collection-compare-card{min-height:430px}
  .collection-compare-card h2{font-size:clamp(2.65rem,13vw,4.1rem)}
  .collection-compare-card>div{padding:26px 22px 30px}
  .collection-editorial{padding-block:72px}
  .collection-editorial .about-split__media{min-height:400px}
  .collection-editorial .about-split__body h2{font-size:clamp(2.7rem,13vw,4.4rem)}
}

@media(prefers-reduced-motion:reduce){
  .motion-ready .discovery-hero::before,
  .motion-ready .scent-experience__hero-media img{animation:none!important;transform:none!important}
  .motion-ready .discovery-hero__content > *,
  .motion-ready .scent-experience__hero-content > *{opacity:1!important;transform:none!important;transition:none!important}
}

/* VA HOME v11.8.24 — stronger home hero typography + readable fragrance DNA */
@media (min-width: 901px) {
  .home-page .hero.hero--editorial .hero-slide__content {
    width: min(100%, 760px);
  }
  .home-page .hero.hero--editorial .hero-slide__title {
    font-size: clamp(4rem, 5.15vw, 5.4rem);
    line-height: .92;
    letter-spacing: -.035em;
    margin-bottom: 1.4rem;
  }
  .home-page .hero.hero--editorial .hero-slide__subtitle {
    max-width: 34ch;
    font-size: clamp(1.08rem, 1.32vw, 1.34rem);
    line-height: 1.55;
    margin-bottom: 1.65rem;
  }
  .home-page .hero.hero--editorial .hero-slide__actions .btn {
    min-height: 58px;
    padding-inline: 1.9rem;
    font-size: .98rem;
  }
}






.story-dna__shape {
  transform-box:fill-box;
  transform-origin:center;
  animation:dnaRadarReveal .75s cubic-bezier(.22,.61,.36,1) both;
}
.story-dna__point {
  fill:var(--color-gold);
  stroke:#0a0907;
  stroke-width:1.2;
  opacity:0;
  animation:dnaPointReveal .35s ease .55s forwards;
}
.story-dna__axis-label {
  fill:rgba(244,240,233,.72);
  font-family:var(--font-sans);
  font-size:7px;
  letter-spacing:.045em;
  text-transform:uppercase;
}

.story-dna__character {
  display:grid;
  gap:.28rem;
  margin:.45rem 0 1rem;
  padding:1rem 0;
  border-top:1px solid rgba(244,240,233,.1);
  border-bottom:1px solid rgba(244,240,233,.1);
}








@keyframes dnaRadarReveal {from{opacity:0;transform:scale(.15)}to{opacity:1;transform:scale(1)}}
@keyframes dnaPointReveal {to{opacity:1}}
@keyframes dnaBarReveal {from{transform:scaleX(0)}to{transform:scaleX(1)}}



/* ===== v11-3-final-polish.css ===== */
/* VA HOME v11.3 — final cross-site polish */
:root{--tap-min:44px;--content-measure:68ch}
html{scroll-padding-top:92px}
body{overflow-wrap:normal;word-break:normal;text-wrap:pretty}
h1,h2,h3,.hero-slide__title,.collection-world h2{overflow-wrap:normal;word-break:keep-all;text-wrap:balance}
p{max-width:var(--content-measure)}
a,button,input,select,textarea{-webkit-tap-highlight-color:transparent}
button,.btn,[role="button"],.header-icon,.collection-world__cta{min-height:var(--tap-min)}
img{background-color:transparent}
.editorial-fallback-image{object-fit:cover;filter:saturate(.82) contrast(.96);background:transparent}
.checkout-trust-strip{border-bottom:1px solid var(--border-hairline);background:var(--bg-primary);padding:18px 0}
.checkout-trust-strip__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.checkout-trust-strip__grid div{display:flex;flex-direction:column;gap:3px}
.checkout-trust-strip__grid strong{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--text-primary)}
.checkout-trust-strip__grid span{font-size:12px;color:var(--text-secondary)}
/* Keep editorial sections readable on narrow laptops and tablets */
@media (max-width:1100px){
  .collection-world{grid-template-columns:minmax(0,1fr) minmax(300px,.82fr)}
  .collection-world--reverse{grid-template-columns:minmax(300px,.82fr) minmax(0,1fr)}
  .collection-world__content{padding-inline:clamp(28px,5vw,64px)}
}
@media (max-width:760px){
  html{scroll-padding-top:74px}
  .checkout-trust-strip__grid{grid-template-columns:1fr;gap:12px}
  .checkout-trust-strip__grid div{padding-bottom:12px;border-bottom:1px solid var(--border-hairline)}
  .checkout-trust-strip__grid div:last-child{border-bottom:0;padding-bottom:0}
  .collection-world,.collection-world--reverse{grid-template-columns:1fr!important}
  .collection-world__media{min-height:58svh;order:0!important}
  .collection-world__content{order:1!important;padding:46px 22px 58px!important}
  .collection-world h2{font-size:clamp(44px,13vw,68px);line-height:.92}
  .collection-world__intro{font-size:15px;line-height:1.65}
  .collection-world__aromas{grid-template-columns:1fr 1fr;gap:10px 16px}
  .collections-v2-index__inner{overflow-x:auto;scrollbar-width:none;overscroll-behavior-inline:contain}
  .collections-v2-index__inner::-webkit-scrollbar{display:none}
  .collections-v2-index a{flex:0 0 auto;min-height:48px}
  .hero-slide__title br{display:none}
}
@media (max-width:390px){
  
  .btn{width:100%;justify-content:center}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
}

/* ===== v11-4-mobile-product-polish.css ===== */
/* VA HOME v11.4 — mobile hero reliability + editorial polish */

/* HOME CAROUSEL: all slides always own a complete painted viewport. */
.home-page .hero.hero--editorial{
  position:relative;
  height:100svh;
  min-height:620px;
  background:#17130f;
  isolation:isolate;
}
.home-page .hero.hero--editorial .hero-slide,
.home-page .hero.hero--editorial .hero-slide.is-active{
  position:absolute!important;
  inset:0;
  width:100%;
  height:100%;
  min-height:100%;
}
.home-page .hero.hero--editorial .hero-slide__media{
  background:#17130f;
}
.home-page .hero.hero--editorial .hero-slide__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:1;
  visibility:visible;
  background:#17130f;
}
.home-page .hero.hero--editorial .hero-slide:not(.is-active){
  pointer-events:none;
}
@media(max-width:900px){
  .home-page .hero.hero--editorial{min-height:640px;height:100svh}
  .home-page .hero.hero--editorial .hero-slide__media img{object-position:center center}
  .home-page .hero.hero--editorial .hero-slide:nth-child(2) .hero-slide__media img{object-position:58% center}
  .home-page .hero.hero--editorial .hero-slide:nth-child(3) .hero-slide__media img{object-position:62% center}
  .home-page .hero.hero--editorial .hero-slide__content{
    padding:calc(var(--header-height,72px) + 28px) 20px max(88px,calc(62px + env(safe-area-inset-bottom)));
  }
  .home-page .hero.hero--editorial .hero-slide__title{
    font-size:clamp(40px,12.2vw,58px);
    line-height:.96;
    max-width:10ch;
  }
  .home-page .hero.hero--editorial .hero-slide__subtitle{
    font-size:15px;
    line-height:1.55;
    max-width:34ch;
  }
  .home-page .hero.hero--editorial .hero-slide__actions{max-width:360px}
  .home-page .hero.hero--editorial .hero-nav{bottom:max(18px,env(safe-area-inset-bottom))}
}
@media(max-width:390px){
  .home-page .hero.hero--editorial{min-height:610px}
  .home-page .hero.hero--editorial .hero-slide__title{font-size:clamp(38px,12vw,50px)}
  .home-page .hero.hero--editorial .hero-slide__content{padding-inline:16px}
}

/* ABOUT: restore hierarchy and prevent the manifesto headline colliding with copy. */
.brand-manifesto__grid{
  grid-template-columns:.12fr minmax(0,.9fr) minmax(360px,.78fr);
  gap:clamp(2.5rem,6vw,7.5rem);
}
.brand-manifesto h2{
  font-size:clamp(3rem,5.1vw,5.6rem);
  line-height:.94;
  max-width:10.5ch;
  text-wrap:balance;
}
.brand-manifesto__copy{max-width:500px;line-height:1.9}
@media(max-width:1100px){
  .brand-manifesto__grid{grid-template-columns:.1fr minmax(0,1fr);gap:2rem 3rem}
  .brand-manifesto__copy{grid-column:2;max-width:620px}
  .brand-manifesto h2{font-size:clamp(3rem,7vw,5rem);max-width:11ch}
}
@media(max-width:600px){
  .brand-manifesto__grid{grid-template-columns:1fr;gap:1.4rem}
  .brand-manifesto__copy{grid-column:auto;max-width:none}
  .brand-manifesto h2{font-size:clamp(2.9rem,13vw,4.15rem);line-height:.96;max-width:10ch}
}

/* PRODUCT REVIEWS + RECOMMENDATIONS: social proof first, consulting tone second. */
.story-similar h2{max-width:16ch;font-size:clamp(2.5rem,5vw,5rem);line-height:.96}
.story-similar h2 span{color:var(--color-gold)}
.similar-section__intro{max-width:62ch;color:var(--text-secondary);font-size:clamp(.98rem,1.2vw,1.08rem);line-height:1.75;margin:1rem 0 2rem}
.reviews-section{border-top:1px solid var(--border-hairline)}
.reviews-summary{position:sticky;top:110px;align-self:start}
.review-card__verified,.verified-purchase{display:inline-flex;align-items:center;gap:.35rem;color:var(--color-gold);font-size:.68rem;letter-spacing:.08em;text-transform:uppercase}
@media(max-width:900px){
  
  .story-similar h2{font-size:clamp(2.4rem,11vw,4rem);max-width:12ch}
}
@media(max-width:600px){
  .reviews-layout{gap:2.25rem}
  .story-similar .similar-grid{grid-template-columns:1fr 1fr;gap:14px}
  .story-similar .product-card__title{font-size:1rem}
}


/* ===== v11-5-mobile-perfection.css ===== */
/* VA HOME v11.5 — Mobile Perfection
   Final responsive safety layer. It deliberately avoids redesigning pages and
   only corrects viewport behaviour, hierarchy, touch targets and text flow. */

html{overflow-x:clip}
body{overflow-x:clip;min-width:320px}
img,video,svg{max-width:100%}

/* Never split luxury headings inside a word. Long URLs and user content may wrap,
   but editorial titles must retain natural Ukrainian word boundaries. */
h1,h2,h3,.hero-slide__title,.product-hero__name,.collection-world__name,
.brand-manifesto h2,.editorial-page-hero h1,.scent-experience__hero h1{
  overflow-wrap:normal;
  word-break:normal;
  hyphens:none;
  text-wrap:balance;
}

button,a,input,select,textarea{touch-action:manipulation}
.btn,.icon-btn,.filter-chip,.guide-option,.product-gallery-thumb{
  min-height:44px;
}

/* HOME HERO — stable paint on every slide, including iOS Safari/local preview. */
.home-page .hero.hero--editorial{
  height:100vh;
  height:100svh;
  min-height:620px;
  background:
    radial-gradient(circle at 70% 35%,rgba(181,138,75,.13),transparent 42%),
    #17130f;
}
.home-page .hero-slide{background:#17130f}
.home-page .hero-slide__media{
  opacity:1;
  background:
    radial-gradient(circle at 70% 35%,rgba(181,138,75,.12),transparent 45%),
    linear-gradient(135deg,#211b15,#0e0d0b 72%);
}
.home-page .hero-slide__media img{
  transform:scale(1.015);
  transition:transform 9s cubic-bezier(.2,.65,.25,1),opacity .45s ease;
}
.home-page .hero-slide.is-active .hero-slide__media img{transform:scale(1)}
.home-page .hero-slide:not(.is-media-ready) .hero-slide__media img{opacity:0}
.home-page .hero-slide.is-media-ready .hero-slide__media img{opacity:1}
.home-page .hero-slide.is-media-missing .hero-slide__media img{display:none}
.home-page .hero-slide__content{width:min(100%,720px)}

/* Shared inner-page hero geometry. */
.editorial-page-hero,.collections-v2-hero,.discovery-hero,
.scent-experience__hero,.brand-hero,.delivery-hero,.contact-hero{
  min-height:min(820px,calc(100svh - var(--header-height-mobile,72px)));
}

/* Product gallery polish shared across desktop and touch devices. */
.product-gallery-thumb,.product-hero__media,.story-media,.brand-frame__media,
.collection-world__media{overflow:hidden}
.product-gallery-thumb img,.product-hero__media img,.story-media img,
.brand-frame__media img,.collection-world__media img{
  transition:transform 900ms cubic-bezier(.2,.65,.25,1);
}
@media(hover:hover) and (pointer:fine){
  .product-gallery-thumb:hover img,.story-media:hover img,.brand-frame__media:hover img,
  .collection-world__media:hover img{transform:scale(1.02)}
  .btn:active{transform:translateY(1px) scale(.992);transition-duration:90ms}
}

@media(max-width:900px){
  :root{--mobile-page-pad:clamp(16px,5vw,24px)}
  .container{padding-inline:var(--mobile-page-pad)}

  /* Home: content remains readable on short iPhones and does not overlap dots. */
  .home-page .hero.hero--editorial{min-height:600px}
  .home-page .hero-slide__content{
    padding-top:calc(var(--header-height-mobile,72px) + env(safe-area-inset-top) + 24px);
    padding-right:var(--mobile-page-pad);
    padding-bottom:max(104px,calc(88px + env(safe-area-inset-bottom)));
    padding-left:var(--mobile-page-pad);
  }
  .home-page .hero-slide__title{
    max-width:11ch;
    font-size:clamp(2.55rem,11vw,4rem);
    line-height:.94;
    letter-spacing:-.025em;
  }
  .home-page .hero-slide__subtitle{max-width:34ch}
  .home-page .hero-nav{bottom:max(20px,env(safe-area-inset-bottom));left:var(--mobile-page-pad);right:var(--mobile-page-pad)}
  .home-page .slide-dots{justify-content:center}
  .home-page .slide-dots button{padding:12px 14px;min-width:44px;min-height:44px;display:inline-flex;align-items:center;justify-content:center}

  /* Catalog: filter sheet and cards are comfortable at 320–430px. */
  .editorial-page-hero--catalog{min-height:clamp(540px,78svh,720px)}
  .catalog-layout{display:block}
  .catalog-filters__panel{
    max-height:min(82svh,760px);
    padding-bottom:max(24px,env(safe-area-inset-bottom));
    overflow:auto;
    overscroll-behavior:contain;
  }
  .catalog-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:22px 12px}
  .catalog-toolbar{gap:12px;align-items:flex-start}

  /* Collections: one visual scene at a time, no compressed text columns. */
  .collections-v2-hero{min-height:clamp(620px,90svh,820px)}
  .collections-v2-index{position:sticky;top:calc(var(--header-height-mobile,72px) + env(safe-area-inset-top));z-index:20;overflow-x:auto;scrollbar-width:none}
  .collections-v2-index::-webkit-scrollbar{display:none}
  .collections-v2-index__inner{width:max-content;min-width:100%;padding-inline:var(--mobile-page-pad)}
  .collection-world,.collection-world--reverse{grid-template-columns:1fr!important;min-height:auto}
  .collection-world__media{order:1;min-height:52svh;aspect-ratio:4/5}
  .collection-world__content{order:2;padding:clamp(34px,9vw,60px) var(--mobile-page-pad) clamp(58px,14vw,88px)}
  .collection-world__name{font-size:clamp(3rem,15vw,5rem);line-height:.9}
  .collection-world__aromas{grid-template-columns:1fr 1fr;gap:10px 16px}

  /* Discovery: cards and picker no longer fight the viewport. */
  .discovery-hero{min-height:clamp(620px,90svh,800px)}
  .discovery-hero__content{padding-bottom:max(52px,calc(34px + env(safe-area-inset-bottom)))}
  .discovery-variants{grid-template-columns:1fr;gap:18px}
  .discovery-variant-card{padding:clamp(24px,7vw,38px)}
  .discovery-picker{padding:12px}
  .discovery-picker__panel{max-height:calc(100svh - 24px);border-radius:18px;overflow:hidden}
  .discovery-picker__list{overflow:auto;overscroll-behavior:contain;-webkit-overflow-scrolling:touch}
  .discovery-picker__actions{padding-bottom:max(16px,env(safe-area-inset-bottom))}

  /* Scent guide: consultation remains usable without horizontal overflow. */
  .scent-experience__hero{min-height:clamp(620px,90svh,800px)}
  .scent-guide-layout{grid-template-columns:1fr}
  .scent-guide-aside{position:static}
  .guide-options{grid-template-columns:1fr 1fr;gap:12px}
  .guide-option{padding:18px 15px;min-width:0}
  .guide-option__title{overflow-wrap:normal;word-break:normal}

  /* About: editorial hierarchy from the approved correction. */
  .brand-manifesto__grid{grid-template-columns:1fr;gap:20px}
  .brand-manifesto__number{margin-bottom:2px}
  .brand-manifesto h2{font-size:clamp(3rem,13vw,4.65rem);line-height:.94;max-width:10.5ch}
  .brand-manifesto__copy{grid-column:auto;max-width:38rem;line-height:1.78}
  .brand-principles__grid{grid-template-columns:1fr}

  /* Delivery and contacts: facts/cards remain legible and tappable. */
  .delivery-hero__facts{grid-template-columns:1fr;gap:12px}
  .delivery-steps,.contact-cards{grid-template-columns:1fr}
  .delivery-split,.delivery-return__grid,.contact-details{grid-template-columns:1fr}
  .contact-hero__actions{align-items:stretch;flex-direction:column}
  .contact-hero__actions .btn{width:100%}

  /* Product: preserve the approved structure, refine only flow and touch UX. */
  .product-hero{grid-template-columns:1fr;gap:28px}
  .product-gallery{min-width:0}
  .product-gallery-thumbs{display:flex;gap:8px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;padding-bottom:4px}
  .product-gallery-thumbs::-webkit-scrollbar{display:none}
  .product-gallery-thumb{flex:0 0 72px;scroll-snap-align:start}
  .product-hero__name{font-size:clamp(3rem,14vw,5rem);line-height:.9}
  .product-primary-actions{position:relative;z-index:2}
  .product-primary-actions .btn{width:100%}
  .reviews-layout{grid-template-columns:1fr}
  .reviews-summary{position:static}
  .story-similar .similar-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:20px 12px}

  /* Cart/checkout: predictable one-column purchase flow. */
  .cart-layout{grid-template-columns:1fr;gap:30px}
  .cart-summary{position:static}
  .checkout-trust-strip__grid{display:flex;overflow-x:auto;gap:24px;scrollbar-width:none;white-space:nowrap}
  .checkout-trust-strip__grid::-webkit-scrollbar{display:none}
  .checkout-form__grid,.form-grid{grid-template-columns:1fr}
}

@media(max-width:600px){
  .section{padding-block:clamp(52px,14vw,78px)}
  .section--tight{padding-block:clamp(38px,10vw,58px)}
  .editorial-page-hero h1,.collections-v2-hero h1,.discovery-hero h1,
  .scent-experience__hero h1,.brand-hero h1,.delivery-hero h1,.contact-hero h1{
    font-size:clamp(2.75rem,13.5vw,4.5rem);
    line-height:.92;
  }
  .product-essential-facts{grid-template-columns:1fr 1fr}
}

@media(max-width:390px){
  :root{--mobile-page-pad:16px}
  .home-page .hero.hero--editorial{min-height:580px}
  .home-page .hero-slide__title{font-size:clamp(2.35rem,11.2vw,3.15rem)}
  .home-page .hero-slide__subtitle{font-size:.92rem;line-height:1.5}
  .home-page .hero-slide__actions{gap:10px}
  .catalog-grid{grid-template-columns:1fr}
  .guide-options{grid-template-columns:1fr}
  .collection-world__aromas{grid-template-columns:1fr}
  .story-similar .similar-grid{grid-template-columns:1fr}
  .product-essential-facts{grid-template-columns:1fr}
}

@media(max-height:700px) and (max-width:900px){
  .home-page .hero.hero--editorial{min-height:560px}
  .home-page .hero-slide__content{padding-top:calc(var(--header-height-mobile,72px) + 12px);padding-bottom:82px}
  .home-page .hero-slide__eyebrow{margin-bottom:10px}
  .home-page .hero-slide__title{font-size:clamp(2.2rem,9.8vw,3.2rem);margin-bottom:14px}
  .home-page .hero-slide__subtitle{margin-bottom:18px}
}

@media(prefers-reduced-motion:reduce){
  .home-page .hero-slide__media img,.product-gallery-thumb img,.story-media img,
  .brand-frame__media img,.collection-world__media img{transition:none!important;transform:none!important}
}

/* v11.8.1 hero copy reliability: motion layer must never blank active copy. */
.motion-ready .home-page .hero--editorial .hero-slide.is-active .hero-slide__content > *{
  opacity:1;
  transform:none;
}
.home-page .hero--editorial .hero-slide:not(.is-active) .hero-slide__content{
  pointer-events:none;
}

/* ===== v11-6-luxury-product-polish.css ===== */
/* VA HOME v11.6 — Luxury & Product Polish */

/* About: quieter editorial hierarchy */
.brand-manifesto__grid {
  grid-template-columns: 56px minmax(0, 1.45fr) minmax(360px, .9fr);
  column-gap: clamp(44px, 6vw, 104px);
}
.brand-manifesto h2 {
  max-width: 660px;
  font-size: clamp(3.15rem, 5.4vw, 5.9rem);
  line-height: .94;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.brand-manifesto__copy {
  max-width: 460px;
  line-height: 1.8;
}
.brand-philosophy-strip {
  padding: clamp(72px, 9vw, 138px) 0;
  background: #171510;
  color: #f3eee4;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand-philosophy-strip__inner {
  display: grid;
  grid-template-columns: minmax(180px,.65fr) minmax(0,1.35fr);
  gap: clamp(40px,8vw,140px);
  align-items: end;
}
.brand-philosophy-strip__words {
  display: grid;
  gap: .12em;
  font-family: var(--font-display, "Cormorant Garamond", serif);
  font-size: clamp(4rem, 9vw, 9.5rem);
  line-height: .78;
  letter-spacing: -.04em;
}
.brand-philosophy-strip__note {
  max-width: 430px;
  color: rgba(243,238,228,.66);
  line-height: 1.75;
}

/* Footer: stronger final scene */
.site-footer--editorial { padding-top: clamp(96px, 12vw, 176px); }
.footer-statement { margin-bottom: clamp(72px, 9vw, 124px); }

/* Buttons: more tactile, restrained */
.btn, button, .collection-world__cta, .text-link {
  transition-property: transform, background-color, color, border-color, opacity, box-shadow;
  transition-duration: .42s;
  transition-timing-function: cubic-bezier(.22,1,.36,1);
}
.btn:active, button:active { transform: translateY(1px) scale(.985); transition-duration: .12s; }

/* Product gallery: only a 2% cinematic movement */
@media (hover:hover) and (pointer:fine) {
  .product-hero__media img,
  .product-story img,
  .story-gallery img,
  .product-card__media img {
    transition: transform 1.35s cubic-bezier(.22,1,.36,1), filter .7s ease;
    transform-origin: center;
  }
  .product-hero__media:hover img,
  .product-story figure:hover img,
  .story-gallery figure:hover img,
  .product-card__media:hover img { transform: scale(1.02); }
}

/* Reviews: editorial trust treatment */
.reviews-section .section-heading { max-width: 820px; }
.reviews-section .section-heading h2 { text-wrap: balance; }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border: 1px solid rgba(161,128,73,.32);
  color: #9a7640;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
}
.verified-badge::before { content: "✓"; font-size: .78rem; }
.review-card__photo, .review-photo, .reviews-list img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

/* Similar scents: consultant-like recommendations */
.story-similar .section-heading,
.product-recommendations-heading { max-width: 820px; }
.story-similar h2 { max-width: 760px; text-wrap: balance; }
.similar-grid .product-card { position: relative; }
.similar-grid .product-card__reason {
  margin: 2px 0 0;
  color: rgba(35,31,25,.62);
  font-size: .82rem;
  line-height: 1.55;
  min-height: 2.55em;
}
.similar-grid .product-card__body { gap: 8px; }
.similar-grid .product-card__desc { display: none; }

/* Collections: slower, cinematic reveal without over-animation */
.collection-world.reveal .collection-world__media,
.collection-world.reveal .collection-world__content {
  transition-duration: 1.15s;
  transition-timing-function: cubic-bezier(.22,1,.36,1);
}
.collection-world__media img { transition: transform 1.8s cubic-bezier(.22,1,.36,1); }
@media (hover:hover) and (pointer:fine) {
  .collection-world:hover .collection-world__media img { transform: scale(1.015); }
}

@media (max-width: 900px) {
  .brand-manifesto__grid { grid-template-columns: 42px minmax(0,1fr); gap: 30px 22px; }
  .brand-manifesto__copy { grid-column: 2; max-width: 620px; }
  .brand-philosophy-strip__inner { grid-template-columns: 1fr; }
  .brand-philosophy-strip__note { max-width: 560px; }
}
@media (max-width: 640px) {
  .brand-manifesto__grid { display: block; }
  .brand-manifesto__number { margin-bottom: 34px; }
  .brand-manifesto h2 { font-size: clamp(2.65rem, 13vw, 4.2rem); line-height: .95; max-width: 100%; }
  .brand-manifesto__copy { margin-top: 38px; line-height: 1.75; }
  .brand-philosophy-strip__words { font-size: clamp(4.4rem, 22vw, 7rem); line-height: .8; }
  .site-footer--editorial { padding-top: 84px; }
  .similar-grid .product-card__reason { min-height: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .product-hero__media img, .product-story img, .story-gallery img,
  .product-card__media img, .collection-world__media img { transition: none !important; transform: none !important; }
}

/* ===== v11-8-21-unified-page-heroes.css ===== */
/* VA HOME v11.8.21 — unified inner-page hero viewport system
   All main inner-page heroes now use the same viewport logic as the home hero:
   one first-screen composition, responsive typography and controlled overflow. */

:root {
  --va-desktop-header-h: 88px;
  --va-mobile-header-h: 68px;
}

@media (min-width: 761px) {
  /* Pages with a single hero directly below the desktop header */
  .editorial-page-hero,
  .discovery-hero,
  .scent-experience__hero,
  .brand-hero,
  .delivery-hero,
  .contact-hero {
    box-sizing: border-box;
    height: calc(100svh - var(--va-desktop-header-h));
    min-height: 560px;
    max-height: 900px;
    overflow: hidden;
  }

  /* Collections also contains a 46px breadcrumb strip above its hero. */
  .collections-v2-page .collections-v2-hero {
    box-sizing: border-box;
    height: calc(100svh - var(--va-desktop-header-h) - 46px);
    min-height: 540px;
    max-height: 850px;
    overflow: hidden;
  }

  /* Hero images always fill the available first-screen canvas. */
  .editorial-page-hero img,
  .discovery-hero img,
  .scent-experience__hero-media img,
  .brand-hero__media img,
  .delivery-hero__media img,
  .contact-hero__media img,
  .collections-v2-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Prevent oversized copy from forcing an inner hero beyond the viewport. */
  .editorial-page-hero h1,
  .discovery-hero h1,
  .scent-experience__hero h1,
  .brand-hero h1,
  .delivery-hero h1,
  .contact-hero h1 {
    font-size: clamp(3.7rem, 6.6vw, 7.4rem);
    line-height: .88;
  }

  .collections-v2-page .collections-v2-hero__content {
    padding-top: clamp(44px, 6vh, 72px);
    padding-bottom: clamp(38px, 5vh, 62px);
  }

  .collections-v2-page .collections-v2-hero h1 {
    font-size: clamp(3.75rem, 6.8vw, 7.6rem);
    line-height: .85;
  }
}

@media (max-width: 760px) {
  .editorial-page-hero,
  .discovery-hero,
  .scent-experience__hero,
  .brand-hero,
  .delivery-hero,
  .contact-hero {
    box-sizing: border-box;
    min-height: calc(100svh - var(--va-mobile-header-h));
    height: auto;
    overflow: hidden;
  }

  .collections-v2-page .collections-v2-hero {
    box-sizing: border-box;
    min-height: calc(100svh - var(--va-mobile-header-h) - 44px);
    height: auto;
    overflow: hidden;
  }
}

/* Every collection title follows one identical typographic system.
   Entry is no longer treated as a one-off smaller heading. */
.collections-v2-page .collection-world h2 {
  width: 100%;
  max-width: 9.5ch;
  font-size: clamp(3.65rem, 5.55vw, 6.5rem);
  line-height: .84;
  letter-spacing: -.043em;
}

@media (max-width: 760px) {
  .collections-v2-page .collection-world h2 {
    max-width: 9.5ch;
    font-size: clamp(3.35rem, 16vw, 5.15rem);
    line-height: .86;
  }
}

/* Short laptop screens: keep the whole composition visible without browser zoom. */
@media (min-width: 761px) and (max-height: 760px) {
  .editorial-page-hero,
  .discovery-hero,
  .scent-experience__hero,
  .brand-hero,
  .delivery-hero,
  .contact-hero {
    min-height: 500px;
  }

  .collections-v2-page .collections-v2-hero {
    min-height: 490px;
  }

  .editorial-page-hero h1,
  .discovery-hero h1,
  .scent-experience__hero h1,
  .brand-hero h1,
  .delivery-hero h1,
  .contact-hero h1,
  .collections-v2-page .collections-v2-hero h1 {
    font-size: clamp(3.2rem, 6.2vw, 6.25rem);
  }
}

/* ===== v11-8-24-hero-dna.css ===== */
/* VA HOME v11.8.24 — stronger home hero typography + readable fragrance DNA */
@media (min-width: 901px) {
  .home-page .hero.hero--editorial .hero-slide__content {width:min(100%,760px)}
  .home-page .hero.hero--editorial .hero-slide__title {
    font-size:clamp(4rem,5.15vw,5.4rem);line-height:.92;letter-spacing:-.035em;margin-bottom:1.4rem
  }
  .home-page .hero.hero--editorial .hero-slide__subtitle {
    max-width:34ch;font-size:clamp(1.08rem,1.32vw,1.34rem);line-height:1.55;margin-bottom:1.65rem
  }
  .home-page .hero.hero--editorial .hero-slide__actions .btn {
    min-height:58px;padding-inline:1.9rem;font-size:.98rem
  }
}
@media (min-width:901px) and (max-height:820px) {
  .home-page .hero.hero--editorial .hero-slide__title {font-size:clamp(3.55rem,4.7vw,4.65rem)}
  .home-page .hero.hero--editorial .hero-slide__subtitle {font-size:1.05rem;margin-bottom:1.25rem}
  .home-page .hero.hero--editorial .hero-slide__actions .btn {min-height:52px}
}
.has-product-story-v10 .story-dna {overflow:hidden}
.story-dna__radar {width:min(100%,360px);margin:1.15rem auto .35rem}
.story-dna__radar svg {overflow:visible}
.story-dna__grid polygon,.story-dna__grid line {stroke:rgba(244,240,233,.15)}
.story-dna__shape {transform-box:fill-box;transform-origin:center;animation:dnaRadarReveal .75s cubic-bezier(.22,.61,.36,1) both}
.story-dna__point {fill:var(--color-gold);stroke:#0a0907;stroke-width:1.2;opacity:0;animation:dnaPointReveal .35s ease .55s forwards}
.story-dna__axis-label {fill:rgba(244,240,233,.72);font-family:var(--font-sans);font-size:7px;letter-spacing:.045em;text-transform:uppercase}
.story-dna__axis-value {fill:var(--color-gold);font-size:7px;font-weight:600}
.story-dna__character {display:grid;gap:.28rem;margin:.45rem 0 1rem;padding:1rem 0;border-top:1px solid rgba(244,240,233,.1);border-bottom:1px solid rgba(244,240,233,.1)}
.story-dna__character span {color:var(--text-secondary);font-size:.66rem;letter-spacing:.13em;text-transform:uppercase}
.story-dna__character strong {color:var(--text-primary);font-family:var(--font-display);font-size:clamp(1.25rem,2vw,1.65rem);font-weight:400;text-transform:capitalize}
.story-dna__legend {display:grid;grid-template-columns:1fr;gap:.58rem;margin:0;padding:0;list-style:none}
.story-dna__legend li {display:grid;grid-template-columns:minmax(74px,.75fr) minmax(80px,1fr) 62px;align-items:center;gap:.7rem;padding:0;border:0;font-size:.68rem}
.story-dna__legend li>span {color:var(--text-secondary)}
.story-dna__legend li>i {position:relative;height:2px;background:rgba(244,240,233,.13);overflow:hidden}
.story-dna__legend li>i b {display:block;width:calc(var(--dna-level) * 10%);height:100%;background:linear-gradient(90deg,#805728,var(--color-gold));transform-origin:left;animation:dnaBarReveal .75s ease .2s both}
.story-dna__legend li>strong {color:rgba(244,240,233,.78);font-size:.62rem;font-weight:500;letter-spacing:.04em;text-align:right}
@keyframes dnaRadarReveal {from{opacity:0;transform:scale(.15)}to{opacity:1;transform:scale(1)}}
@keyframes dnaPointReveal {to{opacity:1}}
@keyframes dnaBarReveal {from{transform:scaleX(0)}to{transform:scaleX(1)}}
@media(max-width:700px){.story-dna__radar{width:min(92%,330px)}.story-dna__legend li{grid-template-columns:78px 1fr 58px}}
@media(prefers-reduced-motion:reduce){.story-dna__shape,.story-dna__point,.story-dna__legend li>i b{animation:none!important;opacity:1;transform:none}}

/* v11.8.26 — mobile checkout trust strip: 2 + 1 layout */
@media (max-width: 560px) {
  .checkout-trust-strip {
    padding: 12px 0;
  }

  .checkout-trust-strip .container.checkout-trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: visible;
    white-space: normal;
  }

  .checkout-trust-strip__grid > div {
    display: flex;
    min-width: 0;
    min-height: 66px;
    padding: 10px 12px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    border-bottom: 1px solid var(--border-hairline);
  }

  .checkout-trust-strip__grid > div:first-child {
    border-right: 1px solid var(--border-hairline);
  }

  .checkout-trust-strip__grid > div:last-child {
    grid-column: 1 / -1;
    min-height: 60px;
    border-bottom: 0;
  }

  .checkout-trust-strip__grid strong,
  .checkout-trust-strip__grid span {
    display: block !important;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    white-space: normal;
  }

  .checkout-trust-strip__grid strong {
    font-size: clamp(.62rem, 2.8vw, .72rem);
    line-height: 1.25;
  }

  .checkout-trust-strip__grid span {
    margin-top: 4px;
    font-size: clamp(.55rem, 2.45vw, .66rem);
    line-height: 1.35;
  }
}

@media (max-width: 360px) {
  .checkout-trust-strip__grid > div {
    padding-inline: 9px;
  }
}

/* ===== v11-8-42-unified-hero-font-reveal.css ===== */
/* VA HOME v11.8.42 — stable hero typography reveal
   Keeps hero copy hidden only until display/body fonts are ready,
   then reveals it with a subtle 8px lift. */

html.va-hero-fonts-loading :is(
  .home-page .hero--editorial .hero-slide__content,
  .brand-hero__copy,
  .editorial-page-hero__content,
  .delivery-hero__copy,
  .contact-hero__copy,
  .discovery-hero__content,
  .scent-experience__hero-content,
  .product-hero__info,
  .cart-hero > div:first-child,
  .account-auth > div:first-child,
  .journal-hero .container,
  .order-track__intro
) {
  opacity: 0 !important;
  transform: translate3d(0, 8px, 0) !important;
}

html.va-hero-fonts-ready :is(
  .home-page .hero--editorial .hero-slide__content,
  .brand-hero__copy,
  .editorial-page-hero__content,
  .delivery-hero__copy,
  .contact-hero__copy,
  .discovery-hero__content,
  .scent-experience__hero-content,
  .product-hero__info,
  .cart-hero > div:first-child,
  .account-auth > div:first-child
) {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
  transition: opacity 560ms ease, transform 560ms cubic-bezier(.22,.61,.36,1) !important;
  will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
  html.va-hero-fonts-loading :is(
    .home-page .hero--editorial .hero-slide__content,
  .brand-hero__copy,
    .editorial-page-hero__content,
    .delivery-hero__copy,
    .contact-hero__copy,
    .discovery-hero__content,
    .scent-experience__hero-content,
    .product-hero__info,
    .cart-hero > div:first-child,
    .account-auth > div:first-child,
    .journal-hero .container,
    .order-track__intro
  ) {
    transform: none !important;
  }

  html.va-hero-fonts-ready :is(
    .home-page .hero--editorial .hero-slide__content,
  .brand-hero__copy,
    .editorial-page-hero__content,
    .delivery-hero__copy,
    .contact-hero__copy,
    .discovery-hero__content,
    .scent-experience__hero-content,
    .product-hero__info,
    .cart-hero > div:first-child,
    .account-auth > div:first-child,
    .journal-hero .container,
    .order-track__intro
  ) {
    transform: none !important;
    transition: opacity 180ms linear !important;
    will-change: auto;
  }
}

/* ===== compare.css ===== */
/* VA HOME — Scent Comparison / Editorial dark experience */
.va-compare-add{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;border:0;background:transparent;color:inherit;font:600 11px/1.2 Manrope,sans-serif;letter-spacing:.12em;text-transform:uppercase;cursor:pointer;padding:.65rem 0;opacity:.72;transition:opacity .2s ease,color .2s ease}.va-compare-add:hover,.va-compare-add.is-active{opacity:1;color:#b89a63}.va-compare-add svg{width:15px;height:15px}.product-card .va-compare-add{width:100%;border-top:1px solid rgba(30,27,23,.1);margin-top:.65rem}.va-compare-product-btn{margin-top:12px;border:1px solid rgba(255,255,255,.32);border-radius:999px;padding:12px 18px;color:#fff;opacity:.9}.va-compare-product-btn:hover,.va-compare-product-btn.is-active{background:rgba(255,255,255,.12);color:#e2c38d}

.va-compare-dock{position:fixed;left:50%;bottom:22px;z-index:9990;transform:translate(-50%,18px);display:flex;align-items:center;gap:14px;max-width:calc(100vw - 28px);padding:10px 12px 10px 16px;border:1px solid rgba(211,183,132,.35);border-radius:999px;background:rgba(13,12,10,.94);box-shadow:0 18px 60px rgba(0,0,0,.34);backdrop-filter:blur(18px);color:#fff;opacity:0;pointer-events:none;transition:.28s ease}.va-compare-dock.is-visible{opacity:1;pointer-events:auto;transform:translate(-50%,0)}.va-compare-dock__label{font:600 10px/1 Manrope,sans-serif;letter-spacing:.16em;text-transform:uppercase;white-space:nowrap;color:#c9a76a}.va-compare-dock__thumbs{display:flex}.va-compare-dock__thumb{width:32px;height:32px;border-radius:50%;object-fit:cover;border:2px solid #171512;margin-left:-7px;background:#d8d0c4}.va-compare-dock__thumb:first-child{margin-left:0}.va-compare-dock__open{border:0;border-radius:999px;background:#efe8dc;color:#16130f;padding:11px 17px;font:700 10px/1 Manrope,sans-serif;letter-spacing:.11em;text-transform:uppercase;cursor:pointer}.va-compare-dock__clear{border:0;background:transparent;color:#fff;opacity:.5;font-size:18px;cursor:pointer;padding:4px}

.va-compare-modal{position:fixed;inset:0;z-index:10000;background:#0b0a08;color:#f4efe7;opacity:0;visibility:hidden;transition:opacity .28s ease}.va-compare-modal::before{content:"";position:fixed;inset:0;pointer-events:none;background:radial-gradient(circle at 50% -10%,rgba(184,148,87,.12),transparent 42%),linear-gradient(180deg,rgba(255,255,255,.015),transparent 36%)}.va-compare-modal.is-open{opacity:1;visibility:visible}.va-compare-modal__inner{position:relative;height:100%;overflow:auto;overscroll-behavior:contain}.va-compare-modal__top{position:sticky;top:0;z-index:10;display:flex;align-items:center;justify-content:space-between;min-height:116px;padding:25px clamp(22px,4.5vw,74px);border-bottom:1px solid rgba(215,184,128,.15);background:rgba(11,10,8,.9);backdrop-filter:blur(20px)}.va-compare-modal__eyebrow{margin:0 0 8px;font:600 9px/1 Manrope,sans-serif;letter-spacing:.24em;text-transform:uppercase;color:#b9955d}.va-compare-modal__title{margin:0;font:500 clamp(35px,4vw,62px)/.9 Cormorant Garamond,serif;letter-spacing:-.025em}.va-compare-modal__close{width:48px;height:48px;flex:0 0 auto;border:1px solid rgba(244,239,231,.2);border-radius:50%;background:rgba(255,255,255,.025);color:#f4efe7;font:300 27px/1 Manrope,sans-serif;cursor:pointer;transition:.2s ease}.va-compare-modal__close:hover{border-color:#b9955d;transform:rotate(7deg)}

.va-compare-tabs{position:sticky;top:116px;z-index:9;display:flex;justify-content:center;gap:34px;padding:18px 22px;border-bottom:1px solid rgba(215,184,128,.12);background:rgba(11,10,8,.9);backdrop-filter:blur(20px)}.va-compare-tab{position:relative;border:0;background:transparent;color:rgba(244,239,231,.48);padding:7px 2px;font:600 10px/1 Manrope,sans-serif;letter-spacing:.18em;text-transform:uppercase;cursor:pointer;transition:color .2s ease}.va-compare-tab::after{content:"";position:absolute;left:0;right:100%;bottom:-19px;height:1px;background:#c6a269;transition:right .25s ease}.va-compare-tab.is-active{color:#f4efe7}.va-compare-tab.is-active::after{right:0}

.va-compare-grid{display:grid;grid-template-columns:repeat(var(--compare-count),minmax(0,1fr));width:min(1500px,calc(100% - 44px));margin:34px auto 72px;border-top:1px solid rgba(215,184,128,.16);border-left:1px solid rgba(215,184,128,.16)}.va-compare-card{min-width:0;display:flex;flex-direction:column;border-right:1px solid rgba(215,184,128,.16);border-bottom:1px solid rgba(215,184,128,.16);background:rgba(255,255,255,.018)}.va-compare-card__hero{position:relative;aspect-ratio:4/3;overflow:hidden;background:#191612}.va-compare-card__hero::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 55%,rgba(8,7,6,.4))}.va-compare-card__hero img{width:100%;height:100%;display:block;object-fit:cover;transition:transform 1s cubic-bezier(.2,.7,.2,1)}.va-compare-card:hover .va-compare-card__hero img{transform:scale(1.025)}.va-compare-card__index{position:absolute;left:18px;bottom:15px;z-index:2;font:600 9px/1 Manrope,sans-serif;letter-spacing:.18em;color:rgba(255,255,255,.68)}.va-compare-card__remove{position:absolute;right:14px;top:14px;z-index:3;width:36px;height:36px;border:1px solid rgba(255,255,255,.26);border-radius:50%;background:rgba(8,7,6,.42);backdrop-filter:blur(8px);color:#fff;font-size:19px;cursor:pointer;transition:.2s ease}.va-compare-card__remove:hover{background:#f1eadf;color:#15120f;border-color:#f1eadf}

.va-compare-card__identity{padding:24px 24px 22px;border-bottom:1px solid rgba(215,184,128,.12)}.va-compare-card__collection{margin:0 0 9px;font:600 9px/1 Manrope,sans-serif;letter-spacing:.19em;text-transform:uppercase;color:#b9955d}.va-compare-card__name{margin:0;font:500 clamp(27px,2.5vw,43px)/.95 Cormorant Garamond,serif;letter-spacing:-.02em}.va-compare-card__meta{display:flex;align-items:center;justify-content:space-between;margin-top:19px;color:rgba(244,239,231,.62);font:500 11px/1 Manrope,sans-serif}.va-compare-card__meta strong{color:#f4efe7;font-size:13px;font-weight:600}

.va-compare-panel{display:none;padding:24px;min-height:266px}.va-compare-panel.is-active{display:block;animation:vaCompareFade .28s ease both}@keyframes vaCompareFade{from{opacity:0;transform:translateY(5px)}to{opacity:1;transform:none}}.va-compare-block{padding:0 0 22px;margin:0 0 22px;border-bottom:1px solid rgba(215,184,128,.1)}.va-compare-block:last-child{margin-bottom:0;padding-bottom:0;border-bottom:0}.va-compare-block--statement{min-height:86px}.va-compare-block--compact{margin-top:24px}.va-compare-label{margin:0 0 12px;color:rgba(244,239,231,.46);font:600 9px/1 Manrope,sans-serif;letter-spacing:.17em;text-transform:uppercase}.va-compare-tags{display:flex;flex-wrap:wrap;gap:7px}.va-compare-tag{border:1px solid rgba(215,184,128,.2);border-radius:999px;padding:8px 11px;color:#ede4d7;font:500 10px/1 Manrope,sans-serif;background:rgba(255,255,255,.018)}.va-compare-statement{margin:0;max-width:24ch;font:500 clamp(21px,2vw,29px)/1.08 Cormorant Garamond,serif;color:#f4efe7}.va-compare-value{margin:0;color:rgba(244,239,231,.76);font:500 12px/1.55 Manrope,sans-serif}

.va-compare-meter{padding:0 0 17px;margin:0 0 17px;border-bottom:1px solid rgba(215,184,128,.1)}.va-compare-meter>div>span{display:block;margin-bottom:10px;color:rgba(244,239,231,.62);font:500 10px/1 Manrope,sans-serif}.va-compare-scale{display:grid;grid-template-columns:repeat(10,1fr);gap:4px}.va-compare-scale i{display:block;height:2px;background:rgba(244,239,231,.13)}.va-compare-scale i.is-filled{background:#bd995f}

.va-compare-note{padding:20px 0;border-bottom:1px solid rgba(215,184,128,.11)}.va-compare-note:first-child{padding-top:0}.va-compare-note:last-child{border-bottom:0}.va-compare-note small{display:block;margin-bottom:8px;color:#b9955d;font:600 9px/1 Manrope,sans-serif;letter-spacing:.16em;text-transform:uppercase}.va-compare-note span{display:block;color:#f4efe7;font:500 15px/1.5 Cormorant Garamond,serif}

.va-compare-card__actions{display:grid;grid-template-columns:auto 1fr;gap:12px;align-items:center;margin-top:auto;padding:0 24px 24px}.va-compare-link{color:rgba(244,239,231,.56);font:600 9px/1 Manrope,sans-serif;letter-spacing:.14em;text-transform:uppercase;text-decoration:none;white-space:nowrap}.va-compare-link:hover{color:#f4efe7}.va-compare-buy{min-height:50px;border:1px solid #bd995f;background:#bd995f;color:#110f0c;font:700 10px/1 Manrope,sans-serif;letter-spacing:.13em;text-transform:uppercase;cursor:pointer;transition:.22s ease}.va-compare-buy:hover{background:#d0ad72;border-color:#d0ad72}.va-compare-buy.is-added{background:#efe7db;border-color:#efe7db}

.va-compare-empty{padding:110px 24px;text-align:center}.va-compare-empty h3{margin:0 0 14px;font:500 clamp(36px,5vw,64px)/.95 Cormorant Garamond,serif}.va-compare-empty>p:last-child{margin:0 auto;max-width:470px;color:rgba(244,239,231,.55);font:400 13px/1.65 Manrope,sans-serif}body.va-compare-lock{overflow:hidden}

@media(max-width:900px){.va-compare-grid{width:100%;margin-top:22px;border-left:0;display:flex;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none}.va-compare-grid::-webkit-scrollbar{display:none}.va-compare-card{flex:0 0 min(82vw,460px);scroll-snap-align:start}.va-compare-card:first-child{margin-left:18px;border-left:1px solid rgba(215,184,128,.16)}.va-compare-card:last-child{margin-right:18px}.va-compare-modal__top{min-height:96px;padding:20px 18px}.va-compare-tabs{top:96px}.va-compare-card__hero{aspect-ratio:4/3}}
@media(max-width:600px){.va-compare-dock{bottom:12px;gap:9px;padding-left:12px}.va-compare-dock__label{display:none}.va-compare-dock__open{padding:11px 13px}.va-compare-modal__title{font-size:34px}.va-compare-modal__close{width:42px;height:42px}.va-compare-tabs{justify-content:flex-start;gap:25px;overflow-x:auto;padding-left:18px;padding-right:18px}.va-compare-card{flex-basis:88vw}.va-compare-card__identity,.va-compare-panel{padding-left:20px;padding-right:20px}.va-compare-card__actions{grid-template-columns:1fr;padding-left:20px;padding-right:20px}.va-compare-link{text-align:center;padding:8px}.va-compare-panel{min-height:250px}}
@media(prefers-reduced-motion:reduce){.va-compare-card__hero img,.va-compare-modal,.va-compare-dock,.va-compare-panel{transition:none!important;animation:none!important}}

/* v11.8.69 — mobile comparison geometry fix */
.va-compare-modal__close,
.va-compare-card__remove{
  box-sizing:border-box;
  aspect-ratio:1 / 1;
  padding:0;
  display:grid;
  place-items:center;
  line-height:1;
}

.va-compare-card__hero img{
  object-position:center center;
}

@media(max-width:900px){
  .va-compare-grid{
    scroll-padding-inline:16px;
    gap:12px;
    padding:0 16px 8px;
    box-sizing:border-box;
  }
  .va-compare-card{
    flex:0 0 min(86vw,430px);
    scroll-snap-align:center;
  }
  .va-compare-card:first-child,
  .va-compare-card:last-child{
    margin-left:0;
    margin-right:0;
  }
  .va-compare-card__hero{
    aspect-ratio:4 / 5;
  }
  .va-compare-card__hero img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
  }
}

@media(max-width:600px){
  .va-compare-modal__top{
    min-height:88px;
    padding:17px 16px;
  }
  .va-compare-modal__title{
    font-size:31px;
    line-height:.92;
  }
  .va-compare-modal__close{
    width:42px;
    height:42px;
    min-width:42px;
    min-height:42px;
    border-radius:999px;
    font-size:24px;
  }
  .va-compare-tabs{
    top:88px;
  }
  .va-compare-grid{
    margin-top:16px;
    padding-inline:14px;
    gap:10px;
  }
  .va-compare-card{
    flex-basis:calc(100vw - 28px);
    max-width:420px;
  }
  .va-compare-card__hero{
    aspect-ratio:4 / 5;
    min-height:0;
  }
  .va-compare-card__remove{
    width:36px;
    height:36px;
    min-width:36px;
    min-height:36px;
    border-radius:999px;
  }
}

/* v12.1 — compact adaptive compare */
.va-compare-modal__top{min-height:88px;padding:17px clamp(18px,3vw,46px)}
.va-compare-modal__title{font-size:clamp(32px,3.1vw,48px)}
.va-compare-modal__close{width:42px;height:42px;font-size:24px}
.va-compare-tabs{top:88px;padding:13px 20px;gap:30px}
.va-compare-tab::after{bottom:-14px}
.va-compare-grid{width:min(1280px,calc(100% - 32px));margin:20px auto 48px}
.va-compare-card__hero{aspect-ratio:16/9;max-height:260px;background:transparent}
.va-compare-card__hero img{object-fit:cover;object-position:center 56%}
.va-compare-card__identity{padding:18px 20px 17px}
.va-compare-card__name{font-size:clamp(25px,2vw,36px)}
.va-compare-card__meta{margin-top:14px}
.va-compare-panel{padding:20px;min-height:230px}
.va-compare-block{padding-bottom:17px;margin-bottom:17px}
.va-compare-block--statement{min-height:72px}
.va-compare-statement{font-size:clamp(19px,1.55vw,25px)}
.va-compare-card__actions{padding:0 20px 20px}
.va-compare-buy{min-height:46px}
@media (min-width:901px) and (max-height:820px){
  .va-compare-modal__top{min-height:76px;padding-top:12px;padding-bottom:12px}
  .va-compare-modal__eyebrow{margin-bottom:5px}
  .va-compare-modal__title{font-size:36px}
  .va-compare-tabs{top:76px;padding:10px 18px}
  .va-compare-tab::after{bottom:-11px}
  .va-compare-grid{margin-top:14px}
  .va-compare-card__hero{max-height:190px;aspect-ratio:16/8}
  .va-compare-card__identity{padding-top:14px;padding-bottom:14px}
  .va-compare-panel{padding-top:16px;min-height:210px}
}
@media(max-width:900px){
  .va-compare-modal__top{min-height:82px}
  .va-compare-tabs{top:82px}
  .va-compare-grid{width:100%;padding:0 14px;gap:12px}
  .va-compare-card{flex:0 0 min(78vw,390px)}
  .va-compare-card:first-child{margin-left:0}
  .va-compare-card:last-child{margin-right:0}
  .va-compare-card__hero{aspect-ratio:16/10;max-height:220px}
}
@media(max-width:600px){
  .va-compare-card{flex-basis:calc(100vw - 28px)}
  .va-compare-card__hero{aspect-ratio:4/3;max-height:240px}
}

/* v12.2 — laptop-first comparison composition */
.va-compare-grid{
  width:min(1460px,calc(100% - 40px));
  margin-top:16px;
}
.va-compare-card__hero{
  height:clamp(190px,22vh,250px);
  aspect-ratio:auto;
  background:transparent;
}
.va-compare-card__hero::after{
  background:linear-gradient(180deg,rgba(8,7,6,.03) 48%,rgba(8,7,6,.32));
}
.va-compare-card__hero img{
  object-position:center 44%;
}
.va-compare-card__identity{
  padding:18px 22px 18px;
}
.va-compare-card__heading{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:8px;
}
.va-compare-card__collection{
  margin:0;
}
.va-compare-card__remove{
  position:static;
  width:30px;
  height:30px;
  flex:0 0 30px;
  border-color:rgba(244,239,231,.16);
  background:transparent;
  backdrop-filter:none;
  color:rgba(244,239,231,.68);
  font-size:17px;
  line-height:1;
}
.va-compare-card__remove:hover{
  transform:rotate(6deg);
}
.va-compare-card__name{
  font-size:clamp(25px,2vw,36px);
}
.va-compare-card__meta{
  margin-top:14px;
}
.va-compare-panel{
  padding:20px 22px;
  min-height:238px;
}
.va-compare-block{
  padding-bottom:18px;
  margin-bottom:18px;
}
.va-compare-block--statement{
  min-height:72px;
}
.va-compare-statement{
  font-size:clamp(20px,1.65vw,26px);
}
.va-compare-card__actions{
  padding:0 22px 20px;
}

@media (min-width:901px) and (max-height:900px){
  .va-compare-modal__top{min-height:82px;padding-top:14px;padding-bottom:14px}
  .va-compare-modal__title{font-size:clamp(30px,3vw,46px)}
  .va-compare-tabs{top:82px;padding-top:13px;padding-bottom:13px}
  .va-compare-tab::after{bottom:-14px}
  .va-compare-card__hero{height:clamp(165px,20vh,210px)}
  .va-compare-grid{margin-top:14px;margin-bottom:44px}
}

@media(max-width:900px){
  .va-compare-card__hero{height:220px;aspect-ratio:auto}
  .va-compare-card__identity{padding:18px 20px}
  .va-compare-panel{padding:20px;min-height:0}
}

@media(max-width:600px){
  .va-compare-card__hero{height:190px}
  .va-compare-card__name{font-size:30px}
}

/* v12.3 — VA HOME Macro Lens comparison */
.va-compare-card__hero--macro{
  position:relative;
  isolation:isolate;
  height:clamp(210px,25vh,286px);
  overflow:hidden;
  background:#0d0b09;
  border-bottom:1px solid rgba(215,184,128,.14);
}
.va-compare-card__hero--macro::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg,rgba(8,7,6,.46),transparent 24%,transparent 76%,rgba(8,7,6,.46)),
    linear-gradient(180deg,rgba(8,7,6,.06),rgba(8,7,6,.18));
  pointer-events:none;
}
.va-compare-card__hero--macro::after{
  content:"";
  position:absolute;
  inset:14px;
  z-index:3;
  border:1px solid rgba(238,218,181,.16);
  background:none;
  pointer-events:none;
}
.va-compare-card__ambient,
.va-compare-card__focus{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
}
.va-compare-card__ambient{
  z-index:0;
  object-fit:cover;
  filter:blur(22px) saturate(.72) brightness(.52);
  transform:scale(1.15);
  opacity:.72;
}
.va-compare-card__focus{
  z-index:2;
  object-fit:contain;
  object-position:center;
  padding:14px 42px;
  filter:drop-shadow(0 22px 34px rgba(0,0,0,.28));
  transition:transform .9s cubic-bezier(.2,.7,.2,1),filter .9s ease;
}
.va-compare-card:hover .va-compare-card__focus{
  transform:scale(1.018);
  filter:drop-shadow(0 26px 42px rgba(0,0,0,.34));
}
.va-compare-card:hover .va-compare-card__ambient{
  transform:scale(1.18);
}
.va-compare-card__lens{
  position:absolute;
  left:27px;
  right:27px;
  bottom:25px;
  z-index:4;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:12px;
  color:rgba(250,244,235,.72);
  pointer-events:none;
}
.va-compare-card__lens span,
.va-compare-card__lens b{
  font:600 8px/1 Manrope,sans-serif;
  letter-spacing:.2em;
}
.va-compare-card__lens b{font-weight:500;color:#d1aa6a}
.va-compare-card__lens i{height:1px;background:linear-gradient(90deg,rgba(209,170,106,.52),rgba(209,170,106,.08))}
.va-compare-card__index{display:none}

@media (min-width:901px) and (max-height:900px){
  .va-compare-card__hero--macro{height:clamp(184px,23vh,228px)}
  .va-compare-card__focus{padding:12px 34px}
}
@media(max-width:900px){
  .va-compare-card__hero--macro{height:240px}
  .va-compare-card__focus{padding:14px 30px}
}
@media(max-width:600px){
  .va-compare-card__hero--macro{height:218px}
  .va-compare-card__hero--macro::after{inset:10px}
  .va-compare-card__focus{padding:10px 22px}
  .va-compare-card__lens{left:20px;right:20px;bottom:18px}
}
@media(prefers-reduced-motion:reduce){
  .va-compare-card__ambient,.va-compare-card__focus{transition:none!important}
}

/* v12.4 — VA HOME Olfactive Dossier comparison */
.va-compare-card--dossier .va-compare-card__hero{display:none!important}
.va-compare-card--dossier{
  background:linear-gradient(180deg,#0d0c0a 0%,#0b0a08 100%);
}
.va-compare-card__identity--portrait{
  min-height:218px;
  padding:28px 28px 24px;
  display:grid;
  grid-template-columns:minmax(0,1fr) clamp(104px,10vw,148px);
  gap:26px;
  align-items:stretch;
  border-bottom:1px solid rgba(214,184,128,.14);
}
.va-compare-card__copy{min-width:0;display:flex;flex-direction:column}
.va-compare-card__number{
  display:block;
  margin:22px 0 9px;
  color:rgba(210,172,108,.66);
  font:600 9px/1 Manrope,sans-serif;
  letter-spacing:.22em;
}
.va-compare-card--dossier .va-compare-card__name{
  margin:0;
  font-size:clamp(29px,2.25vw,42px);
  line-height:.98;
  max-width:12ch;
}
.va-compare-card--dossier .va-compare-card__meta{margin-top:auto;padding-top:24px}
.va-compare-card__portrait{
  position:relative;
  margin:0;
  min-width:0;
  overflow:hidden;
  border:1px solid rgba(225,196,143,.2);
  background:#13100c;
  isolation:isolate;
}
.va-compare-card__portrait::after{
  content:"";
  position:absolute;
  inset:8px;
  border:1px solid rgba(248,239,222,.12);
  pointer-events:none;
  z-index:2;
}
.va-compare-card__portrait-image{
  width:100%;height:100%;min-height:164px;display:block;
  object-fit:cover;object-position:center;
  transition:transform .8s cubic-bezier(.2,.7,.2,1),filter .8s ease;
}
.va-compare-card:hover .va-compare-card__portrait-image{transform:scale(1.025)}
.va-compare-card__portrait figcaption{
  position:absolute;left:15px;right:15px;bottom:13px;z-index:3;
  color:rgba(250,245,236,.74);
  font:600 7px/1 Manrope,sans-serif;
  letter-spacing:.18em;
  text-shadow:0 1px 10px rgba(0,0,0,.7);
}
.va-compare-card__portrait figcaption::before{
  content:"";display:block;width:24px;height:1px;margin-bottom:8px;background:#c99d57;
}
@media(min-width:901px) and (max-height:900px){
  .va-compare-card__identity--portrait{min-height:188px;padding:22px;grid-template-columns:minmax(0,1fr) 112px;gap:20px}
  .va-compare-card__portrait-image{min-height:142px}
  .va-compare-card__number{margin-top:15px}
}
@media(max-width:900px){
  .va-compare-card__identity--portrait{min-height:190px;grid-template-columns:minmax(0,1fr) 118px;padding:22px;gap:18px}
  .va-compare-card__portrait-image{min-height:146px}
}
@media(max-width:520px){
  .va-compare-card__identity--portrait{grid-template-columns:minmax(0,1fr) 92px;min-height:170px;padding:18px;gap:14px}
  .va-compare-card__portrait-image{min-height:128px}
  .va-compare-card__portrait figcaption{font-size:6px;left:11px;bottom:10px}
  .va-compare-card__number{margin-top:13px}
}

/* v12.5 — Material Sample Compare polish */
.va-compare-card__identity--portrait{
  grid-template-columns:minmax(0,1fr) clamp(126px,9.2vw,148px);
  align-items:center;
  min-height:208px;
}
.va-compare-card__portrait{
  width:100%;
  aspect-ratio:1 / 1;
  align-self:center;
  border:1px solid rgba(225,196,143,.22);
  background:#100e0b;
  box-shadow:0 18px 44px rgba(0,0,0,.24);
}
.va-compare-card__portrait::before{
  content:"MATERIAL / 01";
  position:absolute;
  top:12px;
  left:13px;
  z-index:3;
  color:rgba(250,245,236,.56);
  font:600 6px/1 Manrope,sans-serif;
  letter-spacing:.18em;
  text-shadow:0 1px 8px rgba(0,0,0,.72);
}
.va-compare-card__portrait::after{inset:7px}
.va-compare-card__portrait-image{
  width:100%;height:100%;min-height:0;
  object-fit:cover;
  object-position:center center;
}
.va-compare-card__portrait figcaption{
  left:13px;right:13px;bottom:12px;
  font-size:6px;
  letter-spacing:.16em;
}
.va-compare-card__portrait figcaption::before{width:20px;margin-bottom:7px}

.va-compare-card__heading{position:relative}
.va-compare-card__remove{
  width:auto;
  height:30px;
  min-width:30px;
  padding:0 9px;
  border-radius:999px;
  border:1px solid rgba(205,166,101,.34);
  background:rgba(12,10,8,.18);
  color:rgba(239,225,202,.72);
  backdrop-filter:none;
  font:500 15px/1 Manrope,sans-serif;
  box-shadow:none;
}
.va-compare-card__remove::before{
  content:"REMOVE";
  margin-right:7px;
  font:600 7px/1 Manrope,sans-serif;
  letter-spacing:.16em;
  color:rgba(205,166,101,.58);
}
.va-compare-card__remove:hover,
.va-compare-card__remove:focus-visible{
  transform:none;
  background:rgba(205,166,101,.08);
  border-color:rgba(205,166,101,.66);
  color:#ead9bd;
  outline:none;
}

@media(min-width:901px) and (max-height:900px){
  .va-compare-card__identity--portrait{
    min-height:180px;
    grid-template-columns:minmax(0,1fr) 126px;
    padding:20px 22px;
  }
}
@media(max-width:900px){
  .va-compare-card__identity--portrait{
    grid-template-columns:minmax(0,1fr) 128px;
    min-height:188px;
  }
}
@media(max-width:520px){
  .va-compare-card__identity--portrait{
    grid-template-columns:minmax(0,1fr) 104px;
    min-height:168px;
  }
  .va-compare-card__remove::before{display:none}
  .va-compare-card__remove{width:30px;padding:0}
  .va-compare-card__portrait::before{display:none}
}

/* ===== v12-0-rc1.css ===== */
/* ==========================================================================
   VA HOME v12.0 RC1 — Production design-system and interaction polish
   Scope: shared cards, account wishlist, scent comparison, focus/touch UX.
   ========================================================================== */

:root{
  --ui-border:rgba(184,138,75,.22);
  --ui-border-hover:rgba(184,138,75,.48);
  --ui-surface:#12100d;
  --ui-surface-deep:#0b0a08;
  --ui-gold:#b88a4b;
  --ui-radius:2px;
  --ui-shadow-rest:0 12px 32px rgba(0,0,0,.18);
  --ui-shadow-lift:0 24px 64px rgba(0,0,0,.32);
  --ui-ease:cubic-bezier(.2,.7,.2,1);
  --ui-fast:180ms;
  --ui-base:360ms;
}

/* Consistent, visible keyboard focus without changing pointer interactions. */
:where(a,button,input,select,textarea,[tabindex]):focus-visible{
  outline:1px solid var(--ui-gold);
  outline-offset:4px;
}

/* Shared product-card geometry. Keeps every catalogue surface aligned. */
.product-card{
  min-width:0;
  display:flex;
  flex-direction:column;
  height:100%;
  border-color:var(--ui-border);
  border-radius:var(--ui-radius);
  box-shadow:var(--ui-shadow-rest);
  transition:transform var(--ui-base) var(--ui-ease),border-color var(--ui-fast) ease,box-shadow var(--ui-base) var(--ui-ease);
}
.product-card__media{
  aspect-ratio:4/5;
  overflow:hidden;
  background:var(--ui-surface-deep);
}
.product-card__media>img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.product-card__body{
  display:flex;
  flex:1;
  flex-direction:column;
  min-width:0;
}
.product-card__desc{
  display:-webkit-box;
  overflow:hidden;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  min-height:calc(2em * 1.55);
}
.product-card__meta{margin-top:auto}
.product-card__actions{margin-top:auto}
.product-card__wishlist{
  box-sizing:border-box;
  aspect-ratio:1;
  padding:0;
}
@media(hover:hover) and (pointer:fine){
  .product-card:hover{
    transform:translateY(-3px);
    border-color:var(--ui-border-hover);
    box-shadow:var(--ui-shadow-lift);
  }
}

/* Account: quieter private-space treatment and stable wishlist cards. */
.account-tabs button{
  min-height:48px;
  transition:color var(--ui-fast) ease,border-color var(--ui-fast) ease,background var(--ui-fast) ease;
}
.account-tabs button:hover{color:var(--text-primary);background:rgba(255,255,255,.018)}
.wishlist-grid{
  align-items:stretch;
  grid-template-columns:repeat(auto-fill,minmax(176px,218px));
  gap:18px;
}
.wishlist-card{
  min-width:0;
  height:100%;
  border-color:var(--ui-border);
  box-shadow:var(--ui-shadow-rest);
  transition:transform var(--ui-base) var(--ui-ease),border-color var(--ui-fast) ease,box-shadow var(--ui-base) var(--ui-ease);
}
.wishlist-card__media{aspect-ratio:4/5}
.wishlist-card__media img{object-fit:cover;object-position:center}
.wishlist-card__body{min-width:0;padding:15px}
.wishlist-card h2{overflow-wrap:anywhere;line-height:1.08}
.wishlist-card__actions{flex-wrap:wrap}
.wishlist-remove{min-height:38px;display:inline-flex;align-items:center}
@media(hover:hover) and (pointer:fine){
  .wishlist-card:hover{
    transform:translateY(-3px);
    border-color:var(--ui-border-hover);
    box-shadow:var(--ui-shadow-lift);
  }
}
@media(max-width:760px){
  .wishlist-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
}
@media(max-width:520px){
  .wishlist-grid{grid-template-columns:1fr}
  .wishlist-card{display:grid;grid-template-columns:88px minmax(0,1fr);min-height:110px}
  .wishlist-card__media{width:88px;height:110px;aspect-ratio:4/5}
  .wishlist-card__body{padding:11px 12px}
  .wishlist-card__actions{padding-top:8px}
  .wishlist-card__actions .btn{min-height:36px;padding:8px 11px}
  .wishlist-remove{min-height:36px}
}

/* Comparison: editorial cards with predictable image ratio and safer mobile flow. */
.va-compare-modal__inner{scrollbar-gutter:stable}
.va-compare-modal__close,.va-compare-card__remove{
  box-sizing:border-box;
  display:grid;
  place-items:center;
  aspect-ratio:1;
  padding:0;
}
.va-compare-grid{align-items:stretch}
.va-compare-card{height:auto;min-width:0}
.va-compare-card__hero{aspect-ratio:4/5}
.va-compare-card__hero img{object-fit:cover;object-position:center}
.va-compare-panel{flex:1}
.va-compare-buy,.va-compare-dock__open{transition:background var(--ui-fast) ease,border-color var(--ui-fast) ease,transform var(--ui-fast) ease}
@media(hover:hover) and (pointer:fine){
  .va-compare-buy:hover,.va-compare-dock__open:hover{transform:translateY(-1px)}
}
@media(max-width:900px){
  .va-compare-grid{
    scroll-snap-type:x mandatory;
    scroll-padding-inline:16px;
    overscroll-behavior-inline:contain;
    gap:12px;
    padding:0 16px calc(12px + env(safe-area-inset-bottom));
  }
  .va-compare-card{
    flex:0 0 min(82vw,410px);
    scroll-snap-align:start;
    scroll-snap-stop:always;
  }
}
@media(max-width:600px){
  .va-compare-dock{bottom:calc(12px + env(safe-area-inset-bottom))}
  .va-compare-card{flex-basis:calc(100vw - 44px)}
  .va-compare-modal__top{padding-top:calc(17px + env(safe-area-inset-top))}
  .va-compare-tabs{scrollbar-width:none}
  .va-compare-tabs::-webkit-scrollbar{display:none}
}

/* Keep touch controls comfortably tappable. */
@media(pointer:coarse){
  .va-compare-add,.wishlist-remove{min-height:44px}
  .va-compare-card__remove{min-width:40px;min-height:40px}
}

@media(prefers-reduced-motion:reduce){
  .product-card,.wishlist-card,.product-card__media img,.wishlist-card__media img,
  .va-compare-buy,.va-compare-dock__open{transition:none!important;transform:none!important}
}

/* ===== v12-0-rc2.css ===== */
/* ==========================================================================
   VA HOME v12.0 RC2 — Production QA hardening
   Scope: mobile stability, accessibility, safe-area and overflow protection.
   No visual redesign and no commerce logic changes.
   ========================================================================== */

:root{
  --tap-target:44px;
  --focus-ring:rgba(184,138,75,.95);
}

html{
  overflow-x:clip;
  scrollbar-gutter:stable;
  text-size-adjust:100%;
  -webkit-text-size-adjust:100%;
}
body{min-width:0;overflow-wrap:break-word}
main,section,article,aside,nav,header,footer{min-width:0}
img,video,canvas,svg{max-width:100%}

/* Anchored sections remain visible below the sticky header. */
:where([id]){scroll-margin-top:96px}

/* Production-grade focus that remains visible on dark and light surfaces. */
:where(a,button,input,select,textarea,[role="button"],[tabindex]):focus-visible{
  outline:2px solid var(--focus-ring);
  outline-offset:3px;
}

/* Reliable touch behaviour without changing desktop sizing. */
:where(button,[role="button"],input[type="button"],input[type="submit"],input[type="checkbox"],input[type="radio"]){
  touch-action:manipulation;
}
@media(pointer:coarse){
  :where(.icon-btn,.header-action,.wishlist-remove,.va-compare-add,.va-compare-card__remove,.va-compare-modal__close){
    min-width:var(--tap-target);
    min-height:var(--tap-target);
  }
}

/* Prevent iOS form zoom and clipping in checkout/account forms. */
@media(max-width:760px){
  :where(input,select,textarea){font-size:16px}
  :where(.modal,.drawer,.va-compare-modal__inner){overscroll-behavior:contain}
}

/* Stable account/wishlist geometry across long titles and small screens. */
.wishlist-card__body,.wishlist-card__actions{min-width:0}
.wishlist-card__actions>*{max-width:100%}
.wishlist-card h2,.wishlist-card p{word-break:normal;overflow-wrap:anywhere}
@media(max-width:520px){
  .wishlist-card__media img{width:100%;height:100%;object-fit:cover;object-position:center}
}

/* Comparison modal: no accidental page scroll and no clipped final card. */
.va-compare-modal[aria-hidden="false"],.va-compare-modal.is-open{overscroll-behavior:contain}
.va-compare-grid>*{min-width:0}
@media(max-width:900px){
  .va-compare-grid::after{content:"";flex:0 0 4px}
}

/* Better behaviour for users who request less motion. */
@media(prefers-reduced-motion:reduce){
  html:focus-within{scroll-behavior:auto!important}
  *,*::before,*::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    scroll-behavior:auto!important;
  }
}

/* High-contrast fallback keeps controls understandable. */
@media(forced-colors:active){
  :where(button,.btn,input,select,textarea,.product-card,.wishlist-card){border:1px solid CanvasText}
}

/* ===== v12-1-site-audit.css ===== */
/* VA HOME v12.1 — final adaptive/site-wide polish
   Safe layout corrections only: no redesign, loaders, blur, skeletons or reveal logic. */

html, body { max-width: 100%; overflow-x: clip; }
img, picture, video, canvas, svg { max-width: 100%; }
/* Do not force global image height: hero media relies on height:100%. */

/* Prevent long labels, prices and controls from forcing horizontal overflow. */
button, input, select, textarea, a { min-width: 0; }
.product-card, .collection-card, .journal-card, .cart-item,
.checkout-fieldset, .cart-summary, .va-compare-card { min-width: 0; }
.product-card__name, .product-card__desc, .va-compare-card__name,
.va-compare-statement, .va-compare-value, .cart-item__title { overflow-wrap: anywhere; }

/* Cart: remove the oversized empty gap between breadcrumbs and the hero. */
.cart-hero { margin-top: 0 !important; }
.cart-hero + .checkout-progress { margin-top: clamp(18px, 2.2vw, 30px); }
body:has(.cart-hero) .section.section--tight { padding-top: clamp(22px, 2.8vw, 42px); }

/* Laptop viewport: keep first checkout screen composed and readable. */
@media (min-width: 901px) and (max-height: 900px) {
  body:has(.cart-hero) .section.section--tight { padding-top: 24px; }
  .cart-hero {
    min-height: clamp(220px, 25vw, 320px);
    margin-bottom: 22px;
  }
  .cart-hero > div:first-child { padding: clamp(30px, 4vw, 58px); }
  .cart-hero h1 { font-size: clamp(3.2rem, 5.2vw, 5.4rem); }
  .cart-hero__visual { min-height: 100%; }
  .checkout-progress { margin-bottom: 30px; }
}

/* Compact notebook widths without shrinking touch targets. */
@media (min-width: 901px) and (max-width: 1440px) {
  .container { width: min(100% - 48px, var(--container-max)); }
  .btn { min-height: 46px; }
  .product-card__actions .btn { padding-inline: 16px; }
}

/* Mobile: preserve breathing room and avoid edge collisions. */
@media (max-width: 760px) {
  html, body { overflow-x: hidden; }
  body:has(.cart-hero) .section.section--tight { padding-top: 14px; }
  .cart-hero { margin-bottom: 16px; }
  .checkout-progress { margin-top: 14px; }
  .btn, button, input, select, textarea { max-width: 100%; }
}

/* Very small screens: keep dense controls usable. */
@media (max-width: 380px) {
  .container { width: min(100% - 28px, var(--container-max)); }
  .product-card__actions { gap: 8px; }
  .product-card__actions .btn { padding-inline: 10px; }
}


/* v13.5.4.1 — Discovery Credit */
.discovery-credit{padding:0 0 clamp(56px,8vw,112px)}
.discovery-credit__box{border:1px solid var(--border-hairline);padding:clamp(28px,5vw,64px);background:linear-gradient(135deg,rgba(184,135,70,.08),rgba(255,255,255,.015));max-width:1100px;margin:0 auto}
.discovery-credit__box h2{max-width:14ch;margin:0 0 18px}
.discovery-credit__box>p:not(.eyebrow){max-width:66ch;margin-bottom:10px}


/* ===== Discovery responsive component — consolidated from legacy mobile layers ===== */
@media (max-width:900px){
.discovery-hero{padding-block:var(--qa-section-tight);}
}
@media (max-width:620px){
.discovery-page .section{padding-block:clamp(44px,11vw,62px)!important;}
.discovery-ritual__media{min-height:300px;}
.discovery-page .info-block-grid{grid-template-columns:1fr;}
}
