:root {
  --ink: #202723;
  --muted: #66706a;
  --green: #103c32;
  --green-deep: #092a23;
  --green-soft: #dce6e1;
  --red: #d9253f;
  --pink: #ee9fb0;
  --pink-soft: #f6e4e8;
  --champagne: #c2a47d;
  --champagne-soft: #eee8df;
  --pearl: #f7f7f4;
  --white: #ffffff;
  --line: #dfe2dd;
  --shadow: 0 22px 70px rgba(22, 31, 27, 0.12);
  --sans: "Segoe UI", Arial, sans-serif;
  --serif: Cambria, "Times New Roman", Times, serif;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--pearl);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.no-scroll {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
}

h2 {
  margin-bottom: 24px;
  font-size: 50px;
}

h3 {
  line-height: 1.25;
}

.section-shell {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #dce8e2;
}

.announcement {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 6px 24px;
  color: #f2f6f4;
  background: var(--green-deep);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.announcement a {
  color: #f2f6f4;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  min-height: 76px;
  grid-template-columns: 190px 1fr 220px;
  align-items: center;
  padding: 0 32px;
  border-bottom: 1px solid rgba(19, 45, 37, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: #303934;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.header-command {
  min-height: 40px;
  padding: 0 15px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
}

.cart-trigger {
  border-left: 1px solid var(--line);
}

.cart-count {
  display: inline-grid;
  width: 23px;
  height: 23px;
  margin-left: 5px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 11px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 21px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 110px));
  overflow: hidden;
  color: var(--white);
  background: #17201c;
}

.hero-film {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(6, 18, 14, 0.48);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(680px, 58vw);
  min-height: min(820px, calc(100vh - 110px));
  margin-left: max(6vw, 52px);
  padding: 106px 0 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  margin-bottom: 30px;
  color: var(--white);
  font-size: 78px;
  line-height: 0.98;
}

.hero h1 span {
  font-size: 0.78em;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 18px;
  color: #f8f8f4;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.38;
}

.hero-description {
  max-width: 540px;
  margin-bottom: 30px;
  color: #e1e7e3;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero .button.primary {
  color: var(--green-deep);
  background: var(--white);
}

.hero .button.primary:hover {
  color: var(--white);
  background: var(--green);
}

.hero-film-button {
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.hero-edition {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  right: 32px;
  left: 32px;
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled,
.button:disabled:hover {
  border-color: #c9cecb;
  color: #777e79;
  background: #e6e9e7;
  cursor: not-allowed;
  transform: none;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-deep);
}

.button.subtle {
  border-color: #c8cec9;
  color: var(--green);
  background: transparent;
}

.button.subtle:hover {
  border-color: var(--green);
  background: #f2f5f3;
}

.text-link,
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--green);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.text-link span,
.text-button span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-button:hover span {
  transform: translateX(4px);
}

.brand-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  padding-top: 120px;
  padding-bottom: 104px;
}

.intro-title h2 {
  max-width: 590px;
  margin: 0;
}

.intro-copy {
  max-width: 520px;
  padding-top: 24px;
  color: var(--muted);
}

.intro-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.45;
}

.brand-facts {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  margin: 12px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-facts div {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 20px;
  padding: 22px 30px;
  border-right: 1px solid var(--line);
}

.brand-facts div:last-child {
  border-right: 0;
}

.brand-facts dt {
  color: var(--red);
  font-family: var(--serif);
  font-size: 30px;
}

.brand-facts dd {
  margin: 0;
  font-size: 14px;
  font-weight: 650;
}

.campaign-showcase {
  display: grid;
  min-height: 860px;
  grid-template-columns: 0.85fr 1.18fr 0.78fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  padding: 14px;
  color: var(--white);
  background: var(--green-deep);
}

.campaign-showcase figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.campaign-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.campaign-showcase figure:hover img {
  transform: scale(1.012);
}

.campaign-showcase figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(8, 25, 20, 0.72);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.campaign-manifesto {
  display: flex;
  grid-column: 1;
  grid-row: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 54px 4vw;
}

.campaign-manifesto h2 {
  margin-bottom: 24px;
  font-size: 45px;
}

.campaign-manifesto > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: #ccd8d2;
  font-size: 14px;
}

.light-link {
  color: var(--white);
}

.campaign-still {
  grid-column: 1;
  grid-row: 2;
}

.campaign-model {
  grid-column: 2;
  grid-row: 1 / 3;
}

.campaign-model img {
  object-position: center 56%;
}

.campaign-ritual {
  grid-column: 3;
  grid-row: 1 / 3;
}

.campaign-ritual img {
  object-position: center;
}

.fragrance-story {
  display: grid;
  min-height: 720px;
  grid-template-columns: 1.42fr 0.58fr;
}

.fragrance-story .story-image {
  min-width: 0;
  overflow: hidden;
}

.story-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--white);
}

.fragrance-story .story-image img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}

.story-pair img:first-child {
  object-position: center;
}

.story-pair img:last-child {
  object-position: center;
}

.fragrance-story:hover .story-image img {
  transform: scale(1.012);
}

.story-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px 6vw;
}

.peach-story .story-copy {
  background: var(--pink-soft);
}

.spa-story {
  grid-template-columns: 0.58fr 1.42fr;
}

.spa-story .story-image {
  grid-column: 2;
  grid-row: 1;
}

.spa-story .story-copy {
  grid-column: 1;
  grid-row: 1;
  background: var(--champagne-soft);
}

.story-number {
  margin-bottom: 72px;
  color: #747b77;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.story-copy h2 {
  margin-bottom: 20px;
  font-size: 56px;
}

.story-lead {
  margin-bottom: 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.45;
}

.story-copy > p:not(.eyebrow, .story-number, .story-lead) {
  margin-bottom: 30px;
  color: #5f6762;
  font-size: 14px;
}

.ingredient-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  color: var(--white);
  background: var(--green-deep);
}

.ingredient-visual {
  min-height: 760px;
}

.ingredient-visual img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
}

.ingredient-copy {
  padding: 100px 7vw 90px;
}

.ingredient-copy h2 {
  max-width: 650px;
  margin-bottom: 28px;
}

.ingredient-lead {
  max-width: 650px;
  margin-bottom: 50px;
  color: #ced9d4;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.5;
}

.ingredient-notes {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.ingredient-notes article {
  display: grid;
  grid-template-columns: 38px 190px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.ingredient-notes span {
  color: var(--pink);
  font-family: var(--serif);
}

.ingredient-notes h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.ingredient-notes p {
  margin: 0;
  color: #b8c6c0;
  font-size: 13px;
}

.ritual-section {
  padding-top: 130px;
  padding-bottom: 125px;
}

.ritual-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}

.ritual-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -48px;
}

.ritual-heading h2 {
  max-width: 650px;
  margin: 0;
}

.ritual-heading > p:last-child {
  margin-bottom: 6px;
  color: var(--muted);
}

.ritual-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 390px 280px;
  gap: 20px;
}

.ritual-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e9e9e6;
}

.ritual-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ritual-one {
  grid-row: 1 / 3;
}

.ritual-three img {
  object-position: center 48%;
}

.ritual-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 15px 18px;
  color: var(--white);
  background: rgba(12, 32, 25, 0.78);
  font-size: 12px;
  font-weight: 600;
}

.ritual-gallery figcaption span {
  margin-right: 12px;
  color: #f6bbc6;
  font-family: var(--serif);
  font-size: 17px;
}

.care-note {
  margin: 20px 0 0;
  color: #7d837f;
  font-size: 12px;
}

.products-section {
  padding-top: 115px;
  padding-bottom: 128px;
  border-top: 1px solid var(--line);
}

.products-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.products-heading h2 {
  margin-bottom: 0;
}

.products-heading > p {
  margin-bottom: 7px;
  color: var(--muted);
}

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

.product-card {
  display: grid;
  min-width: 0;
  grid-template-columns: 0.98fr 1.02fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.product-card-media {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  background: #efefec;
}

.product-card-media > img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
}

.product-badge,
.stock-badge {
  position: absolute;
  z-index: 1;
  top: 16px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--green);
  font-size: 10px;
  font-weight: 700;
}

.product-badge {
  left: 16px;
}

.stock-badge {
  right: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.product-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 42px 34px;
}

.product-kicker {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.product-card-description {
  display: -webkit-box;
  margin-bottom: 25px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.product-price-row {
  display: flex;
  min-height: 30px;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}

.product-price-row strong {
  color: var(--green);
  font-size: 18px;
}

.product-price-row del {
  color: #8a918d;
  font-size: 12px;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.product-card-actions .button {
  min-height: 45px;
  padding-inline: 12px;
}

.trust-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  color: var(--white);
  background: #18231f;
}

.trust-copy {
  padding: 110px max(7vw, 52px);
}

.trust-copy h2 {
  max-width: 670px;
}

.trust-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: #bdc7c2;
}

.trust-copy dl {
  margin: 50px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-copy dl div {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-copy dt {
  color: #8fa198;
  font-size: 12px;
}

.trust-copy dd {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
}

.trust-documents {
  display: grid;
  align-content: center;
  padding: 80px max(6vw, 48px);
  background: var(--green);
}

.trust-documents article {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-documents article:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-documents img {
  width: 110px;
  aspect-ratio: 1;
  padding: 6px;
  background: var(--white);
}

.trust-documents span {
  color: #b9ccc3;
  font-size: 11px;
  text-transform: uppercase;
}

.trust-documents h3 {
  margin: 5px 0 10px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.trust-documents a {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.member-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding: 105px max(8vw, 56px);
  background: var(--champagne-soft);
}

.member-copy {
  max-width: 620px;
}

.member-copy p:last-child {
  max-width: 550px;
  color: #616863;
}

.member-form {
  display: grid;
  max-width: 570px;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-content: center;
}

.member-form label,
.checkout-form label {
  display: grid;
  gap: 7px;
}

.member-form label span,
.checkout-form label span {
  color: #555e59;
  font-size: 11px;
  font-weight: 700;
}

.member-form input,
.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
  min-height: 47px;
  padding: 10px 12px;
  border: 1px solid #cbd0cc;
  border-radius: 2px;
  outline: none;
  color: var(--ink);
  background: var(--white);
}

.member-form input:focus,
.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 60, 50, 0.1);
}

.member-form .button {
  grid-column: 1 / -1;
}

#memberNote {
  grid-column: 1 / -1;
  margin: 0;
  color: #777d79;
  font-size: 11px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.9fr 0.75fr;
  gap: 50px;
  padding: 80px max(6vw, 46px) 30px;
  color: #c9d3ce;
  background: var(--green-deep);
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin-bottom: 8px;
  color: #aebdb6;
  font-size: 12px;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-brand img {
  display: none;
}

.footer-brand::before {
  display: block;
  margin-bottom: 18px;
  color: var(--white);
  content: "BCOM";
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.footer-brand p {
  max-width: 330px;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin: 30px 0 0 !important;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.chat-dock {
  position: fixed;
  z-index: 45;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.chat-link {
  display: grid;
  min-width: 82px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 2px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
  color: var(--white);
  background: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.chat-link.call {
  background: var(--red);
}

.drawer,
.modal,
.account-popover {
  position: fixed;
  z-index: 100;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(12, 21, 17, 0.62);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.drawer.open,
.modal.open,
.account-popover.open {
  visibility: visible;
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(620px, 100%);
  height: 100%;
  padding: 30px;
  overflow-y: auto;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2,
.account-panel h2,
.modal-copy h2 {
  margin: 0;
  font-size: 38px;
}

.close-button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.cart-items {
  display: grid;
}

.cart-line {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 76px;
  height: 90px;
  object-fit: cover;
}

.cart-line h3 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.cart-line p {
  margin: 2px 0;
  color: var(--muted);
  font-size: 11px;
}

.qty-control {
  display: grid;
  width: 92px;
  height: 34px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border: 1px solid var(--line);
  text-align: center;
}

.qty-control button {
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.qty-control span {
  font-size: 12px;
}

.cart-empty {
  display: none;
  padding: 34px 0;
  color: var(--muted);
  text-align: center;
}

.cart-empty.show {
  display: block;
}

.cart-summary {
  margin: 24px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cart-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
}

.cart-summary .total {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 16px;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout-form textarea {
  min-height: 80px;
  resize: vertical;
}

.payment-hint,
.order-status {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.order-status.success {
  color: var(--green);
}

.order-status.warning {
  color: #9a5c1d;
}

.modal {
  display: grid;
  padding: 36px;
  place-items: center;
  overflow-y: auto;
}

.modal-panel {
  position: relative;
  display: grid;
  width: min(1120px, 100%);
  max-height: calc(100vh - 72px);
  grid-template-columns: 1.08fr 0.92fr;
  overflow: auto;
  border-radius: 4px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
}

.modal-gallery-wrap {
  padding: 24px;
  background: #efefec;
}

.modal-main-image {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.gallery-thumb {
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: var(--white);
  cursor: pointer;
}

.gallery-thumb.active {
  border-color: var(--green);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 48px;
}

.modal-copy h2 {
  margin-bottom: 20px;
}

.modal-description {
  color: var(--muted);
  font-size: 14px;
}

.modal-features {
  margin: 15px 0 24px;
  padding: 0;
  list-style: none;
}

.modal-features li {
  padding: 9px 0 9px 18px;
  border-bottom: 1px solid var(--line);
  color: #515a55;
  font-size: 12px;
}

.modal-features li::before {
  margin-left: -18px;
  padding-right: 11px;
  color: var(--red);
  content: "•";
}

.modal-pricing {
  display: flex;
  min-height: 36px;
  align-items: baseline;
  gap: 15px;
}

.modal-pricing strong {
  color: var(--green);
  font-size: 22px;
}

.modal-pricing del {
  color: var(--muted);
  font-size: 13px;
}

.variant-block {
  margin-top: 16px;
}

.variant-block > span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-size: 11px;
}

.chip.active {
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
}

.modal-stock {
  margin: 18px 0 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 24px;
}

.account-popover {
  display: grid;
  place-items: center;
  padding: 24px;
}

.account-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: 80vh;
  padding: 44px;
  overflow-y: auto;
  border-radius: 4px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.account-panel .close-button {
  position: absolute;
  top: 16px;
  right: 16px;
}

.points-line {
  color: var(--muted);
}

.points-line strong {
  color: var(--red);
  font-family: var(--serif);
  font-size: 32px;
}

.history-list {
  display: grid;
  margin-top: 24px;
}

.history-list > div {
  display: grid;
  gap: 3px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.history-list strong {
  font-size: 13px;
}

.history-list span {
  color: var(--muted);
  font-size: 11px;
}

.toast {
  position: fixed;
  z-index: 130;
  bottom: 24px;
  left: 50%;
  max-width: min(440px, calc(100% - 32px));
  padding: 13px 18px;
  border-radius: 2px;
  color: var(--white);
  background: #17231e;
  box-shadow: var(--shadow);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 160px 1fr 190px;
    padding-inline: 22px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-copy {
    width: min(620px, 62vw);
    min-height: 700px;
    margin-left: 44px;
    padding: 82px 0 100px;
  }

  .hero h1 {
    font-size: 66px;
  }

  .campaign-showcase {
    min-height: 780px;
    grid-template-columns: 0.82fr 1.18fr 0.76fr;
  }

  .campaign-manifesto {
    padding: 40px 32px;
  }

  .campaign-manifesto h2 {
    font-size: 38px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card-media,
  .product-card-media > img {
    min-height: 440px;
  }

  .product-card-body {
    padding: 32px;
  }

  .ingredient-notes article {
    grid-template-columns: 34px 1fr;
  }

  .ingredient-notes article p {
    grid-column: 2;
  }
}

@media (max-width: 920px) {
  h2 {
    font-size: 42px;
  }

  .section-shell {
    width: min(var(--container), calc(100% - 40px));
  }

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

  .menu-button {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .header-actions {
    grid-column: 3;
  }

  .header-command:first-child {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    padding: 20px 24px 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(13, 28, 22, 0.1);
  }

  .main-nav.open {
    display: flex;
  }

  .hero {
    min-height: 700px;
  }

  .hero-film {
    object-position: center;
  }

  .hero-copy {
    width: min(650px, calc(100% - 80px));
    min-height: 700px;
    margin-left: 40px;
    padding: 80px 0 104px;
  }

  .hero-copy > * {
    max-width: 660px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-edition {
    bottom: 22px;
    color: rgba(255, 255, 255, 0.78);
  }

  .brand-intro,
  .journal-heading,
  .ritual-heading,
  .products-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .brand-intro {
    padding-top: 90px;
    padding-bottom: 80px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .ritual-heading .eyebrow {
    grid-column: 1;
    margin-bottom: -16px;
  }

  .campaign-showcase {
    min-height: auto;
    grid-template-columns: 0.8fr 1.2fr;
    grid-template-rows: 420px 420px 500px;
  }

  .campaign-manifesto {
    grid-column: 1;
    grid-row: 1;
  }

  .campaign-still {
    grid-column: 1;
    grid-row: 2;
  }

  .campaign-model {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .campaign-ritual {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .campaign-ritual img {
    object-position: center 42%;
  }

  .fragrance-story,
  .spa-story {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .fragrance-story .story-image,
  .spa-story .story-image {
    grid-column: 1;
    grid-row: 1;
  }

  .fragrance-story .story-copy,
  .spa-story .story-copy {
    grid-column: 1;
    grid-row: 2;
  }

  .fragrance-story .story-image img {
    min-height: 540px;
    max-height: 620px;
  }

  .story-copy {
    min-height: 480px;
    padding: 65px 8vw;
  }

  .story-number {
    margin-bottom: 35px;
  }

  .ingredient-band,
  .trust-section,
  .member-band {
    grid-template-columns: 1fr;
  }

  .ingredient-visual,
  .ingredient-visual img {
    min-height: 580px;
    max-height: 650px;
  }

  .ingredient-copy {
    padding: 80px 7vw;
  }

  .product-card-body {
    min-height: 360px;
  }

  .member-band {
    gap: 45px;
    padding: 80px 7vw;
  }

  .member-form {
    max-width: none;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .modal-panel {
    grid-template-columns: 1fr;
  }

  .modal-gallery-wrap {
    padding: 18px;
  }

  .modal-main-image {
    max-height: 560px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  h2 {
    font-size: 36px;
  }

  .section-shell {
    width: min(var(--container), calc(100% - 32px));
  }

  .announcement {
    min-height: 32px;
    justify-content: space-between;
    gap: 12px;
    padding-inline: 12px;
    font-size: 9px;
  }

  .announcement span {
    max-width: 62%;
    line-height: 1.25;
  }

  .site-header {
    min-height: 66px;
    padding-inline: 12px;
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .main-nav {
    top: 66px;
  }

  .cart-trigger {
    padding-inline: 10px;
    font-size: 0;
  }

  .cart-count {
    margin-left: 0;
    font-size: 10px;
  }

  .hero {
    min-height: 670px;
  }

  .hero-shade {
    background: rgba(6, 18, 14, 0.58);
  }

  .hero-copy {
    width: auto;
    min-height: 670px;
    margin: 0;
    padding: 68px 20px 108px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: 49px;
  }

  .hero-lead {
    font-size: 21px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-edition {
    right: 18px;
    bottom: 18px;
    left: 18px;
    font-size: 9px;
  }

  .brand-intro {
    padding-top: 72px;
    padding-bottom: 66px;
  }

  .intro-lead {
    font-size: 20px;
  }

  .brand-facts {
    grid-template-columns: 1fr;
  }

  .brand-facts div {
    min-height: 82px;
    padding-inline: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-facts div:last-child {
    border-bottom: 0;
  }

  .campaign-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto 390px 520px 390px;
    gap: 8px;
    padding: 8px;
  }

  .campaign-manifesto {
    grid-column: 1;
    grid-row: 1;
    padding: 62px 22px;
  }

  .campaign-manifesto h2 {
    font-size: 36px;
  }

  .campaign-still {
    grid-column: 1;
    grid-row: 2;
  }

  .campaign-model {
    grid-column: 1;
    grid-row: 3;
  }

  .campaign-ritual {
    grid-column: 1;
    grid-row: 4;
  }

  .fragrance-story .story-image img {
    min-height: 430px;
    max-height: 480px;
  }

  .story-pair {
    grid-template-columns: 1fr;
  }

  .story-pair img:last-child {
    display: none;
  }

  .peach-story .story-image img {
    object-position: 40% center;
  }

  .story-copy {
    min-height: auto;
    padding: 58px 22px 66px;
  }

  .story-copy h2 {
    font-size: 45px;
  }

  .story-lead {
    font-size: 20px;
  }

  .ingredient-visual,
  .ingredient-visual img {
    min-height: 430px;
    max-height: 470px;
  }

  .ingredient-copy {
    padding: 66px 20px;
  }

  .ingredient-lead {
    font-size: 19px;
  }

  .ingredient-notes article {
    grid-template-columns: 30px 1fr;
    gap: 10px;
  }

  .ritual-section,
  .products-section {
    padding-top: 78px;
    padding-bottom: 80px;
  }

  .ritual-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 290px);
  }

  .ritual-one {
    grid-row: 1;
  }

  .products-heading {
    margin-bottom: 38px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card-media,
  .product-card-media > img {
    min-height: 410px;
  }

  .product-card-body {
    min-height: 0;
    padding: 30px 24px 34px;
  }

  .product-card-actions,
  .modal-actions,
  .form-row,
  .member-form {
    grid-template-columns: 1fr;
  }

  .trust-copy,
  .trust-documents,
  .member-band {
    padding: 66px 20px;
  }

  .trust-copy dl div {
    grid-template-columns: 120px 1fr;
  }

  .trust-documents article {
    grid-template-columns: 86px 1fr;
  }

  .trust-documents img {
    width: 86px;
  }

  .member-form .button,
  #memberNote {
    grid-column: 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 22px 26px;
  }

  .footer-bottom {
    grid-column: 1;
  }

  .chat-dock {
    position: static;
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .chat-link {
    min-width: 0;
    height: 48px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .drawer-panel {
    padding: 22px 18px;
  }

  .cart-line {
    grid-template-columns: 62px 1fr;
  }

  .cart-line img {
    width: 62px;
    height: 74px;
  }

  .qty-control {
    grid-column: 2;
  }

  .modal {
    padding: 0;
  }

  .modal-panel {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .modal-copy {
    padding: 38px 22px 45px;
  }

  .modal-copy h2,
  .drawer-header h2,
  .account-panel h2 {
    font-size: 32px;
  }

  .account-panel {
    padding: 36px 22px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
