/** Shopify CDN: Minification failed

Line 1810:0 Unexpected "}"

**/
/* CONCEPT_V4_SHOP — Round 9 Visual System Lock */

:root {
  --ivory: #f6f2ec;
  --cream: #faf8f5;
  --ink: #1a1614;
  --taupe: #8a7a72;
  --taupe-deep: #7a6b5e;
  --charcoal: #2a2420;
  --stone: #d4c8bc;
  --kraft: #c9b896;
  --line: rgba(26, 22, 20, 0.08);
  --line-strong: rgba(26, 22, 20, 0.14);

  --font-house: 'Cormorant Garamond', Georgia, serif;
  --font-concierge: 'Outfit', system-ui, sans-serif;

  --page-pad: clamp(1.25rem, 4vw, 3rem);
  --max: 1200px;
  --header-z: 100;
  --fab-z: 90;
  --cart-z: 110;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --tracking-caps: 0.1em;
  --section-pad: clamp(3.5rem, 9vh, 5.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-concierge);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

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

/* Typography */
.t-house { font-family: var(--font-house); font-weight: 400; line-height: 1.1; }
.t-headline {
  font-family: var(--font-house);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.t-whisper { font-size: 0.9375rem; color: var(--taupe-deep); line-height: 1.65; }
.t-machine {
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--taupe);
}
.hosted-line { font-size: 0.8125rem; color: var(--taupe); margin-top: 0.35rem; }

.mark-hybrid .mark-so { font-family: var(--font-house); font-weight: 500; }
.mark-hybrid .mark-shoppy { font-family: var(--font-concierge); font-weight: 300; }

/* Announcement */
.announcement {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 0.5rem var(--page-pad);
}

.announcement p {
  margin: 0;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--taupe-deep);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--header-z);
  background: rgba(246, 242, 236, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.875rem var(--page-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.site-header__nav--left {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header__nav a:hover { color: var(--taupe); }

.site-header__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  justify-self: center;
}

.site-header__monogram {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-house);
  font-style: italic;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
}

.site-header__wordmark {
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.site-header__utils {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.icon-btn {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  transition: background 0.25s;
}

.icon-btn:hover { background: rgba(26, 22, 20, 0.05); }

.icon-btn--bag { position: relative; }

.site-header__count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 0.9rem;
  height: 0.9rem;
  padding: 0 3px;
  font-size: 0.5625rem;
  font-weight: 500;
  background: var(--ink);
  color: var(--ivory);
  border-radius: 999px;
  display: none;
  place-items: center;
}

.site-header__count.is-visible { display: grid; }

.site-header__menu {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.site-header__menu span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.site-header__menu[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.site-header__menu[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.site-header__drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  background: var(--ivory);
  padding: 0.5rem var(--page-pad) 1rem;
}

.site-header__drawer.is-open { display: flex; }

.site-header__drawer a {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header__drawer-account {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

/* Sections */
.shop-section { padding: var(--section-pad) var(--page-pad); }

.shop-section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.shop-section__head { margin-bottom: clamp(2rem, 4vh, 3rem); max-width: 520px; }
.shop-section__head--center {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.shop-section__head .t-headline { margin: 0.5rem 0 0.75rem; }
.shop-section__head--center .t-whisper { margin: 0 auto; max-width: 42ch; }

/* Hero — editorial full-bleed (homepage) */
.shop-hero--editorial {
  position: relative;
  min-height: min(88vh, 900px);
  padding: 0;
  display: block;
  color: var(--ink);
}

.shop-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.shop-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.shop-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(246, 242, 236, calc(0.94 - var(--hero-overlay, 0.25))) 0%,
    rgba(246, 242, 236, calc(0.72 - var(--hero-overlay, 0.25) * 0.5)) 42%,
    rgba(246, 242, 236, calc(0.15 + var(--hero-overlay, 0.25) * 0.2)) 100%
  );
}

.shop-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 14vh, 8rem) var(--page-pad) clamp(3rem, 8vh, 5rem);
  min-height: min(88vh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}

.shop-hero__copy {
  max-width: 36rem;
}

.shop-hero__eyebrow {
  margin: 0 0 0.75rem;
  letter-spacing: 0.14em;
}

.shop-hero--editorial .shop-hero__title {
  font-family: var(--font-house);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}

.shop-hero__sub {
  margin: 1.25rem 0 0;
  max-width: 34ch;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.55;
  color: rgba(26, 22, 20, 0.78);
}

.shop-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.shop-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.shop-hero__cta--outline {
  background: rgba(246, 242, 236, 0.55);
  color: var(--ink);
  border: 1px solid rgba(26, 22, 20, 0.35);
  backdrop-filter: blur(6px);
}

.shop-hero__cta--outline:hover {
  background: rgba(246, 242, 236, 0.85);
  border-color: var(--ink);
}

/* Hero — legacy product grid (unused on homepage after editorial switch) */
.shop-hero {
  padding: clamp(1.5rem, 4vh, 2.5rem) var(--page-pad);
  min-height: min(90vh, 820px);
  display: flex;
  align-items: center;
}

.shop-hero__img--mobile { display: none; }
.shop-hero__img--desktop { display: block; }

.shop-hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.shop-hero__media {
  aspect-ratio: 4/5;
  background: var(--stone);
  border-radius: 2px;
  overflow: hidden;
}

.shop-hero__media img,
.shop-hero__media video { width: 100%; height: 100%; object-fit: cover; }

.shop-hero__video { display: block; }

.shop-hero__title {
  font-family: var(--font-house);
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.05;
  margin: 0.35rem 0 0.5rem;
}

.shop-hero__lede { margin: 0 0 0.35rem; max-width: 36ch; }
.shop-hero__price { font-weight: 500; font-size: 1.125rem; margin: 0.5rem 0 0; }

.shop-hero__buy {
  display: block;
  width: 100%;
  max-width: 280px;
  margin-top: 1.25rem;
  text-align: center;
}

.shop-hero__concern { margin: 0.85rem 0 0; font-size: 0.8125rem; }
.shop-hero__concern a {
  color: var(--taupe-deep);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.shop-hero__details { margin: 0.65rem 0 0; font-size: 0.8125rem; }
.shop-hero__details a {
  color: var(--taupe-deep);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.shop-hero__brand {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  max-width: 32ch;
}

.btn-primary {
  padding: 0.9375rem 1.75rem;
  background: var(--ink);
  color: var(--ivory);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.3s;
}

.btn-primary:hover { opacity: 0.88; }

.btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn-primary:disabled:hover { opacity: 0.45; }

/* Trust bar */
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  padding: 1.25rem var(--page-pad);
}

.trust-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.trust-bar__icon { color: var(--taupe-deep); }

.trust-bar__label {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--taupe-deep);
}

/* Concern cards V2 — collection cards */
.shop-section--concerns { background: var(--ivory); }

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.collection-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.collection-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26, 22, 20, 0.08);
}

.collection-card__media {
  aspect-ratio: 4/5;
  background: var(--stone);
  overflow: hidden;
}

.collection-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.collection-card:hover .collection-card__media img { transform: scale(1.04); }

.collection-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
  text-align: center;
}

.collection-card__title {
  font-family: var(--font-house);
  font-size: 1.375rem;
  font-weight: 400;
  margin: 0 0 0.35rem;
}

.collection-card__link {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe-deep);
}

.collection-card__reveal {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid transparent;
  transition: max-height 0.4s var(--ease), opacity 0.4s, margin 0.4s, padding 0.4s;
}

.collection-card:hover .collection-card__reveal,
.collection-card:focus-within .collection-card__reveal {
  max-height: 100px;
  opacity: 1;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top-color: var(--line);
}

.collection-card__reveal-label {
  margin: 0 0 0.2rem;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe);
}

.collection-card__reveal-name {
  margin: 0;
  font-family: var(--font-house);
  font-size: 1rem;
}

.collection-card__reveal-price {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
}

.collection-card--soon { opacity: 0.72; }
.collection-card--soon:hover { transform: none; box-shadow: none; }

/* Rituals */
.shop-section--rituals { background: rgba(212, 200, 188, 0.22); }

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.ritual-card {
  background: var(--ivory);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease);
}

.ritual-card:hover { transform: translateY(-2px); }

.ritual-card__img { aspect-ratio: 4/3; background: var(--stone); overflow: hidden; }
.ritual-card__img img { width: 100%; height: 100%; object-fit: cover; }
.ritual-card__body { padding: 1.25rem; }

.ritual-card__title {
  font-family: var(--font-house);
  font-size: 1.125rem;
  margin: 0 0 0.35rem;
}

.ritual-card__meta { font-size: 0.75rem; color: var(--taupe); margin: 0 0 0.5rem; }

.ritual-card__link {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--cream);
}

.product-card--featured { border-color: var(--line-strong); }

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--ivory);
  border-radius: 2px;
}

.product-card__media {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--stone);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body { padding: 1.25rem; }

.product-card__name {
  font-family: var(--font-house);
  font-size: 1.125rem;
  margin: 0 0 0.35rem;
}

.product-card__price { font-weight: 500; margin: 0 0 0.5rem; }

.product-card__btn {
  margin-top: 0.75rem;
  width: 100%;
  padding: 0.75rem;
  background: var(--ink);
  color: var(--ivory);
  border-radius: 2px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card--placeholder { opacity: 0.45; pointer-events: none; }

.product-card--placeholder .product-card__media {
  display: grid;
  place-items: center;
  font-size: 0.8125rem;
  color: var(--taupe);
  text-align: center;
  padding: 1rem;
}

/* Hosted brands */
.shop-section--brands { background: var(--cream); }

/* Complete the ritual (homepage upsell) */
.shop-section--bundle { background: rgba(212, 200, 188, 0.15); }

.bundle-together {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .bundle-together {
    grid-template-columns: 1fr min(280px, 32%);
    gap: 2.5rem;
  }
}

.bundle-together__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.bundle-together__item {
  flex: 1 1 7.5rem;
  max-width: 10rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--cream);
  overflow: hidden;
}

.bundle-together__item--primary {
  border-color: var(--line-strong);
  max-width: 11rem;
}

.bundle-together__item--soon {
  opacity: 0.55;
}

.bundle-together__plus {
  font-family: var(--font-house);
  font-size: 1.25rem;
  color: var(--taupe);
  line-height: 1;
}

.bundle-together__media {
  aspect-ratio: 1;
  background: var(--stone);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.bundle-together__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.35rem;
}

.bundle-together__placeholder {
  font-size: 0.75rem;
  color: var(--taupe);
  text-align: center;
  padding: 0.5rem;
}

.bundle-together__body {
  padding: 0.75rem 0.85rem 1rem;
  text-align: center;
}

.bundle-together__label {
  margin: 0 0 0.25rem;
}

.bundle-together__name {
  font-family: var(--font-house);
  font-size: 0.9375rem;
  font-weight: 400;
  margin: 0 0 0.25rem;
  line-height: 1.2;
}

.bundle-together__sub {
  margin: 0;
  font-size: 0.75rem;
}

.bundle-together__price {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
}

.bundle-together__summary {
  padding: 1.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--cream);
  text-align: center;
}

.bundle-together__total-label {
  margin: 0 0 0.35rem;
}

.bundle-together__total {
  font-family: var(--font-house);
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}

.bundle-together__savings {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
}

.bundle-together__cta {
  width: 100%;
  margin-bottom: 0.75rem;
}

.bundle-together__cta:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.bundle-together__note {
  margin: 0;
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .bundle-together__items {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.65rem;
    justify-items: center;
  }

  .bundle-together__item {
    max-width: none;
    width: 100%;
  }

  .bundle-together__item--primary {
    grid-column: 1 / -1;
    max-width: 12rem;
    justify-self: center;
  }

  .bundle-together__plus {
    align-self: center;
  }
}

.hosted-brands { margin-bottom: 2.5rem; }
.hosted-brands--soon { margin-bottom: 0; }

.hosted-brands__label { margin: 0 0 1rem; }

.brand-feature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--ivory);
  transition: background 0.3s;
}

.brand-feature:hover { background: var(--stone); }

.brand-feature__mark {
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-house);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.brand-feature__name {
  font-family: var(--font-house);
  font-size: 1.5rem;
  margin: 0 0 0.2rem;
}

.brand-feature__sub {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--taupe);
}

.brand-feature__cta {
  margin: 0.5rem 0 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.brand-tile {
  padding: 1.75rem 1rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--ivory);
}

.brand-tile__name {
  font-family: var(--font-house);
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
}

.brand-tile__status {
  margin: 0;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--taupe);
}

.brand-tile--soon { opacity: 0.55; }

/* Social proof */
.shop-section--proof {
  background: rgba(26, 22, 20, 0.03);
  text-align: center;
}

.quote {
  max-width: 42ch;
  margin: 0 auto 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(26, 22, 20, 0.12);
  text-align: left;
}

.quote p {
  font-family: var(--font-house);
  font-style: italic;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.quote cite { font-size: 0.8125rem; color: var(--taupe); font-style: normal; }

.trust-strip {
  font-size: 0.8125rem;
  color: var(--taupe-deep);
  letter-spacing: 0.02em;
}

/* Enter the house */
.shop-section--house {
  background: var(--charcoal);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.shop-section--house .t-machine { color: rgba(246, 242, 236, 0.45); }
.shop-section--house .t-headline { color: var(--ivory); }
.shop-section--house .t-whisper { color: rgba(246, 242, 236, 0.7); }

.house-bridge__bg { position: absolute; inset: 0; z-index: 0; }

.house-bridge__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.55) saturate(0.85);
}

.house-bridge__content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.house-bridge__cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(246, 242, 236, 0.35);
  color: var(--ivory);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s;
}

.house-bridge__cta:hover { background: rgba(246, 242, 236, 0.08); }

.house-bridge__pre {
  font-size: 0.875rem;
  color: rgba(246, 242, 236, 0.55);
  margin: 1rem 0 0;
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(246, 242, 236, 0.75);
  padding: clamp(3rem, 8vh, 4.5rem) var(--page-pad) 2rem;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.site-footer__newsletter {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(246, 242, 236, 0.1);
}

.site-footer__mono {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border: 1px solid rgba(246, 242, 236, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-house);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(246, 242, 236, 0.5);
}

.site-footer__newsletter-title {
  font-family: var(--font-house);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--ivory);
  margin: 0 0 0.5rem;
}

.site-footer__newsletter .t-whisper { color: rgba(246, 242, 236, 0.55); }

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(246, 242, 236, 0.2);
  border-radius: 2px;
  background: transparent;
  color: var(--ivory);
  font: inherit;
  font-size: 0.875rem;
}

.newsletter-form input::placeholder { color: rgba(246, 242, 236, 0.35); }

.newsletter-form .btn-primary {
  flex-shrink: 0;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer__col-title { margin: 0 0 0.25rem; color: rgba(246, 242, 236, 0.45); }

.site-footer__col a {
  font-size: 0.8125rem;
  color: rgba(246, 242, 236, 0.7);
}

.site-footer__col a:hover { color: var(--ivory); }

.site-footer__base {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(246, 242, 236, 0.1);
}

.site-footer__mark {
  font-size: 1.125rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.site-footer__belief {
  font-family: var(--font-house);
  font-style: italic;
  font-size: 1rem;
  color: rgba(246, 242, 236, 0.55);
  margin: 0 0 1rem;
}

.site-footer__legal {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(246, 242, 236, 0.4);
}

/* Cart */
.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 100vw);
  height: 100vh;
  background: var(--ivory);
  z-index: var(--cart-z);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  padding: 1.5rem;
  box-shadow: -8px 0 32px rgba(26, 22, 20, 0.12);
}

.cart-panel.is-open { transform: none; }

.cart-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cart-panel__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cart-panel__item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: var(--stone);
  border-radius: 2px;
}

.cart-panel__note {
  font-size: 0.75rem;
  color: var(--taupe);
  margin: 1rem 0;
}

.cart-panel__shipping {
  font-size: 0.8125rem;
  color: var(--taupe-deep);
  margin: 0 0 0.5rem;
}

.cart-panel__foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.cart-panel__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.cart-panel__checkout {
  width: 100%;
  padding: 1rem;
  background: var(--ink);
  color: var(--ivory);
  border: none;
  border-radius: 2px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-panel__checkout:disabled,
.cart-panel__checkout[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

.cart-panel__view-bag {
  display: block;
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--taupe-deep);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.cart-panel {
  display: flex;
  flex-direction: column;
}

/* FAB */
.fab-buy {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: var(--fab-z);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.5rem;
  background: var(--ink);
  color: var(--ivory);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(26, 22, 20, 0.2);
  transition: transform 0.5s var(--ease);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fab-buy.is-visible { transform: translateX(-50%) translateY(0); }

.fab-buy:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.fab-buy__price {
  font-weight: 500;
  padding-right: 1rem;
  border-right: 1px solid rgba(246, 242, 236, 0.25);
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1024px) {
  .ritual-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-header__nav--left { display: none; }
  .site-header__menu { display: flex; }
  .site-header__wordmark { display: none; }

  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

  .shop-hero--editorial {
    min-height: min(78vh, 720px);
  }

  .shop-hero__content {
    min-height: min(78vh, 720px);
    padding: clamp(4.5rem, 12vh, 6rem) var(--page-pad) 2.5rem;
    gap: 1.5rem;
  }

  .shop-hero--editorial .shop-hero__title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .shop-hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 20rem;
  }

  .shop-hero__cta {
    width: 100%;
  }

  .shop-hero {
    min-height: 0;
    padding: 0.75rem var(--page-pad) 1.5rem;
    align-items: flex-start;
  }

  .shop-hero__grid { grid-template-columns: 1fr; gap: 1rem; }
  .shop-hero__img--mobile { display: block; }
  .shop-hero__img--desktop { display: none; }

  .shop-hero__media {
    max-height: 200px;
    aspect-ratio: auto;
  }

  .shop-hero__media img { object-fit: contain; padding: 0.5rem; }
  .shop-hero__title { font-size: 1.5rem; }
  .shop-hero__brand { display: none; }
  .shop-hero__buy { max-width: none; }

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

  .collection-card__reveal {
    max-height: none;
    opacity: 1;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top-color: var(--line);
  }

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

  .site-footer__cols { grid-template-columns: repeat(2, 1fr); }

  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn-primary { width: 100%; }

  .brand-grid--hub,
  .ritual-hub-grid {
    grid-template-columns: 1fr;
  }

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

  .ritual-hub-card__body {
    padding: 1rem 1.25rem 1.25rem;
  }
}

/* Information architecture pages */
.ia-page {
  padding: clamp(2.5rem, 6vh, 4rem) var(--page-pad);
}

.ia-page__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.ia-hero {
  padding-top: clamp(3rem, 8vh, 5rem);
  padding-bottom: clamp(1.5rem, 4vh, 2.5rem);
  border-bottom: 1px solid var(--line);
}

.ia-hero__title {
  margin: 0.5rem 0 0.75rem;
  max-width: 18ch;
}

.ia-hero__lede {
  margin: 0;
  max-width: 48ch;
}

.ia-copy__inner {
  max-width: 640px;
}

.ia-copy__body {
  margin: 0.75rem 0 0;
  line-height: 1.7;
}

.ia-bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  max-width: 560px;
}

.ia-bullet-list li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9375rem;
  color: var(--taupe-deep);
}

.ia-bullet-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--taupe);
}

.brand-grid--hub {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.brand-tile--hub {
  display: block;
  padding: 1.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--ivory);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s;
}

a.brand-tile--hub:hover {
  background: var(--stone);
}

.brand-tile__mark {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-house);
  margin: 0 0 0.85rem;
}

.brand-tile__sub {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: var(--taupe);
}

.brand-tile__cta {
  margin: 0.75rem 0 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-landing-hero__inner {
  text-align: center;
  max-width: 640px;
}

.brand-landing-hero__mark {
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-house);
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.brand-landing-hero__lede {
  margin: 0.75rem auto 0;
  max-width: 42ch;
}

.ia-cta-strip {
  background: var(--stone);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ia-cta-strip__inner {
  text-align: center;
  max-width: 480px;
}

.ia-cta-strip__btn {
  display: inline-block;
  width: auto;
  min-width: 200px;
  margin-top: 1.25rem;
}

.ia-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.ia-link-card {
  display: block;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--ivory);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s;
}

.ia-link-card:hover {
  background: var(--stone);
}

.ia-link-card__title {
  font-family: var(--font-house);
  font-size: 1.125rem;
  margin: 0 0 0.35rem;
}

.ia-link-card__meta {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
}

.ia-link-card__copy {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
}

.ia-link-card__cta {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ritual-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.ritual-hub-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--ivory);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s;
}

.ritual-hub-card:hover {
  background: var(--stone);
}

.ritual-hub-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

.ritual-hub-card__body {
  padding: 1.25rem 1.25rem 1.25rem 0;
}

.ritual-hub-card__title {
  font-family: var(--font-house);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.ritual-hub-card__goal {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
}

.ritual-hub-card__steps,
.ritual-hub-card__products,
.ritual-hub-card__timeline {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
}

.ritual-hub-card__cta {
  margin: 0.85rem 0 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__cols--five {
  grid-template-columns: repeat(5, 1fr);
}

.site-footer__social-icons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.site-footer__social-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(246, 242, 236, 0.2);
  border-radius: 50%;
  color: rgba(246, 242, 236, 0.7);
  transition: color 0.25s, border-color 0.25s;
}

.site-footer__social-icon:hover {
  color: var(--ivory);
  border-color: rgba(246, 242, 236, 0.45);
}

.site-footer__social-text {
  font-size: 0.8125rem;
  color: rgba(246, 242, 236, 0.7);
}

.site-footer__social-text:hover {
  color: var(--ivory);
}

.ia-faq__groups {
  display: grid;
  gap: 0.5rem;
  max-width: 720px;
}

.ia-faq__item {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--ivory);
}

.ia-faq__question {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
}

.ia-faq__question::-webkit-details-marker {
  display: none;
}

.ia-faq__category {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--taupe);
}

.ia-faq__q {
  font-family: var(--font-house);
  font-size: 1.0625rem;
}

.ia-faq__answer {
  padding: 0 1.25rem 1rem;
  margin: 0;
  line-height: 1.65;
}

.ia-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.ia-contact__details {
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}

.ia-contact__details dt {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--taupe);
  margin-bottom: 0.25rem;
}

.ia-contact__details dd {
  margin: 0;
  font-size: 0.9375rem;
}

.ia-contact__details a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.ia-contact__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
}

.ia-contact__form {
  display: grid;
  gap: 0.75rem;
}

.ia-contact__form input,
.ia-contact__form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--ivory);
  font: inherit;
  font-size: 0.875rem;
}

.ia-contact__success {
  margin: 0 0 1rem;
  color: var(--taupe-deep);
}

.ia-contact__error {
  margin: 0 0 1rem;
  color: #8b3a3a;
}

@media (max-width: 899px) {
  .site-footer__cols--five {
    grid-template-columns: repeat(2, 1fr);
  }

  .ia-contact__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-footer__cols--five {
    grid-template-columns: 1fr;
  }
}

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

  .ritual-hub-card__body {
    padding: 1rem 1.25rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
  .collection-card:hover { transform: none; }
  .collection-card:hover .collection-card__media img { transform: none; }
}
