:root {
  --ink: #171715;
  --paper: #f3f0e9;
  --muted: #777268;
  --line: rgba(23, 23, 21, .18);
  --max: 1480px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
button, a { color: inherit; }
button { font: inherit; }
a { text-decoration: none; }
.site-header {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto; padding: 24px 34px;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: baseline; gap: 12px; }
.brand-name { font-family: Georgia, 'Times New Roman', serif; font-size: 24px; }
.brand-role { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.site-nav { display: flex; gap: 28px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.site-nav a { position: relative; }
.site-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: var(--ink); transition: right .2s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; border: 0; background: none; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.section-pad { max-width: var(--max); margin: 0 auto; padding: 92px 34px; }
.section-rule { border-top: 1px solid var(--line); }
.hero { min-height: calc(100vh - 78px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr); gap: 7vw; align-items: center; }
.hero-copy { max-width: 840px; }
.eyebrow { margin: 0 0 24px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .18em; }
h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; margin: 0; line-height: .96; }
h1 { font-size: clamp(32px, 3.6vw, 58px); letter-spacing: -.035em; line-height: 1.02; }
h2 { font-size: clamp(48px, 5vw, 82px); letter-spacing: -.035em; }
h3 { font-size: clamp(34px, 3vw, 52px); }
.intro { max-width: 580px; margin: 32px 0; color: var(--muted); font-size: 20px; }
.text-link { display: inline-block; border-bottom: 1px solid currentColor; padding-bottom: 3px; font-size: 14px; }
.hero-art { justify-self: end; width: min(100%, 520px); padding: 0; border: 0; background: none; cursor: zoom-in; }
.hero-art img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.section-head { display: grid; grid-template-columns: 1fr minmax(260px, 460px); gap: 48px; align-items: end; margin-bottom: 52px; }
.section-head p:last-child { margin: 0; color: var(--muted); font-size: 18px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.filter { border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: 9px 14px; cursor: pointer; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.filter:hover, .filter.active { background: var(--ink); color: var(--paper); }
.art-grid { columns: 4 260px; column-gap: 16px; }
.art-card { position: relative; break-inside: avoid; width: 100%; margin: 0 0 16px; border: 0; padding: 0; background: none; cursor: zoom-in; overflow: hidden; }
.art-card img { width: 100%; transition: transform .35s ease, opacity .35s ease; }
.art-card:hover img { transform: scale(1.015); opacity: .9; }
.art-card.hidden { display: none; }
.card-label { display: flex; justify-content: space-between; gap: 12px; padding: 8px 1px 0; color: var(--muted); font-size: 11px; text-align: left; text-transform: uppercase; letter-spacing: .06em; }
.commission-project { display: grid; grid-template-columns: 210px 1fr; gap: 56px; padding: 46px 0 72px; border-top: 1px solid var(--line); }
.project-no { display: block; margin-bottom: 18px; color: var(--muted); font-size: 12px; }
.commission-copy p { color: var(--muted); }
.commission-grid { display: grid; grid-template-columns: 1.2fr .85fr; gap: 16px; }
.commission-grid .image-card:nth-child(3) { grid-column: 2; }
.image-card { border: 0; padding: 0; background: none; cursor: zoom-in; overflow: hidden; }
.image-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.image-card:hover img { transform: scale(1.015); }
.dragonflies .image-card:first-child { grid-row: span 2; }
.serengeti-feature { display: grid; gap: 16px; }
.serengeti-feature > .image-card img { aspect-ratio: 4 / 1; object-fit: cover; }
.serengeti-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.design-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.design-card { border-top: 1px solid var(--line); padding-top: 14px; }
.design-card button { width: 100%; border: 0; background: none; padding: 0; cursor: zoom-in; }
.design-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: rgba(255,255,255,.35); }
.design-meta { margin-top: 12px; display: flex; justify-content: space-between; gap: 15px; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.design-meta span:last-child { color: var(--muted); }
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; }
.about-copy { max-width: 650px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(24px, 2.3vw, 38px); line-height: 1.25; }
.about-copy p { margin: 0 0 1.2em; }
.about-copy .domain { font-family: Arial, Helvetica, sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.site-footer { max-width: var(--max); margin: 0 auto; padding: 34px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.lightbox { width: 100vw; height: 100vh; max-width: none; max-height: none; margin: 0; border: 0; padding: 0; background: rgba(14,14,13,.96); color: white; }
.lightbox::backdrop { background: rgba(14,14,13,.96); }
.lightbox[open] { display: grid; place-items: center; }
.lightbox figure { margin: 0; display: grid; gap: 12px; max-width: min(92vw, 1500px); max-height: 92vh; justify-items: center; }
.lightbox img { max-width: 92vw; max-height: 84vh; object-fit: contain; }
.lightbox figcaption { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: #ccc; }
.lightbox-close { position: fixed; top: 18px; right: 24px; z-index: 2; border: 0; background: none; color: white; font-size: 42px; font-weight: 200; line-height: 1; cursor: pointer; }
@media (max-width: 900px) {
  .site-header { padding: 18px 20px; }
  .brand-role { display: none; }
  .menu-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; padding: 10px 20px 20px; background: var(--paper); border-bottom: 1px solid var(--line); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 0; }
  .section-pad { padding: 70px 20px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 80px; }
  .hero-art { justify-self: start; width: min(72vw, 440px); }
  .section-head { grid-template-columns: 1fr; gap: 22px; }
  .commission-project { grid-template-columns: 1fr; gap: 28px; }
  .design-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 52px; }
}
@media (max-width: 560px) {
  h1 { font-size: clamp(32px, 8.5vw, 44px); }
  .hero-art { width: 100%; }
  .commission-grid { grid-template-columns: 1fr; }
  .commission-grid .image-card:nth-child(3) { grid-column: auto; }
  .serengeti-details, .design-grid { grid-template-columns: 1fr; }
  .art-grid { columns: 2 150px; gap: 10px; }
  .art-card { margin-bottom: 10px; }
  .card-label { display: none; }
  .site-footer { padding: 26px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
