:root {
  --ink: #202124;
  --paper: #fcfcfa;
  --surface: #f3f4f2;
  --line: #daddd8;
  --muted: #70746f;
  --accent: #d0186f;
  --accent-dark: #9f0f52;
  --green: #2f7d68;
  --shadow: 0 18px 44px rgb(32 33 36 / 10%);
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
  --font-logo: Futura, "Century Gothic", "Apple SD Gothic Neo", Arial, sans-serif;
  --type-h1: clamp(2.4rem, 3.7vw, 3.25rem);
  --type-h2: clamp(1.05rem, 1.7vw, 1.35rem);
  --type-h3: clamp(1.05rem, 1.7vw, 1.35rem);
  --type-body: 1rem;
  --type-lede: clamp(1.05rem, 1.7vw, 1.35rem);
  --type-card: 0.9rem;
  --type-meta: 0.78rem;
  --type-small: 0.9rem;
  font-family: var(--font-serif);
}

body.theme-gallery-white {
  --ink: #151515;
  --paper: #f7f7f4;
  --surface: #ffffff;
  --line: #c9c7c2;
  --muted: #57534e;
  --accent: #6f1d1b;
  --accent-dark: #4f1211;
  --green: #1f4d3a;
  --shadow: 0 22px 46px rgb(17 17 17 / 10%);
}

body.theme-nocturne {
  --ink: #f3f1ec;
  --paper: #111111;
  --surface: #191919;
  --line: #3a3834;
  --muted: #b8b3aa;
  --accent: #b9ff5a;
  --accent-dark: #d0ff86;
  --green: #b9ff5a;
  --shadow: 0 22px 48px rgb(0 0 0 / 34%);
}

body.theme-mineral {
  --ink: #17211d;
  --paper: #f3f6f4;
  --surface: #ffffff;
  --line: #bcc8c1;
  --muted: #56635d;
  --accent: #4b1f3a;
  --accent-dark: #321427;
  --green: #25594c;
  --shadow: 0 22px 46px rgb(23 33 29 / 10%);
}

body.theme-porcelain-peacock {
  --ink: #1e1721;
  --paper: #f7f8f5;
  --surface: #eceff0;
  --line: #c9cdd0;
  --muted: #6f7076;
  --accent: #007c89;
  --accent-dark: #351b54;
  --green: #3f7a5b;
  --shadow: 0 18px 50px rgb(30 23 33 / 12%);
}

body.theme-violet-glasshouse {
  --ink: #241bff;
  --paper: #fafaff;
  --surface: #f0f1ff;
  --line: #d7daf2;
  --muted: #62647a;
  --accent: #ff6a2a;
  --accent-dark: #5b2cff;
  --green: #008a68;
  --shadow: 0 18px 48px rgb(36 27 255 / 10%);
}

body.theme-white-room-malachite {
  --ink: #202124;
  --paper: #fcfcfa;
  --surface: #f3f4f2;
  --line: #daddd8;
  --muted: #70746f;
  --accent: #005f56;
  --accent-dark: #003f3a;
  --green: #2f7d68;
  --shadow: 0 18px 44px rgb(32 33 36 / 10%);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: var(--surface);
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.82rem;
  text-decoration: none;
  min-width: 14rem;
  overflow: visible;
}

.brand-symbol {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 3.05rem;
  padding-right: 0.72rem;
  color: var(--accent);
  font-family: var(--font-logo);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.78;
  writing-mode: vertical-rl;
}

.brand-symbol::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--accent);
}

.brand-name {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
}

.brand small,
.eyebrow,
.status,
.card-meta,
nav,
.button,
.text-link,
dt,
figcaption {
  font-family: var(--font-sans);
}

.brand small,
.eyebrow {
  color: var(--muted);
  font-size: var(--type-meta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 1.1rem;
  font-size: var(--type-small);
}

nav a {
  text-decoration: none;
  color: var(--muted);
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--ink);
}

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

h1,
h2,
h3 {
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  font-size: var(--type-h1);
  max-width: 16ch;
}

h2 {
  font-size: var(--type-h2);
  max-width: 18ch;
  line-height: 1.08;
}

h3 {
  font-size: var(--type-h3);
  line-height: 1.12;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(20rem, 0.74fr);
  min-height: calc(88vh - 5rem);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}

.hero-home {
  position: relative;
  grid-template-columns: 1fr;
  min-height: calc(92vh - 5rem);
  overflow: hidden;
  background-image:
    linear-gradient(45deg, rgb(252 252 250 / 94%) 0%, rgb(252 252 250 / 88%) 17%, rgb(252 252 250 / 42%) 31%, rgb(252 252 250 / 0%) 46%),
    url("/assets/hero-home.png");
  background-position: center;
  background-size: cover;
}

.hero-copy {
  padding-bottom: 0;
}

.hero-home .hero-copy {
  width: min(64%, 48rem);
  max-width: 48rem;
}

.hero-home .eyebrow {
  white-space: nowrap;
}

.hero-home h1 {
  max-width: 18ch;
}

.hero-copy p:not(.eyebrow) {
  max-width: 42rem;
  font-size: var(--type-lede);
  color: var(--ink);
  opacity: 0.86;
}

.hero-image {
  margin: 0;
  align-self: stretch;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0.7rem;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 26rem;
  object-fit: cover;
  border-radius: 0.35rem;
  box-shadow: var(--shadow);
}

figcaption {
  color: var(--muted);
  font-size: var(--type-meta);
}

.button-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid currentColor;
  border-radius: 2px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.32em;
  font-size: var(--type-meta);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: var(--ink);
  color: var(--surface);
}

.button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.button.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--surface);
}

.button.quiet {
  border-color: var(--line);
  color: var(--muted);
}

body.theme-porcelain-peacock .button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

body.theme-porcelain-peacock .button:hover,
body.theme-porcelain-peacock .button.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--paper);
}

body.theme-violet-glasshouse .button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

body.theme-violet-glasshouse .button:hover,
body.theme-violet-glasshouse .button.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--paper);
}

body.theme-violet-glasshouse .text-link {
  color: var(--accent);
}

body.theme-white-room-malachite .button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

body.theme-white-room-malachite .button:hover,
body.theme-white-room-malachite .button.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--paper);
}

body.theme-white-room-malachite .text-link {
  color: var(--accent);
}

.section,
.page-hero {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.1rem, 5vw, 4.5rem);
}

.page-hero {
  border-bottom: 1px solid var(--line);
}

.page-hero.compact h1 {
  max-width: 24ch;
}

.page-hero.compact p:not(.eyebrow) {
  max-width: 42rem;
  font-size: var(--type-lede);
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.86;
}

.intro-band,
.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(18rem, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.about-feature {
  align-items: center;
}

.about-feature p {
  font-size: var(--type-lede);
}

.about-portrait {
  margin: 0;
}

.about-portrait img {
  width: 100%;
  max-height: 36rem;
  object-fit: cover;
  border-radius: 0.35rem;
  box-shadow: var(--shadow);
}

.path-list {
  display: grid;
  gap: 1.3rem;
}

.path-list p {
  border-top: 1px solid var(--line);
  padding-top: 1.15rem;
  max-width: 40rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(1.5rem, 5vw, 5rem);
  margin-bottom: clamp(2.25rem, 5vw, 4.5rem);
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
}

.art-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  overflow: hidden;
}

.art-card-image {
  display: block;
  aspect-ratio: 4 / 5;
  background: var(--line);
}

.art-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-card-body {
  display: grid;
  min-height: 17rem;
  gap: 0.9rem;
  padding: clamp(1.15rem, 2.2vw, 1.65rem);
}

.art-card h3 {
  margin-bottom: 0;
}

.art-card h3 a {
  text-decoration: none;
}

.art-card p {
  color: var(--ink);
  opacity: 0.82;
  font-size: var(--type-card);
  line-height: 1.55;
}

.card-meta {
  display: grid;
  gap: 0.4rem;
  margin-top: auto;
  font-size: var(--type-meta);
  color: var(--muted);
}

.status {
  display: inline;
  width: fit-content;
  color: var(--ink);
  font-size: var(--type-meta);
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.status-available {
  color: var(--green);
}

.status-sold {
  color: var(--accent-dark);
}

.text-link {
  font-size: var(--type-small);
}

.collection-list {
  display: grid;
  gap: 0;
}

.collection-row {
  display: grid;
  grid-template-columns: minmax(16rem, 0.52fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.collection-row:first-child {
  border-top: 0;
}

.collection-row:last-child {
  border-bottom: 0;
}

.collection-row span {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.collection-row p {
  max-width: 36rem;
  color: var(--muted);
  margin: 0;
}

.collection-row-copy {
  display: grid;
  gap: 0.45rem;
  align-content: center;
  opacity: 0;
  transform: translateX(1.4rem);
  transition: opacity 560ms ease, transform 560ms ease;
}

.collection-row-copy.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.collection-row img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0.35rem;
}

@media (prefers-reduced-motion: reduce) {
  .collection-row-copy {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.artwork-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(20rem, 0.74fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  padding: clamp(1rem, 4vw, 3rem);
  align-items: start;
}

.detail-image,
.detail-carousel {
  position: sticky;
  top: 6rem;
  margin: 0;
}

.detail-image {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  overflow: hidden;
}

.detail-image img {
  width: 100%;
  max-height: calc(100vh - 8rem);
  object-fit: cover;
}

.detail-carousel {
  display: grid;
  gap: 0.75rem;
}

.detail-carousel-main {
  margin: 0;
  background: var(--surface);
  border: 0;
  border-radius: 0.35rem;
  overflow: hidden;
}

.detail-carousel-stage {
  position: relative;
  background: var(--surface);
}

.detail-carousel-stage img {
  width: 100%;
  max-height: calc(100vh - 12rem);
  object-fit: contain;
  background: var(--surface);
}

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

.detail-carousel-arrow {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 3.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 160ms ease, color 160ms ease;
  cursor: pointer;
}

.detail-carousel-arrow::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.detail-carousel-arrow:hover {
  color: var(--accent);
}

.detail-carousel-arrow:focus-visible {
  color: var(--accent);
  outline: 1px solid var(--accent);
  outline-offset: 0.35rem;
}

.detail-carousel-stage:hover .detail-carousel-arrow,
.detail-carousel-stage:focus-within .detail-carousel-arrow {
  opacity: 1;
}

.detail-carousel-arrow-prev {
  left: 0.85rem;
}

.detail-carousel-arrow-prev::before {
  transform: rotate(-135deg);
}

.detail-carousel-arrow-next {
  right: 0.85rem;
}

.detail-carousel-arrow-next::before {
  transform: rotate(45deg);
}

.detail-carousel-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
  gap: 0.65rem;
  margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

.detail-carousel-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  background: var(--surface);
  overflow: hidden;
  cursor: pointer;
}

.detail-carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--thumb-position, center);
  transition: transform 180ms ease;
}

.detail-carousel-thumb:hover img,
.detail-carousel-thumb:focus-visible img {
  transform: scale(1.035);
}

.detail-carousel-thumb.is-active {
  border-color: var(--ink);
}

.detail-copy {
  display: grid;
  gap: 1.35rem;
  padding: clamp(1rem, 3vw, 2rem) 0 5rem;
}

.lead {
  color: var(--ink);
  opacity: 0.88;
  font-size: var(--type-lede);
}

.detail-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.detail-list div {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: var(--type-meta);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

dd {
  margin: 0;
}

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

.detail-section:last-of-type {
  border-bottom: 1px solid var(--line);
}

.detail-section summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: var(--type-meta);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  list-style: none;
  cursor: pointer;
}

.detail-section summary::-webkit-details-marker {
  display: none;
}

.detail-section summary::after {
  content: "+";
  color: var(--ink);
  font-size: var(--type-body);
  line-height: 1;
}

.detail-section[open] summary::after {
  content: "−";
}

.detail-section summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 0.25rem;
}

.detail-section-body {
  display: grid;
  gap: 0.7rem;
  padding: 0 0 1rem;
  color: var(--muted);
  font-size: var(--type-small);
  line-height: 1.65;
}

.detail-section-body p {
  margin: 0;
}

.detail-section-list {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.detail-section-list div {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.cta-panel {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--ink);
  border-radius: 0.35rem;
  background: var(--surface);
}

.cta-panel p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-small);
}

.prose {
  max-width: 48rem;
}

.prose p {
  font-size: var(--type-lede);
}

.contact-form,
.signup-form {
  display: grid;
  gap: 0.75rem;
  max-width: 34rem;
}

.studio-list-signup {
  display: grid;
  grid-template-columns: minmax(14rem, 0.5fr) minmax(24rem, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.studio-list-signup .signup-form {
  margin-left: clamp(0.75rem, 2vw, 1.75rem);
}

.studio-list-signup h2 {
  margin-bottom: 0.75rem;
  font-size: var(--type-h2);
}

.studio-list-signup p:not(.eyebrow) {
  max-width: 26rem;
  margin-bottom: 0;
  color: var(--ink);
  opacity: 0.86;
  font-size: var(--type-body);
}

.studio-list-signup p.signup-privacy {
  margin: 0;
  font-size: var(--type-small);
}

.signup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
}

label {
  font-family: var(--font-sans);
  color: var(--muted);
  font-size: var(--type-meta);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  padding: 0.85rem;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.consent-row input[type="checkbox"] {
  width: auto;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.consent-row label {
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--type-small);
  color: var(--ink);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.field-optional {
  font-size: var(--type-meta);
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.consent-note {
  font-size: var(--type-small);
  color: var(--muted);
  margin: 0;
}

.consent-note a {
  color: inherit;
  text-decoration: underline;
}

.thank-you-signup {
  margin-top: 1.5rem;
}

.collectors-optin {
  margin: 1.5rem 0;
  padding: 1.25rem clamp(1rem, 3vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--surface);
  max-width: 34rem;
}

.collectors-optin h2 {
  margin-top: 0;
  font-size: var(--type-h3);
}

.collectors-optin p:not(.form-status) {
  font-size: var(--type-body);
  color: var(--muted);
}

.collectors-optin .consent-row {
  margin: 0.75rem 0 1rem;
}

.collectors-optin .consent-row label {
  font-size: var(--type-small);
}


.site-footer {
  display: grid;
  grid-template-columns: minmax(14rem, 0.5fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding: 2.4rem clamp(1rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  max-width: 24rem;
  margin: 0.4rem 0 0;
}

.footer-about p {
  font-size: var(--type-small);
  line-height: 1.45;
}

.footer-about {
  display: grid;
  gap: 0.4rem;
  align-content: start;
}

.footer-about strong {
  font-family: var(--font-sans);
  font-size: var(--type-small);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.copyright {
  font-family: var(--font-sans);
  font-size: var(--type-meta);
}

.footer-actions,
.footer-signup {
  display: grid;
  gap: 1rem;
}

.footer-actions {
  justify-items: start;
}

.footer-signup {
  width: 100%;
  max-width: 30rem;
}

.footer-link-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(9rem, 1fr));
  gap: 1.2rem 2rem;
}

.footer-link-column {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.footer-link-column a {
  width: fit-content;
  font-size: var(--type-small);
}

.wordmark-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.wordmark-card {
  display: grid;
  grid-template-columns: minmax(18rem, 0.75fr) minmax(16rem, 0.45fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: 15rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--paper);
}

.wordmark-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.wordmark-sample {
  color: var(--ink);
}

.wordmark-sample small {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.wordmark-sample .wm-name {
  display: grid;
}

.wordmark-spine {
  display: grid;
  grid-template-columns: 0.28rem max-content;
  column-gap: 0.9rem;
  align-items: stretch;
  width: fit-content;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

.wordmark-spine .wm-rule {
  grid-row: 1 / 3;
  background: var(--accent);
}

.wordmark-spine .wm-name {
  display: block;
  font-size: clamp(1.85rem, 4.2vw, 3.25rem);
  line-height: 0.95;
}

.wordmark-stacked {
  display: grid;
  grid-template-columns: auto 1px max-content;
  column-gap: 1rem;
  align-items: stretch;
  width: fit-content;
}

.wordmark-stacked .wm-initials {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--accent);
  font-size: clamp(0.92rem, 2vw, 1.34rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 0.92;
}

.wordmark-stacked::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  min-height: 7rem;
  background: var(--accent);
}

.wordmark-stacked .wm-name {
  display: block;
  font-size: clamp(1.85rem, 4.4vw, 3.35rem);
  line-height: 0.95;
  align-self: center;
}

.wordmark-museum {
  grid-template-columns: auto 1px max-content;
  column-gap: 1.12rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.wordmark-museum .wm-initials {
  font-size: clamp(1.06rem, 2.2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 0.8;
}

.wordmark-museum .wm-name {
  font-weight: 300;
  letter-spacing: -0.005em;
}

.wordmark-geo {
  grid-template-columns: auto 2px max-content;
  font-family: Futura, "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
}

.wordmark-geo .wm-initials {
  font-size: clamp(1.1rem, 2.25vw, 1.54rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.78;
}

.wordmark-mono {
  grid-template-columns: auto 2px max-content;
  font-family: "Andale Mono", "Monaco", "Courier New", monospace;
}

.wordmark-mono .wm-initials {
  font-weight: 700;
  letter-spacing: 0.06em;
}

.wordmark-stacked small {
  grid-column: 2;
}

.wordmark-atelier {
  display: grid;
  grid-template-columns: 0.18rem max-content;
  column-gap: 0.8rem;
  align-items: center;
  width: fit-content;
  font-family: Didot, "Bodoni 72", "Bodoni 72 Smallcaps", Georgia, serif;
}

.wordmark-atelier .wm-rule {
  height: 4.6rem;
  background: var(--accent);
}

.wordmark-atelier .wm-name {
  display: block;
  max-width: 8.4em;
  font-size: clamp(2rem, 5.4vw, 4.1rem);
  line-height: 0.86;
}

.wordmark-atelier small {
  grid-column: 2;
}

.site-footer > .copyright {
  grid-column: 1 / -1;
  margin-top: 0;
}

@media (max-width: 920px) {
  .hero,
  .intro-band,
  .split-feature,
  .studio-list-signup,
  .artwork-detail {
    grid-template-columns: 1fr;
  }

  .wordmark-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-home {
    grid-template-columns: 1fr;
    min-height: 76vh;
    background-image:
      linear-gradient(45deg, rgb(252 252 250 / 94%) 0%, rgb(252 252 250 / 86%) 30%, rgb(252 252 250 / 40%) 58%, rgb(252 252 250 / 0%) 78%),
      url("/assets/hero-home.png");
  }

  .hero-home .hero-copy {
    width: min(100%, 34rem);
  }

  .studio-list-signup .signup-form {
    margin-left: 0;
  }

  .hero-image img {
    min-height: 22rem;
    max-height: 70vh;
  }

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

  .detail-image,
  .detail-carousel {
    position: static;
  }

  .detail-copy {
    order: -1;
    padding-bottom: 0;
  }

  .detail-carousel-arrow {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  nav {
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .button-row,
  .footer-links,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .art-card-body {
    min-height: auto;
  }

  .collection-row,
  .detail-list div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .section-heading {
    display: block;
  }

  .signup-row,
  .footer-link-columns {
    grid-template-columns: 1fr;
  }
}
