@font-face {
  font-family: 'Birthstone';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Birthstone-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
}

:root {
  --black: #080706;
  --surface: #11100e;
  --surface-2: #181611;
  --ink: #050504;
  --gold: #c7a55b;
  --gold-light: #e5cc8d;
  --cream: #f1ede3;
  --muted: #aaa49a;
  --border: rgba(199, 165, 91, .28);
  --sketch-border: rgba(229, 204, 141, .46);
  --sketch-shadow: rgba(0, 0, 0, .38);
  --serif: 'Birthstone', Georgia, serif;
  --sans: 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
}

body:before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.site-header {
  height: 88px;
  padding: 0 clamp(24px, 6vw, 96px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, rgba(8, 7, 6, .7), rgba(8, 7, 6, .18));
  backdrop-filter: blur(5px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: .04em;
}

.brand-mark {
  color: var(--gold);
  font-size: 16px;
}

.custom-logo {
  display: block;
  width: auto;
  max-width: 220px;
  max-height: 55px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.site-menu,
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a:not(.nav-cta) {
  color: #eee8dc;
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .72);
  transition: .2s;
}

.site-nav a:hover { color: var(--gold-light); }

.nav-cta {
  padding: 11px 17px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
}

.menu-toggle {
  display: none;
  background: none;
  color: var(--cream);
  border: 1px solid var(--border);
  width: 42px;
  height: 38px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold-light);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  --hero-fade-rgb: 8, 7, 6;
  min-height: clamp(680px, 88svh, 940px);
  padding: 150px clamp(24px, 10vw, 160px) 80px;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(8, 7, 6, .92) 0%, rgba(10, 9, 8, .88) 58%, rgba(27, 23, 16, .8) 100%),
    radial-gradient(circle at 78% 35%, rgba(199, 165, 91, .18), transparent 34%),
    linear-gradient(135deg, #080706, #17140f);
}

.hero:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  background:
    linear-gradient(
      90deg,
      rgb(var(--hero-fade-rgb)) 0%,
      rgba(var(--hero-fade-rgb), .96) 24%,
      rgba(var(--hero-fade-rgb), .58) 44%,
      rgba(var(--hero-fade-rgb), 0) 68%
    ),
    linear-gradient(
      0deg,
      rgb(var(--hero-fade-rgb)) 0%,
      rgba(var(--hero-fade-rgb), .9) 9%,
      rgba(var(--hero-fade-rgb), .48) 22%,
      rgba(var(--hero-fade-rgb), 0) 42%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  color: var(--gold);
  margin: 0 0 20px;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact h2,
.content-page h1 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: .95;
  margin: 0;
}

.hero h1 {
  font-size: clamp(58px, 8.8vw, 134px);
  max-width: 1100px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.button {
  --button-fill: transparent;
  --button-text: var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 24px;
  position: relative;
  isolation: isolate;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  background: var(--button-fill);
  color: var(--button-text);
  transition: .25s;
}

.button::before,
.button::after {
  content: '';
  position: absolute;
  inset: -4px 5px 4px -5px;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(229, 204, 141, .24);
  transform: rotate(-.35deg);
  transition: transform .25s ease, border-color .25s ease;
}

.button::after {
  inset: 4px -5px -4px 5px;
  border-color: rgba(229, 204, 141, .15);
  transform: rotate(.42deg);
}

.button:hover::before,
.button:focus-visible::before {
  transform: rotate(.25deg) translate(-1px, 1px);
  border-color: rgba(229, 204, 141, .42);
}

.button:hover::after,
.button:focus-visible::after {
  transform: rotate(-.28deg) translate(1px, -1px);
  border-color: rgba(229, 204, 141, .28);
}

.button-gold {
  --button-fill: var(--gold);
  --button-text: #0a0907;
  font-weight: 600;
}

.button-gold:hover {
  --button-fill: var(--gold-light);
  border-color: var(--gold-light);
}

.button-ghost { --button-text: var(--gold-light); }

.button-ghost:hover { --button-fill: rgba(199, 165, 91, .1); }

.button-dark {
  --button-fill: #050504;
  --button-text: var(--gold-light);
  border-color: var(--gold);
  font-weight: 600;
}

.button-dark:hover {
  --button-fill: #0d0c0a;
  border-color: var(--gold-light);
}

.hero .button-ghost {
  --button-fill: rgba(8, 7, 6, .86);
  border-color: var(--gold);
  --button-text: var(--gold-light);
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.hero .button-ghost:hover {
  --button-fill: rgba(199, 165, 91, .16);
  border-color: var(--gold-light);
}

.scroll-hint {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  right: 6vw;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-hint span {
  color: var(--gold);
  margin-left: 10px;
}

.section {
  padding: clamp(90px, 12vw, 180px) clamp(24px, 9vw, 145px);
}

.split {
  display: grid;
  grid-template-columns: 60px 1.1fr 1fr;
  gap: clamp(30px, 6vw, 100px);
  align-items: start;
  background: var(--surface);
}

.section h2 { font-size: clamp(48px, 6vw, 90px); }

.section-copy {
  padding-top: 35px;
  color: #b5b1a8;
  font-size: 17px;
  max-width: 540px;
}

.gold-line {
  width: 70px;
  height: 1px;
  background: var(--gold);
  margin: 35px 0;
}

.small {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.artists {
  background:
    linear-gradient(180deg, #090807, #12100d 45%, #090807);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
}

.section-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  width: min(220px, 48vw);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(199, 165, 91, 0));
  transform: rotate(-.45deg);
}

.artists > .section-heading {
  margin-bottom: 24px;
}

.artist-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: stretch;
  position: relative;
  padding: 0 0 0 clamp(26px, 5vw, 58px);
  margin-top: clamp(24px, 4vw, 42px);
  min-height: clamp(390px, 36vw, 560px);
  border: 1px solid var(--sketch-border);
  background:
    radial-gradient(circle at 75% 46%, rgba(229, 204, 141, .15), rgba(229, 204, 141, .055) 22%, rgba(229, 204, 141, 0) 55%),
    linear-gradient(130deg, rgba(229, 204, 141, .055), rgba(229, 204, 141, 0) 42%),
    radial-gradient(circle at 18% 12%, rgba(199, 165, 91, .11), transparent 30%),
    linear-gradient(180deg, rgba(16, 14, 11, .92), rgba(8, 7, 6, .78));
  box-shadow: 0 28px 80px var(--sketch-shadow);
}

.artist-panel::before,
.artist-panel::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(229, 204, 141, .2);
}

.artist-panel::before {
  inset: 9px -7px -8px 7px;
  transform: rotate(.45deg);
}

.artist-panel::after {
  inset: -7px 10px 8px -8px;
  border-color: rgba(229, 204, 141, .14);
  transform: rotate(-.32deg);
}

.artist-panel:last-child {
  border-bottom: 1px solid var(--sketch-border);
}

.artist-panel + .artist-panel {
  margin-top: clamp(52px, 7vw, 92px);
}

.artist-guest-heading {
  margin-top: clamp(44px, 7vw, 88px);
  margin-bottom: 24px;
}

.artist-guest-heading {
  justify-content: flex-end;
  text-align: right;
}

.artist-guest-heading::after {
  left: auto;
  right: 0;
  background: linear-gradient(270deg, var(--gold), rgba(199, 165, 91, 0));
  transform: rotate(.45deg);
}

.artist-panel-guest {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1fr);
  padding: 0 clamp(26px, 5vw, 58px) 0 0;
  background:
    radial-gradient(circle at 25% 46%, rgba(229, 204, 141, .15), rgba(229, 204, 141, .055) 22%, rgba(229, 204, 141, 0) 55%),
    linear-gradient(130deg, rgba(229, 204, 141, .055), rgba(229, 204, 141, 0) 42%),
    radial-gradient(circle at 82% 12%, rgba(199, 165, 91, .11), transparent 30%),
    linear-gradient(180deg, rgba(16, 14, 11, .92), rgba(8, 7, 6, .78));
}

.artist-panel-guest .artist-meta { order: 2; }

.artist-panel-guest .artist-visual { order: 1; }

.artist-panel-guest .artist-meta {
  justify-self: end;
  text-align: right;
}

.artist-panel-guest .artist-meta p:not(.artist-role):not(.eyebrow) {
  margin-left: auto;
}

.artist-meta {
  max-width: 700px;
  align-self: center;
  position: relative;
  z-index: 1;
  padding-block: clamp(28px, 5vw, 58px);
}

.artist-role {
  margin: 0 0 18px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
}

.artist-meta h3,
.step h3 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.4vw, 68px);
  line-height: 1;
  font-weight: 500;
  margin: 0 0 22px;
}

.artist-meta h3 {
  width: fit-content;
  padding-bottom: 6px;
  background-image: linear-gradient(90deg, rgba(229, 204, 141, .5), rgba(229, 204, 141, 0));
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0 100%;
}

.artist-panel-guest .artist-meta h3 {
  margin-left: auto;
  background-image: linear-gradient(270deg, rgba(229, 204, 141, .5), rgba(229, 204, 141, 0));
}

.artist-meta p:not(.artist-role):not(.eyebrow) {
  color: #b8b2a7;
  max-width: 620px;
  margin: 0;
}

.artist-button {
  width: fit-content;
  max-width: 100%;
  margin-top: 34px;
  padding-inline: 26px;
}

.artist-panel-guest .artist-button {
  margin-left: auto;
}

.artist-visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  overflow: visible;
  min-height: 100%;
  background: transparent;
  transform-origin: 25% 80%;
  transform: translateX(34px) rotate(7deg);
  transition: transform .95s cubic-bezier(.2, .78, .22, 1), opacity .65s ease;
}

.artist-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.artist-panel-guest .artist-visual {
  transform-origin: 75% 80%;
  transform: translateX(-34px) rotate(-7deg);
}

.artist-panel.visible .artist-visual {
  transform: translateX(0) rotate(0deg);
}

.artist-hand {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .34));
}

.artist-hand-aleks {
  width: min(68%, 310px);
  right: -26%;
  bottom: -14%;
  transform: rotate(-8deg);
}

.artist-hand-amina {
  width: min(72%, 330px);
  left: -28%;
  bottom: -13%;
  transform: rotate(9deg);
}

.artist-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  background:
    repeating-linear-gradient(112deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 13px),
    radial-gradient(circle at 18% 18%, rgba(229, 204, 141, .12), transparent 36%),
    linear-gradient(150deg, #181611, #0b0a09);
  transform: rotate(-.8deg);
  box-shadow:
    inset 0 0 0 1px rgba(229, 204, 141, .08),
    0 18px 50px rgba(0, 0, 0, .28);
}

.artist-card::before {
  content: '';
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(229, 204, 141, .18);
  transform: rotate(.8deg);
}

.artist-card span {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(229, 204, 141, .35);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
}

.artist-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-card.has-image {
  padding: 0;
  overflow: hidden;
}

.artist-card.is-polaroid {
  min-height: 0;
  aspect-ratio: 4 / 5.15;
  padding: 16px 16px 34px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  overflow: visible;
  border: 0;
  background:
    linear-gradient(145deg, #fffaf0, #ded2bb 78%, #bba879);
  color: #17130d;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, .38),
    inset 0 0 0 1px rgba(255, 255, 255, .5);
}

.artist-card.is-polaroid::before {
  inset: 9px;
  border-color: rgba(24, 19, 13, .14);
  transform: rotate(-.55deg);
}

.artist-card.is-polaroid::after {
  content: '';
  position: absolute;
  inset: -8px 8px 8px -8px;
  z-index: -1;
  border: 1px solid rgba(229, 204, 141, .28);
  pointer-events: none;
  transform: rotate(-1.2deg);
}

.artist-card.is-polaroid img {
  position: static;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04);
}

.artist-card.is-polaroid p {
  margin: 0;
  color: #17130d;
  font-family: var(--serif);
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: .78;
  text-align: center;
}

.artist-card.has-image:after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 7, 6, 0), rgba(8, 7, 6, .1));
  box-shadow: inset 0 0 0 1px var(--border);
}

.artist-card.is-polaroid.has-image:after {
  inset: 16px 16px calc(34px + clamp(38px, 4.6vw, 62px) + 16px) 16px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(8, 7, 6, 0), rgba(8, 7, 6, .14));
  box-shadow: inset 0 0 0 1px rgba(23, 19, 13, .18);
}

.artist-card-dark {
  background:
    repeating-linear-gradient(72deg, rgba(255, 255, 255, .026) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 80% 15%, rgba(199, 165, 91, .12), transparent 30%),
    linear-gradient(155deg, #070707, #17120f 70%, #0b0a09);
  transform: rotate(.8deg);
}

.payment {
  background: var(--surface-2);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  overflow: visible;
  border-top: 1px solid var(--sketch-border);
  border-bottom: 1px solid var(--sketch-border);
}

.steps::before,
.steps::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(229, 204, 141, .08), rgba(229, 204, 141, .42), rgba(229, 204, 141, .08));
}

.steps::before {
  top: 6px;
  transform: rotate(.12deg);
}

.steps::after {
  bottom: 7px;
  transform: rotate(-.16deg);
}

.step {
  position: relative;
  min-height: 300px;
  padding: clamp(26px, 4vw, 42px);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.step:last-child { border-right: 0; }

.step span {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 48px;
}

.step h3 {
  font-size: clamp(30px, 3.4vw, 48px);
  margin-bottom: 18px;
}

.step p {
  color: #b8b2a7;
  margin: 0;
}

.payment-sticker {
  width: 100%;
  max-width: 100%;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.work { background: var(--black); }

.instagram-wrap {
  min-height: 300px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.feed-placeholder {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  padding: 24px;
}

.feed-placeholder span {
  font-size: 35px;
  color: var(--gold);
}

.feed-placeholder p {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--cream);
  margin: 15px 0 0;
}

.feed-placeholder small { font-size: 11px; }

.feed-placeholder .button {
  width: fit-content;
  min-width: 0;
  margin-top: 22px;
}

.feed-placeholder.is-loading {
  opacity: .72;
  pointer-events: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.text-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 22px;
  bottom: -7px;
  height: 1px;
  background: linear-gradient(90deg, rgba(229, 204, 141, .8), rgba(229, 204, 141, 0));
  transform: rotate(-.55deg);
}

.text-link span { margin-left: 8px; }

.care-canvas-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 72% 24%, rgba(199, 165, 91, .15), transparent 34%),
    linear-gradient(140deg, #12100d, #070706 72%);
}

.piercing-section {
  --piercing-bg: #0d0d0d;
  --piercing-text: var(--cream);
  --piercing-muted: var(--muted);
  --piercing-gold: var(--gold);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: clamp(560px, 72svh, 760px);
  overflow: hidden;
  background: var(--piercing-bg);
  color: var(--piercing-text);
}

.piercing-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  width: min(100%, 820px);
  padding: clamp(56px, 8vw, 132px) clamp(28px, 7vw, 116px);
}

.piercing-title {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 92px);
  font-weight: 500;
  line-height: .96;
}

.piercing-copy p {
  max-width: 58ch;
  margin: 0 0 32px;
  color: var(--piercing-muted);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.7;
}

.piercing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 25px;
  border: 1px solid var(--piercing-gold);
  color: var(--piercing-bg);
  background: var(--piercing-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .18s ease, background .18s ease;
}

.piercing-button:hover,
.piercing-button:focus-visible {
  color: var(--piercing-gold);
  background: transparent;
}

.piercing-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
}

.piercing-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.piercing-visual::after {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: 2;
  pointer-events: none;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  box-shadow:
    inset 90px 0 90px -44px var(--piercing-bg),
    inset -90px 0 90px -44px var(--piercing-bg),
    inset 0 82px 82px -50px var(--piercing-bg),
    inset 0 -98px 90px -48px var(--piercing-bg);
  background:
    linear-gradient(90deg, var(--piercing-bg) 0%, transparent 18%, transparent 78%, var(--piercing-bg) 100%),
    linear-gradient(180deg, var(--piercing-bg) 0%, transparent 16%, transparent 79%, var(--piercing-bg) 100%);
}

.care-promo {
  padding-top: clamp(80px, 10vw, 135px);
  padding-bottom: clamp(85px, 11vw, 150px);
  padding-left: 0;
  padding-right: clamp(24px, 7vw, 110px);
  text-align: left;
  background:
    linear-gradient(180deg, var(--surface-2), #070706 32%, var(--black));
}

.care-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.care-canvas-frame {
  --aftercare-fade-rgb: 7, 7, 6;
  width: 100%;
  min-height: clamp(520px, 70svh, 820px);
  margin-top: -150px;
  margin-left: 0;
  margin-right: 0;
  isolation: isolate;
  border: 0;
  background: transparent;
}

.aftercare-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.aftercare-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  box-shadow: inset 0 -110px 82px -44px rgb(var(--aftercare-fade-rgb));
  background:
    linear-gradient(
      0deg,
      rgb(var(--aftercare-fade-rgb)) 0,
      rgba(var(--aftercare-fade-rgb), .24) 52px,
      rgba(var(--aftercare-fade-rgb), 0) 130px
    );
}

.care-cta {
  margin-top: 28px;
}

.care-copy {
  color: #b8b2a7;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.75;
}

.care-copy h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 78px);
  font-weight: 500;
  line-height: 1;
  color: var(--cream);
}

.care-copy p {
  margin: 0;
}

.care-copy p:not(.eyebrow) + p {
  margin-top: 18px;
}

.contact {
  padding: clamp(100px, 14vw, 210px) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface), #0b0b0a);
}

.contact:before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(199, 165, 91, .08);
  border-radius: 50%;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: auto;
}

.contact h2 { font-size: clamp(82px, 13vw, 180px); }

.contact p:not(.eyebrow) {
  color: var(--muted);
  margin: 22px auto 35px;
  max-width: 500px;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 4, .78);
  backdrop-filter: blur(8px);
}

.contact-dialog {
  position: relative;
  width: min(100%, 560px);
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 85% 0%, rgba(199, 165, 91, .16), transparent 34%),
    linear-gradient(155deg, #181611, #0b0a09);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .45);
}

.contact-dialog h2 {
  max-width: 420px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 66px);
  font-weight: 500;
  line-height: 1;
}

.contact-options {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gold-light);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.site-footer {
  padding: 55px clamp(24px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer-meta p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 25px;
}

.site-footer .footer-menu {
  display: flex;
  gap: 25px;
}

.footer-brand { color: var(--cream); }

.footer-cookie-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.footer-cookie-button:hover,
.footer-cookie-button:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold-light);
}

.cookie-consent {
  position: fixed;
  inset: auto 0 0;
  z-index: 1200;
  padding: 18px;
  background: linear-gradient(180deg, rgba(8, 7, 6, 0), rgba(8, 7, 6, .86) 30%);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__panel {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr) auto;
  gap: 22px;
  align-items: stretch;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 92% 0%, rgba(199, 165, 91, .14), transparent 32%),
    linear-gradient(155deg, rgba(24, 22, 17, .98), rgba(8, 7, 6, .98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, .46);
}

.cookie-consent__copy p {
  margin: 0;
  color: #c8c1b5;
}

.cookie-consent__copy .eyebrow {
  margin-bottom: 10px;
}

.cookie-consent__title {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  color: var(--cream);
}

.cookie-consent__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-consent__links a {
  display: inline-flex;
  margin-top: 0;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.cookie-consent__services {
  margin-top: 12px !important;
  font-size: 12px;
  line-height: 1.45;
}

.cookie-consent__services strong {
  color: var(--gold-light);
  font-weight: 600;
}

.cookie-consent__choices {
  display: grid;
  gap: 10px;
}

.cookie-choice {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(199, 165, 91, .2);
  background: rgba(5, 5, 4, .28);
}

.cookie-choice input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.cookie-choice strong,
.cookie-choice small {
  display: block;
}

.cookie-choice strong {
  color: var(--cream);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cookie-choice small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.cookie-choice.is-required {
  opacity: .72;
}

.cookie-consent__actions {
  display: grid;
  gap: 10px;
  align-content: end;
}

.cookie-consent__actions .button {
  min-width: 170px;
  white-space: nowrap;
}

.content-page {
  min-height: 75vh;
  padding: 150px clamp(24px, 8vw, 130px) 100px;
  max-width: 1300px;
  margin: auto;
}

.content-page h1 {
  font-size: clamp(50px, 7vw, 100px);
  margin-bottom: 50px;
}

.shop-page { max-width: 1400px; }

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
  background: var(--gold) !important;
  color: #0b0b09 !important;
  border-radius: 0;
  border-color: var(--gold) !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button:focus-visible,
.woocommerce button.button:focus-visible,
.woocommerce input.button:focus-visible,
.woocommerce #respond input#submit:focus-visible {
  background: var(--gold-light) !important;
  color: #0b0b09 !important;
  border-color: var(--gold-light) !important;
}

.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled] {
  background: rgba(199, 165, 91, .46) !important;
  color: rgba(5, 5, 4, .7) !important;
}

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout,
.wp-block-woocommerce-mini-cart,
.wc-block-grid {
  --wp--preset--color--vivid-purple: var(--gold);
  --wp--preset--color--primary: var(--gold);
  --wp--preset--color--contrast: #0b0b09;
  --wc-primary: var(--gold);
  --wc-primary-text: #0b0b09;
}

.wc-block-components-button:not(.is-link),
.wc-block-components-button:not(.is-link).contained,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link,
.woocommerce .wp-block-button__link,
.woocommerce-page .wp-block-button__link {
  min-height: 0;
  border-radius: 0;
  border: 1px solid var(--gold);
  background: var(--gold) !important;
  color: #0b0b09 !important;
  box-shadow: none;
  font-weight: 600;
  text-decoration: none;
}

.wc-block-components-button:not(.is-link):hover,
.wc-block-components-button:not(.is-link).contained:hover,
.wc-block-components-button:not(.is-link):focus-visible,
.wc-block-components-button:not(.is-link).contained:focus-visible,
.wc-block-cart__submit-button:hover,
.wc-block-cart__submit-button:focus-visible,
.wc-block-components-checkout-place-order-button:hover,
.wc-block-components-checkout-place-order-button:focus-visible,
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:hover,
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:focus-visible,
.woocommerce .wp-block-button__link:hover,
.woocommerce .wp-block-button__link:focus-visible,
.woocommerce-page .wp-block-button__link:hover,
.woocommerce-page .wp-block-button__link:focus-visible {
  border-color: var(--gold-light) !important;
  background: var(--gold-light) !important;
  color: #0b0b09 !important;
}

.wc-block-components-button:disabled,
.wc-block-components-button[aria-disabled="true"],
.wc-block-components-button.disabled {
  border-color: rgba(199, 165, 91, .35) !important;
  background: rgba(199, 165, 91, .46) !important;
  color: rgba(5, 5, 4, .7) !important;
}

.wc-block-components-button.is-link,
.wc-block-components-checkout-return-to-cart-button,
.wc-block-components-totals-coupon-link,
.wc-block-components-totals-coupon__button.is-link {
  color: var(--gold-light);
}

.wc-block-components-button.is-link:hover,
.wc-block-components-button.is-link:focus-visible,
.wc-block-components-checkout-return-to-cart-button:hover,
.wc-block-components-checkout-return-to-cart-button:focus-visible,
.wc-block-components-totals-coupon-link:hover,
.wc-block-components-totals-coupon-link:focus-visible,
.wc-block-components-totals-coupon__button.is-link:hover,
.wc-block-components-totals-coupon__button.is-link:focus-visible {
  color: var(--cream);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
  color: var(--gold-light);
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--gold);
  background: var(--surface);
  color: var(--cream);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .site-nav { gap: 18px; }

  .artist-panel,
  .artist-panel-guest,
  .steps {
    grid-template-columns: 1fr;
  }

  .artist-panel,
  .artist-panel-guest {
    padding: 0;
    min-height: 0;
  }

  .artist-panel::before,
  .artist-panel::after {
    inset: 5px;
    transform: none;
  }

  .artist-panel .artist-visual,
  .artist-panel-guest .artist-visual {
    order: 1;
  }

  .artist-panel .artist-meta,
  .artist-panel-guest .artist-meta {
    order: 2;
    padding: 24px;
  }

  .artist-panel-guest .artist-meta {
    justify-self: start;
    text-align: left;
  }

  .artist-panel-guest .artist-meta p:not(.artist-role):not(.eyebrow) {
    margin-left: 0;
  }

  .artist-panel-guest .artist-meta h3 {
    margin-left: 0;
    background-image: linear-gradient(90deg, rgba(229, 204, 141, .5), rgba(229, 204, 141, 0));
  }

  .artist-panel-guest .artist-button {
    margin-left: 0;
  }

  .artist-visual,
  .artist-panel-guest .artist-visual {
    min-height: clamp(260px, 74vw, 360px);
    border: 0;
    border-bottom: 1px solid rgba(229, 204, 141, .18);
    transform: translateY(18px) rotate(0deg);
  }

  .artist-panel.visible .artist-visual {
    transform: translateY(0) rotate(0deg);
  }

  .artist-card.is-polaroid {
    max-width: 360px;
    margin: 0 auto;
  }

  .artist-hand-aleks {
    width: min(58%, 230px);
    right: -14%;
    bottom: -10%;
  }

  .artist-hand-amina {
    width: min(62%, 240px);
    left: -16%;
    bottom: -10%;
  }

  .artist-guest-heading {
    justify-content: flex-start;
    text-align: left;
  }

  .artist-guest-heading::after {
    left: 0;
    right: auto;
    background: linear-gradient(90deg, var(--gold), rgba(199, 165, 91, 0));
    transform: rotate(-.45deg);
  }

  .step {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .step:last-child { border-bottom: 0; }

  .payment-sticker {
    margin-top: 24px;
  }
}

@media (min-width: 801px) and (max-width: 1100px) {
  .hero {
    min-height: 420px;
    padding-top: 142px;
    padding-bottom: 20px;
    align-items: flex-start;
  }

  .hero-content {
    max-width: 640px;
  }

  .hero h1 {
    font-size: clamp(64px, 8vw, 92px);
  }

  .hero:after {
    background:
      linear-gradient(
        90deg,
        rgb(var(--hero-fade-rgb)) 0%,
        rgba(var(--hero-fade-rgb), .9) 24%,
        rgba(var(--hero-fade-rgb), .46) 48%,
        rgba(var(--hero-fade-rgb), 0) 72%
      ),
      linear-gradient(
        0deg,
        rgb(var(--hero-fade-rgb)) 0%,
        rgba(var(--hero-fade-rgb), .96) 18%,
        rgba(var(--hero-fade-rgb), .58) 34%,
        rgba(var(--hero-fade-rgb), 0) 56%
      );
  }

  .aftercare-visual::after {
    box-shadow: inset 0 -280px 95px -32px rgb(var(--aftercare-fade-rgb));
    background:
      linear-gradient(
        0deg,
        rgb(var(--aftercare-fade-rgb)) 0,
        rgba(var(--aftercare-fade-rgb), 1) 118px,
        rgba(var(--aftercare-fade-rgb), .86) 158px,
        rgba(var(--aftercare-fade-rgb), .28) 210px,
        rgba(var(--aftercare-fade-rgb), 0) 252px
      );
  }
}

@media (max-width: 800px) {
  .site-header { height: 72px; }

  .menu-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 30px 24px;
    background: #0b0b0a;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
  }

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

  .site-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .hero {
    min-height: 650px;
    padding-top: 112px;
    padding-bottom: 0;
    align-items: flex-start;
  }

  .hero:after {
    background:
      linear-gradient(
        0deg,
        rgb(var(--hero-fade-rgb)) 0,
        rgba(var(--hero-fade-rgb), .92) 32px,
        rgba(var(--hero-fade-rgb), .5) 76px,
        rgba(var(--hero-fade-rgb), .14) 122px,
        rgba(var(--hero-fade-rgb), 0) 164px
      ),
      linear-gradient(
        180deg,
        rgba(var(--hero-fade-rgb), .62) 0,
        rgba(var(--hero-fade-rgb), .26) 26px,
        rgba(var(--hero-fade-rgb), 0) 58px
      );
  }

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

  .section-copy { padding-top: 0; }

  .piercing-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .piercing-copy {
    padding: 42px 24px 20px;
    order: 2;
  }

  .piercing-title {
    font-size: clamp(40px, 13vw, 64px);
  }

  .piercing-visual {
    min-height: clamp(360px, 104vw, 520px);
    order: 1;
  }

  .piercing-visual::after {
    background:
      linear-gradient(90deg, var(--piercing-bg) 0%, transparent 12%, transparent 88%, var(--piercing-bg) 100%),
      linear-gradient(180deg, var(--piercing-bg) 0%, transparent 16%, transparent 76%, var(--piercing-bg) 100%);
  }

  .care-canvas-frame {
    width: 100%;
    min-height: clamp(230px, 64vw, 310px);
    margin-top: 0;
  }

  .care-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: start;
  }

  .footer-meta {
    flex-wrap: wrap;
    gap: 14px 25px;
  }

  .cookie-consent__panel {
    grid-template-columns: 1fr;
  }

  .cookie-consent__actions {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 520px) {
  .hero h1 { font-size: 52px; }

  .actions { display: grid; }

  .button { width: 100%; }

  .scroll-hint { display: none; }

  .section {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .section-heading {
    padding-left: 0;
    padding-right: 0;
  }

  .section-heading::after {
    left: 0;
  }

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

  .care-promo {
    padding-top: 34px;
    padding-left: 0;
    padding-right: 0;
  }

  .care-copy {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact h2 { font-size: 86px; }

  .contact-options { display: grid; }

  .cookie-consent {
    padding: 10px;
  }

  .cookie-consent__panel {
    max-height: calc(100svh - 20px);
    overflow: auto;
  }

  .cookie-consent__actions .button {
    width: 100%;
    min-width: 0;
  }
}
