:root {
  color-scheme: light;
  --sun-washed-paper: oklch(95.8% 0.04 75);
  --warm-porcelain: oklch(98% 0.028 78);
  --studio-ink: oklch(22% 0.032 55);
  --soft-umber: oklch(41% 0.055 55);
  --clay-coral: oklch(60% 0.15 40);
  --saffron-glow: oklch(78% 0.16 76);
  --sun-apricot: oklch(90% 0.095 68);
  --sun-glaze: oklch(94% 0.065 74);
  --olive-leaf: #6f7b49;
  --rose-clay: oklch(72% 0.09 38);
  --line-wash: oklch(86.5% 0.045 72);
  --muted-sand: oklch(72% 0.06 65);
  --paper-deep: oklch(91% 0.055 72);
  --paper-warm: oklch(96.5% 0.045 76);
  --success: #526b3f;
  --success-soft: #edf3df;
  --warning: #9a6a22;
  --warning-soft: #f9ebc7;
  --danger: #a94735;
  --danger-soft: #f4ddd6;
  --placeholder-text: #8b7058;
  --focus-ring: var(--saffron-glow);
  --font-display: "Prata", Georgia, serif;
  --font-body: "Work Sans", Arial, sans-serif;
  --text-display: clamp(2.85rem, 7.4vw, 6.65rem);
  --text-page: clamp(2.45rem, 5.6vw, 5.4rem);
  --text-headline: clamp(2rem, 3.8vw, 4.15rem);
  --text-title: 1.22rem;
  --text-subtitle: 1.08rem;
  --text-body: 1rem;
  --text-small: 0.875rem;
  --text-label: 0.78rem;
  --leading-display: 0.96;
  --leading-heading: 1.06;
  --leading-title: 1.22;
  --leading-body: 1.68;
  --leading-compact: 1.32;
  --weight-body: 400;
  --weight-label: 700;
  --weight-strong: 700;
  --weight-heavy: 800;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-control: 12px;
  --space-2xs: 4px;
  --space-xs: 6px;
  --space-sm: 10px;
  --space-md: 18px;
  --space-lg: 32px;
  --space-xl: 56px;
  --space-section: clamp(44px, 7vw, 92px);
  --content-max: 1180px;
  --content-wide: 1380px;
  --shadow-product: 0 18px 50px rgba(94, 62, 38, 0.14);
  --shadow-hover: 0 10px 26px rgba(94, 62, 38, 0.12);
  --shadow-admin: 0 12px 34px rgba(47, 38, 31, 0.08);
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
  --duration-fast: 160ms;
  --duration-standard: 280ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--sun-washed-paper);
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 88% 4%, rgba(238, 151, 43, 0.22), transparent 34rem),
    linear-gradient(180deg, var(--sun-glaze) 0%, var(--sun-washed-paper) 46%, var(--paper-warm) 100%);
  color: var(--studio-ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-body);
  line-height: var(--leading-body);
  letter-spacing: 0;
  overflow-x: clip;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--saffron-glow);
  color: var(--studio-ink);
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: rgba(200, 95, 67, 0.18);
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--studio-ink);
  font-weight: var(--weight-strong);
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  max-width: 66ch;
  text-wrap: pretty;
}

main {
  display: block;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-shell > main {
  flex: 1;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: max(10px, env(safe-area-inset-top)) clamp(14px, 3vw, 34px) 10px;
  background: rgba(253, 239, 211, 0.96);
  border-bottom: 1px solid rgba(226, 151, 56, 0.34);
  box-shadow: 0 8px 22px rgba(94, 62, 38, 0.05);
}

.site-nav {
  width: min(100%, var(--content-wide));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(10px, 1.5vw, 20px);
}

.brand {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  max-width: min(100%, 360px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--studio-ink);
  text-decoration: none;
}

.footer-brand-mark,
.admin-brand-mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: clamp(40px, 3.4vw, 48px);
  height: clamp(40px, 3.4vw, 48px);
  border: 1px solid rgba(226, 151, 56, 0.42);
  border-radius: 50%;
  background: var(--warm-porcelain);
  box-shadow: 0 6px 18px rgba(94, 62, 38, 0.08);
}

.footer-brand-logo,
.admin-brand-logo {
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  object-fit: contain;
}

.brand-mark-shell {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: clamp(44px, 3.7vw, 56px);
  height: clamp(44px, 3.7vw, 56px);
  border: 1px solid rgba(226, 151, 56, 0.46);
  border-radius: 50%;
  background: rgba(255, 246, 226, 0.76);
  box-shadow: 0 6px 16px rgba(94, 62, 38, 0.07);
}

.brand-mark {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-copy,
.footer-brand-copy,
.admin-brand-copy {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.brand-copy {
  display: flex;
  align-items: center;
  gap: 0;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.65vw, 1.76rem);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.footer-brand-copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.55vw, 1.52rem);
  font-weight: 400;
  line-height: 1.05;
  white-space: nowrap;
}

.footer-brand-copy span {
  color: var(--soft-umber);
  font-size: clamp(0.68rem, 0.86vw, 0.8rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 24ch;
}

.nav-links {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.nav-links a,
.nav-cta,
.footer-links a,
.about-quick-links a,
.gallery-jump-links a,
.shop-section-list a,
.text-link {
  color: var(--studio-ink);
  font-size: var(--text-small);
  font-weight: var(--weight-label);
  line-height: 1.2;
  text-decoration: none;
}

.nav-links a,
.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  padding: 8px 11px;
  color: var(--soft-umber);
  white-space: nowrap;
  transition:
    color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-links a[aria-current="page"],
.nav-cta:hover,
.nav-cta.is-active,
.nav-cta[aria-current="page"] {
  color: var(--studio-ink);
  background: color-mix(in oklch, var(--saffron-glow) 18%, var(--warm-porcelain));
  border-color: color-mix(in oklch, var(--saffron-glow) 44%, var(--line-wash));
}

.nav-links a[href*="jewelry"] {
  color: var(--studio-ink);
}

.nav-links a[href*="jewelry"].is-active,
.nav-links a[href*="jewelry"][aria-current="page"] {
  border-color: color-mix(in oklch, var(--clay-coral) 54%, var(--line-wash));
  background: color-mix(in oklch, var(--clay-coral) 18%, var(--warm-porcelain));
}

.nav-cta {
  grid-column: 3;
  grid-row: 1;
  position: relative;
  justify-self: end;
  color: var(--studio-ink);
  border-color: color-mix(in oklch, var(--saffron-glow) 44%, var(--line-wash));
  background: color-mix(in oklch, var(--saffron-glow) 14%, var(--warm-porcelain));
}

.cart-count {
  min-width: 1.7em;
  height: 1.45em;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--saffron-glow);
  color: var(--studio-ink);
  font-size: 0.72rem;
  font-weight: var(--weight-heavy);
  line-height: 1;
}

.site-flashes,
.admin-flashes {
  width: min(calc(100% - 24px), var(--content-max));
  margin: 18px auto 0;
  display: grid;
  gap: 10px;
}

.flash {
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  background: var(--warm-porcelain);
  color: var(--studio-ink);
  font-weight: var(--weight-strong);
}

.flash-success {
  border-color: rgba(82, 107, 63, 0.34);
  background: var(--success-soft);
}

.flash-error {
  border-color: rgba(169, 71, 53, 0.38);
  background: var(--danger-soft);
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  padding: 13px 22px;
  color: var(--studio-ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: var(--weight-label);
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.button-primary {
  background: var(--studio-ink);
  color: var(--warm-porcelain);
  border-color: var(--studio-ink);
}

.button-primary:hover {
  background: var(--clay-coral);
  border-color: var(--clay-coral);
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

.button-secondary {
  background: var(--warm-porcelain);
  color: var(--studio-ink);
  border-color: var(--line-wash);
}

.button-secondary:hover {
  color: var(--clay-coral);
  border-color: rgba(200, 95, 67, 0.54);
  transform: translateY(-1px);
}

.button:active,
.nav-links a:active,
.nav-cta:active,
.gallery-jump-links a:active,
.about-quick-links a:active,
.shop-section-list a:active,
.detail-slide-control:active,
.detail-thumb:active {
  transform: translateY(0);
}

.button-muted,
.button:disabled,
button[disabled] {
  cursor: not-allowed;
  background: var(--paper-deep);
  color: var(--soft-umber);
  border-color: var(--line-wash);
  box-shadow: none;
  transform: none;
}

.button-danger {
  background: var(--danger-soft);
  color: var(--danger);
  border-color: rgba(169, 71, 53, 0.34);
}

.button-danger:hover {
  background: var(--danger);
  color: var(--warm-porcelain);
  border-color: var(--danger);
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  color: var(--clay-coral);
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(200, 95, 67, 0.38);
}

.text-link:hover {
  color: var(--studio-ink);
  text-decoration-color: var(--studio-ink);
}

.eyebrow,
.maker-eyebrow,
.work-type,
.panel-title,
.maker-collection-label,
.maker-value-kicker,
.dashboard-item-kicker,
.inventory-card-kicker {
  color: var(--soft-umber);
  font-size: var(--text-label);
  font-weight: var(--weight-label);
  line-height: 1.1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-text,
.maker-intro,
.story-feature-copy p,
.contact-banner-copy p,
.gallery-hero-note,
.panel-note,
.checkout-help,
.shop-product-detail-line,
.inventory-card-description {
  color: var(--soft-umber);
}

.maker-home,
main {
  width: 100%;
}

.stitch-home {
  width: 100%;
  overflow: hidden;
}

.stitch-home-hero {
  position: relative;
  min-height: clamp(520px, 72vh, 760px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid color-mix(in oklch, var(--saffron-glow) 36%, var(--line-wash));
  padding: clamp(72px, 10vw, 136px) max(22px, 5vw);
  text-align: center;
}

.stitch-sun-glow {
  position: absolute;
  inset: 50% auto auto 50%;
  width: clamp(340px, 46vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, color-mix(in oklch, var(--saffron-glow) 46%, transparent) 0 22%, color-mix(in oklch, var(--sun-apricot) 36%, transparent) 42%, transparent 72%);
  filter: blur(8px);
  opacity: 0.78;
  transform: translate(-50%, -50%);
}

.stitch-home-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: clamp(16px, 2.4vw, 26px);
}

.stitch-home-hero-copy h1 {
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 9.4vw, 8.85rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.stitch-home-hero-copy p:not(.eyebrow) {
  max-width: 62ch;
  color: var(--soft-umber);
  font-size: clamp(1.06rem, 1.35vw, 1.28rem);
  line-height: 1.62;
}

.stitch-home-hero-copy .button {
  margin-top: 6px;
}

.stitch-promise-strip {
  border-block: 1px solid color-mix(in oklch, var(--saffron-glow) 36%, var(--line-wash));
  background: color-mix(in oklch, var(--sun-apricot) 24%, var(--warm-porcelain));
}

.stitch-promise-strip ul {
  width: min(calc(100% - 28px), var(--content-wide));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 8vw, 112px);
  list-style: none;
}

.stitch-promise-strip .stitch-promise-list-single {
  justify-content: center;
}

.stitch-promise-strip li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--soft-umber);
  font-size: var(--text-label);
  font-weight: var(--weight-label);
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.stitch-promise-strip span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid color-mix(in oklch, var(--clay-coral) 34%, var(--line-wash));
  border-radius: var(--radius-sm);
  background: var(--warm-porcelain);
  color: var(--clay-coral);
  font-size: 0.7rem;
}

.stitch-latest,
.stitch-studio-panels {
  width: min(calc(100% - 28px), var(--content-max));
  margin-inline: auto;
}

.stitch-latest {
  padding-block: var(--space-section);
}

.stitch-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: clamp(24px, 4vw, 46px);
}

.stitch-section-head > div {
  display: grid;
  gap: 8px;
}

.stitch-section-head h2,
.stitch-process-card h2,
.stitch-newsletter-card h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

.stitch-section-head h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 4.5vw, 4.7rem);
  line-height: 1;
}

.stitch-latest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 5vw, 78px);
  align-items: start;
}

.stitch-feature-card {
  min-width: 0;
  display: grid;
  gap: 18px;
  color: var(--studio-ink);
  text-decoration: none;
}

.stitch-feature-card:nth-child(2) {
  margin-top: clamp(34px, 7vw, 88px);
}

.stitch-feature-media {
  display: block;
  overflow: hidden;
  border: 1px solid color-mix(in oklch, var(--saffron-glow) 30%, var(--line-wash));
  border-radius: var(--radius-sm);
  background: var(--warm-porcelain);
  box-shadow: 0 18px 48px rgba(94, 62, 38, 0.12);
}

.stitch-feature-card:nth-child(1) .stitch-feature-media {
  aspect-ratio: 4 / 5;
}

.stitch-feature-card:nth-child(2) .stitch-feature-media {
  aspect-ratio: 5 / 6;
}

.stitch-feature-media img,
.stitch-feature-media .catalog-media,
.stitch-feature-media .catalog-image {
  width: 100%;
  height: 100%;
}

.stitch-feature-media img,
.stitch-feature-media .catalog-image {
  object-fit: cover;
  transition: transform 760ms var(--ease-out);
}

.stitch-feature-card:hover .stitch-feature-media img,
.stitch-feature-card:hover .stitch-feature-media .catalog-image {
  transform: scale(1.035);
}

.stitch-feature-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-inline: 4px;
}

.stitch-feature-meta > span {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.stitch-feature-meta em {
  color: var(--clay-coral);
  font-size: var(--text-label);
  font-style: normal;
  font-weight: var(--weight-label);
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.stitch-feature-meta strong {
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  line-height: 1.12;
}

.stitch-feature-meta small {
  color: var(--soft-umber);
  font-size: 0.95rem;
  line-height: 1.45;
}

.stitch-feature-meta b {
  flex: 0 0 auto;
  border: 1px solid color-mix(in oklch, var(--clay-coral) 28%, var(--line-wash));
  border-radius: var(--radius-sm);
  padding: 7px 10px;
  background: color-mix(in oklch, var(--saffron-glow) 12%, var(--warm-porcelain));
  color: var(--soft-umber);
  font-size: 0.82rem;
  line-height: 1.1;
}

.stitch-studio-section {
  border-top: 1px solid color-mix(in oklch, var(--saffron-glow) 34%, var(--line-wash));
  padding-block: var(--space-section);
  background:
    radial-gradient(circle at 85% 10%, color-mix(in oklch, var(--saffron-glow) 28%, transparent), transparent 26rem),
    color-mix(in oklch, var(--paper-deep) 42%, var(--sun-washed-paper));
}

.stitch-studio-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(260px, 0.7fr);
  gap: clamp(14px, 2vw, 22px);
}

.stitch-process-card,
.stitch-custom-card,
.stitch-newsletter-card {
  border: 1px solid color-mix(in oklch, var(--saffron-glow) 34%, var(--line-wash));
  border-radius: var(--radius-sm);
  background: color-mix(in oklch, var(--warm-porcelain) 84%, var(--sun-apricot));
}

.stitch-process-card {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 58px);
}

.stitch-process-card h2 {
  max-width: 15ch;
  font-size: clamp(2.25rem, 5vw, 5.25rem);
  line-height: 1.02;
}

.stitch-process-card p:not(.eyebrow) {
  max-width: 60ch;
  color: var(--soft-umber);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.62;
}

.stitch-process-pieces {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 150px));
  gap: 10px;
  margin-top: 8px;
}

.stitch-process-pieces a {
  display: grid;
  gap: 8px;
  color: var(--soft-umber);
  font-size: 0.82rem;
  font-weight: var(--weight-label);
  line-height: 1.2;
  text-decoration: none;
}

.stitch-process-pieces .catalog-media {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
}

.stitch-custom-card {
  display: grid;
  align-content: space-between;
  gap: 24px;
  min-height: 100%;
  padding: clamp(22px, 3vw, 34px);
  background: var(--clay-coral);
  color: var(--warm-porcelain);
  text-decoration: none;
}

.stitch-custom-card .eyebrow,
.stitch-custom-card strong,
.stitch-custom-card span {
  color: inherit;
}

.stitch-custom-card strong {
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
}

.stitch-custom-card > span:last-child {
  font-weight: var(--weight-label);
}

.stitch-newsletter-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
}

.stitch-newsletter-card > div {
  display: grid;
  gap: 8px;
}

.stitch-newsletter-card h2 {
  max-width: 16ch;
  font-size: clamp(1.9rem, 3.2vw, 3.15rem);
  line-height: 1.04;
}

.stitch-newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.stitch-newsletter-form input {
  min-height: 46px;
  background: var(--sun-washed-paper);
}

.page-home .site-footer {
  width: 100%;
  margin-top: 0;
  border-top: 0;
  padding: clamp(28px, 5vw, 52px) max(22px, 5vw);
  background: color-mix(in oklch, var(--clay-coral) 86%, var(--saffron-glow));
  color: var(--warm-porcelain);
}

.page-home .footer-links a,
.page-home .footer-brand-copy span,
.page-home .footer-brand-copy strong {
  color: inherit;
}

.maker-hero,
.hero,
.shop-category-hero,
.item-detail,
.shop-section,
.maker-value-strip,
.maker-trust-band,
.maker-collections,
.maker-featured,
.story-feature,
.process-strip,
.contact-banner,
.newsletter-strip {
  width: min(calc(100% - 28px), var(--content-max));
  margin-inline: auto;
}

.maker-hero {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding-block: clamp(52px, 7vw, 92px);
}

.maker-hero::before,
.jewelry-showcase-hero::before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.3;
  background-repeat: no-repeat;
  background-size: contain;
}

.maker-hero::before {
  inset: 6% auto auto 47%;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  background-image: url("../assets/brand/artandsunnythings-sun.jpg");
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.maker-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
}

.maker-hero h1 {
  max-width: 10.5ch;
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 400;
  line-height: var(--leading-display);
  letter-spacing: 0;
}

.hero h1,
.shop-category-hero h1,
.item-summary h1,
.section-head h1 {
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: var(--text-page);
  font-weight: 400;
  line-height: var(--leading-display);
  letter-spacing: 0;
}

.maker-intro,
.hero-text,
.shop-category-hero > p,
.jewelry-hero-copy > p {
  max-width: 62ch;
  font-size: clamp(1.02rem, 1.55vw, 1.24rem);
  line-height: 1.65;
}

.maker-actions,
.hero-actions,
.jewelry-hero-actions,
.empty-collection-actions,
.contact-banner-actions,
.admin-form-actions,
.dashboard-command-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.maker-signoff {
  color: var(--clay-coral);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.maker-still-life {
  position: relative;
  z-index: 1;
}

.maker-gallery-note {
  width: fit-content;
  margin: 0 0 14px auto;
  border: 1px solid rgba(200, 95, 67, 0.26);
  border-radius: var(--radius-control);
  padding: 8px 12px;
  background: rgba(255, 250, 241, 0.8);
  color: var(--soft-umber);
  font-size: 0.78rem;
  font-weight: var(--weight-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.maker-product-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(96px, auto);
  gap: clamp(10px, 1.4vw, 18px);
  align-items: stretch;
}

.maker-gallery-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-md);
  padding: 10px;
  background: var(--warm-porcelain);
  color: var(--studio-ink);
  text-decoration: none;
  transition:
    box-shadow var(--duration-standard) var(--ease-out),
    transform var(--duration-standard) var(--ease-out),
    border-color var(--duration-standard) var(--ease-out);
}

.maker-gallery-card:hover {
  border-color: rgba(200, 95, 67, 0.42);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.maker-gallery-card-featured {
  grid-column: span 4;
  grid-row: span 2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-product);
}

.maker-gallery-card:not(.maker-gallery-card-featured) {
  grid-column: span 2;
}

.maker-gallery-copy,
.jewelry-hero-piece span {
  display: grid;
  gap: 3px;
}

.maker-gallery-copy em,
.jewelry-hero-piece em {
  color: var(--clay-coral);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: var(--weight-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.maker-gallery-copy strong,
.jewelry-hero-piece strong {
  font-size: var(--text-title);
  font-weight: var(--weight-strong);
  line-height: var(--leading-title);
}

.maker-gallery-copy small,
.jewelry-hero-piece small {
  color: var(--soft-umber);
  font-weight: var(--weight-label);
}

.jewelry-hero-studio-image {
  margin: 0;
}

.jewelry-hero-studio-image img {
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius-lg) - 10px);
}

.jewelry-hero-studio-image figcaption {
  display: grid;
  gap: 3px;
}

.maker-gallery-empty,
.empty-collection {
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 42px);
  background: var(--warm-porcelain);
}

.maker-gallery-empty {
  display: grid;
  gap: 18px;
  padding: clamp(14px, 2vw, 20px);
  overflow: hidden;
  box-shadow: var(--shadow-product);
}

.maker-gallery-empty-copy {
  display: grid;
  gap: 12px;
  padding: clamp(10px, 2vw, 16px);
}

.studio-drop-image,
.empty-collection-image,
.panel-studio-image,
.hero-asset img,
.shop-category-hero-asset img,
.maker-collection-media-generated img,
.section-studio-media img,
.jewelry-hero-studio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-drop-image {
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius-lg) - 8px);
  box-shadow: 0 18px 50px rgba(94, 62, 38, 0.1);
}

.empty-collection-image {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-wash);
}

.empty-collection-gallery,
.shop-category-empty {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 32px);
}

.maker-value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--line-wash);
}

.maker-value-card {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 3vw, 30px);
  background: color-mix(in oklch, var(--saffron-glow) 10%, var(--warm-porcelain));
}

.maker-value-kicker {
  color: var(--clay-coral);
}

.maker-value-card h2 {
  font-family: var(--font-body);
  font-size: var(--text-title);
  font-weight: var(--weight-strong);
  line-height: var(--leading-title);
}

.maker-value-card p:not(.maker-value-kicker) {
  color: var(--soft-umber);
}

.maker-trust-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  border-block: 1px solid var(--line-wash);
  padding-block: 18px;
}

.maker-trust-band p {
  color: var(--clay-coral);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.maker-trust-band ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.maker-trust-band li,
.shop-product-count,
.inventory-badge,
.inventory-status-chip,
.subsection-count {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-control);
  padding: 7px 11px;
  background: var(--warm-porcelain);
  color: var(--studio-ink);
  font-size: 0.82rem;
  font-weight: var(--weight-label);
  line-height: 1.15;
}

.maker-collections,
.maker-featured,
.shop-section,
.process-strip,
.story-feature,
.contact-banner,
.newsletter-strip {
  padding-block: var(--space-section);
}

.maker-section-heading,
.section-head,
.shop-category-products-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: clamp(22px, 4vw, 48px);
}

.maker-section-heading > div,
.section-head > div,
.shop-category-products-head > div {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.section-studio-media {
  flex: 0 1 min(42vw, 520px);
  min-width: min(100%, 320px);
  overflow: hidden;
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-lg);
  background: var(--warm-porcelain);
  box-shadow: 0 18px 50px rgba(94, 62, 38, 0.1);
}

.section-studio-media img {
  display: block;
  aspect-ratio: 16 / 7;
}

.maker-section-heading h2,
.section-head h2,
.shop-category-products-head h2,
.story-feature-copy h2,
.contact-banner h2,
.newsletter-strip h2 {
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: var(--text-headline);
  font-weight: 400;
  line-height: var(--leading-heading);
  letter-spacing: 0;
}

.maker-collection-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(260px, 0.84fr) minmax(
      260px,
      0.84fr
    );
  gap: clamp(12px, 2vw, 22px);
  align-items: stretch;
}

.maker-collection-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 3vw, 34px);
  background: var(--warm-porcelain);
  color: var(--studio-ink);
  text-decoration: none;
  transition:
    box-shadow var(--duration-standard) var(--ease-out),
    transform var(--duration-standard) var(--ease-out),
    border-color var(--duration-standard) var(--ease-out);
}

.maker-collection-card:hover {
  border-color: rgba(200, 95, 67, 0.42);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.maker-collection-card-jewelry {
  background: color-mix(in oklch, var(--saffron-glow) 13%, var(--paper-warm));
  border-color: color-mix(in oklch, var(--clay-coral) 36%, var(--line-wash));
}

.maker-collection-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 5.4rem);
  font-weight: 400;
  line-height: 1;
}

.maker-collection-card:not(.maker-collection-card-jewelry)
  .maker-collection-title {
  font-size: clamp(1.9rem, 3.4vw, 3.4rem);
}

.maker-collection-copy,
.maker-collection-action {
  color: var(--soft-umber);
}

.maker-collection-action {
  margin-top: auto;
  color: var(--clay-coral);
  font-weight: var(--weight-label);
}

.maker-collection-media {
  display: block;
  margin-block: 8px;
}

.maker-collection-media-generated {
  overflow: hidden;
  aspect-ratio: 1 / 0.78;
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-md);
  background: var(--sun-washed-paper);
}

.maker-collection-card-jewelry .maker-collection-media-generated {
  aspect-ratio: 1 / 0.86;
}

.maker-piece-grid,
.shop-grid,
.shop-category-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.maker-piece-card,
.shop-card,
.shop-product-card,
.cart-card,
.order-status-card,
.story-panel,
.process-card,
.gallery-hero-panel,
.cart-summary,
.item-notice {
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-lg);
  background: var(--warm-porcelain);
}

.maker-piece-card,
.shop-card {
  display: grid;
  overflow: hidden;
}

.maker-piece-card-lead {
  grid-column: span 2;
}

.maker-piece-copy,
.shop-copy,
.shop-product-copy,
.cart-card-copy {
  display: grid;
  gap: 10px;
  padding: clamp(16px, 2.4vw, 26px);
}

.maker-piece-copy h3,
.shop-copy h3,
.shop-product-copy h3,
.cart-card-copy h3,
.process-card h3,
.story-panel h3 {
  font-family: var(--font-body);
  font-size: var(--text-title);
  font-weight: var(--weight-strong);
  line-height: var(--leading-title);
}

.shop-meta,
.shop-product-price-row,
.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--soft-umber);
}

.shop-meta strong,
.shop-product-price-row strong,
.summary-row strong,
.item-price,
.cart-card-price {
  color: var(--studio-ink);
  font-weight: var(--weight-strong);
  font-variant-numeric: tabular-nums;
}

.catalog-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: var(--sun-washed-paper);
}

.catalog-media-card,
.catalog-media-cart {
  aspect-ratio: 1 / 1;
}

.catalog-media-hero {
  aspect-ratio: 4 / 5;
}

.catalog-media-detail {
  aspect-ratio: 1 / 1.1;
  border-radius: var(--radius-lg);
}

.catalog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-media-generated .catalog-image {
  filter: saturate(0.98) contrast(1.02);
}

.hero,
.shop-category-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  padding-block: clamp(50px, 7vw, 88px);
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-asset,
.shop-category-hero-asset {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-lg);
  background: var(--warm-porcelain);
  box-shadow: var(--shadow-product);
}

.hero-asset {
  aspect-ratio: 4 / 3;
}

.shop-category-hero-asset {
  aspect-ratio: 16 / 10;
  align-self: stretch;
}

.hero-gallery {
  align-items: stretch;
}

.gallery-hero-panel {
  align-self: center;
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 34px);
}

.panel-studio-image {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-md);
}

.gallery-jump-links,
.about-quick-links,
.shop-section-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-jump-links a,
.about-quick-links a,
.shop-section-list a {
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-control);
  padding: 8px 12px;
  background: var(--sun-washed-paper);
  transition:
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.gallery-jump-links a:hover,
.about-quick-links a:hover,
.shop-section-list a:hover,
.shop-section-list a[aria-current="page"] {
  border-color: rgba(200, 95, 67, 0.44);
  background: rgba(200, 95, 67, 0.1);
}

.page-about .hero,
.page-contact .hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.74fr);
  gap: clamp(28px, 5vw, 58px);
  padding-block: clamp(42px, 6vw, 74px);
}

.page-about .hero::before,
.page-contact .hero::before {
  display: none;
}

.page-about .hero h1,
.page-contact .hero h1 {
  max-width: 13ch;
  font-size: clamp(2.45rem, 4.7vw, 4.55rem);
  line-height: 1.02;
}

.page-about .hero-text,
.page-contact .hero-text {
  max-width: 54ch;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.62;
}

.page-about .hero-asset,
.page-contact .gallery-hero-panel {
  box-shadow: 0 12px 34px rgba(94, 62, 38, 0.1);
}

.page-about .story-feature,
.page-about .process-strip,
.page-about .contact-banner,
.page-contact .process-strip,
.page-contact .contact-banner {
  padding-block: clamp(42px, 6vw, 76px);
}

.page-about .story-feature-copy h2,
.page-about .section-head h2,
.page-about .contact-banner h2,
.page-contact .section-head h2,
.page-contact .contact-banner h2 {
  max-width: 15ch;
  font-size: clamp(1.95rem, 3.2vw, 3.4rem);
  line-height: 1.06;
}

.story-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.story-feature-copy {
  display: grid;
  gap: 16px;
}

.story-feature-panels {
  display: grid;
  gap: 14px;
}

.story-panel,
.process-card {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 3vw, 30px);
}

.process-card span:first-child {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(200, 95, 67, 0.34);
  border-radius: var(--radius-control);
  padding: 5px 10px;
  color: var(--clay-coral);
  font-size: 0.8rem;
  font-weight: var(--weight-label);
}

.contact-banner,
.newsletter-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.74fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  border-block: 1px solid color-mix(in oklch, var(--saffron-glow) 38%, var(--line-wash));
}

.newsletter-strip {
  background:
    radial-gradient(circle at 94% 18%, rgba(238, 151, 43, 0.2), transparent 22rem),
    linear-gradient(90deg, transparent, color-mix(in oklch, var(--saffron-glow) 12%, transparent));
}

.contact-banner-copy,
.newsletter-strip > div {
  display: grid;
  gap: 14px;
}

.newsletter-form,
.checkout-form,
.admin-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--studio-ink);
  font-weight: var(--weight-strong);
}

label > span,
.admin-form label span,
.checkout-form label span,
.newsletter-form label span,
.item-purchase label span {
  color: var(--soft-umber);
  font-size: 0.82rem;
  font-weight: var(--weight-label);
  line-height: 1.15;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-sm);
  padding: 12px 13px;
  background: var(--warm-porcelain);
  color: var(--studio-ink);
  font-size: 0.96rem;
  line-height: 1.35;
  transition:
    border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--placeholder-text);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--clay-coral);
  box-shadow: 0 0 0 3px rgba(231, 169, 63, 0.34);
}

input:disabled,
select:disabled,
textarea:disabled {
  background: var(--paper-deep);
  color: var(--soft-umber);
}

.shop-category-hero.sell-hero {
  width: min(calc(100% - 28px), var(--content-wide));
  min-height: clamp(360px, 56vw, 640px);
  margin: clamp(32px, 6vw, 74px) auto clamp(56px, 8vw, 104px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid color-mix(in oklch, var(--saffron-glow) 28%, var(--line-wash));
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 58px);
  box-shadow: 0 20px 70px rgba(94, 62, 38, 0.13);
}

.sell-hero-media,
.sell-hero-media::after {
  position: absolute;
  inset: 0;
}

.sell-hero-media {
  margin: 0;
  z-index: 0;
  background: var(--paper-deep);
}

.sell-hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(35, 19, 12, 0.7), rgba(35, 19, 12, 0.2) 55%, rgba(35, 19, 12, 0.06)),
    linear-gradient(0deg, rgba(35, 19, 12, 0.5), transparent 50%);
}

.sell-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.sell-hero-copy {
  position: relative;
  z-index: 1;
  max-width: min(100%, 760px);
  display: grid;
  gap: 18px;
  color: var(--warm-porcelain);
}

.sell-hero-copy .eyebrow,
.sell-hero-copy p,
.sell-hero-copy h1 {
  color: inherit;
}

.sell-hero-copy h1 {
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.6vw, 6.8rem);
  font-weight: 400;
  line-height: 0.96;
}

.sell-hero-copy > p:not(.eyebrow) {
  max-width: 62ch;
  color: color-mix(in oklch, var(--warm-porcelain) 92%, var(--sun-apricot));
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.62;
}

.sell-hero-copy .button-primary {
  background: var(--warm-porcelain);
  color: var(--studio-ink);
  border-color: var(--warm-porcelain);
}

.sell-hero-copy .button-secondary {
  background: rgba(255, 246, 226, 0.12);
  color: var(--warm-porcelain);
  border-color: rgba(255, 246, 226, 0.42);
}

.jewelry-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  width: min(100%, 560px);
  border: 1px solid rgba(255, 246, 226, 0.24);
  border-radius: var(--radius-md);
  background: rgba(255, 246, 226, 0.18);
}

.jewelry-hero-stats div {
  display: grid;
  gap: 3px;
  padding: 12px;
  background: rgba(47, 28, 18, 0.28);
}

.jewelry-hero-stats dt {
  color: var(--saffron-glow);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: var(--weight-heavy);
  line-height: 1;
}

.jewelry-hero-stats dd {
  color: color-mix(in oklch, var(--warm-porcelain) 84%, var(--sun-apricot));
  font-size: 0.78rem;
  font-weight: var(--weight-label);
}

.shop-category-layout {
  width: min(calc(100% - 28px), var(--content-max));
  margin: 0 auto var(--space-section);
  display: grid;
  grid-template-columns: minmax(180px, 0.27fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
}

.shop-category-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
  border: 1px solid color-mix(in oklch, var(--saffron-glow) 30%, var(--line-wash));
  border-radius: var(--radius-sm);
  padding: clamp(14px, 2vw, 18px);
  background:
    linear-gradient(180deg, color-mix(in oklch, var(--sun-apricot) 18%, var(--warm-porcelain)), var(--warm-porcelain));
  box-shadow: 0 12px 32px rgba(94, 62, 38, 0.05);
}

.shop-filter-group-label {
  color: var(--soft-umber);
  font-size: var(--text-label);
  font-weight: var(--weight-label);
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.shop-section-list {
  display: grid;
  gap: 10px;
}

.shop-section-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  border: 1px solid color-mix(in oklch, var(--line-wash) 88%, var(--warm-porcelain));
  border-radius: var(--radius-sm);
  padding: 10px 10px 10px 14px;
  background: color-mix(in oklch, var(--warm-porcelain) 88%, var(--sun-apricot));
  box-shadow: 0 2px 0 rgba(94, 62, 38, 0.02);
  color: var(--studio-ink);
  font-weight: var(--weight-strong);
  text-decoration: none;
  transition:
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.shop-section-list a:hover {
  border-color: color-mix(in oklch, var(--clay-coral) 34%, var(--line-wash));
  background: color-mix(in oklch, var(--sun-apricot) 26%, var(--warm-porcelain));
  box-shadow: 0 8px 20px rgba(94, 62, 38, 0.07);
  transform: translateY(-1px);
}

.shop-section-list a[aria-current="page"] {
  border-color: color-mix(in oklch, var(--clay-coral) 54%, var(--line-wash));
  background: color-mix(in oklch, var(--sun-apricot) 54%, var(--warm-porcelain));
  box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--clay-coral) 20%, transparent);
}

.shop-section-name {
  min-width: 0;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.shop-section-count {
  flex: 0 0 auto;
  min-width: 2.1rem;
  height: 2.1rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid color-mix(in oklch, var(--line-wash) 72%, var(--warm-porcelain));
  border-radius: var(--radius-xs);
  background: var(--warm-porcelain);
  color: var(--soft-umber);
  font-size: 0.78rem;
  font-weight: var(--weight-heavy);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.shop-section-list a[aria-current="page"] .shop-section-count {
  border-color: color-mix(in oklch, var(--clay-coral) 44%, var(--line-wash));
  background: var(--warm-porcelain);
  color: var(--clay-coral);
}

.shop-category-products {
  min-width: 0;
}

.shop-category-products-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: clamp(22px, 4vw, 44px);
}

.shop-product-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.shop-sort-control {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
  color: var(--soft-umber);
  font-size: var(--text-label);
  font-weight: var(--weight-label);
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.shop-sort-control select {
  width: auto;
  min-height: 36px;
  border: 0;
  padding: 0 24px 0 0;
  background-color: transparent;
  color: var(--studio-ink);
  font-size: var(--text-small);
  font-weight: var(--weight-body);
  letter-spacing: 0;
  text-transform: none;
}

.shop-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}

.shop-product-card {
  min-width: 0;
  display: grid;
  border: 1px solid color-mix(in oklch, var(--warm-porcelain) 70%, var(--line-wash));
  border-radius: var(--radius-md);
  background: var(--warm-porcelain);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(34, 25, 18, 0.02);
  transition:
    box-shadow var(--duration-standard) var(--ease-out),
    transform var(--duration-standard) var(--ease-out),
    border-color var(--duration-standard) var(--ease-out);
}

.shop-product-card:hover {
  border-color: var(--line-wash);
  box-shadow: 0 12px 34px rgba(94, 62, 38, 0.08);
  transform: translateY(-2px);
}

.shop-product-card-featured {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.shop-product-media-link {
  display: block;
  min-height: 100%;
  overflow: hidden;
}

.shop-product-card .catalog-media {
  height: 100%;
  border-radius: 0;
}

.shop-product-card:not(.shop-product-card-featured) .catalog-media {
  aspect-ratio: 1 / 1;
}

.shop-product-card-featured .catalog-media {
  min-height: 100%;
}

.shop-product-card .catalog-image {
  transition: transform 700ms var(--ease-out);
}

.shop-product-card:hover .catalog-image {
  transform: scale(1.04);
}

.shop-product-copy {
  align-content: start;
  padding: clamp(16px, 2.4vw, 28px);
}

.shop-product-card-featured .shop-product-copy {
  align-content: space-between;
}

.shop-product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.shop-product-actions form {
  margin: 0;
}

.shop-product-actions-jewelry .button-primary {
  background: var(--studio-ink);
}

.shop-process-card {
  grid-column: span 2;
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  justify-items: center;
  gap: 12px;
  border: 1px solid color-mix(in oklch, var(--rose-clay) 28%, var(--line-wash));
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 56px);
  background: color-mix(in oklch, var(--rose-clay) 12%, var(--warm-porcelain));
  text-align: center;
}

.shop-process-card span {
  color: var(--clay-coral);
  font-size: 2rem;
  line-height: 1;
}

.shop-process-card h3 {
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}

.shop-process-card p {
  max-width: 50ch;
  color: var(--soft-umber);
}

.item-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
  padding-block: var(--space-section);
}

.item-summary {
  display: grid;
  gap: 18px;
}

.item-summary h1 {
  font-size: clamp(2.25rem, 5vw, 5.2rem);
}

.item-subtitle {
  color: var(--soft-umber);
  font-size: var(--text-subtitle);
  line-height: var(--leading-compact);
}

.item-price {
  width: fit-content;
  border: 1px solid rgba(200, 95, 67, 0.32);
  border-radius: var(--radius-control);
  padding: 8px 13px;
  background: rgba(200, 95, 67, 0.1);
}

.item-facts {
  display: grid;
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--line-wash);
}

.item-facts div {
  display: grid;
  grid-template-columns: minmax(110px, 0.35fr) minmax(0, 1fr);
  gap: 12px;
  padding: 12px 14px;
  background: var(--warm-porcelain);
}

.item-facts dt {
  color: var(--soft-umber);
  font-weight: var(--weight-label);
}

.item-facts dd {
  color: var(--studio-ink);
}

.detail-gallery {
  display: grid;
  gap: 12px;
}

.detail-slideshow {
  display: grid;
  gap: 12px;
}

.detail-slide {
  margin: 0;
}

.detail-slideshow-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.detail-slide-control,
.detail-thumb {
  min-height: 40px;
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-control);
  padding: 8px 12px;
  background: var(--warm-porcelain);
  color: var(--studio-ink);
  font-weight: var(--weight-label);
  cursor: pointer;
  transition:
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.detail-slide-control:hover,
.detail-thumb:hover {
  border-color: rgba(200, 95, 67, 0.42);
  color: var(--clay-coral);
}

.detail-slide-count {
  color: var(--soft-umber);
  font-weight: var(--weight-label);
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 8px;
}

.detail-thumb {
  padding: 4px;
  border-radius: var(--radius-sm);
}

.detail-thumb.is-active,
.detail-thumb[aria-current="true"] {
  border-color: var(--clay-coral);
}

.detail-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}

.page-cart .cart-section {
  padding-block: clamp(46px, 6vw, 88px);
}

.page-cart .section-head {
  display: grid;
  justify-content: start;
  gap: 8px;
  margin-bottom: clamp(20px, 3vw, 30px);
}

.page-cart .section-head h1 {
  max-width: 14ch;
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 6vw, 5.25rem);
  font-weight: var(--weight-heavy);
  line-height: 1;
  letter-spacing: 0;
}

.page-cart .empty-collection {
  width: min(100%, 760px);
  display: grid;
  gap: 10px;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 250, 241, 0.9);
}

.page-cart .empty-collection h3 {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: var(--weight-strong);
  line-height: 1.14;
}

.page-cart .empty-collection p {
  max-width: 54ch;
  color: var(--soft-umber);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.55;
}

.page-cart .empty-collection .button {
  width: fit-content;
  margin-top: 4px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px) rotate(var(--reveal-tilt, 0deg));
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cart-list {
  display: grid;
  gap: 14px;
}

.cart-card {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 12px;
}

.cart-card .catalog-media {
  border-radius: var(--radius-md);
}

.cart-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 8px;
}

.cart-actions label {
  width: 90px;
}

.cart-summary {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
}

.cart-summary h2,
.order-status-card h2 {
  font-family: var(--font-body);
  font-size: var(--text-title);
  font-weight: var(--weight-strong);
  line-height: var(--leading-title);
}

.summary-row {
  border-top: 1px solid var(--line-wash);
  padding-top: 10px;
}

.summary-row-total {
  color: var(--studio-ink);
  font-size: 1.08rem;
}

.order-status-card {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
}

.order-status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.order-status-grid > div {
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-md);
  padding: 14px;
  background: var(--sun-washed-paper);
}

.track-items,
.address-block {
  display: grid;
  gap: 8px;
}

.site-footer {
  width: min(calc(100% - 28px), var(--content-wide));
  margin: clamp(36px, 6vw, 76px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(260px, 1fr);
  gap: clamp(18px, 4vw, 54px);
  align-items: center;
  border-top: 1px solid color-mix(in oklch, var(--saffron-glow) 34%, var(--line-wash));
  padding-block: clamp(22px, 4vw, 44px);
}

.footer-brand {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.footer-brand-copy strong {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: var(--weight-strong);
  line-height: 1.05;
}

.footer-brand-copy span {
  max-width: 28ch;
  font-size: 0.72rem;
  font-weight: var(--weight-label);
  line-height: 1.16;
}

.footer-wordmark-logo {
  display: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
}

.footer-links a {
  color: var(--soft-umber);
}

.footer-links a:hover {
  color: var(--clay-coral);
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition:
    opacity 620ms var(--ease-out),
    transform 620ms var(--ease-out);
}

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

.admin-page,
.auth-page {
  background: var(--paper-warm);
}

.admin-page {
  color: var(--studio-ink);
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid var(--line-wash);
  padding: 18px 14px;
  background: var(--sun-washed-paper);
}

.admin-brand-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-brand-copy h1 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: var(--weight-strong);
  line-height: 1.1;
}

.admin-sidebar nav {
  display: grid;
  gap: 4px;
}

.admin-sidebar nav a {
  min-height: 40px;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 9px 10px;
  color: var(--soft-umber);
  font-size: var(--text-small);
  font-weight: var(--weight-label);
  text-decoration: none;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.is-active,
.admin-sidebar nav a[aria-current="page"] {
  color: var(--studio-ink);
  background: var(--warm-porcelain);
  border-color: var(--line-wash);
}

.admin-main {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px clamp(14px, 3vw, 34px) 42px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line-wash);
  padding-bottom: 16px;
}

.admin-topbar h2 {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: var(--weight-strong);
  line-height: 1.15;
}

.admin-user {
  display: grid;
  justify-items: end;
  gap: 2px;
  color: var(--soft-umber);
  font-size: 0.86rem;
  line-height: 1.25;
}

.admin-user strong {
  color: var(--studio-ink);
}

.dashboard-command-bar,
.admin-section-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-md);
  padding: 16px;
  background: var(--warm-porcelain);
}

.dashboard-command-bar h3,
.admin-section-copy h3,
.admin-panel h3,
.admin-panel-head h3,
.admin-form-panel h3 {
  font-family: var(--font-body);
  font-size: var(--text-title);
  font-weight: var(--weight-strong);
  line-height: var(--leading-title);
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.dashboard-metric,
.dashboard-action-row a,
.admin-panel,
.admin-form-panel,
.inventory-status-chip,
.inventory-card,
.subsection-row,
.auth-card {
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-md);
  background: var(--warm-porcelain);
}

.dashboard-metric {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.dashboard-metric h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1;
}

.dashboard-action-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.dashboard-action-row a {
  display: grid;
  gap: 4px;
  padding: 14px;
  color: var(--studio-ink);
  text-decoration: none;
}

.dashboard-action-row a span {
  color: var(--soft-umber);
  font-size: 0.82rem;
  font-weight: var(--weight-label);
}

.dashboard-action-row a:hover {
  border-color: rgba(200, 95, 67, 0.38);
}

.admin-dashboard-grid,
.admin-order-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 16px;
  align-items: start;
}

.admin-panel,
.admin-form-panel {
  display: grid;
  gap: 16px;
  padding: 16px;
  box-shadow: none;
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-item-stack,
.dashboard-order-stack,
.inventory-card-list,
.subsection-row-list {
  display: grid;
  gap: 10px;
}

.dashboard-item-row,
.dashboard-order-row,
.inventory-card {
  display: grid;
  gap: 12px;
  align-items: center;
}

.dashboard-item-row {
  grid-template-columns: 64px minmax(0, 1fr) auto;
}

.dashboard-order-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.dashboard-item-media .catalog-media {
  border-radius: var(--radius-sm);
}

.dashboard-item-copy,
.dashboard-order-copy,
.inventory-card-title,
.inventory-card-price {
  min-width: 0;
}

.dashboard-item-copy h4,
.dashboard-order-copy h4,
.inventory-card h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.dashboard-item-copy p,
.dashboard-order-copy p,
.inventory-card-subtitle,
.inventory-card-price span,
.table-muted {
  color: var(--soft-umber);
  font-size: 0.86rem;
}

.inventory-card {
  grid-template-columns: 116px minmax(0, 1fr);
  padding: 12px;
}

.inventory-card-media .catalog-media {
  border-radius: var(--radius-sm);
}

.inventory-card-body {
  min-width: 0;
  display: grid;
  gap: 12px;
}

.inventory-card-head,
.inventory-card-actions,
.inventory-card-links,
.inventory-card-meta,
.inventory-status-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.inventory-card-head {
  justify-content: space-between;
}

.inventory-card-price {
  display: grid;
  justify-items: end;
  gap: 2px;
}

.inventory-status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inventory-status-chip {
  gap: 10px;
}

.inventory-badge,
.inventory-meta-text {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-control);
  padding: 5px 9px;
  color: var(--soft-umber);
  font-size: 0.78rem;
  font-weight: var(--weight-label);
}

.status-available {
  border-color: rgba(82, 107, 63, 0.32);
  background: var(--success-soft);
  color: var(--success);
}

.status-reserved {
  border-color: rgba(231, 169, 63, 0.42);
  background: var(--warning-soft);
  color: var(--warning);
}

.status-sold,
.status-hidden,
.status-draft {
  background: var(--paper-deep);
}

.admin-form-grid,
.subsection-create-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 12px;
}

.admin-form-grid-full {
  grid-column: 1 / -1;
}

.admin-checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 42px;
  gap: 9px;
}

.admin-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--clay-coral);
}

.image-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 12px;
}

.image-admin-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-md);
  padding: 10px;
  background: var(--sun-washed-paper);
}

.image-admin-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-sm);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: var(--warm-porcelain);
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line-wash);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  font-size: 0.9rem;
}

.admin-table th {
  color: var(--soft-umber);
  font-size: 0.78rem;
  font-weight: var(--weight-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.subsection-row {
  padding: 12px;
}

.subsection-edit-form {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(140px, 0.8fr) 86px auto auto;
  gap: 10px;
  align-items: end;
}

.subsection-delete-form {
  margin-top: 10px;
}

.admin-danger-zone {
  border-color: rgba(169, 71, 53, 0.28);
  background: var(--danger-soft);
}

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-card {
  width: min(100%, 460px);
  display: grid;
  gap: 18px;
  padding: clamp(22px, 5vw, 38px);
  box-shadow: var(--shadow-admin);
}

.auth-card h1 {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: var(--weight-strong);
  line-height: 1.08;
}

.auth-help {
  color: var(--soft-umber);
}

code {
  border: 1px solid var(--line-wash);
  border-radius: var(--radius-xs);
  padding: 0.08em 0.28em;
  background: var(--sun-washed-paper);
  color: var(--studio-ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .nav-links a:hover,
  .nav-cta:hover,
  .maker-gallery-card:hover,
  .maker-collection-card:hover,
  .shop-product-card:hover {
    will-change: transform;
  }
}

@media (max-width: 1120px) {
  .site-nav {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    max-width: min(100%, 360px);
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 2px;
  }

  .nav-cta {
    grid-column: 2;
    grid-row: 1;
  }

  .maker-hero,
  .hero,
  .jewelry-showcase-hero,
  .item-detail,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .maker-hero {
    min-height: auto;
  }

  .stitch-studio-panels {
    grid-template-columns: 1fr;
  }

  .stitch-custom-card {
    min-height: 320px;
  }

  .maker-gallery-note {
    margin-left: 0;
    margin-right: auto;
  }

  .shop-category-layout {
    grid-template-columns: 1fr;
  }

  .shop-category-sidebar,
  .cart-summary {
    position: static;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-wash);
  }

  .admin-sidebar nav {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    padding-block: 12px;
  }

  .site-nav {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    max-width: min(100%, 300px);
  }

  .brand-mark-shell {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: clamp(1.08rem, 3.4vw, 1.28rem);
  }

  .nav-cta {
    min-width: 72px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
  }

  .nav-links a {
    min-width: 0;
    white-space: normal;
    padding-inline: 8px;
  }

  .maker-value-strip,
  .maker-collection-grid,
  .stitch-latest-grid,
  .empty-collection-gallery,
  .shop-category-empty,
  .story-feature,
  .page-about .hero,
  .page-contact .hero,
  .contact-banner,
  .newsletter-strip,
  .stitch-newsletter-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .stitch-feature-card:nth-child(2) {
    margin-top: 0;
  }

  .stitch-section-head {
    display: grid;
    align-items: start;
    gap: 12px;
  }

  .stitch-promise-strip ul {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 16px;
  }

  .stitch-promise-strip .stitch-promise-list-single {
    justify-content: center;
  }

  .maker-piece-card-lead {
    grid-column: auto;
  }

  .maker-product-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .maker-gallery-card-featured,
  .maker-gallery-card:not(.maker-gallery-card-featured) {
    grid-column: span 1;
    grid-row: auto;
  }

  .maker-gallery-card-featured {
    grid-column: 1 / -1;
  }

  .maker-section-heading,
  .section-head,
  .shop-category-products-head {
    display: grid;
    align-items: start;
    gap: 12px;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

  .cart-card-price {
    grid-column: 2;
  }

  .subsection-edit-form {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --text-display: clamp(2.35rem, 13vw, 4.2rem);
    --text-headline: clamp(1.9rem, 10vw, 3.35rem);
  }

  body {
    overflow-x: hidden;
  }

  .site-header {
    padding-inline: 10px;
    padding-block: 10px;
  }

  .site-nav {
    gap: 8px;
  }

  .brand {
    max-width: min(100%, 220px);
    gap: 8px;
  }

  .brand-mark-shell {
    width: 40px;
    height: 40px;
    box-shadow: none;
  }

  .brand-copy strong {
    font-size: clamp(0.94rem, 4.7vw, 1.08rem);
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .nav-cta {
    min-width: 0;
    padding-inline: 10px;
  }

  .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .maker-hero,
  .hero,
  .shop-category-hero,
  .item-detail,
  .shop-section,
  .stitch-latest,
  .stitch-studio-panels,
  .maker-value-strip,
  .maker-trust-band,
  .maker-collections,
  .maker-featured,
  .story-feature,
  .process-strip,
  .contact-banner,
  .newsletter-strip,
  .shop-category-layout {
    width: min(calc(100% - 20px), var(--content-max));
  }

  .maker-hero h1,
  .hero h1,
  .shop-category-hero h1,
  .item-summary h1,
  .section-head h1,
  .maker-section-heading h2,
  .section-head h2,
  .shop-category-products-head h2,
  .story-feature-copy h2,
  .contact-banner h2,
  .newsletter-strip h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .page-about .hero h1,
  .page-contact .hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.35rem);
    line-height: 1.04;
  }

  .page-about .story-feature-copy h2,
  .page-about .section-head h2,
  .page-about .contact-banner h2,
  .page-contact .section-head h2,
  .page-contact .contact-banner h2 {
    font-size: clamp(1.75rem, 8vw, 2.7rem);
  }

  .maker-hero h1 {
    font-size: clamp(2.75rem, 15vw, 4.9rem);
  }

  .hero h1,
  .shop-category-hero h1,
  .item-summary h1,
  .section-head h1 {
    font-size: clamp(2.35rem, 13vw, 4.25rem);
  }

  .maker-collections,
  .maker-featured,
  .shop-section,
  .process-strip,
  .story-feature,
  .contact-banner,
  .newsletter-strip {
    padding-block: clamp(38px, 12vw, 64px);
  }

  .maker-hero,
  .hero,
  .shop-category-hero {
    padding-block: clamp(38px, 12vw, 64px);
  }

  .stitch-home-hero {
    min-height: clamp(460px, 78vh, 620px);
    padding: clamp(54px, 14vw, 86px) 20px;
  }

  .stitch-home-hero-copy h1 {
    max-width: 9.5ch;
    font-size: clamp(3rem, 16vw, 5rem);
    line-height: 0.98;
  }

  .stitch-promise-strip ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    padding-block: 16px;
  }

  .stitch-promise-strip li {
    justify-self: center;
    white-space: normal;
  }

  .stitch-section-head h2,
  .stitch-process-card h2,
  .stitch-newsletter-card h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .stitch-process-card h2 {
    font-size: clamp(2rem, 11vw, 3.3rem);
  }

  .stitch-newsletter-form {
    grid-template-columns: 1fr;
  }

  .stitch-newsletter-form .button {
    width: 100%;
  }

  .maker-actions,
  .hero-actions,
  .jewelry-hero-actions,
  .empty-collection-actions,
  .contact-banner-actions,
  .dashboard-command-actions,
  .admin-form-actions,
  .shop-product-actions {
    align-items: stretch;
  }

  .maker-actions .button,
  .hero-actions .button,
  .jewelry-hero-actions .button,
  .empty-collection-actions .button,
  .contact-banner-actions .button,
  .newsletter-form .button,
  .checkout-form .button,
  .shop-product-actions .button,
  .shop-product-actions form {
    width: 100%;
  }

  .maker-trust-band {
    display: grid;
  }

  .maker-trust-band ul {
    justify-content: flex-start;
  }

  .maker-trust-band li {
    white-space: normal;
  }

  .maker-product-gallery {
    grid-template-columns: 1fr;
  }

  .jewelry-hero-stats {
    grid-template-columns: 1fr;
  }

  .item-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cart-card,
  .inventory-card,
  .dashboard-item-row,
  .dashboard-order-row {
    grid-template-columns: 1fr;
  }

  .cart-card-price,
  .inventory-card-price {
    grid-column: auto;
    justify-items: start;
  }

  .cart-actions label {
    width: 100%;
  }

  .admin-main {
    padding-inline: 10px;
  }

  .dashboard-command-bar,
  .admin-section-hero,
  .admin-topbar,
  .admin-panel-head {
    display: grid;
    align-items: start;
  }

  .admin-user {
    justify-items: start;
  }

  .admin-table {
    min-width: 0;
  }

  .admin-table thead {
    display: none;
  }

  .admin-table,
  .admin-table tbody,
  .admin-table tr,
  .admin-table td {
    display: block;
    width: 100%;
  }

  .admin-table tr {
    border-bottom: 1px solid var(--line-wash);
  }

  .admin-table td {
    display: grid;
    grid-template-columns: minmax(96px, 0.38fr) minmax(0, 1fr);
    gap: 10px;
    border-bottom: 0;
  }

  .admin-table td::before {
    content: attr(data-label);
    color: var(--soft-umber);
    font-weight: var(--weight-label);
  }

  .subsection-edit-form,
  .subsection-create-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .site-nav {
    column-gap: 6px;
  }

  .brand {
    max-width: 188px;
  }

  .brand-mark-shell {
    width: 36px;
    height: 36px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
    line-height: 1.02;
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 8px;
    font-size: 0.86rem;
  }
}

@media (max-width: 1120px) {
  .shop-category-sidebar {
    border: 1px solid color-mix(in oklch, var(--saffron-glow) 30%, var(--line-wash));
    padding: clamp(14px, 2vw, 18px);
  }

  .shop-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-product-card-featured,
  .shop-process-card {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .shop-category-hero.sell-hero {
    min-height: clamp(420px, 112vw, 560px);
    margin-block: 20px clamp(42px, 12vw, 70px);
    padding: 22px;
  }

  .sell-hero-media::after {
    background:
      linear-gradient(0deg, rgba(35, 19, 12, 0.78), rgba(35, 19, 12, 0.24) 70%),
      linear-gradient(90deg, rgba(35, 19, 12, 0.36), transparent);
  }

  .sell-hero-copy h1 {
    font-size: clamp(2.8rem, 17vw, 4.8rem);
  }

  .shop-category-products-head,
  .shop-product-toolbar {
    justify-content: flex-start;
  }

  .shop-sort-control {
    width: 100%;
    justify-content: space-between;
  }

  .shop-category-grid,
  .shop-product-card-featured {
    grid-template-columns: 1fr;
  }

  .shop-product-card-featured,
  .shop-process-card {
    grid-column: auto;
  }

  .shop-process-card {
    min-height: 230px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
