:root {
  --ink: #171914;
  --paper: #f1eee5;
  --paper-bright: #faf8f2;
  --line: rgba(23, 25, 20, 0.18);
  --muted: #66675f;
  --coral: #f04f45;
  --navy: #173f4b;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 4vw;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

nav {
  display: flex;
  gap: clamp(20px, 3vw, 42px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

nav a,
.social-row a {
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease;
}

nav a:hover,
nav a:focus-visible,
.social-row a:hover,
.social-row a:focus-visible { border-color: currentColor; }

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  background: var(--paper-bright);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 7vw 80px 8vw;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.5;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(4.4rem, 7.4vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.83;
}

h1 em {
  display: block;
  color: var(--coral);
  font-weight: 400;
}

.hero-intro {
  max-width: 540px;
  margin-bottom: 36px;
  color: #474941;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.75;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link svg,
.email-link svg { transition: transform 180ms ease; }
.text-link:hover svg,
.email-link:hover svg { transform: translateX(5px); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px 32px;
}
.text-link-muted { color: var(--muted); }

.hero-art {
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background: #d6d2c7;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hero-art:hover img { transform: scale(1.018); }

.hero-art figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  background: rgba(250, 248, 242, 0.9);
  backdrop-filter: blur(10px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.works-section { padding: 120px 5vw 150px; }
.section-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.25fr 0.8fr;
  align-items: end;
  gap: 36px;
  margin-bottom: 72px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}
.section-heading .eyebrow { margin-bottom: 3px; }

.section-heading h2,
.about-copy h2,
.contact-section h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.section-heading h2 {
  font-size: clamp(2.7rem, 4vw, 5.2rem);
  line-height: 0.95;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 68px);
  align-items: start;
}

.studio-preview {
  padding: 130px 5vw 150px;
  background: #e3ddd0;
}
.studio-preview-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 70px;
}
.studio-preview-heading h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.3vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}
.studio-preview-heading > div:last-child > p {
  margin-bottom: 28px;
  color: #55574f;
  font-size: 0.92rem;
  line-height: 1.75;
}
.collection-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.collection-preview-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--navy);
}
.collection-preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 16, 17, 0.82), rgba(10, 16, 17, 0.02) 60%);
}
.collection-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.collection-preview-card > span {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 24px;
  left: 22px;
  color: white;
}
.collection-preview-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}
.collection-preview-card small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.collection-preview-card:hover img,
.collection-preview-card:focus-visible img { transform: scale(1.035); }
.work-card:nth-child(even) { margin-top: 110px; }

.work-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #dedbd2;
}
.work-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 25, 20, 0.06);
  opacity: 0;
  transition: opacity 220ms ease;
}
.work-image img {
  width: 100%;
  aspect-ratio: 0.77;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.work-image span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  padding: 10px 13px;
  background: var(--paper-bright);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  opacity: 0;
  transform: translateY(7px);
  text-transform: uppercase;
  transition: opacity 220ms ease, transform 220ms ease;
}
.work-image:hover img { transform: scale(1.025); }
.work-image:hover::after,
.work-image:hover span,
.work-image:focus-visible span { opacity: 1; transform: translateY(0); }

.work-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.work-number,
.work-year,
.work-size {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.work-number { margin-bottom: 7px; }
.work-card h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}
.work-year { padding-top: 2px; }
.work-medium {
  max-width: 390px;
  margin: 7px 0;
  color: #55574f;
  font-size: 0.83rem;
  line-height: 1.6;
}
.work-series {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.work-size { margin-bottom: 0; letter-spacing: 0.04em; text-transform: none; }

.supporting-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.supporting-item {
  min-width: 0;
  margin: 0;
}
.supporting-item:only-child { grid-column: 1 / -1; }
.supporting-item a {
  display: block;
  overflow: hidden;
  background: #dedbd2;
}
.supporting-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.supporting-item a:hover img,
.supporting-item a:focus-visible img { transform: scale(1.025); }
.supporting-item figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.about-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
  padding: 130px 8vw;
  background: var(--navy);
  color: var(--paper-bright);
}
.about-section .eyebrow { color: rgba(250, 248, 242, 0.65); }
.monogram {
  margin: 110px 0 0;
  color: rgba(250, 248, 242, 0.09);
  font-family: var(--serif);
  font-size: clamp(8rem, 18vw, 20rem);
  letter-spacing: -0.12em;
  line-height: 0.65;
}
.about-copy { max-width: 760px; }
.about-copy h2 {
  max-width: 700px;
  margin-bottom: 46px;
  font-size: clamp(3.2rem, 5.4vw, 7rem);
  line-height: 0.94;
}
.about-copy p {
  max-width: 620px;
  color: rgba(250, 248, 242, 0.78);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.5vw, 1.4rem);
  line-height: 1.72;
}

.statement-section { padding: 135px 8vw 145px; background: #d8c9ad; }
.statement-section blockquote {
  max-width: 1160px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.2vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.contact-section { padding: 130px 8vw 80px; background: var(--paper-bright); }
.contact-section h2 {
  max-width: 780px;
  margin-bottom: 72px;
  font-size: clamp(3rem, 5vw, 6.2rem);
  line-height: 0.98;
}
.email-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.8vw, 3.2rem);
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}
.social-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 64px 8vw 40px;
  background: var(--paper-bright);
}
footer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Studio collections */
.studio-page { background: var(--paper-bright); }
.studio-header { color: var(--ink); }
.studio-header nav a[aria-current="page"] { border-color: currentColor; }

.studio-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  background: #ece6db;
}
.studio-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 145px 6vw 80px 8vw;
}
.studio-hero-copy h1 { font-size: clamp(4.2rem, 7vw, 8rem); }
.studio-hero-art {
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background: #cec8bd;
}
.studio-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.studio-hero-art figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  background: rgba(250, 248, 242, 0.92);
  backdrop-filter: blur(10px);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collection-index {
  padding: 88px 6vw 82px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-bright);
}
.collection-index .eyebrow { margin-bottom: 30px; }
.collection-index-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.collection-index-links a {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  letter-spacing: -0.03em;
  transition: background 180ms ease, color 180ms ease;
}
.collection-index-links a:last-child { border-right: 0; }
.collection-index-links a:hover,
.collection-index-links a:focus-visible { background: var(--navy); color: var(--paper-bright); }
.collection-index-links span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.collection-index-links a:hover span,
.collection-index-links a:focus-visible span { color: rgba(250, 248, 242, 0.65); }
.scale-note {
  max-width: 700px;
  margin: 28px 0 0 auto;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.7;
}

.collection-block {
  scroll-margin-top: 30px;
  padding: 120px 5vw 150px;
  background: var(--paper-bright);
}
.collection-block-dark {
  --line: rgba(250, 248, 242, 0.2);
  --muted: rgba(250, 248, 242, 0.62);
  background: #142f38;
  color: var(--paper-bright);
}
.collection-block-warm { background: #d8c9ad; }
.collection-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 90px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.collection-number,
.collection-count {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.collection-number { margin-bottom: 22px; }
.collection-heading h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 6.5vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.87;
}
.collection-heading > div:last-child > p:first-child {
  margin-bottom: 22px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.35vw, 1.32rem);
  line-height: 1.7;
}
.collection-count { margin-bottom: 0; }

.studio-works-grid { display: grid; gap: 135px; }
.studio-work {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(330px, 0.72fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
}
.studio-work:nth-child(even) { grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr); }
.studio-work:nth-child(even) .studio-gallery { order: 2; }
.studio-work:nth-child(even) .studio-work-copy { order: 1; }
.studio-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(160px, 0.65fr);
  gap: 14px;
  align-items: end;
}
.studio-gallery figure { min-width: 0; margin: 0; }
.studio-gallery a {
  display: block;
  overflow: hidden;
  background: #e1ddd4;
}
.studio-gallery img {
  width: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.studio-gallery a:hover img,
.studio-gallery a:focus-visible img { transform: scale(1.018); }
.studio-gallery figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}
.studio-gallery-square .studio-original img,
.studio-gallery-square .studio-mockup img { aspect-ratio: 1; }
.studio-gallery-portrait .studio-original img { aspect-ratio: 2 / 3; }
.studio-gallery-portrait .studio-mockup img { aspect-ratio: 1; }
.studio-gallery-portrait-soft .studio-original img { aspect-ratio: 4 / 5; }
.studio-gallery-portrait-soft .studio-mockup img { aspect-ratio: 1; }

.studio-work-copy {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.studio-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}
.studio-title-row .work-number { margin-bottom: 9px; }
.studio-title-row h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.6vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}
.status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 7px 10px 6px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.status-available { color: #31664e; }
.collection-block-dark .status-available { color: #bfe0cb; }
.status-sold { color: var(--muted); }
.studio-specs { margin: 0 0 28px; }
.studio-specs > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.studio-specs dt,
.studio-specs dd {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.55;
}
.studio-specs dt {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.studio-story {
  margin-bottom: 28px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.72;
}
.inquiry-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0 12px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.inquiry-link span { transition: transform 180ms ease; }
.inquiry-link:hover span,
.inquiry-link:focus-visible span { transform: translate(3px, -3px); }

.studio-contact {
  padding: 130px 8vw 80px;
  background: #111e20;
  color: var(--paper-bright);
}
.studio-contact .eyebrow { color: rgba(250, 248, 242, 0.62); }
.studio-contact h2 {
  max-width: 920px;
  margin-bottom: 34px;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 5.5vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}
.studio-contact > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 66px;
  color: rgba(250, 248, 242, 0.67);
  font-size: 0.9rem;
  line-height: 1.75;
}
.studio-contact .email-link { border-color: rgba(250, 248, 242, 0.72); }
.studio-contact .social-row { color: rgba(250, 248, 242, 0.62); }
.studio-footer { background: #111e20; color: var(--paper-bright); }
.studio-footer p { color: rgba(250, 248, 242, 0.5); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 82vh; padding: 145px 8vw 80px; }
  .hero-art { min-height: 75vh; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .section-heading > p:last-child { max-width: 500px; }
  .works-grid { grid-template-columns: 1fr 1fr; }
  .work-card:nth-child(even) { margin-top: 80px; }
  .about-section { grid-template-columns: 1fr; gap: 70px; }
  .monogram { display: none; }
  .studio-preview-heading { grid-template-columns: 1fr; gap: 34px; }
  .collection-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collection-preview-card { min-height: 470px; }
  .studio-hero { grid-template-columns: 1fr; }
  .studio-hero-copy { min-height: 78vh; padding: 145px 8vw 80px; }
  .studio-hero-art { min-height: 75vh; }
  .collection-index-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collection-index-links a:nth-child(2) { border-right: 0; }
  .collection-index-links a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .collection-heading { grid-template-columns: 1fr; gap: 36px; }
  .studio-work,
  .studio-work:nth-child(even) { grid-template-columns: 1fr; gap: 42px; }
  .studio-work:nth-child(even) .studio-gallery,
  .studio-work:nth-child(even) .studio-work-copy { order: initial; }
}

@media (max-width: 600px) {
  .site-header { padding: 22px 20px; }
  .wordmark { font-size: 1.2rem; }
  nav { gap: 15px; font-size: 0.58rem; letter-spacing: 0.1em; }
  .hero-copy { min-height: 78vh; padding: 125px 20px 64px; }
  h1 { font-size: clamp(4rem, 20vw, 6rem); }
  .hero-art { min-height: 65vh; }
  .hero-art figcaption { right: 12px; bottom: 12px; left: 12px; }
  .works-section,
  .about-section,
  .statement-section,
  .contact-section { padding: 90px 20px; }
  .works-grid { grid-template-columns: 1fr; gap: 70px; }
  .work-card:nth-child(even) { margin-top: 0; }
  .work-image span { opacity: 1; transform: none; }
  .supporting-grid { gap: 8px; }
  .supporting-item figcaption { font-size: 0.52rem; }
  .about-copy h2 { font-size: 3.35rem; }
  .statement-section blockquote { font-size: 2.65rem; }
  .contact-section h2 { margin-bottom: 50px; font-size: 3rem; }
  .email-link { align-items: flex-start; font-size: 1.2rem; }
  .social-row,
  footer { align-items: flex-start; flex-direction: column; }
  footer { padding: 24px 20px 40px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .studio-preview { padding: 90px 20px; }
  .collection-preview-grid { grid-template-columns: 1fr; }
  .collection-preview-card { min-height: 430px; }
  .studio-hero-copy { min-height: 74vh; padding: 125px 20px 64px; }
  .studio-hero-copy h1 { font-size: clamp(3.8rem, 18vw, 5.5rem); }
  .studio-hero-art { min-height: 62vh; }
  .studio-hero-art figcaption { right: 12px; bottom: 12px; left: 12px; }
  .collection-index { padding: 72px 20px; }
  .collection-index-links { grid-template-columns: 1fr; }
  .collection-index-links a,
  .collection-index-links a:nth-child(2) {
    min-height: 110px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .collection-index-links a:last-child { border-bottom: 0; }
  .scale-note { margin-left: 0; }
  .collection-block { padding: 90px 20px 110px; }
  .collection-heading { margin-bottom: 64px; padding-bottom: 34px; }
  .collection-heading h2 { font-size: clamp(3.5rem, 17vw, 5.2rem); }
  .studio-works-grid { gap: 90px; }
  .studio-gallery { grid-template-columns: 1fr; gap: 20px; }
  .studio-gallery .studio-mockup { width: 70%; margin-left: auto; }
  .studio-gallery-portrait .studio-original img { aspect-ratio: 2 / 3; }
  .studio-title-row { align-items: flex-start; flex-direction: column; }
  .studio-specs > div { grid-template-columns: 1fr; gap: 3px; }
  .studio-contact { padding: 90px 20px; }
  .studio-contact h2 { font-size: 3.25rem; }
}

@media (max-width: 420px) {
  .site-header { gap: 14px; }
  .wordmark { font-size: 1.05rem; }
  nav { gap: 9px; font-size: 0.51rem; }
}

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