:root {
  --black: #141414;
  --charcoal: #3f2a20;
  --ink-soft: #55362a;
  --white: #fbf8f2;
  --ivory: #efe3d1;
  --cream: #e8dcc8;
  --champagne: #c7a57a;
  --gold: #b88a3b;
  --form-gold: #c9a876;
  --warm-black: #0a0908;
  --amber: #c98b2b;
  --pale-gold: #f4dfb8;
  --line: rgba(20, 20, 20, 0.13);
  --shadow: 0 22px 70px rgba(63, 42, 32, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

  .button:hover,
  .size-link:hover,
  .qr-primary-actions .button:hover,
  .qr-primary-actions .button:focus-visible,
  .hero-actions .button:hover,
  .hero-actions .button:focus-visible {
    transform: none !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--black);
  background: linear-gradient(180deg, #fbf8f2 0%, #efe3d1 100%);
  font-family: var(--sans);
  overflow-x: hidden;
}

button {
  font: inherit;
}

button:not(:disabled) {
  cursor: pointer;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 30;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  border-radius: 6px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px 18px;
  color: var(--white);
  background: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.announcement span:first-child {
  font-family: var(--sans);
  font-size: inherit;
  font-weight: 800;
  letter-spacing: inherit;
  text-transform: uppercase;
}

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

.announcement a:hover {
  color: var(--gold);
}

.announcement span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 12px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav,
.hero-actions,
.size-links,
.contact-actions,
.section-kicker {
  display: flex;
  align-items: center;
}

.brand {
  gap: 8px;
  font-family: var(--sans);
  line-height: 1;
}

.brand-wordmark {
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: 0.34em;
}

.brand-subtitle {
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  transform: translateY(1px);
}

.site-nav {
  gap: clamp(14px, 3vw, 34px);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cart-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: var(--white);
  border: 1px solid var(--black);
  border-radius: 4px;
  background: var(--black);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-toggle span {
  min-width: 22px;
  min-height: 22px;
  display: inline-grid;
  place-items: center;
  color: var(--black);
  background: var(--pale-gold);
  border-radius: 999px;
  font-size: 0.72rem;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  min-height: calc(100svh - 102px);
  padding: clamp(38px, 7vw, 84px) clamp(18px, 5vw, 64px) clamp(30px, 6vw, 64px);
  background:
    linear-gradient(180deg, rgba(251, 248, 242, 0.97), rgba(239, 227, 209, 0.94)),
    radial-gradient(circle at 94% 12%, rgba(201, 139, 43, 0.18), transparent 28%);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 8.4vw, 7.8rem);
  line-height: 0.9;
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.story-copy p,
.ritual-grid p,
.product-description {
  color: var(--ink-soft);
  line-height: 1.7;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions,
.size-links {
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.button,
.size-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button {
  padding: 0 20px;
}

.button:hover,
.size-link:hover {
  transform: translateY(-2px);
}

.button-dark {
  color: var(--white);
  background: var(--black);
  box-shadow: 0 14px 28px rgba(17, 16, 14, 0.18);
}

.button-light,
.button-outline {
  color: var(--black);
  border: 1px solid var(--black);
  background: transparent;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual img {
  width: 100%;
  min-height: 420px;
  max-height: 660px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.hero-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 12px;
  color: var(--black);
  background: rgba(251, 248, 242, 0.84);
  border: 1px solid rgba(17, 16, 14, 0.12);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 64px);
}

.email-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.9fr);
  gap: clamp(20px, 5vw, 62px);
  align-items: center;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background: var(--warm-black);
}

.email-copy h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Playfair Display", var(--serif);
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.email-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(251, 248, 242, 0.72);
  font-family: "EB Garamond", var(--serif);
  font-size: 1.28rem;
}

.email-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.email-form input[type="email"],
.email-form input[type="text"] {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--white);
  border: 1px solid rgba(201, 168, 118, 0.58);
  border-radius: 4px;
  outline: none;
  background: rgba(251, 248, 242, 0.06);
  font: 600 1rem var(--sans);
}

.email-form input[type="email"]::placeholder,
.email-form input[type="text"]::placeholder {
  color: rgba(251, 248, 242, 0.52);
}

.email-form input[type="email"]:focus,
.email-form input[type="text"]:focus {
  border-color: var(--form-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.18);
}

.email-form button {
  min-height: 54px;
  padding: 0 24px;
  color: var(--warm-black);
  border: 1px solid var(--form-gold);
  border-radius: 4px;
  background: var(--form-gold);
  font: 900 0.82rem var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.email-form button:disabled {
  cursor: wait;
  opacity: 0.74;
}

.form-honeypot {
  display: none;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: rgba(251, 248, 242, 0.7);
  font-size: 0.86rem;
}

.email-form > input[type="email"] {
  grid-column: 1;
  grid-row: 1;
}

.email-form > button {
  grid-column: 2;
  grid-row: 1;
}

.marketing-consent {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  margin: 2px 0 0;
  color: rgba(251, 248, 242, 0.76);
  font: 600 0.72rem/1.45 var(--sans);
  letter-spacing: 0;
  text-transform: none;
}

.marketing-consent a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.marketing-consent input[type="checkbox"],
.offer-form .marketing-consent input[type="checkbox"] {
  appearance: auto;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 3px;
  background: transparent;
  accent-color: var(--gold);
}

.offer-form .marketing-consent {
  color: rgba(63, 42, 32, 0.76);
}

.offer-form.is-success .form-status {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 12px 14px;
  color: #141414;
  border: 1px solid rgba(184, 138, 59, 0.42);
  border-radius: 4px;
  background: rgba(201, 168, 118, 0.28);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-align: center;
}

.qr-page {
  background: #fbf8f2;
}

.qr-shop-link {
  justify-content: center;
}

.qr-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  min-height: calc(100svh - 78px);
  padding: clamp(42px, 7vw, 90px) clamp(18px, 5vw, 64px) clamp(36px, 6vw, 76px);
  background:
    linear-gradient(180deg, rgba(251, 248, 242, 0.98), rgba(232, 220, 200, 0.9)),
    linear-gradient(115deg, rgba(201, 139, 43, 0.16), rgba(20, 20, 20, 0.02));
}

.qr-hero-copy {
  max-width: 620px;
}

.qr-hero h1 {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(4.2rem, 11vw, 8.8rem);
  line-height: 0.84;
}

.qr-hero-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-family: "EB Garamond", var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.12;
}

.qr-primary-actions,
.qr-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.qr-primary-actions .button,
.hero-actions .button {
  min-height: 76px;
  padding: 12px 24px;
  border-width: 2px;
  box-shadow: 0 18px 34px rgba(20, 20, 20, 0.2);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.qr-primary-actions .button:hover,
.qr-primary-actions .button:focus-visible,
.hero-actions .button:hover,
.hero-actions .button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(20, 20, 20, 0.26);
}

.qr-primary-actions .button-dark,
.hero-actions .button-dark {
  background: linear-gradient(135deg, var(--black), #3f2a20);
}

.qr-primary-actions .button-light,
.hero-actions .button-light {
  border-color: #a87525;
  background: var(--form-gold);
}

.qr-primary-actions .button-outline,
.hero-actions .button-outline {
  color: var(--white);
  border-color: var(--black);
  background: var(--black);
}

.qr-action-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 230px;
  text-align: center;
  line-height: 1.08;
}

.qr-action-button span {
  font-size: 0.94rem;
  line-height: 1;
}

.qr-action-button small {
  max-width: none;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.18;
  opacity: 0.78;
  text-transform: none;
  white-space: nowrap;
}

.qr-hero-visual {
  margin: 0;
}

.qr-hero-visual img {
  width: 100%;
  min-height: 360px;
  max-height: 680px;
  object-fit: cover;
  object-position: center 54%;
  border: 1px solid rgba(20, 20, 20, 0.1);
  box-shadow: var(--shadow);
}

.qr-hero-visual figcaption {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.qr-intent-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: var(--warm-black);
}

.qr-intent-band article {
  min-height: 220px;
  padding: clamp(24px, 4vw, 44px);
  color: var(--white);
  border-right: 1px solid rgba(251, 248, 242, 0.16);
}

.qr-intent-band article:last-child {
  border-right: 0;
}

.qr-intent-band span {
  display: block;
  margin-bottom: 34px;
  color: var(--form-gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.qr-intent-band h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.94;
}

.qr-intent-band p {
  max-width: 320px;
  margin: 0;
  color: rgba(251, 248, 242, 0.72);
  line-height: 1.6;
}

.qr-feature {
  padding: clamp(56px, 9vw, 112px) clamp(18px, 5vw, 64px);
  background: var(--white);
}

.qr-feature h2 {
  max-width: 850px;
  margin-bottom: 34px;
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  line-height: 0.95;
}

.qr-scent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.qr-scent {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #f7efe4;
}

.qr-scent img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--cream);
}

.qr-scent span {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.qr-scent small {
  min-height: 40px;
  color: var(--ink-soft);
  font-weight: 800;
  line-height: 1.45;
}

.qr-email-section .email-copy p:not(.eyebrow) {
  max-width: 560px;
}

.qr-final-actions {
  justify-content: center;
  padding: 34px clamp(18px, 5vw, 64px);
  background: #fbf8f2;
}

.offer-options-page {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 10%, rgba(201, 168, 118, 0.16), transparent 28%),
    linear-gradient(135deg, #0a0908 0%, #14100d 52%, #3f2a20 100%);
}

.offer-options {
  padding: clamp(30px, 6vw, 76px) clamp(16px, 5vw, 64px) clamp(48px, 7vw, 86px);
}

.offer-options-hero {
  max-width: 760px;
  margin-bottom: clamp(26px, 5vw, 54px);
}

.offer-options-hero h1 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(3.4rem, 9vw, 7.4rem);
  line-height: 0.86;
}

.offer-options-hero p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(251, 248, 242, 0.72);
  font-family: "EB Garamond", var(--serif);
  font-size: 1.36rem;
}

.offer-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.offer-preview {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 640px;
  border: 1px solid rgba(201, 168, 118, 0.24);
  background: rgba(251, 248, 242, 0.045);
}

.offer-preview-label {
  padding: 18px;
  border-bottom: 1px solid rgba(201, 168, 118, 0.2);
}

.offer-preview-label span {
  display: block;
  margin-bottom: 8px;
  color: var(--form-gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-preview-label h2 {
  margin: 0;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 0.95;
}

.offer-stage {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 20px;
  background:
    linear-gradient(rgba(10, 9, 8, 0.5), rgba(10, 9, 8, 0.78)),
    url("assets/intai-honeyed-obsidian.png") center / cover;
}

.offer-stage-phone {
  align-items: end;
  max-width: 390px;
  width: 100%;
  margin: 0 auto;
  border-inline: 10px solid #0a0908;
  border-radius: 28px;
  overflow: hidden;
}

.offer-modal {
  position: relative;
  width: min(100%, 430px);
  color: var(--white);
  border: 1px solid rgba(201, 168, 118, 0.36);
  background: rgba(10, 9, 8, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.offer-modal-center {
  padding: clamp(24px, 4vw, 36px);
}

.offer-modal-sheet {
  width: 100%;
  padding: 18px 18px 22px;
  border-radius: 18px 18px 0 0;
  border-inline: 0;
  border-bottom: 0;
}

.offer-modal-split {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  width: min(100%, 620px);
}

.offer-modal-split figure {
  min-height: 100%;
  margin: 0;
  background: #141414;
}

.offer-modal-split img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.offer-modal-split > div {
  position: relative;
  padding: 28px;
}

.offer-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  border: 1px solid rgba(251, 248, 242, 0.22);
  border-radius: 50%;
  background: rgba(251, 248, 242, 0.06);
  font: 900 0.86rem var(--sans);
  cursor: default;
}

.offer-modal h3 {
  max-width: 390px;
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(2.45rem, 5vw, 4rem);
  line-height: 0.9;
}

.offer-modal p:not(.eyebrow) {
  margin: 0 0 20px;
  color: rgba(251, 248, 242, 0.72);
  font-family: "EB Garamond", var(--serif);
  font-size: 1.22rem;
  line-height: 1.16;
}

.offer-form {
  display: grid;
  gap: 10px;
}

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

.offer-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--white);
  border: 1px solid rgba(201, 168, 118, 0.52);
  border-radius: 4px;
  outline: 0;
  background: rgba(251, 248, 242, 0.07);
  font: 700 0.94rem var(--sans);
}

.offer-form input::placeholder {
  color: rgba(251, 248, 242, 0.54);
}

.offer-form button {
  min-height: 52px;
  color: var(--warm-black);
  border: 1px solid var(--form-gold);
  border-radius: 4px;
  background: var(--form-gold);
  font: 900 0.78rem var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-modal small {
  display: block;
  margin-top: 14px;
  color: rgba(251, 248, 242, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.offer-handle {
  display: block;
  width: 44px;
  height: 4px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(251, 248, 242, 0.34);
}

.qr-offer-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}

.qr-offer-overlay[hidden] {
  display: none;
}

.qr-offer-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(201, 168, 118, 0.22), transparent 30%),
    rgba(239, 227, 209, 0.38);
  backdrop-filter: blur(7px);
}

.qr-offer-modal {
  z-index: 1;
  width: min(100%, 470px);
  color: #3f2a20;
  border-color: rgba(201, 168, 118, 0.55);
  background:
    linear-gradient(145deg, rgba(251, 248, 242, 0.98), rgba(239, 227, 209, 0.96));
  box-shadow: 0 28px 80px rgba(63, 42, 32, 0.24);
  animation: offerRise 260ms ease both;
  max-height: calc(100svh - 36px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.qr-offer-modal h2 {
  max-width: 390px;
  margin: 0 0 10px;
  color: #141414;
  font-size: clamp(2.65rem, 8vw, 4.4rem);
  line-height: 0.88;
}

.qr-offer-modal .eyebrow {
  color: #9b6f2f;
}

.qr-offer-modal p:not(.eyebrow) {
  color: rgba(63, 42, 32, 0.78);
}

.qr-offer-modal .offer-close {
  color: #3f2a20;
  border-color: rgba(63, 42, 32, 0.2);
  background: rgba(255, 255, 255, 0.5);
}

.qr-offer-modal .offer-form input {
  color: #141414;
  border-color: rgba(184, 138, 59, 0.48);
  background: rgba(255, 255, 255, 0.72);
}

.qr-offer-modal .offer-form input::placeholder {
  color: rgba(63, 42, 32, 0.48);
}

.qr-offer-modal .offer-modal small,
.qr-offer-modal small {
  color: rgba(63, 42, 32, 0.6);
}

body.qr-offer-open {
  overflow: hidden;
}

@keyframes offerRise {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.shop-section {
  background: var(--white);
}

.section-kicker {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.section-kicker a {
  border-bottom: 1px solid currentColor;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading h2,
.story-section h2,
.ritual-section h2,
.contact-section h2 {
  margin-bottom: 14px;
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  line-height: 0.95;
}

.section-heading p {
  max-width: 640px;
  font-size: 1.02rem;
}

.delivery-note {
  margin-top: 10px;
  color: var(--black);
  font-weight: 800;
}

.mobile-shop-hint {
  display: none;
}

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

.shop-slider-controls {
  display: none;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(13, 12, 10, 0.1);
  border-radius: 6px;
  background: #fbf8f2;
  box-shadow: 0 10px 28px rgba(42, 31, 16, 0.07);
}

.product-image {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(201, 139, 43, 0.28), transparent 24%),
    linear-gradient(135deg, var(--cream), var(--white));
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) brightness(1.12) contrast(0.96);
}

.product-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  width: fit-content;
  padding: 7px 10px;
  color: var(--black);
  background: var(--pale-gold);
  border: 1px solid rgba(184, 138, 59, 0.34);
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(13, 12, 10, 0.1);
  font-size: 0.84rem;
  font-weight: 900;
}

.product-number {
  position: absolute;
  left: 18px;
  top: 18px;
  color: rgba(251, 248, 242, 0.78);
  text-shadow: 0 1px 18px rgba(17, 16, 14, 0.32);
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.product-body {
  padding: 22px;
}

.product-body > h3:first-child {
  margin-top: 28px;
}

.product-card h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.product-tag {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scent-notes {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-description {
  min-height: 86px;
  margin-bottom: 22px;
}

.size-links {
  align-items: stretch;
}

.size-link {
  flex: 1 1 132px;
  min-height: 62px;
  flex-direction: column;
  gap: 3px;
  padding: 9px 12px;
  color: var(--black);
  border: 1px solid var(--black);
  background: var(--white);
  font-size: 0.9rem;
  text-align: center;
}

.size-link span {
  font-weight: 900;
}

.size-link small {
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 700;
}

.inventory-note {
  color: #4f3528;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.inventory-note-low {
  color: #9a4b18;
}

.size-link[data-ready="true"]:first-child {
  background: var(--pale-gold);
}

.size-link[data-ready="false"] {
  cursor: not-allowed;
  color: rgba(17, 16, 14, 0.48);
  border-color: rgba(17, 16, 14, 0.18);
  background: #e8dcc8;
  transform: none;
}

.size-link[data-ready="false"]::after {
  content: "Link coming soon";
  color: rgba(17, 16, 14, 0.5);
  font-size: 0.68rem;
  font-weight: 800;
}

.ritual-section {
  background: var(--black);
  color: var(--white);
}

.ritual-section .eyebrow {
  color: var(--pale-gold);
}

.ritual-section h2 {
  max-width: 960px;
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 253, 248, 0.2);
}

.ritual-grid article {
  padding: clamp(22px, 4vw, 34px);
  background: var(--black);
}

.ritual-grid span {
  color: var(--pale-gold);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
}

.ritual-grid h3 {
  margin: 18px 0 8px;
  font-size: 1.1rem;
}

.ritual-grid p {
  color: rgba(255, 253, 248, 0.74);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 78px);
  background: var(--ivory);
}

.story-copy {
  max-width: 680px;
  font-size: 1.06rem;
}

.events-teaser {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(184, 138, 59, 0.28);
  border-bottom: 1px solid rgba(184, 138, 59, 0.28);
  background:
    radial-gradient(circle at 94% 8%, rgba(201, 139, 43, 0.2), transparent 30%),
    linear-gradient(120deg, var(--ivory), var(--white));
}

.events-teaser::after {
  position: absolute;
  z-index: -1;
  right: clamp(-130px, -8vw, -70px);
  bottom: clamp(-190px, -12vw, -100px);
  width: clamp(280px, 34vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(184, 138, 59, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(184, 138, 59, 0.035);
  content: "";
  pointer-events: none;
}

.events-teaser-copy,
.events-teaser-action {
  position: relative;
  z-index: 1;
}

.events-teaser-copy {
  max-width: 780px;
}

.events-teaser h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 5.7vw, 5.25rem);
  line-height: 0.94;
}

.events-teaser-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.65;
}

.events-teaser-action {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: 6px;
  background: rgba(251, 248, 242, 0.82);
  box-shadow: 0 20px 52px rgba(63, 42, 32, 0.12);
}

.events-teaser-action .event-status {
  display: inline-flex;
  margin-bottom: 22px;
}

.events-teaser-action .button {
  min-width: 190px;
}

.events-teaser-action .events-note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.55;
}

.events-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 18%, rgba(201, 139, 43, 0.24), transparent 28%),
    linear-gradient(135deg, var(--charcoal) 0%, var(--black) 64%, var(--warm-black) 100%);
}

.events-section::before {
  position: absolute;
  z-index: -1;
  right: clamp(-180px, -10vw, -80px);
  bottom: clamp(-240px, -16vw, -120px);
  width: clamp(320px, 42vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(244, 223, 184, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(244, 223, 184, 0.035),
    0 0 0 108px rgba(244, 223, 184, 0.025);
  content: "";
  pointer-events: none;
}

.events-copy,
.events-card {
  position: relative;
  z-index: 1;
}

.events-copy {
  max-width: 760px;
}

.events-section .eyebrow {
  color: var(--pale-gold);
}

.events-section h1,
.events-section h2 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.9rem, 6vw, 5.8rem);
  line-height: 0.92;
}

.events-lede {
  max-width: 650px;
  color: rgba(251, 248, 242, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.events-format-note {
  max-width: 620px;
  margin-top: 24px;
  padding-left: 16px;
  color: rgba(251, 248, 242, 0.62);
  border-left: 1px solid rgba(244, 223, 184, 0.48);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.6;
}

.events-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 38px 0 0;
  padding: 1px;
  list-style: none;
  background: rgba(244, 223, 184, 0.2);
}

.events-steps li {
  min-width: 0;
  padding: 20px;
  background: rgba(10, 9, 8, 0.72);
}

.events-steps span {
  display: block;
  margin-bottom: 16px;
  color: var(--pale-gold);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}

.events-steps strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.events-steps small {
  display: block;
  color: rgba(251, 248, 242, 0.68);
  font-size: 0.78rem;
  line-height: 1.55;
}

.events-card {
  padding: clamp(28px, 4vw, 48px);
  color: var(--black);
  border: 1px solid rgba(244, 223, 184, 0.56);
  border-radius: 6px;
  background: linear-gradient(145deg, #fbf8f2, #efe3d1);
  box-shadow: 0 28px 70px rgba(10, 9, 8, 0.34);
}

.events-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.events-card-header .eyebrow {
  margin: 0;
  color: var(--gold);
}

.event-status {
  margin: 0;
  padding: 8px 11px;
  color: var(--black);
  border: 1px solid rgba(184, 138, 59, 0.4);
  border-radius: 999px;
  background: var(--pale-gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.events-card h2,
.events-card h3 {
  max-width: 520px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  line-height: 0.98;
}

.events-card > p:not(.event-status) {
  max-width: 520px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.events-card .button {
  margin-top: 16px;
}

.events-card .events-note {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(20, 20, 20, 0.14);
  font-size: 0.76rem;
  font-weight: 700;
}

.events-page {
  background: var(--ivory);
}

.events-page-hero {
  min-height: calc(100svh - 86px);
}

.event-path-section {
  color: var(--black);
  background: var(--ivory);
}

.event-path-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  margin-bottom: 42px;
}

.event-path-heading h2,
.event-inquiry-section h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5.7vw, 5.25rem);
  line-height: 0.94;
}

.event-path-heading > p:not(.eyebrow) {
  max-width: 610px;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.7;
}

.event-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: rgba(20, 20, 20, 0.18);
}

.event-path-grid li {
  min-width: 0;
  padding: clamp(24px, 4vw, 40px);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(201, 139, 43, 0.2), transparent 34%),
    var(--black);
}

.event-path-grid span {
  color: var(--pale-gold);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
}

.event-path-grid h3 {
  margin: 42px 0 10px;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.event-path-grid p {
  color: rgba(251, 248, 242, 0.7);
  line-height: 1.65;
}

.event-inquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: var(--white);
}

.event-inquiry-copy {
  max-width: 620px;
}

.event-inquiry-copy > p:first-child {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.7;
}

.event-inquiry-copy .events-note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--white);
}

.contact-section h2 {
  max-width: 850px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  background: var(--ivory);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a,
.cart-policy-note a,
.policy-content a {
  border-bottom: 1px solid currentColor;
}

.header-shop-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.policy-page {
  background: var(--white);
}

.policy-hero {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 64px) clamp(34px, 6vw, 72px);
  background: var(--ivory);
}

.policy-hero h1 {
  max-width: 920px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
}

.policy-hero p:not(.eyebrow) {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.policy-updated {
  margin-top: 14px;
  font-size: 0.9rem !important;
  font-weight: 800;
}

.policy-choice-button {
  width: fit-content;
  margin-top: 10px;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(180px, 250px) minmax(0, 820px);
  gap: clamp(30px, 7vw, 96px);
  align-items: start;
  padding: clamp(42px, 7vw, 82px) clamp(18px, 5vw, 64px);
}

.policy-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 11px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-sidebar a {
  width: fit-content;
  border-bottom: 1px solid transparent;
}

.policy-sidebar a:hover,
.policy-sidebar a:focus-visible {
  border-bottom-color: currentColor;
}

.policy-content {
  display: grid;
  gap: 36px;
}

.policy-block {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.policy-block h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.policy-block p,
.policy-block li {
  color: var(--ink-soft);
  line-height: 1.75;
}

.policy-block p {
  margin: 0;
}

.policy-block p + p {
  margin-top: 14px;
}

.policy-block ul {
  margin: 0;
  padding-left: 20px;
}

.policy-block li + li {
  margin-top: 8px;
}

.cart-is-open {
  overflow: hidden;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  visibility: hidden;
  background: rgba(10, 9, 8, 0.44);
  opacity: 0;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.cart-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: min(100vw, 430px);
  height: 100svh;
  max-height: 100dvh;
  display: grid;
  grid-template-rows: auto minmax(240px, 1fr) auto;
  color: var(--black);
  background: var(--white);
  box-shadow: -24px 0 60px rgba(13, 12, 10, 0.18);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

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

.cart-header,
.cart-footer {
  padding: 12px 18px;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  margin: 0;
}

.cart-brand-title {
  width: fit-content;
}

.cart-close {
  align-self: flex-start;
  min-height: 38px;
  padding: 0 12px;
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: 4px;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-items {
  min-height: 0;
  padding: 8px 22px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.cart-empty {
  margin: 24px 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 72px;
  height: 86px;
  border-radius: 4px;
  object-fit: cover;
  background: var(--cream);
}

.cart-item h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
}

.cart-item p {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.cart-item strong {
  font-size: 0.88rem;
}

.cart-item-actions {
  display: inline-grid;
  grid-template-columns: 34px 34px 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.cart-item-actions button,
.cart-item-actions span {
  min-height: 34px;
  display: grid;
  place-items: center;
}

.cart-item-actions button {
  border: 0;
  background: var(--ivory);
  font-weight: 900;
}

.cart-item-actions span {
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
}

.cart-footer {
  border-top: 1px solid var(--line);
  max-height: 22svh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.cart-delivery-copy {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 0.64rem;
  line-height: 1.2;
}

.cart-delivery-copy strong {
  color: var(--black);
}

.cart-policy-note {
  display: none;
}

.cart-zip-label {
  display: none;
  margin-bottom: 0;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-zip-input {
  width: 100%;
  min-height: 31px;
  padding: 0 10px;
  color: var(--black);
  border: 1px solid rgba(20, 20, 20, 0.22);
  border-radius: 4px;
  outline: none;
  background: var(--white);
  font: 800 1rem var(--sans);
}

.cart-zip-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 138, 59, 0.16);
}

.cart-zip-help {
  min-height: 10px;
  margin: 2px 0 4px;
  color: var(--ink-soft);
  font-size: 0.66rem;
  line-height: 1.2;
}

.cart-zip-help.is-eligible {
  color: #2f6f45;
  font-weight: 800;
}

.cart-zip-help.is-standard {
  color: var(--ink-soft);
}

.cart-free-shipping {
  margin: 0 0 4px;
  padding: 4px 7px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--ivory);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.2;
}

.cart-free-shipping.is-qualified {
  color: var(--black);
  border-color: rgba(184, 138, 59, 0.45);
  background: var(--pale-gold);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 5px;
  font-weight: 900;
}

.cart-checkout {
  width: 100%;
  min-height: 38px;
  border: 0;
}

.cart-checkout:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.cart-status {
  min-height: 10px;
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.2;
}

.cart-toast {
  position: fixed;
  right: clamp(16px, 4vw, 34px);
  bottom: clamp(18px, 4vw, 34px);
  z-index: 60;
  max-width: min(360px, calc(100vw - 32px));
  padding: 14px 16px;
  color: var(--white);
  border: 1px solid rgba(251, 248, 242, 0.14);
  border-radius: 6px;
  background: rgba(10, 9, 8, 0.94);
  box-shadow: 0 18px 42px rgba(10, 9, 8, 0.28);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cart-toast[data-tone="warning"] {
  color: var(--black);
  border-color: rgba(154, 75, 24, 0.26);
  background: var(--pale-gold);
}

.inventory-admin-page {
  min-height: 100svh;
  background: var(--white);
}

.inventory-admin {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(10px, 2vw, 22px);
}

.inventory-admin-header,
.inventory-pin-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  margin-bottom: 16px;
}

.inventory-admin-header h1 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1;
}

.inventory-admin-header p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.inventory-pin-panel {
  position: sticky;
  top: 0;
  z-index: 5;
  grid-template-columns: auto minmax(160px, 220px) auto minmax(180px, 1fr);
  align-items: center;
  justify-content: flex-start;
  padding: 12px;
  border: 1px solid var(--line);
  background: #f7efe4;
  box-shadow: 0 10px 24px rgba(42, 31, 16, 0.08);
}

.inventory-pin-panel label {
  font-weight: 900;
}

.inventory-pin-panel input {
  min-height: 44px;
  width: min(220px, 100%);
  padding: 0 12px;
  border: 1px solid rgba(20, 20, 20, 0.22);
  border-radius: 4px;
  background: var(--white);
}

.inventory-pin-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.inventory-pin-panel p[data-tone="success"] {
  color: #2f6f45;
}

.inventory-pin-panel p[data-tone="error"] {
  color: #9a3412;
}

.inventory-grid {
  display: grid;
  gap: 10px;
}

.inventory-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf8f2;
  box-shadow: 0 8px 20px rgba(42, 31, 16, 0.05);
}

.inventory-card img {
  width: 44px !important;
  max-width: 44px !important;
  height: 44px !important;
  max-height: 44px !important;
  object-fit: cover;
  border-radius: 4px;
  background: var(--cream);
}

.inventory-card h2 {
  margin-bottom: 6px;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1;
}

.inventory-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 64px minmax(260px, 1.45fr) minmax(138px, 0.7fr);
  gap: 8px;
  align-items: stretch;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.inventory-row-meta strong,
.inventory-row-meta span,
.inventory-count-box b {
  display: block;
}

.inventory-row-meta {
  display: grid;
  align-content: center;
  min-height: 46px;
}

.inventory-row-meta strong {
  margin-bottom: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.inventory-row-meta span {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.inventory-count-box {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 6px;
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: 6px;
  background: var(--white);
}

.inventory-count-box small {
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inventory-count-box b {
  font-size: 1.35rem;
  line-height: 1;
  text-align: center;
}

.inventory-controls,
.inventory-set-form {
  display: grid;
  gap: 8px;
}

.inventory-controls {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.inventory-set-form {
  grid-template-columns: minmax(0, 1fr) 58px;
}

.inventory-controls button,
.inventory-set-form button {
  min-height: 46px;
  padding: 0 10px;
  border: 1px solid var(--black);
  border-radius: 6px;
  background: transparent;
  font-size: 1.05rem;
  font-weight: 900;
  touch-action: manipulation;
}

.inventory-controls .inventory-add {
  color: var(--black);
  border-color: rgba(184, 138, 59, 0.55);
  background: var(--pale-gold);
}

.inventory-controls .inventory-remove {
  color: var(--white);
  border-color: #5f3420;
  background: #5f3420;
}

.inventory-set-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(20, 20, 20, 0.22);
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 800;
}

.inventory-set-form button {
  color: var(--white);
  background: var(--black);
}

/* Compact, site-wide privacy controls. */

.privacy-consent-banner[hidden] {
  display: none;
}

.privacy-consent-banner {
  position: fixed;
  z-index: 100;
  right: 10px;
  bottom: 10px;
  display: grid;
  gap: 7px;
  width: min(350px, calc(100vw - 20px));
  max-height: calc(100svh - 20px);
  padding: 9px;
  overflow-y: auto;
  color: var(--black);
  border: 1px solid rgba(28, 25, 22, 0.2);
  border-radius: 6px;
  background: var(--ivory);
  box-shadow: 0 16px 44px rgba(10, 9, 8, 0.28);
}

.privacy-consent-copy {
  max-width: none;
}

.privacy-consent-copy .eyebrow {
  display: none;
}

.privacy-consent-copy h2 {
  margin: 0 0 3px;
  color: var(--black);
  font-size: 1rem;
  line-height: 1;
}

.privacy-consent-copy p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.64rem;
  line-height: 1.3;
}

.privacy-consent-copy a {
  color: var(--black);
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.privacy-consent-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  min-width: 0;
}

.privacy-consent-actions .button {
  width: 100%;
  min-width: 0;
  min-height: 34px;
  padding: 6px;
  font-size: 0.56rem;
  line-height: 1.15;
  white-space: normal;
}

.privacy-manage-button {
  position: fixed;
  z-index: 99;
  right: 6px;
  bottom: 6px;
  min-height: 24px;
  padding: 3px 6px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: var(--charcoal);
  box-shadow: 0 5px 14px rgba(10, 9, 8, 0.16);
  font: inherit;
  font-size: 0.46rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.privacy-manage-button[aria-expanded="true"] {
  visibility: hidden;
}

.privacy-manage-button::before {
  position: absolute;
  inset: -10px;
  content: "";
}

.privacy-manage-button:hover,
.privacy-manage-button:focus-visible {
  color: var(--black);
  border-color: var(--pale-gold);
  background: var(--pale-gold);
}

.privacy-manage-button:focus-visible,
.privacy-consent-banner button:focus-visible,
.privacy-consent-banner a:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero,
  .email-section,
  .product-grid,
  .story-section,
  .ritual-grid,
  .events-section,
  .events-teaser,
  .event-path-heading,
  .event-inquiry-section {
    grid-template-columns: 1fr;
  }

  .site-header {
    gap: 18px;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.72rem;
  }

  .events-card {
    max-width: 720px;
  }

  .events-teaser-action,
  .event-inquiry-copy {
    max-width: 720px;
  }

  .hero {
    min-height: auto;
  }

  .product-description {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 72px;
  }

  .announcement {
    gap: 8px;
    padding: 8px 12px;
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }

  .announcement span:first-child {
    font-size: inherit;
  }

  .announcement span + span::before {
    width: 3px;
    height: 3px;
    margin-right: 8px;
  }

  .privacy-consent-banner {
    right: 8px;
    bottom: 8px;
    width: calc(100vw - 16px);
    max-height: calc(100svh - 16px);
    gap: 6px;
    padding: 8px;
  }

  .privacy-consent-copy h2 {
    margin-bottom: 2px;
    font-size: 0.94rem;
  }

  .privacy-consent-copy p:last-child {
    font-size: 0.6rem;
    line-height: 1.25;
  }

  .privacy-consent-actions .button {
    min-height: 32px;
    padding: 5px;
    font-size: 0.53rem;
  }

  .privacy-manage-button {
    right: 5px;
    bottom: 5px;
    min-height: 22px;
    padding: 3px 5px;
    font-size: 0.43rem;
  }

  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 20px;
  }

  .site-nav {
    width: 100%;
    order: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px 12px;
    padding-bottom: 0;
    overflow: visible;
    white-space: normal;
    font-size: 0.68rem;
    text-align: center;
  }

  .cart-toggle {
    margin-left: auto;
    padding-inline: 11px;
    font-size: 0.68rem;
  }

  .brand {
    gap: 6px;
    white-space: nowrap;
  }

  .brand-wordmark {
    font-size: 1.08rem;
    letter-spacing: 0.26em;
  }

  .brand-subtitle {
    font-size: 0.56rem;
    letter-spacing: 0.18em;
  }

  .hero {
    gap: 22px;
    padding-top: 30px;
    padding-bottom: 28px;
  }

  h1 {
    max-width: 340px;
    font-size: 3.22rem;
    line-height: 0.92;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 9px;
    margin-top: 24px;
  }

  .hero-visual {
    margin-inline: -18px;
  }

  .hero-visual img {
    min-height: 270px;
    max-height: 320px;
    border-radius: 0;
  }

  .hero-visual figcaption {
    left: 18px;
    right: auto;
  }

  .section-kicker,
  .email-section,
  .contact-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .policy-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .policy-hero h1 {
    font-size: 2.8rem;
  }

  .section-heading h2,
  .story-section h2,
  .ritual-section h2,
  .contact-section h2,
  .events-section h1,
  .events-section h2,
  .events-teaser h2,
  .event-path-heading h2,
  .event-inquiry-section h2 {
    font-size: 2.55rem;
  }

  .events-teaser {
    gap: 26px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .events-teaser-action {
    width: 100%;
    padding: 24px;
  }

  .events-teaser-action .button,
  .event-inquiry-copy .button {
    width: 100%;
  }

  .events-section {
    gap: 32px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .events-steps {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .events-steps li {
    padding: 18px;
  }

  .events-steps span {
    margin-bottom: 10px;
  }

  .events-card {
    width: 100%;
    padding: 24px;
  }

  .events-card-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 22px;
  }

  .events-card .button {
    width: 100%;
  }

  .events-page-hero {
    min-height: auto;
  }

  .event-path-heading {
    gap: 22px;
    margin-bottom: 28px;
  }

  .event-path-grid {
    grid-template-columns: 1fr;
  }

  .event-path-grid h3 {
    margin-top: 24px;
  }

  .event-inquiry-section {
    gap: 24px;
  }

  .shop-section {
    overflow: hidden;
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .email-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .email-form {
    grid-template-columns: 1fr;
  }

  .email-form button {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }

  .qr-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 36px;
  }

  .qr-hero h1 {
    font-size: 4.7rem;
  }

  .qr-hero-visual img {
    min-height: 300px;
    max-height: 420px;
  }

  .hero-actions,
  .qr-primary-actions,
  .qr-final-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .button,
  .qr-primary-actions .button,
  .qr-final-actions .button {
    width: 100%;
    max-width: 100%;
    padding-right: 14px;
    padding-left: 14px;
    text-align: center;
    white-space: normal;
  }

  .qr-action-button {
    min-width: 0;
  }

  .qr-action-button small {
    white-space: normal;
  }

  .qr-intent-band,
  .qr-scent-grid {
    grid-template-columns: 1fr;
  }

  .offer-preview-grid {
    grid-template-columns: 1fr;
  }

  .offer-preview {
    min-height: auto;
  }

  .offer-stage {
    min-height: 560px;
  }

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

  .offer-modal-split figure {
    display: none;
  }

  .offer-name-grid {
    grid-template-columns: 1fr;
  }

  .qr-intent-band article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(251, 248, 242, 0.16);
  }

  .qr-intent-band article:last-child {
    border-bottom: 0;
  }

  .qr-intent-band span {
    margin-bottom: 18px;
  }

  .qr-feature h2 {
    font-size: 2.55rem;
  }

  .shop-section .section-heading {
    margin-bottom: 16px;
  }

  .shop-section .section-heading p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .mobile-shop-hint {
    display: block;
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .product-grid {
    display: flex;
    gap: 16px;
    margin-inline: -20px;
    padding: 0 20px 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 min(86vw, 340px);
    scroll-snap-align: center;
  }

  .shop-slider-controls {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    margin: 0 0 14px;
  }

  .slider-button {
    min-height: 42px;
    padding: 0 14px;
    color: var(--white);
    background: var(--black);
    border: 1px solid var(--black);
    border-radius: 4px;
    font: inherit;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .slider-button:disabled {
    cursor: not-allowed;
    color: rgba(20, 20, 20, 0.42);
    background: var(--cream);
    border-color: rgba(20, 20, 20, 0.14);
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
  }

  .slider-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid var(--gold);
    border-radius: 999px;
    background: transparent;
  }

  .slider-dot.is-active {
    width: 28px;
    background: var(--gold);
  }

  .product-image {
    min-height: 0;
    height: 176px;
  }

  .product-card h3 {
    margin-bottom: 6px;
    font-size: 1.9rem;
  }

  .product-body {
    padding: 16px;
  }

  .product-body > h3:first-child {
    margin-top: 22px;
  }

  .product-tag,
  .scent-notes {
    margin-bottom: 8px;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .product-description {
    margin-bottom: 14px;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .size-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .size-link {
    min-height: 58px;
    padding: 8px 6px;
    font-size: 0.82rem;
  }

  .size-link small {
    font-size: 0.66rem;
    line-height: 1.15;
  }

  .size-link[data-ready="false"]::after {
    font-size: 0.58rem;
    line-height: 1.1;
  }

  .button {
    width: 100%;
  }

  .cart-drawer {
    width: min(100vw, 390px);
    grid-template-rows: auto minmax(285px, 1fr) auto;
  }

  .inventory-admin-header,
  .inventory-pin-panel {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .inventory-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }

  .inventory-card img {
    width: 40px !important;
    max-width: 40px !important;
    height: 40px !important;
    max-height: 40px !important;
  }

  .inventory-card h2 {
    margin-top: -50px;
    margin-left: 50px;
    min-height: 40px;
    display: grid;
    align-items: center;
  }

  .inventory-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 0;
  }

  .inventory-row-meta,
  .inventory-count-box {
    min-height: auto;
  }

  .inventory-count-box {
    grid-template-columns: auto 1fr;
    justify-items: start;
    column-gap: 10px;
  }

  .inventory-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inventory-controls button,
  .inventory-set-form button,
  .inventory-set-form input {
    min-height: 50px;
  }

  .cart-header,
  .cart-footer,
  .cart-items {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cart-header,
  .cart-footer {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .cart-item {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
  }

  .cart-item img {
    width: 54px;
    height: 66px;
  }

  .cart-item h3 {
    font-size: 1.2rem;
  }

  .cart-item p {
    margin-bottom: 8px;
    font-size: 0.76rem;
  }

  .cart-item strong {
    grid-column: 2;
  }

  .cart-footer {
    max-height: 22svh;
  }

  .cart-delivery-copy {
    margin-bottom: 4px;
    font-size: 0.64rem;
  }

  .cart-free-shipping,
  .cart-total {
    margin-bottom: 6px;
  }

  .cart-policy-note {
    display: none;
  }

  .contact-actions,
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .contact-actions .button,
  .hero-actions .button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-right: 14px;
    padding-left: 14px;
    text-align: center;
    white-space: normal;
  }
}
