:root {
  --ink: #192b34;
  --muted: #66747a;
  --paper: #fffefa;
  --warm: #f4efe7;
  --line: #d9d4ca;
  --accent: #b64e2f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; }
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between;
  min-height: 82px; padding: 0 4.5vw; border-bottom: 1px solid rgba(25,43,52,.12);
  background: rgba(255,254,250,.93); backdrop-filter: blur(14px);
}
.wordmark { font: 1.05rem Georgia, "Times New Roman", serif; letter-spacing: .02em; white-space: nowrap; }
.site-header nav { display: flex; gap: clamp(1.15rem,3vw,3.2rem); font-size: .74rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.site-header nav a, footer > a:last-child { position: relative; }
.site-header nav a::after, footer > a:last-child::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--accent); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .18s ease; }
.site-header nav a:hover::after, .site-header nav a:focus::after, footer > a:last-child:hover::after { transform: scaleX(1); transform-origin: left; }

.hero { display: grid; grid-template-columns: minmax(330px,.72fr) minmax(0,1.28fr); min-height: calc(100vh - 82px); }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3.5rem,8vw,8.5rem) 4.5vw; background: linear-gradient(115deg,rgba(200,219,227,.54),transparent 58%),var(--paper); }
.eyebrow, .section-index { margin: 0 0 2.2rem; color: var(--accent); font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.hero h1 { margin: 0; font: 400 clamp(4rem,7.6vw,8.6rem)/.82 Georgia,"Times New Roman",serif; letter-spacing: -.065em; }
.hero h1::after { display: block; width: 74px; height: 3px; margin-top: 2.4rem; background: var(--accent); content: ""; }
.hero-intro { max-width: 34rem; margin: 2.4rem 0 0; color: #3f5159; font: clamp(1.05rem,1.45vw,1.35rem)/1.65 Georgia,"Times New Roman",serif; }
.discover { display: inline-flex; align-items: center; align-self: flex-start; gap: .7rem; margin-top: 3.2rem; padding-bottom: .55rem; border-bottom: 1px solid var(--ink); font-size: .73rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.discover span { transition: transform .18s ease; }
.discover:hover span { transform: translateY(4px); }
.hero-art { position: relative; min-height: 620px; margin: 0; overflow: hidden; background: #d9cbb3; }
.hero-art > img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.65,.3,1); }
.hero-art:hover > img { transform: scale(1.025); }
.hero-art figcaption { position: absolute; right: 2rem; bottom: 2rem; left: 2rem; display: flex; justify-content: space-between; gap: 2rem; padding: .85rem 1rem; color: white; background: rgba(15,31,38,.76); backdrop-filter: blur(8px); font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }

.statement { display: grid; grid-template-columns: .6fr 1.4fr; gap: 4rem; padding: clamp(6rem,10vw,11rem) 8vw; background: var(--warm); }
.statement blockquote { max-width: 64rem; margin: 0; font: clamp(2rem,3.65vw,4.25rem)/1.15 Georgia,"Times New Roman",serif; letter-spacing: -.035em; }
.works { padding: clamp(6rem,10vw,10rem) 4.5vw; }
.section-heading { display: grid; grid-template-columns: 1fr minmax(260px,.55fr); gap: 4rem; align-items: end; margin-bottom: clamp(3rem,6vw,6rem); }
.section-heading h2, .bio-copy h2, .contact h2 { max-width: 780px; margin: 0; font: 400 clamp(2.8rem,5.4vw,6.4rem)/.98 Georgia,"Times New Roman",serif; letter-spacing: -.055em; }
.section-heading > p { margin: 0; color: var(--muted); font-size: .98rem; line-height: 1.7; }

.art-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: clamp(2.6rem,5vw,6rem) clamp(1.2rem,2.7vw,3rem); align-items: start; }
.art-card { min-width: 0; }
.art-card:nth-child(3n+2) { margin-top: 6rem; }
.art-card-wide { grid-column: span 2; }
.art-button { width: 100%; padding: 0; border: 0; color: inherit; background: transparent; text-align: left; cursor: zoom-in; }
.art-button:focus { outline: 2px solid var(--accent); outline-offset: 5px; }
.art-image { position: relative; display: block; overflow: hidden; background: var(--warm); }
.art-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s cubic-bezier(.2,.65,.3,1); }
.art-card-wide .art-image img { aspect-ratio: 16/9; }
.art-image i { position: absolute; right: 1rem; bottom: 1rem; display: grid; width: 42px; height: 42px; place-items: center; color: white; background: rgba(25,43,52,.82); font: normal 1.35rem Arial,sans-serif; opacity: 0; transform: translateY(6px); transition: opacity .18s ease,transform .18s ease; }
.art-button:hover .art-image img, .art-button:focus .art-image img { transform: scale(1.025); }
.art-button:hover .art-image i, .art-button:focus .art-image i { opacity: 1; transform: translateY(0); }
.art-caption { display: flex; justify-content: space-between; gap: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.art-caption > span { display: flex; flex-direction: column; gap: .3rem; }
.art-caption strong { font: 400 1.08rem Georgia,"Times New Roman",serif; }
.art-caption small { color: var(--muted); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }

.biography { display: grid; grid-template-columns: minmax(0,.95fr) minmax(360px,1.05fr); gap: clamp(4rem,8vw,10rem); padding: clamp(6rem,10vw,11rem) 8vw; background: var(--ink); color: #f8f5ed; }
.bio-images { position: sticky; top: 120px; align-self: start; min-height: 620px; }
.bio-main { width: 88%; height: 590px; object-fit: cover; filter: sepia(.08) contrast(1.04); }
.bio-secondary { position: absolute; right: 0; bottom: -1.5rem; width: 52%; border: 10px solid var(--ink); box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.bio-copy .section-index { color: #e78969; }
.bio-copy h2 { margin-bottom: 3rem; }
.bio-copy > p:not(.section-index) { max-width: 43rem; margin: 0 0 1.4rem; color: #cdd7d9; font-size: clamp(1rem,1.35vw,1.15rem); line-height: 1.8; }
.bio-copy .bio-lead { color: #f4f0e8; font: clamp(1.15rem,1.7vw,1.45rem)/1.7 Georgia,"Times New Roman",serif; }
.critical-notes { max-width: 43rem; margin: 3.2rem 0; padding: 2.2rem 0; border-top: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); }
.critical-notes h3 { margin: 0 0 2rem; color: #e78969; font: 400 1.4rem Georgia,"Times New Roman",serif; }
.critical-notes blockquote { margin: 0 0 2rem; padding-left: 1.4rem; border-left: 2px solid #e78969; color: #e5ebeb; font: 1.04rem/1.75 Georgia,"Times New Roman",serif; }
.critical-notes blockquote:last-child { margin-bottom: 0; }
.critical-notes cite { display: block; margin-top: .8rem; color: #98aaaf; font: normal .68rem Arial,Helvetica,sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.bio-meta { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; margin-top: 3.5rem; background: rgba(255,255,255,.18); }
.bio-meta > div { display: flex; flex-direction: column; min-height: 160px; padding: 1.4rem; background: var(--ink); }
.bio-meta span, .bio-meta small { color: #98aaaf; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.bio-meta strong { margin: auto 0 .25rem; font: 400 2.5rem Georgia,"Times New Roman",serif; }

.contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: 6rem; padding: clamp(6rem,10vw,11rem) 8vw; background: linear-gradient(100deg,rgba(200,219,227,.54),transparent 60%),var(--warm); }
.contact-details { align-self: end; }
.contact-details p { max-width: 34rem; margin: 0 0 2.2rem; color: #506067; line-height: 1.75; }
.contact-details a, .contact-details span { display: block; width: fit-content; margin-top: 1rem; font: clamp(1rem,1.65vw,1.35rem) Georgia,"Times New Roman",serif; }
.contact-details a { padding-bottom: .4rem; border-bottom: 1px solid var(--ink); }

footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; min-height: 130px; padding: 2rem 4.5vw; color: #d9e1e2; background: #102029; }
footer p, footer > a:last-child { margin: 0; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
footer > a:last-child { justify-self: end; }

.lightbox { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 1rem; background: rgba(5,18,23,.85); }
.lightbox.is-open { display: grid; }
.lightbox-panel { width: min(1120px,100%); max-height: calc(100vh - 2rem); overflow: auto; background: #f6f1e9; box-shadow: 0 30px 90px rgba(0,0,0,.45); }
.lightbox-panel img { width: 100%; max-height: 78vh; object-fit: contain; background: #e7dfd2; }
.lightbox-caption { display: flex; justify-content: space-between; gap: 2rem; padding: 1.2rem 1.5rem 1.5rem; }
.lightbox-caption strong { font: 400 1.4rem Georgia,"Times New Roman",serif; }
.lightbox-caption span { color: var(--muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.lightbox-close { position: fixed; top: 1.8rem; right: 1.8rem; z-index: 101; width: 42px; height: 42px; border: 0; color: white; background: rgba(25,43,52,.9); font-size: 1.8rem; line-height: 1; cursor: pointer; }

@media (max-width: 950px) {
  .hero, .statement, .section-heading, .biography, .contact { grid-template-columns: 1fr; }
  .hero-copy { min-height: 580px; }
  .hero-art { min-height: 68vw; }
  .statement, .section-heading, .biography, .contact { gap: 2.8rem; }
  .art-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .art-card:nth-child(3n+2) { margin-top: 0; }
  .art-card:nth-child(even):not(.art-card-wide) { margin-top: 4rem; }
  .bio-images { position: relative; top: auto; max-width: 700px; }
  .bio-main { width: 78%; }
}

@media (max-width: 640px) {
  .site-header { min-height: 70px; padding: 0 1.1rem; }
  .wordmark { font-size: .95rem; }
  .site-header nav { gap: .85rem; font-size: .58rem; letter-spacing: .08em; }
  .hero-copy { min-height: 520px; padding: 4rem 1.1rem; }
  .hero h1 { font-size: clamp(3.55rem,18vw,5.6rem); }
  .hero-art { min-height: 82vw; }
  .hero-art figcaption { right: .75rem; bottom: .75rem; left: .75rem; }
  .statement, .biography, .contact { padding: 5.5rem 1.1rem; }
  .statement blockquote { font-size: 2rem; }
  .works { padding: 5.5rem 1.1rem; }
  .section-heading { margin-bottom: 3.5rem; }
  .section-heading h2, .bio-copy h2, .contact h2 { font-size: clamp(2.75rem,13vw,4.25rem); }
  .art-grid { grid-template-columns: 1fr; gap: 3.4rem; }
  .art-card-wide { grid-column: auto; }
  .art-card:nth-child(even):not(.art-card-wide) { margin-top: 0; }
  .art-image img, .art-card-wide .art-image img { aspect-ratio: auto; max-height: 76vh; object-fit: contain; }
  .art-image i { opacity: 1; transform: none; }
  .bio-images { min-height: 430px; }
  .bio-main { width: 88%; height: 410px; }
  .bio-secondary { width: 58%; border-width: 7px; }
  .bio-meta { grid-template-columns: 1fr; }
  .contact { gap: 3.5rem; }
  .contact-details a { font-size: .93rem; }
  footer { grid-template-columns: 1fr; gap: 1rem; padding: 2.5rem 1.1rem; }
  footer > a:last-child { justify-self: start; }
  .lightbox-close { top: 1.25rem; right: 1.25rem; }
  .lightbox-caption { flex-direction: column; gap: .5rem; }
}

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