:root {
  --ink: #171717;
  --paper: #f7f5f0;
  --muted: #e7e4dc;
  --lime: #d7f52a;
  --coral: #ff765e;
  --blue: #8ca8ff;
  --line: rgba(23, 23, 23, 0.2);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.5; }
a { color: inherit; text-underline-offset: 0.18em; }
button { font: inherit; }
.container { width: min(100% - 3rem, 1280px); margin: 0 auto; }
.section { padding: clamp(5rem, 11vw, 10rem) 0; }
.section-muted { background: var(--muted); }
.eyebrow { margin: 0 0 1rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 400; line-height: 0.95; letter-spacing: -0.055em; }
h1, h2 { font-family: var(--display); }
h1 { max-width: 9ch; margin-bottom: 0; font-size: clamp(4rem, 10vw, 9rem); }
h2 { max-width: 13ch; margin-bottom: 0; font-size: clamp(2.8rem, 6vw, 5.5rem); }
.skip-link { position: fixed; z-index: 10; top: 0.75rem; left: 0.75rem; padding: 0.5rem 0.75rem; color: var(--paper); background: var(--ink); transform: translateY(-200%); }
.skip-link:focus { transform: translateY(0); }
.site-header { position: sticky; z-index: 5; top: 0; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--paper) 94%, transparent); backdrop-filter: blur(10px); }
.header-inner, .footer-inner { display: flex; align-items: center; justify-content: space-between; min-height: 4.5rem; }
.brand { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.06em; text-decoration: none; }
.site-navigation { display: flex; gap: 1.75rem; font-size: 0.875rem; }
.site-navigation a { text-decoration: none; }
.site-navigation a:hover, .site-navigation a:focus-visible { text-decoration: underline; }
.menu-toggle { display: none; border: 0; padding: 0.25rem; color: var(--ink); background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; width: 1.5rem; height: 1px; margin: 0.35rem; background: currentColor; }
.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; }
.hero { min-height: calc(100vh - 4.5rem); display: grid; align-items: end; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.hero-grid > .eyebrow { grid-column: 1 / -1; margin-bottom: clamp(2rem, 8vh, 7rem); }
.hero-copy { align-self: end; max-width: 31rem; padding-bottom: 0.5rem; }
.hero-copy p { font-size: clamp(1.1rem, 1.8vw, 1.5rem); }
.text-link { font-weight: 700; text-decoration-thickness: 1px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.project-card { display: flex; flex-direction: column; aspect-ratio: 0.84; padding: 1.5rem; }
.project-card { text-decoration: none; transition: transform 180ms ease; }
.project-card:hover { transform: translateY(-0.4rem); }
.project-card p, .project-card span { font-size: 0.8rem; }
.project-card h3 { margin: auto 0 0; font-size: clamp(2rem, 3.5vw, 4rem); }
.project-card span { margin-top: 0.75rem; }
.project-card--lime { background: var(--lime); }
.project-card--coral { background: var(--coral); }
.project-card--blue { background: var(--blue); }
.split-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr); gap: 5rem; }
.process-list { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 3rem 1fr; column-gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.process-list span { grid-row: span 2; font-size: 0.75rem; }
.process-list strong { font-size: 1.15rem; }
.process-list p { grid-column: 2; margin: 0.35rem 0 0; color: rgba(23, 23, 23, 0.7); }
.callout { color: var(--paper); background: var(--ink); }
.callout h2 { margin-bottom: 2.5rem; }
.button { display: inline-flex; gap: 2rem; align-items: center; padding: 0.85rem 1rem; color: var(--ink); background: var(--lime); font-weight: 700; text-decoration: none; }
.site-footer { border-top: 1px solid var(--line); font-size: 0.8rem; }
.page-intro { padding: clamp(4rem, 10vw, 8rem) 0 3rem; }
.page-intro .lead { max-width: 38rem; margin: 2rem 0 0; font-size: clamp(1.15rem, 2vw, 1.6rem); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.catalog-card { display: block; min-height: 26rem; padding: 1.25rem; color: var(--ink); text-decoration: none; }
.catalog-card > div { display: flex; height: 100%; flex-direction: column; justify-content: space-between; }
.catalog-card h2 { font-size: clamp(2rem, 3vw, 3.25rem); }
.catalog-card p { margin: 0; font-size: 0.8rem; }
.catalog-card--one { background: #e6d8ce; }
.catalog-card--two { background: #c5ddd7; }
.catalog-card--three { background: #f3c847; }
.catalog-card--four { background: #d8c5ea; }
.catalog-card:hover, .catalog-card:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.detail-layout { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(2rem, 8vw, 8rem); align-items: start; }
.detail-visual { min-height: min(70vw, 46rem); background: linear-gradient(145deg, #e6d8ce 0%, #b29b88 100%); }
.detail-copy h1 { margin-bottom: 1.5rem; font-size: clamp(3.5rem, 7vw, 6rem); }
.detail-copy .price { margin: 0 0 2rem; font-size: 1.25rem; }
.detail-copy .button { border: 0; cursor: pointer; }
.meta-list { margin: 2.5rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.meta-list li { display: flex; justify-content: space-between; padding: 0.7rem 0; border-bottom: 1px solid var(--line); font-size: 0.85rem; }
.artist-list { border-top: 1px solid var(--line); }
.artist-row { display: grid; grid-template-columns: 4rem minmax(8rem, 0.8fr) minmax(12rem, 1fr) auto; gap: 1rem; align-items: baseline; padding: 1.75rem 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.artist-row:hover h2 { text-decoration: underline; }
.artist-row h2 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 4vw, 4rem); }
.artist-row p { margin: 0; }
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--ink); }
.case-card { min-height: 24rem; padding: 1.5rem; background: var(--paper); }
.case-card:nth-child(2) { background: var(--blue); }
.case-card:nth-child(3) { background: var(--lime); }
.case-card:nth-child(4) { background: var(--coral); }
.case-card h2 { margin: 5rem 0 0; font-size: clamp(2.5rem, 5vw, 5rem); }
.content-layout { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(2rem, 10vw, 10rem); }
.prose { max-width: 42rem; font-size: clamp(1.1rem, 1.7vw, 1.4rem); }
.prose p { margin-bottom: 1.5em; }
.article-meta { margin-top: 1.5rem; font-size: 0.85rem; }

@media (max-width: 720px) {
  .container { width: min(100% - 2rem, 1280px); }
  .menu-toggle { display: block; }
  .site-navigation { position: absolute; top: 4.5rem; right: 0; left: 0; display: none; flex-direction: column; gap: 1rem; padding: 1.5rem 1rem; border-bottom: 1px solid var(--line); background: var(--paper); }
  .site-navigation.is-open { display: flex; }
  .hero-grid, .split-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-grid > .eyebrow { margin-bottom: 0; }
  .hero { min-height: auto; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { aspect-ratio: 1.2; }
  .catalog-grid, .case-grid { grid-template-columns: 1fr; }
  .catalog-card { min-height: 18rem; }
  .detail-layout, .content-layout { grid-template-columns: 1fr; }
  .detail-visual { min-height: 90vw; }
  .artist-row { grid-template-columns: 2.5rem 1fr auto; }
  .artist-row p { display: none; }
  .section-heading { display: block; }
  .section-heading .eyebrow { margin-bottom: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
