:root {
  --bg: #131313;
  --surface-lowest: #0e0e0e;
  --surface-low: #1c1b1b;
  --surface: #201f1f;
  --surface-high: #2a2a2a;
  --surface-highest: #353534;
  --text: #e5e2e1;
  --muted: #cdc7ac;
  --muted-2: #969179;
  --accent: #f9e532;
  --accent-dim: #dbc903;
  --accent-text: #363100;
  --outline: rgba(150, 145, 121, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --radius-lg: 36px;
  --site-width: min(1240px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(249, 229, 50, 0.08), transparent 32%),
    linear-gradient(180deg, #191919 0%, var(--bg) 16%, var(--bg) 100%);
  color: var(--text);
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

html,
body,
.cart-sheet__body,
textarea {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) rgba(14, 14, 14, 0.96);
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.cart-sheet__body::-webkit-scrollbar,
textarea::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
.cart-sheet__body::-webkit-scrollbar-track,
textarea::-webkit-scrollbar-track {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(24, 24, 24, 0.94));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
.cart-sheet__body::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #fff07a 0%, var(--accent) 45%, #d1b600 100%);
  border: 2px solid rgba(19, 19, 19, 0.82);
  border-radius: 999px;
}

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

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

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

button {
  cursor: pointer;
}

.page-shell {
  width: var(--site-width);
  margin: 0 auto;
  padding-top: 118px;
}

.section {
  margin-bottom: 32px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(53, 53, 52, 0.72), rgba(28, 27, 27, 0.92));
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.accent-stick {
  width: 8px;
  min-height: 100%;
  background: var(--accent);
  border-radius: 999px;
  align-self: stretch;
  grid-row: 1 / -1;
  box-shadow: 0 0 26px rgba(249, 229, 50, 0.24);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
}

.brand-mark--footer {
  display: inline-block;
  margin-bottom: 12px;
}

.brand-logo {
  width: clamp(180px, 20vw, 250px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.26));
}

.brand-logo--footer {
  width: clamp(190px, 22vw, 260px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  width: 100%;
  padding: 0 16px;
}

.site-header__inner {
  width: var(--site-width);
  margin: 0 auto;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-radius: 28px;
  background: rgba(18, 18, 18, 0.72);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: rgba(229, 226, 225, 0.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--accent);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.primary-button,
.ghost-button,
.icon-button,
.filter-chip {
  border: 0;
  border-radius: 999px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  font-weight: 700;
}

.primary-button {
  background: var(--accent);
  color: var(--accent-text);
  box-shadow: 0 0 30px rgba(249, 229, 50, 0.14);
}

.primary-button:hover,
.ghost-button:hover,
.icon-button:hover,
.filter-chip:hover {
  transform: translateY(-1px);
}

.primary-button:active,
.ghost-button:active,
.icon-button:active,
.filter-chip:active {
  transform: scale(0.98);
}

.primary-button--wide {
  width: 100%;
}

.ghost-button {
  background: rgba(53, 53, 52, 0.68);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ghost-button--soft {
  background: rgba(53, 53, 52, 0.92);
}

.icon-button {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  background: rgba(53, 53, 52, 0.68);
  color: var(--text);
}

.cart-pill {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(249, 229, 50, 0.16);
  color: var(--accent);
  font-size: 12px;
}

.mobile-only {
  display: none;
}

.mobile-sheet {
  width: var(--site-width);
  margin: 8px auto 0;
  padding: 12px;
  border-radius: 26px;
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.site-nav--mobile {
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
}

.site-nav--mobile .nav-link {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(53, 53, 52, 0.48);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  padding-top: 24px;
  align-items: center;
}

.hero__copy {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
}

.hero__copy > :not(.accent-stick) {
  grid-column: 2;
}

.hero__copy h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 7vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.hero__copy h1 span,
.page-hero h1 span {
  color: var(--accent);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button-row--center {
  justify-content: center;
}

.hero__media {
  min-height: 540px;
  padding: 0;
}

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

.glass-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 280px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(53, 53, 52, 0.72);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-badge strong {
  display: block;
  margin-bottom: 8px;
}

.glass-badge p:last-child,
.feature-card p,
.product-card__head p,
.statement-card p:last-child,
.quote-card span,
.mini-location p,
.location-card p,
.studio-entry p,
.footer-copy {
  color: var(--muted);
  line-height: 1.65;
}

.bento-grid,
.editorial-grid,
.stats-grid,
.steps-grid,
.testimonial-grid {
  display: grid;
  gap: 20px;
}

.bento-grid {
  grid-template-columns: 2fr 1fr 1fr;
}

.feature-card,
.statement-card,
.quote-card,
.step-card,
.stat-card,
.studio-card,
.mini-location {
  padding: 28px;
}

.feature-card--wide {
  grid-column: span 2;
}

.feature-card span,
.step-card span {
  color: var(--accent);
  font-size: 34px;
  margin-bottom: 18px;
}

.feature-card h3,
.mini-location h3,
.location-card h3,
.step-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.media-card {
  min-height: 260px;
  grid-column: span 2;
}

.media-card img,
.product-card__image img,
.spotlight-card__media img,
.map-stage__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card__content {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(14, 14, 14, 0.88));
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h2,
.statement-card h2,
.spotlight-card h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: -0.06em;
}

.text-link {
  color: var(--muted);
  font-weight: 700;
}

.text-link:hover {
  color: var(--accent);
}

.product-grid,
.studio-grid {
  display: grid;
  gap: 20px;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card__image {
  position: relative;
  aspect-ratio: 1 / 0.86;
  overflow: hidden;
  border-radius: 28px;
  margin: 10px;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(14, 14, 14, 0.72);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 18px;
  padding: 8px 22px 22px;
}

.product-card__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.product-card__head h3,
.product-card__head h2 {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.05em;
}

.product-card__head strong {
  color: var(--accent);
  white-space: nowrap;
}

.product-card__cta {
  width: 100%;
  margin-top: auto;
}

.atelier-grid,
.location-layout,
.contact-panel,
.menu-layout,
.spotlight-card,
.studio-grid {
  display: grid;
  gap: 20px;
}

.atelier-grid,
.location-layout,
.contact-panel,
.spotlight-card,
.studio-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stack {
  display: grid;
  gap: 20px;
}

.mini-location .text-link {
  margin-top: 14px;
  display: inline-block;
}

.page-hero {
  padding: 24px 0 8px;
}

.page-hero--center {
  padding: 96px 0 140px;
  text-align: center;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  background: rgba(53, 53, 52, 0.68);
  color: var(--text);
}

.filter-chip.is-active {
  background: var(--accent);
  color: var(--accent-text);
}

.spotlight-card {
  grid-template-columns: 1fr 1fr;
  padding: 12px;
  margin-bottom: 20px;
}

.spotlight-card--compact {
  align-items: center;
}

.spotlight-card__media {
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
}

.spotlight-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-layout .is-hidden {
  display: none;
}

.map-stage {
  min-height: 420px;
}

.map-stage__image {
  position: absolute;
  inset: 0;
  opacity: 0.42;
}

.map-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.12), rgba(19, 19, 19, 0.72));
}

.map-marker {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 10px;
  justify-items: center;
  background: transparent;
  border: 0;
  color: var(--text);
}

.map-marker span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(249, 229, 50, 0.6);
}

.map-marker small {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(53, 53, 52, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.location-card {
  padding: 24px 26px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.location-card.is-active,
.map-marker.is-active small {
  border-color: rgba(249, 229, 50, 0.28);
}

.location-card__copy {
  margin: 14px 0 18px;
}

.hours-list {
  display: grid;
  gap: 12px;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.hours-list span {
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.contact-panel {
  padding: 28px;
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-points a {
  color: var(--text);
  font-weight: 600;
}

.contact-form,
.order-form {
  display: grid;
  gap: 16px;
  align-content: start;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field__label {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  background: rgba(14, 14, 14, 0.82);
  color: var(--text);
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 128px;
  max-height: 320px;
}

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

.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 54px;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(249, 229, 50, 0.4);
  box-shadow: 0 0 0 4px rgba(249, 229, 50, 0.08);
}

.fulfillment-options {
  display: grid;
  gap: 10px;
}

.fulfillment-option {
  display: block;
}

.fulfillment-option__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fulfillment-option__card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.92), rgba(36, 36, 36, 0.84));
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.fulfillment-option__card strong {
  font-size: 16px;
}

.fulfillment-option__card small {
  color: var(--muted);
  line-height: 1.5;
}

.fulfillment-option__input:checked + .fulfillment-option__card {
  border-color: rgba(249, 229, 50, 0.52);
  background: linear-gradient(180deg, rgba(62, 57, 12, 0.94), rgba(36, 31, 6, 0.9));
  box-shadow: 0 0 0 4px rgba(249, 229, 50, 0.08);
}

.fulfillment-option__input:focus-visible + .fulfillment-option__card,
.fulfillment-option__card:hover {
  transform: translateY(-1px);
  border-color: rgba(249, 229, 50, 0.32);
}

.quote-card p {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.6;
}

.quote-card strong,
.studio-entry__head strong {
  display: block;
  margin-bottom: 6px;
}

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

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card span,
.stat-card strong {
  display: inline-block;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card span {
  color: var(--muted-2);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-card strong {
  margin-top: 18px;
  font-size: clamp(40px, 7vw, 72px);
  letter-spacing: -0.08em;
}

.studio-card {
  min-height: 100%;
}

.studio-entry {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.studio-entry__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.studio-entry span {
  color: var(--muted-2);
  font-size: 13px;
}

.admin-auth {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 220px);
}

.admin-auth__card {
  width: min(560px, 100%);
  padding: 32px;
}

.admin-auth__card h1,
.admin-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 7vw, 64px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.admin-auth__card h1 span,
.admin-hero h1 span {
  color: var(--accent);
}

.admin-auth__form {
  margin-top: 24px;
}

.admin-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.admin-toolbar form,
.site-header__actions form {
  margin: 0;
}

.admin-alert {
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(22, 22, 22, 0.94);
  border: 1px solid rgba(249, 229, 50, 0.16);
}

.admin-alert--error {
  border-color: rgba(255, 122, 122, 0.28);
  color: #ffd8d8;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-stats .stat-card strong {
  font-size: clamp(28px, 4vw, 52px);
}

.admin-history {
  display: grid;
  gap: 18px;
}

.admin-products {
  display: grid;
  gap: 20px;
}

.admin-product-grid {
  display: grid;
  gap: 20px;
}

.admin-product-card {
  display: grid;
  gap: 18px;
}

.admin-product-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
}

.field--full {
  grid-column: 1 / -1;
}

.admin-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

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

.admin-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.admin-order-card {
  padding: 24px 26px;
}

.admin-order-card__head,
.admin-order-card__details,
.admin-line-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.admin-order-card__head {
  align-items: start;
  margin-bottom: 18px;
}

.admin-order-card__head h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.admin-order-card__meta {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.admin-order-card__meta span,
.admin-order-card__details span,
.admin-order-card__note span,
.admin-line-item span {
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-order-card__details {
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.admin-order-card__details > div {
  min-width: 180px;
  flex: 1;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.admin-order-card__details p,
.admin-order-card__note p {
  margin: 8px 0 0;
}

.admin-order-card__note {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.admin-order-card__items {
  display: grid;
  gap: 12px;
}

.admin-line-item {
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.site-footer {
  margin-top: 28px;
  padding: 24px 16px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 8, 8, 0.94) 30%, rgba(8, 8, 8, 0.98) 100%);
}

.site-footer__inner {
  width: var(--site-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) minmax(0, 1fr) minmax(0, 1.15fr) auto;
  align-items: start;
  gap: 24px;
  padding: 26px 24px 32px;
  border-radius: 28px 28px 0 0;
  background: rgba(14, 14, 14, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}

.footer-nav--legal {
  align-content: start;
}

.footer-nav a {
  color: var(--muted-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-nav a:hover {
  color: var(--accent);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 59;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(4px);
}

.cart-sheet {
  position: fixed;
  inset: 20px 20px 20px auto;
  z-index: 60;
  width: min(460px, calc(100vw - 40px));
  padding: 22px;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 40px);
  border-radius: 32px;
  background: rgba(19, 19, 19, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  transform: translateX(calc(100% + 32px));
  transition: transform 220ms ease;
}

.cart-sheet.is-open {
  transform: translateX(0);
}

.cart-sheet__header,
.cart-sheet__summary,
.cart-item,
.cart-item__meta,
.empty-state {
  display: flex;
}

.cart-sheet__header,
.cart-sheet__summary {
  justify-content: space-between;
  gap: 16px;
}

.cart-sheet__header {
  align-items: start;
  margin-bottom: 18px;
}

.cart-sheet__header h2 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.06em;
}

.cart-sheet__summary {
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(53, 53, 52, 0.52);
}

.cart-sheet__summary span {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-sheet__body {
  margin-top: 18px;
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding-right: 8px;
  padding-bottom: 8px;
}

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

.cart-item {
  align-items: start;
  gap: 14px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(53, 53, 52, 0.4);
}

.cart-item img {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  object-fit: cover;
}

.cart-item__meta {
  flex: 1;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.cart-item__meta h3 {
  margin: 0;
  font-size: 18px;
}

.cart-item__meta span {
  color: var(--muted);
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.qty-button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(249, 229, 50, 0.18);
}

.empty-state {
  justify-content: center;
  padding: 16px 0 22px;
  color: var(--muted-2);
  text-align: center;
}

.empty-state--static {
  justify-content: start;
  padding: 12px 0 0;
}

.toast-stack {
  position: fixed;
  right: 20px;
  bottom: 118px;
  z-index: 80;
  display: grid;
  gap: 10px;
}

.toast {
  min-width: 260px;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
}

.toast.is-error {
  border-color: rgba(255, 100, 100, 0.25);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #131313;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(249, 229, 50, 0.12);
  filter: blur(90px);
}

.preloader__content {
  position: relative;
  width: min(420px, calc(100vw - 40px));
  text-align: center;
}

.preloader__logo {
  width: min(360px, 100%);
  margin: 0 auto;
  height: auto;
}

.preloader__line {
  width: 100%;
  height: 4px;
  margin: 28px 0 18px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.preloader__line span {
  display: block;
  width: 34%;
  height: 100%;
  border-radius: 999px;
  background: var(--accent);
  animation: loadbar 1.6s ease-in-out infinite;
}

.preloader__text {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 81;
  width: min(360px, calc(100vw - 24px));
  padding: 18px 18px 16px;
  display: grid;
  gap: 14px;
  border-radius: 24px;
  background: rgba(14, 14, 14, 0.96);
  border: 1px solid rgba(249, 229, 50, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-banner a {
  color: var(--accent);
}

.cookie-banner__button {
  justify-self: start;
  min-height: 46px;
  padding-inline: 18px;
}

.legal-card {
  display: grid;
  gap: 12px;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

@keyframes loadbar {
  0% {
    transform: translateX(-10%);
  }
  50% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(-10%);
  }
}

@media (max-width: 1080px) {
  .hero,
  .atelier-grid,
  .location-layout,
  .contact-panel,
  .editorial-grid,
  .steps-grid,
  .spotlight-card,
  .studio-grid,
  .product-grid,
  .bento-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card--wide,
  .media-card {
    grid-column: span 2;
  }

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

  .mobile-only {
    display: inline-grid;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding-top: 96px;
  }

  .site-header__inner,
  .site-footer__inner {
    width: calc(100vw - 24px);
  }

  .hero,
  .atelier-grid,
  .location-layout,
  .contact-panel,
  .editorial-grid,
  .steps-grid,
  .spotlight-card,
  .studio-grid,
  .product-grid,
  .bento-grid,
  .stats-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .hero__copy > :not(.accent-stick) {
    grid-column: auto;
  }

  .accent-stick {
    display: none;
  }

  .hero__media,
  .spotlight-card__media {
    min-height: 300px;
  }

  .feature-card--wide,
  .media-card {
    grid-column: auto;
  }

  .section-head,
  .site-footer__inner,
  .product-card__head,
  .studio-entry__head,
  .admin-order-card__head,
  .admin-order-card__details,
  .admin-line-item,
  .admin-product-actions,
  .hours-list div,
  .cart-sheet__summary {
    flex-direction: column;
    align-items: start;
  }

  .admin-hero,
  .admin-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-order-card__meta {
    justify-items: start;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

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

  .glass-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .product-card__head strong {
    font-size: 20px;
  }

  .cart-sheet {
    inset: auto 12px 12px;
    width: auto;
    max-height: calc(100vh - 24px);
  }

  .toast-stack,
  .cookie-banner {
    right: 12px;
    left: 12px;
    width: auto;
  }

  .toast-stack {
    bottom: 124px;
  }
}
