/* One Spirit Creations brand layer. Loaded after StoreFoundry public styles. */
:root {
  --osc-ink: #121510;
  --osc-charcoal: #1b1c18;
  --osc-pine: #26352b;
  --osc-forest: #35493b;
  --osc-moss: #6f755b;
  --osc-copper: #a8673f;
  --osc-copper-deep: #784528;
  --osc-gold: #c39a5a;
  --osc-gold-light: #e0c28c;
  --osc-parchment: #f1e9dc;
  --osc-cream: #fff9f0;
  --osc-sand: #dfd0b8;
  --osc-line: rgba(168, 103, 63, 0.3);
  --osc-line-dark: rgba(224, 194, 140, 0.28);
  --osc-shadow: 0 24px 70px rgba(18, 21, 16, 0.16);
  --osc-shadow-dark: 0 30px 90px rgba(4, 6, 4, 0.44);
  --gradient-page:
    radial-gradient(circle at 8% 6%, rgba(195, 154, 90, 0.13), transparent 28rem),
    radial-gradient(circle at 92% 22%, rgba(53, 73, 59, 0.11), transparent 31rem),
    linear-gradient(145deg, #f8f1e6, #eee2d1 58%, #e8ddcd);
  --focus-ring: 0 0 0 3px rgba(168, 103, 63, 0.38), 0 0 0 6px rgba(255, 249, 240, 0.9);
}

html {
  background: var(--osc-parchment);
  scrollbar-color: var(--osc-copper) #eadfce;
}

body {
  background-color: var(--osc-parchment);
  background-image:
    linear-gradient(rgba(246, 238, 225, 0.93), rgba(238, 226, 209, 0.96)),
    url("../images/onespirit/accents/board-botanical-texture.webp");
  background-size: auto, 76px 78px;
  color: var(--osc-ink);
  letter-spacing: 0.005em;
}

::selection {
  color: var(--osc-cream);
  background: var(--osc-copper-deep);
}

h1,
h2,
h3 {
  color: var(--osc-ink);
  letter-spacing: 0.01em;
}

h1 {
  letter-spacing: -0.02em;
}

p {
  color: #555c53;
}

a {
  color: var(--osc-copper-deep);
}

a:hover {
  color: var(--osc-pine);
}

:where(a, button, input, textarea, select):focus-visible {
  border-radius: 0.25rem;
  outline: 2px solid var(--osc-copper-deep);
  outline-offset: 4px;
  box-shadow: var(--focus-ring);
}

.container {
  width: min(var(--content-wide), calc(100% - clamp(1.25rem, 5vw, 4rem)));
}

.skip-link {
  color: var(--osc-ink);
  background: var(--osc-gold-light);
  border-color: var(--osc-copper-deep);
}

/* Header and navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(195, 154, 90, 0.25);
  background: rgba(18, 21, 16, 0.92);
  box-shadow: 0 12px 35px rgba(3, 5, 3, 0.16);
  backdrop-filter: blur(18px) saturate(120%);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--osc-gold), transparent);
  opacity: 0.65;
}

.site-header__inner {
  min-height: 76px;
  gap: 1.5rem;
}

.site-brand {
  gap: 0.8rem;
  color: var(--osc-cream);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-brand:hover {
  color: var(--osc-gold-light);
}

.site-brand__mark {
  width: 44px;
  filter: drop-shadow(0 3px 10px rgba(195, 154, 90, 0.25));
}

.site-nav {
  gap: 0.2rem;
}

.site-nav a {
  position: relative;
  min-height: 44px;
  padding: 0.65rem 0.78rem;
  color: rgba(255, 249, 240, 0.78);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0.8rem;
  bottom: 0.35rem;
  left: 0.8rem;
  height: 1px;
  content: "";
  background: var(--osc-gold);
  transform: scaleX(0);
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--osc-cream);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  padding: 0.65rem;
  color: var(--osc-cream);
  border: 1px solid var(--osc-line-dark);
  border-radius: 0.5rem;
  background: transparent;
  font: inherit;
}

.site-nav-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.site-nav-toggle__icon {
  display: grid;
  gap: 5px;
}

.site-nav-toggle__icon i {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--osc-gold-light);
  transition: transform 200ms ease, opacity 200ms ease;
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__icon i:first-child {
  transform: translateY(6px) rotate(45deg);
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__icon i:nth-child(2) {
  opacity: 0;
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__icon i:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero treatments */
.coming-soon-hero,
.home-hero {
  position: relative;
  min-height: clamp(690px, 82vh, 900px);
  isolation: isolate;
  background: var(--osc-ink) url("../images/onespirit/hero-forest-sacred-1440.webp") center / cover no-repeat;
}

.coming-soon-hero::after,
.home-hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;
  height: clamp(54px, 7vw, 86px);
  pointer-events: none;
  content: "";
  background:
    url("../images/onespirit/accents/board-copper-divider.webp") center / min(560px, 72vw) auto no-repeat,
    linear-gradient(180deg, transparent 0%, rgba(18, 21, 16, 0.18) 28%, rgba(241, 233, 220, 0.88) 100%);
  opacity: 0.82;
}

.coming-soon-hero__art img,
.home-hero__art img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: osc-hero-breathe 22s ease-in-out infinite alternate;
}

.coming-soon-hero__art,
.home-hero__art {
  inset: 0;
  z-index: 0;
  height: 100%;
}

.one-spirit-hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.one-spirit-hero-geometry {
  position: absolute;
  top: 50%;
  left: clamp(1rem, 7vw, 8rem);
  width: min(48vw, 720px);
  aspect-ratio: 1;
  background: url("../images/onespirit/accents/seed-of-life-copper.svg") center / contain no-repeat;
  filter: drop-shadow(0 0 18px rgba(214, 143, 72, 0.54)) drop-shadow(0 0 46px rgba(118, 190, 167, 0.13));
  opacity: 0.88;
  transform: translateY(-50%);
  animation: osc-geometry-glow 11s ease-in-out infinite alternate;
}

.one-spirit-hero-atmosphere::before {
  position: absolute;
  top: 17%;
  left: 2%;
  width: min(67vw, 980px);
  height: 68%;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 52% 72%, rgba(232, 161, 78, 0.3), transparent 19%),
    conic-gradient(from 212deg at 48% 58%, transparent 0 12%, rgba(98, 190, 163, 0.17) 17%, rgba(174, 111, 198, 0.2) 20%, rgba(232, 151, 72, 0.27) 24%, transparent 29% 70%, rgba(87, 177, 156, 0.13) 76%, transparent 82%);
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: 0.66;
  transform: rotate(-8deg);
  animation: osc-light-ribbon 18s ease-in-out infinite alternate;
}

.one-spirit-hero-atmosphere::after {
  position: absolute;
  inset: 8% 34% 14% 4%;
  content: "";
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 211, 135, 0.95) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 23%, rgba(255, 188, 91, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle at 45% 78%, rgba(255, 229, 174, 0.85) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 84% 62%, rgba(128, 211, 184, 0.55) 0 1px, transparent 2px),
    radial-gradient(circle at 31% 49%, rgba(255, 185, 84, 0.65) 0 1px, transparent 2px);
  background-size: 170px 160px, 220px 190px, 260px 220px, 190px 230px, 240px 180px;
  opacity: 0.52;
}

.coming-soon-hero__veil,
.home-hero__veil {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 10, 8, 0.04) 0%, rgba(8, 10, 8, 0.08) 48%, rgba(8, 10, 8, 0.72) 72%, rgba(8, 10, 8, 0.92) 100%),
    linear-gradient(0deg, rgba(8, 10, 8, 0.52), transparent 48%);
}

.coming-soon-hero__inner,
.home-hero__inner {
  position: relative;
  z-index: 3;
  justify-content: flex-end;
  padding-block: clamp(7.5rem, 13vh, 10rem) clamp(3.5rem, 8vh, 6rem);
}

.coming-soon-hero__inner {
  place-items: center end;
}

.coming-soon-panel,
.home-hero__panel {
  position: relative;
  width: min(100%, 610px);
  margin-left: auto;
  padding: clamp(1.6rem, 4vw, 3rem);
  color: var(--osc-cream);
  border: 1px solid rgba(224, 194, 140, 0.34);
  border-radius: 0.3rem;
  background: rgba(14, 17, 13, 0.76);
  box-shadow:
    var(--osc-shadow-dark),
    inset 0 0 42px rgba(224, 194, 140, 0.035),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(16px) saturate(115%);
  -webkit-backdrop-filter: blur(16px) saturate(115%);
}

.coming-soon-panel::after,
.home-hero__panel::after {
  position: absolute;
  inset: 0.65rem;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(195, 154, 90, 0.16);
}

.coming-soon-panel h1,
.coming-soon-panel p,
.home-hero__panel h1,
.home-hero__panel p {
  color: var(--osc-cream);
}

.coming-soon-panel h1,
.home-hero__panel h1 {
  font-size: clamp(2.75rem, 6vw, 5rem);
  letter-spacing: -0.025em;
  line-height: 0.94;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.38);
}

.coming-soon-logo,
.home-hero__logo {
  width: min(330px, 70%);
  margin: -1rem auto 0.25rem;
  border-radius: 50%;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.4));
}

.coming-soon-panel .eyebrow,
.home-hero__panel .eyebrow {
  color: var(--osc-gold-light);
}

.coming-soon-panel .small-note,
.home-hero__lead {
  color: rgba(255, 249, 240, 0.78);
}

.badge--luminous {
  color: var(--osc-ink);
  border: 1px solid rgba(224, 194, 140, 0.65);
  background: linear-gradient(135deg, var(--osc-gold-light), var(--osc-gold));
  box-shadow: 0 10px 30px rgba(195, 154, 90, 0.18);
}

/* Editorial rhythm and ornament */
.section,
.home-section {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.section-heading {
  position: relative;
  max-width: 760px;
}

.section-heading--centered {
  margin-inline: auto;
}

.section-heading::after,
.page-hero::after {
  display: block;
  width: 208px;
  height: 24px;
  margin-top: 1.5rem;
  content: "";
  background: url("../images/onespirit/accents/board-copper-divider.webp") center / contain no-repeat;
}

.section-heading--centered::after,
.page-hero--centered::after {
  margin-inline: auto;
}

.eyebrow {
  color: var(--osc-copper-deep);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.interior-page {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.page-hero {
  position: relative;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid var(--osc-line-dark);
  border-radius: 0.25rem;
  background:
    radial-gradient(circle at 86% 18%, rgba(195, 154, 90, 0.16), transparent 14rem),
    linear-gradient(135deg, rgba(18, 21, 16, 0.98), rgba(38, 53, 43, 0.95));
  box-shadow: var(--osc-shadow);
}

.page-hero--spiritual {
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-hero--spiritual::before {
  content: none;
}

.page-hero--spiritual .page-hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 700px);
  margin-inline: auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(168, 103, 63, 0.2);
  border-radius: 0.55rem;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 12px 34px rgba(58, 42, 27, 0.12);
  backdrop-filter: blur(2px);
}

.page-hero__symbol {
  display: block;
  width: 80px;
  height: auto;
  margin: 0 auto 0.85rem;
}

.page-hero::before {
  position: absolute;
  right: -65px;
  bottom: -100px;
  width: 280px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(195, 154, 90, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 27%, rgba(195, 154, 90, 0.12) 27.5% 28%, transparent 28.5% 46%, rgba(195, 154, 90, 0.1) 46.5% 47%, transparent 47.5%),
    conic-gradient(from 0deg, transparent 0 11%, rgba(195, 154, 90, 0.12) 11.5% 12%, transparent 12.5% 24%, rgba(195, 154, 90, 0.12) 24.5% 25%, transparent 25.5% 100%);
}

.page-hero h1,
.page-hero p,
.page-hero .eyebrow {
  position: relative;
  z-index: 1;
  color: var(--osc-cream);
}

.page-hero--spiritual h1,
.page-hero--spiritual p {
  color: var(--osc-ink);
}

.page-hero--spiritual .eyebrow {
  color: var(--osc-copper-deep);
}

.page-hero .lead {
  max-width: 66ch;
  color: rgba(255, 249, 240, 0.75);
}

.page-hero--spiritual .lead {
  margin-inline: auto;
  color: rgba(34, 31, 25, 0.8);
}

.page-hero::after {
  position: relative;
  z-index: 1;
  filter: brightness(1.18) saturate(0.92);
}

body.past-creations-page .storefront-hero::after {
  width: min(680px, 92%);
  height: clamp(72px, 7.2vw, 92px);
  margin: 1.75rem auto 0.25rem;
  background-position: center;
  background-size: 100% auto;
}

/* Shared One Spirit interior-page system */
.interior-page {
  background:
    radial-gradient(circle at 9% 18%, rgba(195, 154, 90, 0.08), transparent 21rem),
    radial-gradient(circle at 94% 72%, rgba(137, 113, 155, 0.07), transparent 24rem),
    linear-gradient(180deg, #f6efe3 0%, #f3ecdf 58%, #eee4d4 100%);
}

body.spiritual-background-page .interior-page {
  background-color: #f1dfc2;
  background-image: url("/images/one-spirit-background.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.interior-shell {
  position: relative;
}

.interior-hero {
  width: min(100%, 860px);
  border-radius: 0.45rem;
}

.interior-hero.decorative-divider::after {
  width: min(560px, 88%);
  height: 84px;
  margin: 1.55rem 0 0.15rem;
  background-position: center;
  background-size: 100% auto;
}

.interior-hero.page-hero--centered::after {
  margin-inline: auto;
}

.interior-page .interior-panel {
  position: relative;
  border: 1px solid rgba(168, 103, 63, 0.2);
  border-radius: 0.85rem;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 18px 52px rgba(38, 31, 24, 0.09);
}

.editorial-panel {
  padding: clamp(1.75rem, 4vw, 3rem);
}

.form-panel {
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
}

.interior-panel > h2:first-child,
.editorial-panel > h2:first-child,
.form-panel > h2:first-child {
  color: var(--osc-pine);
}

.sacred-geometry-accent:not(.empty-state) {
  overflow: hidden;
}

.sacred-geometry-accent:not(.empty-state)::after {
  position: absolute;
  right: -3.5rem;
  bottom: -4rem;
  width: 15rem;
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  background: url("../images/onespirit/accents/board-flower-of-life.webp") center / contain no-repeat;
  opacity: 0.055;
}

/* About and Creations editorial surfaces */
.interior-page--about .story-flow {
  gap: clamp(1.25rem, 3vw, 2rem);
}

.interior-page--about .story-flow section {
  padding: clamp(1.75rem, 4vw, 3rem);
  overflow: hidden;
  border-left: 1px solid rgba(168, 103, 63, 0.2);
}

.interior-page--about .story-flow section:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(239, 232, 242, 0.8));
}

.interior-page--about .story-flow section::after,
.interior-page--creations .creation-story-card::after {
  position: absolute;
  right: -4rem;
  bottom: -4.5rem;
  width: 13rem;
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(168, 103, 63, 0.1);
  border-radius: 50%;
  background: radial-gradient(circle, transparent 0 31%, rgba(168, 103, 63, 0.07) 31.5% 32%, transparent 32.5% 49%, rgba(168, 103, 63, 0.06) 49.5% 50%, transparent 50.5%);
}

.interior-page--about .story-flow h2,
.interior-page--creations .creation-story-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.85rem;
  color: var(--osc-pine);
}

.interior-page--about .story-flow p,
.interior-page--creations .creation-story-card .card__content {
  position: relative;
  z-index: 1;
  max-width: 68ch;
  line-height: 1.78;
}

.interior-page--about .story-flow p:last-child,
.interior-page--creations .creation-story-card p:last-child {
  margin-bottom: 0;
}

.interior-page--creations .content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.interior-page--creations .creation-story-card {
  min-height: 100%;
  padding: clamp(1.6rem, 3.5vw, 2.5rem);
  overflow: hidden;
}

.interior-page--creations .creation-story-card:has(a) {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.interior-page--creations .creation-story-card:has(a):hover,
.interior-page--creations .creation-story-card:has(a):focus-within {
  border-color: rgba(168, 103, 63, 0.48);
  box-shadow: 0 24px 58px rgba(38, 31, 24, 0.14);
  transform: translateY(-4px);
}

/* Shop and catalog */
.interior-page--shop .category-nav {
  margin-bottom: clamp(1.5rem, 3vw, 2.35rem);
}

.interior-page--shop .category-nav a {
  padding-inline: 1.05rem;
  box-shadow: 0 7px 18px rgba(38, 31, 24, 0.05);
}

.interior-page--shop .catalog-filters {
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: 0.85rem;
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 18px 48px rgba(38, 31, 24, 0.09);
}

.interior-page--shop .catalog-filters label {
  color: var(--osc-pine);
  letter-spacing: 0.02em;
}

.interior-page--shop .catalog-results {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  color: rgba(38, 53, 43, 0.72);
}

.interior-page--shop .product-grid {
  gap: clamp(1.4rem, 3vw, 2.25rem);
}

.interior-page--shop .product-card {
  border-color: rgba(168, 103, 63, 0.22);
  border-radius: 0.85rem;
  box-shadow: 0 18px 48px rgba(38, 31, 24, 0.1);
}

.interior-page--shop .product-card__image-link {
  border-bottom: 1px solid rgba(168, 103, 63, 0.2);
}

.interior-page--shop .product-card__image-link::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255, 249, 240, 0.16);
}

.interior-page--shop .product-card__body {
  padding: clamp(1.3rem, 2.4vw, 1.75rem);
}

.interior-page--shop .product-card__title {
  color: var(--osc-pine);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.interior-page--shop .product-price {
  color: var(--osc-copper-deep);
}

.shared-cta {
  border-radius: 0.85rem;
  background:
    radial-gradient(circle at 92% 18%, rgba(137, 113, 155, 0.12), transparent 12rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(241, 232, 244, 0.9));
}

/* Contact form system */
.interior-page--contact .contact-layout {
  grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1.45fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  max-width: 1180px;
  margin-inline: auto;
}

.interior-page--contact .contact-details,
.interior-page--contact .contact-form-panel {
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  overflow: hidden;
}

.interior-page--contact .contact-details::before,
.interior-page--contact .contact-form-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--osc-copper), var(--osc-gold), transparent);
}

.interior-page--contact .contact-details h2,
.interior-page--contact .contact-form-panel > h2 {
  margin-bottom: 1rem;
  color: var(--osc-pine);
}

.interior-page--contact .contact-details > p:not(.small-note) {
  line-height: 1.75;
}

.interior-page--contact .contact-details .small-note {
  margin-top: 1.5rem;
  padding: 1rem 1.05rem;
  color: rgba(38, 53, 43, 0.78);
  border-left: 3px solid var(--osc-copper);
  border-radius: 0.25rem;
  background: rgba(239, 226, 207, 0.64);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.65;
  text-transform: none;
}

.interior-page--contact .contact-form {
  gap: 1.15rem;
}

.interior-page--contact .form-grid {
  gap: 1rem;
}

.interior-page--contact .form-field {
  gap: 0.45rem;
}

.interior-page--contact .form-field label {
  color: var(--osc-pine);
  font-size: 0.88rem;
  letter-spacing: 0.015em;
}

.interior-page--contact .contact-form .button--primary {
  width: fit-content;
  min-width: 11rem;
}

.interior-page--contact .privacy-reassurance {
  padding: 0.9rem 1rem;
  color: rgba(38, 53, 43, 0.76);
  border: 1px solid rgba(168, 103, 63, 0.18);
  border-radius: 0.35rem;
  background: rgba(239, 226, 207, 0.46);
  line-height: 1.6;
}

/* Keep Custom Request on the same shared surface system. */
.custom-request-page .custom-request-intro,
.custom-request-page .custom-request-panel,
.custom-request-page .custom-request-confirmation {
  border-color: rgba(168, 103, 63, 0.2);
  border-radius: 0.85rem;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 18px 52px rgba(38, 31, 24, 0.09);
}

.custom-request-page .custom-request-facts p {
  padding: 1rem;
  border: 1px solid rgba(168, 103, 63, 0.14);
  border-radius: 0.45rem;
  background: rgba(239, 226, 207, 0.38);
  line-height: 1.65;
}

.custom-request-page .custom-request-form label {
  color: var(--osc-pine);
}

.custom-request-page .field-optional {
  color: #62685e;
  opacity: 1;
}

.custom-request-page .field-hint,
.custom-request-page .privacy-reassurance {
  color: #565e54;
}

.home-section--collections,
.coming-soon-showcase {
  background:
    linear-gradient(180deg, rgba(255, 249, 240, 0.74), rgba(241, 233, 220, 0.92));
  border-block: 1px solid rgba(168, 103, 63, 0.14);
}

.home-story {
  color: var(--osc-cream);
  background:
    radial-gradient(circle at 18% 45%, rgba(195, 154, 90, 0.15), transparent 24rem),
    linear-gradient(135deg, var(--osc-ink), var(--osc-pine));
}

.home-story h2,
.home-story p,
.home-story .text-link {
  color: var(--osc-cream);
}

.home-story__mark {
  color: var(--osc-gold);
  border-color: rgba(195, 154, 90, 0.46);
  background: radial-gradient(circle, rgba(195, 154, 90, 0.11), transparent 68%);
  box-shadow: inset 0 0 40px rgba(195, 154, 90, 0.06);
}

.home-custom__panel,
.home-closing__inner,
.call-to-action {
  border: 1px solid var(--osc-line);
  border-radius: 0.25rem;
  background:
    linear-gradient(135deg, rgba(255, 249, 240, 0.98), rgba(239, 226, 207, 0.96));
  box-shadow: var(--osc-shadow);
}

.home-custom__panel::before,
.call-to-action::before {
  color: rgba(168, 103, 63, 0.25);
}

/* Buttons, links, notices, and cards */
.button {
  min-height: 48px;
  padding: 0.82rem 1.25rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button--primary,
.call-to-action .button {
  color: var(--osc-cream);
  border: 1px solid var(--osc-copper-deep);
  background: linear-gradient(135deg, var(--osc-copper), var(--osc-copper-deep));
  box-shadow: 0 10px 24px rgba(120, 69, 40, 0.2);
}

.button--primary:hover,
.call-to-action .button:hover {
  color: #fff;
  background: linear-gradient(135deg, #b8754b, #6d3d24);
  box-shadow: 0 14px 30px rgba(120, 69, 40, 0.28);
  transform: translateY(-2px);
}

.button--secondary {
  color: var(--osc-pine);
  border: 1px solid rgba(38, 53, 43, 0.46);
  background: rgba(255, 249, 240, 0.62);
}

.button--secondary:hover {
  color: var(--osc-cream);
  border-color: var(--osc-pine);
  background: var(--osc-pine);
  transform: translateY(-2px);
}

.button:active {
  box-shadow: none;
  transform: translateY(0) scale(0.985);
}

.home-hero__panel .button--secondary,
.coming-soon-panel .button--secondary {
  color: var(--osc-cream);
  border-color: var(--osc-line-dark);
  background: rgba(255, 255, 255, 0.04);
}

.text-link {
  color: var(--osc-copper-deep);
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(90deg, currentColor, var(--osc-gold));
  background-position: left calc(100% - 0.05em);
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: color 180ms ease, background-size 220ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  background-size: 100% 1px;
}

.card,
.creation-card,
.compact-panel,
.empty-state,
.contact-details,
.contact-form-panel,
.order-card,
.cart-summary,
.cart-line,
.product-information > section {
  border: 1px solid var(--osc-line);
  border-radius: 0.35rem;
  background: rgba(255, 249, 240, 0.92);
  box-shadow: 0 16px 48px rgba(18, 21, 16, 0.09);
}

.home-collection-card,
.product-card {
  overflow: hidden;
  border: 1px solid var(--osc-line);
  border-radius: 0.35rem;
  background: var(--osc-cream);
  box-shadow: 0 18px 48px rgba(18, 21, 16, 0.1);
}

.home-collection-card::before {
  background: linear-gradient(90deg, var(--osc-copper), var(--osc-gold));
}

.home-collection-card:hover,
.product-card:hover,
.product-card:focus-within {
  border-color: rgba(168, 103, 63, 0.58);
  box-shadow: 0 26px 60px rgba(18, 21, 16, 0.16);
  transform: translateY(-5px);
}

.home-collection-card__star,
.product-card__image-fallback,
.product-gallery__fallback {
  color: var(--osc-gold);
  background:
    radial-gradient(circle, rgba(195, 154, 90, 0.14), transparent 63%),
    linear-gradient(135deg, var(--osc-ink), var(--osc-pine));
}

.product-card__image-link {
  position: relative;
  background: var(--osc-charcoal);
}

.product-card__image {
  filter: saturate(0.9) contrast(1.03);
}

.product-card__image-link::after,
.showcase-carousel__image-wrap::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 60%, rgba(10, 12, 9, 0.32));
}

.store-badge,
.badge {
  border: 1px solid rgba(168, 103, 63, 0.2);
  border-radius: 999px;
}

.store-badge--available,
.store-badge--made {
  color: #294737;
  background: #e3ecdf;
}

.store-badge--custom {
  color: #724528;
  background: #f3e2ce;
}

.notice,
.error-summary {
  border-radius: 0.3rem;
  box-shadow: 0 14px 35px rgba(18, 21, 16, 0.08);
}

.notice {
  border-color: rgba(38, 53, 43, 0.24);
  background: #edf1e9;
}

.notice--success {
  border-color: rgba(66, 104, 79, 0.4);
  background: #e6efe6;
}

.notice--error,
.error-summary {
  border-color: rgba(155, 64, 57, 0.4);
  background: #f8e9e5;
}

.error-summary a,
.field-error,
.form-field--error label {
  color: #7d2925;
}

.empty-state {
  position: relative;
  width: min(100%, 860px);
  margin-inline: auto;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
}

.empty-state::before {
  display: block;
  width: 74px;
  aspect-ratio: 1;
  margin: 0 auto 1.35rem;
  content: "";
  border-radius: 50%;
  background: #171915 url("../images/onespirit/accents/board-flower-of-life.webp") center / cover no-repeat;
  box-shadow: 0 8px 25px rgba(18, 21, 16, 0.18);
}

.empty-state h2 {
  max-width: 28ch;
  margin-inline: auto;
}

.empty-state > p {
  max-width: 62ch;
  margin-inline: auto;
}

.empty-state__divider {
  display: block;
  width: min(300px, 72%);
  height: 42px;
  margin: 1.15rem auto 0;
  background: url("../images/onespirit/accents/board-copper-divider.webp") center / contain no-repeat;
}

.empty-state__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

body.past-creations-page .storefront-container > .empty-state {
  display: grid;
  justify-items: center;
  padding: clamp(2.5rem, 4vw, 3.25rem);
}

body.past-creations-page .storefront-container > .empty-state::before {
  width: 112px;
  margin: 0 auto 1.15rem;
  background-color: transparent;
  background-position: center;
  background-size: contain;
  box-shadow: none;
  filter: drop-shadow(0 8px 13px rgba(18, 21, 16, 0.2));
}

body.past-creations-page .storefront-container > .empty-state h2 {
  max-width: 24ch;
  margin: 0 auto 0.7rem;
}

body.past-creations-page .storefront-container > .empty-state p {
  max-width: 58ch;
  margin: 0 auto;
}

/* Forms */
.contact-layout {
  align-items: start;
}

.contact-details,
.contact-form-panel,
.custom-request-form {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.custom-request-form,
.checkout-form {
  border: 1px solid var(--osc-line);
  border-radius: 0.35rem;
  background: rgba(255, 249, 240, 0.94);
  box-shadow: var(--osc-shadow);
}

.custom-request-form fieldset,
.checkout-form fieldset {
  border-color: rgba(168, 103, 63, 0.24);
  border-radius: 0.3rem;
  background: rgba(241, 233, 220, 0.38);
}

.custom-request-form legend,
.checkout-form legend {
  color: var(--osc-pine);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.form-field input,
.form-field select,
.form-field textarea,
.checkout-field input,
.checkout-field select,
.catalog-filters input,
.catalog-filters select,
.cart-quantity-form input,
.product-cart-form input {
  min-height: 48px;
  color: var(--osc-ink);
  border: 1px solid rgba(38, 53, 43, 0.28);
  border-radius: 0.3rem;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: inset 0 1px 2px rgba(18, 21, 16, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field textarea {
  min-height: 10rem;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover,
.checkout-field input:hover,
.checkout-field select:hover {
  border-color: rgba(168, 103, 63, 0.58);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.checkout-field input:focus,
.checkout-field select:focus,
.catalog-filters input:focus,
.catalog-filters select:focus {
  border-color: var(--osc-copper);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(168, 103, 63, 0.16);
}

.catalog-filters {
  border: 1px solid var(--osc-line);
  border-radius: 0.35rem;
  background: rgba(255, 249, 240, 0.92);
  box-shadow: 0 16px 44px rgba(18, 21, 16, 0.08);
}

.category-nav a {
  min-height: 44px;
  border-color: var(--osc-line);
  border-radius: 999px;
  background: rgba(255, 249, 240, 0.7);
}

.category-nav a:hover,
.category-nav a[aria-current="page"] {
  color: var(--osc-cream);
  border-color: var(--osc-pine);
  background: var(--osc-pine);
}

.shipping-option:has(input:checked) {
  border-color: var(--osc-copper);
  background: #f4eadb;
  box-shadow: 0 0 0 2px rgba(168, 103, 63, 0.12);
}

/* Reusable Past Creations carousel */
.showcase-carousel {
  --carousel-gap: clamp(1rem, 2.4vw, 1.75rem);
  position: relative;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.showcase-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--osc-copper) transparent;
  overscroll-behavior-inline: contain;
}

.showcase-carousel__viewport:focus-visible {
  border-radius: 0.35rem;
}

.showcase-carousel__track {
  display: grid;
  grid-auto-columns: minmax(280px, calc((100% - (2 * var(--carousel-gap))) / 3));
  grid-auto-flow: column;
  gap: var(--carousel-gap);
  padding: 0.35rem 0.35rem 1.5rem;
}

.showcase-carousel__slide {
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(168, 103, 63, 0.34);
  border-radius: 0.35rem;
  background: var(--osc-cream);
  box-shadow: 0 20px 55px rgba(18, 21, 16, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.showcase-carousel__slide:hover {
  border-color: rgba(168, 103, 63, 0.64);
  box-shadow: 0 28px 65px rgba(18, 21, 16, 0.2);
  transform: translateY(-4px);
}

.showcase-carousel__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--osc-ink);
}

.showcase-carousel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1), filter 300ms ease;
}

.showcase-carousel__slide:hover .showcase-carousel__image {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.025);
}

.showcase-carousel__image--fallback {
  display: block;
  background:
    radial-gradient(circle, transparent 0 18%, rgba(195, 154, 90, 0.18) 18.5% 19.5%, transparent 20% 36%, rgba(195, 154, 90, 0.12) 36.5% 37.5%, transparent 38%),
    linear-gradient(135deg, var(--osc-ink), var(--osc-pine));
}

.showcase-carousel__content {
  padding: 1.35rem 1.35rem 1.6rem;
}

.showcase-carousel__content h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.showcase-carousel__content p:not(.eyebrow) {
  font-size: 0.92rem;
  line-height: 1.65;
}

.showcase-carousel__controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.showcase-carousel.is-enhanced .showcase-carousel__controls {
  display: flex;
}

.showcase-carousel__button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--osc-cream);
  border: 1px solid var(--osc-pine);
  border-radius: 50%;
  background: var(--osc-pine);
  font-size: 1.15rem;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.showcase-carousel__button:hover {
  color: var(--osc-ink);
  border-color: var(--osc-gold);
  background: var(--osc-gold-light);
  transform: translateY(-2px);
}

.showcase-carousel__indicators {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.showcase-carousel__indicators button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.showcase-carousel__indicators button::before {
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  content: "";
  border: 1px solid var(--osc-copper);
  border-radius: 50%;
  background: transparent;
  transition: background 160ms ease, transform 160ms ease;
}

.showcase-carousel__indicators button[aria-current="true"]::before {
  background: var(--osc-copper);
  transform: scale(1.45);
}

.showcase-disclaimer {
  max-width: 70ch;
  margin: 1.5rem auto 0;
  color: #696d64;
  font-size: 0.78rem;
  text-align: center;
}

/* Store, cart, and product details */
.product-gallery__main,
.product-summary,
.cart-summary,
.checkout-summary {
  border-radius: 0.35rem;
}

.product-gallery__main {
  overflow: hidden;
  border: 1px solid var(--osc-line);
  background: var(--osc-charcoal);
  box-shadow: var(--osc-shadow);
}

.product-gallery__thumbnail {
  border-color: var(--osc-line);
  border-radius: 0.25rem;
  background: var(--osc-cream);
}

.product-gallery__thumbnail[aria-pressed="true"] {
  border-color: var(--osc-copper-deep);
  box-shadow: 0 0 0 2px rgba(168, 103, 63, 0.22);
}

.product-summary {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--osc-line);
  background: rgba(255, 249, 240, 0.94);
  box-shadow: var(--osc-shadow);
}

.product-price {
  color: var(--osc-copper-deep);
  font-family: var(--font-display);
}

.cart-line--invalid {
  border-color: rgba(155, 64, 57, 0.5);
}

.order-reference {
  border-color: rgba(168, 103, 63, 0.28);
  background: #f5ead9;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--osc-cream);
  border-top: 1px solid var(--osc-line-dark);
  background:
    radial-gradient(circle at 12% 20%, rgba(195, 154, 90, 0.11), transparent 22rem),
    linear-gradient(135deg, #11140f, #223027);
}

.site-footer::before {
  position: absolute;
  top: -90px;
  right: 8%;
  width: 230px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(195, 154, 90, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 30%, rgba(195, 154, 90, 0.1) 30.5% 31%, transparent 31.5% 49%, rgba(195, 154, 90, 0.08) 49.5% 50%, transparent 50.5%);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  padding-block: 3.5rem;
}

.site-footer__identity strong {
  color: var(--osc-gold-light);
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 249, 240, 0.72);
}

.site-footer a {
  text-decoration-color: rgba(224, 194, 140, 0.42);
  text-underline-offset: 0.24em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.site-footer a:hover {
  color: var(--osc-gold-light);
  text-decoration-color: currentColor;
}

.social-links a {
  min-width: 44px;
  min-height: 44px;
  border-color: rgba(195, 154, 90, 0.34);
  border-radius: 50%;
}

/* Motion is progressively added only after JavaScript confirms support. */
.reveal-pending {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-pending.is-revealed {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

@keyframes osc-hero-breathe {
  from { transform: scale(1.005); }
  to { transform: scale(1.045); }
}

@keyframes osc-geometry-glow {
  from { opacity: 0.76; transform: translateY(-50%) scale(0.985); }
  to { opacity: 0.96; transform: translateY(-50%) scale(1.015); }
}

@keyframes osc-light-ribbon {
  from { opacity: 0.42; transform: rotate(-10deg) scale(0.97); }
  to { opacity: 0.7; transform: rotate(-5deg) scale(1.035); }
}

@media (max-width: 900px) {
  .interior-page--contact .contact-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .interior-page--contact .contact-details,
  .interior-page--contact .contact-form-panel {
    width: 100%;
  }

  .interior-page--creations .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .site-header__inner {
    flex-wrap: wrap;
    padding-block: 0.7rem;
  }

  .has-js .site-nav-toggle {
    display: grid;
    margin-left: auto;
    place-items: center;
  }

  .has-js .site-nav {
    display: none;
    width: 100%;
    padding: 0.5rem 0 0.75rem;
    border-top: 1px solid rgba(195, 154, 90, 0.18);
  }

  .has-js .site-nav.is-open {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-nav a {
    justify-content: center;
    text-align: center;
  }

  .showcase-carousel__track {
    grid-auto-columns: minmax(280px, calc((100% - var(--carousel-gap)) / 2));
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    min-height: 66px;
  }

  .site-brand {
    font-size: 1.08rem;
    letter-spacing: 0.06em;
  }

  .site-brand__mark {
    width: 38px;
  }

  .has-js .site-nav.is-open {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coming-soon-hero,
  .home-hero {
    min-height: 760px;
    background-image: url("../images/onespirit/hero-forest-sacred-640.webp");
    background-position: 18% center;
  }

  .coming-soon-hero__art img,
  .home-hero__art img {
    object-position: 18% center;
  }

  .one-spirit-hero-geometry {
    top: 30%;
    left: 50%;
    width: min(88vw, 560px);
    opacity: 0.72;
    transform: translate(-50%, -50%);
    animation: none;
  }

  .one-spirit-hero-atmosphere::before {
    top: 3%;
    left: -20%;
    width: 130vw;
    height: 56%;
  }

  .coming-soon-hero__veil,
  .home-hero__veil {
    background:
      linear-gradient(0deg, rgba(8, 10, 8, 0.94) 0%, rgba(8, 10, 8, 0.74) 48%, rgba(8, 10, 8, 0.08) 100%);
  }

  .coming-soon-hero__inner,
  .home-hero__inner {
    align-items: flex-end;
    padding-block: 8rem 1.5rem;
  }

  .coming-soon-hero__inner {
    justify-items: stretch;
  }

  .coming-soon-panel,
  .home-hero__panel {
    width: 100%;
    padding: 1.45rem;
    background: rgba(14, 17, 13, 0.82);
  }

  .coming-soon-logo,
  .home-hero__logo {
    width: min(230px, 60%);
  }

  .coming-soon-panel h1,
  .home-hero__panel h1 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
    letter-spacing: -0.02em;
    line-height: 0.96;
  }

  .page-hero {
    padding: 1.65rem;
  }

  .page-hero--spiritual {
    padding: 0;
  }

  .page-hero--spiritual .page-hero__content {
    padding: 1.25rem;
  }

  .page-hero__symbol {
    width: 68px;
    margin-bottom: 0.7rem;
  }

  .interior-page {
    padding-block: 2.75rem 3.75rem;
  }

  .interior-hero {
    margin-bottom: 2rem;
  }

  .interior-hero.decorative-divider::after {
    width: min(460px, 96%);
    height: 72px;
    margin-top: 1.25rem;
  }

  .editorial-panel,
  .form-panel,
  .interior-page--about .story-flow section,
  .interior-page--creations .creation-story-card,
  .interior-page--contact .contact-details,
  .interior-page--contact .contact-form-panel {
    padding: 1.65rem;
  }

  .interior-page--contact .contact-form .button--primary {
    width: 100%;
  }

  body.past-creations-page .storefront-hero::after {
    width: min(460px, 96%);
    height: 72px;
    margin-top: 1.35rem;
  }

  body.past-creations-page .storefront-container > .empty-state {
    padding: 2.25rem 1.5rem;
  }

  body.past-creations-page .storefront-container > .empty-state::before {
    width: 96px;
    margin-bottom: 1rem;
  }

  .showcase-carousel__track {
    grid-auto-columns: minmax(270px, 86%);
  }

  .showcase-carousel__content {
    padding: 1.15rem 1.15rem 1.35rem;
  }

  .empty-state__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .empty-state__actions .button {
    width: 100%;
  }

  .site-footer__inner {
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 1.1rem, var(--content-wide));
  }

  .interior-page {
    padding-block: 2.1rem 3rem;
  }

  .interior-hero {
    margin-bottom: 1.5rem;
    padding: 1.4rem 1.15rem;
  }

  .page-hero--spiritual {
    padding: 0;
  }

  .page-hero--spiritual .page-hero__content {
    padding: 1.1rem 0.9rem;
  }

  .page-hero__symbol {
    width: 58px;
    margin-bottom: 0.6rem;
  }

  .interior-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.15rem);
  }

  .interior-hero.decorative-divider::after {
    width: min(340px, 100%);
    height: 62px;
    margin-top: 1rem;
  }

  .editorial-panel,
  .form-panel,
  .interior-page--about .story-flow section,
  .interior-page--creations .creation-story-card,
  .interior-page--contact .contact-details,
  .interior-page--contact .contact-form-panel {
    padding: 1.35rem;
  }

  .interior-page--contact .contact-layout,
  .interior-page--about .story-flow,
  .interior-page--creations .content-grid {
    gap: 1rem;
  }

  .interior-page--shop .catalog-filters {
    padding: 1rem;
  }

  body.past-creations-page .storefront-hero::after {
    width: min(340px, 100%);
    height: 64px;
    margin-top: 1.1rem;
  }

  body.past-creations-page .storefront-container > .empty-state {
    padding: 2rem 1.1rem;
  }

  body.past-creations-page .storefront-container > .empty-state::before {
    width: 84px;
    margin-bottom: 0.9rem;
  }

  .site-brand span:last-child {
    max-width: 180px;
    line-height: 1.05;
  }

  .has-js .site-nav.is-open {
    grid-template-columns: 1fr;
  }

  .site-nav a {
    justify-content: flex-start;
    padding-inline: 0.5rem;
    text-align: left;
  }

  .coming-soon-hero,
  .home-hero {
    min-height: 720px;
  }

  .coming-soon-connections,
  .home-actions {
    align-items: stretch;
  }

  .coming-soon-connections .button,
  .home-actions .button {
    width: 100%;
  }

  .showcase-carousel__track {
    grid-auto-columns: 92%;
    gap: 0.8rem;
  }

  .showcase-carousel__controls {
    gap: 0.45rem;
  }

  .showcase-carousel__indicators {
    gap: 0.15rem;
  }
}

@media (max-width: 360px) {
  .site-header__inner {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .site-brand {
    gap: 0.5rem;
    font-size: 0.92rem;
  }

  .site-brand__mark {
    width: 34px;
  }

  .site-brand span:last-child {
    max-width: 148px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  .showcase-carousel__viewport {
    scroll-behavior: auto;
  }

  .coming-soon-hero__art img,
  .home-hero__art img {
    animation: none;
    transform: none;
  }

  .one-spirit-hero-geometry,
  .one-spirit-hero-atmosphere::before {
    animation: none;
  }

  .reveal-pending,
  .reveal-pending.is-revealed {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .showcase-carousel__slide,
  .showcase-carousel__image,
  .showcase-carousel__button,
  .interior-page--creations .creation-story-card,
  .button,
  .text-link,
  .site-footer a,
  .site-nav a::after,
  .site-nav-toggle__icon i {
    transition: none;
  }

  .showcase-carousel__slide:hover,
  .showcase-carousel__slide:hover .showcase-carousel__image,
  .showcase-carousel__button:hover,
  .interior-page--creations .creation-story-card:has(a):hover,
  .interior-page--creations .creation-story-card:has(a):focus-within,
  .button:hover {
    transform: none;
  }
}

@media (forced-colors: active) {
  :where(a, button, input, textarea, select):focus-visible {
    outline: 3px solid Highlight;
    outline-offset: 3px;
    box-shadow: none;
  }

  .button,
  .site-nav-toggle,
  .coming-soon-panel,
  .home-hero__panel,
  .empty-state,
  .interior-page .interior-panel {
    border: 1px solid CanvasText;
  }

  .site-nav a::after,
  .coming-soon-hero::after,
  .home-hero::after,
  .empty-state::before,
  .empty-state__divider,
  .sacred-geometry-accent::after {
    display: none;
  }

  .button--primary,
  .button--secondary {
    color: ButtonText;
    background: ButtonFace;
  }
}

@supports not (backdrop-filter: blur(1px)) {
  .site-header,
  .coming-soon-panel,
  .home-hero__panel {
    background: rgba(18, 21, 16, 0.97);
  }
}
