/* Incubator UI kit — site styles. */

/* ---------- Reset --------------------------------------------------------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
/* iOS paints a grey flash over tapped links/buttons — reads as a glitch on the
   big menu items (#109). Focus states still show via :focus-visible. */
html { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Wordmark ------------------------------------------------------ */
.inc-wordmark {
  font-family: var(--font-serif);
  font-weight: 400; /* regular — synthetic bold reads too chunky (#107) */
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---------- Header -------------------------------------------------------- */
.inc-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
}
.inc-header__inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-6);
}
.inc-header__brand { border: 0; display: flex; align-items: center; }
.inc-header__brand:hover { border: 0; opacity: .85; }
.inc-header__nav ul {
  display: flex; gap: 28px;
}
.inc-header__nav a {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--ink);
  padding: 4px 0;
}
/* The draw-in underline comes from the base `a` rule (background-size). Hover
   just swaps the colour; the active tab keeps the rule fully drawn in green. */
.inc-header__nav a:hover { color: var(--green); }
.inc-header__nav a.is-active { color: var(--green); background-size: 100% 1px; }

.inc-menu-btn {
  display: none;                /* mobile / overflow */
  align-items: center; gap: 8px;
  background: none; border: 0; padding: 6px 0; cursor: pointer;
  font-family: var(--font-serif); font-size: 14px;
}
.inc-menu-btn__ic { display: inline-flex; flex-direction: column; gap: 4px; }
.inc-menu-btn__ic span {
  display: block; width: 20px; height: 1.5px; background: var(--ink);
  border-radius: 2px; transform-origin: center;
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease);
}
/* three lines collapse into a clean ✕ */
.inc-menu-btn.is-open .inc-menu-btn__ic span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.inc-menu-btn.is-open .inc-menu-btn__ic span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.inc-menu-btn.is-open .inc-menu-btn__ic span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 720px) {
  .inc-header__nav { display: none; }
  .inc-menu-btn { display: inline-flex; }
  .inc-menu-btn__txt { display: none; }   /* icon only on phones */
}

/* ---------- Menu overlay -------------------------------------------------- */
/* Kept in the DOM at all times. The panel is anchored directly beneath the
   sticky header and the .is-open class unfolds it downward like a white blind
   (clip-path inset from the top edge). Because it starts below the header, the
   INCUBATOR sign is never covered or redrawn — no flash — and the header
   hamburger (morphing to ✕) is the close control. Rolls back up on close. */
.inc-overlay {
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  z-index: var(--z-overlay);
  background: var(--paper);
  display: flex; flex-direction: column;
  overflow-y: auto;                      /* short/landscape viewports can scroll */
  clip-path: inset(0 0 100% 0);          /* rolled up against the header edge */
  visibility: hidden;
  pointer-events: none;
  transition: clip-path 420ms var(--ease), visibility 0s linear 420ms;
}
.inc-overlay.is-open {
  clip-path: inset(0 0 0 0);             /* unfolds down to full height */
  visibility: visible;
  pointer-events: auto;
  will-change: clip-path;                /* hint only while it animates open */
  transition: clip-path 460ms var(--ease-out), visibility 0s;
}
.inc-overlay__nav {
  flex: 1; padding-top: var(--s-12);
}
/* The panel receives programmatic focus when it opens (app.jsx) purely to
   anchor keyboard/AT flow — never show a ring on the container itself. */
.inc-overlay__nav:focus { outline: none; }
.inc-overlay__nav ul { display: flex; flex-direction: column; gap: 18px; }
.inc-overlay__nav li {
  opacity: 0; transform: translateY(16px);
  transition: opacity 380ms var(--ease-out), transform 420ms var(--ease-out);
}
.inc-overlay.is-open .inc-overlay__nav li { opacity: 1; transform: none; }
.inc-overlay.is-open .inc-overlay__nav li:nth-child(1) { transition-delay: 140ms; }
.inc-overlay.is-open .inc-overlay__nav li:nth-child(2) { transition-delay: 190ms; }
.inc-overlay.is-open .inc-overlay__nav li:nth-child(3) { transition-delay: 240ms; }
.inc-overlay.is-open .inc-overlay__nav li:nth-child(4) { transition-delay: 290ms; }
.inc-overlay__nav a {
  font-family: var(--font-serif);
  font-size: clamp(34px, 11vw, 44px);
  line-height: 1.05;
  letter-spacing: var(--tracking-tight);
  border: 0;
  display: inline-block;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.inc-overlay__nav a:hover,
.inc-overlay__nav a:active { color: var(--green); border: 0; transform: translateX(6px); }
.inc-overlay__foot {
  padding: var(--s-8) 0 var(--s-10);
  font-family: var(--font-serif); font-size: 13px; color: var(--ink-3);
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0; transition: opacity 400ms var(--ease-out);
}
.inc-overlay.is-open .inc-overlay__foot { opacity: 1; transition-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
  /* The global `* { transition/animation: none }` in ds.css already stops the
     easing; only the clip-path needs neutralising so the panel shows in full. */
  .inc-overlay, .inc-overlay.is-open { clip-path: none; }
}

/* ---------- Route enter + scroll reveal ---------------------------------- */
/* Each navigation re-keys .mock__view, crossfading the new page in. The fade is
   opacity-led with only a whisper of lift, and eased at both ends, so pages
   settle in softly instead of snapping. Reduced-motion (ds.css) neutralises it.
   No fill-mode: a retained forwards/both fill would keep this a stacking context
   after the animation ends, trapping the fixed lightbox below the header. */
.mock__view { animation: inc-view-enter 460ms var(--ease-soft); }
@keyframes inc-view-enter {
  from { opacity: 0; transform: translateY(3px); }
  to   { opacity: 1; transform: none; }
}
/* Where the View Transitions API drives navigation (app.jsx), the browser
   cross-fades old page → new page itself; the keyed enter animation would
   double-fade the incoming view, so it's disabled and the built-in transition
   is slowed to a soft dissolve. */
@supports (view-transition-name: root) {
  .mock__view { animation: none; }
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 340ms;
    animation-timing-function: var(--ease-soft);
  }
}
/* Grid/list items below the fold start hidden (class added by JS only when
   motion is allowed) and ease in when scrolled into view. */
.inc-reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.inc-reveal--in { opacity: 1; transform: none; }

/* ---------- Main / sections ---------------------------------------------- */
.inc-main { padding-bottom: var(--s-24); }

.inc-section { padding-top: var(--section-gap); }
.inc-section__head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: var(--s-8);
}
.inc-section__head h2 { margin: 0; }
.inc-section__head a {
  font-size: 14px;
  color: var(--ink-3); letter-spacing: 0.04em;
}
.inc-section__head a:hover { color: var(--green); }

.inc-pagehead {
  padding: var(--s-16) 0 var(--s-10);
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--s-8);
}
.inc-pagehead h1 { margin: 0; font-size: clamp(26px, 3vw, 32px); }

.inc-eyebrow {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3);
  font-family: var(--font-serif);
  display: inline-block;
  margin-bottom: var(--s-3);
}

/* ---------- Hero ---------------------------------------------------------- */
.inc-hero { padding-top: 0; }
.inc-hero__media { display: block; border: 0; }
.inc-hero__media:hover { opacity: .92; }
.inc-hero__media .inc-tile { width: 100%; }
.inc-hero__meta {
  padding-top: var(--s-6);
  padding-bottom: var(--s-4);
  display: flex; flex-direction: column; gap: var(--s-2);
}
.inc-hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.25;
  margin: 0;
  letter-spacing: 0;
}
.inc-hero__title a { border: 0; }
.inc-hero__title a:hover { color: var(--green); border: 0; }
.inc-meta {
  font-size: 14px; color: var(--ink-3); letter-spacing: 0.04em;
  font-feature-settings: "tnum";
}

/* ---------- Card grid ----------------------------------------------------- */
.inc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-12) var(--s-8);
}
.inc-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .inc-grid, .inc-grid--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .inc-grid, .inc-grid--3 { grid-template-columns: 1fr; } }

.inc-card { display: flex; flex-direction: column; gap: var(--s-3); color: var(--ink); border: 0; }
.inc-card:hover { border: 0; color: var(--ink); }
.inc-card:hover .inc-tile { opacity: 0.85; }
.inc-card:hover .inc-card__title { color: var(--green); }
.inc-card__meta {
  display: flex; gap: 16px; align-items: baseline;
  font-size: 13px; color: var(--ink-3); letter-spacing: 0.04em;
  font-feature-settings: "tnum";
}
.inc-card__flag { color: var(--green); }
.inc-card__title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 20px; line-height: 1.25; margin: 0;
  transition: color var(--dur-fast) var(--ease);
}
.inc-card__title em { font-style: italic; }

/* ---------- Tile (placeholder image) ------------------------------------- */
.inc-tile { width: 100%; background: var(--surface); transition: opacity var(--dur-fast) var(--ease); }

/* ---------- Poster (palette-pair zine identity) -------------------------- */
.inc-poster {
  width: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: var(--s-8) var(--s-6);
  position: relative;
  transition: opacity var(--dur-fast) var(--ease);
}
.inc-poster--card { aspect-ratio: 4/3; padding: var(--s-6) var(--s-5); }
.inc-poster--hero {
  aspect-ratio: 21/9;
  min-height: 280px;
  padding: var(--s-10) var(--s-6) var(--s-8);
}
@media (min-width: 1100px) {
  .inc-poster--hero { aspect-ratio: 24/9; min-height: 360px; }
}

.inc-poster__wm {
  font-family: var(--font-serif);
  font-weight: 400; /* brand face is regular-only; synthetic bold reads chunky (#107) */
  letter-spacing: 0.06em;
  font-size: clamp(28px, 6vw, 96px);
  line-height: 1;
}
.inc-poster--card .inc-poster__wm { font-size: clamp(20px, 4.5vw, 40px); }

.inc-poster__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 22px);
  line-height: 1.25;
  margin-top: var(--s-4);
  max-width: 26ch;
}
.inc-poster--card .inc-poster__title { font-size: clamp(13px, 1.4vw, 18px); margin-top: var(--s-3); }

.inc-poster__addr {
  position: absolute;
  bottom: var(--s-4);
  left: 0; right: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.08em;
  font-size: 11px;
  opacity: 0.85;
}
.inc-poster--card .inc-poster__addr { display: none; }

/* ---------- Detail page --------------------------------------------------- */
.inc-detail { padding-top: 0; display: flex; flex-direction: column; gap: var(--s-12); }
.inc-detail > .inc-poster { width: 100%; max-width: none; }
.inc-detail__head { display: flex; flex-direction: column; gap: var(--s-3); }
.inc-detail__head h1 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.inc-detail__head h1 em { font-style: italic; }

/* Section labels — ONE spec site-wide (detail sections, related shows,
   contact): small caps in ink at TRUE regular weight with wide, even
   tracking. Never 600/700 — the brand face ships one 400 master and
   synthetic bold reads muddy (#107). */
.inc-detail__installation h3,
.inc-detail__release h3,
.inc-detail__press h3,
.inc-detail__bio h3,
.inc-related h3,
.inc-list__grouplabel,
.inc-contact h3 {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 var(--s-5);
}

.inc-detail__show + .inc-detail__show { border-top: 1px solid var(--hairline); padding-top: var(--s-12); margin-top: var(--s-6); }
.inc-detail__show { display: flex; flex-direction: column; gap: var(--s-10); }
.inc-detail__show-head { margin-bottom: 0; display:flex; flex-direction:column; gap: 4px; }
.inc-detail__show-head h2 { margin: 0; font-weight: 400; }
.inc-detail__show-head h2 em { font-style: italic; }

/* Prose: no negative space alongside */
.inc-prose { max-width: var(--measure); }
.inc-prose p { font-size: 17px; line-height: 1.6; margin: 0 0 1em; text-wrap: pretty; }
.inc-prose em { font-style: italic; }
.inc-prose strong { font-weight: 600; }

/* Artist biography spans the full content width as a single column, rather than
   the narrow measure used for other prose (#91). */
.inc-detail__bio .inc-prose { max-width: none; }

/* ---------- Press release: set like published editorial text -------------
   Spans the full content width (as before, #91), now with editorial spacing,
   proper quotation blocks, attributions and a colophon byline. Numerals are set
   as oldstyle figures and common ligatures are enabled so running text reads
   like a gallery publication rather than a web article. */
.inc-detail__release .inc-prose.inc-release {
  max-width: none;                 /* full content width, left-aligned with the page */
  font-feature-settings: "kern" 1, "liga" 1, "clig" 1, "onum" 1, "pnum" 1;
  font-variant-numeric: oldstyle-nums proportional-nums;
  hanging-punctuation: first allow-end last;   /* Safari: optically hang quotes/punctuation */
}

/* Body paragraphs — spaced, no first-line indent (space OR indent, never both). */
.inc-release .inc-release__para {
  font-size: 18px;
  line-height: 1.62;
  margin: 0 0 1.3em;               /* extra space between paragraphs */
  text-wrap: pretty;               /* discourage widows / short last lines */
  hyphens: none;
}

/* Quotation block — an epigraph or pulled quote. Italic, a shade larger, set on
   a reading measure and left-aligned within the full-width column, with the
   opening quotation mark hung into the left margin for an optically flush edge. */
.inc-release .inc-release__quote {
  margin: var(--s-8) 0 var(--s-5);
  padding: 0;
  border: 0;
  max-width: 54ch;
  color: var(--ink);
  font-style: italic;
  font-size: 21px;
  line-height: 1.42;
  text-indent: -0.46em;            /* HTML path: hang the leading “ (text is direct) */
  text-wrap: balance;              /* even, symmetrical lines for short quotes */
}
.inc-release > .inc-release__quote:first-child { margin-top: 0; }
.inc-release .inc-release__quote em { font-style: normal; }  /* emphasis flips within italic */

/* Opt-in first-line indent on a body paragraph (toolbar → →¶). */
.inc-release .inc-release__para--indent { text-indent: 1.5em; }

/* Attribution — the dashed credit line beneath a quotation, set apart on its own.
   Spans the full width so a long credit doesn't wrap awkwardly under the quote. */
.inc-release .inc-release__attrib {
  margin: 0 0 var(--s-10);
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--ink-3);
  text-indent: 0;
  text-wrap: pretty;
}

/* Byline / colophon — the closing credit, set apart by a hairline rule. */
.inc-release .inc-release__byline {
  margin: var(--s-12) 0 0;
  padding-top: var(--s-5);
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  font-style: italic;
  text-indent: 0;
}

@media (max-width: 640px) {
  .inc-release .inc-release__para { font-size: 17px; }
  .inc-release .inc-release__quote { font-size: 19px; }
}

/* Rich-text blocks inside a plain-prose context (e.g. artist bios). */
.inc-prose .inc-prose__quote {
  margin: var(--s-4) 0;
  padding-left: var(--s-4);
  border-left: 2px solid var(--hairline);
  font-style: italic;
  text-indent: -0.42em;
}
.inc-prose .inc-prose__quote em { font-style: normal; }
.inc-prose .inc-prose__p--indent { text-indent: 1.5em; }

.inc-detail__more { margin-top: var(--s-6); }
.inc-detail__more a { font-size: 15px; }

/* About: intro text with image on the right */
.inc-about__intro {
  display: grid; grid-template-columns: minmax(0, var(--measure)) minmax(0, 1fr);
  gap: var(--s-12); align-items: start;
}
.inc-about__intro .inc-prose { max-width: none; }
.inc-about__img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .inc-about__intro { grid-template-columns: 1fr; gap: var(--s-10); }
}

/* About: gallery team, one "Name — Role" line per member (#113), all in ink. */
.inc-about__team { margin-top: var(--s-16); }
.inc-about__team p { font-size: 16px; margin: 0 0 var(--s-2); }

.inc-back { margin-top: var(--s-12); }
.inc-back a { font-size: 14px; color: var(--ink-3); }
.inc-back a:hover { color: var(--green); }

/* ---------- Strip --------------------------------------------------------- */
.inc-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-3);
}
@media (min-width: 900px) { .inc-strip { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

/* ---------- Press --------------------------------------------------------- */
.inc-press-year { margin-bottom: var(--s-10); }
.inc-press-year h2 {
  font-weight: 400; font-size: 28px; margin: 0 0 var(--s-2);
  padding-bottom: var(--s-3); border-bottom: 1px solid var(--hairline);
}
.inc-press-list { display: flex; flex-direction: column; }
.inc-press-item {
  display: grid;
  grid-template-columns: 200px 1fr 60px;   /* pub · headline · cta (#110) */
  gap: var(--s-6);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  align-items: baseline;
  transition: color var(--dur-fast) var(--ease);
}
.inc-press-item:hover { color: var(--green); }
.inc-press-item:hover .inc-press-item__title { background-size: 100% 1px; }
.inc-press-item__pub { font-size: 15px; font-style: italic; }
.inc-press-item__title {
  font-size: 17px;
  justify-self: start;   /* shrink to the text so the hover rule underlines
                            only the headline, not the whole 1fr column */
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size var(--dur) var(--ease-out);
}
.inc-press-item__cta { font-size: 16px; color: var(--ink-3); text-align: right; }
@media (max-width: 720px) {
  .inc-press-item { grid-template-columns: 1fr auto; gap: 4px var(--s-4); padding: var(--s-5) 0; }
  .inc-press-item__pub,
  .inc-press-item__title { grid-column: 1; }
  .inc-press-item__cta { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
}

/* ---------- Sort toggle --------------------------------------------------- */
.inc-toggle { display: flex; gap: 18px; }
.inc-toggle button {
  position: relative;
  background: none; border: 0; padding: 2px 0 4px; cursor: pointer;
  font-family: var(--font-serif); font-size: 14px;
  color: var(--ink-3);
  transition: color var(--dur-fast) var(--ease);
}
/* The active underline grows in from the left rather than blinking on. */
.inc-toggle button::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor;
  transform: scaleX(0); transform-origin: left center;
  transition: transform var(--dur) var(--ease);
}
.inc-toggle button.is-active { color: var(--ink); }
.inc-toggle button.is-active::after { transform: scaleX(1); }
.inc-toggle button:hover { color: var(--green); }

/* ---------- Contact ------------------------------------------------------- */
.inc-contact__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-12);
  margin-top: var(--s-6);
}
@media (max-width: 900px) { .inc-contact__grid { grid-template-columns: 1fr; gap: var(--s-10); } }
/* Label spec shared above; contact only spaces its groups differently. */
.inc-contact h3 { margin: var(--s-8) 0 var(--s-3); }
.inc-contact h3:first-of-type { margin-top: 0; }
.inc-contact p { font-size: 16px; line-height: 1.55; margin: 0 0 var(--s-4); }

.inc-form {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: var(--s-4);
}
.inc-form label { font-size: 12px; color: var(--ink-3); }
.inc-form input {
  appearance: none; background: transparent;
  border: 0; border-bottom: 1px solid var(--ink);
  font-family: var(--font-serif); font-size: 16px; color: var(--ink);
  padding: 6px 0 8px; outline: none; border-radius: 0;
}
.inc-form input:focus { border-bottom-color: var(--green); }
.inc-btn {
  appearance: none; border: 0; background: var(--green); color: var(--paper);
  font-family: var(--font-serif); font-size: 14px;
  padding: 12px 22px; cursor: pointer; align-self: flex-start;
  margin-top: 8px; border-radius: 0;
  transition: background var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}
/* Incubator green by default, a darker green on hover/click. The label is
   pinned light because the global `a:hover` turns links green, which on the
   green background would otherwise make the text invisible (#94). */
.inc-btn:hover, .inc-btn:active { background: var(--green-hover); color: var(--paper); }
.inc-btn:active { transform: translateY(1px); }             /* tactile press */
/* Explicit ring: .inc-btn is sometimes an <a>, sometimes a <button>, so give
   both a consistent, visible focus indicator on the green field. */
.inc-btn:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

/* Zoomable lead image — reset the wrapping button to render like the poster. */
.inc-poster-zoom {
  display: block; width: 100%; padding: 0; border: 0;
  background: none; font: inherit; color: inherit; text-align: inherit;
  cursor: zoom-in;
}

/* Enquire button sits on its own line between the images and the prose. */
/* Only the top margin — a `margin: x 0 0` shorthand would zero the horizontal
   margins and cancel .container's margin-inline:auto, dropping the button to the
   far-left gutter instead of lining up with the press-release heading (#91). */
.inc-detail__enquire { margin-top: var(--s-10); }

/* ---------- Footer --------------------------------------------------------
   Full-bleed grey band; the fix for #108 was VERTICAL economy, not width —
   modest top/bottom padding, address left / contact right. On phones the two
   columns stay side by side with smaller text, mirroring desktop (#111). */
.inc-footer {
  background: var(--surface);
  margin-top: var(--s-24);
  padding: var(--s-8) 0;
}
.inc-footer__inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* address · © (centred) · contact */
  gap: var(--s-10);
  align-items: start;
  font-family: var(--font-serif); font-size: 14px; line-height: 1.55;
}
@media (min-width: 900px) {
  .inc-footer__inner { padding-inline: var(--gutter-lg); }
}
.inc-footer__contact { justify-self: end; text-align: right; }
.inc-footer p { margin: var(--s-3) 0 0; }
.inc-footer a { color: var(--ink); }
.inc-footer a:hover { color: var(--green); }
.inc-footer__legal {
  align-self: center;       /* vertically centred between the two columns */
  text-align: center;
  font-size: 12px; color: var(--ink-3);
}
@media (max-width: 600px) {
  .inc-footer { padding: var(--s-6) 0; }
  /* The enquiries email (231px at 12px) can't share a 390px row with the
     address, so the blocks stack — but the contact block keeps its right
     justification, mirroring the desktop split (#111). */
  .inc-footer__inner {
    font-size: 12px;
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }
  .inc-footer__legal { font-size: 11px; order: 3; margin-top: var(--s-2); }
}
