:root {
  --ink: #15130f;
  --black: #0b0b0a;
  --cream: #f3eee4;
  --paper: #faf7f0;
  --stone: #d7cdbd;
  --gold: #b99045;
  --gold-light: #d4bd82;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

svg { width: 1.05em; fill: none; stroke: currentColor; stroke-width: 1.6; }

.announcement {
  min-height: 34px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--black);
  color: #eee4d2;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.announcement-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }

.site-header {
  height: 92px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(21, 19, 15, .12);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand { display: inline-flex; align-items: center; gap: 13px; width: fit-content; }

.brand-mark {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: .8;
}

.brand-copy { display: flex; flex-direction: column; gap: 4px; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 17px; font-weight: 400; letter-spacing: .07em; text-transform: uppercase; }
.brand-copy small { font-size: 9px; letter-spacing: .34em; text-transform: uppercase; }

.site-header nav { display: flex; gap: clamp(20px, 3vw, 44px); }
.site-header nav a { position: relative; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.site-header nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--gold); transition: right .25s ease; }
.site-header nav a:hover::after { right: 0; }

.header-cta { justify-self: end; display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }

.hero {
  min-height: calc(100vh - 126px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  background:
    radial-gradient(circle at 12% 18%, rgba(185,144,69,.10), transparent 27%),
    var(--cream);
}

.hero-copy {
  padding: clamp(76px, 9vw, 150px) clamp(32px, 7vw, 108px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow { margin: 0 0 24px; color: #8f6d2f; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; }

h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }

.hero h1 { margin: 0; max-width: 640px; font-size: clamp(64px, 7vw, 112px); line-height: .88; letter-spacing: -.055em; }
.hero h1 span { display: block; margin-top: 13px; color: var(--gold); font-style: italic; }
.hero-intro { max-width: 570px; margin: 36px 0 0; color: #615c53; font-size: 16px; line-height: 1.8; }

.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 30px; }
.button { min-height: 51px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; border: 1px solid transparent; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--black); color: #fff; }
.button-gold { background: var(--gold); color: #fff; }
.text-link { padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.text-link-gold { color: var(--gold-light); display: inline-flex; align-items: center; gap: 12px; }

.hero-facts { margin-top: 70px; padding-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(21,19,15,.16); }
.hero-facts div { display: flex; flex-direction: column; gap: 8px; }
.hero-facts strong { font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 400; }
.hero-facts span { color: #7a7469; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.hero-visual { min-height: 680px; position: relative; overflow: hidden; background: #e8dfd0; }
.hero-image-frame { position: absolute; inset: 0; }
.hero-image-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(21,19,15,.07), transparent 26%); pointer-events: none; }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-stamp { position: absolute; right: 36px; bottom: 34px; width: 126px; height: 126px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: rgba(13,12,10,.64); color: #fff; backdrop-filter: blur(10px); text-align: center; text-transform: uppercase; }
.hero-stamp span { font-size: 8px; letter-spacing: .2em; }
.hero-stamp strong { margin: 8px 0; color: var(--gold-light); font-family: Georgia, "Times New Roman", serif; font-size: 17px; font-weight: 400; letter-spacing: .04em; }

.signature-strip { min-height: 76px; padding: 18px 5vw; display: flex; align-items: center; justify-content: center; gap: clamp(22px, 4vw, 66px); background: var(--black); color: #e8dfd0; overflow: hidden; }
.signature-strip span { white-space: nowrap; font-family: Georgia, "Times New Roman", serif; font-size: 15px; letter-spacing: .1em; text-transform: uppercase; }
.signature-strip i { width: 5px; height: 5px; border: 1px solid var(--gold); transform: rotate(45deg); }

.opening-editorial { min-height: 760px; display: grid; grid-template-columns: 1fr 1fr; background: #151310; }
.editorial-image { min-height: 720px; overflow: hidden; }
.editorial-image img { width: 100%; height: 100%; object-fit: cover; }
.editorial-copy { padding: 10vw 9vw; display: flex; flex-direction: column; justify-content: center; color: #f5efe4; }
.editorial-copy h2, .collection-teaser h2 { margin: 0; font-size: clamp(48px, 5.2vw, 80px); line-height: 1.02; letter-spacing: -.035em; }
.editorial-copy > p:not(.eyebrow) { max-width: 520px; margin: 32px 0; color: #bdb3a3; line-height: 1.9; }

.collection-teaser { padding: 120px 24px; text-align: center; background: var(--paper); }
.collection-teaser h2 { font-size: clamp(46px, 6vw, 82px); }
.collection-teaser > p:not(.eyebrow) { max-width: 620px; margin: 24px auto 34px; color: #6d665d; line-height: 1.7; }

.site-footer { padding: 56px 6vw; display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 30px; background: #090908; color: #e8dfd0; }
.brand-footer .brand-copy strong { color: #fff; }
.site-footer > p { margin: 0; color: #948b7e; font-family: Georgia, "Times New Roman", serif; font-size: 14px; font-style: italic; }
.site-footer > div:last-child { display: flex; flex-direction: column; gap: 10px; text-align: right; font-size: 11px; letter-spacing: .08em; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; height: 78px; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { order: 2; }
  .hero-visual { min-height: 70vh; }
  .opening-editorial { grid-template-columns: 1fr; }
  .editorial-image { min-height: 620px; }
}

@media (max-width: 640px) {
  .announcement span:first-child { display: none; }
  .announcement-dot { display: none; }
  .site-header { padding: 0 18px; }
  .brand-copy strong { font-size: 13px; }
  .brand-copy small { font-size: 8px; }
  .brand-mark { font-size: 34px; }
  .header-cta { font-size: 9px; }
  .hero-copy { padding: 70px 22px; }
  .hero h1 { font-size: clamp(56px, 18vw, 80px); }
  .hero-intro { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-facts { margin-top: 48px; gap: 10px; }
  .hero-facts strong { font-size: 18px; }
  .hero-facts span { font-size: 7px; line-height: 1.4; }
  .hero-visual { min-height: 480px; }
  .hero-stamp { width: 106px; height: 106px; right: 18px; bottom: 18px; }
  .signature-strip { justify-content: flex-start; overflow-x: hidden; }
  .opening-editorial { min-height: auto; }
  .editorial-image { min-height: 500px; }
  .editorial-copy { padding: 88px 24px; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .site-footer > div:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

button, input, textarea { font: inherit; }
button { color: inherit; }

.brand-logo {
  width: 100px;
  height: 82px;
  overflow: visible;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

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

.cart-button,
.mobile-menu-button {
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
}

.cart-button svg { width: 18px; height: 18px; }
.cart-button span { font-size: 10px; letter-spacing: .16em; }
.cart-button b {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: white;
  font-size: 9px;
  font-weight: 400;
}

.mobile-menu-button { display: none; width: 30px; flex-direction: column; gap: 6px; }
.mobile-menu-button span { width: 25px; height: 1px; display: block; background: var(--black); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #11100e;
  color: #f4ecdf;
  transform: translateY(-102%);
  opacity: 0;
  pointer-events: none;
  transition: transform .45s cubic-bezier(.2,.75,.25,1), opacity .3s ease;
}

.mobile-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu > button { width: 40px; height: 40px; align-self: flex-end; border: 1px solid #50493d; background: transparent; color: #fff; cursor: pointer; }
.mobile-menu > button svg { width: 20px; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { padding: 13px 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(40px, 12vw, 66px); line-height: 1; }
.mobile-menu p { color: #9f927f; font-family: Georgia, "Times New Roman", serif; font-style: italic; line-height: 1.5; }

.section-heading {
  margin: 0 auto 54px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading h2,
.finder h2,
.campaign-feature h2,
.partner h2,
.contact-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5.5vw, 82px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.045em;
}

.section-heading > p {
  max-width: 330px;
  margin: 0 0 8px;
  color: #777064;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.finder {
  padding: 130px clamp(24px, 6vw, 96px);
  background:
    radial-gradient(circle at 75% 20%, rgba(185,144,69,.15), transparent 30%),
    #11100e;
  color: #f7f0e4;
}

.section-heading-light > p { color: #928777; }
.finder-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid #403a31; border-bottom: 1px solid #403a31; }
.finder-option {
  min-height: 300px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border: 0;
  border-right: 1px solid #403a31;
  background: transparent;
  color: #f7f0e4;
  cursor: pointer;
  text-align: left;
  overflow: hidden;
}
.finder-option:last-child { border-right: 0; }
.finder-option::before {
  content: "";
  position: absolute;
  inset: auto -30% -55% -30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185,144,69,.35), transparent 68%);
  transform: scale(.55);
  opacity: 0;
  transition: transform .45s ease, opacity .35s ease;
}
.finder-option:hover::before { transform: scale(1); opacity: 1; }
.finder-option > span { position: absolute; top: 26px; left: 24px; color: #756a5b; font-family: Georgia, "Times New Roman", serif; font-size: 14px; }
.finder-option strong { position: relative; font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 2.5vw, 42px); font-weight: 400; }
.finder-option small { position: relative; margin-top: 10px; color: #968b7c; font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.finder-option svg { position: absolute; top: 25px; right: 20px; color: var(--gold-light); }

.collection {
  padding: 130px clamp(22px, 5vw, 82px);
  background: #f8f4ec;
  scroll-margin-top: 86px;
}

.collection-tools {
  margin-bottom: 42px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid #d8cfc0;
}

.filter-pills { display: flex; flex-wrap: wrap; gap: 5px; }
.filter-pills button {
  padding: 16px 15px 14px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #716a60;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
}
.filter-pills button.active { border-bottom-color: var(--gold); color: var(--black); }

.scent-search { min-width: 220px; padding-bottom: 11px; display: flex; flex-direction: column; gap: 5px; }
.scent-search span { color: #9b9286; font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.scent-search input { width: 100%; padding: 3px 0; border: 0; outline: 0; background: transparent; color: var(--black); font-family: Georgia, "Times New Roman", serif; font-size: 16px; }
.scent-search input::placeholder { color: #a69d90; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.product-card { min-width: 0; border: 1px solid #ddd3c5; background: #fffdf8; transition: transform .28s ease, box-shadow .28s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 22px 48px rgba(35,28,18,.10); }
.product-card-visual { height: 310px; position: relative; overflow: hidden; background: #171411; }
.product-card-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,9,8,.05), rgba(10,9,8,.52)); }
.product-card-visual.tone-fris::after { background: linear-gradient(180deg, rgba(122,152,151,.08), rgba(8,13,14,.55)); }
.product-card-visual.tone-warm::after { background: linear-gradient(180deg, rgba(188,119,47,.08), rgba(26,13,5,.58)); }
.product-card-visual.tone-bloemig::after { background: linear-gradient(180deg, rgba(137,73,91,.06), rgba(19,10,15,.56)); }
.product-card-visual.tone-fruitig::after { background: linear-gradient(180deg, rgba(159,95,36,.07), rgba(24,12,5,.56)); }
.product-card-visual img { width: 170%; height: 170%; position: absolute; left: -35%; top: -35%; object-fit: cover; filter: saturate(.85) contrast(1.05); transition: transform .6s ease; }
.product-card:hover .product-card-visual img { transform: scale(1.035); }
.product-number, .product-family { position: absolute; z-index: 2; color: #f4ead9; text-transform: uppercase; }
.product-number { top: 20px; left: 20px; font-family: Georgia, "Times New Roman", serif; font-size: 14px; letter-spacing: .08em; }
.product-family { right: 18px; bottom: 18px; font-size: 8px; letter-spacing: .16em; }
.product-card-content { padding: 25px 22px 22px; }
.product-card-content > p:first-child { margin: 0 0 8px; color: #9b7740; font-size: 8px; letter-spacing: .2em; text-transform: uppercase; }
.product-card h3 { min-height: 58px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 400; line-height: 1.1; }
.product-meta { margin-top: 17px; display: flex; align-items: center; gap: 8px; color: #746d62; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.product-meta i { width: 3px; height: 3px; border-radius: 50%; background: #c5b699; }
.product-meta strong { margin-left: auto; color: #1a1814; font-size: 12px; font-weight: 500; }
.product-description { min-height: 68px; margin: 18px 0; color: #746e65; font-size: 12px; line-height: 1.65; }
.note-list { display: flex; flex-wrap: wrap; gap: 5px; }
.note-list span { padding: 7px 8px; border: 1px solid #e4dccf; color: #6f675c; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.add-button {
  width: 100%;
  margin-top: 20px;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid #d9cdbb;
  background: transparent;
  color: #17140f;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}
.add-button span { color: #947239; }
.show-all { margin: 54px auto 0; padding: 18px 26px; display: flex; align-items: center; gap: 18px; border: 1px solid #a99572; background: transparent; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; cursor: pointer; }
.no-results { padding: 80px 20px; text-align: center; }
.no-results h3 { font-family: Georgia, "Times New Roman", serif; font-size: 32px; font-weight: 400; }
.no-results button { border: 0; border-bottom: 1px solid; background: transparent; cursor: pointer; }

.campaign-feature { min-height: 820px; display: grid; grid-template-columns: .9fr 1.1fr; background: #171411; color: #f3ebde; }
.campaign-copy { padding: clamp(70px, 9vw, 150px); display: flex; flex-direction: column; justify-content: center; }
.campaign-copy h2 { max-width: 590px; }
.campaign-values { margin: 50px 0 38px; border-top: 1px solid #433c32; }
.campaign-values div { padding: 20px 0; display: grid; grid-template-columns: 54px 1fr; border-bottom: 1px solid #433c32; }
.campaign-values strong { color: #8f7d65; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.campaign-values span { font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.button-outline { width: fit-content; border-color: #a9977c; color: #eee4d5; }
.campaign-image { min-height: 720px; overflow: hidden; }
.campaign-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }

.partner { padding: 130px clamp(22px, 6vw, 96px); display: grid; grid-template-columns: minmax(360px, .82fr) minmax(520px, 1.18fr); gap: clamp(48px, 7vw, 120px); background: #efe8dd; }
.partner-visual { min-height: 0; position: relative; overflow: hidden; align-self: start; aspect-ratio: 1 / 1; background: #17130f; }
.partner-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.partner-visual span { position: absolute; left: 24px; bottom: 22px; padding: 10px 13px; background: rgba(12,10,8,.84); color: #e5d0a7; font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }
.partner-content { padding: 20px 0; }
.partner-lead { max-width: 680px; margin: 28px 0 36px; color: #6f675d; line-height: 1.8; }
.partner-details { margin-bottom: 38px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.partner-details > div { padding: 20px 0; display: flex; flex-direction: column; gap: 6px; border-top: 1px solid #c9bca9; }
.partner-details small { margin-bottom: 5px; color: #9a7a45; font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }
.partner-details a { width: fit-content; font-size: 13px; line-height: 1.65; }

.hours-card { border: 1px solid #cbbda9; background: rgba(255,252,246,.58); }
.hours-top { padding: 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid #d4c8b7; }
.hours-top h3 { margin: 0 0 7px; font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 400; }
.sync-status { display: inline-flex; align-items: center; gap: 6px; color: #8b8277; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.sync-status i { width: 6px; height: 6px; border-radius: 50%; background: #a89c89; }
.sync-status.is-live i { background: #63876d; box-shadow: 0 0 0 3px rgba(99,135,109,.14); }
.week-toggle { padding: 3px; display: flex; background: #ded3c3; }
.week-toggle button { padding: 9px 12px; border: 0; background: transparent; font-size: 8px; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; }
.week-toggle button.active { background: #171411; color: white; }
.hours-list { padding: 8px 20px 16px; }
.hours-list > div { padding: 9px 0; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(190,178,160,.42); font-size: 12px; }
.hours-list > div:last-child { border-bottom: 0; }
.hours-list > div.today { color: #9b7432; }
.hours-list strong { font-weight: 500; }
.partner-actions { margin-top: 28px; display: flex; align-items: center; gap: 26px; }

.contact-section { padding: 130px clamp(24px, 8vw, 130px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(70px, 10vw, 170px); background: #f8f4ec; }
.contact-intro > p:not(.eyebrow) { max-width: 550px; margin: 28px 0; color: #716a5f; line-height: 1.8; }
.contact-intro > div { display: flex; flex-direction: column; gap: 9px; font-family: Georgia, "Times New Roman", serif; font-size: 17px; }
.contact-form { display: flex; flex-direction: column; }
.contact-form label { padding: 14px 0; display: flex; flex-direction: column; gap: 10px; border-bottom: 1px solid #cabda9; color: #9a7944; font-size: 8px; letter-spacing: .17em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { padding: 2px 0 10px; border: 0; outline: 0; resize: vertical; background: transparent; color: #181510; font-family: Georgia, "Times New Roman", serif; font-size: 19px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #aaa094; }
.contact-form .button { align-self: flex-start; margin-top: 28px; }

.site-footer {
  padding: 70px clamp(24px, 6vw, 96px) 30px;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: start;
  color: #d8cdbc;
}
.footer-brand img { width: 132px; height: 132px; object-fit: contain; filter: brightness(0) invert(1); opacity: .88; }
.footer-brand p { margin: 20px 0 0; color: #8f8578; font-family: Georgia, "Times New Roman", serif; font-style: italic; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links strong { margin-bottom: 7px; color: #ba9656; font-size: 9px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; }
.footer-links a { width: fit-content; color: #aaa093; font-size: 11px; }
.footer-bottom { padding-top: 28px; grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid #2f2b25; color: #6f685f; font-size: 8px; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }

.drawer-backdrop { position: fixed; inset: 0; z-index: 80; background: rgba(8,7,6,.56); opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  width: min(480px, 100vw);
  height: 100dvh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  background: #f8f3ea;
  transform: translateX(102%);
  transition: transform .4s cubic-bezier(.2,.75,.25,1);
}
.cart-drawer.is-open { transform: translateX(0); }
.drawer-header { padding: 27px 26px 22px; display: flex; justify-content: space-between; border-bottom: 1px solid #d9cebd; }
.drawer-header p { margin: 0 0 6px; color: #9a7740; font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }
.drawer-header h2 { margin: 0; font-size: 32px; }
.drawer-header button { width: 40px; height: 40px; border: 1px solid #c8bba7; background: transparent; cursor: pointer; }
.drawer-header button svg { width: 18px; }
.drawer-items { padding: 0 26px; flex: 1; overflow-y: auto; }
.drawer-item { padding: 22px 0; display: grid; grid-template-columns: 54px 1fr auto; gap: 15px; border-bottom: 1px solid #ddd2c1; }
.drawer-item-number { width: 54px; height: 70px; display: grid; place-items: center; background: #171411; color: #c5a66a; font-family: Georgia, "Times New Roman", serif; }
.drawer-item small { color: #9b7a45; font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.drawer-item h3 { margin: 4px 0 5px; font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 400; }
.drawer-item > div:nth-child(2) > span { color: #8b8277; font-size: 9px; }
.drawer-item > strong { font-size: 12px; font-weight: 500; }
.quantity { width: fit-content; margin-top: 12px; display: flex; align-items: center; border: 1px solid #cabda8; }
.quantity button { width: 28px; height: 28px; border: 0; background: transparent; cursor: pointer; }
.quantity strong { width: 28px; text-align: center; font-size: 10px; }
.drawer-checkout { padding: 24px 26px; border-top: 1px solid #d8ccba; background: #f2ebdf; }
.drawer-checkout > div { display: flex; justify-content: space-between; font-family: Georgia, "Times New Roman", serif; font-size: 24px; }
.drawer-checkout > div strong { font-weight: 400; }
.drawer-checkout p { color: #857c70; font-size: 9px; line-height: 1.6; }
.drawer-checkout .button { width: 100%; margin-top: 12px; }
.empty-cart { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.empty-cart > span { width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid #cdbfa9; border-radius: 50%; }
.empty-cart svg { width: 24px; }
.empty-cart h3 { margin: 22px 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 26px; font-weight: 400; }
.empty-cart p { color: #837b70; font-size: 11px; }
.empty-cart button { margin-top: 14px; padding: 7px 0; border: 0; border-bottom: 1px solid; background: transparent; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; cursor: pointer; }

@media (max-width: 1260px) {
  .site-header { grid-template-columns: 190px 1fr auto; }
  .site-header nav { gap: 22px; }
  .site-header nav a { font-size: 9px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .finder-option { min-height: 260px; }
}

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .mobile-menu-button { display: inline-flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 68vw; }
  .hero-copy { order: 2; }
  .finder-grid { grid-template-columns: repeat(2, 1fr); }
  .finder-option { min-height: 220px; border-bottom: 1px solid #403a31; }
  .finder-option:nth-child(2n) { border-right: 0; }
  .finder-option:last-child { grid-column: 1 / -1; }
  .campaign-feature { grid-template-columns: 1fr; }
  .campaign-image { min-height: 720px; order: -1; }
  .partner { grid-template-columns: 1fr; }
  .partner-visual { width: min(680px, 100%); min-height: auto; }
}

@media (max-width: 820px) {
  .section-heading { align-items: start; flex-direction: column; }
  .collection-tools { align-items: stretch; flex-direction: column; border-bottom: 0; }
  .filter-pills { border-bottom: 1px solid #d8cfc0; overflow-x: auto; flex-wrap: nowrap; }
  .filter-pills button { white-space: nowrap; }
  .scent-search { min-width: 0; padding: 12px; border: 1px solid #d8cfc0; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-section { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 20px; }
}

@media (max-width: 600px) {
  .site-header { height: 72px; padding: 0 16px; }
  .brand-logo { width: 74px; height: 64px; }
  .header-actions { gap: 10px; }
  .cart-button span { display: none; }
  .hero-visual { min-height: 110vw; }
  .hero-image-frame img { object-position: 56% center; }
  .hero-copy { padding: 66px 22px 58px; }
  .hero h1 { font-size: clamp(54px, 17vw, 76px); }
  .hero-facts { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .signature-strip { min-height: 58px; gap: 24px; }
  .signature-strip span { font-size: 11px; }
  .opening-editorial { grid-template-columns: 1fr; }
  .editorial-image { min-height: 122vw; }
  .editorial-copy { padding: 76px 22px; }
  .finder, .collection, .partner, .contact-section { padding: 84px 18px; }
  .finder .section-heading { margin-bottom: 34px; }
  .finder-grid { grid-template-columns: 1fr; }
  .finder-option, .finder-option:last-child { min-height: 160px; grid-column: auto; border-right: 0; }
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card-visual { height: 108vw; max-height: 430px; }
  .product-card h3 { min-height: 0; font-size: 29px; }
  .product-description { min-height: 0; font-size: 13px; }
  .add-button { min-height: 48px; align-items: center; }
  .campaign-copy { padding: 78px 22px; }
  .campaign-image { min-height: 145vw; }
  .partner { gap: 42px; }
  .partner-visual { width: 100%; aspect-ratio: 1 / 1; }
  .partner-details { grid-template-columns: 1fr; }
  .hours-top { align-items: stretch; flex-direction: column; }
  .week-toggle { width: 100%; }
  .week-toggle button { flex: 1; }
  .partner-actions { align-items: flex-start; flex-direction: column; }
  .contact-section { gap: 56px; }
  .contact-form .button { width: 100%; }
  .site-footer { padding: 58px 22px 28px; grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .cart-drawer { width: 100vw; }
}

/* WordPress and WooCommerce integration */
[hidden] { display: none !important; }
.admin-bar .site-header { top: 32px; }
.custom-logo-link { width: 100%; height: 100%; display: block; }
.custom-logo-link img { width: 100%; height: 100%; object-fit: contain; }
.primary-menu { margin: 0; padding: 0; display: flex; gap: clamp(20px, 3vw, 44px); list-style: none; }
.primary-menu li { margin: 0; }
.product-card-more.is-collapsed { display: none; }
.add-button.is-disabled { opacity: .5; cursor: default; }
.woocommerce a.button.added::after { margin-left: auto; }
.woocommerce-message,
.woocommerce-info,
.woocommerce-error { margin: 0 0 28px; padding: 18px 20px 18px 48px; border-top-color: var(--gold); background: #fffdf8; }
.woocommerce-message::before,
.woocommerce-info::before { color: var(--gold); }
.content-shell { min-height: 62vh; padding: 110px clamp(22px, 7vw, 110px); background: #f8f4ec; }
.editorial-content,
.woocommerce-shell > .woocommerce { width: min(1240px, 100%); margin: 0 auto; }
.editorial-content h1,
.woocommerce-products-header__title,
.product_title,
.woocommerce-cart-form + .cart-collaterals h2,
.woocommerce-checkout h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.editorial-content h1,
.woocommerce-products-header__title { margin: 0 0 34px; font-size: clamp(48px, 6vw, 82px); line-height: 1; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product { width: auto; margin: 0; padding: 0 0 24px; border: 1px solid #ddd3c5; background: #fffdf8; }
.woocommerce ul.products li.product a img { margin: 0 0 22px; aspect-ratio: 1 / 1; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button { margin-left: 20px; margin-right: 20px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: Georgia, "Times New Roman", serif; font-size: 23px; font-weight: 400; }
.woocommerce ul.products li.product .price { color: #8f6d2f; }
.woocommerce ul.products li.product .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit { border-radius: 0; background: var(--black); color: #fff; font-size: 10px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; }
.woocommerce div.product div.images img { background: #eee7db; }
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: #8f6d2f; }
.woocommerce table.shop_table { border-radius: 0; border-color: #d6cbb9; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce .quantity .qty { min-height: 44px; border: 1px solid #cfc2ae; background: #fffdf8; }
.woocommerce-checkout #payment { border-radius: 0; background: #ece4d7; }

@media (max-width: 1080px) {
  .primary-menu { display: none; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .content-shell { padding: 76px 18px; }
  .woocommerce ul.products { grid-template-columns: 1fr; }
}
