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

.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"] {
  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 {
  color: rgba(251, 248, 242, 0.52);
}

.email-form input[type="email"]: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;
}

.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 {
  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 {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(20, 20, 20, 0.26);
}

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

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

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

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

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

.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-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;
  display: grid;
  grid-template-rows: auto 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: 22px;
}

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

.cart-header h2 {
  margin: 0;
  font-size: 2.4rem;
  line-height: 0.95;
}

.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 {
  padding: 8px 22px;
  overflow-y: auto;
}

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

.cart-delivery-copy {
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.5;
}

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

.cart-policy-note {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.5;
}

.cart-zip-label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-zip-input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  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: 20px;
  margin: 8px 0 16px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.35;
}

.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 16px;
  padding: 10px 12px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--ivory);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
}

.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: 16px;
  font-weight: 900;
}

.cart-checkout {
  width: 100%;
  border: 0;
}

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

.cart-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.4;
}

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

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

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

  .site-nav {
    width: 100%;
    order: 3;
    gap: 14px;
    font-size: 0.72rem;
  }

  .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 {
    font-size: 2.55rem;
  }

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

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

  .qr-primary-actions .button,
  .qr-final-actions .button {
    width: 100%;
  }

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

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

  .qr-intent-band,
  .qr-scent-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);
  }

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

  .cart-item {
    grid-template-columns: 62px minmax(0, 1fr);
  }

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

  .contact-actions,
  .hero-actions {
    width: 100%;
  }
}
