@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400;0,600;1,400&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --black: #050505;
  --ink: #2d2d2c;
  --muted: #a4a4a4;
  --gold: #f0d78a;
  --gold-dark: #8a6420;
  --light: #f1f1f1;
  --green: #3a7d44;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #000; font-family: "Roboto", Arial, sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, summary { font: inherit; }

html.js.scroll-reveal-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease-out, transform .55s ease-out;
}
html.js.scroll-reveal-ready .scroll-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero { height: 900px; position: relative; overflow: hidden; background: #111; color: white; }
.hero::after { content: ""; position: absolute; inset: 75px 0 0; background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.25) 47%, transparent 72%); }
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.topbar { height: 75px; padding: 0 max(32px, calc((100vw - 1420px)/2)); position: absolute; z-index: 3; inset: 0 0 auto; display: flex; align-items: center; gap: 10px; background: #000; font: 24px/1.25 "Baskervville", Georgia, serif; }
.topbar img { width: 165px; height: 43px; object-fit: contain; margin-right: 10px; }
.topbar .signature { margin-left: auto; }
.hero-copy { position: absolute; z-index: 2; left: max(32px, calc((100vw - 1420px)/2)); top: 40%; width: min(780px, 50vw); }
.hero h1 { margin: 0 0 24px; font: 400 clamp(40px, 3.2vw, 48px)/1.15 "Baskervville", Georgia, serif; letter-spacing: .08em; text-transform: uppercase; }
.hero h1 em { color: var(--gold); font-style: normal; font-weight: 600; }
.button { display: inline-flex; min-height: 58px; padding: 15px 60px; align-items: center; justify-content: center; border: 1px solid var(--gold); border-radius: 10px; color: var(--gold); text-decoration: none; transition: background .2s, color .2s, transform .2s; }
.button:hover { background: var(--gold); color: #151515; transform: translateY(-2px); }

.benefits { min-height: 84px; padding: 16px max(32px, calc((100vw - 1420px)/2)); background: #000; color: #fff; overflow-x: auto; }
.benefits-track { width: 100%; }
.benefits-group { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.benefits-group[aria-hidden="true"] { display: none; }
.benefit { min-width: 210px; display: flex; align-items: center; gap: 16px; }
.benefit + .benefit { border-left: 1px solid #5a5a5a; padding-left: 48px; }
.benefit img { width: 40px; height: 40px; flex: 0 0 40px; object-fit: contain; }
.benefits span { line-height: 1.6; font-weight: 300; }

.section-light { background: var(--light); }
.collection { padding: 80px max(32px, calc((100vw - 1200px)/2)) 96px; }
.section-title { margin-bottom: 48px; text-align: center; }
.section-title > span { display: block; color: var(--muted); font-size: 38px; font-weight: 300; line-height: 1.2; }
.section-title h2 { margin: 0; font: 500 45px/1.2 "Baskervville", Georgia, serif; letter-spacing: .08em; text-transform: uppercase; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.product-card { min-width: 0; display: flex; flex-direction: column; overflow: hidden; border-radius: 16px; background: white; }
.product-card picture { width: 100%; aspect-ratio: 600 / 400; }
.product-image { width: 100%; height: 100%; }
.product-image { object-fit: cover; }
.product-content { padding: 32px; display: flex; flex-direction: column; gap: 22px; }
.product-content h3 { margin: 0; font: 700 26px/1.25 "Baskervville", Georgia, serif; letter-spacing: .07em; text-transform: uppercase; }
.product-content p { margin: 4px 0 0; }
.price { display: flex; align-items: center; gap: 16px; }
.price s { color: #9e9e9c; }
.price strong { color: var(--green); font-size: 32px; font-weight: 500; }
.notes > span { display: block; padding: 5px 8px; border-radius: 4px; background: #f2f2f2; color: #666663; font-size: 14px; font-weight: 500; }
.note-list { display: flex; gap: 15px; margin-top: 12px; }
.note { min-width: 0; text-align: center; }
.note-composite { width: 83px; height: 75px; margin: auto; object-fit: contain; }
.note small { display: block; margin-top: 6px; }
.purchase-row { padding-top: 18px; border-top: 1px solid #dedede; display: flex; align-items: center; gap: 24px; }
.marketplace { display: flex; align-items: center; gap: 12px; color: #666; font-weight: 600; width: 50%; }
.marketplace-logo { width: 155px; max-height: 48px; max-width: 50%; }
.marketplace-seal { width: 140px; height: 46px; object-fit: contain; max-width: 50%; }
.purchase-row .button { width: auto; flex: 1; padding-inline: 24px; white-space: nowrap; background: #3483fa; border-color: #3483fa; color: white; }

.concentration { min-height: 1073px; position: relative; display: flex; justify-content: flex-end; align-items: center; padding: 90px max(32px, calc((100vw - 1420px)/2)); background: #060606 url('assets/concentration.webp') center/cover no-repeat; color: white; }
.concentration-mobile-image { display: none; }
.concentration-copy { width: 50%; max-width: 680px; }
.concentration-copy > span { color: var(--gold); font: 300 40px/1.2 "Roboto", Arial, sans-serif; }
.concentration h2 { margin: 20px 0 28px; font: 500 45px/1.2 "Baskervville", Georgia, serif; letter-spacing: .08em; text-transform: uppercase; }
.concentration p { max-width: 650px; font-size: 18px; line-height: 1.6; font-weight: 300;}
.concentration .button { margin-top: 24px; }

.experience { height: 1073px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(440px, 554px) minmax(0, 1fr); position: relative; overflow: hidden; background: #050505; color: white; }
.experience-media { width: min(100%, 600px); height: 100%; position: relative; }
.experience-media:nth-of-type(1) { grid-column: 1; justify-self: end; }
.experience-media:nth-of-type(2) { grid-column: 3; justify-self: start; }
.experience-video { display: block; width: 100%; height: 100%; object-fit: cover; }
.experience-controls { position: absolute; z-index: 1; right: 16px; bottom: 16px; display: flex; gap: 8px; }
.experience-control { display: grid; width: 44px; height: 44px; padding: 0; place-items: center; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; background: rgba(5,5,5,.7); color: #fff; cursor: pointer; transition: background-color .2s ease, border-color .2s ease; }
.experience-control:hover { border-color: var(--gold); background: rgba(5,5,5,.9); }
.experience-control:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.experience-control-icon { width: 22px; height: 22px; fill: currentColor; }
.experience-icon-play, .experience-icon-pause, .experience-icon-volume-on, .experience-icon-volume-off { display: none; }
.experience-media.is-playing .experience-icon-pause, .experience-media:not(.is-muted) .experience-icon-volume-on { display: block; }
.experience-media:not(.is-playing) .experience-icon-play, .experience-media.is-muted .experience-icon-volume-off { display: block; }
.experience h2 { grid-column: 2; grid-row: 1; z-index: 2; align-self: center; margin: 0; width: 100%; color: var(--gold); text-align: center; font: 300 38px/1.34 "Roboto", Arial, sans-serif; letter-spacing: -.095px; text-transform: none; }
.experience h2 b { display: block; color: white; font: 400 45px/1.2 "Baskervville", Georgia, serif; letter-spacing: -.1125px; text-transform: uppercase; }

.reviews { padding: 80px max(32px, calc((100vw - 1420px)/2)) 96px; overflow: hidden; }
.section-title.compact h2 { font-size: 36px; }
.review-controls { display: flex; justify-content: flex-end; gap: 8px; margin: -16px 0 16px; }
.review-control { display: grid; width: 46px; height: 46px; padding: 0; place-items: center; border: 1px solid #050505; border-radius: 50%; background: transparent; color: #050505; cursor: pointer; transition: background-color .2s ease, color .2s ease; }
.review-control:hover { background: #050505; color: #fff; }
.review-control:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.review-control svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.75; }
.review-track { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x proximity; scrollbar-color: #000 #fff; scrollbar-width: thin; }
.review-track.is-dragging { scroll-snap-type: none; }
.review-track.is-dragging { cursor: grabbing; user-select: none; }
.review-track::-webkit-scrollbar { height: 6px; }
.review-track::-webkit-scrollbar-track { background: #fff; }
.review-track::-webkit-scrollbar-thumb { border-radius: 999px; background: #000; }
.review { flex: 0 0 440px; min-height: 261px; padding: 24px; border-radius: 16px; background: white; scroll-snap-align: start; }
.review-heading { min-height: 93px; display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.review h3 { margin: 13px 0 0; color: var(--gold-dark); font-size: 20px; font-weight: 500; line-height: 1.35; }
.review p { margin: 1rem 0 0; line-height: 1.6; }
.stars { margin-top: 2px; color: #3483fa; font-size: 20px; line-height: 1.4; letter-spacing: 3px; }

@media (hover: hover) and (pointer: fine) {
  .review-track { cursor: grab; }
}
.review-media { display: flex; gap: 8px; }
.review-media-link { display: block; border-radius: 4px; outline-offset: 3px; overflow: hidden; }
.review-media-link:hover img { transform: scale(1.04); }
.review-media img { width: 70px; height: 93px; object-fit: cover; }
.review-media-link img { transition: transform .2s ease; }
.review-lightbox { width: min(90vw, 900px); max-width: none; max-height: 90vh; margin: auto; padding: 0; border: 0; background: transparent; overflow: visible; }
.review-lightbox::backdrop { background: rgba(0, 0, 0, .84); }
.review-lightbox-image { width: auto; max-width: 100%; max-height: 90vh; margin: auto; object-fit: contain; }
.review-lightbox-close { position: absolute; top: -12px; right: -12px; display: grid; width: 40px; height: 40px; padding: 0; place-items: center; border: 1px solid rgba(255, 255, 255, .7); border-radius: 50%; background: #050505; color: white; font-size: 28px; line-height: 1; cursor: pointer; }

.faq { padding: 80px 24px 96px; background-color: #fff; }
.faq-list { max-width: 680px; margin: auto; }
.faq details { border-bottom: 1px solid #bababa; padding: 16px 0; }
.faq summary { display: flex; justify-content: space-between; cursor: pointer; list-style: none; font-size: 18px; font-weight: 700; }
.faq summary::after { content: "⌄"; font-size: 24px; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(180deg); }
.faq details p { line-height: 1.6; }

.instagram { padding: 36px 24px 70px; overflow: hidden; background-color: #fff; }
.instagram h2 { margin: 0 0 44px; text-align: center; font-size: 36px; font-weight: 400; }
.instagram-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 11px; }
.instagram-track a { display: block; border-radius: 16px; outline-offset: 3px; }
.instagram-track img { width: 100%; height: 530px; border-radius: 16px; object-fit: cover; }

.final-cta { padding: 80px 24px; text-align: center; background: #000; color: white; }
.final-cta h2 { margin: 0; font: 500 45px/1.2 "Baskervville", Georgia, serif; text-transform: uppercase; }
.final-cta p { margin: 22px auto 24px; max-width: 920px; font-size: 26px; font-weight: 300; }

.authenticity { min-height: 809px; display: grid; grid-template-columns: 1fr 1fr; position: relative; background: rgba(241,241,241,1); overflow: hidden; }
.authenticity picture { grid-column: 2; }
.authenticity picture img { width: 100%; height: 100%; object-fit: cover; }
.auth-copy { grid-row: 1; align-self: center; max-width: 870px; padding: 80px 30px 80px max(32px, calc((100vw - 1420px)/2)); }
.auth-copy > span { color: var(--muted); font-size: 38px; font-weight: 300; }
.auth-copy h2 { margin: 6px 0 40px; font: 500 45px/1.2 "Baskervville", Georgia, serif; letter-spacing: .08em; text-transform: uppercase; }
.auth-copy h2 b { font-size: 64px; }
.auth-items > div { padding: 20px 24px; border-radius: 16px; width: 65%; }
.auth-items h3 { margin: 0 0 8px; }
.auth-items p { margin: 0; line-height: 1.6; }
.auth-validation-link { color: inherit; text-decoration-color: var(--gold-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }

footer { min-height: 75px; padding: 20px max(32px, calc((100vw - 1420px)/2)); display: flex; align-items: center; justify-content: space-between; background: #000; color: white; font-weight: 300; }
.footer-copyright { font-size: 14px; flex: 1; }
.footer-credit { display: flex; align-items: center; justify-content: flex-end; gap: 3px; font-size: 13px; flex: 1; }
.footer-credit a { width: 100px; }
.footer-credit img { max-width: 100%; }

@media (max-width: 1050px) {
  .product-grid { grid-template-columns: 1fr; }
  .review-track { overflow-x: auto; grid-template-columns: repeat(4, 320px); }
}

@media (max-width: 1200px) {
  .benefits { padding: 0; overflow: hidden; }
  .benefits-track { width: max-content; display: flex; animation: benefits-marquee 36s linear infinite; will-change: transform; }
  .benefits-group, .benefits-group[aria-hidden="true"] { width: max-content; flex: 0 0 auto; display: flex; justify-content: flex-start; gap: 40px; padding: 16px 20px; }
  .benefit + .benefit { padding-left: 40px; }
  .benefits-group + .benefits-group .benefit:first-child { border-left: 1px solid #5a5a5a; padding-left: 40px; }

  .instagram-track { display: flex; overflow-x: auto; padding: 0 43px 1rem; scroll-snap-type: x mandatory; scrollbar-color: #000 #fff; scrollbar-width: thin; }
  .instagram-track::-webkit-scrollbar { height: 6px; }
  .instagram-track::-webkit-scrollbar-track { background: #fff; }
  .instagram-track::-webkit-scrollbar-thumb { border-radius: 999px; background: #000; }
  .instagram-track a { min-width: 344px; scroll-snap-align: center; }
  .instagram-track img { min-width: 0; }
}

@media (max-width: 700px) {
  .hero { height: 808px; }
  .hero::after { inset: 57px 0 0; background: linear-gradient(to bottom, rgba(0,0,0,.2), transparent 55%, rgba(0,0,0,.72)); }
  .hero-image { margin-top: 50px; height: 758px; object-position: center; }
  .topbar { height: 57px; padding: 0 16px; justify-content: flex-start; font-size: 22px; }
  .topbar img { width: 119px; height: 31px; margin-right: 0; }
  .topbar .signature { display: none; }
  .hero-copy { left: 21px; right: 16px; top: auto; bottom: 20px; width: auto; }
  .hero h1 { width: 390px; max-width: 100%; font-size: 36px; letter-spacing: .08em; }
  .button { min-height: 50px; padding: 11px 40px; }

  .collection { padding: 48px 16px; }
  .section-title { margin-bottom: 32px; }
  .section-title > span { font-size: 26px; line-height: 1.6; }
  .section-title h2 { font-size: 32px; letter-spacing: .08em; }
  .product-grid { gap: 24px; }
  .product-card { display: flex; flex-direction: column; }
  .product-card picture { height: 400px; aspect-ratio: 398 / 400; }
  .product-content { padding: 24px; gap: 20px; }
  .product-content h3 { font-size: 24px; }
  .note-list { gap: 4px; }
  .note-composite { width: 79px; height: 71px; }
  .marketplace { justify-content: space-between; width: 75%; }
  .purchase-row { flex-direction: column; align-items: stretch; gap: 16px; }
  .purchase-row .button { width: 100%; }

  .concentration { min-height: 0; display: block; padding: 0 16px 48px; background: #000; }
  .concentration-mobile-image { display: block; width: calc(100% + 32px); max-width: none; height: 300px; margin: 0 -16px 24px; object-fit: cover; object-position: 38% center; }
  .concentration-copy { width: 100%; text-align: left; }
  .concentration-copy > span { font-size: 18px; }
  .concentration h2 { font-size: 30px; margin: 12px 0 18px; }
  .concentration p { font-size: 16px; }

  .experience { height: auto; display: flex; flex-direction: column; align-items: center; gap: 37px; padding: 24px 16px 39px; }
  .experience h2 { position: static; width: 100%; font-size: 28px; line-height: 1.33; letter-spacing: -.07px; }
  .experience h2 b { display: block; font-size: 32px; line-height: 1.2; letter-spacing: -.08px; }
  .experience-media { width: 301px; max-width: 100%; height: 539px; flex: 0 0 auto; }

  .reviews { padding: 48px 16px; }
  .section-title.compact h2 { font-size: 28px; }
  .review-controls { display: none; }
  .review-track { gap: 12px; }
  .review { flex-basis: min(344px, 86vw); min-height: 0; }
  .review-heading { min-height: 93px; }

  .faq { padding: 48px 16px; }
  .faq summary { font-size: 18px; }

  .instagram { padding: 62px 0 38px; }
  .instagram h2 { padding: 0 20px; font-size: 24px; line-height: 1.3; }
  .instagram-track img { height: 462px; }

  .final-cta { padding: 48px 16px; }
  .final-cta h2 { font-size: 30px; }
  .final-cta p { font-size: 22px; line-height: 1.3; }

  .authenticity { display: flex; flex-direction: column; min-height: 978px; }
  .authenticity picture { height: 323px; }
  .auth-copy { padding: 30px 16px 12px; text-align: center; }
  .auth-copy > span { font-size: 26px; }
  .auth-copy h2 { margin: 0 0 20px; font-size: 36px; }
  .auth-copy h2 b { font-size: 48px; }
  .auth-items > div { padding: 14px 24px; width: 100%; }
  .auth-items p { margin: 0; }

  footer { min-height: 96px; padding: 20px 16px; flex-direction: column; justify-content: center; gap: 4px; text-align: center; font-size: 15px; }
}

@keyframes benefits-marquee {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) and (max-width: 1200px) {
  .benefits-track { animation: none; }
  .benefits-group[aria-hidden="true"] { display: none; }
  .benefits { overflow-x: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  html.js.scroll-reveal-ready .scroll-reveal { opacity: 1; transform: none; }
}
