:root {
  color-scheme: light;
  --bg: #fff6f9;
  --bg-deep: #f4d5e5;
  --surface: rgba(255, 250, 253, 0.92);
  --surface-strong: #fffafd;
  --surface-accent: #fbe5f0;
  --text: #2b1834;
  --muted: #68516f;
  --line: rgba(179, 86, 144, 0.18);
  --gold: #ffc857;
  --gold-deep: #d98b22;
  --blue: #55c8ce;
  --blue-deep: #5a337b;
  --pink: #e74c89;
  --pink-deep: #9e327a;
  --shadow: 0 28px 70px rgba(74, 31, 82, 0.15);
  --shadow-soft: 0 20px 42px rgba(74, 31, 82, 0.1);
  font-family: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(85, 200, 206, 0.16), transparent 32%),
    linear-gradient(230deg, rgba(231, 76, 137, 0.18), transparent 36%),
    linear-gradient(160deg, #fff8fb 0%, #f9edf5 46%, #f1d8e9 100%);
}

.experience-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  z-index: 140;
  pointer-events: none;
}

.experience-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-deep), var(--pink), var(--gold), var(--blue));
  box-shadow: 0 0 18px rgba(231, 76, 137, 0.28);
  transition: width 120ms linear;
}

body.modal-open .experience-progress {
  opacity: 0;
}

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

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

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

.site-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 40px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding: 14px 18px;
  background: rgba(255, 250, 253, 0.82);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.topbar.is-scrolled {
  transform: translateY(2px) scale(0.995);
  background: rgba(255, 250, 253, 0.9);
  box-shadow: 0 22px 48px rgba(74, 31, 82, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 68px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(231, 76, 137, 0.16);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  line-height: 1;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.88rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 250, 253, 0.92);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
}

.cart-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(179, 86, 144, 0.2);
  border-radius: 999px;
  background: rgba(255, 250, 253, 0.94);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(74, 31, 82, 0.08);
}

.cart-toggle span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--pink);
  color: #fffafd;
  font-size: 0.78rem;
}

.section {
  margin-bottom: 28px;
  transform: translateY(0);
  opacity: 1;
  filter: none;
  transition:
    transform 900ms cubic-bezier(0.18, 0.9, 0.16, 1),
    opacity 900ms ease,
    filter 900ms ease;
}

.section.is-visible,
.story-strip.is-visible,
.trust-strip.is-visible {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  min-height: calc(100vh - 118px);
  padding: clamp(18px, 3vw, 36px);
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
  transform: none;
  opacity: 1;
  filter: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-video-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  transform: scale(1.005);
  filter: saturate(1.12) contrast(1.03) brightness(1.08);
  transition: transform 320ms ease, filter 320ms ease;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 12, 36, 0.08) 0%, rgba(31, 12, 36, 0.02) 42%, rgba(31, 12, 36, 0.58) 100%),
    linear-gradient(90deg, rgba(31, 12, 36, 0.18) 0%, rgba(31, 12, 36, 0.02) 36%, rgba(31, 12, 36, 0.02) 100%);
}

.hero-copy,
.contact-panel {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
}

.hero-copy,
.contact-panel {
  background:
    linear-gradient(180deg, rgba(255, 250, 253, 0.9), rgba(249, 235, 245, 0.92)),
    var(--surface);
}

.hero-copy {
  width: min(520px, 100%);
  padding: 0;
  align-self: end;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: 0 3px 18px rgba(20, 14, 8, 0.42);
}

.hero-logo {
  width: min(420px, 100%);
  margin-bottom: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(31, 12, 36, 0.18);
}

.hero h1 {
  font-size: 3.6rem;
  max-width: 12ch;
}

.hero .hero-text {
  max-width: 44ch;
  font-size: 0.96rem;
}

.hero-copy::after,
.showcase-card::before,
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 34%, transparent 66%, rgba(255, 255, 255, 0.14));
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.hero-copy:hover::after,
.showcase-card:hover::before,
.contact-panel:hover::before {
  opacity: 1;
}

.eyebrow,
.story-label {
  margin: 0 0 14px;
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero .eyebrow,
.hero h1,
.hero .hero-text {
  color: #fff7fb;
}

.hero .eyebrow {
  color: rgba(255, 216, 236, 0.96);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  font-size: 5rem;
  max-width: 10.5ch;
}

h2 {
  font-size: 3.25rem;
  max-width: 15ch;
}

h3 {
  font-size: 1.4rem;
}

.hero-text,
.section-intro,
.info-card p,
.piece-card p,
.process-step p,
.value-card p,
.contact-copy p,
.story-strip p,
.footer,
.contact-note {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-text {
  max-width: 60ch;
  margin: 18px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-4px) scale(1.01);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.34) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 280ms ease;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(120%);
}

.button-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: #fffafd;
  box-shadow: 0 14px 26px rgba(183, 58, 126, 0.28);
}

.button-secondary {
  background: rgba(255, 250, 253, 0.95);
  border: 1px solid rgba(179, 86, 144, 0.18);
  color: var(--text);
}

.hero .button-secondary {
  background: rgba(255, 250, 253, 0.16);
  border-color: rgba(255, 216, 236, 0.28);
  color: #fff7fb;
  backdrop-filter: blur(10px);
}

.story-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: 30px 34px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 26px 30px;
}

.cta-band-soft {
  background:
    linear-gradient(135deg, rgba(95, 139, 201, 0.12), rgba(215, 170, 69, 0.16)),
    var(--surface);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.section-heading {
  margin-bottom: 18px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 20px;
  align-items: end;
}

.about-grid,
.piece-grid,
.gallery-grid,
.pricing-grid,
.assurance-grid,
.bestseller-grid,
.process-grid,
.values-grid,
.testimonials-grid {
  display: grid;
  gap: 18px;
}

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

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

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 320px;
}

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

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

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

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

.info-card,
.piece-card,
.pricing-card,
.process-step,
.value-card,
.testimonial-card {
  padding: 26px;
}

.showcase-grid {
  align-items: stretch;
}

.showcase-grid:hover .showcase-card:not(:hover),
.showcase-grid:focus-within .showcase-card:not(:focus-within) {
  opacity: 0.72;
  transform: scale(0.982) translateY(6px);
}

.showcase-card {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 250, 253, 0.88);
  border: 1px solid rgba(179, 86, 144, 0.16);
  box-shadow: var(--shadow-soft);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    opacity 260ms ease;
  cursor: pointer;
  transform-style: preserve-3d;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(32, 24, 15, 0), rgba(26, 18, 11, 0.46));
  pointer-events: none;
  transition: height 260ms ease, opacity 260ms ease;
}

.showcase-card:hover,
.showcase-card:focus-within {
  transform: translateY(-10px) rotateX(4deg) rotateY(-4deg) scale(1.02);
  box-shadow: 0 34px 58px rgba(91, 63, 28, 0.22);
  border-color: rgba(85, 200, 206, 0.38);
  opacity: 1;
  z-index: 3;
}

.showcase-card:hover::after,
.showcase-card:focus-within::after {
  height: 54%;
}

.showcase-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.showcase-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.showcase-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform 360ms ease, filter 360ms ease;
}

.showcase-card:hover .showcase-preview,
.showcase-card:focus-within .showcase-preview {
  transform: scale(1.08);
  filter: saturate(1.06) contrast(1.03);
}

.showcase-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 10px;
  color: #fffaf2;
  transform: translateY(8px);
  transition: transform 260ms ease, opacity 260ms ease;
}

.showcase-card:hover .showcase-overlay,
.showcase-card:focus-within .showcase-overlay {
  transform: translateY(0);
}

.showcase-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  color: rgba(255, 216, 236, 0.92);
}

.showcase-overlay-minimal {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.showcase-labels {
  display: grid;
  gap: 8px;
  max-width: 26ch;
}

.showcase-overlay h3 {
  font-size: 1.45rem;
  color: #fff7fb;
}

.showcase-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.showcase-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 250, 253, 0.16);
  border: 1px solid rgba(255, 216, 236, 0.24);
  color: rgba(255, 250, 253, 0.92);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.showcase-card-actions {
  display: grid;
  gap: 8px;
  justify-items: end;
  flex-shrink: 0;
}

.showcase-buy-cue {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 216, 236, 0.34);
  border-radius: 999px;
  background: rgba(255, 250, 253, 0.22);
  color: #fff7fb;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.showcase-open-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 253, 0.18);
  border: 1px solid rgba(255, 216, 236, 0.28);
  color: #fff7fb;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
  flex-shrink: 0;
}

.showcase-card:hover .showcase-open-cue,
.showcase-card:focus-within .showcase-open-cue {
  transform: translateY(-2px) scale(1.04);
  background: rgba(255, 250, 253, 0.28);
  border-color: rgba(255, 216, 236, 0.42);
}

.showcase-count {
  font-size: 0.84rem;
  font-weight: 700;
}

.showcase-arrow {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1rem;
}

.showcase-viewer-tags-list span,
.showcase-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 248, 232, 0.18);
  border: 1px solid rgba(255, 235, 182, 0.26);
  color: #fff8ef;
  font-size: 0.82rem;
}

.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-chip,
.assurance-card,
.bestseller-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(248, 239, 224, 0.94)),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  transform-style: preserve-3d;
}

.trust-chip:hover,
.assurance-card:hover,
.bestseller-card:hover {
  transform: translateY(-6px) rotateX(3deg);
  box-shadow: 0 28px 46px rgba(91, 63, 28, 0.16);
  border-color: rgba(95, 139, 201, 0.26);
}

.trust-chip strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
}

.trust-chip span,
.assurance-card p,
.bestseller-card p,
.bestseller-meta span {
  color: var(--muted);
  line-height: 1.7;
}

.assurance-card h3,
.bestseller-card h3 {
  margin-bottom: 10px;
}

.bestseller-card {
  min-height: 260px;
}

.bestseller-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.bestseller-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 249, 238, 0.92);
  border: 1px solid rgba(169, 133, 66, 0.14);
  font-size: 0.84rem;
}

.pricing-card {
  min-height: 240px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  transform-style: preserve-3d;
}

.featured-pricing {
  background:
    linear-gradient(160deg, rgba(95, 139, 201, 0.12), rgba(215, 170, 69, 0.18)),
    var(--surface);
}

.pricing-label {
  margin: 0 0 14px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: 0;
}

.pricing-amount {
  margin: 14px 0 12px;
  font-family: "Fraunces", serif;
  font-size: 2rem;
  color: var(--text);
}

.accent-card {
  background:
    linear-gradient(135deg, rgba(95, 139, 201, 0.12), rgba(215, 170, 69, 0.12)),
    var(--surface);
}

.piece-card {
  min-height: 240px;
}

.piece-number,
.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(95, 139, 201, 0.16), rgba(215, 170, 69, 0.18));
  color: var(--blue-deep);
  font-weight: 800;
}

.contact-panel {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  transform-style: preserve-3d;
}

.contact-panel:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: 0 28px 46px rgba(91, 63, 28, 0.18);
  border-color: rgba(95, 139, 201, 0.26);
}

.piece-card h3,
.process-step h3,
.value-card h3 {
  margin-bottom: 12px;
}

.values-section .value-card {
  min-height: 220px;
}

.testimonial-card {
  min-height: 220px;
}

.testimonial-card p {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
}

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

.faq-item {
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  transition: color 180ms ease, transform 180ms ease;
}

.faq-item summary:hover {
  color: var(--blue-deep);
  transform: translateX(4px);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 20px;
  padding: 30px;
}

.contact-actions {
  display: grid;
  gap: 12px;
  align-content: start;
}

.contact-note {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid rgba(215, 170, 69, 0.12);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 6px 0;
  font-size: 0.95rem;
}

.footer p {
  margin: 0;
}

.topbar::after,
.hero-copy::after,
.story-strip::after,
.cta-band::after,
.info-card::after,
.piece-card::after,
.pricing-card::after,
.process-step::after,
.value-card::after,
.testimonial-card::after,
.faq-item::after,
.contact-panel::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(215, 170, 69, 0.18), transparent 70%);
  pointer-events: none;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(28, 20, 13, 0.6);
  backdrop-filter: blur(18px);
  overflow-y: auto;
}

.lightbox[hidden] {
  display: none;
}

.showcase-viewer {
  position: relative;
  width: min(1180px, 100%);
  max-height: min(92vh, 980px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(248, 241, 230, 0.98)),
    var(--surface);
  border: 1px solid rgba(215, 170, 69, 0.22);
  box-shadow: 0 34px 80px rgba(72, 48, 21, 0.22);
  overflow: auto;
  margin: auto;
  transform: none !important;
}

.showcase-viewer-media {
  display: grid;
  position: relative;
  place-items: center;
  min-height: clamp(420px, 68vh, 720px);
  padding: clamp(12px, 2vw, 24px);
  border-radius: 24px;
  background-color: #fffaf2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid rgba(215, 170, 69, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.lightbox-figure {
  position: relative;
  margin: 0;
  display: grid;
  gap: 12px;
  align-content: center;
  justify-items: center;
  min-width: 0;
  width: 100%;
  height: auto;
  min-height: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.lightbox-figure img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: min(68vh, 700px);
  object-fit: contain;
  border-radius: 18px;
  background: #fffaf2;
  box-shadow: 0 24px 54px rgba(72, 48, 21, 0.18);
  opacity: 1;
  transform: translateZ(0);
}

.lightbox-figure figcaption {
  display: none;
}

.lightbox-close,
.lightbox-nav {
  appearance: none;
  border: 0;
  background: rgba(255, 249, 240, 0.92);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 14px 24px rgba(72, 48, 21, 0.12);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  padding: 12px 16px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 2rem;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.showcase-viewer-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px 8px 8px;
}

.showcase-viewer-collections {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.showcase-collection-nav {
  appearance: none;
  border: 1px solid rgba(215, 170, 69, 0.18);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 249, 240, 0.92);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(72, 48, 21, 0.08);
}

.showcase-collection-nav:hover,
.showcase-collection-nav:focus-visible {
  transform: translateY(-2px);
}

.showcase-viewer-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--blue-deep);
}

.showcase-viewer-title {
  font-size: 2.25rem;
}

.showcase-viewer-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.showcase-viewer-tags {
  display: grid;
  gap: 12px;
}

.piece-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.piece-detail {
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.78);
  border: 1px solid rgba(215, 170, 69, 0.14);
}

.piece-detail span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.piece-detail strong {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.4;
}

.showcase-viewer-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.viewer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showcase-viewer-counter {
  color: var(--blue-deep);
  font-weight: 700;
}

.showcase-viewer-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.showcase-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(215, 170, 69, 0.16);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 250, 243, 0.9);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.showcase-thumb img,
.showcase-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-thumb:hover,
.showcase-thumb.is-active {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(72, 48, 21, 0.14);
  border-color: rgba(95, 139, 201, 0.34);
}

.cart-panel {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  justify-content: flex-end;
  background: rgba(31, 12, 36, 0.34);
  backdrop-filter: blur(12px);
}

.cart-panel[hidden] {
  display: none;
}

.cart-panel-inner {
  width: min(430px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 250, 253, 0.98), rgba(249, 235, 245, 0.98)),
    var(--surface-strong);
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 70px rgba(31, 12, 36, 0.18);
}

.cart-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.cart-header h2 {
  font-size: 2rem;
}

.cart-close,
.cart-item button {
  appearance: none;
  border: 1px solid rgba(179, 86, 144, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 253, 0.9);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.cart-close {
  padding: 10px 14px;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow-y: auto;
  padding-right: 4px;
}

.cart-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(179, 86, 144, 0.14);
  border-radius: 18px;
  background: rgba(255, 250, 253, 0.78);
}

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

.cart-item div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.cart-item strong {
  font-size: 0.94rem;
}

.cart-item span,
.cart-footer p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.9rem;
}

.cart-item button {
  padding: 8px 10px;
  font-size: 0.78rem;
}

.cart-footer {
  display: grid;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-weight: 800;
}

.cart-total-row strong {
  color: var(--text);
  font-size: 1.4rem;
}

.cart-checkout {
  width: 100%;
}

.cart-checkout.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.studio-assistant {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  justify-items: end;
  gap: 14px;
}

.assistant-launcher {
  appearance: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: min(286px, calc(100vw - 32px));
  padding: 12px 14px 12px 12px;
  border-radius: 24px;
  cursor: pointer;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.98), rgba(243, 223, 180, 0.96)),
    var(--surface-strong);
  border: 1px solid rgba(222, 166, 59, 0.32);
  box-shadow:
    0 24px 48px rgba(60, 40, 18, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.assistant-launcher:hover,
.assistant-launcher:focus-visible {
  transform: translateY(-4px) rotate(-1deg) scale(1.015);
  box-shadow:
    0 30px 60px rgba(60, 40, 18, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.assistant-bot-face {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.5), transparent 26%),
    linear-gradient(135deg, #7ba8f0, #f0c25b);
  box-shadow:
    0 16px 28px rgba(47, 90, 164, 0.24),
    inset 0 -8px 16px rgba(255, 255, 255, 0.16);
}

.assistant-bot-face::before,
.assistant-bot-face::after {
  content: "";
  position: absolute;
  top: -6px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-deep), var(--gold));
}

.assistant-bot-face::before {
  left: 13px;
}

.assistant-bot-face::after {
  right: 13px;
}

.assistant-bot-eyes {
  display: flex;
  gap: 10px;
}

.assistant-bot-eyes span {
  width: 8px;
  height: 12px;
  border-radius: 999px;
  background: rgba(44, 34, 27, 0.82);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.assistant-bot-mouth {
  position: absolute;
  bottom: 14px;
  width: 20px;
  height: 10px;
  border-bottom: 3px solid rgba(44, 34, 27, 0.72);
  border-radius: 0 0 999px 999px;
}

.assistant-launcher-copy {
  display: grid;
  gap: 3px;
  text-align: left;
}

.assistant-launcher-copy strong {
  font-family: "Fraunces", serif;
  font-size: 0.98rem;
}

.assistant-launcher-copy span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.assistant-panel {
  width: min(380px, calc(100vw - 24px));
  max-height: min(680px, calc(100vh - 110px));
  display: grid;
  grid-template-rows: auto minmax(240px, 1fr) auto;
  gap: 12px;
  padding: 16px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(245, 232, 208, 0.97)),
    var(--surface-strong);
  border: 1px solid rgba(222, 166, 59, 0.28);
  box-shadow:
    0 34px 82px rgba(57, 36, 14, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transform-origin: bottom right;
  animation: assistant-pop 380ms cubic-bezier(0.18, 0.9, 0.16, 1);
}

@keyframes assistant-pop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.assistant-panel[hidden] {
  display: none;
}

.assistant-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 4px;
}

.assistant-kicker {
  margin: 0 0 8px;
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.72rem;
  font-weight: 800;
}

.assistant-header h2 {
  margin: 0;
  max-width: 15ch;
  font-size: 1.8rem;
}

.assistant-close {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  background: rgba(255, 250, 243, 0.92);
  color: var(--text);
  box-shadow: 0 12px 24px rgba(72, 48, 21, 0.12);
}

.assistant-thread {
  min-height: 240px;
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 8px 6px 8px 2px;
}

.assistant-message {
  max-width: 88%;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 22px;
  box-shadow: 0 12px 24px rgba(72, 48, 21, 0.08);
}

.assistant-message p {
  margin: 0;
  line-height: 1.65;
}

.assistant-message ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.65;
}

.assistant-message li + li {
  margin-top: 6px;
}

.assistant-message-assistant {
  justify-self: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 239, 225, 0.96));
  border: 1px solid rgba(95, 139, 201, 0.14);
}

.assistant-message-user {
  justify-self: end;
  color: white;
  background:
    linear-gradient(135deg, rgba(47, 90, 164, 0.96), rgba(87, 121, 178, 0.94)),
    var(--blue-deep);
}

.assistant-meta {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.72;
}

.assistant-message-user .assistant-meta {
  color: rgba(255, 255, 255, 0.8);
}

.assistant-message-assistant .assistant-meta {
  color: var(--blue-deep);
}

.assistant-loading {
  display: inline-flex;
  gap: 6px;
}

.assistant-loading span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  animation: assistant-pulse 0.9s infinite ease-in-out;
}

.assistant-loading span:nth-child(2) {
  animation-delay: 0.15s;
}

.assistant-loading span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes assistant-pulse {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

.assistant-form {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 234, 218, 0.92));
  border: 1px solid rgba(222, 166, 59, 0.18);
}

.assistant-field {
  display: grid;
}

.assistant-field textarea {
  resize: none;
  min-height: 56px;
  max-height: 180px;
  border: 0;
  outline: 0;
  padding: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  line-height: 1.6;
}

.assistant-field textarea::placeholder {
  color: rgba(112, 95, 77, 0.82);
}

.assistant-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.assistant-link {
  color: var(--blue-deep);
  font-weight: 700;
}

.assistant-send {
  min-width: 96px;
  justify-content: center;
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.magnetic {
  transition: transform 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

@media (max-width: 1100px) {
  .hero,
  .split-heading,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .showcase-viewer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100vh - 112px);
    padding: 22px;
  }

  .showcase-card-large {
    grid-column: span 2;
  }

  .assistant-launcher {
    min-width: min(320px, calc(100vw - 32px));
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 20px, 1240px);
    padding-top: 10px;
  }

  .topbar {
    flex-wrap: wrap;
    top: 10px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .cart-toggle {
    margin-left: auto;
  }

  .hero-copy,
  .contact-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-copy {
    padding: 0;
    border-radius: 0;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.25rem;
  }

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

  .gallery-grid {
    grid-auto-rows: 280px;
  }

  .showcase-card-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hero-video-overlay {
    background:
      linear-gradient(180deg, rgba(18, 15, 10, 0.08) 0%, rgba(18, 15, 10, 0.04) 42%, rgba(18, 15, 10, 0.68) 100%);
  }

  .footer {
    flex-direction: column;
  }

  .lightbox {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .showcase-viewer {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 18px;
  }

  .showcase-viewer-media {
    min-height: auto;
    padding: 12px;
  }

  .lightbox-figure img {
    min-height: 320px;
  }

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

  .piece-detail-grid {
    grid-template-columns: 1fr;
  }

  .showcase-overlay-minimal {
    align-items: start;
    flex-direction: column;
  }

  .showcase-card-actions {
    justify-items: start;
  }

  .cart-panel-inner {
    width: 100%;
  }

  .lightbox-nav {
    display: none;
  }

  .studio-assistant {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .assistant-launcher {
    min-width: 100%;
  }

  .assistant-panel {
    width: 100%;
    max-height: min(78vh, 620px);
  }

  .assistant-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .assistant-send {
    width: 100%;
  }

}

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

  .button,
  .nav a::after,
  .assistant-launcher,
  .assistant-loading span {
    transition: none;
    animation: none;
  }
}
