:root {
  --ink: #20231f;
  --muted: #686d66;
  --paper: #f7f7f2;
  --panel: #ffffff;
  --accent: #375f50;
  --accent-soft: #dce9df;
  --line: #d9ddd7;
  --max: 1180px;
  --shadow: 0 18px 50px rgba(27, 38, 32, 0.09);
}

* { 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: 1rem;
  line-height: 1.65;
}

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

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 99;
  padding: .75rem 1rem;
  background: var(--ink);
  color: #fff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 221, 215, .9);
  background: rgba(247, 247, 242, .94);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  text-decoration: none;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.menu-button {
  display: none;
  padding: .55rem .75rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
  color: var(--ink);
  font: inherit;
}

.site-nav { display: flex; gap: 1.4rem; }

.site-nav a {
  position: relative;
  padding: .35rem 0;
  text-decoration: none;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current='page'] { color: var(--ink); }

.site-nav a[aria-current='page']::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
}

main { min-height: calc(100vh - 160px); }

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  min-height: 72vh;
  padding: clamp(3rem, 8vw, 7rem) 0;
}

.eyebrow {
  margin: 0 0 .7rem;
  color: var(--accent);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.12;
}

h1 {
  max-width: 16ch;
  margin: 0 0 1.4rem;
  font-size: clamp(2.7rem, 7vw, 6.2rem);
  letter-spacing: -.035em;
}

h2 { margin: 0 0 1.3rem; font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { margin: 0 0 .5rem; font-size: 1.45rem; }

.lead {
  max-width: 58ch;
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.button {
  display: inline-block;
  padding: .8rem 1.15rem;
  border: 1px solid var(--accent);
  border-radius: 3px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); background: #294a3e; }

.hero-art {
  min-height: 520px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-art img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }

.page-head { padding: clamp(3.5rem, 8vw, 7rem) 0 2rem; }
.page-head h1 { font-size: clamp(2.6rem, 6vw, 5rem); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: 1.5rem 0 clamp(4rem, 9vw, 8rem);
}

.work-card {
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(27, 38, 32, .07);
}

.work-card a { display: block; text-decoration: none; }
.work-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.work-card-body { padding: 1.25rem 1.35rem 1.5rem; }
.work-card p { margin: 0; color: var(--muted); }

.artwork-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(290px, .7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.artwork-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #eceee9;
  box-shadow: var(--shadow);
}

.artwork-copy { position: sticky; top: 112px; }
.artwork-copy h1 { font-size: clamp(2.3rem, 5vw, 4.6rem); }

.meta-table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
}

.meta-table th,
.meta-table td {
  padding: .6rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.meta-table th { width: 42%; color: var(--muted); font-weight: 400; }

.prose {
  max-width: 760px;
  padding: 0 0 clamp(4rem, 10vw, 9rem);
}

.prose p { margin: 0 0 1.2rem; }

.contact-card {
  max-width: 760px;
  margin-bottom: 7rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.contact-list { margin: 0; padding: 0; list-style: none; }
.contact-list li { padding: .75rem 0; border-bottom: 1px solid var(--line); }

.site-footer { border-top: 1px solid var(--line); color: var(--muted); }

.footer-wrap {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .9rem;
}

.footer-wrap p { margin: 0; }

@media (max-width: 800px) {
  .nav-wrap { min-height: 68px; flex-wrap: wrap; padding: .8rem 0; }
  .menu-button { display: block; }
  .site-nav { display: none; width: 100%; flex-direction: column; gap: 0; padding: .4rem 0 .8rem; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .7rem 0; }
  .hero, .artwork-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 3.5rem; }
  .hero-art, .hero-art img { min-height: 360px; }
  .artwork-copy { position: static; }
}

@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; }
  .page-head { padding-top: 2.7rem; }
  .hero-art, .hero-art img { min-height: 280px; }
  .footer-wrap { align-items: flex-start; flex-direction: column; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
