
:root{
  --ground:#FAFAF8;
  --ink:#111111;
  --muted:#6b6b68;
  --line:#e6e4df;
  --link-hover:#8a8880;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:var(--ground);
  color:var(--ink);
  font-family:'Montserrat',-apple-system,Segoe UI,Helvetica,Arial,sans-serif;
  font-size:16px;
  line-height:1.6;
}
h1,h2,.wordmark{
  font-family:'Montserrat',sans-serif;
  font-weight:500;
  letter-spacing:-0.01em;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.site-header{
  display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-start;
  padding:3rem 3rem;
  border-bottom:1px solid var(--line);
}
.wordmark{font-size:1.56rem;font-weight:400;text-transform:uppercase;letter-spacing:.02em}
.site-nav{display:flex;flex-direction:column;align-items:flex-end;gap:.25rem;font-size:.8rem}
.site-nav a{color:var(--muted);padding-bottom:0;border-bottom:1px solid transparent}
.site-nav a:hover,.site-nav a.active{color:var(--ink)}
.nav-toggle{display:none}

/* Hamburger nav — every page except Home, which keeps its own full-screen overlay header
   untouched. Collapsing the stacked link list down to one icon shrinks the header, so a page's
   actual content (the first row of images) starts near the top of the screen instead of being
   pushed down by 7 stacked links. The header stays stuck to the top on scroll so the menu is
   reachable from anywhere on a long page, not just at the very top. */
body:not(.home-page) .site-header{
  position:sticky;top:0;z-index:10;
  background:var(--ground);
  padding:1.25rem 2rem;
  align-items:center;
}
body:not(.home-page) .nav-toggle{
  display:flex;flex-direction:column;justify-content:center;gap:5px;
  width:26px;height:20px;background:none;border:none;padding:0;cursor:pointer;
}
body:not(.home-page) .nav-toggle span{display:block;width:100%;height:2px;background:var(--ink)}
body:not(.home-page) .site-nav{
  display:none;
  position:absolute;top:100%;right:2rem;margin-top:.5rem;
  background:var(--ground);border:1px solid var(--line);
  padding:1.25rem 1.5rem;gap:.7rem;font-size:.9rem;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}
body:not(.home-page) .site-header.nav-open .site-nav{display:flex}

main{max-width:1200px;margin:0 auto;padding:0 0 4rem}

.page-intro{padding:3rem 2rem 2rem}
.page-intro h1{font-size:2.2rem;margin:0 0 .75rem}
.page-intro p{max-width:60ch;color:var(--muted)}

.hero-section{padding:0}
.hero-image{margin:0;aspect-ratio:16/9;overflow:hidden}
.hero-image img{width:100%;height:100%;object-fit:cover;display:block}
@media (max-width:700px){.hero-image{aspect-ratio:4/5}}
.hero-caption{display:flex;justify-content:space-between;gap:1rem;font-size:.85rem;color:var(--muted);padding:.75rem 2rem;flex-wrap:wrap}

.section-links{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1px;background:var(--line);margin-top:2rem;border:1px solid var(--line)}
.section-links a{background:var(--ground);padding:2rem 1.5rem;font-family:'Montserrat',sans-serif;font-size:1.1rem}
.section-links a:hover{background:#f1f0ea}
.section-links span{display:block;font-family:'Montserrat',sans-serif;font-size:.8rem;color:var(--muted);margin-top:.4rem;text-transform:none;letter-spacing:0}

.work-grid{display:flex;flex-direction:column;margin-top:0}
.work-card{display:block}
.work-card-img{background:#f1f0ea;overflow:hidden;aspect-ratio:3/2}
.work-card-img img{width:100%;height:100%;object-fit:cover;display:block}
@media (max-width:700px){.work-card-img{aspect-ratio:4/5}}
.work-card-img.no-crop img{object-fit:contain;background:var(--ground)}
/* Inline own-ratio style (own_ratio_style() in generate_site.py) keeps this photo at its real
   ratio at every width, same as a portrait-photo figure on the work page — no separate mobile
   rule, since an inline style always outranks a class rule regardless of media query. */
.work-card-caption{display:flex;justify-content:space-between;gap:1rem;padding:.75rem 0 2rem;font-size:.85rem;color:var(--muted);flex-wrap:wrap}
.placeholder{width:100%;aspect-ratio:16/9;display:flex;align-items:center;justify-content:center;color:var(--muted);font-size:.85rem;text-align:center;padding:1rem;background:#f1f0ea}
.placeholder-large{height:40vh;border:1px dashed var(--line)}

.breadcrumb{font-size:14px;color:var(--muted);margin:2rem 0 1.5rem;padding:0}
.breadcrumb a:hover{color:var(--ink)}
.work-page h1{font-size:28px;margin:0 0 .3rem}
.work-meta{color:var(--ink);margin:.3rem 0 .5rem;font-size:14px}
.work-images{display:flex;flex-direction:column;gap:13px;margin-top:1.5rem;margin-bottom:2rem}
.work-images figure{margin:0;aspect-ratio:3/2;overflow:hidden;position:relative}
.work-images img{width:100%;height:100%;object-fit:cover;display:block}
.work-images figcaption{position:absolute;left:0;right:0;bottom:0;padding:.6rem 1rem;font-size:.8rem;color:#fff;background:linear-gradient(transparent,rgba(0,0,0,.65))}
.work-images .img-credit{position:absolute;right:.5rem;bottom:.4rem;padding:.15rem .5rem;font-size:.7rem;color:#fff;background:rgba(0,0,0,.5);border-radius:2px}
@media (max-width:700px){.work-images figure{aspect-ratio:4/5}}
.work-images figure.portrait-photo{aspect-ratio:2/3} /* fallback only — generate_site.py sets each photo's real ratio inline, overriding this */
.work-images figure.portrait-photo img{object-fit:contain;background:var(--ground)}
.work-note{margin:.5rem 0 0;font-size:14px;color:var(--muted)}
.work-note a{color:inherit}
.work-statement{max-width:65ch;margin:2rem 0 0;font-size:14px;line-height:1.7}

.bio-grid{display:grid;grid-template-columns:1fr 320px;gap:3rem;align-items:start;padding:.5rem 2rem 0}
.bio-grid .headshot{order:2}
.bio-grid .headshot img{width:100%;aspect-ratio:4/5;object-fit:cover}
.bio-grid .prose{order:1}
.bio-grid .prose p{max-width:65ch;margin-bottom:1.2rem}
@media (max-width:700px){.bio-grid{grid-template-columns:1fr;gap:1.5rem}}
.artist-statement{padding:1rem 2rem 0;max-width:75ch}
.artist-statement h2{margin-top:0}
.download-row{display:flex;justify-content:space-between;align-items:center;gap:1rem;padding:1rem 2rem;border-top:1px solid var(--line);flex-wrap:wrap;max-width:900px;margin:2rem 2rem 0 2rem}
.download-row:first-of-type{margin-top:3rem}
.download-row span{font-size:.95rem}
.download-row a{padding:.6rem 1.3rem;border:1px solid var(--ink);font-size:.85rem;font-family:'Montserrat',sans-serif}
.download-row a:hover{background:var(--ink);color:var(--ground)}
.download-row a.disabled{opacity:.4;cursor:not-allowed}
.download-row a.disabled:hover{background:none;color:inherit}
.bio-footnote{padding:2rem 2rem 0;color:var(--muted);font-size:.9rem}

.contact-form{max-width:480px;margin:2rem 2rem 0;display:flex;flex-direction:column;gap:1.1rem}
.contact-form label{font-size:.8rem;text-transform:uppercase;letter-spacing:.04em;color:var(--muted)}
.contact-form input,.contact-form textarea{
  font-family:inherit;font-size:1rem;padding:.6rem .1rem;border:none;border-bottom:1px solid var(--line);
  background:transparent;color:var(--ink)
}
.contact-form input:focus,.contact-form textarea:focus{outline:none;border-bottom-color:var(--ink)}
.contact-form button{
  margin-top:.5rem;padding:.8rem 1.6rem;background:var(--ink);color:var(--ground);border:none;
  font-family:'Montserrat',sans-serif;cursor:pointer;width:fit-content
}
.contact-form button:hover{background:#333}
.checkbox-row{display:flex;align-items:center;gap:.5rem;flex-direction:row}
.checkbox-row label{text-transform:none;letter-spacing:0;font-size:.9rem;color:var(--ink)}
.hp-field{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.form-status{max-width:480px;margin:2rem 2rem 0;padding:1rem;border:1px solid var(--line);font-size:.95rem}
.form-status-error{border-color:#b3261e;color:#b3261e}

/* The real Framer site has no persistent address footer on any page — matched here. */
.site-footer{display:none}
.build-note{font-size:.75rem;color:var(--muted);text-align:center;padding:2rem}

/* Home page only: one full-screen photo as the background, header/nav floating on top of it,
   locked to one screen with no scroll. The header used to sit in its own band above the image,
   which left the image only a thin leftover strip to fill and forced a bad crop — now the image
   fills the entire viewport and the header overlays it instead of pushing it down. */
body.home-page{height:100vh;height:100dvh;overflow:hidden;position:relative}

body.home-page .site-header{
  position:absolute;top:0;left:0;right:0;z-index:2;
  border-bottom:none;
  background:linear-gradient(rgba(0,0,0,.5),transparent);
}
body.home-page .site-header .wordmark,
body.home-page .site-header .site-nav a{color:#fff;text-shadow:0 1px 4px rgba(0,0,0,.5)}
body.home-page .site-header .site-nav a:hover,
body.home-page .site-header .site-nav a.active{color:#fff;opacity:.75}

body.home-page main{position:absolute;inset:0;max-width:none;margin:0;padding:0}
body.home-page .hero-section{position:absolute;inset:0;padding:0}
body.home-page .hero-image{width:100%;height:100%;aspect-ratio:auto}
body.home-page .hero-caption{
  position:absolute;left:0;right:0;bottom:0;margin:0;color:rgba(255,255,255,.5);z-index:2;
  background:linear-gradient(transparent,rgba(0,0,0,.65));padding:1rem 2rem;
  display:flex;justify-content:flex-end
}
body.home-page .hero-credit{font-size:.75rem}
body.home-page .build-note{display:none}

/* Home page's nav stays a full stacked list at desktop width (operator-approved look), but on a
   phone that list sits directly on top of the hero photo and gets hard to read — collapse it to
   the same hamburger every other page already uses, below the breakpoint only. */
@media (max-width:700px){
  body.home-page .nav-toggle{
    display:flex;flex-direction:column;justify-content:center;gap:5px;
    width:26px;height:20px;background:none;border:none;padding:0;cursor:pointer;
  }
  body.home-page .nav-toggle span{display:block;width:100%;height:2px;background:#fff;box-shadow:0 1px 4px rgba(0,0,0,.5)}
  body.home-page .site-nav{
    display:none;flex-direction:column;align-items:flex-end;
    position:absolute;top:100%;right:1.5rem;margin-top:.5rem;
    background:rgba(17,17,17,.85);padding:1.25rem 1.5rem;gap:.7rem;font-size:.9rem;
  }
  body.home-page .site-header.nav-open .site-nav{display:flex}
  body.home-page .site-header{padding:1.25rem 1.5rem}
}
