/* VA HOME v13.5.0 — page CSS pruned against scent-guide.html and linked runtime classes. */
.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;
}











@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 .btn{
    width: 100%;
  }
  
}




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


.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);
}





@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;
  }

  

  
}








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










































































































.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; }




.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; }








.collections-grid{ gap:clamp(18px,2.4vw,38px); }
.collections-grid .collection-card:nth-child(even){ transform:translateY(44px); }









.journal-grid{ display:grid; grid-template-columns:1.35fr 1fr; gap:clamp(18px,2vw,30px); }










@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)}
 .brand-facts__grid{grid-template-columns:1fr 1fr;gap:28px 0}.brand-facts__grid>div{border-right:0;padding:0 18px 0 0}
 .collections-grid .collection-card:nth-child(even){transform:none}
 
 
 .journal-grid{grid-template-columns:1fr}
 
}
@media(max-width:560px){
 .hero--editorial .hero-slide__actions{gap:10px}
 
}


.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; }
  
}
@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; }
  
}
@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; }
}


.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);
  }
}


@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);
  }
}


@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;
  }
}







.scent-experience{
  --guide-ink: #f4f0e9;
  --guide-soft: rgba(244, 240, 233, .62);
  --guide-line: rgba(244, 240, 233, .16);
  --guide-panel: #171512;
  padding-bottom: clamp(72px, 10vw, 144px);
}

.scent-experience__hero{
  min-height: min(76svh, 780px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: #171512;
  color: #fff;
}

.scent-experience__hero-media{
  position: absolute;
  inset: 0;
}

.scent-experience__hero-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,12,10,.78) 0%, rgba(13,12,10,.48) 46%, rgba(13,12,10,.12) 78%),
              linear-gradient(0deg, rgba(13,12,10,.62) 0%, transparent 62%);
}

.scent-experience__hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .92;
}

.scent-experience__hero-content{
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  padding-top: clamp(140px, 20vh, 220px);
  padding-bottom: clamp(56px, 8vw, 104px);
}

.scent-experience__eyebrow, .scent-profile__eyebrow{
  margin: 0 0 18px;
  font-size: .72rem;
  line-height: 1.3;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
}

.scent-experience__hero h1{
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 7.6vw, 7.25rem);
  line-height: .9;
  font-weight: 500;
  letter-spacing: -.045em;
}

.scent-experience__hero-copy{
  max-width: 590px;
  margin: 28px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
  color: rgba(255,255,255,.82);
}

.scent-experience__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 32px;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}

.scent-guide-shell{
  width: min(100%, 1120px);
  margin: clamp(54px, 8vw, 110px) auto 0;
}

.scent-guide-layout{
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: start;
}

.scent-guide-aside{
  position: sticky;
  top: 116px;
}

.scent-guide-aside h2{
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 500;
  line-height: 1;
}

.scent-guide-aside p{
  margin: 0;
  color: var(--guide-soft);
  line-height: 1.7;
}

.guide-progress{
  margin-top: 34px;
}

.guide-progress__label{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.guide-progress__track{
  height: 2px;
  background: var(--guide-line);
  overflow: hidden;
}

.guide-progress__fill{
  height: 100%;
  background: var(--guide-ink);
  transition: width .55s cubic-bezier(.22,1,.36,1);
}

.scent-guide-stage{
  min-height: 560px;
}

.guide-step{
  display: none;
  animation: guideStepIn .55s cubic-bezier(.22,1,.36,1) both;
}

.guide-step.is-active{ display: block; }

@keyframes guideStepIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.guide-step__number{
  display: block;
  margin-bottom: 18px;
  color: var(--guide-soft);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.guide-step__question{
  max-width: 760px;
  margin: 0 0 34px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.03em;
}

.guide-options{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.guide-option{
  min-height: 118px;
  padding: 24px;
  border: 1px solid var(--guide-line);
  background: transparent;
  color: var(--guide-ink);
  text-align: left;
  cursor: pointer;
  transition: border-color .25s ease, background-color .25s ease, transform .25s ease;
}

.guide-option:hover, .guide-option:focus-visible{
  border-color: var(--guide-ink);
  transform: translateY(-2px);
}

.guide-option.is-selected{
  background: var(--guide-ink);
  border-color: var(--guide-ink);
  color: #171512;
}

.guide-option__title{
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.05;
}

.guide-option__note{
  display: block;
  margin-top: 10px;
  color: inherit;
  opacity: .66;
  font-size: .78rem;
  line-height: 1.5;
}

.guide-nav{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--guide-line);
}

.guide-nav .btn[disabled]{
  opacity: .35;
  pointer-events: none;
}

.guide-results{
  display: none;
}

.guide-results.is-active{
  display: block;
  animation: guideStepIn .65s cubic-bezier(.22,1,.36,1) both;
}

.scent-profile{
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(270px, .85fr);
  gap: 1px;
  background: var(--guide-line);
  border: 1px solid var(--guide-line);
  margin-bottom: 58px;
}

.scent-profile__main, .scent-profile__details{
  background: #171512;
  color: #f5efe6;
  padding: clamp(28px, 5vw, 58px);
}

.scent-profile__title{
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
  line-height: .9;
  font-weight: 500;
  letter-spacing: -.04em;
}

.scent-profile__copy{
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(245, 239, 230, .72);
  font-size: 1rem;
  line-height: 1.75;
}

.scent-profile__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.scent-profile__tag{
  padding: 9px 13px;
  border: 1px solid var(--guide-line);
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.scent-profile__row + .scent-profile__row{ margin-top: 22px; }
.scent-profile__row dt{
  color: rgba(245, 239, 230, .58);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scent-profile__row dd{
  margin: 7px 0 0;
  font-size: .95rem;
  line-height: 1.55;
}

.guide-results__header{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.guide-results__header h2{
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: .95;
  font-weight: 500;
}

.guide-results__header p{
  max-width: 410px;
  margin: 0;
  color: var(--guide-soft);
  line-height: 1.65;
}

.guide-results__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 30px);
}

.guide-result-wrap{
  position: relative;
}

.guide-result-rank{
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(9px);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.guide-result-reason{
  margin: 14px 0 0;
  color: var(--guide-soft);
  font-size: .8rem;
  line-height: 1.55;
}

.scent-result-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.scent-discovery-cta{
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  margin-top: clamp(70px, 10vw, 130px);
  background: #171512;
  color: #fff;
}

.scent-discovery-cta__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scent-discovery-cta__body{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(34px, 7vw, 86px);
}

.scent-discovery-cta h2{
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  line-height: .92;
  font-weight: 500;
}

.scent-discovery-cta p{
  max-width: 490px;
  margin: 24px 0 30px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

.scent-discovery-cta .btn{
  border-color: #fff;
  background: #fff;
  color: #171512;
}

.scent-reading{
  margin-top: clamp(96px, 13vw, 176px);
  padding-top: clamp(52px, 7vw, 84px);
  border-top: 1px solid rgba(255,255,255,.12);
}

.scent-reading__head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.scent-reading__head h2{
  max-width: 11ch;
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6.8rem);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.025em;
}

.scent-reading__all{
  flex: 0 0 auto;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.72);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
}

.scent-reading__all span{ color: var(--color-gold); }

.scent-reading__grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(16px, 2.3vw, 34px);
  align-items: start;
}

.scent-reading-card{
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.scent-reading-card__media{
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #161410;
}

.scent-reading-card--lead .scent-reading-card__media{ aspect-ratio: 16 / 11.2; }

.scent-reading-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-standard);
}

.scent-reading-card__body{ padding: 18px 2px 4px; }

.scent-reading-card__body>span{
  display: block;
  margin-bottom: 12px;
  color: var(--color-gold);
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.scent-reading-card__body h3{
  max-width: 16ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3.35rem);
  font-weight: 500;
  line-height: 1;
}

.scent-reading-card__body p{
  max-width: 42ch;
  margin: 15px 0 0;
  color: rgba(255,255,255,.56);
  font-size: .82rem;
  line-height: 1.65;
}

@media (hover:hover){
  .scent-reading-card:hover .scent-reading-card__media img{ transform: scale(1.035); }
  .scent-reading__all:hover{ color: #fff; border-color: var(--color-gold); }
}

.scent-toast{
  position: fixed;
  z-index: 1000;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom));
  transform: translate(-50%, 16px);
  padding: 12px 18px;
  background: #171512;
  color: #fff;
  font-size: .8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.scent-toast.is-visible{ opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 900px) {
  .scent-guide-layout{ grid-template-columns: 1fr; gap: 34px; }
  .scent-guide-aside{ position: static; }
  .scent-guide-aside > p{ max-width: 620px; }
  .scent-guide-stage{ min-height: 500px; }
  .guide-results__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .guide-result-wrap:first-child{ grid-column: 1 / -1; width: min(100%, 470px); }
}

@media (max-width: 680px) {
  .scent-experience__hero{ min-height: 720px; }
  .scent-experience__hero-media img{ object-position: 62% center; }
  .scent-experience__hero-media::after{
    background: linear-gradient(0deg, rgba(13,12,10,.82) 0%, rgba(13,12,10,.35) 70%, rgba(13,12,10,.16) 100%);
  }
  .scent-experience__hero h1{ font-size: clamp(3.1rem, 15vw, 5.3rem); }
  .guide-options{ grid-template-columns: 1fr; }
  .guide-option{ min-height: 92px; }
  .scent-profile{ grid-template-columns: 1fr; }
  .guide-results__header{ align-items: start; flex-direction: column; }
  .guide-results__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
  .guide-result-wrap:first-child{ grid-column: auto; width: auto; }
  .scent-discovery-cta{ grid-template-columns: 1fr; }
  .scent-discovery-cta__media{ min-height: 320px; }
  .scent-result-actions .btn{ flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .guide-step, .guide-results{ animation: none !important; }
  .guide-progress__fill, .guide-option, .scent-toast{ transition: none !important; }
}


.scent-profile{
  grid-template-columns:minmax(0,1.2fr) minmax(260px,.8fr);
  background:rgba(199,151,77,.24);
  border-color:rgba(199,151,77,.28);
}
.scent-profile__main, .scent-profile__details{
  background:#171512;
  color:var(--guide-ink);
}
.scent-profile__title{
  max-width:11ch;
  font-size:clamp(2.65rem,5vw,5.1rem);
  line-height:.92;
  overflow-wrap:normal;
  word-break:normal;
  hyphens:none;
}
.scent-profile__copy, .scent-profile__row dt{
  color:var(--guide-soft);
}
.scent-profile__tag{
  border-color:rgba(244,240,233,.2);
  color:var(--guide-ink);
}
.scent-profile__details dl{margin:0}
.guide-results__grid .product-card{
  background:#171512;
  border-color:rgba(244,240,233,.13);
  color:var(--guide-ink);
}
.guide-results__grid .product-card__name, .guide-results__grid .product-card__price{color:var(--guide-ink)}
.guide-results__grid .product-card__desc, .guide-results__grid .product-card__rating{color:var(--guide-soft)}
.guide-result-rank{
  background:rgba(9,8,7,.84);
  color:#fff;
  border:1px solid rgba(199,151,77,.45);
}
@media(max-width:680px){
  .scent-profile__title{max-width:14ch;font-size:clamp(2.45rem,13vw,4rem)}
}



.guide-results .scent-profile{
  background: rgba(245, 239, 230, .18);
  border-color: rgba(245, 239, 230, .18);
}
.guide-results .scent-profile__title, .guide-results .scent-profile__row dd, .guide-results .scent-profile__tag{
  color: #f5efe6;
}
.guide-results .scent-profile__tag{
  border-color: rgba(245, 239, 230, .28);
}
.guide-results .btn-secondary{
  border-color: #f5efe6;
  background: transparent;
  color: #f5efe6;
}
.guide-results .btn-secondary:hover, .guide-results .btn-secondary:focus-visible{
  background: #f5efe6;
  color: #171512;
}
.guide-results .scent-profile__copy, .guide-results .scent-profile__row dt{
  color: rgba(245, 239, 230, .66);
}


.guide-step{
  animation: guideStepFade .38s ease both;
}
@keyframes guideStepFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.guide-progress__fill{
  will-change: auto;
  transition: width .42s cubic-bezier(.22,1,.36,1);
}
@media (hover:hover) and (pointer:fine) {
  .guide-option:hover, .guide-option:focus-visible{
    transform: none;
  }
}



.scent-guide-layout.has-results{grid-template-columns:1fr;gap:0}
.scent-guide-layout.has-results .scent-guide-aside{display:none}
.scent-guide-layout.has-results .scent-guide-stage{width:100%;max-width:none;min-width:0}
.guide-results.is-active{display:block;padding:clamp(30px,4vw,64px) 0}
.guide-results__header{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:clamp(24px,3vw,44px)}
.guide-results__header h2{max-width:12ch;margin:0}
.guide-results__grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:clamp(16px,2vw,28px)!important;width:100%;min-width:0;align-items:stretch}
.guide-result-wrap{position:relative;min-width:0;max-width:100%;overflow:hidden}
.guide-result-wrap:first-child{grid-column:1/-1;grid-row:auto}
.guide-result-wrap .product-card{width:100%;height:100%;min-width:0;overflow:hidden;border-radius:0!important;transform:none!important;background:#151310;border:1px solid rgba(244,240,233,.13)}
.guide-result-wrap .product-card:hover{transform:none!important}
.guide-result-wrap .product-card__media{min-width:0;aspect-ratio:auto!important;overflow:hidden;background:#0c0b09}
.guide-result-wrap .product-card__media img{display:block;width:100%;height:100%;object-fit:cover;transform:none!important}
.guide-result-wrap .product-card__body{min-width:0}
.guide-result-wrap .product-card__desc, .guide-result-reason{overflow-wrap:anywhere}
.guide-result-rank{position:absolute;z-index:5;top:16px;left:16px;display:inline-flex;padding:8px 11px;border:1px solid rgba(199,151,77,.48);background:rgba(8,7,6,.88);color:#f5efe6;font-size:.68rem;letter-spacing:.12em;text-transform:uppercase;backdrop-filter:blur(8px)}
.guide-result-match{display:inline-flex;width:max-content;margin:0 0 14px;padding:7px 10px;border:1px solid rgba(184,138,75,.4);color:var(--color-gold);font-size:.68rem;letter-spacing:.11em;text-transform:uppercase}
.guide-result-reason{margin:14px 0 0;color:var(--guide-soft);font-size:.82rem;line-height:1.65}


.guide-result-wrap:first-child .product-card{display:grid!important;grid-template-columns:minmax(0,1.08fr) minmax(340px,.92fr)!important;grid-template-rows:minmax(0,1fr) auto!important}
.guide-result-wrap:first-child .product-card__media{grid-column:1;grid-row:1/3;min-height:clamp(520px,58vw,720px)}
.guide-result-wrap:first-child .product-card__body{grid-column:2;grid-row:1;padding:clamp(34px,5vw,68px);align-self:center}
.guide-result-wrap:first-child .product-card__name{font-size:clamp(2.8rem,5vw,5.6rem);line-height:.9}
.guide-result-wrap:first-child .product-card__desc{max-width:44ch;font-size:1rem;line-height:1.72}
.guide-result-wrap:first-child .product-card__actions{grid-column:2;grid-row:2;padding:0 clamp(34px,5vw,68px) clamp(34px,5vw,58px)}


.guide-result-wrap:not(:first-child) .product-card{display:grid!important;grid-template-columns:minmax(180px,.78fr) minmax(0,1.22fr)!important;grid-template-rows:minmax(0,1fr) auto!important;min-height:360px}
.guide-result-wrap:not(:first-child) .product-card__media{grid-column:1;grid-row:1/3;min-height:360px}
.guide-result-wrap:not(:first-child) .product-card__body{grid-column:2;grid-row:1;padding:clamp(24px,3vw,38px) clamp(22px,3vw,34px) 16px}
.guide-result-wrap:not(:first-child) .product-card__name{font-size:clamp(1.8rem,3vw,2.7rem);line-height:1}
.guide-result-wrap:not(:first-child) .product-card__actions{grid-column:2;grid-row:2;padding:0 clamp(22px,3vw,34px) clamp(22px,3vw,32px)}
.guide-result-wrap .product-card__actions{display:flex;flex-wrap:wrap;gap:10px}
.guide-result-wrap .product-card__actions>*{min-width:0}
.scent-result-actions{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin-top:clamp(26px,4vw,48px)}

@media(max-width:1050px){
  .guide-result-wrap:first-child .product-card{grid-template-columns:minmax(0,1fr) minmax(310px,.85fr)!important}
  .guide-result-wrap:not(:first-child) .product-card{grid-template-columns:145px minmax(0,1fr)!important}
}
@media(max-width:820px){
  .guide-results__grid{grid-template-columns:1fr!important}
  .guide-result-wrap:first-child{grid-column:auto}
  .guide-result-wrap:first-child .product-card{grid-template-columns:1fr!important;grid-template-rows:auto auto auto!important}
  .guide-result-wrap:first-child .product-card__media{grid-column:1;grid-row:1;min-height:460px}
  .guide-result-wrap:first-child .product-card__body{grid-column:1;grid-row:2;padding:28px 24px 18px}
  .guide-result-wrap:first-child .product-card__actions{grid-column:1;grid-row:3;padding:0 24px 26px}
  .guide-result-wrap:not(:first-child) .product-card{grid-template-columns:minmax(150px,.72fr) minmax(0,1.28fr)!important}
}
@media(max-width:560px){
  .guide-results.is-active{padding-top:22px}
  .guide-results__header{display:block}
  .guide-results__header h2{font-size:clamp(2.5rem,13vw,3.8rem)}
  .guide-result-rank{top:10px;left:10px;font-size:.6rem}
  .guide-result-wrap:first-child .product-card__media{min-height:390px}
  .guide-result-wrap:not(:first-child) .product-card{grid-template-columns:1fr!important;grid-template-rows:auto auto auto!important;min-height:0}
  .guide-result-wrap:not(:first-child) .product-card__media{grid-column:1;grid-row:1;min-height:300px}
  .guide-result-wrap:not(:first-child) .product-card__body{grid-column:1;grid-row:2;padding:24px 20px 14px}
  .guide-result-wrap:not(:first-child) .product-card__actions{grid-column:1;grid-row:3;padding:0 20px 22px}
  .scent-result-actions .btn{flex:1 1 100%}
}


@media (min-width: 901px) {
  .scent-experience__hero-media{
    background: #2a241e;
  }

  .scent-experience__hero-media img{
    position: absolute;
    inset: 0 0 0 auto;
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: right center;
  }

  .scent-experience__hero-media::after{
    background:
      linear-gradient(90deg, rgba(13,12,10,.88) 0%, rgba(13,12,10,.62) 34%, rgba(13,12,10,.24) 63%, rgba(13,12,10,.08) 100%),
      linear-gradient(0deg, rgba(13,12,10,.58) 0%, transparent 62%);
  }
}









.status-premium>.container, .thank-premium>.container, .not-found-premium>.container{position:relative;z-index:1}










.status-premium .order-status-step.is-active i{background:var(--gold)}











.collections-premium-hero .container{position:relative;z-index:1;padding-bottom:clamp(50px,8vw,100px)}





.not-found-premium .container{padding-top:80px;padding-bottom:80px}
















@media (min-width: 901px) {
  .collections-premium-hero .container, .scent-experience__hero-content, .journal-hero .container{
    transform: translate(-56px,-34px);
  }

  

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

  

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

  

  
}









@media (max-width: 620px) {
  

  .collections-premium-hero .container, .scent-experience__hero-content, .journal-hero .container{
    transform: none;
  }

  
}


@media (min-width: 901px) {
  .scent-experience__hero{
    align-items: center !important;
  }

  .collections-premium-hero .container, .scent-experience__hero-content, .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, .scent-experience__hero-content, .not-found-premium .container{
    padding-top: clamp(52px,7vh,86px) !important;
    padding-bottom: clamp(42px,6vh,72px) !important;
  }

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

  .scent-experience__hero 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;
  }

  .scent-experience__hero-copy{
    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;
  }

  

  

  
}

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

  
}


























.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:700px){.scent-experience__index{display:none}.scent-experience__hero--consultation .scent-experience__hero-content{margin-left:0;padding-left:32px;padding-right:24px;border-left:0;box-sizing:border-box}.scent-experience__hero--consultation h1{max-width:9.2ch;font-size:clamp(3.7rem,15vw,4.9rem);line-height:.91}.scent-experience__hero--consultation .scent-experience__hero-copy{max-width:32rem}}




.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}






















body[class*="has-product-story"] .product-hero{border-bottom:1px solid var(--border-hairline)}
body[class*="has-product-story"] h1, body[class*="has-product-story"] h2{overflow-wrap:normal;word-break:normal;hyphens:none}




.product-page .btn{min-height:48px}





@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}
}


@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;
  }
}



















@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)}}





: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{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"]{min-height:var(--tap-min)}
img{background-color:transparent}








@media (max-width:760px){
  html{scroll-padding-top:74px}
  
  
  
  
  
  
  
  
  
  
  
  
  
}
@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}
}





.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}
}






















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


h1, h2, h3, .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, .guide-option{
  min-height:44px;
}


.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)}


.scent-experience__hero{
  min-height:min(820px,calc(100svh - var(--header-height-mobile,72px)));
}




@media(hover:hover) and (pointer:fine){
  
  .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-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);
  }
  
  
  
  
  

  
  
  
  
  
  

  
  
  
  
  
  
  
  
  
  

  
  
  
  
  
  
  
  
  

  
  .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}

  
  
  
  
  
  

  
  
  
  
  
  .contact-hero__actions .btn{width:100%}

  
  
  
  
  
  
  
  
  .product-primary-actions .btn{width:100%}
  
  
  

  
  
  
  
  
  
}

@media(max-width:600px){
  
  
  .scent-experience__hero h1{
    font-size:clamp(2.75rem,13.5vw,4.5rem);
    line-height:.92;
  }
  
}

@media(max-width:390px){
  :root{--mobile-page-pad:16px}
  .home-page .hero.hero--editorial{min-height:580px}
  
  
  
  
  .guide-options{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}
  
  
  
}

@media(prefers-reduced-motion:reduce){
  .home-page .hero-slide__media img{transition:none!important;transform:none!important}
}


.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;
}














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


.btn, button, .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; }


@media (hover:hover) and (pointer:fine) {
  .product-card__media img{
    transition: transform 1.35s cubic-bezier(.22,1,.36,1), filter .7s ease;
    transform-origin: center;
  }
  .product-card__media:hover img{ transform: scale(1.02); }
}











.similar-grid .product-card{ position: relative; }

.similar-grid .product-card__body{ gap: 8px; }
.similar-grid .product-card__desc{ display: none; }


.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);
}




@media (max-width: 640px) {
  
  
  
  
  
  .site-footer--editorial{ padding-top: 84px; }
  
}
@media (prefers-reduced-motion: reduce) {
  .product-card__media img{ transition: none !important; transform: none !important; }
}




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

@media (min-width: 761px) {
  
  .scent-experience__hero{
    box-sizing: border-box;
    height: calc(100svh - var(--va-desktop-header-h));
    min-height: 560px;
    max-height: 900px;
    overflow: hidden;
  }

  
  

  
  .scent-experience__hero-media img, .collections-v2-hero__media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  
  .scent-experience__hero h1{
    font-size: clamp(3.7rem, 6.6vw, 7.4rem);
    line-height: .88;
  }

  

  
}

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

  
}







@media (min-width: 761px) and (max-height: 760px) {
  .scent-experience__hero{
    min-height: 500px;
  }

  

  .scent-experience__hero h1{
    font-size: clamp(3.2rem, 6.2vw, 6.25rem);
  }
}



@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}
}

















@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: 560px) {
  

  .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;
  }

  

  

  

  

  

  
}






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;
  }
}



@media (max-width: 760px) {
  html, body{ max-width: 100%; overflow-x: clip; }

  
  .home-page .hero-slide__content, .scent-experience-page .scent-experience__hero-content, .reviews-section > .container{
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  
  .home-page .hero.hero--editorial .hero-slide__content{
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    padding-inline: 20px !important;
  }
  .home-page .hero.hero--editorial .hero-slide__title{
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    font-size: clamp(2.25rem, 10.2vw, 3rem) !important;
    line-height: .98 !important;
    letter-spacing: -.04em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
  }

  
  .scent-experience-page .scent-experience__hero-content{
    left: auto !important;
    right: auto !important;
    margin: 0 !important;
    padding-inline: 20px !important;
  }
  .scent-experience-page .scent-experience__hero-content h1{
    width: 100%;
    max-width: 9.5ch;
    font-size: clamp(2.55rem, 12vw, 3.45rem) !important;
    line-height: .98 !important;
    letter-spacing: -.035em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
  }
  .scent-experience-page .scent-experience__hero-content p{
    max-width: 100%;
  }

  
  .scent-experience-page .scent-profile, .scent-profile{
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    max-width: 100%;
  }
  .scent-profile__main, .scent-profile__details{
    width: 100%;
    min-width: 0;
    padding: 26px 20px !important;
  }
  .scent-profile__title{
    width: 100%;
    max-width: 9ch;
    font-size: clamp(2.35rem, 11.5vw, 3.25rem) !important;
    line-height: .96 !important;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
  }
  .scent-profile__row{
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 5px;
  }

  
  
  
  
  
  
  .reviews-section > .container{ padding-inline: 20px !important; }

  
  
  
  
  

  
  
  
  
}

@media (max-width: 390px) {
  .home-page .hero.hero--editorial .hero-slide__title{ font-size: 2.25rem !important; }
  .scent-experience-page .scent-experience__hero-content h1{ font-size: 2.55rem !important; }
  
}



@media (max-width: 760px) {
  
  .home-page .hero.hero--editorial .hero-slide:nth-child(3) .hero-slide__title br{
    display: block !important;
  }
  .home-page .hero.hero--editorial .hero-slide:nth-child(3) .hero-slide__title{
    max-width: 9.4ch !important;
    font-size: clamp(2.05rem, 9.5vw, 2.65rem) !important;
    line-height: .96 !important;
    letter-spacing: -.045em !important;
  }

  
  .scent-experience-page .scent-experience__hero-content{
    padding-left: 36px !important;
    padding-right: 20px !important;
  }
}


@media (max-width: 760px) {
  

  .about-editorial-page .about-molecules__copy .eyebrow{
    width: 100%;
    max-width: 32ch;
    margin-inline: 0;
  }

  

  .about-editorial-page .about-molecules__copy p:not(.eyebrow){
    width: auto !important;
    max-width: 32ch !important;
    margin-inline: 0 !important;
    font-size: .96rem !important;
    line-height: 1.68 !important;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .about-editorial-page .about-molecules__copy p:not(.eyebrow) + p{
    margin-top: 18px !important;
  }
}





.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:hover .va-compare-card__hero img{transform:scale(1.025)}.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}}
@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-modal, .va-compare-dock, .va-compare-panel{transition:none!important;animation:none!important}}


.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;
}



@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;
  }
  
  
}

@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__remove{
    width:36px;
    height:36px;
    min-width:36px;
    min-height:36px;
    border-radius:999px;
  }
}


.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__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__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}
  
}
@media(max-width:600px){
  .va-compare-card{flex-basis:calc(100vw - 28px)}
  
}


.va-compare-grid{
  width:min(1460px,calc(100% - 40px));
  margin-top:16px;
}



.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-grid{margin-top:14px;margin-bottom:44px}
}

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

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








.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--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}
}


.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}
}




: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;
}





.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}

@media(hover:hover) and (pointer:fine){
  .product-card:hover{
    transform:translateY(-3px);
    border-color:var(--ui-border-hover);
    box-shadow:var(--ui-shadow-lift);
  }
}














@media(max-width:520px){
  
  
  
  
  
  .wishlist-card__actions .btn{min-height:36px;padding:8px 11px}
  
}


.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-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}
}


@media(pointer:coarse){
  .va-compare-add{min-height:44px}
  .va-compare-card__remove{min-width:40px;min-height:40px}
}

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




: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%}


:where([id]){scroll-margin-top:96px}


:where(a,button,input,select,textarea,[role="button"],[tabindex]):focus-visible{
  outline:2px solid var(--focus-ring);
  outline-offset:3px;
}


: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);
  }
}


@media(max-width:760px){
  :where(input,select,textarea){font-size:16px}
  :where(.modal,.drawer,.va-compare-modal__inner){overscroll-behavior:contain}
}








.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}
}


@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;
  }
}


@media(forced-colors:active){
  :where(button,.btn,input,select,textarea,.product-card,.wishlist-card){border:1px solid CanvasText}
}




html, body{ max-width: 100%; overflow-x: clip; }
img, picture, video, canvas, svg{ max-width: 100%; }



button, input, select, textarea, a{ min-width: 0; }
.product-card, .cart-item, .va-compare-card{ min-width: 0; }
.product-card__name, .product-card__desc, .va-compare-card__name, .va-compare-statement, .va-compare-value{ overflow-wrap: anywhere; }



.cart-hero + .checkout-progress{ margin-top: clamp(18px, 2.2vw, 30px); }



@media (min-width: 901px) and (max-height: 900px) {
  
  
  
  
  
  .checkout-progress{ margin-bottom: 30px; }
}


@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; }
}


@media (max-width: 760px) {
  html, body{ overflow-x: hidden; }
  
  
  .checkout-progress{ margin-top: 14px; }
  .btn, button, input, select, textarea{ max-width: 100%; }
}


@media (max-width: 380px) {
  .container{ width: min(100% - 28px, var(--container-max)); }
  .product-card__actions{ gap: 8px; }
  .product-card__actions .btn{ padding-inline: 10px; }
}

@media (max-width: 900px) {
  .scent-reading__head{ align-items: flex-start; }
  .scent-reading__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .scent-reading-card--lead{ grid-column: 1 / -1; }
  .scent-reading-card--lead .scent-reading-card__media{ aspect-ratio: 16 / 9; }
}

@media (max-width: 620px) {
  .scent-reading{ margin-top: 88px; padding-top: 46px; }
  .scent-reading__head{ display: block; }
  .scent-reading__head h2{ font-size: clamp(3.1rem,15vw,4.6rem); }
  .scent-reading__all{ display: inline-block; margin-top: 25px; }
  .scent-reading__grid{ grid-template-columns: 1fr; gap: 42px; }
  .scent-reading-card--lead{ grid-column: auto; }
  .scent-reading-card__media,
  .scent-reading-card--lead .scent-reading-card__media{ aspect-ratio: 16 / 10; }
  .scent-reading-card__body h3{ font-size: clamp(2rem,10vw,2.75rem); }
}

/* v13.8.36 — readable recommendation rationale */
.guide-result-reason{
  display:grid;
  margin:clamp(16px,2vw,22px) 0 0;
  padding:0;
  overflow:hidden;
  color:var(--guide-soft);
  border-top:1px solid rgba(199,151,77,.18);
  border-bottom:1px solid rgba(199,151,77,.12);
  font-size:.82rem;
  line-height:1.55
}
.guide-result-reason__row{
  display:grid;
  grid-template-columns:minmax(104px,.34fr) minmax(0,1fr);
  align-items:start;
  gap:clamp(12px,1.7vw,22px);
  padding:11px 0
}
.guide-result-reason__row + .guide-result-reason__row{
  border-top:1px solid rgba(244,240,233,.08)
}
.guide-result-reason__label{
  color:rgba(199,151,77,.92);
  font-size:.64rem;
  font-weight:600;
  letter-spacing:.1em;
  line-height:1.45;
  text-transform:uppercase
}
.guide-result-reason__row p{
  min-width:0;
  margin:0;
  color:var(--guide-soft);
  overflow-wrap:anywhere
}
.guide-result-reason__row--why p{
  color:rgba(244,240,233,.78)
}
@media(max-width:620px){
  .guide-result-reason__row{
    grid-template-columns:1fr;
    gap:4px;
    padding:10px 0
  }
}

/* VA HOME v15.1.1 RC6 — Welcome Credit after Personal Scent Profile */
.guide-welcome-credit{display:flex;align-items:center;justify-content:space-between;gap:34px;margin:24px 0 42px;padding:clamp(26px,4vw,42px);border:1px solid rgba(195,145,70,.38);background:radial-gradient(circle at 86% 12%,rgba(195,145,70,.15),transparent 32%),linear-gradient(135deg,rgba(25,20,14,.98),rgba(10,8,6,.99))}
.guide-welcome-credit[hidden]{display:none!important}.guide-welcome-credit>div{max-width:760px}.guide-welcome-credit h2{margin:8px 0 10px;font-family:var(--font-display);font-size:clamp(32px,4vw,52px);font-weight:500;line-height:.98}.guide-welcome-credit p:last-child{margin:0;color:rgba(255,255,255,.54);font-size:13px;line-height:1.7}.guide-welcome-credit .btn{flex:0 0 auto}
@media(max-width:820px){.guide-welcome-credit{align-items:flex-start;flex-direction:column}.guide-welcome-credit .btn{width:100%}}

/* VA HOME v15.1.1 RC6.3 — clear ineligible Welcome Credit state */
.guide-welcome-credit.is-ineligible{border-color:rgba(255,255,255,.13);background:linear-gradient(135deg,rgba(20,18,16,.98),rgba(9,8,7,.99))}
.guide-welcome-credit.is-ineligible .scent-profile__eyebrow{color:rgba(255,255,255,.42)}

/* RC6.3 — discreet Welcome Credit note in the consultation hero */
.scent-experience__welcome-note{
  max-width:760px;
  margin:22px 0 0;
  padding-top:16px;
  border-top:1px solid rgba(200,162,124,.28);
  color:rgba(238,232,223,.72);
  font-size:13px;
  line-height:1.7;
}
.scent-experience__welcome-note span{
  display:inline-block;
  margin-right:8px;
  color:#c8a27c;
  font-size:10px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
}
@media (max-width:700px){
  .scent-experience__welcome-note{margin-top:18px;padding-top:14px;font-size:12px;line-height:1.65;}
  .scent-experience__welcome-note span{display:block;margin:0 0 5px;}
}


/* ===== VA HOME v16.4.18 — Clear guide questions & result hierarchy ===== */
.guide-welcome-credit{
  margin:clamp(30px,4vw,48px) 0 28px;
}
.guide-results__grid + .guide-welcome-credit{
  margin-top:clamp(34px,5vw,58px);
}
.scent-guide-stage,
.guide-results{
  min-height:auto;
}
@media(max-width:900px){
  .scent-guide-shell{
    padding-top:clamp(36px,7vw,64px);
    padding-bottom:clamp(52px,9vw,84px);
  }
  .guide-step__question{
    max-width:15ch;
    font-size:clamp(2.8rem,8vw,4.8rem);
    line-height:.96;
  }
}
@media(max-width:620px){
  .scent-guide-shell{
    padding-top:30px;
    padding-bottom:56px;
  }
  .scent-guide-layout{
    gap:32px;
  }
  .scent-guide-aside p{
    max-width:32ch;
  }
  .guide-step__question{
    max-width:12.5ch;
    font-size:clamp(2.45rem,11vw,3.6rem);
    line-height:.98;
  }
  .guide-options{
    gap:10px;
  }
  .guide-option{
    min-height:92px;
    padding:20px 18px;
  }
  .guide-option__title{
    font-size:clamp(1.35rem,6vw,1.75rem);
  }
  .guide-option__note{
    font-size:13px;
    line-height:1.45;
  }
  .guide-welcome-credit{
    margin:30px 0 22px;
    padding:24px 20px;
  }
  .guide-welcome-credit h2{
    font-size:clamp(2rem,10vw,3rem);
  }
}


/* ===== Scent responsive component — consolidated from legacy mobile layers ===== */
@media (max-width: 900px){
.scent-guide-main,
  .scent-guide-results{padding-block: clamp(34px, 7vw, 58px) var(--va-mobile-section);}
.scent-guide-layout,
  .scent-guide-step,
  .scent-profile-layout{gap: clamp(28px, 7vw, 48px);}
.scent-guide-question{margin-bottom: clamp(26px, 6vw, 40px);}
.scent-guide-options{gap: 12px;}
.scent-guide-option{min-height: 96px; padding: 20px;}
.scent-guide-option h3{font-size: clamp(1.45rem, 5.5vw, 2rem);}
.scent-guide-progress{margin-top: 24px;}
.scent-credit,
  .welcome-credit{margin-block: var(--va-mobile-section-tight); padding: clamp(24px, 6vw, 38px);}
}
@media (max-width: 620px){
.scent-guide-options{grid-template-columns: 1fr;}
.scent-guide-option{min-height: 88px; padding: 18px;}
.scent-guide-sidebar h1{font-size: clamp(2.6rem, 12vw, 4rem);}
}
@media (max-width:620px){
#guideResultsGrid,
  .scent-guide-results .product-grid,
  .scent-profile-results .product-grid{display:flex!important;
    grid-template-columns:none!important;
    gap:12px!important;
    overflow-x:auto!important;
    overflow-y:hidden!important;
    scroll-snap-type:x mandatory;
    scroll-padding-inline:var(--va-mobile-gutter,16px);
    padding-bottom:10px!important;
    overscroll-behavior-inline:contain;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;}
#guideResultsGrid::-webkit-scrollbar,
  .scent-guide-results .product-grid::-webkit-scrollbar,
  .scent-profile-results .product-grid::-webkit-scrollbar{display:none;}
#guideResultsGrid .product-card,
  .scent-guide-results .product-card,
  .scent-profile-results .product-card{flex:0 0 min(78vw,340px)!important;
    scroll-snap-align:start;}
#guideResultsGrid .va-compare-add,
  .scent-guide-results .va-compare-add,
  .scent-profile-results .va-compare-add{display:none;}
.scent-guide-layout,
  .scent-guide-step,
  .scent-profile-layout{grid-template-columns:minmax(0,1fr);}
.scent-guide-sidebar{position:static;}
.scent-guide-options{grid-template-columns:minmax(0,1fr);}
.scent-guide-option{min-height:84px;padding:17px;}
.scent-credit,
  .welcome-credit{margin-block:36px;padding:22px 18px;}
}
@media (max-width:430px){
#guideResultsGrid .product-card{flex-basis:82vw!important;}
}
@media (max-width:620px){
.scent-guide-page .section{padding-block:clamp(44px,11vw,62px)!important;}
}

/* ===== VA HOME v16.4.18 — mobile consultation cards ===== */
.guide-results__swipe-hint{display:none}

@media(max-width:680px){
  .guide-results__swipe-hint{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:8px;
    margin:-10px 0 14px;
    color:rgba(245,239,230,.5);
    font-size:.66rem;
    letter-spacing:.1em;
    text-transform:uppercase;
  }
  .guide-results__swipe-hint span{color:var(--color-gold);font-size:1rem}
  .guide-results__grid{
    display:flex!important;
    gap:14px;
    width:100%;
    max-width:100%;
    padding:0 28px 16px 0;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-snap-type:x mandatory;
    scroll-padding-inline:0;
    overscroll-behavior-inline:contain;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
  .guide-results__grid::-webkit-scrollbar{display:none}
  .guide-result-wrap,
  .guide-result-wrap:first-child{
    flex:0 0 calc(100% - 28px);
    width:auto;
    max-width:none;
    min-width:0;
    grid-column:auto;
    scroll-snap-align:start;
    scroll-snap-stop:always;
    overflow:hidden;
  }
  .guide-result-wrap .product-card,
  .guide-result-wrap:first-child .product-card,
  .guide-result-wrap:not(:first-child) .product-card{
    display:grid!important;
    grid-template-columns:1fr!important;
    grid-template-rows:auto minmax(0,1fr) auto!important;
    width:100%;
    min-height:0;
  }
  .guide-result-wrap .product-card__media,
  .guide-result-wrap:first-child .product-card__media,
  .guide-result-wrap:not(:first-child) .product-card__media{
    grid-column:1;
    grid-row:1;
    width:100%;
    min-height:0!important;
    aspect-ratio:4/5!important;
  }
  .guide-result-wrap .product-card__body,
  .guide-result-wrap:first-child .product-card__body,
  .guide-result-wrap:not(:first-child) .product-card__body{
    grid-column:1;
    grid-row:2;
    padding:24px 20px 14px;
  }
  .guide-result-wrap .product-card__actions,
  .guide-result-wrap:first-child .product-card__actions,
  .guide-result-wrap:not(:first-child) .product-card__actions{
    grid-column:1;
    grid-row:3;
    padding:0 20px 22px;
  }
  .guide-result-wrap:first-child .product-card__name,
  .guide-result-wrap:not(:first-child) .product-card__name{
    font-size:clamp(2.15rem,11vw,3.25rem);
    line-height:.96;
  }
  .guide-results__grid .scent-match-badge{display:none}
}


/* ===== VA HOME v16.4.18 — aligned mobile recommendation rhythm ===== */
@media(max-width:680px){
  .guide-results__grid{
    align-items:stretch;
  }
  .guide-result-wrap,
  .guide-result-wrap:first-child{
    display:flex;
    align-self:stretch;
  }
  .guide-result-wrap .product-card,
  .guide-result-wrap:first-child .product-card,
  .guide-result-wrap:not(:first-child) .product-card{
    height:100%;
  }
  .guide-result-wrap .product-card__body,
  .guide-result-wrap:first-child .product-card__body,
  .guide-result-wrap:not(:first-child) .product-card__body{
    flex:1 1 auto;
  }
  .guide-results__grid .guide-result-match{
    min-height:31px;
    align-items:center;
  }
  .guide-results__grid .product-card__collection{
    min-height:1.45em;
  }
  .guide-results__grid .product-card__name{
    display:-webkit-box;
    height:2lh;
    min-height:2lh;
    overflow:hidden;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
  }
  .guide-results__grid .guide-result-wrap .product-card__desc{
    height:3lh;
    min-height:3lh;
    font-size:clamp(.95rem,4vw,1.05rem);
    line-height:1.55;
    -webkit-line-clamp:3;
  }
  .guide-results__grid .guide-result-reason{
    margin-top:18px;
  }
  .guide-results__grid .guide-result-reason__row{
    align-content:start;
  }
  .guide-results__grid .guide-result-reason__row--why{
    min-height:calc(4lh + 38px);
  }
  .guide-results__grid .guide-result-reason__row--why p{
    display:-webkit-box;
    height:4lh;
    min-height:4lh;
    overflow:hidden;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:4;
  }
  .guide-results__grid .guide-result-reason__row:nth-child(2){
    min-height:calc(2lh + 38px);
  }
  .guide-results__grid .guide-result-reason__row:nth-child(2) p{
    display:-webkit-box;
    height:2lh;
    min-height:2lh;
    overflow:hidden;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
  }
  .guide-results__grid .guide-result-reason__row:nth-child(3){
    min-height:calc(3lh + 38px);
  }
  .guide-results__grid .guide-result-reason__row:nth-child(3) p{
    display:-webkit-box;
    height:3lh;
    min-height:3lh;
    overflow:hidden;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;
  }
  .guide-results__grid .product-card__meta{
    margin-top:auto;
  }
  .guide-results__grid .product-card__actions{
    margin-top:auto;
  }
}
