:root {
  --paper: #fbfaf7;
  --paper-soft: #f3f1eb;
  --ink: #141312;
  --ink-soft: #383431;
  --muted: #77716a;
  --line: #ded9cf;
  --seal: #a1372e;
  --white: #fffefa;
  --shadow: 0 24px 70px rgba(23, 22, 21, 0.12);
  --body-font: "Gotham SSm", Gotham, "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body-font);
  font-weight: 400;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

body.viewer-open {
  overflow: hidden;
}

main section[id] {
  scroll-margin-top: 96px;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(23, 22, 21, 0.1);
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 156px;
  height: auto;
}

.footer-logo {
  width: 132px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - 76px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 28%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0.04)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 40px));
  margin: 0 0 clamp(48px, 8vh, 88px) clamp(20px, 6vw, 84px);
  color: var(--white);
  cursor: default;
}

.hero-content a {
  cursor: pointer;
}

.hero-logo {
  width: min(520px, 100%);
  height: auto;
  margin-bottom: 28px;
  filter: invert(1);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--seal);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c7c1;
}

h1,
h2,
h3,
.form-title {
  font-family: var(--body-font);
  font-weight: 500;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 9ch;
  margin-bottom: 22px;
  font-size: 8rem;
  line-height: 0.88;
}

.hero p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.14rem;
}

.hero-actions,
.commission-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: default;
  opacity: 0.58;
  transform: none;
}

.button-primary {
  border-color: var(--seal);
  background: var(--seal);
  color: var(--white);
}

.section-pad {
  padding: clamp(68px, 9vw, 118px) clamp(20px, 6vw, 84px);
}

.section-line {
  border-top: 1px solid var(--line);
}

.section-title {
  margin: 0 0 34px;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-head p:last-child,
.copy-stack p,
.commission-note p,
.process-grid p,
.faq-block p,
.form-note,
.site-footer p {
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 330px;
  gap: 10px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--paper-soft);
  color: inherit;
  cursor: zoom-in;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.015);
}

.gallery-item span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  background: rgba(251, 250, 247, 0.88);
  color: var(--ink);
  font-size: 0.76rem;
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-item:hover span,
.gallery-item:focus-visible span {
  opacity: 1;
}

.gallery-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 18px;
  align-items: center;
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
  height: clamp(360px, 46vw, 560px);
  isolation: isolate;
}

.carousel-track {
  position: relative;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  min-width: 0;
  width: min(54%, 540px);
  height: 100%;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  opacity: 0;
  pointer-events: none;
  filter: blur(0);
  transform: translate(-50%, -50%) scale(0.8);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 280ms ease,
    filter 280ms ease;
}

.carousel-slide img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.carousel-slide:focus-visible {
  outline: 1px solid var(--seal);
  outline-offset: 4px;
}

.carousel-slide.is-current {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  filter: blur(0);
  transform: translate(-50%, -50%) scale(1);
}

.carousel-slide.is-prev {
  z-index: 1;
  opacity: 0.38;
  filter: blur(7px);
  transform: translate(-122%, -50%) scale(0.78);
}

.carousel-slide.is-next {
  z-index: 1;
  opacity: 0.38;
  filter: blur(7px);
  transform: translate(22%, -50%) scale(0.78);
}

.carousel-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 400;
  cursor: pointer;
}

.carousel-arrow:hover {
  border-color: var(--seal);
  color: var(--seal);
}

.empty-section {
  min-height: 360px;
}

.artist-profile {
  display: grid;
  grid-template-columns: minmax(240px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
}

.artist-photo {
  width: min(420px, 100%);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--paper-soft);
}

.artist-copy {
  max-width: 320px;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.artist-name {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 500;
}

.split-section,
.about-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 18px;
  font-size: 0.98rem;
}

.artist-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.artist-proof img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--paper-soft);
}

.commission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.commission-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.commission-grid .featured-tier {
  border-color: var(--seal);
  box-shadow: var(--shadow);
}

.tier {
  margin-bottom: 18px;
  color: var(--seal);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.commission-grid h3 {
  margin-bottom: 18px;
  font-size: 2.6rem;
  line-height: 1;
}

.commission-grid p:last-child {
  color: var(--muted);
}

.commission-note {
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.commission-note p {
  max-width: 520px;
  margin: 0;
}

.process-section {
  background: var(--paper);
  color: var(--ink);
}

.process-section .eyebrow {
  color: var(--seal);
}

.process-section .section-head p:last-child,
.process-section .process-grid p {
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.process-grid article {
  min-height: 180px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--seal);
  font-weight: 500;
}

.process-grid h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
  font-weight: 500;
}

.process-grid p {
  max-width: 220px;
  margin-bottom: 0;
  font-size: 0.82rem;
}

.comparison-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  width: min(920px, 100%);
  margin: clamp(34px, 6vw, 72px) auto 0;
}

.comparison-panel figure {
  display: grid;
  gap: 10px;
  margin: 0;
}

.comparison-panel img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: var(--paper-soft);
}

.comparison-panel figcaption {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
}

.process-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.process-images img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--paper-soft);
}

.studio-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.studio-notes span {
  padding: 0 14px;
  text-align: center;
}

.art-viewer {
  --viewer-blur: 0px;
  --viewer-scale: 1;
  position: fixed;
  inset: 0;
  z-index: 120;
  overflow-y: auto;
  background: rgba(251, 250, 247, 0.72);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.art-viewer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.viewer-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 2;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.88);
  color: var(--ink);
  cursor: pointer;
}

.viewer-scroll {
  min-height: 178vh;
}

.viewer-stage {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 76px clamp(20px, 5vw, 72px);
}

.viewer-image {
  max-width: min(92vw, 1180px);
  max-height: 82svh;
  object-fit: contain;
  filter: blur(var(--viewer-blur));
  transform: scale(var(--viewer-scale));
  transform-origin: center;
  transition: filter 80ms linear, transform 80ms linear;
}

.contact-section {
  background: var(--white);
}

.faq-block details {
  border-top: 1px solid var(--line);
}

.faq-block details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-block summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--ink);
  font-weight: 800;
}

.faq-block summary::marker {
  color: var(--seal);
}

.faq-block details p {
  margin-bottom: 18px;
}

.commission-form {
  display: grid;
  gap: 16px;
  width: min(760px, 100%);
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.form-title {
  margin: 0;
  font-size: 1.8rem;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(159, 47, 39, 0.2);
  border-color: var(--seal);
}

.form-note,
.form-status {
  margin: 0;
  font-size: 0.82rem;
}

.direct-contact {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.direct-contact a {
  color: var(--ink);
}

.field-note {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
}

.form-status {
  color: var(--seal);
  font-weight: 500;
}

.commission-form input[name="_honey"] {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 32px;
  align-items: center;
  padding: 34px clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-identity {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.footer-contact {
  display: inline-flex;
  margin-top: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
}

.footer-contact:hover {
  color: var(--ink);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 400;
}

.policy-page {
  max-width: 900px;
  min-height: 68vh;
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 84px);
}

.policy-page h1 {
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.2;
}

.policy-page h2 {
  margin-top: 42px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}

.policy-page p,
.policy-page li {
  color: var(--muted);
}

.policy-page ul {
  padding-left: 20px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-header.has-toggle .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

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

  .site-header.has-toggle .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .artist-profile {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

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

  .process-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .comparison-panel {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
  }

  .brand-logo {
    width: 148px;
  }

  .site-header.has-toggle .site-nav {
    inset: 68px 0 auto 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    object-position: 52% 32%;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 42px;
  }

  .hero-logo {
    width: min(330px, 100%);
    margin-bottom: 22px;
  }

  .section-title {
    margin-bottom: 24px;
    font-size: 1.7rem;
  }

  .artist-photo {
    width: 100%;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .gallery-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .carousel-viewport {
    height: clamp(300px, 82vw, 430px);
  }

  .carousel-slide {
    width: 72%;
  }

  .carousel-slide.is-prev {
    opacity: 0.3;
    filter: blur(6px);
    transform: translate(-112%, -50%) scale(0.72);
  }

  .carousel-slide.is-next {
    opacity: 0.3;
    filter: blur(6px);
    transform: translate(12%, -50%) scale(0.72);
  }

  .carousel-arrow {
    width: 38px;
    height: 46px;
  }

  .empty-section {
    min-height: 260px;
  }
}
