/* =============================================================
   THE SKIN ODYSSEY — THEME CSS
   Fonts: Lora (display/serif) + Jost (body/sans)
   Colors defined as CSS variables injected via PHP (functions.php)
   ============================================================= */

/* ============================================================
   CSS CUSTOM PROPERTIES (defaults — overridden by PHP inline)
   ============================================================ */
:root {
  --color-background:  #f6f3ee;
  --color-foreground:  #302a21;
  --color-primary:     #4e4436;
  --color-accent:      #c19886;
  --color-secondary:   #ede8e3;
  --color-muted-fg:    #766d60;
  --color-border:      #ddd6d0;
  --color-surface-soft:#ede5d9;
  --color-button-text: #f6f3ee;

  --font-display: 'Lora', serif;
  --font-body:    'Jost', sans-serif;

  --radius:        0.5rem;
  --card-radius:   1rem;
  --btn-radius:    9999px;
  --btn-height:    44px;
  --btn-padding:   0.75rem 1.75rem;
  --btn-font-size: 0.75rem;
  --btn-font-weight: 500;
  --btn-letter-spacing: 0.18em;
  --btn-text-transform: none;
  --btn-icon-padding: 0.5rem;

  --header-height: 80px;
  --logo-height:   48px;

  --shadow-soft:     0 4px 20px -4px hsl(25 40% 15% / 0.06);
  --shadow-elevated: 0 8px 40px -8px hsl(25 40% 15% / 0.1);

  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast:   0.2s cubic-bezier(0.4, 0, 0.2, 1);

  --checkout-gap: 2rem;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: inherit;
  font-size: inherit;
  margin: 0;
}

p { margin: 0; }

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

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

/* Cover images — excluded from the global height:auto rule */
img:not(.cover-img):not(.hero-bg-img):not(.product-card-img):not(.ba-card__image):not(.ritual-bg-img) {
  height: auto;
}
.cover-img,
.product-card-img,
.hero-bg-img,
.ba-card__image,
.ritual-bg-img,
.about-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

button { cursor: pointer; border: none; background: transparent; padding: 0; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: color-mix(in srgb, var(--color-primary) 80%, transparent);
}
.eyebrow--accent { color: var(--color-accent); }

.micro-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.surface-soft { background-color: var(--color-surface-soft); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container-wide {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .container-wide { padding: 0 2rem; }
}

.overflow-x-hidden { overflow-x: hidden; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-spacing);
  text-transform: var(--btn-text-transform);
  border-radius: var(--btn-radius);
  padding: var(--btn-padding);
  min-height: var(--btn-height);
  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-pill {
  background-color: var(--color-foreground);
  color: var(--color-background);
  border-color: var(--color-foreground);
  text-transform: uppercase;
}
.btn-pill:hover { opacity: 0.8; }
.btn-pill-light {
  background-color: color-mix(in srgb, #ffffff 15%, transparent);
  color: #ffffff;
  border: 1px solid color-mix(in srgb, #ffffff 45%, transparent);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  text-transform: uppercase;
}
.btn-pill-light:hover { background-color: color-mix(in srgb, #ffffff 25%, transparent); }

.theme-btn-primary,
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
  background-color: var(--color-foreground) !important;
  color: var(--color-background) !important;
  border: none !important;
  border-radius: var(--btn-radius) !important;
  min-height: var(--btn-height) !important;
  padding: var(--btn-padding) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-body) !important;
  font-size: var(--btn-font-size) !important;
  font-weight: var(--btn-font-weight) !important;
  letter-spacing: var(--btn-letter-spacing) !important;
  text-transform: none !important;
  cursor: pointer !important;
  box-shadow: var(--shadow-soft) !important;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
  text-decoration: none !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
  opacity: 0.85 !important;
  transform: translateY(-2px) !important;
  background-color: var(--color-foreground) !important;
  color: var(--color-background) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
  cursor: not-allowed !important;
  opacity: 0.4 !important;
  pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
  opacity: 0.4 !important;
  transform: none !important;
  background-color: var(--color-foreground) !important;
}

/* Hero / CTA buttons must NOT be uppercase */
.btn-hero-primary, .btn-hero-outline, .single-product .single_add_to_cart_button {
  text-transform: none;
}

/* Card quick-add button override (compact circular) */
.theme-product-card .add_to_cart_button.ajax_add_to_cart.theme-product-card__quick-add {
  min-height: unset !important;
  padding: 0.5rem !important;
  border-radius: 50% !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
  flex-shrink: 0 !important;
}

/* Hide "View Cart" after ajax add */
.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

/* ============================================================
   SITE LOGO
   ============================================================ */
.site-logo-img {
  height: var(--logo-height) !important;
  width: auto !important;
  display: block;
}
.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: block;
  line-height: var(--logo-height);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background-color: color-mix(in srgb, var(--color-background) 95%, transparent);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-color: var(--color-border);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 1024px) {
  .site-nav { height: 80px; }
}

.site-logo-link {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
}

/* Logo inverted on transparent header */
.site-header:not(.is-solid) .site-logo-img { filter: brightness(0) invert(1); }
.site-header:not(.is-solid) .site-logo-text { color: #fff; }

.site-nav__desktop { display: none; }
@media (min-width: 1024px) {
  .site-nav__desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    margin-right: 2rem;
  }
}

/* Nav links */
.site-nav__desktop .theme-nav-list,
.site-nav__desktop ul { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }

.site-nav__desktop .theme-nav-link,
.site-nav__desktop .menu-item a,
.site-nav__desktop li a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
}
.site-header:not(.is-solid) .site-nav__desktop .theme-nav-link,
.site-header:not(.is-solid) .site-nav__desktop .menu-item a,
.site-header:not(.is-solid) .site-nav__desktop li a {
  color: rgba(255,255,255,0.9);
}
.site-header:not(.is-solid) .site-nav__desktop .theme-nav-link:hover,
.site-header:not(.is-solid) .site-nav__desktop .menu-item a:hover,
.site-header:not(.is-solid) .site-nav__desktop li a:hover { color: #fff; }
.site-header.is-solid .site-nav__desktop .theme-nav-link,
.site-header.is-solid .site-nav__desktop .menu-item a,
.site-header.is-solid .site-nav__desktop li a {
  color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
}
.site-header.is-solid .site-nav__desktop .theme-nav-link:hover,
.site-header.is-solid .site-nav__desktop .menu-item a:hover,
.site-header.is-solid .site-nav__desktop li a:hover { color: var(--color-foreground); }

.site-nav__actions { display: flex; align-items: center; gap: 0.25rem; }

/* Cart button */
.cart-btn {
  position: relative;
  padding: 0.5rem;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-btn:hover { opacity: 0.7; }
.site-header:not(.is-solid) .cart-btn { color: #fff; }
.site-header.is-solid .cart-btn { color: var(--color-foreground); }

/* Cart badge */
.theme-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--color-accent);
  color: var(--color-foreground);
  font-size: 10px;
  border-radius: 9999px;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
  font-weight: 500;
  line-height: 1;
}
.theme-cart-count:empty { display: none; }

/* Mobile menu button */
.mobile-menu-btn {
  padding: 0.5rem;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
.site-header:not(.is-solid) .mobile-menu-btn { color: #fff; }
.site-header.is-solid .mobile-menu-btn { color: var(--color-foreground); }
.mobile-menu-btn:hover { opacity: 0.6; }

/* Mobile nav drawer */
.site-nav__mobile {
  display: none;
  border-top: 1px solid var(--color-border);
  padding: 1rem 0;
  background-color: var(--color-background);
}
.site-nav__mobile.is-open { display: block; }
.site-nav__mobile .theme-nav-list--mobile,
.site-nav__mobile ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.site-nav__mobile .theme-nav-link,
.site-nav__mobile .menu-item a,
.site-nav__mobile li a,
.site-nav__mobile li button {
  display: block;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 0;
  color: var(--color-foreground);
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.site-nav__mobile .theme-nav-link:hover,
.site-nav__mobile .menu-item a:hover { color: var(--color-muted-fg); }
@media (min-width: 1024px) { .site-nav__mobile { display: none !important; } }

/* ============================================================
   MAIN CONTENT OFFSET
   ============================================================ */
.site-main.theme-inner-page {
  padding-top: var(--header-height);
  padding-bottom: 5rem;
}

/* Home has no top padding (hero fills viewport) */
.site-main:not(.theme-inner-page) { padding-top: 0; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes drawLine {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-item[data-direction="right"] {
  transform: translateX(-20px);
}
.reveal-item[data-direction="right"].is-visible {
  transform: translateX(0);
}

/* Customizer fallback — always visible */
.is-customizer .reveal-item { opacity: 1 !important; transform: none !important; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  padding-bottom: 3rem;
  padding-top: 8rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-content { padding-bottom: 4rem; }
}
.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .hero-layout {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.hero-headline-block { max-width: 48rem; }
.hero-cta-block { max-width: 24rem; }
@media (min-width: 1024px) { .hero-cta-block { text-align: right; } }
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.01em;
  font-size: 3rem;
}
@media (min-width: 640px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 6rem; } }
.hero-body {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .hero-body { font-size: 1rem; } }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { padding: 5rem 0; }
@media (min-width: 1024px) { .about-section { padding: 8rem 0; } }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 5fr 7fr;
    gap: 6rem;
  }
}

.about-image-col { order: 1; }
.about-content-col { order: 2; }
@media (min-width: 1024px) { .about-content-col { padding-top: 1.5rem; } }

.about-image-wrapper {
  position: relative;
}
.about-image-deco {
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-color: color-mix(in srgb, var(--color-accent) 15%, transparent);
  z-index: 0;
}
.about-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-elevated);
  z-index: 1;
}
/* Override the cover-img rule to keep aspect-ratio positioning */
.about-image {
  position: relative;
  inset: unset;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-circle-deco {
  display: none;
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--color-accent) 40%, transparent);
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background-color: color-mix(in srgb, var(--color-background) 40%, transparent);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
@media (min-width: 1024px) { .about-circle-deco { display: flex; } }
.about-circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--color-accent) 60%, transparent);
  opacity: 0.6;
  animation: spin 18s linear infinite;
}

.about-title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--color-foreground);
  margin-top: 1.5rem;
  font-size: 3rem;
}
@media (min-width: 640px)  { .about-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .about-title { font-size: 4.5rem; } }
@media (min-width: 1280px) { .about-title { font-size: 5.5rem; } }
.about-title em { font-style: italic; }

.about-text-block { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; max-width: 36rem; }

.about-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.4;
  color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
}
@media (min-width: 1024px) { .about-lead { font-size: 1.5rem; } }

.about-body {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--color-muted-fg);
}
.about-closing {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
}

/* Philosophy Pillars */
.pillars-grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
}
@media (min-width: 640px) { .pillars-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pillars-grid { grid-template-columns: repeat(4, 1fr); margin-top: 7rem; } }

.pillar-item {
  position: relative;
  padding: 2rem 1.5rem 0.5rem;
  transition: background-color 0.5s ease;
}
@media (min-width: 1024px) {
  .pillar-item {
    padding: 2rem 2rem 0.5rem;
    border-right: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
  }
  .pillar-item:last-child { border-right: none; }
}
.pillar-item::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  height: 1px;
  background-color: var(--color-accent);
  width: 0;
  transition: width 0.7s ease-out;
}
.pillar-item:hover { background-color: color-mix(in srgb, var(--color-foreground) 2.5%, transparent); }
.pillar-item:hover::before { width: 100%; }
.pillar-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.pillar-num {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: color-mix(in srgb, var(--color-muted-fg) 70%, transparent);
}
.pillar-line {
  display: block;
  width: 1.5rem;
  height: 1px;
  background-color: color-mix(in srgb, var(--color-foreground) 20%, transparent);
  transition: background-color 0.5s ease;
}
.pillar-item:hover .pillar-line { background-color: var(--color-accent); }
.pillar-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--color-foreground);
  margin-bottom: 0.75rem;
}
@media (min-width: 1024px) { .pillar-title { font-size: 1.25rem; } }
.pillar-desc {
  font-size: 0.875rem;
  color: var(--color-muted-fg);
  line-height: 1.75;
}

/* ============================================================
   RITUAL SECTION
   ============================================================ */
.ritual-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 1024px) { .ritual-section { padding: 7rem 0; } }

.ritual-bg { position: absolute; inset: 0; z-index: 0; }
.ritual-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.ritual-overlay { position: absolute; inset: 0; background-color: rgba(48, 42, 33, 0.65); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }

.ritual-orb {
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 6s ease-in-out infinite;
}
.ritual-orb--1 {
  top: -6rem; left: -6rem;
  width: 24rem; height: 24rem;
  background-color: rgba(255,255,255,0.10);
}
.ritual-orb--2 {
  bottom: -8rem; right: -5rem;
  width: 28rem; height: 28rem;
  background-color: color-mix(in srgb, var(--color-accent) 20%, transparent);
  animation-delay: 1.2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.ritual-inner { position: relative; z-index: 10; }

.ritual-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 4rem;
}
.ritual-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.ritual-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.875rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (min-width: 640px) { .ritual-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .ritual-title { font-size: 3rem; } }
.ritual-title em { font-style: italic; }

.ritual-line {
  width: 6rem;
  height: 1px;
  background-color: rgba(255,255,255,0.4);
  margin: 1.5rem auto;
  transform-origin: left;
  animation: drawLine 1.2s ease forwards;
}
.ritual-body {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  line-height: 1.75;
  font-size: 0.9375rem;
}

.ritual-steps { position: relative; }
.ritual-connector {
  display: none;
  position: absolute;
  top: 28px;
  left: 16.67%;
  right: 16.67%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
}
@media (min-width: 768px) {
  .ritual-connector { display: block; }
  .ritual-steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
}
@media (min-width: 1024px) { .ritual-steps { gap: 3rem; } }

.ritual-step { text-align: center; position: relative; }
.ritual-step-icon {
  margin: 0 auto 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background-color: rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.5s ease, background-color 0.5s ease;
}
.ritual-step:hover .ritual-step-icon {
  transform: scale(1.1);
  background-color: color-mix(in srgb, var(--color-accent) 40%, transparent);
}
.ritual-step-timeline {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}
.ritual-step-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.25rem;
}
.ritual-step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ritual-step-list li { font-size: 0.875rem; color: rgba(255,255,255,0.8); line-height: 1.75; }

/* ============================================================
   SHOP SECTION
   ============================================================ */
.shop-section { padding: 5rem 0; background-color: var(--color-background); }
@media (min-width: 1024px) { .shop-section { padding: 7rem 0; } }

.shop-header { text-align: center; max-width: 40rem; margin: 0 auto 2.5rem; }
.shop-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.2;
  color: var(--color-foreground);
  margin-top: 0.75rem;
}
@media (min-width: 640px)  { .shop-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .shop-title { font-size: 3rem; } }
.shop-title em { font-style: italic; }
.shop-body { color: var(--color-muted-fg); line-height: 1.75; margin-top: 1rem; }

/* Filter bar */
.shop-filter-bar {
  max-width: 64rem;
  margin: 0 auto 2.5rem;
  border-radius: 1rem;
  border: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
  background-color: color-mix(in srgb, var(--color-secondary) 40%, transparent);
  padding: 1.5rem;
}
@media (min-width: 1024px) { .shop-filter-bar { padding: 2rem; } }

.shop-cat-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.shop-cat-pill {
  font-size: 0.75rem;
  font-family: var(--font-body);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--color-border);
  background-color: color-mix(in srgb, var(--color-background) 60%, transparent);
  color: var(--color-foreground);
  transition: all 0.2s ease;
  cursor: pointer;
}
.shop-cat-pill.is-active,
.shop-cat-pill:hover {
  background-color: var(--color-foreground);
  color: var(--color-background);
  border-color: var(--color-foreground);
}

.shop-filter-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: end;
}
@media (min-width: 768px) {
  .shop-filter-bottom { grid-template-columns: 1fr auto; gap: 2.5rem; }
}

.shop-price-range { width: 100%; }
.shop-price-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.shop-price-display {
  font-size: 0.75rem;
  color: var(--color-muted-fg);
  font-family: 'Jost', monospace;
}

/* Dual-range slider (§31.4) */
.price-range-wrapper {
  position: relative;
  height: 1.5rem;
}
.range-track-bg,
.range-track-fill {
  position: absolute;
  height: 4px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  border-radius: 2px;
}
.range-track-bg   { left: 0; right: 0; background: var(--color-border); }
.range-track-fill { background: var(--color-primary); }

.range-input {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
}
.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid var(--color-background);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  cursor: pointer;
}
.range-input::-moz-range-thumb {
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid var(--color-background);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

.shop-sort-wrap { display: flex; align-items: center; gap: 0.75rem; justify-content: flex-end; }
.shop-sort-select {
  border-radius: 9999px;
  border: 1px solid var(--color-border);
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  height: 36px;
  padding: 0 0.75rem;
  cursor: pointer;
  min-width: 180px;
}
.shop-clear-btn {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-muted-fg);
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
}
.shop-clear-btn:hover { color: var(--color-foreground); }

.shop-count {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-muted-fg);
  margin-bottom: 2rem;
}

.shop-empty-state { text-align: center; padding: 5rem 0; color: var(--color-muted-fg); }

/* Product grid */
.theme-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 1.5rem;
  row-gap: 2.5rem;
  align-items: stretch;
}
@media (min-width: 640px)  { .theme-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .theme-product-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.theme-product-card-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.theme-product-card-wrap.is-hidden { display: none; }

.theme-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

/* Overlay link (Pattern A) */
.theme-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: auto;
  display: block;
}
.theme-product-card *:not(.theme-card-link):not(.theme-product-card__quick-add) { pointer-events: none; }
.theme-product-card__quick-add {
  position: relative;
  z-index: 3;
  align-self: flex-end;
  margin-top: -3.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
  background-color: var(--color-foreground) !important;
  color: var(--color-background) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem !important;
  height: 2.5rem !important;
  border-radius: 50% !important;
  border: none !important;
  padding: 0 !important;
  min-height: unset !important;
  text-decoration: none !important;
}
.theme-product-card:hover .theme-product-card__quick-add {
  opacity: 1;
  transform: translateY(0);
}
.theme-product-card__quick-add:hover {
  background-color: var(--color-accent) !important;
}

/* Image wrapper */
.theme-product-card__image-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 1rem;
  overflow: hidden;
  background-color: var(--color-secondary);
}
.theme-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.theme-product-card:hover .theme-product-card__image { transform: scale(1.05); }

/* Category badge */
.theme-product-card__category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background-color: rgba(246,243,238,0.85);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.75rem;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-foreground);
  box-shadow: var(--shadow-soft);
  z-index: 1;
}
.theme-product-card__badge-soldout {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background-color: rgba(246,243,238,0.85);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-muted-fg);
  z-index: 1;
}

/* Card info */
.theme-product-card__info { margin-top: 1rem; flex: 1; }
.theme-product-card__meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.theme-product-card__name-price { min-width: 0; }
.theme-product-card__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-foreground);
  transition: color 0.2s ease;
  overflow-wrap: break-word;
}
.theme-product-card:hover .theme-product-card__name { color: var(--color-accent); }
.theme-product-card__size { font-size: 0.75rem; color: var(--color-muted-fg); margin-top: 2px; }
.theme-product-card__price { font-family: var(--font-body); font-weight: 600; font-size: 0.875rem; color: var(--color-foreground); white-space: nowrap; }
.theme-product-card__tagline { margin-top: 0.5rem; font-size: 0.875rem; color: var(--color-muted-fg); line-height: 1.75; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ============================================================
   RESULTS (BEFORE & AFTER) SECTION
   ============================================================ */
.results-section { padding: 5rem 0; background-color: var(--color-background); }
@media (min-width: 1024px) { .results-section { padding: 7rem 0; } }

.results-header { max-width: 40rem; margin: 0 auto 3.5rem; text-align: center; }
.results-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--color-foreground);
  margin-top: 1.5rem;
}
@media (min-width: 640px)  { .results-title { font-size: 3rem; } }
@media (min-width: 1024px) { .results-title { font-size: 3.75rem; } }
.results-title em { font-style: italic; }
.results-body { margin-top: 1.25rem; font-size: 1rem; line-height: 1.75; color: var(--color-muted-fg); }
@media (min-width: 1024px) { .results-body { font-size: 1.125rem; } }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .ba-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.ba-card { }
.ba-card__image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-elevated);
  aspect-ratio: auto;
}
.ba-card__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
  position: relative; inset: unset;
}
.ba-card:hover .ba-card__image { transform: scale(1.02); }
.ba-card__body { margin-top: 1.5rem; }
.ba-card__label { font-family: var(--font-body); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.22em; color: var(--color-accent); }
.ba-card__title { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; margin-top: 0.75rem; color: var(--color-foreground); }
@media (min-width: 1024px) { .ba-card__title { font-size: 1.875rem; } }
.ba-card__copy { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.75; color: var(--color-muted-fg); max-width: 28rem; }

.results-cta { margin-top: 3.5rem; text-align: center; }
@media (min-width: 1024px) { .results-cta { margin-top: 5rem; } }

/* ============================================================
   JOURNAL SECTION
   ============================================================ */
.journal-section { padding: 5rem 0; background-color: var(--color-secondary); }
@media (min-width: 1024px) { .journal-section { padding: 7rem 0; } }

.journal-header {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .journal-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5rem;
  }
}
.journal-header__left { max-width: 28rem; }
.journal-eyebrow { display: flex; align-items: center; gap: 0.5rem; }
.journal-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--color-foreground);
  margin-top: 1.25rem;
}
@media (min-width: 640px)  { .journal-title { font-size: 3rem; } }
@media (min-width: 1024px) { .journal-title { font-size: 3.75rem; } }
.journal-title em { font-style: italic; }
.journal-header__desc {
  max-width: 22rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-muted-fg);
  align-self: flex-end;
}
@media (min-width: 1024px) { .journal-header__desc { font-size: 1.125rem; } }

.journal-entries {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
}
@media (min-width: 768px) { .journal-entries { grid-template-columns: 1fr 1fr 1fr; } }

.journal-entry {
  padding: 2rem 3rem 2rem;
  transition: background-color 0.5s ease;
  height: 100%;
}
@media (min-width: 768px) {
  .journal-entry {
    border-right: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
    border-bottom: none;
    padding: 3rem;
  }
  .journal-entry:last-child { border-right: none; }
}
@media (max-width: 767px) {
  .journal-entry { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
  .journal-entry:last-child { border-bottom: none; }
}
.journal-entry:hover { background-color: color-mix(in srgb, var(--color-foreground) 3%, transparent); }
.journal-entry__num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--color-foreground) 20%, transparent);
  transition: color 0.5s ease;
}
.journal-entry:hover .journal-entry__num { color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.journal-entry__title { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; color: var(--color-foreground); margin-bottom: 0.75rem; }
.journal-entry__body { font-size: 0.875rem; line-height: 1.75; color: var(--color-muted-fg); }

/* Marquee */
.journal-marquee-wrap {
  margin-top: 5rem;
  overflow: hidden;
  padding-top: 2.5rem;
}
.journal-marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 500;
  color: color-mix(in srgb, var(--color-foreground) 40%, transparent);
  margin: 0 2rem;
}
.marquee-dot { margin: 0 1rem; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { padding: 5rem 0; background-color: var(--color-background); }
@media (min-width: 1024px) { .faq-section { padding: 7rem 0; } }

.faq-inner { max-width: 48rem; }
.faq-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.875rem;
  color: var(--color-foreground);
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 640px)  { .faq-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .faq-title { font-size: 3rem; } }
.faq-title em { font-style: italic; }

.faq-accordion { width: 100%; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-foreground);
  transition: color 0.2s ease;
  gap: 1rem;
}
.faq-trigger:hover { color: var(--color-accent); }
.faq-trigger__inner { display: flex; align-items: center; gap: 0.75rem; flex: 1; min-width: 0; }
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--color-primary) 10%, transparent);
  color: var(--color-primary);
  flex-shrink: 0;
}
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-muted-fg);
}
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 0 1.25rem 3rem; }
.faq-answer p { font-size: 0.9375rem; line-height: 1.75; color: var(--color-muted-fg); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  padding: 6rem 0 8rem;
  color: #fff;
  overflow: hidden;
}
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-band__overlay { position: absolute; inset: 0; background-color: rgba(48,42,33,0.65); }
.cta-band__inner { position: relative; z-index: 10; text-align: center; max-width: 40rem; margin: 0 auto; }
.cta-band__content {}
.cta-band__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.2;
  color: #fff;
}
@media (min-width: 640px)  { .cta-band__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .cta-band__title { font-size: 3rem; } }
.cta-band__title em { font-style: italic; }
.cta-band__body { margin-top: 1rem; color: rgba(255,255,255,0.85); font-size: 1.125rem; line-height: 1.75; }
.cta-band__btns { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 640px) { .cta-band__btns { flex-direction: row; justify-content: center; } }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { padding: 5rem 0; background-color: var(--color-foreground); color: var(--color-background); }
@media (min-width: 1024px) { .contact-section { padding: 7rem 0; } }

.contact-inner { max-width: 56rem; margin: 0 auto; }
.contact-header { text-align: center; margin-bottom: 3.5rem; }
.contact-eyebrow { color: color-mix(in srgb, var(--color-background) 60%, transparent); }
.contact-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.875rem;
  color: var(--color-background);
  margin-top: 0.75rem;
}
@media (min-width: 640px)  { .contact-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 3rem; } }
.contact-title em { font-style: italic; }
.contact-body { margin-top: 1rem; color: color-mix(in srgb, var(--color-background) 70%, transparent); line-height: 1.75; max-width: 32rem; margin-left: auto; margin-right: auto; }

.contact-card {
  border-radius: 1rem;
  border: 1px solid color-mix(in srgb, var(--color-background) 15%, transparent);
  background-color: color-mix(in srgb, var(--color-background) 5%, transparent);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 2rem;
}
@media (min-width: 640px)  { .contact-card { padding: 2.5rem; } }
@media (min-width: 1024px) { .contact-card { padding: 3rem; } }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .contact-form__row { grid-template-columns: 1fr 1fr; } }
.contact-form__group { display: flex; flex-direction: column; }
.contact-label { font-family: var(--font-body); font-size: 0.875rem; color: color-mix(in srgb, var(--color-background) 80%, transparent); margin-bottom: 0.375rem; }
.contact-input,
.contact-textarea {
  border: 1px solid var(--color-border);
  background-color: var(--color-background);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-foreground);
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-input:focus, .contact-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 20%, transparent);
}
.contact-textarea { resize: vertical; min-height: 120px; }

.contact-form__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding-top: 0.5rem;
}
@media (min-width: 640px) {
  .contact-form__footer { flex-direction: row; align-items: center; justify-content: space-between; }
}

.contact-info-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .contact-info-list { flex-direction: row; flex-wrap: wrap; gap: 1.5rem; } }
.contact-info-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-background) 70%, transparent); }
.contact-info-list svg { color: var(--color-accent); flex-shrink: 0; }
.contact-info-link { transition: color 0.2s ease; word-break: break-all; }
.contact-info-link:hover { color: var(--color-background); }

.contact-submit { width: 100%; justify-content: center; }
@media (min-width: 640px) { .contact-submit { width: auto; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--color-border);
  background-color: var(--color-secondary);
  padding: 3rem 0;
}
@media (min-width: 1024px) { .site-footer { padding: 4rem 0; } }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 3rem; } }

.footer-brand {}
.footer-logo-img { height: 48px !important; }
.footer-about { margin-top: 1rem; font-size: 0.875rem; color: var(--color-muted-fg); line-height: 1.75; max-width: 22rem; }

.footer-col-heading { font-family: var(--font-body); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.22em; color: var(--color-foreground); margin-bottom: 1rem; }
.footer-nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav-link { font-size: 0.875rem; color: var(--color-muted-fg); transition: color 0.2s ease; }
.footer-nav-link:hover { color: var(--color-foreground); }

.footer-contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted-fg); }
.footer-contact-link { transition: color 0.2s ease; word-break: break-all; }
.footer-contact-link:hover { color: var(--color-foreground); }
.footer-contact-text { font-size: 0.875rem; }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-copyright, .footer-credit { font-size: 0.75rem; color: var(--color-muted-fg); }
.footer-credit-link { text-decoration: underline; transition: color 0.2s ease; }
.footer-credit-link:hover { color: var(--color-foreground); }

/* ============================================================
   CART DRAWER
   ============================================================ */
body.cart-open { overflow: hidden; }
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }
body.cart-open #theme-cart-drawer { transform: translateX(0); }

#theme-cart-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(48,42,33,0.5);
  z-index: 49;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

#theme-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 28rem;
  background-color: var(--color-background);
  z-index: 50;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 40px rgba(48,42,33,0.15);
}
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.cart-drawer__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; }
.cart-drawer__close {
  padding: 0.5rem;
  color: var(--color-muted-fg);
  transition: color 0.2s ease;
}
.cart-drawer__close:hover { color: var(--color-foreground); }

.cart-drawer__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  gap: 1rem;
  color: var(--color-muted-fg);
}
.cart-drawer__empty svg { color: var(--color-muted-fg); }
.cart-drawer__empty-msg { color: var(--color-muted-fg); }

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Cart item */
.cart-item { display: flex; gap: 1rem; }
.cart-item__image-link { flex-shrink: 0; }
.cart-item__image {
  width: 5rem;
  height: 6rem;
  border-radius: 0.5rem;
  object-fit: cover;
  display: block;
  position: relative; inset: unset;
  width: 5rem; height: 6rem;
}
.cart-item__details { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.cart-item__top { display: flex; justify-content: space-between; gap: 0.5rem; align-items: flex-start; }
.cart-item__name { font-family: var(--font-display); font-weight: 600; color: var(--color-foreground); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color 0.2s ease; }
.cart-item__name:hover { color: var(--color-accent); }
.cart-item__remove { color: var(--color-muted-fg); transition: color 0.2s ease; flex-shrink: 0; padding: 2px; }
.cart-item__remove:hover { color: var(--color-foreground); }
.cart-item__attr { font-size: 0.75rem; color: var(--color-muted-fg); margin-top: 2px; }
.cart-item__bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 0.75rem; }
.cart-item__qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 9999px;
}
.cart-item__qty-btn {
  padding: 0.375rem;
  transition: color 0.2s ease;
  color: var(--color-foreground);
}
.cart-item__qty-btn:hover { color: var(--color-accent); }
.cart-item__qty-num { padding: 0 0.75rem; font-size: 0.875rem; font-weight: 500; min-width: 2rem; text-align: center; }
.cart-item__total { font-family: var(--font-body); font-weight: 600; font-size: 0.875rem; }

.cart-drawer__footer {
  border-top: 1px solid var(--color-border);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}
.cart-drawer__subtotal { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-body); font-size: 0.875rem; }
.cart-drawer__subtotal-label { color: var(--color-muted-fg); }
.cart-drawer__subtotal-value { font-weight: 600; font-size: 1rem; }
.cart-drawer__shipping-note { font-size: 0.75rem; color: var(--color-muted-fg); }
.cart-drawer__checkout { width: 100%; justify-content: center; }
.cart-drawer__actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cart-drawer__continue { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--color-muted-fg); transition: color 0.2s ease; }
.cart-drawer__continue:hover { color: var(--color-foreground); }
.cart-drawer__empty-btn { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--color-muted-fg); transition: color 0.2s ease; display: inline-flex; align-items: center; gap: 0.375rem; }
.cart-drawer__empty-btn:hover { color: #c0392b; }

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
.single-product .theme-inner-page { padding-top: calc(var(--header-height) + 2rem); }
@media (min-width: 1024px) {
  .single-product .theme-inner-page { padding-top: calc(var(--header-height) + 3rem); }
}

.back-to-shop-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-muted-fg);
  margin-bottom: 2rem;
  transition: color 0.2s ease;
}
.back-to-shop-link:hover { color: var(--color-foreground); }

.theme-product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  min-width: 0;
}
@media (min-width: 1024px) {
  .theme-product-layout {
    grid-template-columns: 7fr 5fr;
    gap: 4rem;
  }
}

.theme-product-gallery { min-width: 0; max-width: 100%; }
.theme-product-info { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) {
  .theme-product-info-sticky { position: sticky; top: calc(var(--header-height) + 1.5rem); }
}

/* Main product image */
.theme-product-main-img-wrap {
  border-radius: 1rem;
  overflow: hidden;
  background-color: var(--color-secondary);
  aspect-ratio: 4/5;
  position: relative;
}
@media (min-width: 1024px) { .theme-product-main-img-wrap { aspect-ratio: 5/6; } }
.theme-product-main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  position: absolute; inset: 0;
}

/* Thumbnails */
.theme-product-thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  max-width: 100%;
}
.theme-product-thumb {
  width: 4rem;
  height: 4.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
  flex-shrink: 0;
  position: relative;
}
.theme-product-thumb.is-active { border-color: var(--color-primary); }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }

/* Product info */
.product-title {
  font-family: var(--font-body);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-foreground);
  line-height: 1.05;
  margin-top: 0.75rem;
  text-transform: none;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (min-width: 640px)  { .product-title { font-size: 3rem; } }
@media (min-width: 1024px) { .product-title { font-size: 3.75rem; } }

.product-separator { border: none; border-top: 1px solid var(--color-border); margin: 1.5rem 0; }

.product-price { font-family: var(--font-body); font-size: 1.5rem; font-weight: 600; }
.product-price .woocommerce-Price-amount { font-size: inherit; font-family: inherit; }

.product-out-of-stock { font-size: 0.875rem; color: var(--color-muted-fg); text-transform: uppercase; letter-spacing: 0.18em; margin-top: 0.5rem; }

.product-description { margin-top: 1.5rem; font-size: 0.9375rem; line-height: 1.75; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); overflow-wrap: break-word; word-break: break-word; }

/* Qty + add-to-cart row */
.theme-add-to-cart-area {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.theme-add-to-cart-area .single_add_to_cart_button {
  flex: 1 1 auto;
  min-width: 160px;
}

/* Quantity control */
.theme-quantity-wrapper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  overflow: hidden;
}
.theme-qty-minus, .theme-qty-plus {
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  color: var(--color-foreground);
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
}
.theme-qty-minus:hover, .theme-qty-plus:hover { color: var(--color-accent); }
.theme-qty-input {
  width: 3rem;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0;
  color: var(--color-foreground);
  -moz-appearance: textfield;
}
.theme-qty-input::-webkit-outer-spin-button,
.theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Details section */
.product-details-section { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.product-details-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-foreground);
  margin-bottom: 0.75rem;
}
.product-details-content { font-size: 0.9375rem; line-height: 1.75; color: var(--color-muted-fg); overflow-wrap: break-word; }

/* Product Accordion */
.product-accordion { margin-top: 2rem; border-top: 1px solid var(--color-border); }
.product-acc-item { border-bottom: 1px solid var(--color-border); }
.product-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-foreground);
  transition: color 0.2s ease;
}
.product-acc-trigger:hover { color: var(--color-accent); }
.acc-chevron { transition: transform 0.3s ease; }
.product-acc-item.is-open .acc-chevron { transform: rotate(180deg); }
.product-acc-answer { padding: 0 0 1rem; }
.product-acc-answer p, .product-acc-answer ul { font-size: 0.9375rem; line-height: 1.75; color: var(--color-muted-fg); margin: 0; }
.product-acc-answer ul { padding-left: 1.25rem; }
.product-acc-answer li { margin-bottom: 0.25rem; }

.product-disclaimer { margin-top: 2rem; font-size: 0.75rem; font-style: italic; color: var(--color-muted-fg); line-height: 1.75; }

/* Related products */
.related-products-section { margin-top: 6rem; }
.related-products-header { margin-bottom: 2.5rem; }
.related-products-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--color-foreground);
  margin-top: 0.75rem;
}
@media (min-width: 640px)  { .related-products-title { font-size: 1.875rem; } }
@media (min-width: 1024px) { .related-products-title { font-size: 2.25rem; } }

.related-product-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .related-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .related-product-grid { grid-template-columns: repeat(3, 1fr); } }

/* Variable product variations table */
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; font-family: var(--font-body); font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.18em; }
.single-product .variations tbody td.value { padding-top: 0; }
.theme-attr-select-hidden { display: none !important; }

.theme-variation-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.theme-variation-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--color-border);
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.theme-variation-pill:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.theme-variation-pill.is-selected {
  background-color: var(--color-foreground);
  border-color: var(--color-foreground);
  color: var(--color-background);
}
.theme-variation-pill.is-selected:hover {
  color: var(--color-background);
  opacity: 0.9;
}

/* Shop load more */
.shop-load-more-wrap {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
}
.shop-load-more-btn {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
}
.shop-load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.woocommerce-product-details__short-description { overflow-wrap: break-word; word-break: break-word; }
.variations label { font-family: var(--font-body); font-weight: 600; font-style: normal; }
.posted_in { overflow-wrap: break-word; word-break: break-word; }

/* Loading spinner suppression for add-to-cart */
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* Button lock */
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

/* ============================================================
   INNER PAGES
   ============================================================ */
.inner-page-content { padding-top: 3rem; padding-bottom: 5rem; min-height: 50vh; }

.page-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.25rem;
  color: var(--color-foreground);
  margin-bottom: 2rem;
}
@media (min-width: 1024px) { .page-title { font-size: 3rem; } }

.entry-content { font-size: 0.9375rem; line-height: 1.75; color: var(--color-foreground); }
.entry-content p { margin-bottom: 1rem; }
.entry-content h2 { font-family: var(--font-display); font-size: 1.5rem; margin: 1.5rem 0 0.75rem; }
.entry-content a { text-decoration: underline; }

/* 404 */
.error-404 { text-align: center; padding: 4rem 0; }
.error-title { font-family: var(--font-display); font-size: 2.25rem; margin: 1rem 0; }
.error-body { color: var(--color-muted-fg); margin-bottom: 2rem; }

/* ============================================================
   ARCHIVE PAGE
   ============================================================ */
.woocommerce-archive .archive-header { margin-bottom: 2rem; }
.woocommerce-archive .archive-header .woocommerce-products-header__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.25rem;
  color: var(--color-foreground);
}
.woocommerce-archive.theme-inner-page .theme-product-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .woocommerce-archive.theme-inner-page .theme-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .woocommerce-archive.theme-inner-page .theme-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .woocommerce-archive.theme-inner-page .theme-product-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   CHECKOUT
   ============================================================ */
body.woocommerce-checkout .site-main {
  padding-top: var(--header-height);
  padding-bottom: 4rem;
}
body.woocommerce-checkout .page-title {
  margin-bottom: 2rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.25rem;
}
@media (min-width: 1024px) {
  body.woocommerce-checkout .page-title { font-size: 3rem; }
}
body.woocommerce-checkout .entry-content { max-width: 100%; }

body.woocommerce-checkout .wc-block-checkout {
  display: block;
  max-width: 100%;
}
@media (min-width: 768px) {
  body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--checkout-gap);
    align-items: start;
    width: 100%;
  }
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
  min-width: 0; width: 100%; max-width: none;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
  background-color: var(--color-secondary);
  border-radius: var(--card-radius);
  padding: 2rem;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select {
  width: 100% !important; max-width: none !important;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-foreground);
  background: var(--color-background);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background-color: var(--color-foreground) !important;
  color: var(--color-background) !important;
  border-radius: var(--btn-radius) !important;
  box-shadow: var(--shadow-soft) !important;
  font-family: var(--font-body) !important;
  font-size: var(--btn-font-size) !important;
  font-weight: var(--btn-font-weight) !important;
  letter-spacing: var(--btn-letter-spacing) !important;
  text-transform: none !important;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
  opacity: 0.85 !important;
  transform: translateY(-2px) !important;
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order { max-width: 48rem; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  padding: 0 0 1rem;
  color: var(--color-foreground);
}
body.theme-thankyou-page .woocommerce-order-overview {
  list-style: none; padding: 0; margin: 0 0 2rem;
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  background: var(--color-secondary);
  border-radius: var(--card-radius);
  padding: 1.5rem;
}
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 0.875rem; color: var(--color-muted-fg); }
body.theme-thankyou-page .woocommerce-order-overview li strong { display: block; color: var(--color-foreground); font-size: 1rem; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }

/* ============================================================
   WOOCOMMERCE NOTICES
   ============================================================ */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  font-size: 0.9375rem;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin: 1rem 0;
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.theme-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}
.theme-toast__item {
  background-color: var(--color-foreground);
  color: var(--color-background);
  padding: 1rem 1.25rem;
  border-radius: var(--card-radius);
  font-size: 0.875rem;
  max-width: 320px;
  box-shadow: var(--shadow-elevated);
  animation: slideUp 0.3s ease forwards;
  pointer-events: auto;
}
.theme-toast__title { font-weight: 600; margin-bottom: 0.25rem; }
.theme-toast__body { color: color-mix(in srgb, var(--color-background) 70%, transparent); font-size: 0.8125rem; }

/* ============================================================
   PAGINATION
   ============================================================ */
.page-numbers { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin: 3rem 0; list-style: none; padding: 0; }
.page-numbers a, .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--color-border);
  font-size: 0.875rem;
  transition: all 0.2s ease;
}
.page-numbers a:hover, .page-numbers .current {
  background-color: var(--color-foreground);
  color: var(--color-background);
  border-color: var(--color-foreground);
}

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 1023px) {
  .cart-btn.desktop-only { display: none !important; }
}

/* ============================================================
   @media prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal-item { transition: none; }
  .journal-marquee { animation: none; }
  .about-circle-inner { animation: none; }
  .ritual-orb { animation: none; }
  .ritual-line { animation: none; }
}
