:root {
  --ink: #12110f;
  --paper: #f1eee8;
  --paper-dark: #ded9cf;
  --smoke: #8b877f;
  --acid: var(--theme-accent, #d5f04b);
  --accent-text: var(--theme-accent-text, #12110f);
  --facts-text-color: var(--theme-facts-text, #201d24);
  --facts-muted-color: var(--theme-facts-muted, #4e4a53);
  --hero-text-color: var(--theme-hero-text, #ffffff);
  --hero-muted-color: var(--theme-hero-muted, #b9b6af);
  --section-a-text: var(--theme-section-a-text, #12110f);
  --section-a-muted: var(--theme-section-a-muted, #5f5a53);
  --section-b-text: var(--theme-section-b-text, #12110f);
  --section-b-muted: var(--theme-section-b-muted, #69645c);
  --dark-text-color: var(--theme-dark-text, #ffffff);
  --dark-muted-color: var(--theme-dark-muted, #b9b6af);
  --footer-text-color: var(--theme-footer-text, #ffffff);
  --footer-muted-color: var(--theme-footer-muted, #a19e97);
  --line: rgba(18, 17, 15, 0.17);
  --max: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: linear-gradient(
    var(--theme-page-angle, 135deg),
    var(--theme-page-start, #f1eee8),
    var(--theme-page-end, #ded9cf)
  ) fixed;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
::selection { color: var(--ink); background: var(--acid); }

.site-header {
  position: sticky;
  z-index: 20;
  top: 12px;
  left: auto;
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  align-items: center;
  width: min(calc(100% - 64px), var(--max));
  min-height: 82px;
  margin: 12px auto -94px;
  padding: 8px 18px;
  transform: none;
  color: var(--hero-text-color);
  background: linear-gradient(135deg, rgba(18,17,15,.58), rgba(18,17,15,.26));
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
}
.wordmark { display: inline-flex; align-items: flex-end; gap: 8px; line-height: .8; }
.wordmark span { font-family: Georgia, serif; font-size: 25px; letter-spacing: -.07em; }
.wordmark small { color: var(--acid); font-size: 9px; letter-spacing: .24em; }
.logo-link { align-items: center; }
.brand-mark { width: 58px; height: 64px; object-fit: contain; }
.main-nav { display: flex; justify-content: center; gap: clamp(16px, 2.4vw, 38px); }
.main-nav a,
.phone-menu summary { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.main-nav a { position: relative; color: var(--hero-muted-color); transition: color .25s ease; }
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav a:hover { color: var(--hero-text-color); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.phone-menu {
  position: relative;
  justify-self: end;
  color: var(--hero-text-color);
}
.phone-menu summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  color: var(--hero-text-color);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  list-style: none;
  cursor: pointer;
}
.phone-menu summary::-webkit-details-marker { display: none; }
.phone-menu summary::after { content: "⌄"; color: var(--acid); font-size: 13px; line-height: 1; }
.phone-menu[open] summary::after { transform: rotate(180deg); }
.phone-menu div {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 220px;
  padding: 9px;
  background: linear-gradient(135deg, rgba(18,17,15,.82), rgba(18,17,15,.58));
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(0,0,0,.34);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}
.phone-menu a {
  padding: 12px 14px;
  color: var(--hero-text-color);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  white-space: nowrap;
}
.phone-menu a:hover { color: var(--accent-text); background: var(--acid); }
.menu-button { display: none; }

.hero {
  display: grid;
  grid-template-columns: 53% 47%;
  height: clamp(760px, 88vh, 920px);
  height: clamp(760px, 88svh, 920px);
  min-height: 760px;
  overflow: hidden;
  color: var(--hero-text-color);
  background: linear-gradient(
    var(--theme-hero-angle, 120deg),
    var(--theme-hero-start, #12110f),
    var(--theme-hero-end, #201d18)
  );
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 118px clamp(40px, 3.5vw, 70px) 52px max(38px, calc((100vw - var(--max)) / 2));
}
.hero-logo {
  width: min(660px, 100%);
  max-height: 225px;
  align-self: center;
  margin: 0 0 16px;
  object-fit: contain;
  object-position: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.hero .eyebrow { color: var(--acid); }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 4.8vw, 94px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.075em;
}
.hero h1 em {
  display: block;
  color: var(--acid);
  font-weight: 400;
}
.hero-text { max-width: 570px; margin: 28px 0 0; color: var(--hero-muted-color); font-size: clamp(15px, 1vw, 18px); }
.hero-actions { display: flex; align-items: center; gap: 18px; margin-top: 30px; }
.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 27px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--accent-text); background: var(--acid); }
.button-primary:hover { background: #e5ff66; }
.button-quiet { gap: 16px; color: var(--hero-text-color); border-color: currentColor; }
.button-quiet:hover { color: var(--ink); background: #fff; }
.button-quiet span { font-size: 18px; }
.hero-visual { position: relative; min-height: 0; overflow: hidden; }
.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,17,15,.36), transparent 40%), linear-gradient(0deg, rgba(18,17,15,.35), transparent 42%);
}
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.06); }
.hero-stamp {
  position: absolute;
  z-index: 2;
  right: 44px;
  bottom: 46px;
  width: 188px;
  height: 188px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 50%;
  backdrop-filter: blur(7px);
  transform: rotate(-8deg);
}
.hero-stamp span { font-family: Georgia, serif; font-size: 34px; letter-spacing: -.06em; color: red; }
.hero-stamp small { display: block; margin-top: 7px; color: white; font-size: 8px; letter-spacing: .16em; }
.vertical-note {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 19px;
  margin: 0;
  font-size: 8px;
  letter-spacing: .35em;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.facts {
  position: relative;
  z-index: 6;
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  width: auto;
  max-width: min(calc(100% - 64px), var(--max));
  margin: -54px auto;
  left: 50%;
  overflow: visible;
  color: var(--facts-text-color);
  background: linear-gradient(
    var(--theme-facts-angle, 135deg),
    var(--theme-facts-start, #ffffff),
    var(--theme-facts-end, #ffffff)
  );
  border: 1px solid rgba(18,17,15,.08);
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(18,17,15,.2);
  transform: translateX(-50%);
  isolation: isolate;
}
.facts::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: calc(50% + 72px);
  transform: translateX(-50%);
  background: linear-gradient(
    var(--theme-section-a-angle, 135deg),
    var(--theme-section-a-start, #f1eee8),
    var(--theme-section-a-end, #e5dfd5)
  );
}
.facts::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: inherit;
  border-radius: inherit;
}
.facts div { display: flex; min-width: 0; min-height: 108px; align-items: center; gap: 18px; padding: 22px 34px; }
.facts div + div { border-left: 1px solid rgba(18,17,15,.12); }
.facts strong { flex: 0 0 auto; color: var(--facts-text-color); font-family: Georgia, serif; font-size: 40px; font-weight: 400; letter-spacing: -.06em; }
.facts span { max-width: 150px; color: var(--facts-muted-color); font-size: 10px; font-weight: 800; line-height: 1.25; letter-spacing: .07em; text-transform: uppercase; }

.section { width: min(calc(100% - 64px), var(--max)); margin: 0 auto; padding: clamp(64px, 4vw, 88px) 0; }
.about,
.artists,
.faq {
  position: relative;
  isolation: isolate;
  color: var(--section-a-text);
}
.about::before,
.artists::before,
.faq::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(
    var(--theme-section-a-angle, 135deg),
    var(--theme-section-a-start, #f1eee8),
    var(--theme-section-a-end, #e5dfd5)
  );
}
.services,
.prices {
  position: relative;
  isolation: isolate;
  color: var(--section-b-text);
}
.services::before,
.prices::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(
    var(--theme-section-b-angle, 135deg),
    var(--theme-section-b-start, #ded9cf),
    var(--theme-section-b-end, #f5f2ec)
  );
}
.section-heading h2,
.contact h2 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(48px, 6vw, 91px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.065em;
}
.about { display: grid; grid-template-columns: 46% 54%; gap: 5%; padding-top: clamp(118px, 7vw, 142px); }
.about-copy { max-width: 660px; padding-top: 42px; font-size: 18px; }
.about-copy > p { margin: 0 0 24px; color: var(--section-a-muted); }
.sterile-note { display: flex; align-items: center; gap: 20px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.sterile-note span { display: grid; width: 48px; height: 48px; flex: 0 0 auto; place-items: center; color: var(--acid); background: var(--ink); border-radius: 50%; }
.sterile-note p { margin: 0; font-size: 14px; }

.services { border-top: 1px solid var(--line); }
.row-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; }
.row-heading > p { max-width: 430px; margin: 0 0 8px; color: var(--section-b-muted); }
.artists .row-heading > p { color: var(--section-a-muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 54px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { position: relative; min-height: 390px; padding: 40px; border-right: 1px solid var(--line); transition: color .3s ease, background .3s ease; }
.service-card:last-child { border: 0; }
.service-card:hover { color: #fff; background: var(--ink); }
.service-number { font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.service-card h3 { max-width: 270px; margin: 100px 0 22px; font-family: Georgia, serif; font-size: 36px; font-weight: 400; line-height: 1; letter-spacing: -.04em; }
.service-card p { max-width: 330px; color: var(--section-b-muted); }
.service-card:hover p { color: rgba(255,255,255,.66); }
.service-card small { position: absolute; bottom: 38px; color: var(--section-b-muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.service-card:hover small { color: var(--acid); }

.artists { padding-top: 40px; }
.artist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 52px; }
.artist-grid.single-artist { grid-template-columns: minmax(0, 900px); justify-content: center; }
.artist-card { display: grid; grid-template-columns: 53% 47%; background: var(--paper-dark); overflow: hidden; }
.artist-image { position: relative; display: block; min-height: 600px; overflow: hidden; }
.artist-image img { width: 100%; height: 100%; object-fit: cover; filter: none; transition: transform .6s ease; }
.artist-image:hover img,
.artist-card:hover .artist-image img { transform: scale(1.035); }
.artist-card > div:last-child { display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; }
.artist-card h3 { margin: 0; font-family: Georgia, serif; font-size: 55px; font-weight: 400; letter-spacing: -.06em; }
.artist-role { margin: 7px 0 22px !important; color: var(--section-a-muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.artist-card p { color: var(--section-a-muted); }
.artist-card > div:last-child > a { display: flex; justify-content: space-between; margin-top: 48px; padding-top: 19px; border-top: 1px solid var(--line); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.artist-card > div:last-child > a span { font-size: 18px; }

.gallery-section {
  padding: clamp(64px, 4vw, 88px) 0 0;
  color: var(--dark-text-color);
  background: linear-gradient(
    var(--theme-dark-angle, 135deg),
    var(--theme-dark-start, #12110f),
    var(--theme-dark-end, #29251e)
  );
}
.gallery-heading { display: block; padding-top: 0; padding-bottom: 48px; }
.gallery-heading h2 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(48px, 6vw, 91px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.065em;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(260px, 18vw, 360px);
  gap: 10px;
  width: min(1480px, calc(100% - 64px));
  margin: 0 auto;
  padding-bottom: clamp(54px, 5vw, 92px);
}
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; background: #25231f; border-radius: 18px; }
.gallery-grid figure.gallery-tall { grid-row: span 1; }
.lightbox-trigger { display: block; width: 100%; height: 100%; padding: 0; color: inherit; background: transparent; border: 0; cursor: zoom-in; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1); transition: transform .55s ease, filter .4s ease; }
.gallery-grid figure:hover img { transform: scale(1.045); filter: saturate(1.06); }
.gallery-grid figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-between; padding: 40px 20px 18px; background: linear-gradient(transparent, rgba(0,0,0,.72)); opacity: 0; transform: translateY(8px); transition: .3s ease; pointer-events: none; }
.gallery-grid figure:hover figcaption { opacity: 1; transform: none; }
.gallery-grid figcaption span, .gallery-grid figcaption strong { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.gallery-grid figcaption strong { color: var(--acid); }

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 4, 4, .82);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.image-lightbox.is-open { opacity: 1; pointer-events: auto; }
.image-lightbox__frame {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 1500px);
  height: min(100%, 88vh);
  height: min(100%, 88svh);
}
.image-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 34px 100px rgba(0,0,0,.55);
}
.image-lightbox__close {
  position: absolute;
  top: -12px;
  right: -12px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: rgba(18, 17, 15, .72);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.prices { padding-bottom: 80px; }
.price-list { margin-top: 52px; border-top: 1px solid var(--line); }
.price-list article { display: grid; grid-template-columns: 60px 1.2fr 1.6fr .6fr; align-items: center; gap: 20px; min-height: 130px; border-bottom: 1px solid var(--line); }
.price-list article > span { font-size: 10px; font-weight: 800; }
.price-list h3 { margin: 0; font-family: Georgia, serif; font-size: 29px; font-weight: 400; }
.price-list p { max-width: 490px; color: var(--section-b-muted); }
.price-list strong { justify-self: end; font-size: 18px; text-align: right; }

.faq { display: grid; grid-template-columns: 40% 60%; gap: 6%; padding-top: 80px; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); overflow: clip; }
.faq summary { display: grid; grid-template-columns: 44px 1fr 30px; align-items: center; min-height: 84px; list-style: none; font-weight: 700; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--section-a-muted); font-size: 10px; }
.faq summary i { font-size: 24px; font-style: normal; font-weight: 300; transition: transform .25s ease; }
.faq details[open] summary i { transform: rotate(45deg); }
.faq details p { margin: -6px 30px 28px 44px; color: var(--section-a-muted); will-change: opacity, transform; }

.contact {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  color: var(--dark-text-color);
  background: linear-gradient(
    var(--theme-dark-angle, 135deg),
    var(--theme-dark-start, #12110f),
    var(--theme-dark-end, #29251e)
  );
}
.contact-copy {
  padding: 88px clamp(42px, 6vw, 110px) 88px max(32px, calc((100vw - var(--max)) / 2));
}
.contact-copy > p:not(.eyebrow) { max-width: 600px; margin: 28px 0 0; color: var(--dark-muted-color); }
.contact .eyebrow { color: var(--acid); }
.contact-lines { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 42px; }
.contact-lines a { font-family: Georgia, serif; font-size: clamp(24px, 2.6vw, 39px); line-height: 1.1; letter-spacing: -.04em; }
.contact address { display: flex; flex-direction: column; margin-top: 46px; color: var(--dark-muted-color); font-size: 14px; font-style: normal; }
.contact address strong { color: var(--dark-text-color); font-size: 18px; }
.contact-showcase {
  position: relative;
  display: flex;
  min-height: 580px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 88px max(32px, calc((100vw - var(--max)) / 2)) 88px clamp(42px, 6vw, 110px);
  color: var(--accent-text);
  background: var(--acid);
}
.contact-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background:
    repeating-linear-gradient(125deg, transparent 0 30px, rgba(18,17,15,.18) 31px 32px),
    radial-gradient(circle at 80% 18%, rgba(255,255,255,.8), transparent 28%);
}
.contact-showcase > img {
  position: absolute;
  top: 50px;
  right: 7%;
  width: min(520px, 78%);
  max-height: 260px;
  object-fit: contain;
  opacity: .2;
  filter: grayscale(1) contrast(1.6);
}
.contact-showcase blockquote {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  margin: 0 0 48px;
  font: 400 clamp(38px, 4.4vw, 68px)/.98 Georgia, serif;
  letter-spacing: -.055em;
}
.contact-showcase-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 22px;
  border-top: 1px solid rgba(18,17,15,.3);
}
.contact-showcase-meta strong,
.contact-showcase-meta a { font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: start;
  gap: 50px;
  padding: 58px max(32px, calc((100vw - var(--max)) / 2)) 24px;
  color: var(--footer-text-color);
  background: linear-gradient(
    var(--theme-footer-angle, 120deg),
    var(--theme-footer-start, #090908),
    var(--theme-footer-end, #211b14)
  );
  border-top: 1px solid rgba(255,255,255,.14);
}
.footer-mark { color: var(--footer-text-color); }
.footer-mark .brand-mark { width: 52px; height: 58px; }
.footer-brand p { max-width: 260px; margin: 22px 0 0; color: var(--footer-muted-color); font-size: 12px; }
.footer-nav, .footer-socials { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-nav a, .footer-socials a, .footer-bottom a {
  color: var(--footer-muted-color);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-nav a:hover, .footer-socials a:hover, .footer-bottom a:hover { color: var(--acid); }
.footer-bottom {
  grid-column: 1 / -1;
  display: block;
  margin-top: 26px;
  padding-top: 24px;
  color: var(--footer-muted-color);
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 10px;
}
.back-to-top {
  position: fixed;
  z-index: 50;
  right: clamp(18px, 2vw, 34px);
  bottom: clamp(18px, 2vw, 34px);
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  color: var(--hero-text-color);
  background: linear-gradient(135deg, rgba(18,17,15,.62), rgba(18,17,15,.28));
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(0,0,0,.28);
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
}
.back-to-top span { font-size: 17px; line-height: 1; }
.back-to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover { color: var(--accent-text); background: var(--acid); border-color: transparent; }

.chat-widget {
  position: fixed;
  z-index: 58;
  left: clamp(18px, 2vw, 34px);
  bottom: clamp(18px, 2vw, 34px);
}
.chat-toggle {
  display: inline-flex;
  min-height: 68px;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  color: var(--hero-text-color);
  background: linear-gradient(135deg, rgba(18,17,15,.66), rgba(18,17,15,.32));
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(0,0,0,.28);
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
}
.chat-toggle span { color: var(--acid); font-size: 15px; }
.chat-toggle:hover { color: var(--accent-text); background: var(--acid); border-color: transparent; }
.chat-toggle:hover span { color: var(--accent-text); }
.chat-panel {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 0;
  display: none;
  width: min(360px, calc(100vw - 36px));
  overflow: hidden;
  color: var(--hero-text-color);
  background: rgba(8,8,7,.94);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
  backdrop-filter: blur(20px) saturate(1.18);
  -webkit-backdrop-filter: blur(20px) saturate(1.18);
}
.chat-widget.is-open .chat-panel { display: block; }
.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.chat-head strong { display: block; font-family: Georgia, serif; font-size: 23px; font-weight: 400; letter-spacing: -.04em; }
.chat-head span { color: var(--acid); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.chat-head button {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  cursor: pointer;
}
.chat-messages {
  display: flex;
  max-height: 310px;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 16px 18px;
}
.chat-messages p,
.chat-bubble {
  max-width: 86%;
  margin: 0;
  padding: 11px 13px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.4;
}
.chat-bubble.visitor {
  align-self: flex-end;
  color: var(--accent-text);
  background: var(--acid);
  border-color: transparent;
}
.chat-bubble.studio { align-self: flex-start; }
.chat-form {
  display: grid;
  gap: 9px;
  padding: 0 18px 18px;
}
.chat-form input,
.chat-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: #fff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  outline: 0;
  resize: none;
}
.chat-form input:focus,
.chat-form textarea:focus { border-color: var(--acid); }
.chat-form button {
  min-height: 46px;
  color: var(--accent-text);
  background: var(--acid);
  border: 0;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
}
.chat-form button:disabled { opacity: .6; cursor: default; }

@media (min-width: 2400px) {
  :root { --max: 1760px; }
  .site-header { min-height: 94px; margin-bottom: -106px; }
  .brand-mark { width: 68px; height: 76px; }
  .hero {
    grid-template-columns: 52% 48%;
    height: clamp(900px, 58vh, 1120px);
    height: clamp(900px, 58svh, 1120px);
    min-height: 900px;
  }
  .hero-copy { padding-top: 145px; padding-bottom: 70px; }
  .hero-logo { width: min(760px, 100%); max-height: 270px; }
  .hero h1 { font-size: clamp(88px, 3.4vw, 112px); }
  .hero-text { max-width: 680px; font-size: 19px; }
  .facts div { min-height: 122px; }
  .about { padding-top: 158px; }
  .section { padding-top: 96px; padding-bottom: 96px; }
  .gallery-section { padding-top: 96px; }
  .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: clamp(300px, 16vw, 390px); width: min(1620px, calc(100% - 96px)); }
}

@media (max-width: 1600px) {
  .hero {
    height: clamp(720px, 90vh, 840px);
    height: clamp(720px, 90svh, 840px);
    min-height: 720px;
  }
  .hero-copy { padding-top: 102px; padding-bottom: 38px; }
  .hero-logo { width: min(560px, 96%); max-height: 180px; margin-bottom: 12px; }
  .hero h1 { font-size: clamp(58px, 5vw, 78px); }
  .hero-text { margin-top: 22px; }
  .hero-actions { margin-top: 24px; }
  .facts div { min-height: 112px; }
  .section { padding-top: 72px; padding-bottom: 72px; }
  .about { padding-top: 126px; }
}

@media (min-width: 901px) and (max-height: 800px) {
  .hero { height: 720px; min-height: 720px; }
  .hero-copy { padding-top: 94px; padding-bottom: 28px; }
  .hero-logo { max-height: 150px; }
  .hero h1 { font-size: clamp(56px, 4.7vw, 72px); }
  .hero-text { margin-top: 18px; }
  .hero-actions { margin-top: 20px; }
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 160px 1fr 160px; width: calc(100% - 40px); }
  .main-nav { gap: 13px; }
  .main-nav a { font-size: 10px; }
  .phone-menu summary { padding: 0 12px; font-size: 10px; }
  .hero { grid-template-columns: 58% 42%; min-height: 720px; }
  .hero-copy { padding-right: 34px; padding-left: 32px; }
  .facts { max-width: calc(100% - 40px); }
  .facts div { padding: 22px; }
  .section { width: calc(100% - 40px); }
  .artist-card { grid-template-columns: 1fr; }
  .artist-image { min-height: 460px; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); width: calc(100% - 40px); }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr 52px 52px; column-gap: 8px; width: calc(100% - 28px); min-height: 70px; margin: 10px auto -80px; padding: 8px 12px; border-radius: 24px; }
  .site-header .brand-mark { width: 54px; height: 58px; }
  .phone-menu { position: static; }
  .phone-menu summary { width: 50px; min-height: 50px; justify-content: center; padding: 0; font-size: 0; }
  .phone-menu summary::before { content: "☎"; font-size: 17px; }
  .phone-menu summary::after { font-size: 12px; }
  .phone-menu div {
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    min-width: 0;
    padding: 10px;
    border-radius: 22px;
    background: rgba(5,5,5,.94);
  }
  .phone-menu a {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    margin: 0 0 8px;
    color: #fff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    font-size: 18px;
    letter-spacing: .04em;
  }
  .phone-menu a:last-child { margin-bottom: 0; }
  .menu-button { display: flex; width: 50px; height: 50px; flex-direction: column; align-items: center; justify-content: center; gap: 7px; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
  .menu-button i { width: 18px; height: 1px; background: currentColor; }
  .main-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    color: #fff;
    background: rgba(5,5,5,.94);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 22px;
    backdrop-filter: blur(18px) saturate(1.22);
    -webkit-backdrop-filter: blur(18px) saturate(1.22);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 14px;
    color: #fff;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 15px;
    font-size: 13px;
  }
  .main-nav a::after { display: none; }
  .hero { grid-template-columns: 1fr; height: auto; min-height: 0; overflow: visible; }
  .hero-copy { min-height: 660px; padding: 108px 28px 58px; }
  .hero h1 { font-size: clamp(58px, 12vw, 82px); }
  .hero-logo { width: min(520px, 94%); max-height: 190px; margin-bottom: 20px; }
  .hero-text { margin-top: 30px; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-visual { min-height: clamp(440px, 68vh, 620px); min-height: clamp(440px, 68svh, 620px); }
  .hero-stamp { right: 20px; bottom: 20px; width: 142px; height: 142px; }
  .hero-stamp span { font-size: 27px; }
  .facts {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    width: calc(100% - 24px);
    max-width: none;
    margin: -48px auto;
  }
  .facts::before { width: 100%; }
  .facts div { min-height: 96px; }
  .facts strong { font-size: 34px; }
  .section { width: calc(100% - 36px); padding: 72px 0; }
  .section-heading h2, .contact h2 { font-size: 51px; }
  .about { grid-template-columns: 1fr; gap: 0; padding-top: 118px; }
  .about-copy { padding-top: 38px; font-size: 16px; }
  .row-heading { align-items: flex-start; flex-direction: column; gap: 22px; }
  .service-grid { grid-template-columns: 1fr; margin-top: 46px; }
  .service-card { min-height: 330px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card h3 { margin-top: 66px; }
  .artists { padding-top: 20px; }
  .artist-grid { grid-template-columns: 1fr; gap: 22px; margin-top: 45px; }
  .artist-image { min-height: 500px; }
  .artist-card > div:last-child { padding: 30px; }
  .gallery-section { padding-top: 72px; }
  .gallery-heading { padding-bottom: 42px; }
  .gallery-heading h2 { font-size: clamp(52px, 13vw, 82px); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; width: calc(100% - 36px); gap: 8px; }
  .gallery-grid figure.gallery-tall { grid-row: span 1; }
  .gallery-grid figcaption { opacity: 1; transform: none; }
  .price-list article { grid-template-columns: 38px 1fr auto; gap: 10px; padding: 22px 0; }
  .price-list p { grid-column: 2 / -1; margin: 0; }
  .price-list h3 { font-size: 23px; }
  .price-list strong { font-size: 14px; }
  .faq { grid-template-columns: 1fr; gap: 44px; }
  .faq summary { grid-template-columns: 34px 1fr 24px; }
  .faq details p { margin-left: 34px; }
  .contact { grid-template-columns: 1fr; }
  .contact-copy, .contact-showcase { padding: 68px 24px; }
  .contact-showcase { min-height: 520px; }
  .contact-showcase > img { top: 35px; right: 4%; width: 88%; }
  .site-footer { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 24px; }
  .back-to-top { right: 14px; bottom: 14px; min-height: 44px; padding: 0 15px; }
  .chat-widget { left: 14px; bottom: 14px; }
  .chat-toggle { min-height: 44px; padding: 0 16px; }
}

@media (max-width: 600px) {
  .brand-mark { width: 48px; height: 52px; }
  .hero-copy { min-height: 600px; padding: 96px 18px 48px; }
  .hero-logo { width: min(430px, 100%); max-height: 150px; margin-bottom: 16px; }
  .hero h1 { font-size: clamp(50px, 16vw, 70px); }
  .hero-text { margin-top: 24px; }
  .hero-actions { gap: 12px; margin-top: 24px; }
  .hero-visual { min-height: clamp(400px, 62vh, 520px); min-height: clamp(400px, 62svh, 520px); }
  .facts { left: auto; grid-template-columns: 1fr 1fr; width: calc(100% - 32px); margin: -34px auto; border-radius: 16px; transform: none; }
  .facts div { min-height: 76px; align-items: flex-start; flex-direction: column; gap: 4px; padding: 12px 14px; }
  .facts div:nth-child(odd) { border-left: 0; }
  .facts div:nth-child(n + 3) { border-top: 1px solid rgba(18,17,15,.12); }
  .facts div:last-child:nth-child(odd) { grid-column: 1 / -1; align-items: center; justify-content: center; flex-direction: row; gap: 16px; padding-right: 20px; padding-left: 20px; }
  .facts strong { font-size: 28px; line-height: .95; }
  .facts span { max-width: 140px; font-size: 8px; }
  .about::before,
  .artists::before,
  .faq::before,
  .services::before,
  .prices::before {
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    transform: translateX(-50%);
  }
  .section { width: calc(100% - 36px); padding: 62px 0; }
  .about { padding-top: 110px; }
  .section-heading h2, .contact h2 { font-size: clamp(43px, 13vw, 54px); }
  .service-card { min-height: 300px; padding: 28px 22px; }
  .artist-image { min-height: 420px; }
  .gallery-grid { grid-auto-rows: 225px; }
  .contact-lines a { overflow-wrap: anywhere; font-size: clamp(22px, 7vw, 32px); }
  .contact-showcase blockquote { font-size: clamp(38px, 12vw, 54px); }
  .chat-widget { right: 14px; }
  .chat-panel { width: calc(100vw - 28px); }
}

@media (max-width: 420px) {
  .facts { width: calc(100% - 28px); }
  .facts span { max-width: 118px; letter-spacing: .055em; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 390px; width: calc(100% - 28px); }
  .price-list article { grid-template-columns: 30px 1fr; }
  .price-list strong, .price-list p { grid-column: 2; justify-self: start; text-align: left; }
}

/* Separate artist portfolio */
.portfolio-page {
  color: var(--dark-text-color);
  background: linear-gradient(
    var(--theme-dark-angle, 135deg),
    var(--theme-dark-start, #12110f),
    var(--theme-dark-end, #29251e)
  );
}
.portfolio-page .back-to-top { right: clamp(18px, 2vw, 34px); }
.portfolio-header {
  width: min(calc(100% - 64px), var(--max));
  margin: 12px auto -94px;
}
.portfolio-header .main-nav { justify-content: flex-end; }
.portfolio-hero {
  position: relative;
  display: grid;
  grid-template-columns: 56% 44%;
  height: clamp(680px, 76vh, 820px);
  height: clamp(680px, 76svh, 820px);
  min-height: 680px;
  overflow: hidden;
  background: linear-gradient(
    var(--theme-hero-angle, 120deg),
    var(--theme-hero-start, #12110f),
    var(--theme-hero-end, #201d18)
  );
}
.portfolio-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 90px;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(0,0,0,.42));
}
.portfolio-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 58px clamp(42px, 5vw, 96px) 58px max(32px, calc((100vw - var(--max)) / 2));
}
.portfolio-hero-copy .hero-logo {
  width: min(760px, 100%);
  max-height: 285px;
  align-self: flex-start;
  margin-bottom: 30px;
}
.portfolio-hero-copy .eyebrow { color: var(--acid); }
.portfolio-hero-copy h1 {
  margin: 0;
  font: 400 clamp(70px, 7vw, 116px)/.85 Georgia, serif;
  letter-spacing: -.075em;
}
.portfolio-hero-copy > p:last-child { max-width: 560px; margin: 26px 0 0; color: var(--hero-muted-color); font-size: 18px; }
.portfolio-master-image {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  min-height: 0;
  place-items: center;
  padding: clamp(34px, 4vw, 68px);
  overflow: hidden;
  background: transparent;
}
.portfolio-master-image img {
  width: auto;
  max-width: min(100%, 620px);
  height: auto;
  max-height: min(100%, 700px);
  object-fit: contain;
  object-position: center;
  filter: saturate(.78) contrast(1.04);
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}
.portfolio-back-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--hero-muted-color);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.portfolio-back-link:hover { color: var(--acid); }
.portfolio-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 78px;
  padding-bottom: 44px;
}
.portfolio-intro h2 { max-width: 900px; margin: 0; font: 400 clamp(48px, 6vw, 90px)/.94 Georgia, serif; letter-spacing: -.06em; }
.portfolio-intro a { flex: 0 0 auto; color: var(--acid); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.artist-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 420px;
}
.artist-portfolio-grid figure { margin: 0; overflow: hidden; background: #24221e; }
.artist-portfolio-grid figure:nth-child(7n + 1) { grid-row: span 2; }
.artist-portfolio-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .4s ease; }
.artist-portfolio-grid figure:hover img { transform: scale(1.035); filter: saturate(1.08); }
.portfolio-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 52px max(32px, calc((100vw - var(--max)) / 2));
  color: var(--footer-text-color);
  background: linear-gradient(
    var(--theme-footer-angle, 120deg),
    var(--theme-footer-start, #090908),
    var(--theme-footer-end, #211b14)
  );
  border-top: 1px solid rgba(255,255,255,.14);
}
.portfolio-footer p { color: var(--footer-muted-color); }
.portfolio-footer > a:last-child { color: var(--acid); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

@media (min-width: 901px) and (max-width: 1600px) {
  .portfolio-hero {
    height: clamp(640px, 80vh, 740px);
    height: clamp(640px, 80svh, 740px);
    min-height: 640px;
  }
  .portfolio-hero-copy { padding-top: 42px; padding-bottom: 42px; }
  .portfolio-hero-copy .hero-logo { max-height: 215px; margin-bottom: 22px; }
  .portfolio-hero-copy h1 { font-size: clamp(66px, 7vw, 96px); }
  .portfolio-master-image { padding: 30px; }
  .portfolio-master-image img { max-width: min(100%, 520px); max-height: min(100%, 620px); }
}

@media (max-width: 1000px) {
  .artist-portfolio-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 360px; }
}
@media (max-width: 900px) {
  .portfolio-header { width: calc(100% - 36px); }
  .portfolio-header .main-nav { justify-content: flex-start; }
  .portfolio-hero { grid-template-columns: 1fr; height: auto; min-height: 0; overflow: visible; }
  .portfolio-hero-copy { min-height: 560px; padding: 54px 28px; }
  .portfolio-hero-copy .hero-logo { width: min(600px, 100%); max-height: 220px; align-self: center; margin-bottom: 28px; }
  .portfolio-master-image { height: clamp(520px, 70vh, 680px); height: clamp(520px, 70svh, 680px); padding: 32px; }
  .portfolio-master-image img { max-width: min(100%, 500px); max-height: 100%; }
  .portfolio-intro { align-items: flex-start; flex-direction: column; padding-top: 80px; }
  .artist-portfolio-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 300px; }
  .artist-portfolio-grid figure:nth-child(7n + 1) { grid-row: span 1; }
  .portfolio-footer { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .portfolio-hero-copy { min-height: 500px; padding: 44px 18px; }
  .portfolio-hero-copy .hero-logo { width: 100%; max-height: 170px; margin-bottom: 22px; }
  .portfolio-master-image { height: 500px; min-height: 0; padding: 18px; }
  .portfolio-master-image img { max-width: min(100%, 390px); max-height: 100%; }
  .portfolio-intro { padding-top: 62px; padding-bottom: 38px; }
  .artist-portfolio-grid { grid-auto-rows: 250px; }
  .portfolio-footer { padding: 42px 18px; }
}

@media (max-width: 420px) {
  .artist-portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 430px; }
}

@media (min-width: 2400px) {
  .portfolio-hero { height: 980px; min-height: 980px; }
  .portfolio-hero-copy .hero-logo { width: min(820px, 100%); max-height: 315px; }
  .portfolio-master-image img { max-width: min(100%, 680px); max-height: min(100%, 840px); }
  .artist-portfolio-grid { grid-template-columns: repeat(5, 1fr); grid-auto-rows: 470px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Admin */
.admin-shell {
  min-height: 100vh;
  color: #e8e6e1;
  background: #11110f;
}
.admin-center { display: grid; place-items: center; padding: 24px; }
.login-card {
  width: min(100%, 430px);
  padding: 48px;
  background: #1b1b18;
  border: 1px solid rgba(255,255,255,.12);
}
.admin-logo { font-family: Georgia, serif; font-size: 24px; letter-spacing: -.05em; }
.admin-logo span { margin-left: 5px; color: var(--acid); font: 700 9px Arial; letter-spacing: .18em; }
.login-card > p { margin: 15px 0 35px; color: #8b8a84; }
.login-card label { display: flex; flex-direction: column; gap: 8px; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.login-card input { padding: 15px; color: #fff; background: #11110f; border: 1px solid rgba(255,255,255,.2); outline: 0; }
.login-card input:focus { border-color: var(--acid); }
.login-card button, .save-area button {
  width: 100%;
  margin-top: 18px;
  padding: 15px;
  color: #11110f;
  background: var(--acid);
  border: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.login-card button:disabled, .save-area button:disabled { opacity: .45; cursor: default; }
.back-link { display: inline-block; margin-top: 26px; color: #888780; font-size: 12px; }
.admin-message { margin-top: 15px; font-size: 12px; }
.admin-message.error { color: #ff8d82; }
.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 10;
  display: flex;
  width: 245px;
  flex-direction: column;
  padding: 34px 26px;
  background: #0a0a09;
  border-right: 1px solid rgba(255,255,255,.08);
}
.admin-sidebar nav { display: flex; flex-direction: column; gap: 2px; margin: 52px -10px 0; }
.admin-sidebar nav a { display: flex; justify-content: space-between; padding: 10px; color: #8c8b85; font-size: 12px; border-radius: 5px; }
.admin-sidebar nav a:hover { color: #fff; background: #1a1a17; }
.admin-sidebar nav b { display: grid; min-width: 22px; height: 22px; place-items: center; color: #11110f; background: var(--acid); border-radius: 50%; font-size: 9px; }
.view-site { margin-top: auto; padding: 13px; color: var(--acid); border: 1px solid rgba(213,240,75,.3); text-align: center; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.logout { margin-top: 10px; padding: 12px; color: #77766f; background: transparent; border: 0; cursor: pointer; }
.admin-workspace { margin-left: 245px; min-height: 100vh; padding: 36px 42px 100px; }
.admin-topbar {
  position: sticky;
  z-index: 9;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -36px -42px 38px;
  padding: 24px 42px;
  background: rgba(17,17,15,.94);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(12px);
}
.admin-topbar p { margin: 0; color: #77766f; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.admin-topbar h1 { margin: 2px 0 0; font: 400 28px Georgia, serif; }
.save-area { display: flex; align-items: center; gap: 14px; }
.save-area span, .save-area i { color: #a7a69f; font-size: 11px; font-style: normal; }
.save-area i { color: #f0be4b; }
.save-area button { width: auto; min-width: 155px; margin: 0; }
.admin-panel {
  max-width: 1280px;
  margin: 0 auto 28px;
  padding: 36px;
  background: #1a1a17;
  border: 1px solid rgba(255,255,255,.08);
  scroll-margin-top: 120px;
}
.panel-title { display: flex; gap: 20px; margin-bottom: 35px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.09); }
.panel-title > span { display: grid; width: 35px; height: 35px; flex: 0 0 auto; place-items: center; color: #11110f; background: var(--acid); border-radius: 50%; font-size: 10px; font-weight: 800; }
.panel-title h2 { margin: 0; font: 400 29px Georgia, serif; }
.panel-title p { margin: 3px 0 0; color: #898881; font-size: 13px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.admin-field { display: flex; min-width: 0; flex-direction: column; gap: 7px; }
.admin-field > span, .upload-control {
  color: #94928b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.admin-field input, .admin-field textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 13px;
  color: #eee;
  background: #11110f;
  border: 1px solid rgba(255,255,255,.11);
  outline: 0;
  resize: vertical;
}
.admin-field input:focus, .admin-field textarea:focus { border-color: var(--acid); }
.theme-editor {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.gradient-editor {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 18px;
  background: #141412;
  border: 1px solid rgba(255,255,255,.08);
}
.gradient-editor h4 { margin: 0 0 3px; font: 400 19px Georgia, serif; }
.gradient-preview {
  height: 76px;
  margin: 0 0 4px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.14);
}
.gradient-actions { display: flex; flex-wrap: wrap; gap: 7px; }
.gradient-actions button {
  padding: 7px 9px;
  color: #bdbbb4;
  background: #11110f;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
}
.gradient-actions button:hover { color: var(--acid); border-color: var(--acid); }
.accent-editor { border-color: color-mix(in srgb, var(--acid) 38%, transparent); }
.admin-color-field,
.admin-angle-field { display: flex; flex-direction: column; gap: 7px; }
.admin-color-field > span:first-child,
.admin-angle-field > span:first-child {
  color: #94928b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.color-controls { display: grid; grid-template-columns: 50px 1fr; gap: 8px; }
.color-controls input[type="color"] {
  width: 50px;
  height: 42px;
  padding: 3px;
  background: #11110f;
  border: 1px solid rgba(255,255,255,.12);
  cursor: pointer;
}
.color-controls input[type="text"] {
  min-width: 0;
  padding: 10px;
  color: #eee;
  background: #11110f;
  border: 1px solid rgba(255,255,255,.11);
}
.admin-angle-field { display: grid; grid-template-columns: 1fr auto; }
.admin-angle-field input { grid-column: 1 / -1; width: 100%; accent-color: var(--acid); }
.admin-angle-field strong { color: var(--acid); font-size: 11px; }
.admin-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  padding: 17px;
  background: #141412;
  border: 1px solid rgba(255,255,255,.09);
  cursor: pointer;
}
.admin-toggle > input { position: absolute; opacity: 0; pointer-events: none; }
.toggle-control {
  position: relative;
  width: 48px;
  height: 26px;
  flex: 0 0 auto;
  background: #393832;
  border-radius: 999px;
  transition: background .2s ease;
}
.toggle-control::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  background: #aaa79e;
  border-radius: 50%;
  transition: transform .2s ease, background .2s ease;
}
.admin-toggle > input:checked + .toggle-control { background: var(--acid); }
.admin-toggle > input:checked + .toggle-control::after { background: #11110f; transform: translateX(22px); }
.toggle-copy { display: flex; flex-direction: column; }
.toggle-copy strong { color: #e8e6e1; font-size: 12px; }
.toggle-copy small { color: #807f78; font-size: 11px; }
.subheading { margin: 38px 0 16px; color: #b5b3ad; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.repeater { display: flex; flex-direction: column; gap: 14px; }
.repeat-row { position: relative; display: grid; grid-template-columns: 1fr 1fr 32px; gap: 14px; padding: 16px; background: #141412; border: 1px solid rgba(255,255,255,.07); }
.repeat-row.wide { grid-template-columns: 1fr 32px; }
.repeat-row.faq-editor { grid-template-columns: .8fr 1.2fr 32px; }
.remove { width: 30px; height: 30px; color: #ff8d82; background: transparent; border: 1px solid rgba(255,141,130,.25); border-radius: 50%; cursor: pointer; }
.add { align-self: flex-start; padding: 11px 16px; color: var(--acid); background: transparent; border: 1px dashed rgba(213,240,75,.42); cursor: pointer; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.cards-repeater { display: grid; grid-template-columns: repeat(3, 1fr); align-items: start; }
.repeat-card { position: relative; display: flex; flex-direction: column; gap: 16px; padding: 20px; background: #141412; border: 1px solid rgba(255,255,255,.07); }
.repeat-card > .remove { position: absolute; z-index: 2; top: 10px; right: 10px; background: #141412; }
.artist-editor img { width: 100%; height: 290px; object-fit: cover; filter: grayscale(1); }
.upload-control { display: inline-flex; align-items: center; justify-content: center; padding: 12px; color: #11110f; background: var(--acid); cursor: pointer; }
.upload-control input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.gallery-editor { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 18px; }
.gallery-editor article { position: relative; display: flex; flex-direction: column; gap: 12px; padding: 12px; background: #141412; border: 1px solid rgba(255,255,255,.07); }
.gallery-editor article > img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.gallery-editor article > .remove { position: absolute; top: 20px; right: 20px; background: #11110f; }
.gallery-editor .admin-field input { padding: 8px; font-size: 11px; }
.empty-state { padding: 45px; color: #77766f; background: #141412; text-align: center; }

@media (max-width: 1150px) {
  .cards-repeater { grid-template-columns: 1fr 1fr; }
  .gallery-editor { grid-template-columns: repeat(3, 1fr); }
  .theme-editor { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
  .admin-sidebar { position: static; width: 100%; padding: 20px; }
  .admin-sidebar nav { display: none; }
  .admin-sidebar .view-site { margin-top: 20px; }
  .admin-workspace { margin: 0; padding: 20px 14px 80px; }
  .admin-topbar { margin: -20px -14px 22px; padding: 15px 14px; }
  .save-area span, .save-area i { display: none; }
  .save-area button { min-width: 120px; }
  .admin-panel { padding: 22px 15px; }
  .field-grid, .cards-repeater, .gallery-editor, .theme-editor { grid-template-columns: 1fr; }
  .repeat-row, .repeat-row.faq-editor { grid-template-columns: 1fr 30px; }
  .repeat-row .admin-field:nth-child(2) { grid-column: 1; }
  .login-card { padding: 32px 22px; }
}
