/* Blair McMahon — site styles */
@font-face { font-family: "Inter Tight"; font-style: normal; font-weight: 300; font-display: swap; src: url("fonts/inter-tight-latin-300-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter Tight"; font-style: italic; font-weight: 300; font-display: swap; src: url("fonts/inter-tight-latin-300-italic.woff2") format("woff2"); }
@font-face { font-family: "Inter Tight"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/inter-tight-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter Tight"; font-style: italic; font-weight: 400; font-display: swap; src: url("fonts/inter-tight-latin-400-italic.woff2") format("woff2"); }
@font-face { font-family: "Inter Tight"; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/inter-tight-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter Tight"; font-style: italic; font-weight: 500; font-display: swap; src: url("fonts/inter-tight-latin-500-italic.woff2") format("woff2"); }
:root {
  --paper: #F6F5F1;
  --ink: #141414;
  --muted: #66655F;
  --rule: #DCD9D2;
  --g: clamp(20px, 6.1vw, 88px);
  --col-gap: clamp(12px, 1.7vw, 24px);
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", "Inter Tight", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--muted); }
img { display: block; max-width: 100%; height: auto; }
em { font-style: italic; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 400; }
:focus-visible { outline: 1px solid var(--ink); outline-offset: 4px; }

.lbl { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; line-height: 1.5; }
.mut { color: var(--muted); }
.wrap { padding-left: var(--g); padding-right: var(--g); }
.grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--col-gap); }
.rule { border-top: 1px solid var(--rule); }
.link { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.skip { position: absolute; left: -9999px; top: 0; }
.skip:focus { left: 16px; top: 16px; background: var(--paper); padding: 10px 14px; z-index: 100; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* reveal */
.reveal { opacity: 0; transition: opacity 1s ease; }
.reveal.in, .no-js .reveal { opacity: 1; }

/* ---------- header ---------- */
.site-header { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 34px var(--g) 0; position: relative; z-index: 20; }
.wordmark { font-size: 13px; letter-spacing: .26em; font-weight: 500; white-space: nowrap; }
.site-nav { display: flex; gap: clamp(22px, 3vw, 44px); }
.site-nav a { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; padding: 6px 0; border-bottom: 1px solid transparent; white-space: nowrap; }
.site-nav a[aria-current="page"] { border-bottom-color: currentColor; }
.menu-toggle { display: none; }

@media (max-width: 860px) {
  .site-header { padding-top: 10px; }
  .menu-toggle {
    display: inline-flex; align-items: center; min-height: 44px; padding: 0; margin: 0;
    background: none; border: 0; color: inherit; cursor: pointer;
    font: inherit; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
    position: relative; z-index: 40;
  }
  .site-nav {
    display: none; position: fixed; inset: 0; z-index: 30; background: var(--paper);
    flex-direction: column; justify-content: center; gap: 0; padding: 0 var(--g);
  }
  .site-nav.open { display: flex; }
  .site-nav a { white-space: normal; font-size: clamp(28px, 8.2vw, 48px); letter-spacing: -.02em; text-transform: none; font-weight: 400; line-height: 1.15; padding: 10px 0; border-bottom: 0; border-top: 1px solid var(--rule); }
  .site-nav a:last-child { border-bottom: 1px solid var(--rule); }
  .site-nav a[aria-current="page"] { color: var(--muted); }
  body.nav-open { overflow: hidden; }
}

/* ---------- footer ---------- */
.site-footer { margin: clamp(120px, 14vw, 200px) var(--g) 0; padding: 48px 0 44px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.site-footer .who { display: flex; flex-direction: column; gap: 8px; }
.site-footer .links { display: flex; gap: 32px; flex-wrap: wrap; }
.site-footer .links a, .site-footer .links span { min-height: 24px; display: inline-flex; align-items: center; }

/* ---------- home ---------- */
.hero { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; padding-bottom: var(--g); }
.masthead {
  margin: 26px 0 0; padding: 0 calc(var(--g) - 6px);
  font-weight: 300; font-size: 10.2vw; line-height: .92; letter-spacing: -.02em;
  white-space: nowrap; overflow: hidden;
  animation: rise 1.4s cubic-bezier(.2, .7, .2, 1) .15s both;
}
@keyframes rise { from { transform: translateY(30%); opacity: 0; } to { transform: none; opacity: 1; } }
.hero-meta { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px var(--g); }
.caps { position: relative; flex: 1 1 auto; height: 17px; }
.caps span { position: absolute; right: 0; top: 50%; transform: translateY(-50%); white-space: nowrap; opacity: 0; transition: opacity 1.4s ease; }
.caps span.on { opacity: 1; }
.hero-frame { position: relative; display: block; flex: 1 1 auto; min-height: 340px; margin: 0 var(--g); background: #2B6E7E; overflow: hidden; }
.hero-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.8s ease; }
.hero-frame img.on { opacity: 1; }

.home-series { padding-top: clamp(120px, 17vw, 240px); align-items: end; }
.home-series .txt { grid-column: 1 / span 4; display: flex; flex-direction: column; gap: 26px; padding-bottom: 6px; }
.home-series .pic { grid-column: 6 / span 7; }
.home-series.alt .pic { grid-column: 2 / span 4; grid-row: 1; }
.home-series.alt .txt { grid-column: 8 / span 5; }
.series-title { font-size: clamp(56px, 6.7vw, 96px); line-height: .95; letter-spacing: -.02em; }
.home-series .blurb { max-width: 360px; }

.now { padding-top: clamp(120px, 17vw, 240px); }
.now .row { padding-top: 36px; align-items: baseline; row-gap: 16px; }
.now .k { grid-column: 1 / span 3; }
.now .v { grid-column: 4 / span 6; display: flex; flex-direction: column; gap: 12px; }
.now .v .t { font-size: clamp(28px, 3vw, 44px); line-height: 1.1; letter-spacing: -.015em; }
.now .go { grid-column: 11 / span 2; justify-self: end; }

/* ---------- series page ---------- */
.series-head { padding-top: clamp(80px, 10vw, 140px); row-gap: 48px; }
.crumbs { grid-column: 1 / -1; display: flex; gap: 10px; }
.series-head .name { grid-column: 1 / span 7; display: flex; flex-direction: column; gap: 26px; }
.series-head h1 { font-size: clamp(72px, 10.4vw, 150px); line-height: .88; letter-spacing: -.03em; }
.series-head h1.long { font-size: clamp(48px, 6.5vw, 96px); line-height: .92; }
.series-head .name:has(h1.long) { grid-column: 1 / span 8; }
.series-head .statement { grid-column: 9 / span 4; align-self: end; display: flex; flex-direction: column; gap: 18px; }
.statement p { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.55; }
.notice { font-size: 13px; line-height: 1.6; color: var(--muted); border-top: 1px solid var(--rule); padding-top: 14px; }

.work-row { padding-top: clamp(120px, 15vw, 220px); align-items: center; }
.work-row figure { margin: 0; }
.cap { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-top: 16px; }
.cap-title { font-size: clamp(18px, 1.7vw, 24px); }
.work-row .aside { font-size: clamp(20px, 1.8vw, 26px); line-height: 1.45; letter-spacing: -.01em; }
.next-series { margin-top: clamp(120px, 15vw, 220px); padding-top: 30px; display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.next-series .t { font-size: clamp(36px, 3.9vw, 56px); letter-spacing: -.02em; line-height: 1; }

/* ---------- artwork page ---------- */
.aw-top { padding-top: clamp(40px, 5vw, 72px); align-items: start; }
.aw-fig { grid-column: 1 / span 7; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.aw-fig.portrait { grid-column: 1 / span 6; }
.aw-fig.portrait { width: fit-content; max-width: 100%; }
.aw-fig.portrait img { max-height: calc(100vh - 180px); min-height: 520px; width: auto; }
.aw-fig .under { display: flex; justify-content: space-between; gap: 16px; }
.aw-info { grid-column: 9 / span 4; position: sticky; top: 32px; display: flex; flex-direction: column; }
.artist { font-size: clamp(24px, 2.1vw, 30px); font-weight: 500; letter-spacing: -.01em; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; align-self: flex-start; }
.aw-title { font-size: clamp(21px, 1.8vw, 26px); letter-spacing: -.01em; margin-top: 6px; }
.aw-series { margin-top: 4px; color: var(--muted); font-weight: 300; font-size: 17px; }
.aw-series a { color: var(--muted); }
.aw-medium { margin-top: 26px; font-weight: 300; font-size: 17px; line-height: 1.45; }
.aw-ed { margin-top: 20px; font-weight: 300; font-size: 17px; line-height: 1.45; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 44px; margin-top: 34px; align-self: flex-start; border: 1px solid var(--ink); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; transition: background .2s, color .2s; }
.btn:hover { background: var(--ink); color: var(--paper); }
.aw-note { margin-top: 18px; font-size: 13px; line-height: 1.6; }
.aw-text { padding-top: clamp(100px, 12vw, 180px); }
.aw-text .k, .aw-details .k { grid-column: 1 / span 3; padding-top: 6px; }
.aw-text .v { grid-column: 4 / span 6; display: flex; flex-direction: column; gap: 20px; }
.aw-text .v p { font-size: clamp(20px, 1.8vw, 26px); line-height: 1.45; letter-spacing: -.01em; }
.aw-details { padding-top: clamp(80px, 10vw, 150px); }
.aw-details .v { grid-column: 4 / span 8; border-bottom: 1px solid var(--rule); }
.spec { display: grid; grid-template-columns: 200px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--rule); font-size: 15px; line-height: 1.5; }
.pager { margin-top: clamp(100px, 12vw, 180px); padding-top: 28px; display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.pager a { display: inline-flex; gap: 14px; align-items: baseline; }
.pager .t { font-size: clamp(18px, 1.8vw, 26px); font-style: italic; }

/* ---------- about ---------- */
.about-head { padding-top: clamp(80px, 11vw, 160px); row-gap: 40px; }
.about-head .k { grid-column: 1 / span 4; display: flex; flex-direction: column; gap: 22px; }
.about-head h1 { font-size: clamp(48px, 5vw, 72px); line-height: .95; letter-spacing: -.02em; }
.about-head .v { grid-column: 6 / span 6; display: flex; flex-direction: column; gap: 26px; padding-top: 30px; }
.about-head .lead { font-size: clamp(26px, 2.4vw, 34px); line-height: 1.3; letter-spacing: -.015em; }
.about-head .body { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.6; }
.cv { padding-top: clamp(100px, 13vw, 200px); }
.cv .k { grid-column: 1 / span 3; padding-top: 18px; }
.cv .v { grid-column: 6 / span 6; border-bottom: 1px solid var(--rule); }
.cv-row { display: grid; grid-template-columns: 90px 1fr; gap: 12px; padding: 18px 0; border-top: 1px solid var(--rule); font-size: 15px; line-height: 1.5; }

/* ---------- contact ---------- */
.contact { padding-top: clamp(80px, 11vw, 160px); align-items: start; row-gap: 56px; }
.contact .k { grid-column: 1 / span 5; display: flex; flex-direction: column; gap: 28px; }
.contact h1 { font-size: clamp(64px, 8.3vw, 120px); line-height: .9; letter-spacing: -.02em; }
.contact .intro { font-size: clamp(20px, 1.7vw, 24px); line-height: 1.5; max-width: 420px; }
.regarding { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; border-top: 1px solid var(--rule); padding-top: 16px; max-width: 420px; }
.regarding[hidden] { display: none; }
.contact form { grid-column: 7 / span 6; display: flex; flex-direction: column; gap: 36px; padding-top: 18px; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field input, .field textarea {
  font: inherit; font-size: 17px; color: var(--ink); background: transparent;
  border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; padding: 10px 0 12px; width: 100%;
}
.field input:focus, .field textarea:focus { outline: none; border-bottom-width: 2px; padding-bottom: 11px; }
.field textarea { resize: vertical; min-height: 130px; }
.hp { display: none; }
.form-btn { font: inherit; background: var(--ink); color: var(--paper); border: 1px solid var(--ink); border-radius: 0; min-height: 58px; padding: 0 52px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; cursor: pointer; align-self: flex-start; }
.form-btn:hover { background: #33322F; }
.fine { font-size: 13px; line-height: 1.6; }

/* ---------- simple pages ---------- */
.simple { padding-top: clamp(100px, 14vw, 200px); min-height: 50vh; }
.simple h1 { font-size: clamp(56px, 7vw, 104px); line-height: .92; letter-spacing: -.02em; }
.simple p { margin-top: 26px; font-size: clamp(18px, 1.6vw, 22px); max-width: 560px; }

/* ---------- commissions ---------- */
.com-head { padding-top: clamp(80px, 9vw, 120px); align-items: end; row-gap: 48px; }
.com-head .cover { grid-column: 1 / span 5; }
.com-head .k { grid-column: 7 / span 6; display: flex; flex-direction: column; gap: 28px; }
.com-head h1 { font-size: clamp(56px, 7.8vw, 112px); line-height: .9; letter-spacing: -.03em; }
.com-head .lead { font-size: clamp(19px, 1.6vw, 22px); line-height: 1.55; }
.com-block { padding-top: clamp(100px, 12vw, 180px); }
.trio { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--col-gap); align-items: start; }
.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; background: #ECEAE4; padding: clamp(20px, 4vw, 56px); }
.com-list { padding-top: clamp(80px, 11vw, 160px); }
.com-item { padding-top: 32px; align-items: end; row-gap: 24px; }
.com-item .pic { grid-column: 1 / span 4; }
.com-item .txt { grid-column: 6 / span 7; display: flex; flex-direction: column; gap: 18px; }
.com-item .t { font-size: clamp(40px, 4.5vw, 64px); line-height: .95; letter-spacing: -.02em; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .grid > * { grid-column: 1 / -1 !important; grid-row: auto !important; }
  .grid { row-gap: 28px; }
  .masthead { margin-top: 18px; }
  .hero { min-height: 0; }
  .hero-frame { flex: none; height: 62vh; min-height: 300px; }
  .home-series .pic { margin-top: 12px; }
  .home-series.alt .pic { width: 78%; margin-left: auto; order: -1; }
  .now .go { justify-self: start; }
  .series-head h1 { font-size: clamp(56px, 18vw, 110px); overflow-wrap: anywhere; }
  .series-head h1.long { font-size: clamp(44px, 12.5vw, 72px); }
  .work-row .aside { order: 2; }
  .aw-fig.portrait { width: auto; }
  .aw-fig.portrait img { max-height: none; min-height: 0; width: 100%; }
  .aw-info { position: static; margin-top: 28px; }
  .spec { grid-template-columns: 1fr; gap: 4px; }
  .two { grid-template-columns: 1fr; gap: 36px; }
  .trio { grid-template-columns: 1fr; gap: 28px; }
  .pager .mid { display: none; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; }
}
