/** Shopify CDN: Minification failed

Line 580:9 Expected identifier but found whitespace
Line 580:10 Unexpected "0"

**/
/* =============================================================================
   RAW & RARE — Next.js storefront parity (homepage + tokens)
   Ported from SUCCESSSSSS: tailwind.config + globals + home components
   ============================================================================= */

.site-main {
  overflow-x: clip;
  isolation: isolate;
}

/* Editorial rhythm: faint warm bloom above each band (under existing hairlines) */
.site-main > .shopify-section > section:not(.site-hero) {
  box-shadow: 0 -36px 72px -52px rgba(139, 115, 85, 0.1);
}

@media (max-width: 749px) {
  .site-main > .shopify-section > section:not(.site-hero) {
    box-shadow: 0 -22px 48px -44px rgba(139, 115, 85, 0.075);
  }
}

:root {
  --rr-void: #050505;
  --rr-carbon: #0b0b0b;
  --rr-slate: #111111;
  --rr-ink: #111111;
  --rr-mist: #f3f3f3;
  --rr-steel: #8a8a8a;
  --rr-gold: #8b7355;
  --rr-border-divider: rgba(255, 255, 255, 0.055);
  --rr-border-strong: rgba(255, 255, 255, 0.085);
  --rr-inset-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.048);
  --rr-radial: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(139, 115, 85, 0.18), transparent 55%);
  --rr-noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  /* Layered section canvases — depth without “zebra striping” */
  --rr-surface-a:
    radial-gradient(ellipse 100% 52% at 50% 0%, rgba(139, 115, 85, 0.08), transparent 50%),
    linear-gradient(180deg, #050505 0%, #090909 48%, #0b0b0b 100%);
  --rr-surface-b:
    radial-gradient(ellipse 88% 46% at 16% 10%, rgba(255, 255, 255, 0.032), transparent 54%),
    linear-gradient(188deg, #0b0b0b 0%, #050505 44%, #111111 100%);
  --rr-surface-c:
    radial-gradient(ellipse 78% 44% at 86% 16%, rgba(139, 115, 85, 0.058), transparent 52%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 52%, #080808 100%);
  --rr-surface-d:
    radial-gradient(ellipse 92% 42% at 50% 100%, rgba(139, 115, 85, 0.055), transparent 56%),
    linear-gradient(185deg, #080808 0%, #050505 34%, #0c0c0c 100%);
  --font-display: "Syne", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes site-hero-in {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translate3d(0, 1.75rem, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes site-hero-in-soft {
  from {
    opacity: 0;
    transform: translate3d(0, 1.125rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes site-hero-rule {
  from {
    opacity: 0;
    transform: translateX(-50%) scaleY(0.2);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scaleY(1);
  }
}

@keyframes site-grain {
  0%,
  100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-2%, -2%);
  }
  30% {
    transform: translate(2%, -1%);
  }
  50% {
    transform: translate(-1%, 2%);
  }
  70% {
    transform: translate(1%, 1%);
  }
}

.site-sr {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  transition:
    opacity 0.85s var(--ease-out-expo),
    transform 0.85s var(--ease-out-expo);
}

.site-sr.site-sr--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ----- Hero (HeroSection.tsx) ----- */
.site-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 52vh;
  height: 52vh;
  max-height: 780px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background:
    radial-gradient(ellipse 95% 58% at 50% 108%, rgba(139, 115, 85, 0.14), transparent 52%),
    radial-gradient(ellipse 70% 45% at 20% 20%, rgba(255, 255, 255, 0.03), transparent 55%),
    var(--rr-void);
  color: var(--rr-mist);
  box-shadow: var(--rr-inset-highlight);
}

@media (min-width: 768px) {
  .site-hero {
    min-height: 70vh;
    height: 70vh;
  }
}

.site-hero__media {
  position: absolute;
  inset: 0;
}

.site-hero__video {
  height: 100%;
  width: 100%;
  transform: scale(1.05);
  object-fit: cover;
  opacity: 0.42;
}

.site-hero__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--rr-void), rgba(5, 5, 5, 0.7), var(--rr-void));
}

.site-hero__radial {
  position: absolute;
  inset: 0;
  background: var(--rr-radial);
  opacity: 0.9;
}

.site-hero__noise {
  position: absolute;
  inset: 0;
  background-image: var(--rr-noise);
  opacity: 0.55;
  mix-blend-mode: overlay;
}

.site-hero__grain {
  position: absolute;
  inset: 0;
  background-size: 220px 220px;
  opacity: 0.08;
  mix-blend-mode: soft-light;
  animation: site-grain 8s steps(10) infinite;
}

.site-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 5.25rem 1rem 2rem;
}

@media (min-width: 768px) {
  .site-hero__inner {
    gap: 2.25rem;
    padding: 6.25rem 2.5rem 3rem;
  }
}

.site-hero__stack {
  max-width: 56rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-hero__stack .site-hero__eyebrow {
  animation: site-hero-in-soft 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.site-hero__stack .site-hero__title {
  animation: site-hero-in 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

.site-hero__stack .site-hero__lede {
  animation: site-hero-in-soft 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.42s both;
}

.site-hero__stack .site-hero__body {
  animation: site-hero-in-soft 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.58s both;
}

.site-magnetic {
  position: relative;
  display: inline-flex;
}

.site-magnetic > .site-btn {
  will-change: transform;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  .site-hero__stack .site-hero__eyebrow,
  .site-hero__stack .site-hero__title,
  .site-hero__stack .site-hero__lede,
  .site-hero__stack .site-hero__body,
  .site-hero__actions,
  .site-hero__rule {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: translateX(-50%) !important;
  }

  .site-magnetic > .site-btn {
    transition: none;
  }

  .site-btn:active {
    transform: none;
  }
}

.site-hero__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--rr-steel);
}

.site-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 400;
  color: var(--rr-mist);
}

.site-hero__title span {
  color: var(--rr-steel);
}

.site-hero__lede {
  margin: 0;
  max-width: 36rem;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.8vw, 1.55rem);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: -0.012em;
  color: rgba(243, 243, 243, 0.92);
}

.site-hero__body {
  margin: 0;
  max-width: 28rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--rr-steel);
}

.site-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  animation: site-hero-in-soft 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.72s both;
}

.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.66rem 1.3rem;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  transition:
    border-color 0.45s var(--ease-out-expo),
    background-color 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo),
    transform 0.2s var(--ease-out-expo),
    color 0.35s var(--ease-out-expo);
}

.site-btn:focus-visible {
  outline: none;
  border-color: rgba(139, 115, 85, 0.55);
  box-shadow:
    0 0 0 1px rgba(139, 115, 85, 0.35),
    0 0 0 4px rgba(139, 115, 85, 0.12);
}

.site-btn:active {
  transform: translateY(1px) scale(0.992);
}

.site-btn--glow {
  color: var(--rr-mist);
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(12, 12, 12, 0.92) 100%);
  box-shadow:
    var(--rr-inset-highlight),
    0 0 0 1px rgba(139, 115, 85, 0.18),
    0 0 64px -10px rgba(139, 115, 85, 0.38);
}

.site-btn--glow:hover {
  border-color: rgba(139, 115, 85, 0.5);
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.98) 0%, rgba(14, 14, 14, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(139, 115, 85, 0.28),
    0 0 76px -6px rgba(139, 115, 85, 0.42);
}

.site-btn--ghost {
  color: rgba(243, 243, 243, 0.9);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-btn--ghost:focus-visible {
  box-shadow:
    0 0 0 1px rgba(139, 115, 85, 0.35),
    0 0 0 4px rgba(139, 115, 85, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-hero__rule {
  pointer-events: none;
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(to bottom, transparent, rgba(139, 115, 85, 0.4), transparent);
  animation: site-hero-rule 1.6s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}

@media (min-width: 768px) {
  .site-hero__rule {
    display: block;
  }
}

/* ----- Featured collections ----- */
.site-collections {
  scroll-margin-top: 7rem;
  border-top: 1px solid var(--rr-border-divider);
  background: var(--rr-surface-a);
  color: var(--rr-mist);
  box-shadow: var(--rr-inset-highlight);
}

.site-collections__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(5.25rem, 11vw, 6.75rem) var(--page-margin, 1.25rem) max(96px, 6rem);
}

@media (min-width: 768px) {
  .site-collections__inner {
    padding: 10rem var(--page-margin, 1.25rem) max(96px, 6.5rem);
  }
}

.site-collections__shell {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.site-collections__head {
  display: flex;
  max-width: 38rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .site-collections__head {
    gap: 0.85rem;
  }
}

.site-collections__kicker {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--rr-steel);
}

.site-collections__heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--rr-mist);
}

.site-collections__dek {
  margin: 0.35rem 0 0;
  max-width: 34rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--rr-steel);
}

/* ----- Field featured products (home) ----- */
.site-field-products {
  scroll-margin-top: 7rem;
  border-top: 1px solid var(--rr-border-divider);
  background: color-mix(in oklab, var(--rr-surface-a) 92%, #000);
  color: var(--rr-mist);
  box-shadow: var(--rr-inset-highlight);
}

.site-field-products__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 6rem) var(--page-margin, 1.25rem) max(88px, 5.5rem);
}

@media (min-width: 768px) {
  .site-field-products__inner {
    padding: 8.5rem var(--page-margin, 1.25rem) max(96px, 6rem);
  }
}

.site-field-products__head {
  display: flex;
  max-width: 38rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  margin-inline: auto;
  margin-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
}

@media (min-width: 768px) {
  .site-field-products__head {
    gap: 0.85rem;
    margin-bottom: clamp(2.75rem, 5vw, 3.75rem);
  }
}

.site-field-products__kicker {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--rr-steel);
}

.site-field-products__heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--rr-mist);
}

.site-field-products__dek {
  margin: 0.35rem 0 0;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--rr-steel);
}

.site-field-products__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}


.site-field-products__cell {
  display: flex;
  min-width: 0;
}

.site-field-products .product-card {
  width: 100%;
  border: 1px solid color-mix(in oklab, var(--rr-mist) 8%, transparent);
  background: color-mix(in oklab, var(--rr-surface-b) 55%, #000);
  box-shadow: 0 1px 0 color-mix(in oklab, var(--rr-mist) 4%, transparent);
}

.site-field-products .product-card:hover {
  box-shadow:
    0 1px 0 color-mix(in oklab, var(--rr-mist) 6%, transparent),
    0 16px 48px color-mix(in oklab, #000 55%, transparent);
}

.site-field-products__empty {
  max-width: 28rem;
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 3.5rem) 1.25rem;
  text-align: center;
  border: 1px dashed color-mix(in oklab, var(--rr-steel) 45%, transparent);
  border-radius: 2px;
  background: color-mix(in oklab, var(--rr-surface-b) 40%, transparent);
}

  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--rr-steel);
  letter-spacing: 0.01em;
}

/* ----- Five energy cards (cinematic 2-col mobile / centered last) ----- */
.site-energy-entries {
  --energy-card-gap: 12px;
  margin-top: clamp(1.5rem, 3.2vw, 2.4rem);
}

.site-energy-entries__nav {
  width: 100%;
}

.site-energy-entries__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  width: 100%;
  gap: var(--energy-card-gap);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-energy-entries__item {
  display: flex;
  min-width: 0;
  width: 100%;
}

.site-energy-entries__item:last-child {
  grid-column: 1 / -1;
  justify-content: center;
}

.site-energy-entries__item:last-child .site-energy-card {
  max-width: calc(50% - (var(--energy-card-gap) / 2));
}
.site-energy-card {
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  display: flex;
  width: 100%;
  min-height: 8.5rem;
  flex-direction: column;
  align-items: stretch;
  padding: 0.9rem 0.85rem 0.8rem 0.95rem;
  text-align: left;
  text-decoration: none;
  color: inherit;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(120% 88% at 0% 0%, color-mix(in srgb, var(--energy-accent) 10%, transparent), transparent 60%),
    linear-gradient(168deg, rgba(12, 12, 12, 0.88) 0%, rgba(5, 5, 5, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 24px -22px rgba(0, 0, 0, 0.72);
  transition:
    border-color 0.35s var(--ease-out-expo),
    box-shadow 0.35s var(--ease-out-expo),
    transform 0.35s var(--ease-out-expo);
}

@media (min-width: 768px) {
  .site-energy-card {
    min-height: 10rem;
    padding: 1rem 1rem 0.9rem 1.05rem;
  }
}

.site-energy-card__rail {
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 2px;
  border-radius: 2px 0 0 2px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--energy-mist) 55%, transparent) 0%, var(--energy-accent) 100%);
  opacity: 0.75;
}

.site-energy-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 0;
  padding-left: 0.5rem;
}

.site-energy-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.site-energy-card__index {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(138, 138, 138, 0.66);
}

.site-energy-card__line {
  font-family: var(--font-mono);
  font-size: 6.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--energy-accent) 66%, rgba(138, 138, 138, 0.84));
}

.site-energy-card__name {
  display: block;
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.9vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(243, 243, 243, 0.94);
}

.site-energy-card__dek {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.74rem;
  line-height: 1.45;
  letter-spacing: 0.008em;
  color: rgba(198, 196, 191, 0.74);
}

.site-energy-card__cta {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 0.75rem;
  padding-left: 0.5rem;
}

.site-energy-card__cta-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(230, 228, 223, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 0.18rem;
  transition:
    color 0.3s var(--ease-out-expo),
    border-color 0.3s var(--ease-out-expo);
}

.site-energy-card__cta-inner::after {
  content: "";
  display: inline-block;
  width: 0.3rem;
  height: 0.3rem;
  border-inline-end: 1px solid currentcolor;
  border-block-end: 1px solid currentcolor;
  transform: rotate(-45deg);
  margin-bottom: 0.08rem;
  opacity: 0.6;
}

.site-energy-card:hover {
  border-color: color-mix(in srgb, var(--energy-accent) 32%, rgba(255, 255, 255, 0.12));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 14px 36px -26px rgba(0, 0, 0, 0.7),
    0 0 0 1px color-mix(in srgb, var(--energy-accent) 22%, transparent),
    0 0 28px -12px color-mix(in srgb, var(--energy-accent) 18%, transparent);
  transform: translateY(-1px);
}

.site-energy-card:hover .site-energy-card__cta-inner {
  color: rgba(244, 242, 237, 0.78);
  border-bottom-color: color-mix(in srgb, var(--energy-accent) 42%, rgba(255, 255, 255, 0.22));
}

.site-energy-card:focus-visible {
  outline: none;
  border-color: color-mix(in srgb, var(--energy-accent) 45%, rgba(255, 255, 255, 0.15));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--energy-accent) 28%, transparent),
    0 0 0 4px rgba(139, 115, 85, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .site-energy-entries {
    --energy-card-gap: 16px;
  }

  .site-energy-entries__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--energy-card-gap);
  }

  .site-energy-entries__item:last-child {
    grid-column: auto;
    justify-content: stretch;
  }

  .site-energy-entries__item:last-child .site-energy-card {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-energy-card,
  .site-energy-card__cta-inner {
    transition: none;
  }

  .site-energy-card:hover {
    transform: none;
  }
}

.site-collections__mobile {
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .site-collections__mobile {
    display: none;
  }
}

.site-energy-row {
  display: flex;
  width: 100%;
  gap: 0.375rem;
}

.site-energy-row__cell {
  flex: 1 1 0;
  min-width: 0;
}

.site-energy-row__link {
  position: relative;
  display: flex;
  aspect-ratio: 4 / 5;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.625rem 0.125rem 0.5rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    border-color 0.5s var(--ease-out-expo),
    box-shadow 0.5s var(--ease-out-expo);
}

.site-energy-row__link:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 28px -16px rgba(0, 0, 0, 0.75);
}

.site-energy-row__roman {
  position: relative;
  font-family: var(--font-mono);
  font-size: 6px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(138, 138, 138, 0.8);
}

.site-energy-row__title {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 0.125rem;
  font-family: var(--font-display);
  font-size: 7.5px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0.05em;
}

.site-collections__grid {
  margin-top: 3rem;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .site-collections__grid {
    display: grid;
    margin-top: 5rem;
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .site-collections__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.site-col-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.95) 0%, var(--rr-ink) 100%);
  text-decoration: none;
  color: inherit;
  box-shadow:
    var(--rr-inset-highlight),
    0 20px 48px -32px rgba(0, 0, 0, 0.55);
  transition:
    border-color 0.55s var(--ease-out-expo),
    box-shadow 0.55s var(--ease-out-expo);
}

.site-col-card:hover {
  border-color: rgba(139, 115, 85, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 56px -28px rgba(0, 0, 0, 0.6),
    0 0 64px -24px rgba(139, 115, 85, 0.18);
}

.site-col-card__media {
  position: relative;
  aspect-ratio: 5 / 4;
  width: 100%;
}

@media (min-width: 640px) {
  .site-col-card__media {
    aspect-ratio: 6 / 7;
  }
}

@media (min-width: 768px) {
  .site-col-card__media {
    aspect-ratio: 3 / 4;
  }
}

@media (min-width: 1024px) {
  .site-col-card__media {
    aspect-ratio: 4 / 5;
  }
}

.site-col-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}

.site-col-card:hover .site-col-card__img {
  transform: scale(1.03);
}

.site-col-card__wash {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--rr-void), rgba(5, 5, 5, 0.2), transparent);
  opacity: 0.9;
}

.site-col-card__meta {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1rem;
}

@media (min-width: 768px) {
  .site-col-card__meta {
    padding: 1.5rem;
  }
}

.site-col-card__label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--rr-gold);
}

.site-col-card__line {
  margin-top: 0.5rem;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
}

@media (min-width: 768px) {
  .site-col-card__line {
    font-size: 1.125rem;
  }
}

.site-collections__grid .site-col-card--span2 {
  grid-column: span 2;
  max-width: min(100%, 17.5rem);
  margin-inline: auto;
}

@media (min-width: 1024px) {
  .site-collections__grid .site-col-card--center {
    grid-column-start: 2;
  }
}

/* ----- Philosophy ----- */
.site-philosophy {
  scroll-margin-top: 7rem;
  border-top: 1px solid var(--rr-border-divider);
  background: var(--rr-surface-b);
  color: var(--rr-mist);
  box-shadow: var(--rr-inset-highlight);
}

.site-philosophy__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  gap: 5rem;
  padding: clamp(5.5rem, 12vw, 7.5rem) 1.5rem;
}

@media (min-width: 768px) {
  .site-philosophy__inner {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    padding: 10rem 2.5rem;
  }
}

.site-philosophy__kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--rr-steel);
}

.site-philosophy__heading {
  margin: 0;
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--rr-mist);
}

.site-philosophy__heading span {
  display: block;
  color: var(--rr-steel);
}

.site-philosophy__col2 {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 0.5rem;
}

.site-philosophy__lead {
  margin: 0;
  text-wrap: pretty;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--rr-steel);
}

@media (min-width: 768px) {
  .site-philosophy__lead {
    font-size: 1.125rem;
  }
}

.site-philosophy__quotes {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 2.5rem;
}

.site-philosophy__quotes p {
  margin: 0;
  text-wrap: pretty;
  font-size: 0.875rem;
  line-height: 1.9;
  color: rgba(243, 243, 243, 0.85);
}

@media (min-width: 768px) {
  .site-philosophy__quotes p {
    font-size: 1rem;
  }
}

.site-philosophy__quotes p:last-child {
  color: var(--rr-steel);
}

.site-philosophy__editorial {
  margin-top: clamp(3rem, 8vw, 5rem);
  border-top: 1px solid var(--rr-border-divider);
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-inline: 1.5rem;
}

@media (min-width: 768px) {
  .site-philosophy__editorial {
    padding-inline: 2.5rem;
  }
}

.site-philosophy__editorial-inner {
  max-width: 48rem;
  margin: 0 auto;
}

.site-philosophy__editorial-kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--rr-steel);
}

.site-philosophy__editorial-title {
  margin: 1.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--rr-mist);
}

.site-philosophy__editorial-body {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-wrap: pretty;
  font-size: 1rem;
  line-height: 1.95;
  color: var(--rr-steel);
}

@media (min-width: 768px) {
  .site-philosophy__editorial-body {
    font-size: 1.125rem;
  }
}

.site-philosophy__editorial-body p {
  margin: 0;
}

/* ----- Story (journal voice) ----- */
.site-story {
  scroll-margin-top: 7rem;
  border-top: 1px solid var(--rr-border-divider);
  background: var(--rr-surface-c);
  color: var(--rr-mist);
  box-shadow: var(--rr-inset-highlight);
}

.site-story__inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: clamp(5.5rem, 13vw, 9.5rem) 1.5rem;
}

@media (min-width: 768px) {
  .site-story__inner {
    padding-inline: 2.5rem;
  }
}

.site-story__kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--rr-steel);
}

.site-story__title {
  margin: 1.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.site-story__body {
  margin-top: 3rem;
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  text-wrap: pretty;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--rr-steel);
}

@media (min-width: 768px) {
  .site-story__body {
    font-size: 1.05rem;
  }
}

.site-story__body p {
  margin: 0;
}

/* ----- Manifesto rail ----- */
.site-manifesto {
  scroll-margin-top: 7rem;
  border-top: 1px solid var(--rr-border-divider);
  background: var(--rr-surface-d);
  color: var(--rr-mist);
  box-shadow: var(--rr-inset-highlight);
}

.site-manifesto__inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 9rem) 1.5rem;
}

@media (min-width: 768px) {
  .site-manifesto__inner {
    padding-inline: 2.5rem;
  }
}

.site-manifesto__kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--rr-steel);
}

.site-manifesto__title {
  margin: 1.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
}

.site-manifesto__list {
  list-style: none;
  margin: 3.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.site-manifesto__row {
  display: grid;
  gap: 0.75rem 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rr-border-divider);
}

@media (min-width: 768px) {
  .site-manifesto__row {
    grid-template-columns: 10rem 1fr;
    align-items: baseline;
  }
}

.site-manifesto__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.site-manifesto__line {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rr-gold);
}

.site-manifesto__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--rr-steel);
}

@media (min-width: 768px) {
  .site-manifesto__text {
    font-size: 1rem;
  }
}

/* ----- Energy map (home + page) ----- */
.site-energy-map {
  scroll-margin-top: 7rem;
  border-top: 1px solid var(--rr-border-divider);
  background: var(--rr-surface-a);
  color: var(--rr-mist);
  box-shadow: var(--rr-inset-highlight);
}

.site-energy-map__inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 9rem) 1.5rem;
}

@media (min-width: 768px) {
  .site-energy-map__inner {
    padding-inline: 2.5rem;
  }
}

.site-energy-map__kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--rr-steel);
}

.site-energy-map__heading {
  margin: 1.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.site-energy-map__dek {
  margin: 1.25rem 0 0;
  max-width: 48rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--rr-steel);
}

@media (min-width: 768px) {
  .site-energy-map__dek {
    font-size: 1rem;
  }
}

.site-energy-map__stage {
  margin-top: 4rem;
}

.site-energy-map__graph {
  position: relative;
  aspect-ratio: 16 / 12;
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background:
    radial-gradient(ellipse 82% 52% at 50% 32%, rgba(139, 115, 85, 0.12), transparent 58%),
    linear-gradient(165deg, #0d0d0d 0%, #060606 45%, #111111 100%);
  box-shadow:
    var(--rr-inset-highlight),
    0 0 72px -28px rgba(139, 115, 85, 0.15),
    inset 0 0 80px rgba(0, 0, 0, 0.35);
}

.site-energy-map__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-energy-map__node {
  position: absolute;
  z-index: 1;
  transform: translate(-50%, -50%);
  display: flex;
  max-width: 6.2rem;
  flex-direction: column;
  align-items: center;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.85);
  padding: 0.5rem 0.5rem 0.55rem;
  text-align: center;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition:
    border-color 0.35s var(--ease-out-expo),
    background-color 0.35s var(--ease-out-expo);
}

@media (min-width: 768px) {
  .site-energy-map__node {
    max-width: 7rem;
    padding: 0.55rem 0.6rem 0.6rem;
  }

  .site-energy-map__node:hover {
    border-color: rgba(139, 115, 85, 0.35);
  }
}

.site-energy-map__node-line {
  font-size: 7px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rr-steel);
}

@media (min-width: 768px) {
  .site-energy-map__node-line {
    font-size: 8px;
  }
}

.site-energy-map__node-title {
  margin-top: 0.2rem;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: var(--rr-gold);
}

@media (min-width: 768px) {
  .site-energy-map__node-title {
    font-size: 0.8rem;
  }
}

/* ----- Ritual block ----- */
.site-ritual-block {
  scroll-margin-top: 7rem;
  border-top: 1px solid var(--rr-border-divider);
  background: var(--rr-surface-b);
  color: var(--rr-mist);
  box-shadow: var(--rr-inset-highlight);
}

.site-ritual-block__inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 7rem) 1.5rem;
}

@media (min-width: 768px) {
  .site-ritual-block__inner {
    padding-inline: 2.5rem;
  }
}

.site-ritual-block__panel {
  max-width: 40rem;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 1.75rem 1.5rem 2rem;
  box-shadow:
    var(--rr-inset-highlight),
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 28px 56px -36px rgba(0, 0, 0, 0.65),
    0 0 80px -40px rgba(139, 115, 85, 0.12);
}

@media (min-width: 768px) {
  .site-ritual-block__panel {
    padding: 2rem 2.25rem;
  }
}

.site-ritual-block__kicker {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--rr-steel);
}

.site-ritual-block__lede {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.35;
  color: rgba(243, 243, 243, 0.95);
}

.site-ritual-block__list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(243, 243, 243, 0.85);
}

@media (min-width: 768px) {
  .site-ritual-block__list {
    font-size: 0.9375rem;
  }
}

.site-ritual-block__list li::before {
  content: "— ";
  color: var(--rr-steel);
}

/* ----- Philosophy standalone page ----- */
.site-page-philosophy {
  min-height: 100dvh;
  background: var(--rr-surface-c);
  color: var(--rr-mist);
  padding: clamp(6rem, 14vw, 10rem) 0 clamp(4rem, 10vw, 7rem);
  box-shadow: var(--rr-inset-highlight);
}

.site-page-philosophy__inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .site-page-philosophy__inner {
    padding: 0 2.5rem;
  }
}

.site-page-philosophy__kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--rr-steel);
}

.site-page-philosophy__title {
  margin: 1.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.site-page-philosophy__body {
  margin-top: 4rem;
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-wrap: pretty;
  font-size: 1rem;
  line-height: 1.95;
  color: var(--rr-steel);
}

@media (min-width: 768px) {
  .site-page-philosophy__body {
    font-size: 1.125rem;
  }
}

.site-page-philosophy__body p {
  margin: 0;
}

.site-energy {
  scroll-margin-top: 7rem;
  border-top: 1px solid var(--rr-border-divider);
  background: var(--rr-surface-d);
  color: var(--rr-mist);
  box-shadow: var(--rr-inset-highlight);
}

.site-energy__inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

@media (min-width: 768px) {
  .site-energy__inner {
    padding: 6rem 2.5rem;
  }
}

.site-energy__intro {
  margin: 0 auto;
  max-width: 42rem;
  text-align: center;
}

.site-energy__kicker {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--rr-steel);
}

.site-energy__title {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.5vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.site-energy__dek {
  margin: 1rem auto 0;
  max-width: 32rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--rr-steel);
}

@media (min-width: 768px) {
  .site-energy__dek {
    font-size: 1rem;
  }
}

.site-energy__panel-wrap {
  margin: 2.5rem auto 0;
  max-width: 28rem;
}

@media (min-width: 768px) {
  .site-energy__panel-wrap {
    margin-top: 3.5rem;
  }
}

.site-energy-ritual {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem 1rem 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (min-width: 640px) {
  .site-energy-ritual {
    padding: 1.25rem 1.25rem 1.5rem;
  }
}

.site-energy-ritual__step {
  display: flex;
  max-height: min(80vh, 34rem);
  flex-direction: column;
  gap: 0.5rem;
}

.site-energy-ritual__step-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}

.site-energy-ritual__field {
  flex-shrink: 0;
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--rr-steel);
}

.site-energy-ritual__progress-cluster {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  min-width: 7rem;
}

.site-energy-ritual__progress-line {
  width: 100%;
  max-width: 10rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.site-energy-ritual__progress-line > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(139, 115, 85, 0.35),
    rgba(243, 243, 243, 0.22)
  );
  transition: width 0.45s var(--ease-out-expo);
}

.site-energy-ritual__progress-dots {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.site-energy-ritual__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.site-energy-ritual__dot.is-complete {
  background: rgba(139, 115, 85, 0.55);
}

.site-energy-ritual__dot.is-active {
  background: rgba(243, 243, 243, 0.55);
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.2);
  transform: scale(1.15);
}

.site-energy-ritual__q {
  margin: 0.25rem 0 0;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .site-energy-ritual__q {
    font-size: 1.125rem;
  }
}

.site-energy-ritual__opts {
  margin-top: 0.5rem;
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.site-energy-ritual__opts-inner {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding-bottom: 0.25rem;
}

.site-energy-ritual__btn {
  width: 100%;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.625rem 0.75rem;
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.06em;
  color: rgba(243, 243, 243, 0.9);
  cursor: pointer;
  transition:
    border-color 0.28s var(--ease-out-expo),
    background-color 0.28s var(--ease-out-expo),
    box-shadow 0.28s var(--ease-out-expo),
    transform 0.2s ease;
}

.site-energy-ritual__btn:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.site-energy-ritual__btn.is-picked {
  border-color: rgba(139, 115, 85, 0.45);
  background: rgba(139, 115, 85, 0.12);
  box-shadow: 0 0 24px rgba(139, 115, 85, 0.12);
}

.site-energy-ritual__progress {
  flex-shrink: 0;
  margin: 0;
  border-top: none;
  padding-top: 0;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rr-steel);
}

.site-energy-ritual__progress-sep {
  margin: 0 0.15em;
  opacity: 0.45;
}

.site-energy-ritual__result {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-energy-ritual__result-head {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--rr-steel);
}

.site-energy-ritual__result-eyebrow {
  margin: 0.75rem 0 0;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rr-steel);
}

.site-energy-ritual__result-energy {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5.5vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--rr-mist);
}

.site-energy-ritual__result-title {
  margin: 0;
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.site-energy-ritual__result-sub {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--rr-steel);
}

.site-energy-ritual__result-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.25rem;
}

@media (min-width: 640px) {
  .site-energy-ritual__result-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.site-energy__footer {
  margin: 3rem auto 0;
  max-width: 36rem;
  text-align: center;
}

.site-energy__footer p {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rr-steel);
}

.site-energy__footer p + p {
  margin-top: 0.5rem;
  letter-spacing: 0.28em;
  color: rgba(138, 138, 138, 0.8);
}

.site-energy-ritual__opts-inner--grid4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .site-energy-ritual__opts-inner--grid4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
  }
}

.site-energy-ritual__step:has(.site-energy-ritual__opts-inner--grid4) {
  max-height: none;
  min-height: min(32rem, 78vh);
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.site-energy-ritual__step-head {
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 1rem 1.25rem;
}

.site-energy-ritual__progress-cluster .site-energy-ritual__progress {
  margin: 0;
  padding: 0;
  border: 0;
  text-align: right;
}

.site-energy-ritual__btn:active {
  transform: scale(0.985);
  border-color: rgba(139, 115, 85, 0.35);
  background: rgba(139, 115, 85, 0.08);
}

.site-energy-ritual__btn:focus-visible {
  outline: 2px solid rgba(139, 115, 85, 0.55);
  outline-offset: 2px;
}

.site-energy--discovery-featured {
  position: relative;
  isolation: isolate;
  scroll-margin-top: 7rem;
  border-top: 1px solid var(--rr-border-divider);
  background:
    radial-gradient(ellipse 100% 72% at 50% 0%, rgba(139, 115, 85, 0.1), transparent 56%),
    radial-gradient(ellipse 48% 42% at 8% 92%, rgba(255, 255, 255, 0.03), transparent 55%),
    linear-gradient(185deg, #070707 0%, #0a0a0a 42%, #0e0e0e 100%);
  color: var(--rr-mist);
  box-shadow: var(--rr-inset-highlight);
}

.site-energy--discovery-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image: var(--rr-noise);
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

.site-energy--discovery-featured .site-energy__inner {
  position: relative;
  z-index: 1;
  max-width: min(1120px, 100%);
  padding-top: clamp(4rem, 9vw, 6rem);
  padding-bottom: clamp(4rem, 9vw, 6rem);
}

.site-energy--discovery-featured .site-energy__panel-wrap {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  max-width: min(1100px, 100%);
}

.site-energy--discovery-featured .site-energy-ritual {
  position: relative;
  box-sizing: border-box;
  min-height: max(500px, min(560px, 72vh));
  width: 100%;
  margin: 0 auto;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.25rem, 3vw, 2.5rem) clamp(1.75rem, 3vw, 2.5rem);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(8, 8, 8, 0.45) 42%,
    rgba(5, 5, 5, 0.75) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 36px 90px -44px rgba(0, 0, 0, 0.8);
}

.site-energy--discovery-featured .site-energy-ritual__active {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.site-energy--discovery-featured .site-energy-ritual__step {
  flex: 1 1 auto;
  max-height: none;
  min-height: 0;
  justify-content: center;
  padding-top: 0.25rem;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.site-energy--discovery-featured .site-energy-ritual__q {
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.35rem, 3.2vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  max-width: 48rem;
}

.site-energy--discovery-featured .site-energy-ritual__opts {
  margin-top: 0.25rem;
  overflow: visible;
  flex: 0 1 auto;
}

.site-energy--discovery-featured .site-energy-ritual__btn {
  box-sizing: border-box;
  min-height: clamp(3.75rem, 8vw, 5rem);
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(0.78rem, 1.15vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.35;
  border-radius: 2px;
}

.site-energy--discovery-featured .site-energy-ritual__btn:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 28px rgba(139, 115, 85, 0.12);
}

.site-energy--discovery-featured .site-energy-ritual__btn:active {
  transform: scale(0.988);
}

.site-energy--discovery-featured .site-energy-ritual__progress-line {
  max-width: 12rem;
  height: 3px;
}

.site-energy--discovery-featured .site-energy-ritual__progress-line > span {
  background: linear-gradient(90deg, rgba(139, 115, 85, 0.48), rgba(243, 243, 243, 0.26));
}

.site-energy--discovery-featured .site-energy-ritual__progress {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: rgba(200, 198, 192, 0.72);
}

.site-energy--discovery-featured .site-energy-ritual__dot {
  width: 7px;
  height: 7px;
}

/* ----- Product showcase ----- */
.site-showcase {
  scroll-margin-top: 7rem;
  border-top: 1px solid var(--rr-border-divider);
  background: var(--rr-surface-a);
  color: var(--rr-mist);
  box-shadow: var(--rr-inset-highlight);
}

.site-showcase__inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 7rem 1.5rem;
}

@media (min-width: 768px) {
  .site-showcase__inner {
    padding: 9rem 2.5rem;
  }
}

.site-showcase__head {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .site-showcase__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.site-showcase__intro {
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-showcase__kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--rr-steel);
}

.site-showcase__heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.site-showcase__dek {
  margin: 0;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--rr-steel);
}

@media (min-width: 768px) {
  .site-showcase__dek {
    font-size: 1rem;
  }
}

.site-showcase__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 768px) {
  .site-showcase__aside {
    align-items: flex-end;
  }
}

.site-showcase__filter {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rr-gold);
}

.site-showcase__shop-all {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rr-steel);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 0.15rem;
}

.site-showcase__shop-all:hover {
  color: var(--rr-mist);
}

.site-showcase__panels {
  margin-top: 6rem;
}

.site-showcase__panel[hidden] {
  display: none !important;
}

.site-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.25rem;
  row-gap: 4rem;
}

@media (min-width: 640px) {
  .site-showcase__grid {
    column-gap: 1.75rem;
    row-gap: 4.5rem;
  }
}

@media (min-width: 768px) {
  .site-showcase__grid {
    column-gap: 2.5rem;
    row-gap: 5rem;
  }
}

@media (min-width: 1024px) {
  .site-showcase__grid {
    column-gap: 3rem;
    row-gap: 6rem;
  }
}

.site-showcase__grid > li {
  height: 100%;
  min-width: 0;
}

/* ----- Lifestyle gallery ----- */
.site-lifestyle {
  border-top: 1px solid var(--rr-border-divider);
  background: var(--rr-surface-b);
  color: var(--rr-mist);
  box-shadow: var(--rr-inset-highlight);
}

.site-lifestyle__inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 7rem 1.5rem;
}

@media (min-width: 768px) {
  .site-lifestyle__inner {
    padding: 9rem 2.5rem;
  }
}

.site-lifestyle__head {
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-lifestyle__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .site-lifestyle__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.site-lifestyle__hero {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--rr-ink);
}

@media (min-width: 768px) {
  .site-lifestyle__hero {
    grid-column: span 7;
  }
}

.site-lifestyle__stack {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .site-lifestyle__stack {
    grid-column: span 5;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
}

.site-lifestyle__tile {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--rr-ink);
}

@media (min-width: 768px) {
  .site-lifestyle__tile {
    min-height: 200px;
    height: 100%;
  }
}

.site-lifestyle__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-lifestyle__grad {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--rr-void), transparent);
  opacity: 0.7;
}

.site-lifestyle__noise {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image: var(--rr-noise);
  opacity: 0.25;
  mix-blend-mode: overlay;
}

/* ----- Journal preview ----- */
.site-journal {
  border-top: 1px solid var(--rr-border-divider);
  background: var(--rr-surface-c);
  color: var(--rr-mist);
  box-shadow: var(--rr-inset-highlight);
}

.site-journal__inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 7rem 1.5rem;
}

@media (min-width: 768px) {
  .site-journal__inner {
    padding: 9rem 2.5rem;
  }
}

.site-journal__top {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .site-journal__top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.site-journal__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .site-journal__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.site-journal__card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.site-journal__thumb {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--rr-ink);
}

.site-journal__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}

.site-journal__card:hover .site-journal__img {
  transform: scale(1.04);
}

.site-journal__meta {
  margin-top: 1.5rem;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rr-steel);
}

.site-journal__title {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--rr-mist);
}

.site-journal__dek {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--rr-steel);
}

/* ----- Homepage field capture (customer / newsletter) ----- */
.site-newsletter--field {
  scroll-margin-top: 7rem;
  border-top: 1px solid var(--rr-border-divider);
  border-bottom: 1px solid var(--rr-border-divider);
  background:
    radial-gradient(ellipse 95% 70% at 50% 0%, rgba(139, 115, 85, 0.07), transparent 52%),
    linear-gradient(185deg, #070707 0%, #050505 45%, #0b0b0b 100%);
  color: var(--rr-mist);
  box-shadow: var(--rr-inset-highlight);
}

.site-newsletter--field .site-newsletter__inner {
  box-sizing: border-box;
  max-width: min(1200px, 100%);
  margin: 0 auto;
  padding: clamp(3.25rem, 7vw, 5rem) var(--page-margin, 1.25rem);
}

.site-newsletter__shell {
  max-width: 36rem;
  margin-inline: auto;
}

.site-newsletter__head {
  text-align: center;
}

.site-newsletter__rule {
  display: block;
  width: 3rem;
  height: 1px;
  margin: 0 auto 1.35rem;
  border: 0;
  padding: 0;
  background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.55), transparent);
  opacity: 0.9;
}

.site-newsletter--field .site-newsletter__heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.028em;
  color: rgba(248, 246, 242, 0.96);
}

.site-newsletter--field .site-newsletter__dek {
  margin: 1rem auto 0;
  max-width: 28rem;
  font-size: 0.9375rem;
  line-height: 1.62;
  color: rgba(176, 174, 168, 0.82);
}

.site-newsletter--field .site-newsletter__form {
  margin-top: 2rem;
  width: 100%;
}

.site-newsletter--field .site-newsletter__row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 560px) {
  .site-newsletter--field .site-newsletter__row {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 5, 5, 0.72);
    padding: 0.3rem;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 18px 40px -32px rgba(0, 0, 0, 0.55);
  }
}

.site-newsletter--field .site-newsletter__input {
  box-sizing: border-box;
  width: 100%;
  min-height: 3.25rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 8, 0.85);
  padding: 0.65rem 1rem;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--rr-mist);
  outline: none;
  transition: border-color 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}

.site-newsletter--field .site-newsletter__input::placeholder {
  color: rgba(200, 198, 193, 0.38);
}

.site-newsletter--field .site-newsletter__input:focus {
  border-color: rgba(139, 115, 85, 0.45);
  box-shadow: 0 0 0 1px rgba(139, 115, 85, 0.12);
}

@media (min-width: 560px) {
  .site-newsletter--field .site-newsletter__input {
    min-height: 3.125rem;
    border: 0;
    border-radius: 2px;
    background: transparent;
    flex: 1 1 auto;
    min-width: 0;
    padding-inline: 1.1rem;
  }

  .site-newsletter--field .site-newsletter__input:focus {
    box-shadow: none;
  }
}

.site-newsletter--field .site-newsletter__submit {
  box-sizing: border-box;
  min-height: 3.25rem;
  flex-shrink: 0;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
  padding: 0.65rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 242, 237, 0.88);
  cursor: pointer;
  transition:
    border-color 0.3s var(--ease-out-expo),
    background-color 0.3s var(--ease-out-expo),
    color 0.3s var(--ease-out-expo);
}

@media (min-width: 560px) {
  .site-newsletter--field .site-newsletter__submit {
    min-width: 9.5rem;
    min-height: auto;
    border: 0;
    border-radius: 2px;
    background: rgba(244, 242, 237, 0.92);
    color: var(--rr-void);
  }

  .site-newsletter--field .site-newsletter__submit:hover {
    background: color-mix(in srgb, var(--rr-gold) 22%, rgba(244, 242, 237, 0.95));
    color: var(--rr-void);
  }
}

@media (max-width: 559px) {
  .site-newsletter--field .site-newsletter__submit:hover {
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
  }
}

.site-newsletter--field .site-newsletter__msg {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  text-align: center;
}

.site-newsletter--field .site-newsletter__msg--ok {
  color: rgba(180, 210, 185, 0.92);
}

.site-newsletter--field .site-newsletter__msg--err {
  color: rgba(255, 180, 170, 0.95);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/*
 * RAW & RARE — theme.css
 * Aggregated from theme Liquid `{% stylesheet %}` blocks (sections + snippets).
 */

/* ========== sections/cart.liquid ========== */
.cart-page {
    padding-block: clamp(1.5rem, 4vw, 2.5rem);
  }

  .cart-page__title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .cart-page__table-wrap {
    overflow-x: auto;
    margin-bottom: 1rem;
  }

  .cart-page__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 32rem;
  }

  .cart-page__table th,
  .cart-page__table td {
    padding: 0.75rem 0.5rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid color-mix(in oklab, var(--color-foreground) 12%, transparent);
  }

  .cart-page__line {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .cart-page__thumb {
    flex: 0 0 5rem;
    width: 5rem;
  }

  .cart-page__variant {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.25rem;
  }

  .cart-page__remove {
    margin-top: 0.5rem;
    font-size: 0.9rem;
  }

  .cart-page__subtotal {
    margin: 1rem 0;
    font-size: 1.05rem;
  }

  .cart-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .cart-page__secondary,
  .cart-page__checkout {
    font: inherit;
    cursor: pointer;
    padding: 0.75rem 1.1rem;
    border-radius: var(--style-border-radius-inputs);
  }

  .cart-page__secondary {
    border: 1px solid color-mix(in oklab, var(--color-foreground) 25%, transparent);
    background: transparent;
    color: inherit;
  }

  .cart-page__checkout {
    border: 0;
    font-weight: 600;
    color: var(--color-background);
    background: var(--color-foreground);
  }

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

/* ========== sections/collection.liquid ========== */
.collection-page {
    padding-block: clamp(1.5rem, 4vw, 2.5rem);
  }

  .collection-page__header {
    margin-bottom: 1.75rem;
  }

  .collection-page__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
  }

  .collection-page__description {
    margin-top: 0.75rem;
    max-width: 70ch;
    line-height: 1.6;
    opacity: 0.9;
  }

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


  .collection-page__pagination {
    grid-column: 1 / -1;
    margin-top: 1rem;
  }

/* ========== sections/collections.liquid ========== */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

/* ========== sections/custom-section.liquid ========== */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }

/* ========== sections/featured-collection.liquid ========== */
.featured-collection {
    padding-block: clamp(2.5rem, 6vw, 4rem);
    background:
      radial-gradient(ellipse 90% 55% at 50% 0%, rgba(255, 255, 255, 0.03), transparent 50%),
      linear-gradient(180deg, #0a0a0a 0%, #080808 40%, #050505 100%);
    color: #e6e4df;
    box-shadow: var(--rr-inset-highlight);
  }

  .featured-collection__inner {
    grid-column: 2;
  }

  .featured-collection__header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  }

  .featured-collection__heading {
    margin: 0;
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 300;
    letter-spacing: -0.015em;
    color: #f2f0eb;
  }

  .featured-collection__view {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(230, 228, 223, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: 0.15rem;
    transition: color 0.25s ease, border-color 0.25s ease;
  }

  .featured-collection__view:hover {
    color: rgba(244, 242, 237, 0.9);
    border-color: rgba(255, 255, 255, 0.35);
  }

  .featured-collection__grid {
    display: grid;
    gap: 0.65rem 0.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .featured-collection__empty {
    text-align: center;
    padding: clamp(2rem, 5vw, 3rem) 1rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.02);
  }

  .featured-collection__empty-line {
    width: 2rem;
    height: 1px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  }

  .featured-collection__empty-title {
    margin: 0;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 400;
    color: rgba(244, 242, 237, 0.92);
  }

  .featured-collection__empty-text {
    margin: 0.65rem auto 0;
    max-width: 28rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(230, 228, 223, 0.48);
  }

  .featured-collection__empty-link {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(230, 228, 223, 0.65);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.1rem;
  }

  .featured-collection__empty-link:hover {
    color: #f4f2ed;
  }

  .featured-collection .product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2px;
  }

  .featured-collection .product-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  }

  .featured-collection .product-card__title {
    color: #f0eeea;
  }

  .featured-collection .product-card__price {
    color: rgba(230, 228, 223, 0.72);
  }

  .featured-collection .product-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    color: #e6e4df;
  }

  .featured-collection .product-card__add {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #f4f2ed;
  }

  .featured-collection .product-card__add:hover:not(:disabled) {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
  }

/* ========== sections/footer.liquid ========== */
.site-footer {
    margin-top: auto;
    padding-block: clamp(3.5rem, 7vw, 5.5rem);
    background:
      radial-gradient(ellipse 95% 60% at 50% 0%, rgba(139, 115, 85, 0.07), transparent 52%),
      linear-gradient(180deg, #010101 0%, #040404 42%, #090909 100%);
    color: #ebe8e2;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.025),
      0 -40px 100px -70px rgba(0, 0, 0, 0.95);
    font-size: clamp(0.875rem, 0.92vw, 1rem);
    line-height: 1.55;
  }

  .site-footer__inner {
    max-width: min(95rem, 100%);
    margin-inline: auto;
    padding-inline: var(--page-margin);
  }

  .site-footer__services {
    list-style: none;
    margin: 1.75rem 0 0;
    padding: 1.35rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .site-footer__service-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(236, 234, 228, 0.82);
  }

  .site-footer__service-icon {
    flex-shrink: 0;
    display: flex;
    width: 2.125rem;
    height: 2.125rem;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(243, 241, 236, 0.65);
    background: rgba(255, 255, 255, 0.015);
  }

  .site-footer__service-icon .footer-icon {
    display: block;
    width: 1.125rem;
    height: 1.125rem;
  }

  .site-footer__service-title {
    margin: 0;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250, 248, 244, 0.9);
  }

  .site-footer__service-caption {
    margin: 0.3rem 0 0;
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgba(170, 168, 162, 0.78);
  }

  .site-footer__grid {
    display: grid;
    gap: clamp(2.25rem, 4.5vw, 3.25rem);
    grid-template-columns: 1fr;
  }

  @media (min-width: 640px) {
    .site-footer__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (min-width: 900px) {
    .site-footer__grid {
      grid-template-columns: minmax(0, 1.15fr) repeat(5, minmax(0, 1fr));
      column-gap: clamp(1.5rem, 2.5vw, 2.75rem);
      align-items: start;
    }
  }

  @media (min-width: 1200px) {
    .site-footer__grid {
      grid-template-columns: minmax(0, 1.25fr) repeat(5, minmax(0, 0.95fr));
    }
  }

  .site-footer__trust-line {
    margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(230, 228, 223, 0.42);
    text-align: center;
  }

  .site-footer__col-heading {
    margin: 0 0 1rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(200, 198, 192, 0.55);
  }

  .site-footer__wordmark {
    margin: 0 0 1.15rem;
    font-family: var(--font-display);
    font-size: clamp(0.875rem, 1.15vw, 1.0625rem);
    font-weight: 600;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: #f4f2ed;
  }

  .site-footer__col--brand .site-footer__col-heading {
    margin-top: 0;
  }

  .site-footer__brand-body {
    margin: 0;
    max-width: 22rem;
    color: rgba(248, 247, 244, 0.9);
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .site-footer__brand-body p {
    margin: 0 0 0.65rem;
  }

  .site-footer__brand-body p:last-child {
    margin-bottom: 0;
  }

  .site-footer__link-stack {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }

  .site-footer__link-stack a {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: rgba(248, 247, 244, 0.95);
    border-bottom: 1px solid transparent;
    width: fit-content;
    transition:
      color 0.25s var(--ease-out-expo),
      border-color 0.25s var(--ease-out-expo);
  }

  .site-footer__link-stack a:hover {
    color: #fff;
    border-bottom-color: rgba(139, 115, 85, 0.45);
  }

  .site-footer__link-stack a:focus-visible {
    outline: 2px solid rgba(139, 115, 85, 0.55);
    outline-offset: 3px;
    border-radius: 2px;
  }

  .site-footer__help-static {
    font-size: 0.8125rem;
    color: rgba(180, 178, 172, 0.72);
    letter-spacing: 0.04em;
  }

  .site-footer__social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .site-footer__icon-btn {
    display: flex;
    width: 2.625rem;
    height: 2.625rem;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(243, 241, 236, 0.72);
    background: rgba(255, 255, 255, 0.02);
    text-decoration: none;
    transition:
      border-color 0.28s var(--ease-out-expo, ease),
      color 0.28s var(--ease-out-expo, ease),
      background 0.28s var(--ease-out-expo, ease),
      box-shadow 0.28s var(--ease-out-expo, ease),
      transform 0.2s ease;
  }

  .site-footer__icon-btn .footer-icon {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
  }

  .site-footer__icon-btn:hover {
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 22px rgba(139, 115, 85, 0.12);
  }

  .site-footer__icon-btn:active {
    transform: scale(0.97);
  }

  .site-footer__icon-btn:focus-visible {
    outline: 2px solid rgba(139, 115, 85, 0.55);
    outline-offset: 3px;
  }

  .site-footer__social-dek {
    margin: 1rem 0 0;
    max-width: 16rem;
    font-size: 0.75rem;
    line-height: 1.55;
    color: rgba(160, 158, 152, 0.75);
  }

  .site-footer__muted {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(160, 158, 152, 0.65);
    line-height: 1.5;
  }

  .site-footer__rights {
    margin: 1.35rem 0 0;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: rgba(160, 158, 152, 0.72);
    line-height: 1.5;
  }

  .site-footer__bottom {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .site-footer__bottom-line {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
  }

  .site-footer__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    justify-content: center;
  }

  .site-footer__payments svg {
    height: 1.35rem;
    width: auto;
    opacity: 0.72;
  }

  .site-footer__powered {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(130, 128, 122, 0.55);
    text-align: center;
    width: 100%;
  }

  .site-footer__powered a {
    color: inherit;
  }

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

/* ========== sections/header.liquid ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(14, 14, 14, 0.78) 0%, rgba(8, 8, 8, 0.88) 100%);
    color: #e6e4df;
    border-bottom: 1px solid var(--rr-border-divider);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 12px 40px -24px rgba(0, 0, 0, 0.75),
      0 1px 0 rgba(139, 115, 85, 0.04);
  }

  @media (max-width: 749px) {
    .site-header {
      backdrop-filter: blur(12px) saturate(120%);
      -webkit-backdrop-filter: blur(12px) saturate(120%);
    }
  }

  .site-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 3.5rem;
    padding: 0.5rem var(--page-margin);
    width: 100%;
    max-width: min(95rem, 100%);
    margin-inline: auto;
    box-sizing: border-box;
  }

  .site-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #f4f2ed;
    flex-shrink: 0;
  }

  .site-header__logo-img {
    display: block;
    height: auto;
    max-height: var(--header-logo-max, 36px);
    width: auto;
    max-width: 10rem;
    object-fit: contain;
  }

  .site-header__logo-text {
    font-family: var(--font-display, Syne, system-ui, sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.48em;
    text-transform: uppercase;
    color: #f4f2ed;
  }

  .site-header__logo-amp {
    color: rgba(138, 138, 138, 0.85);
  }

  .site-header__nav--desktop {
    display: none;
  }

  @media (min-width: 750px) {
    .site-header__nav--desktop {
      display: block;
      flex: 1 1 auto;
    }

    .site-header__menu-btn {
      display: none !important;
    }
  }

  .site-header__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.25rem 1.1rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .site-header__list a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(230, 228, 223, 0.68);
    padding: 0.4rem 0.15rem;
    border-bottom: 1px solid transparent;
    transition:
      color 0.35s var(--ease-out-expo),
      border-color 0.35s var(--ease-out-expo),
      text-shadow 0.35s var(--ease-out-expo);
  }

  .site-header__list a:hover {
    color: #faf8f4;
    border-bottom-color: rgba(139, 115, 85, 0.45);
    text-shadow: 0 0 24px rgba(139, 115, 85, 0.25);
  }

  .site-header__list a:focus-visible {
    outline: none;
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 0 rgba(139, 115, 85, 0.35);
  }

  .site-header__tools {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
  }

  .site-header__menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: inherit;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition:
      border-color 0.3s var(--ease-out-expo),
      background-color 0.3s var(--ease-out-expo),
      box-shadow 0.3s var(--ease-out-expo);
  }

  .site-header__menu-btn:hover {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
  }

  .site-header__menu-icon {
    display: block;
    width: 1.1rem;
    height: 1px;
    background: currentcolor;
    box-shadow: 0 -0.35rem 0 currentcolor, 0 0.35rem 0 currentcolor;
  }

  .site-header__account svg,
  .site-header__cart-icon svg {
    width: 1.65rem;
    height: 1.65rem;
  }

  .site-header__cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
    padding: 0.25rem;
  }

  .site-header__cart-count {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.2rem;
    font-size: 0.62rem;
    font-weight: 600;
    line-height: 1.1rem;
    text-align: center;
    border-radius: 999px;
    background: rgba(244, 242, 237, 0.92);
    color: #080808;
  }

  .site-header__cart-count[data-count-zero='true'] {
    opacity: 0.45;
  }

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

  .site-header__dialog {
    margin: 0;
    margin-inline-start: auto;
    max-width: min(20rem, 100vw);
    width: 100%;
    height: 100%;
    max-height: 100%;
    border: none;
    padding: 0;
    background: transparent;
  }

  .site-header__dialog::backdrop {
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .site-header__dialog-panel {
    position: relative;
    height: 100%;
    background: linear-gradient(195deg, rgba(20, 20, 20, 0.94) 0%, rgba(6, 6, 6, 0.98) 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3.25rem 1.25rem 1.5rem;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      -16px 0 48px rgba(0, 0, 0, 0.55),
      -4px 0 80px -24px rgba(139, 115, 85, 0.08);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
  }

  .site-header__dialog-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.06);
    color: #f4f2ed;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
  }

  .site-header__dialog-close:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .site-header__list--drawer {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-header__list--drawer li {
    border-bottom: 1px solid var(--rr-border-divider);
  }

  .site-header__list--drawer a {
    display: block;
    min-height: 3rem;
    padding: 1.2rem 0;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    border-bottom: none;
    color: rgba(230, 228, 223, 0.78);
    transition: color 0.3s var(--ease-out-expo), padding-left 0.3s var(--ease-out-expo);
  }

  .site-header__list--drawer a:hover,
  .site-header__list--drawer a:focus-visible {
    color: #faf8f4;
    padding-left: 0.35rem;
  }

/* ========== sections/hello-world.liquid ========== */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }

/* ========== sections/home-brand-philosophy.liquid ========== */
.home-brand-philosophy {
    padding: clamp(3.5rem, 9vw, 6rem) 0;
    background: #080808;
    color: #e6e4df;
  }

  .home-brand-philosophy__inner {
    grid-column: 2;
    max-width: min(38rem, 100%);
    margin: 0 auto;
    padding-inline: var(--page-margin);
    text-align: center;
  }

  .home-brand-philosophy__eyebrow {
    margin: 0 0 1rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(230, 228, 223, 0.45);
  }

  .home-brand-philosophy__heading {
    margin: 0;
    font-size: clamp(1.5rem, 3.8vw, 2.35rem);
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #f4f2ed;
  }

  .home-brand-philosophy__rule {
    display: block;
    width: 2.5rem;
    height: 1px;
    margin: 1.75rem auto;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  }

  .home-brand-philosophy__body {
    margin: 0;
    text-align: left;
    font-size: clamp(0.95rem, 1.9vw, 1.05rem);
    line-height: 1.75;
    color: rgba(230, 228, 223, 0.62);
  }

  @media (max-width: 749px) {
    .home-brand-philosophy__eyebrow {
      letter-spacing: 0.3em;
    }
  }

/* ----- Mobile-first density + five-energy card consistency ----- */
@media (max-width: 749px) {
  .site-hero {
    min-height: 44vh;
    height: 44vh;
  }

  .site-hero__inner {
    padding: 4.5rem 1rem 1.5rem;
    gap: 0.85rem;
  }

  .site-hero__stack {
    gap: 0.65rem;
  }

  .site-main > .shopify-section > section {
    scroll-margin-top: 5.5rem;
  }

  .site-philosophy__inner,
  .site-story__inner,
  .site-manifesto__inner,
  .site-energy-map__inner,
  .site-energy__inner,
  .site-ritual-block__inner {
    padding-top: clamp(2.75rem, 8vw, 3.5rem);
    padding-bottom: clamp(2.75rem, 8vw, 3.5rem);
  }

  .site-philosophy__inner,
  .site-story__inner,
  .site-manifesto__inner,
  .site-energy-map__inner,
  .site-ritual-block__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-energy-map__heading,
  .site-philosophy__heading,
  .site-story__title,
  .site-manifesto__title {
    margin-top: 1rem;
    font-size: clamp(1.5rem, 7.2vw, 2rem);
    line-height: 1.08;
  }

  .site-energy-map__dek,
  .site-energy__dek,
  .site-story__body,
  .site-philosophy__lead {
    margin-top: 0.85rem;
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .site-energy-map__stage {
    margin-top: 1.35rem;
  }

  .site-energy-map__graph {
    aspect-ratio: 1 / 1;
    max-width: 100%;
  }

  .site-energy-entries__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.48rem;
  }

  .site-energy-entries__item {
    min-width: 0;
    grid-column: span 2;
  }

  .site-energy-entries__item:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .site-energy-entries__item:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .site-energy-card {
    display: grid;
    grid-template-columns: 2px 1fr auto;
    align-items: stretch;
    min-height: 76px;
    width: 100%;
  }

  .site-energy-card__rail {
    width: 3px;
    height: 100%;
  }

  .site-energy-card__body {
    min-width: 0;
    padding: 0.65rem 0.75rem;
  }

  .site-energy-card__meta {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.25rem 0.4rem;
  }

  .site-energy-card__index {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }

  .site-energy-card__line,
  .site-energy-card__name {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .site-energy-card__dek {
    margin-top: 0.45rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .site-energy-card__cta {
    display: inline-flex;
    align-items: center;
    padding: 0 0.6rem;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }

  .site-manifesto__list {
    margin-top: 1.6rem;
    gap: 0.9rem;
  }

  .site-manifesto__row {
    gap: 0.45rem;
    padding-bottom: 1rem;
  }

  .site-story__body {
    margin-top: 1.25rem;
    gap: 1rem;
  }

  /* Mobile-first homepage section order (class-based, robust) */
  #main-content.site-main {
    display: flex;
    flex-direction: column;
  }

  #main-content.site-main > .section-home-hero {
    order: 10;
  }

  #main-content.site-main > .section-home-newsletter {
    order: 20;
  }

  /* Five energies */
  #main-content.site-main > .section-site-featured-collections {
    order: 30;
  }
  #main-content.site-main > .section-home-energy-ritual {
    order: 40;
  }
  #main-content.site-main > .section-home-ritual-practice {
    order: 50;
  }

  /* Product */
  #main-content.site-main > .section-home-field-featured-products {
    order: 60;
  }
  #main-content.site-main > .section-home-product-showcase {
    order: 70;
  }

  /* Map */
  #main-content.site-main > .section-site-energy-map {
    order: 80;
  }

  /* FAQ/Questions */
  #main-content.site-main > .section-home-journal-preview {
    order: 90;
  }

  /* Others */
  #main-content.site-main > .section-home-lifestyle-gallery {
    order: 100;
  }
  #main-content.site-main > .section-home-brand-philosophy {
    order: 110;
  }
  #main-content.site-main > .section-home-story {
    order: 120;
  }
  #main-content.site-main > .section-home-manifesto-lines {
    order: 130;
  }
}


/* Force homepage section priority order (map/ritual first, philosophy later) */
.template-index #main-content {
  display: flex;
  flex-direction: column;
}

.template-index #main-content .section-home-hero { order: 10; }
.template-index #main-content .section-site-energy-map { order: 20; }
.template-index #main-content .section-home-energy-ritual { order: 30; }
.template-index #main-content .section-home-ritual-practice { order: 40; }
.template-index #main-content .section-home-newsletter { order: 50; }
.template-index #main-content .section-site-featured-collections { order: 60; }
.template-index #main-content .section-home-field-featured-products { order: 70; }
.template-index #main-content .section-home-product-showcase { order: 80; }
.template-index #main-content .section-home-lifestyle-gallery { order: 90; }
.template-index #main-content .section-home-journal-preview { order: 100; }
.template-index #main-content .section-home-brand-philosophy { order: 110; }
.template-index #main-content .section-home-story { order: 120; }
.template-index #main-content .section-home-manifesto-lines { order: 130; }

/* ========== sections/home-energy-collections.liquid ========== */
.home-energy-collections {
    padding: clamp(3rem, 8vw, 5.5rem) 0;
    background: var(--rr-surface-b);
    color: #e6e4df;
    box-shadow: var(--rr-inset-highlight);
  }

  .home-energy-collections__inner {
    grid-column: 2;
    padding-inline: var(--page-margin);
  }

  .home-energy-collections__header {
    max-width: 36rem;
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
  }

  .home-energy-collections__eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.68rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(230, 228, 223, 0.42);
  }

  .home-energy-collections__heading {
    margin: 0;
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 300;
    letter-spacing: -0.015em;
    color: #f2f0eb;
  }

  .home-energy-collections__sub {
    margin: 0.85rem 0 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(230, 228, 223, 0.52);
  }

  .home-energy-collections__empty {
    font-size: 0.95rem;
    color: rgba(230, 228, 223, 0.45);
  }

  .home-energy-collections__grid {
    display: grid;
    gap: 1rem 1.1rem;
    grid-template-columns: repeat(var(--ec-cols-m), minmax(0, 1fr));
  }

  @media (min-width: 750px) {
    .home-energy-collections__grid {
      grid-template-columns: repeat(var(--ec-cols), minmax(0, 1fr));
    }
  }

  .collection-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: #e8e6e1;
    border-radius: 2px;
    overflow: hidden;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @media (prefers-reduced-motion: reduce) {
    .collection-card {
      transition: border-color 0.2s ease;
    }
  }

  .collection-card:hover,
  .collection-card:focus-visible {
    border-color: rgba(255, 255, 255, 0.16);
  }

  .collection-card:focus-visible {
    outline: 1px solid rgba(255, 255, 255, 0.35);
    outline-offset: 3px;
  }

  .collection-card--film .collection-card__media {
    aspect-ratio: 21 / 12;
  }

  .collection-card--square .collection-card__media {
    aspect-ratio: 1;
  }

  .collection-card__media {
    position: relative;
    overflow: hidden;
  }

  .collection-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    opacity: 0.88;
  }

  @media (prefers-reduced-motion: reduce) {
    .collection-card__img {
      transition: none;
      transform: none;
    }
  }

  .collection-card:hover .collection-card__img {
    transform: scale(1.06);
    opacity: 0.95;
  }

  .collection-card__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
  }

  .collection-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 8rem;
    background: #141414;
  }

  .collection-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1rem 1.15rem;
  }

  .collection-card__title {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .collection-card__hint {
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(232, 230, 225, 0.5);
  }

/* ========== sections/home-featured-collection.liquid ========== */
.home-featured--cinema {
    padding-block: clamp(3rem, 7vw, 5rem);
    background: #080808;
    color: #e6e4df;
  }

  .home-featured--cinema .home-featured__heading {
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 300;
    letter-spacing: -0.015em;
    color: #f2f0eb;
  }

  .home-featured--cinema .home-featured__link {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-bottom-color: rgba(255, 255, 255, 0.22);
  }

  .home-featured--cinema .home-featured__empty {
    color: rgba(230, 228, 223, 0.45);
  }

  .home-featured--cinema .product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .home-featured--cinema .product-card__title a {
    color: #f0eeea;
  }

  .home-featured--cinema .product-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  }

  .home-featured__header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
  }

  .home-featured__heading {
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 700;
  }

  .home-featured__link {
    color: inherit;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid color-mix(in oklab, currentcolor 35%, transparent);
  }

  .home-featured__link:hover {
    opacity: 0.85;
  }

  .home-featured__empty {
    opacity: 0.75;
  }

  .home-featured__grid {
    list-style: none;
    margin: 0;
    padding: 0;
  }

/* ========== sections/home-hero.liquid ========== */
.home-hero {
    position: relative;
    background: #070707;
    color: #e6e4df;
  }

  .home-hero__frame {
    position: relative;
    display: grid;
    place-items: center;
    min-height: var(--hero-min-height);
    overflow: hidden;
  }

  .home-hero__frame--letterbox {
    min-height: calc(var(--hero-min-height) + 8vh);
  }

  .home-hero__frame--letterbox::before,
  .home-hero__frame--letterbox::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    z-index: 3;
    height: 4vh;
    min-height: 1.25rem;
    background: #020202;
    pointer-events: none;
  }

  .home-hero__frame--letterbox::before {
    top: 0;
  }

  .home-hero__frame--letterbox::after {
    bottom: 0;
  }

  .home-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(120% 80% at 50% 40%, #121212 0%, #050505 62%, #020202 100%);
  }

  .home-hero__bg--drift .home-hero__img {
    animation: home-hero-drift 28s ease-in-out infinite alternate;
  }

  @media (prefers-reduced-motion: reduce) {
    .home-hero__bg--drift .home-hero__img {
      animation: none;
    }
  }

  @keyframes home-hero-drift {
    from {
      transform: scale(1) translate3d(0, 0, 0);
    }

    to {
      transform: scale(1.06) translate3d(-0.8%, -0.3%, 0);
    }
  }

  .home-hero__media {
    position: absolute;
    inset: 0;
  }

  .home-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
  }

  .home-hero__wash {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      165deg,
      rgba(0, 0, 0, calc(var(--hero-overlay) * 0.55)) 0%,
      rgba(0, 0, 0, calc(var(--hero-overlay) * 0.92)) 48%,
      rgba(0, 0, 0, calc(var(--hero-overlay) * 1)) 100%
    );
  }

  .home-hero__vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(ellipse 85% 70% at 50% 45%, transparent 30%, rgba(0, 0, 0, 0.55) 100%);
  }

  .home-hero__grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.22;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
  }

  .home-hero__inner {
    position: relative;
    z-index: 4;
    width: min(var(--hero-content-max), 100%);
    padding: clamp(2.75rem, 8vw, 5rem) max(var(--page-margin), 1.25rem);
    text-align: var(--hero-align);
  }

  .home-hero__eyebrow {
    margin: 0 0 1.25rem;
    font-size: clamp(0.65rem, 1.5vw, 0.72rem);
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(230, 228, 223, 0.55);
    animation: home-hero-fade-up 1.35s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
  }

  .home-hero__heading {
    margin: 0;
    max-width: 14ch;
    font-size: clamp(2.15rem, 6.2vw, 3.75rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #f2f0eb;
    text-wrap: balance;
    animation: home-hero-fade-up 1.45s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
  }

  .home-hero__inner--center .home-hero__heading {
    margin-inline: auto;
  }

  .home-hero__inner--right .home-hero__heading {
    margin-inline-start: auto;
  }

  .home-hero__subheading {
    margin: 1.35rem 0 0;
    max-width: 36ch;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(230, 228, 223, 0.62);
    text-wrap: pretty;
    animation: home-hero-fade-up 1.55s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
  }

  .home-hero__inner--center .home-hero__subheading {
    margin-inline: auto;
  }

  .home-hero__inner--right .home-hero__subheading {
    margin-inline-start: auto;
  }

  .home-hero__cta-wrap {
    margin-top: clamp(2rem, 5vw, 2.75rem);
    animation: home-hero-fade-up 1.65s cubic-bezier(0.16, 1, 0.3, 1) 0.48s both;
  }

  @keyframes home-hero-fade-up {
    from {
      opacity: 0;
      transform: translate3d(0, 10px, 0);
    }

    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .home-hero__eyebrow,
    .home-hero__heading,
    .home-hero__subheading,
    .home-hero__cta-wrap {
      animation: none;
      opacity: 1;
      transform: none;
    }
  }

  .home-hero__cta {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.35rem 0;
    text-decoration: none;
    color: rgba(242, 240, 235, 0.88);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  }

  .home-hero__cta:hover,
  .home-hero__cta:focus-visible {
    color: #fff;
  }

  .home-hero__cta:focus-visible {
    outline: 1px solid rgba(255, 255, 255, 0.35);
    outline-offset: 0.35rem;
  }

  .home-hero__cta-line {
    display: block;
    height: 1px;
    width: 100%;
    min-width: 3.5rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
    transform-origin: left center;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  }

  .home-hero__cta:hover .home-hero__cta-line,
  .home-hero__cta:focus-visible .home-hero__cta-line {
    transform: scaleX(1.08);
    opacity: 0.95;
  }

  .home-hero--solid .home-hero__cta {
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1.35rem;
    letter-spacing: 0.18em;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
  }

  .home-hero--solid .home-hero__cta-line {
    display: none;
  }

  .home-hero--solid .home-hero__cta:hover,
  .home-hero--solid .home-hero__cta:focus-visible {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.07);
  }

  .home-hero__inner--center .home-hero__cta {
    align-items: center;
  }

  .home-hero__inner--center .home-hero__cta-line {
    margin-inline: auto;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  }

  .home-hero__inner--right .home-hero__cta {
    align-items: flex-end;
  }

  .home-hero__inner--right .home-hero__cta-line {
    transform-origin: right center;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
  }

  @media (max-width: 749px) {
    .home-hero__eyebrow {
      letter-spacing: 0.28em;
    }

    .home-hero__heading {
      max-width: none;
    }

    .home-hero__cta {
      min-height: 2.75rem;
      justify-content: center;
    }
  }

/* ========== sections/home-rich-text.liquid ========== */
.home-rich-text {
    padding-block: clamp(2rem, 5vw, 3.5rem);
    text-align: var(--hrt-align);
  }

  .home-rich-text__heading {
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .home-rich-text__body {
    max-width: 62ch;
    margin-inline: auto;
    line-height: 1.65;
  }

  .home-rich-text__body :where(p, ul, ol) + :where(p, ul, ol) {
    margin-top: 1rem;
  }

  .home-rich-text__button {
    display: inline-flex;
    margin-top: 1.5rem;
    padding: 0.75rem 1.2rem;
    border-radius: var(--style-border-radius-inputs);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid color-mix(in oklab, var(--color-foreground) 25%, transparent);
    color: inherit;
    transition: background-color 160ms ease, color 160ms ease;
  }

  .home-rich-text__button:hover {
    background: var(--color-foreground);
    color: var(--color-background);
  }

/* ========== sections/home-ritual-lifestyle.liquid ========== */
.home-ritual {
    padding: clamp(3rem, 8vw, 5.5rem) 0;
    background: #0a0a0a;
    color: #e6e4df;
  }

  .home-ritual__grid {
    grid-column: 2;
    display: grid;
    gap: clamp(1.75rem, 4vw, 2.5rem);
    align-items: center;
    padding-inline: var(--page-margin);
  }

  @media (min-width: 900px) {
    .home-ritual--stacked .home-ritual__grid {
      grid-template-columns: minmax(0, 1fr);
      max-width: 38rem;
      margin-inline: auto;
    }

    .home-ritual--stacked .home-ritual__media {
      aspect-ratio: 16 / 10;
    }
  }

  @media (min-width: 900px) {
    .home-ritual--image_left .home-ritual__grid {
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    }

    .home-ritual--image_right .home-ritual__grid {
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }

    .home-ritual--image_right .home-ritual__media {
      order: 2;
    }

    .home-ritual--image_right .home-ritual__copy {
      order: 1;
    }
  }

  .home-ritual__media {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    aspect-ratio: 4 / 5;
  }

  @media (max-width: 899px) {
    .home-ritual__media {
      aspect-ratio: 16 / 11;
    }
  }

  .home-ritual__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
  }

  .home-ritual__media-placeholder {
    width: 100%;
    height: 100%;
    background: #141414;
  }

  .home-ritual__media-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
  }

  .home-ritual__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.68rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(230, 228, 223, 0.42);
  }

  .home-ritual__heading {
    margin: 0;
    font-size: clamp(1.45rem, 3.2vw, 2rem);
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #f4f2ed;
  }

  .home-ritual__body {
    margin-top: 1.25rem;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(230, 228, 223, 0.58);
  }

  .home-ritual__cta {
    display: inline-flex;
    margin-top: 1.75rem;
    padding: 0.65rem 0;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(244, 242, 237, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    transition: color 0.4s ease, border-color 0.4s ease;
  }

  .home-ritual__cta:hover,
  .home-ritual__cta:focus-visible {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
  }

  .home-ritual__cta:focus-visible {
    outline: 1px solid rgba(255, 255, 255, 0.35);
    outline-offset: 0.35rem;
  }

/* ========== sections/home-social-proof.liquid ========== */
.home-social {
    padding: clamp(3rem, 8vw, 5.25rem) 0;
    background: #060606;
    color: #e6e4df;
  }

  .home-social__inner {
    grid-column: 2;
    padding-inline: var(--page-margin);
    max-width: min(52rem, 100%);
    margin: 0 auto;
  }

  .home-social__eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.68rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(230, 228, 223, 0.4);
    text-align: center;
  }

  .home-social__heading {
    margin: 0 0 clamp(2rem, 4vw, 2.75rem);
    font-size: clamp(1.2rem, 2.4vw, 1.5rem);
    font-weight: 300;
    text-align: center;
    letter-spacing: -0.01em;
    color: #f0eeea;
  }

  .home-social__empty {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(230, 228, 223, 0.45);
  }

  .home-social__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: clamp(1.75rem, 3vw, 2.25rem);
  }

  @media (min-width: 750px) {
    .home-social__list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  .home-social__item {
    margin: 0;
  }

  .home-social__quote {
    margin: 0;
    padding: 1.35rem 1.25rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 2px;
    min-height: 100%;
  }

  .home-social__quote p {
    margin: 0;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.65;
    font-weight: 400;
    color: rgba(232, 230, 225, 0.78);
  }

  .home-social__byline {
    margin-top: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .home-social__author {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 242, 237, 0.55);
  }

  .home-social__role {
    font-size: 0.8rem;
    color: rgba(230, 228, 223, 0.38);
  }

/* ========== sections/main-cart.liquid ========== */
.main-cart {
    padding-block: clamp(1rem, 3vw, 2rem);
    background: #080808;
    color: #e6e4df;
  }

  .main-cart__inner {
    grid-column: 2;
    max-width: min(40rem, 100%);
    margin-inline: auto;
    padding-inline: var(--page-margin);
  }

  .main-cart__title {
    margin: 0 0 clamp(1rem, 2.5vw, 1.5rem);
    font-size: clamp(1.2rem, 3vw, 1.65rem);
    font-weight: 400;
    letter-spacing: -0.015em;
    color: #f4f2ed;
  }

  .main-cart__empty {
    text-align: center;
    padding: clamp(2rem, 5vw, 3rem) 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.02);
  }

  .main-cart__empty-line {
    width: 2rem;
    height: 1px;
    margin: 0 auto 1rem;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  }

  .main-cart__empty-text {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(230, 228, 223, 0.55);
    line-height: 1.5;
  }

  .main-cart__empty-cta {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(244, 242, 237, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 0.15rem;
  }

  .main-cart__empty-cta:hover {
    color: #fff;
  }

  .main-cart__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .main-cart__item {
    display: grid;
    grid-template-columns: 4.5rem minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.02);
  }

  @media (min-width: 600px) {
    .main-cart__item {
      grid-template-columns: 5.5rem minmax(0, 1fr);
      gap: 1rem;
      padding: 1rem;
    }
  }

  .main-cart__thumb {
    display: block;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
  }

  .main-cart__thumb-fallback {
    display: block;
    aspect-ratio: 1;
    background: #141414;
  }

  .main-cart__item-main {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
  }

  .main-cart__product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f2f0eb;
    text-decoration: none;
    line-height: 1.3;
  }

  .main-cart__product-title:hover {
    text-decoration: underline;
  }

  .main-cart__variant {
    margin: 0.15rem 0 0;
    font-size: 0.8rem;
    color: rgba(230, 228, 223, 0.5);
  }

  .main-cart__item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.75rem 1.25rem;
    margin-top: 0.25rem;
  }

  .main-cart__label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(230, 228, 223, 0.4);
    margin-bottom: 0.25rem;
  }

  .main-cart__qty {
    width: 4rem;
    padding: 0.45rem 0.4rem;
    font-size: 0.95rem;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    color: #f4f2ed;
  }

  .main-cart__line-price-value {
    font-size: 0.95rem;
    font-variant-numeric: tabular-nums;
    color: rgba(244, 242, 237, 0.92);
  }

  .main-cart__item-foot {
    margin-top: auto;
    padding-top: 0.25rem;
  }

  .main-cart__remove {
    font-size: 0.78rem;
    color: rgba(230, 228, 223, 0.55);
    text-decoration: underline;
    text-underline-offset: 0.2rem;
  }

  .main-cart__remove:hover {
    color: rgba(244, 242, 237, 0.9);
  }

  .main-cart__summary {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-cart__subtotal {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: rgba(230, 228, 223, 0.75);
  }

  .main-cart__subtotal-value {
    color: #f4f2ed;
    font-weight: 600;
  }

  .main-cart__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  @media (min-width: 480px) {
    .main-cart__actions {
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
    }
  }

  .main-cart__btn {
    padding: 0.75rem 1rem;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    border: 1px solid transparent;
    text-align: center;
  }

  .main-cart__btn--secondary {
    flex: 1 1 auto;
    border-color: rgba(255, 255, 255, 0.18);
    background: transparent;
    color: rgba(244, 242, 237, 0.85);
  }

  .main-cart__btn--secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
  }

  .main-cart__btn--checkout {
    flex: 1 1 auto;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: #f4f2ed;
  }

  .main-cart__btn--checkout:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.32);
  }

  .main-cart .image > img {
    width: 100%;
    height: auto;
    display: block;
  }

/* ========== sections/main-collection-product-grid.liquid ========== */
.main-collection-product-grid {
    padding-block: clamp(2rem, 5vw, 3.5rem);
    background:
      radial-gradient(ellipse 80% 45% at 50% 0%, rgba(139, 115, 85, 0.04), transparent 50%),
      #050505;
    color: #ebe8e2;
  }

  .main-collection-product-grid__header {
    margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  }

  .main-collection-product-grid__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 600;
    line-height: 1.15;
    color: #f4f2ed;
  }

  .main-collection-product-grid__description {
    margin-top: 0.65rem;
    max-width: 70ch;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.88;
  }

  .main-collection-product-grid__grid {
    display: grid;
    gap: 0.75rem 0.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .main-collection-product-grid__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: clamp(2rem, 5vw, 3rem) 1rem;
    border: 1px solid color-mix(in oklab, var(--color-foreground) 10%, transparent);
    border-radius: var(--style-border-radius-inputs);
    background: color-mix(in oklab, var(--color-foreground) 3%, var(--color-background));
  }

  .main-collection-product-grid__empty-line {
    width: 2rem;
    height: 1px;
    margin: 0 auto 1rem;
    background: linear-gradient(
      90deg,
      transparent,
      color-mix(in oklab, var(--color-foreground) 30%, transparent),
      transparent
    );
  }

  .main-collection-product-grid__empty-title {
    margin: 0;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 600;
  }

  .main-collection-product-grid__empty-text {
    margin: 0.5rem auto 0;
    max-width: 28rem;
    font-size: 0.9rem;
    line-height: 1.55;
    opacity: 0.75;
  }

  .main-collection-product-grid__empty-link {
    display: inline-block;
    margin-top: 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: inherit;
  }

  .main-collection-product-grid__pagination {
    margin-top: 1.5rem;
  }

/* ========== sections/main-product.liquid ========== */
.main-product {
    padding-block: clamp(1rem, 3vw, 2rem);
    background: #080808;
    color: #e6e4df;
  }

  .main-product__inner {
    grid-column: 2;
    max-width: min(72rem, 100%);
    margin-inline: auto;
    padding-inline: var(--page-margin);
  }

  .main-product__layout {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 3vw, 2rem);
  }

  @media (min-width: 900px) {
    .main-product__layout {
      flex-direction: row;
      align-items: flex-start;
      gap: clamp(1.5rem, 3vw, 2.5rem);
    }

    .main-product__media {
      flex: 1 1 52%;
      min-width: 0;
    }

    .main-product__panel {
      flex: 1 1 42%;
      min-width: 0;
    }
  }

  .main-product__gallery {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .main-product__figure {
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #0d0d0d;
  }

  .main-product__figure--primary {
    border-color: rgba(255, 255, 255, 0.1);
  }

  .main-product__figure .image {
    width: 100%;
  }

  .main-product__figure .image > img {
    width: 100%;
    height: auto;
    display: block;
  }

  .main-product__media-placeholder {
    aspect-ratio: 1;
    min-height: 14rem;
    border-radius: 2px;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .main-product__title {
    margin: 0;
    font-size: clamp(1.35rem, 4.5vw, 2rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #f4f2ed;
  }

  .main-product__price {
    margin-top: 0.65rem;
  }

  .main-product .price {
    color: rgba(230, 228, 223, 0.88);
  }

  .main-product .price__compare {
    color: rgba(230, 228, 223, 0.45);
  }

  .main-product__description {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(230, 228, 223, 0.62);
  }

  .main-product__form {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .main-product__label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(230, 228, 223, 0.45);
    margin-bottom: 0.35rem;
  }

  .main-product__select,
  .main-product__qty {
    width: 100%;
    max-width: 100%;
    padding: 0.65rem 0.75rem;
    font-size: 1rem;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    color: #f4f2ed;
  }

  @media (min-width: 900px) {
    .main-product__select,
    .main-product__qty {
      max-width: 16rem;
    }
  }

  .main-product__qty {
    max-width: 6rem;
  }

  .main-product__actions {
    margin-top: 0.25rem;
  }

  .main-product__submit {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    color: #f4f2ed;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
  }

  @media (min-width: 900px) {
    .main-product__submit {
      width: auto;
      min-width: 12rem;
    }
  }

  .main-product__submit:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .main-product__submit:disabled {
    opacity: 0.45;
    cursor: not-allowed;
  }

  .main-product__wallet {
    margin-top: 0.35rem;
  }

  .main-product__wallet[hidden] {
    display: none !important;
  }

  .main-product__trust {
    margin-top: 1rem;
  }

  .product-trust-strip {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-block: 0.75rem;
  }

  .product-trust-strip__item {
    margin: 0;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(230, 228, 223, 0.38);
  }

  .main-product__commerce {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .main-product__subheading {
    margin: 0 0 0.75rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(230, 228, 223, 0.5);
  }

  .main-product__specs {
    margin: 0;
    display: grid;
    gap: 0.65rem;
  }

  .main-product__spec-row {
    display: grid;
    grid-template-columns: minmax(0, 7rem) minmax(0, 1fr);
    gap: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.45;
    color: rgba(230, 228, 223, 0.72);
  }

  .main-product__spec-row dt {
    margin: 0;
    color: rgba(230, 228, 223, 0.42);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .main-product__spec-row dd {
    margin: 0;
  }

  .main-product__lifestyle {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(230, 228, 223, 0.68);
  }

  .main-product__note-title {
    margin: 0 0 0.35rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(230, 228, 223, 0.45);
  }

  .main-product__note {
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(230, 228, 223, 0.58);
  }

  .main-product__note p {
    margin: 0;
  }

  .main-product__faq {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .main-product__faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .main-product__faq-summary {
    cursor: pointer;
    list-style: none;
    padding: 0.85rem 0;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(244, 242, 237, 0.88);
  }

  .main-product__faq-summary::-webkit-details-marker {
    display: none;
  }

  .main-product__faq-body {
    padding: 0 0 1rem;
    font-size: 0.82rem;
    color: rgba(230, 228, 223, 0.62);
  }

  .main-product__related {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    padding-top: clamp(1.75rem, 3vw, 2.5rem);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .main-product__related-title {
    margin: 0 0 1.25rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(230, 228, 223, 0.45);
  }

  .main-product__related-grid {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  @media (max-width: 599px) {
    .main-product__submit {
      min-height: 3rem;
      font-size: 0.75rem;
      padding: 1rem 1.1rem;
    }

    .main-product__select,
    .main-product__qty {
      min-height: 3rem;
      font-size: 1rem;
    }

    .main-product__spec-row {
      grid-template-columns: 1fr;
      gap: 0.25rem;
    }
  }

/* ========== sections/page.liquid ========== */
.page-main {
    width: 100%;
    max-width: min(72rem, 100%);
    margin: 0 auto;
    padding: clamp(1.25rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.5rem);
  }

  .page-main__title {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 500;
    color: #f4f2ed;
  }

  .page-main__content {
    color: rgba(230, 228, 223, 0.88);
    line-height: 1.55;
  }

  .page-main--discovery {
    box-sizing: border-box;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
  }

  body.site-body--discovery-page {
    background-color: #050505;
    background-image:
      radial-gradient(ellipse 120% 80% at 50% -10%, rgba(139, 115, 85, 0.09), transparent 55%),
      radial-gradient(ellipse 70% 50% at 80% 100%, rgba(255, 255, 255, 0.025), transparent 50%),
      linear-gradient(180deg, #050505 0%, #0b0b0b 42%, #111111 100%);
  }

  body.site-body--discovery-page .site-main {
    background: transparent;
  }

  body.site-body--discovery-page .site-main > .shopify-section {
    box-shadow: none;
  }

/* ========== sections/product.liquid ========== */
.product {
    display: grid;
    gap: 2rem;
    padding-block: clamp(1.5rem, 4vw, 2.5rem);
  }

  @media (min-width: 900px) {
    .product {
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      align-items: start;
    }
  }

  .product__media {
    display: grid;
    gap: 0.75rem;
  }

  .product__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.15;
    font-weight: 700;
  }

  .product__description {
    margin-top: 1rem;
    line-height: 1.65;
  }

  .product__form {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .product__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
  }

  .product__select,
  .product__form input[type='number'] {
    width: 100%;
    max-width: 16rem;
    padding: 0.55rem 0.65rem;
  }

  .product__add {
    width: fit-content;
    min-width: 12rem;
    padding: 0.85rem 1.25rem;
    border: 0;
    border-radius: var(--style-border-radius-inputs);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    color: var(--color-background);
    background: var(--color-foreground);
  }

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

  .product__dynamic-checkout {
    margin-top: 0.5rem;
  }

/* ========== sections/search.liquid ========== */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }

/* ========== Discovery cinematic (page + section) ========== */
@keyframes er-discovery-fade {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .discovery-page .site-energy-ritual__step,
  .discovery-page .site-energy-ritual__result--discovery {
    animation: none !important;
  }
}

.discovery-page {
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  min-height: min(100dvh, 100vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 10vw, 6.5rem) clamp(1.25rem, 4vw, 3rem) clamp(5rem, 12vw, 8rem);
  color: var(--rr-mist);
  background: linear-gradient(185deg, #050505 0%, #0b0b0b 38%, #111111 100%);
  overflow-x: clip;
}

.discovery-page__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(139, 115, 85, 0.11), transparent 58%),
    radial-gradient(ellipse 55% 40% at 12% 88%, rgba(255, 255, 255, 0.04), transparent 55%),
    radial-gradient(ellipse 50% 38% at 92% 72%, rgba(139, 115, 85, 0.06), transparent 52%);
  opacity: 1;
}

.discovery-page__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image: var(--rr-noise);
  mix-blend-mode: overlay;
}

.discovery-page__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 72% 62% at 50% 48%, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
}

.discovery-page__inner {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
  max-width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(2.5rem, 6vw, 4.5rem);
}

.discovery-page__hero {
  text-align: center;
  max-width: 56rem;
  margin-inline: auto;
}

.discovery-page__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: rgba(138, 138, 138, 0.85);
}

.discovery-page__title {
  margin: 1.1rem 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 5.2vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #f3f1ec;
}

.discovery-page__title--section {
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
}

.discovery-page__lede {
  margin: 1.15rem auto 0;
  max-width: 38rem;
  font-size: clamp(0.95rem, 1.65vw, 1.1rem);
  line-height: 1.65;
  color: rgba(200, 198, 192, 0.82);
}

.discovery-page__lede--tight {
  margin-top: 0.35rem;
}

.discovery-page__stage {
  width: 100%;
  display: flex;
  justify-content: center;
}

.discovery-page__inner .discovery-page-fixed__shell--ritual {
  width: 100%;
}

.discovery-page .site-energy__inner--discovery-page {
  width: 100%;
  max-width: min(1100px, 100%);
  padding: 0;
}

.discovery-page .site-energy__panel-wrap {
  margin: 0;
  max-width: none;
  width: 100%;
}

.discovery-page .site-energy__footer {
  margin-top: clamp(2rem, 5vw, 3rem);
  max-width: 40rem;
}

.discovery-page .site-energy-ritual {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: min(1100px, 100%);
  min-height: max(500px, min(520px, 72vh));
  margin: 0 auto;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.25rem, 3vw, 2.5rem) clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.045) 0%,
    rgba(8, 8, 8, 0.42) 42%,
    rgba(5, 5, 5, 0.72) 100%
  );
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 40px 100px -48px rgba(0, 0, 0, 0.85);
}

.discovery-page .site-energy-ritual__active {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.discovery-page .site-energy-ritual__field {
  display: none;
}

.discovery-page .site-energy-ritual__step {
  flex: 1 1 auto;
  max-height: none;
  min-height: 0;
  position: relative;
  justify-content: center;
  padding-top: clamp(2.5rem, 5vw, 3.25rem);
  gap: clamp(1.25rem, 3vw, 2rem);
  animation: er-discovery-fade 0.5s var(--ease-out-expo) both;
}

.discovery-page .site-energy-ritual__step-head {
  position: absolute;
  top: clamp(1rem, 2.5vw, 1.5rem);
  right: clamp(1rem, 2.5vw, 1.75rem);
  width: auto;
  margin: 0;
  z-index: 3;
}

.discovery-page .site-energy-ritual__progress-cluster {
  align-items: flex-end;
  gap: 0.5rem;
  min-width: 8.5rem;
}

.discovery-page .site-energy-ritual__progress-line {
  max-width: 12rem;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.discovery-page .site-energy-ritual__progress-line > span {
  background: linear-gradient(90deg, rgba(139, 115, 85, 0.5), rgba(243, 243, 243, 0.28));
}

.discovery-page .site-energy-ritual__progress {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: rgba(200, 198, 192, 0.75);
}

.discovery-page .site-energy-ritual__dot {
  width: 7px;
  height: 7px;
}

.discovery-page .site-energy-ritual__q {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  max-width: 48rem;
  margin-inline: auto;
}

.discovery-page .site-energy-ritual__opts {
  margin-top: 0.5rem;
  overflow: visible;
  flex: 0 1 auto;
}

.discovery-page .site-energy-ritual__opts-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .discovery-page .site-energy-ritual__opts-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
  }
}

.discovery-page .site-energy-ritual__btn {
  box-sizing: border-box;
  min-height: clamp(4.25rem, 9vw, 5.5rem);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(0.8rem, 1.25vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.35;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(243, 243, 243, 0.94);
}

.discovery-page .site-energy-ritual__btn:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 28px rgba(139, 115, 85, 0.1);
}

.discovery-page .site-energy-ritual__btn:active {
  transform: scale(0.988);
  border-color: rgba(139, 115, 85, 0.35);
}

.discovery-page .site-energy-ritual__btn.is-picked {
  border-color: rgba(139, 115, 85, 0.55);
  background: rgba(139, 115, 85, 0.14);
  box-shadow: 0 0 36px rgba(139, 115, 85, 0.14);
}

.discovery-page .site-energy-ritual__result--discovery {
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  padding: clamp(0.5rem, 2vw, 1.5rem) 0;
  animation: er-discovery-fade 0.65s var(--ease-out-expo) both;
}

.discovery-page .site-energy-ritual__result-field-label {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(180, 178, 172, 0.78);
}

.discovery-page .site-energy-ritual__result-energy {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f6f4ef;
}

.discovery-page .site-energy-ritual__result-title {
  margin: 1rem auto 0;
  max-width: 38rem;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.discovery-page .site-energy-ritual__result-sub {
  margin: 0.5rem auto 0;
  max-width: 34rem;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.65;
  color: rgba(195, 193, 188, 0.88);
}

.discovery-page .site-energy-ritual__result-products {
  margin-top: clamp(1.25rem, 3vw, 2rem);
  width: 100%;
  text-align: left;
}

.discovery-page .site-energy-ritual__result-products-inner {
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
}

.discovery-page .discovery-result-catalog__label {
  margin: 0 0 0.75rem;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(160, 158, 152, 0.85);
  text-align: center;
}

.discovery-page .site-energy-ritual__result-products .discovery-result-catalog__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

@media (min-width: 900px) {
  .discovery-page .site-energy-ritual__result-products .discovery-result-catalog__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.discovery-page .site-energy-ritual__result-products .discovery-result-p {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition:
    border-color 0.3s var(--ease-out-expo),
    box-shadow 0.3s var(--ease-out-expo),
    transform 0.3s var(--ease-out-expo);
}

.discovery-page .site-energy-ritual__result-products .discovery-result-p:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 48px -28px rgba(0, 0, 0, 0.75);
  transform: translateY(-2px);
}

.discovery-page .discovery-result-p__media {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #0a0a0a;
}

.discovery-page .discovery-result-p__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.discovery-page .discovery-result-p__img--empty {
  display: block;
  min-height: 6rem;
  background: #111;
}

.discovery-page .discovery-result-p__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.55rem 0.65rem 0.7rem;
}

.discovery-page .discovery-result-p__name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: rgba(243, 243, 243, 0.92);
}

.discovery-page .discovery-result-p__price {
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
  color: rgba(180, 178, 172, 0.85);
}

.discovery-page .site-energy-ritual__result-actions {
  margin-top: clamp(1.25rem, 3vw, 2rem);
  padding-top: 0;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .discovery-page .site-energy-ritual__result-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.discovery-page .site-btn--discovery-cta {
  min-width: min(20rem, 100%);
  justify-content: center;
}

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

.discovery-result-catalog__strip {
  display: none;
}

/* ========== snippets/image.liquid ========== */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }

/* ========== snippets/price.liquid ========== */
.price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
    font-variant-numeric: tabular-nums;
  }

  .price__compare {
    text-decoration: line-through;
    opacity: 0.65;
    font-size: 0.95em;
  }

  .price__current--sale {
    font-weight: 600;
  }

/* ========== Cinema product grid (2 columns — all breakpoints) ========== */
.cinema-product-grid,
.site-field-products__grid,
.main-collection-product-grid__grid,
.featured-collection__grid,
.collection-page__grid,
.site-showcase__grid,
.home-featured__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.8vw, 24px);
}

.cinema-product-grid__cell,
.site-field-products__cell,
.site-showcase__grid > li {
  display: flex;
  min-width: 0;
}

.cinema-product-grid .product-card,
.site-field-products .product-card,
.main-collection-product-grid .product-card,
.featured-collection .product-card,
.collection-page .product-card,
.site-showcase .product-card,
.cinema-product-showcase .product-card {
  width: 100%;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(18, 18, 18, 0.95) 0%, rgba(8, 8, 8, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 40px -28px rgba(0, 0, 0, 0.85);
  transition:
    border-color 0.28s var(--ease-out-expo, ease),
    box-shadow 0.28s var(--ease-out-expo, ease),
    transform 0.22s ease;
}

.cinema-product-grid .product-card:hover,
.site-field-products .product-card:hover,
.main-collection-product-grid .product-card:hover,
.featured-collection .product-card:hover,
.collection-page .product-card:hover,
.site-showcase .product-card:hover,
.cinema-product-showcase .product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 56px -24px rgba(0, 0, 0, 0.9),
    0 0 32px -12px rgba(139, 115, 85, 0.12);
}

.cinema-product-grid .product-card__title,
.cinema-product-showcase .product-card__title {
  font-size: clamp(0.8125rem, 2.2vw, 0.9375rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(244, 242, 237, 0.95);
}

.cinema-product-grid .product-card__price,
.cinema-product-showcase .product-card__price {
  font-size: 0.8125rem;
  color: rgba(190, 188, 182, 0.88);
}

.cinema-product-grid .product-card--commerce,
.cinema-product-showcase .product-card--commerce {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cinema-product-grid .product-card__commerce-stack,
.cinema-product-showcase .product-card__commerce-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.cinema-product-grid .product-card__buy,
.cinema-product-showcase .product-card__buy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: 2px;
  border: 1px solid rgba(139, 115, 85, 0.5);
  background: linear-gradient(165deg, rgba(139, 115, 85, 0.22) 0%, rgba(139, 115, 85, 0.08) 100%);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f4f2ed;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.cinema-product-grid .product-card__buy:hover:not(:disabled),
.cinema-product-showcase .product-card__buy:hover:not(:disabled) {
  border-color: rgba(139, 115, 85, 0.7);
  background: linear-gradient(165deg, rgba(139, 115, 85, 0.32) 0%, rgba(139, 115, 85, 0.14) 100%);
  box-shadow: 0 0 24px -8px rgba(139, 115, 85, 0.35);
}

.cinema-product-grid .product-card__add,
.cinema-product-showcase .product-card__add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(236, 234, 228, 0.88);
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    background 0.25s ease;
}

.cinema-product-grid .product-card__add:hover:not(:disabled),
.cinema-product-showcase .product-card__add:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.cinema-product-grid .product-card__buy:disabled,
.cinema-product-grid .product-card__add:disabled,
.cinema-product-showcase .product-card__buy:disabled,
.cinema-product-showcase .product-card__add:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========== sections/product-showcase-grid.liquid ========== */
.cinema-product-showcase {
  padding-block: clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139, 115, 85, 0.05), transparent 55%),
    #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #ebe8e2;
}

.cinema-product-showcase__inner {
  max-width: min(95rem, 100%);
  margin-inline: auto;
  padding-inline: var(--page-margin);
}

.cinema-product-showcase__kicker {
  margin: 0;
  font-size: 0.625rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(160, 158, 152, 0.75);
}

.cinema-product-showcase__heading {
  margin: 0.65rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f4f2ed;
}

.cinema-product-showcase__dek {
  margin: 0.5rem 0 0;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(180, 178, 172, 0.82);
}

.cinema-product-showcase__head {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.cinema-product-showcase__grid {
  margin: 0;
}

.cinema-product-showcase__footer {
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  text-align: center;
}

.cinema-product-showcase__view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(236, 234, 228, 0.85);
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    background 0.25s ease;
}

.cinema-product-showcase__view-all:hover {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.cinema-product-showcase__empty {
  max-width: 28rem;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3rem) 1.25rem;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.cinema-product-showcase__empty-line {
  width: 2rem;
  height: 1px;
  margin: 0 auto 1rem;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.cinema-product-showcase__empty-text {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(160, 158, 152, 0.8);
}

/* ========== snippets/product-card.liquid ========== */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: calc(var(--style-border-radius-inputs) + 4px);
    overflow: hidden;
    background: color-mix(in oklab, var(--color-foreground) 4%, var(--color-background));
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  @media (prefers-reduced-motion: reduce) {
    .product-card {
      transition: none;
    }
  }

  .product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px color-mix(in oklab, var(--color-foreground) 12%, transparent);
  }

  .product-card__link {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    text-decoration: none;
    color: inherit;
  }

  .product-card__link:focus-visible {
    outline: 2px solid color-mix(in oklab, var(--color-foreground) 35%, transparent);
    outline-offset: 2px;
  }

  .product-card__media-link {
    display: block;
    flex: 0 0 auto;
    text-decoration: none;
    color: inherit;
  }

  .product-card__media-link:focus-visible {
    outline: 2px solid color-mix(in oklab, var(--color-foreground) 35%, transparent);
    outline-offset: 2px;
  }

  .product-card__title-link {
    text-decoration: none;
    color: inherit;
  }

  .product-card__title-link:focus-visible .product-card__title {
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .product-card--commerce {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .product-card--commerce .product-card__media-link {
    display: block;
    flex: 0 0 auto;
    text-decoration: none;
    color: inherit;
  }

  .product-card--commerce .product-card__title-link {
    text-decoration: none;
    color: inherit;
  }

  .product-card--commerce .product-card__body {
    flex: 1 1 auto;
    padding-bottom: 0.65rem;
  }

  .product-card__commerce-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .product-card__buy {
    width: 100%;
    min-height: 2.75rem;
    margin: 0;
    padding: 0.55rem 0.75rem;
    border-radius: 2px;
    border: 1px solid color-mix(in oklab, var(--color-foreground) 28%, transparent);
    background: color-mix(in oklab, var(--color-foreground) 12%, var(--color-background));
    color: inherit;
    font: inherit;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
  }

  .product-card__buy:hover:not(:disabled) {
    border-color: color-mix(in oklab, var(--color-foreground) 45%, transparent);
    background: color-mix(in oklab, var(--color-foreground) 18%, var(--color-background));
  }

  .product-card__buy:focus-visible,
  .product-card__add:focus-visible {
    outline: 2px solid color-mix(in oklab, var(--color-foreground) 35%, transparent);
    outline-offset: 3px;
  }

  .product-card__media {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
  }

  .product-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 12rem;
    background: color-mix(in oklab, var(--color-foreground) 8%, var(--color-background));
  }

  .product-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1rem 1.1rem;
    flex: 0 0 auto;
  }

  .product-card--with-cart .product-card__body {
    padding-bottom: 0.65rem;
  }

  .product-card__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
  }

  .product-card__price {
    margin: 0;
    font-size: 0.95rem;
    font-variant-numeric: tabular-nums;
  }

  .product-card__actions {
    padding: 0 1rem 1rem;
    margin-top: auto;
  }

  .product-card__form {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }

  .product-card__select {
    width: 100%;
    max-width: 100%;
    padding: 0.35rem 0.4rem;
    font-size: 0.72rem;
    border-radius: 2px;
    border: 1px solid color-mix(in oklab, var(--color-foreground) 18%, transparent);
    background: var(--color-background);
    color: inherit;
  }

  .product-card__add {
    width: 100%;
    min-height: 2.75rem;
    margin: 0;
    padding: 0.55rem 0.75rem;
    border-radius: 2px;
    border: 1px solid color-mix(in oklab, var(--color-foreground) 18%, transparent);
    background: color-mix(in oklab, var(--color-foreground) 5%, var(--color-background));
    color: inherit;
    font: inherit;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  }

  .product-card__add:hover:not(:disabled) {
    border-color: color-mix(in oklab, var(--color-foreground) 32%, transparent);
    background: color-mix(in oklab, var(--color-foreground) 10%, var(--color-background));
  }

  .product-card__add:disabled {
    opacity: 0.55;
    cursor: not-allowed;
  }

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

/* ========== snippets/skip-to-content.liquid ========== */
.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: 1rem 1.25rem;
    background: var(--color-foreground);
    color: var(--color-background);
    text-decoration: none;
    border-radius: var(--style-border-radius-inputs);
  }

  .skip-to-content:focus {
    left: var(--page-margin);
    top: var(--page-margin);
    outline: 2px solid currentcolor;
    outline-offset: 2px;
  }

/* ========== blocks/group.liquid ========== */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }

/* ========== blocks/text.liquid ========== */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }

/* ========== sections/cart-drawer.liquid ========== */
.cart-drawer {
    width: min(26rem, 100vw - 1.5rem);
    max-height: min(90vh, 44rem);
    margin: 0 0 0 auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    background: #080808;
    color: #ebe8e2;
    box-shadow: -32px 0 80px rgba(0, 0, 0, 0.65);
  }

  .cart-drawer::backdrop {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
  }

  @media (prefers-reduced-motion: reduce) {
    .cart-drawer::backdrop {
      backdrop-filter: none;
    }
  }

  .cart-drawer__surface {
    display: flex;
    max-height: inherit;
    flex-direction: column;
    min-height: 0;
  }

  .cart-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .cart-drawer__title {
    margin: 0;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 242, 237, 0.85);
  }

  .cart-drawer__close {
    border: 0;
    background: transparent;
    color: rgba(230, 228, 223, 0.55);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.35rem;
    border-radius: 2px;
  }

  .cart-drawer__close:hover {
    color: #faf8f4;
  }

  .cart-drawer__scroll {
    flex: 1;
    min-height: 0;
    overflow: auto;
    padding: 0.75rem 1rem 1.25rem;
    -webkit-overflow-scrolling: touch;
  }

  .cart-drawer__empty {
    margin: 1.5rem 0 0.75rem;
    color: rgba(230, 228, 223, 0.55);
    font-size: 0.9rem;
  }

  .cart-drawer__browse {
    display: inline-flex;
    margin-top: 0.25rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(244, 242, 237, 0.85);
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }

  .cart-drawer__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .cart-drawer__item {
    display: grid;
    grid-template-columns: 4.25rem minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
  }

  .cart-drawer__thumb .image > img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .cart-drawer__thumb-fallback {
    display: block;
    aspect-ratio: 1;
    border-radius: 2px;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .cart-drawer__product-title {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(244, 242, 237, 0.92);
    text-decoration: none;
  }

  .cart-drawer__variant {
    margin: 0.2rem 0 0;
    font-size: 0.72rem;
    color: rgba(230, 228, 223, 0.45);
  }

  .cart-drawer__line-meta {
    margin: 0.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    font-size: 0.72rem;
    color: rgba(230, 228, 223, 0.55);
  }

  .cart-drawer__qty-label {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .cart-drawer__qty {
    width: 3.25rem;
    min-height: 2.5rem;
    padding: 0.35rem 0.4rem;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    color: #f4f2ed;
    font: inherit;
  }

  .cart-drawer__line-price {
    margin-left: auto;
    font-weight: 600;
    color: rgba(244, 242, 237, 0.88);
  }

  .cart-drawer__remove {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(230, 228, 223, 0.45);
  }

  .cart-drawer__ship-note {
    margin: 1rem 0 0;
    font-size: 0.72rem;
    line-height: 1.5;
    color: rgba(230, 228, 223, 0.45);
  }

  .cart-drawer__summary {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .cart-drawer__subtotal {
    margin: 0 0 1rem;
    font-size: 0.85rem;
    color: rgba(230, 228, 223, 0.72);
  }

  .cart-drawer__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .cart-drawer__btn {
    flex: 1 1 auto;
    min-height: 3rem;
    padding: 0.75rem 1rem;
    border-radius: 2px;
    font: inherit;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #f4f2ed;
  }

  .cart-drawer__btn--checkout {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
  }

  .cart-drawer__btn--ghost {
    background: transparent;
  }

  .cart-drawer__full {
    display: block;
    margin-top: 0.85rem;
    text-align: center;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(230, 228, 223, 0.5);
  }

/* ========== sections/main-cart.liquid (shipping note) ========== */
.main-cart__ship-note {
    margin: 0 0 1.25rem;
    max-width: 40rem;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(230, 228, 223, 0.55);
  }

/* ========== Commercial pages (about / contact / faq / policies / track) ========== */
.brand-page,
.contact-page,
.faq-page,
.policy-page,
.track-page {
    padding-block: clamp(2rem, 5vw, 3.5rem);
    background: #080808;
    color: #e6e4df;
  }

  .brand-page__inner,
  .contact-page__inner,
  .faq-page__inner,
  .policy-page__inner,
  .track-page__inner {
    max-width: min(48rem, 100%);
    margin-inline: auto;
    padding-inline: var(--page-margin);
  }

  .brand-page__inner {
    max-width: min(56rem, 100%);
  }

  .brand-page__kicker,
  .contact-page__kicker,
  .faq-page__kicker,
  .policy-page__kicker,
  .track-page__kicker {
    margin: 0 0 0.5rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(230, 228, 223, 0.4);
  }

  .brand-page__title,
  .contact-page__title,
  .faq-page__title,
  .policy-page__title,
  .track-page__title {
    margin: 0 0 1.25rem;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #f4f2ed;
  }

  .brand-page__hero {
    margin: 1.5rem 0 2rem;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .brand-page__hero-img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(1) contrast(1.05);
  }

  .brand-page__lede,
  .brand-page__block,
  .contact-page__intro,
  .faq-page__intro,
  .policy-page__body,
  .track-page__body {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(230, 228, 223, 0.72);
  }

  .brand-page__block {
    margin-top: 1.25rem;
  }

  .brand-page__quote {
    margin: 2rem 0;
    padding: 1.25rem 0 1.25rem 1.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 1.05rem;
    line-height: 1.45;
    color: rgba(244, 242, 237, 0.88);
  }

  .brand-page__quote p {
    margin: 0;
  }

  .brand-page__split {
    margin: 2.5rem 0;
    display: grid;
    gap: 1.25rem;
    align-items: start;
  }

  @media (min-width: 768px) {
    .brand-page__split {
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 2rem;
    }
  }

  .brand-page__split-media {
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .brand-page__split-img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(1) contrast(1.05);
  }

  .brand-page__split-caption {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(230, 228, 223, 0.58);
  }

  .brand-page__pillars {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
  }

  .brand-page__pillar {
    margin: 0;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(230, 228, 223, 0.42);
  }

  .contact-page__meta {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.25rem 0;
    border-block: 1px solid rgba(255, 255, 255, 0.06);
  }

  @media (min-width: 640px) {
    .contact-page__meta {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  .contact-page__meta-label {
    margin: 0 0 0.35rem;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(230, 228, 223, 0.4);
  }

  .contact-page__email {
    font-size: 1rem;
    color: rgba(244, 242, 237, 0.95);
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }

  .contact-page__response {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(230, 228, 223, 0.72);
  }

  .contact-page__faq-link {
    margin: 0 0 2rem;
    font-size: 0.8rem;
  }

  .contact-page__faq-link a {
    color: rgba(244, 242, 237, 0.85);
    letter-spacing: 0.08em;
  }

  .contact-page__form-title {
    margin: 0 0 1rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(230, 228, 223, 0.45);
  }

  .contact-page__field {
    margin-bottom: 1rem;
  }

  .contact-page__label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(230, 228, 223, 0.42);
  }

  .contact-page__input,
  .contact-page__textarea {
    width: 100%;
    box-sizing: border-box;
    min-height: 3rem;
    padding: 0.65rem 0.75rem;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    color: #f4f2ed;
    font: inherit;
    font-size: 1rem;
  }

  .contact-page__textarea {
    min-height: 8rem;
    resize: vertical;
  }

  .contact-page__submit {
    margin-top: 0.5rem;
    min-height: 3rem;
    padding: 0.85rem 1.5rem;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #f4f2ed;
    font: inherit;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .contact-page__success {
    margin: 0 0 1rem;
    color: rgba(180, 220, 180, 0.9);
  }

  .faq-page__list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .faq-page__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .faq-page__summary {
    cursor: pointer;
    list-style: none;
    padding: 1rem 0;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(244, 242, 237, 0.9);
  }

  .faq-page__summary::-webkit-details-marker {
    display: none;
  }

  .faq-page__answer {
    padding: 0 0 1.1rem;
    font-size: 0.88rem;
    color: rgba(248, 247, 244, 0.9);
  }

  .policy-page__updated {
    margin: -0.5rem 0 1.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(248, 247, 244, 0.78);
  }

  .track-page__actions {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .track-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0 1.25rem;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #f4f2ed;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
  }

  .track-page__btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(230, 228, 223, 0.65);
  }

  /* Product cards: reduce image dominance on mobile */
  .product-card__media {
    aspect-ratio: 1 / 1;
    max-height: 208px;
    overflow: hidden;
  }

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

  .site-field-products__grid,
  .home-product-showcase__grid,
  .cinema-product-grid {
    gap: 0.65rem;
  }

  .product-card__body {
    padding-top: 0.5rem;
  }

  /* Horizontal product slider */
  .site-field-products__slider {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.25rem;
  }

  .site-field-products__slider .site-field-products__grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 72vw);
    gap: 0.75rem;
    width: max-content;
  }

  .site-field-products__slider .site-field-products__cell {
    width: 100%;
    min-width: 0;
  }

  @media (min-width: 750px) {
    .site-field-products__slider .site-field-products__grid {
      grid-auto-columns: minmax(240px, 32vw);
    }
  }

  /* ===== Density tuning: five energy cards proportion ===== */
  .site-energy-entries {
    margin-top: 1.5rem;
  }

  .site-energy-entries__grid {
    display: grid;
    gap: 0.55rem;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .site-energy-entries__item {
    grid-column: span 2;
  }

  .site-energy-entries__item:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .site-energy-entries__item:nth-child(5) {
    grid-column: 4 / span 2;
    max-width: none;
    justify-self: stretch;
  }

  @media (min-width: 768px) {
    .site-energy-entries__grid {
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 0.9rem;
    }

    .site-energy-entries__item {
      grid-column: span 2;
    }

    .site-energy-entries__item:nth-child(4) {
      grid-column: 2 / span 2;
    }

    .site-energy-entries__item:nth-child(5) {
      grid-column: 4 / span 2;
      max-width: none;
      justify-self: stretch;
    }
  }

  .site-energy-entries__item {
    min-width: 0;
  }

  .site-energy-card {
    min-height: 88px;
    border-radius: 3px;
  }

  .site-energy-card__body {
    padding: 0.62rem 0.72rem;
  }

  .site-energy-card__meta {
    gap: 0.22rem 0.38rem;
  }

  .site-energy-card__index {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .site-energy-card__line,
  .site-energy-card__name {
    font-size: 0.7rem;
    line-height: 1.16;
  }

  .site-energy-card__dek {
    margin-top: 0.36rem;
    font-size: 0.75rem;
    line-height: 1.28;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .site-energy-card__cta {
    padding-inline: 0.52rem;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  @media (min-width: 1024px) {
    .site-energy-entries__grid {
      gap: 0.85rem;
    }

    .site-energy-card {
      min-height: 84px;
    }

    .site-energy-card__body {
      padding: 0.58rem 0.66rem;
    }

    .site-energy-card__dek {
      -webkit-line-clamp: 1;
    }
  }
