/* E.J. York — site styles. Written 2026-09-17, redesigned 2026-09-17. */

@font-face {
  font-family: "Caslon Display";
  src: url("assets/fonts/caslon-display.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/instrument-sans.woff2") format("woff2");
  font-weight: 400 600;
  font-display: swap;
}
/* Local fallbacks sized to the web fonts, so the swap does not move the page */
@font-face {
  font-family: "Caslon Fallback";
  src: local("Times New Roman"), local("Times");
  size-adjust: 96%;
  ascent-override: 98%;
  descent-override: 27%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Sans Fallback";
  src: local("Arial"), local("Helvetica");
  size-adjust: 103%;
  ascent-override: 94%;
  descent-override: 24%;
  line-gap-override: 0%;
}

:root {
  --ink: #1a1917;        /* warm charcoal */
  --ink-soft: #57534c;   /* secondary text on light */
  --paper: #f5f4f1;      /* page */
  --stone: #e6e3dc;      /* Park Avenue limestone */
  --bronze: #7a5530;     /* Anigre wood, text-safe on light */
  --bronze-light: #c9a27a; /* Anigre wood on dark */
  --on-dark: #f5f4f1;
  --on-dark-soft: #b8b2a8;
  --rule: rgba(26, 25, 23, 0.16);
  --rule-dark: rgba(245, 244, 241, 0.18);

  --serif: "Caslon Display", "Caslon Fallback", Georgia, serif;
  --sans: "Instrument Sans", "Sans Fallback", system-ui, sans-serif;

  --gutter: clamp(20px, 5vw, 72px);
  --max: 1320px;
  --section: clamp(88px, 12vw, 176px);
  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 1.0625rem/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--bronze); outline-offset: 4px; }
.dark :focus-visible, .hero :focus-visible, .quote :focus-visible, .site-header :focus-visible, .site-footer :focus-visible { outline-color: var(--bronze-light); }

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.04;
  text-wrap: balance;
}
h1 { font-size: clamp(2.75rem, 7.2vw, 6.5rem); }
h2 { font-size: clamp(2.25rem, 4.6vw, 4.25rem); }
h3 { font-size: clamp(1.625rem, 2.4vw, 2.25rem); line-height: 1.1; }
p { margin: 0 0 1.1em; max-width: 60ch; }

.wrap { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.label { display: block; font-size: 0.875rem; color: var(--ink-soft); letter-spacing: 0.01em; }
.dark .label, .hero .label { color: var(--on-dark-soft); }

.skip { position: absolute; left: 12px; top: -80px; z-index: 60; background: var(--paper); color: var(--ink); padding: 10px 16px; }
.skip:focus { top: 12px; }

/* ---------- links that act as buttons: quiet, underlined ---------- */
.link {
  display: inline-block; padding: 10px 0; min-height: 44px;
  font-weight: 500; text-decoration: none;
  background: linear-gradient(currentColor, currentColor) 0 calc(100% - 8px) / 100% 1px no-repeat;
  transition: background-size 0.5s var(--ease);
}
.link:hover { background-size: 40% 1px; }
.link.big {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.75rem, 3.4vw, 2.75rem); line-height: 1.2;
  padding: 6px 0 14px; background-position: 0 calc(100% - 6px); overflow-wrap: anywhere;
}

/* ---------- header, laid over the first image on every page ---------- */
.site-header { position: absolute; inset: 0 0 auto; z-index: 30; color: var(--on-dark); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 96px; }
.brand { text-decoration: none; font-family: var(--serif); font-size: 1.75rem; letter-spacing: -0.01em; line-height: 1; position: relative; z-index: 2; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav ul { display: flex; gap: 32px; margin: 0; padding: 0; list-style: none; }
.nav a { text-decoration: none; font-size: 0.9375rem; font-weight: 500; }
.nav ul a { display: inline-block; padding: 10px 0; background: linear-gradient(currentColor, currentColor) 0 calc(100% - 6px) / 0 1px no-repeat; transition: background-size 0.4s var(--ease); }
.nav ul a:hover, .nav ul a[aria-current="page"] { background-size: 100% 1px; }
.nav .call { padding: 11px 20px; border: 1px solid rgba(245, 244, 241, 0.5); border-radius: 999px; transition: background 0.3s, color 0.3s; }
.nav .call:hover { background: var(--on-dark); color: var(--ink); }
.menu-button { display: none; }
.menu-call { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--on-dark); overflow: hidden; background: var(--ink); }
.hero.short { min-height: min(78svh, 760px); }
.hero-image { position: absolute; inset: 0; margin: 0; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: var(--focus, 50% 50%); }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20, 18, 16, 0.6) 0%, rgba(20, 18, 16, 0) 24%),
    linear-gradient(0deg, rgba(20, 18, 16, 0.88) 0%, rgba(20, 18, 16, 0.4) 50%, rgba(20, 18, 16, 0.08) 78%);
}
.hero-content { position: relative; z-index: 2; padding: 140px 0 clamp(40px, 7vw, 88px); width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.hero h1 { max-width: 13ch; margin-bottom: 28px; }
.hero.short h1 { max-width: 16ch; }
.hero-foot { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 20px 48px; }
.hero-foot p { font-size: clamp(1.0625rem, 1.5vw, 1.25rem); color: rgba(245, 244, 241, 0.88); margin: 0; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0 32px; margin-top: 18px; }
.rating { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-size: 0.9375rem; padding: 10px 0; }
.rating .stars { color: var(--bronze-light); letter-spacing: 3px; font-size: 0.8125rem; }
.rating:hover span:last-child { text-decoration: underline; text-underline-offset: 4px; }

/* the one orchestrated moment: the photograph settles and the words arrive */
@media (prefers-reduced-motion: no-preference) {
  /* kept under a second and a half so the page looks finished quickly (Speed Index) */
  .hero-image img { animation: settle 1.4s var(--ease) both; }
  .hero-content > * { animation: rise 0.9s var(--ease) both; }
  .hero-content > :nth-child(2) { animation-delay: 0.08s; }
  .hero-content > :nth-child(3) { animation-delay: 0.16s; }
  @keyframes settle { from { transform: scale(1.04); } to { transform: none; } }
  @keyframes rise { from { opacity: 0.001; transform: translateY(16px); } to { opacity: 1; transform: none; } }
}

/* ---------- sections ---------- */
.section { padding: var(--section) 0; }
.dark { background: var(--ink); color: var(--on-dark); }
.dark p { color: var(--on-dark-soft); }
.stone { background: var(--stone); }

.intro { display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); gap: 48px clamp(40px, 8vw, 140px); align-items: end; }
.statement { font-family: var(--serif); font-size: clamp(1.875rem, 3.6vw, 3.25rem); line-height: 1.16; letter-spacing: -0.01em; max-width: 24ch; margin: 0; text-wrap: pretty; }
.facts { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--rule); }
.facts li { display: flex; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--rule); font-size: 0.9375rem; }
.facts li span:first-child { color: var(--ink-soft); }
.facts li span:last-child { text-align: right; }

.head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 20px 48px; margin-bottom: clamp(48px, 7vw, 96px); }
.head h2 { max-width: 15ch; }
.head p { margin: 0; max-width: 40ch; color: var(--ink-soft); }
.dark .head p { color: var(--on-dark-soft); }

/* ---------- selected work: editorial, not a card grid ---------- */
.work { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(64px, 9vw, 140px) clamp(20px, 3vw, 40px); }
.piece { margin: 0; }
.piece a { display: block; text-decoration: none; }
.piece .frame { overflow: hidden; background: var(--stone); }
.piece img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.piece a:hover img { transform: scale(1.03); }
.piece .caption { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 6px 24px; padding-top: 20px; }
.piece h3 { font-size: clamp(1.625rem, 2.6vw, 2.375rem); }
.piece a:hover h3 { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 6px; }
.piece .label { text-align: right; }
.p-full { grid-column: 1 / -1; }
.p-full .frame { aspect-ratio: 2 / 1; }
.p-left { grid-column: 1 / span 5; }
.p-left .frame { aspect-ratio: 4 / 5; }
.p-right { grid-column: 7 / span 6; align-self: end; }
.p-right .frame { aspect-ratio: 4 / 3; }
.p-wide { grid-column: 3 / span 10; }
.p-wide .frame { aspect-ratio: 3 / 2; }
.more { margin-top: clamp(56px, 7vw, 96px); }

/* ---------- full-bleed quote ---------- */
.quote { position: relative; min-height: min(92svh, 900px); display: flex; align-items: center; color: var(--on-dark); background: var(--ink); overflow: hidden; }
.quote > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.quote::after { content: ""; position: absolute; inset: 0; background: rgba(20, 18, 16, 0.66); }
.quote .wrap { position: relative; z-index: 1; padding: var(--section) 0; }
.quote blockquote { margin: 0; }
.quote blockquote p { font-family: var(--serif); font-size: clamp(2.25rem, 5.4vw, 5rem); line-height: 1.08; letter-spacing: -0.015em; max-width: 19ch; color: var(--on-dark); margin: 0 0 32px; text-wrap: balance; }
.quote cite { font-style: normal; color: var(--on-dark-soft); }
.quote .rating { margin-top: 20px; }

/* ---------- hairline rows ---------- */
.rows { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--rule); }
.rows > li { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: 12px 40px; padding: 36px 0; border-bottom: 1px solid var(--rule); }
.rows h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); }
.rows .label { margin-bottom: 10px; }
.rows p { margin: 0; color: var(--ink-soft); }
.split .rows > li { grid-template-columns: minmax(0, 1fr); gap: 10px; }
.split .rows h3 { max-width: 22ch; }

.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px clamp(40px, 7vw, 120px); align-items: start; }
.split.reverse { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: center; }
.split figure { margin: 0; }
.split figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split figcaption { margin-top: 14px; font-size: 0.875rem; color: var(--ink-soft); }
.split h2 { margin-bottom: 28px; }
.lede { font-size: clamp(1.125rem, 1.5vw, 1.25rem); color: var(--ink-soft); }

/* a real sequence, so it is numbered */
.phases { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 56px clamp(24px, 4vw, 64px); margin: 0; padding: 0; list-style: none; counter-reset: phase; }
.phases > li { counter-increment: phase; border-top: 1px solid var(--rule-dark); padding-top: 28px; }
.phases > li::before { content: "0" counter(phase); display: block; font-family: var(--serif); font-size: 1.375rem; color: var(--bronze-light); margin-bottom: 48px; }
.phases h3 { margin-bottom: 16px; }
.phases ul { margin: 24px 0 0; padding: 0; list-style: none; }
.phases ul li { padding: 10px 0; border-top: 1px solid var(--rule-dark); font-size: 0.9375rem; color: var(--on-dark-soft); }

.clients { display: flex; flex-wrap: wrap; gap: 4px clamp(28px, 4vw, 64px); margin: 0; padding: 0; list-style: none; font-family: var(--serif); font-size: clamp(1.625rem, 3vw, 2.5rem); line-height: 1.35; }

.people { margin: 40px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--rule); }
.people li { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 2px 24px; padding: 18px 0; border-bottom: 1px solid var(--rule); }
.people .name { font-family: var(--serif); font-size: 1.625rem; line-height: 1.2; }
.people .role { color: var(--ink-soft); font-size: 0.9375rem; }
.people a { display: inline-block; padding: 8px 0; font-size: 0.9375rem; text-underline-offset: 4px; }

/* ---------- closing call ---------- */
.closing h2 { font-size: clamp(3rem, 8vw, 7.5rem); max-width: 11ch; margin-bottom: clamp(40px, 6vw, 72px); }
.closing-grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: 32px clamp(40px, 7vw, 120px); align-items: end; }
.closing .contacts .label { margin-top: 20px; }
.closing .contacts .label:first-child { margin-top: 0; }

/* ---------- reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 48px clamp(28px, 4vw, 64px); margin: 0; padding: 0; list-style: none; }
.reviews li { border-top: 1px solid var(--rule-dark); padding-top: 28px; }
.reviews blockquote { margin: 0 0 24px; }
.reviews blockquote p { font-family: var(--serif); font-size: clamp(1.375rem, 2vw, 1.75rem); line-height: 1.3; color: var(--on-dark); margin: 0; }
.reviews cite { font-style: normal; color: var(--on-dark-soft); font-size: 0.9375rem; }

/* ---------- inner pages ---------- */
.jump { display: flex; flex-wrap: wrap; gap: 0 28px; margin: 24px 0 0; padding: 0; list-style: none; }
.jump a { display: inline-block; padding: 10px 0; text-decoration: none; font-size: 0.9375rem; color: rgba(245, 244, 241, 0.88); background: linear-gradient(currentColor, currentColor) 0 calc(100% - 6px) / 100% 1px no-repeat; }
.jump a:hover { color: var(--on-dark); background-size: 40% 1px; transition: background-size 0.4s var(--ease); }

.sector { padding: var(--section) 0 0; scroll-margin-top: 0; }
.sector-head { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; padding-bottom: 28px; margin-bottom: clamp(48px, 6vw, 88px); border-bottom: 1px solid var(--ink); }
.project { margin-bottom: clamp(88px, 11vw, 160px); scroll-margin-top: 32px; }
.project .lead { overflow: hidden; background: var(--stone); aspect-ratio: 2 / 1; margin: 0; }
.project .lead img { width: 100%; height: 100%; object-fit: cover; }
.project-body { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: 32px clamp(40px, 7vw, 120px); padding-top: clamp(32px, 4vw, 56px); }
.project h3 { font-size: clamp(2rem, 3.6vw, 3.25rem); margin-bottom: 28px; }
.meta { margin: 0; border-top: 1px solid var(--rule); }
.meta div { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--rule); font-size: 0.9375rem; }
.meta dt { color: var(--ink-soft); flex: none; }
.meta dd { margin: 0; text-align: right; }
.project-text { font-size: 1.125rem; }
.project-text p:last-child { margin-bottom: 0; }
.works { columns: 2; column-gap: 32px; margin: 32px 0 0; padding: 0; list-style: none; font-size: 0.9375rem; color: var(--ink-soft); }
.works li { break-inside: avoid; padding: 9px 0; border-top: 1px solid var(--rule); }
.pair { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(12px, 2vw, 24px); margin-top: clamp(40px, 5vw, 72px); align-items: start; }
.pair img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.pair img + img { aspect-ratio: 4 / 5; margin-top: clamp(40px, 8vw, 120px); }

.service { padding: var(--section) 0; border-top: 1px solid var(--rule); scroll-margin-top: 0; }
.service.first { border-top: 0; }
.service-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px clamp(40px, 7vw, 120px); }
.service h2 { margin-bottom: 28px; }
.service figure { margin: 40px 0 0; }
.service figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.includes { columns: 2; column-gap: 40px; margin: 0 0 56px; padding: 0; list-style: none; }
.includes li { break-inside: avoid; padding: 12px 0; border-top: 1px solid var(--rule); font-size: 0.9375rem; }
details { border-bottom: 1px solid var(--rule); }
details:first-of-type { border-top: 1px solid var(--ink); }
summary { cursor: pointer; list-style: none; position: relative; padding: 22px 48px 22px 0; font-family: var(--serif); font-size: clamp(1.25rem, 1.8vw, 1.5rem); line-height: 1.25; }
summary::-webkit-details-marker { display: none; }
summary::before, summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 16px; height: 1px; background: currentColor; transition: transform 0.4s var(--ease); }
summary::after { transform: rotate(90deg); }
details[open] summary::after { transform: rotate(0deg); }
details > div p { color: var(--ink-soft); margin-bottom: 26px; }

.bio { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: 20px clamp(40px, 7vw, 120px); padding: clamp(48px, 6vw, 80px) 0; border-top: 1px solid var(--rule); }
.bio h3 { font-size: clamp(2rem, 3.4vw, 3rem); }
.bio .role { color: var(--bronze); margin: 10px 0 8px; }
.bio a { display: inline-block; padding: 8px 0; text-underline-offset: 4px; }

/* ---------- form ---------- */
.form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 40px; }
.field { display: grid; gap: 2px; padding-top: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.875rem; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 10px 0; border: 0; border-bottom: 1px solid rgba(26, 25, 23, 0.45); border-radius: 0;
  background: transparent; color: var(--ink); font: 400 1.0625rem/1.4 var(--sans); appearance: none;
}
.field select {
  padding-right: 24px;
  background: linear-gradient(45deg, transparent 50%, var(--ink) 50%) right 6px center / 6px 6px no-repeat,
              linear-gradient(-45deg, transparent 50%, var(--ink) 50%) right 0 center / 6px 6px no-repeat;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: none; border-bottom: 2px solid var(--ink); margin-bottom: -1px; }
.form-foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 32px; margin-top: 36px; }
.form-foot p { margin: 0; font-size: 0.875rem; color: var(--ink-soft); max-width: 40ch; }
.submit {
  min-height: 56px; padding: 0 36px; border: 1px solid var(--ink); border-radius: 999px; background: var(--ink); color: var(--paper);
  font: 500 1rem/1 var(--sans); cursor: pointer; transition: background 0.3s, color 0.3s;
}
.submit:hover { background: transparent; color: var(--ink); }
.form-status { grid-column: 1 / -1; margin: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--on-dark); padding: clamp(64px, 8vw, 112px) 0 28px; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 6fr) repeat(2, minmax(0, 3fr)); gap: 48px; padding-bottom: clamp(48px, 7vw, 96px); }
.site-footer .brand { font-size: clamp(2.5rem, 5vw, 4rem); display: inline-block; margin-bottom: 24px; }
.site-footer address { font-style: normal; color: var(--on-dark-soft); }
.site-footer h2 { font-family: var(--sans); font-size: 0.875rem; letter-spacing: 0.01em; font-weight: 500; color: var(--on-dark-soft); margin-bottom: 12px; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li a { display: inline-block; padding: 7px 0; text-decoration: none; }
.site-footer li a:hover { text-decoration: underline; text-underline-offset: 4px; }
.legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding-top: 28px; border-top: 1px solid var(--rule-dark); font-size: 0.8125rem; color: var(--on-dark-soft); }
.legal a { text-underline-offset: 3px; }

/* ---------- tablet ---------- */
@media (max-width: 980px) {
  .intro, .split, .split.reverse, .closing-grid, .project-body, .service-grid, .bio { grid-template-columns: minmax(0, 1fr); }
  .p-left { grid-column: 1 / span 6; }
  .p-right { grid-column: 7 / span 6; }
  .p-wide { grid-column: 1 / -1; }
  .reviews { grid-template-columns: minmax(0, 1fr); }
  .rows > li { grid-template-columns: minmax(0, 1fr); }
  .split figure img, .service figure img { aspect-ratio: 3 / 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

/* ---------- phone ---------- */
@media (max-width: 760px) {
  .site-header .wrap { min-height: 76px; }
  .brand { font-size: 1.5rem; }
  .menu-button {
    display: inline-flex; align-items: center; gap: 12px; min-height: 44px; padding: 0 2px;
    border: 0; background: none; color: inherit; font: 500 0.9375rem/1 var(--sans); cursor: pointer; position: relative; z-index: 2;
  }
  .bars { position: relative; width: 22px; height: 8px; }
  .bars::before, .bars::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: currentColor; transition: transform 0.4s var(--ease), top 0.4s var(--ease); }
  .bars::before { top: 0; }
  .bars::after { top: 7px; }
  .menu-button[aria-expanded="true"] .bars::before { top: 4px; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] .bars::after { top: 4px; transform: rotate(-45deg); }
  .nav .call { display: none; }
  .nav ul {
    position: fixed; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: center; gap: 0;
    padding: 96px var(--gutter) 48px; background: var(--ink); color: var(--on-dark);
    visibility: hidden; opacity: 0; transition: opacity 0.4s var(--ease), visibility 0.4s;
  }
  .nav ul.open { visibility: visible; opacity: 1; }
  .nav ul a { display: block; padding: 12px 0; font-family: var(--serif); font-weight: 400; font-size: 2.75rem; line-height: 1.1; background: none; }
  .nav ul a[aria-current="page"] { color: var(--bronze-light); }
  .menu-call { display: block; }
  .nav ul .menu-call a { font-family: var(--sans); font-size: 1.0625rem; margin-top: 32px; color: var(--on-dark-soft); }
  body.menu-open { overflow: hidden; }

  .hero { min-height: 92svh; }
  .hero.short { min-height: 72svh; }
  .hero-foot { display: block; }

  .work { gap: 72px 0; }
  .p-full, .p-left, .p-right, .p-wide { grid-column: 1 / -1; }
  .p-full .frame, .p-wide .frame, .p-right .frame { aspect-ratio: 4 / 3; }
  .p-left .frame { aspect-ratio: 4 / 5; }
  .piece .caption { display: block; }
  .piece .label { text-align: left; margin-top: 8px; }

  .phases { grid-template-columns: minmax(0, 1fr); }
  .phases > li::before { margin-bottom: 20px; }
  .project .lead { aspect-ratio: 4 / 3; }
  .works, .includes { columns: 1; }
  .pair { grid-template-columns: minmax(0, 1fr); }
  .pair img + img { margin-top: 0; aspect-ratio: 4 / 3; }
  .form { grid-template-columns: minmax(0, 1fr); }
  .submit { width: 100%; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .sector-head { display: block; }
  .people li { display: block; }
  .people .role { display: block; }
}
