/* Nikosophia. Navy ground, gold hairlines as rules, generous tracking, a meander at the foot. */

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-display: swap;
  font-weight: 300 700;
  src: url(/brand/fonts/cormorant-garamond-latin-ext-wght-normal.woff2) format("woff2-variations");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-display: swap;
  font-weight: 300 700;
  src: url(/brand/fonts/cormorant-garamond-latin-wght-normal.woff2) format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/brand/fonts/jost-latin-ext-wght-normal.woff2) format("woff2-variations");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/brand/fonts/jost-latin-wght-normal.woff2) format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Two widths, and nothing else sets one. The content width bounds every page and band; the
     reading measure bounds running prose inside it. Both align to the same left edge. */
  --content: 72rem;
  --measure: 68ch;
  --gutter: clamp(1rem, 4vw, 2.5rem);

  /* Breakpoints, by viewport width only: phone below 40em (640px), tablet 40em to 64em
     (640–1024px), desktop 64em and up. CSS cannot read a custom property inside @media, so these
     tokens are the reference and every query below uses exactly these two literal values. */
  --bp-tablet: 40em;
  --bp-desktop: 64em;

  --navy: #0E1E38;
  --navy-deep: #0A1629;
  --navy-raised: #132744;
  /* The navy panel text sits on over a photograph: the home splash and the card pages' Ask AI hero. */
  --panel: rgba(14, 30, 56, .78);
  --gold-1: #E9D3B0;
  --gold-2: #C9A36E;
  --gold-3: #B08650;
  --gold: linear-gradient(135deg, var(--gold-1), var(--gold-2) 50%, var(--gold-3));
  --blue: #9DB9CF;
  --ink: #F3EEE6;
  --ink-soft: #C9CDD4;
  --rule: rgba(201, 163, 110, 0.4);
  --rule-soft: rgba(201, 163, 110, 0.18);
  --serif: "Cormorant Garamond", Garamond, "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 350;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-1); text-decoration-color: var(--rule); text-underline-offset: 0.2em; }
a:hover { color: var(--ink); text-decoration-color: var(--gold-2); }
a:focus-visible, button:focus-visible { outline: 1px solid var(--gold-2); outline-offset: 3px; }

.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; background: var(--navy-raised); padding: 0.5rem 1rem; z-index: 10; }

/* ---- Widths ------------------------------------------------------------------------------ */

.wrap { max-width: var(--content); margin: 0 auto; padding: 0 var(--gutter); }
/* On a content-width block, every child stops at the reading measure, on the same left edge. */
/* A block of reading text is a centred column. The text is not capped; the container's side padding
   grows instead, so the text sits in the middle of the page at a reading width and the space falls
   evenly either side. On a narrow screen the padding falls back to the gutter. */
.wrap.prose {
  padding-left: max(var(--gutter), calc((min(100%, var(--content)) - var(--measure)) / 2));
  padding-right: max(var(--gutter), calc((min(100%, var(--content)) - var(--measure)) / 2));
}

/* ---- Type -------------------------------------------------------------------------------- */

h1, h2, h3 { font-family: var(--serif); font-weight: 300; line-height: 1.15; margin: 0 0 0.6em; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.4rem; font-weight: 500; }
p { margin: 0 0 1em; }
.gold { background: var(--gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.label { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue); margin: 0 0 1rem; }
.lede { font-size: 1.2rem; }
.small { font-size: 0.88rem; color: var(--ink-soft); }
.role { font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.4rem; }
ul.plain { padding-left: 1.2rem; }
ul.plain li { margin-bottom: 0.6em; }
ul.plain li::marker { color: var(--gold-2); }

/* ---- Masthead and footer ------------------------------------------------------------------- */

.masthead { border-bottom: 1px solid var(--rule); }
.masthead-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem 2rem; flex-wrap: wrap; padding-top: 1rem; padding-bottom: 1rem; }
.brand img { width: 9rem; }
nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
nav a { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; color: var(--ink-soft); }
nav a:hover, nav a[aria-current="page"] { color: var(--gold-1); }

.foot { margin-top: 2rem; background: var(--navy-deep); }
.key { height: 22px; background: url(/assets/key.svg) repeat-x center / auto 22px; opacity: 0.85; }
.foot-inner { display: grid; gap: 2rem; grid-template-columns: 1fr; padding-top: 2.5rem; padding-bottom: 3rem; }
.foot-mark { width: 4rem; }
.foot p { margin: 0 0 0.4rem; }
.foot-nav { list-style: none; padding: 0; margin: 0 0 1rem; display: flex; flex-wrap: wrap; gap: 0.4rem 1.25rem; }
.foot-nav a { text-decoration: none; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }

/* ---- Sections ---------------------------------------------------------------------------- */

.section { padding: clamp(2.75rem, 7vw, 5rem) 0; }
.section + .section { border-top: 1px solid var(--rule-soft); }
.section.alt { background: var(--navy-deep); }
.page-head { padding: clamp(2.75rem, 7vw, 4.5rem) 0 1rem; }
.page-head + .section.follows-head { padding-top: 0; border-top: 0; }

.hero { padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(2.5rem, 6vw, 4rem); }

/* The home splash: the hero photograph, full bleed behind the text at every width, and the text on a
   navy panel of its own. On a phone and tablet the panel runs the content width; from desktop it sits
   to the right at a reading width. The full-width fading scrim was dropped on 2026-09-26 as jarring; bare, the text failed
   WCAG AA over cloud at every desktop width (see brand/photo-credits.md). */
.splash { position: relative; display: flex; align-items: center; min-height: 100svh; padding: clamp(2rem, 6vw, 4rem) 0; }
.splash-media { position: absolute; inset: 0; overflow: hidden; }
.splash-content { position: relative; width: 100%; }
/* Over the photo, the text sits on its own navy panel: about 7:1 against white cloud at .78,
   still AA down to about .65. */
.splash-text { padding: 1.5rem 1.35rem; background: var(--panel); border-radius: 2px; }
.splash-media img { width: 100%; height: 100%; object-fit: cover; object-position: 28% 42%; }
.splash-text > p { font-size: 1.1rem; }
.hero-head { display: grid; gap: 1.25rem; justify-items: start; margin-bottom: 2rem; }
.hero-mark { width: 4rem; }
/* The home H1 is the tagline: two-thirds of the global h1 size, so it reads as a headline beside the
   mark without shouting. Still well above the 1.1rem hero paragraphs at every width. */
.hero-head h1 { margin: 0; font-size: clamp(1.5rem, 3.3vw, 2.25rem); line-height: 1.2; }
.hero .prose p { font-size: 1.1rem; }

/* The card pages (/cards/sophia, /cards/nicole), where people arrive from a QR scan on a phone. The
   contact card comes first, in two columns from tablet width: who the person is, then the rows from
   the printed card. Below it, full width, the Ask AI hero: the photograph in a bordered frame, the
   text on the same navy panel as the home splash. */
/* One purpose, so on a phone the masthead is the wordmark alone; the footer still carries the nav. */
.landing .masthead nav { display: none; }
.card-page { padding-top: clamp(1.25rem, 4vw, 3rem); }
.button.big { display: block; text-align: center; font-size: 0.95rem; padding: 1.15rem 1.6rem; min-height: 3.25rem; }
.contact { display: grid; gap: 1.75rem 3rem; grid-template-columns: minmax(0, 1fr); align-items: start; }
.contact-id { display: grid; gap: 1.25rem; justify-items: start; align-items: start; }
/* Ask AI as a full-screen splash. The box spans the page's content width, so its edges line up with the
   outer edges of the contact card's two columns above it. */
.ask-splash { position: relative; min-height: 100svh; display: flex; align-items: center; padding: clamp(2rem, 6vw, 5rem) 0; }
.ask-splash-media { position: absolute; inset: 0; overflow: hidden; }
.ask-splash-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 80%; }
.ask-splash-grid { position: relative; width: 100%; }
.ask-splash-panel { padding: 1.5rem 1.35rem; background: var(--panel); border-radius: 2px; }
.contact-details .contact-rows { margin-top: 0; }
.contact-portrait { width: 7.5rem; height: auto; aspect-ratio: 2 / 3; object-fit: cover; }
.contact-text h2 { margin-bottom: 0.3rem; }
.contact-org { color: var(--ink-soft); margin: 0 0 0.75rem; }
.contact-name { font-size: clamp(1.9rem, 6vw, 2.5rem); margin-bottom: 0.3rem; }
.contact-rows { list-style: none; padding: 0; margin: 0.25rem 0 0; }
.contact-rows li { display: flex; gap: 0.9rem; padding: 0.35rem 0; overflow-wrap: anywhere; }
.contact-rows li:first-child { padding-top: 0; }
.contact-key { flex: 0 0 3.5rem; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); padding-top: 0.2rem; }

/* Ask AI: the prompt to copy, and the link that opens it in Google's AI mode. On the home page it is
   a band of its own; on the card pages it fills the navy panel over the photograph. */
.ask-ai-head { margin-bottom: 0.6rem; }
.ask-ai > p { font-size: 1.02rem; }
.ask-ai-prompt { margin-top: 1rem; padding: 1.1rem 1.1rem 0.4rem; border-left: 2px solid var(--gold-2); }
.ask-ai-prompt .prompt-text { margin: 0 0 1rem; }
.ask-ai-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.button.small { padding: 0.6rem 1rem; font-size: 0.72rem; }
.ask-ai-send-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1rem 0 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.ask-ai > .ask-ai-alt { margin: 2rem 0 0; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); }
.ask-ai-alt + .ask-ai-prompt { margin-top: 0.6rem; }
.ask-ai-select { flex: 1 1 12rem; min-height: 3rem; padding: 0 2.25rem 0 0.9rem; font: inherit; color: var(--ink); background: var(--navy-deep) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23C9A36E' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 0.9rem center; border: 1px solid var(--gold-2); border-radius: 0; appearance: none; -webkit-appearance: none; }
.ask-ai-select:focus-visible { outline: 1px solid var(--gold-2); outline-offset: 3px; }

/* The /systems price table. */
.price-table { width: 100%; border-collapse: collapse; margin: 1.25rem 0 1rem; }
.price-table th, .price-table td { text-align: left; padding: 0.7rem 0; border-bottom: 1px solid var(--rule-soft); vertical-align: top; }
.price-table thead th { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); font-weight: 400; }
.price-table thead th:last-child { white-space: normal; width: 7rem; }
.price-table td:last-child, .price-table th:last-child { text-align: right; padding-left: 1rem; white-space: nowrap; }
.price-table td:last-child { font-family: var(--serif); font-size: 1.3rem; }
.price-table tfoot th, .price-table tfoot td { border-bottom: 0; font-family: var(--serif); font-size: 1.3rem; color: var(--gold-1); font-weight: 400; }
.price-detail { display: block; font-size: 0.88rem; color: var(--ink-soft); }

.band { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: minmax(0, 1fr); align-items: center; }
.band-text h2 + p { margin-top: 0; }
.band-text p + h2 { margin-top: 2.5rem; }

.actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.75rem 0 1rem; }

.button {
  display: inline-block; font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; padding: 0.9rem 1.6rem; border: 1px solid var(--gold-2); color: var(--gold-1); background: transparent; cursor: pointer;
}
.button:hover { background: rgba(201, 163, 110, 0.12); color: var(--ink); }
.button.solid { background: var(--gold); color: var(--navy); border-color: transparent; font-weight: 500; }
.button.solid:hover { filter: brightness(1.06); color: var(--navy); }
.button.done { background: var(--blue); color: var(--navy); border-color: var(--blue); }

.linklike { background: none; border: 0; padding: 0; font: inherit; color: var(--gold-1); text-decoration: underline; text-decoration-color: var(--rule); text-underline-offset: 0.2em; cursor: pointer; }
.linklike:hover { color: var(--ink); }
.status { display: block; min-height: 1.3em; color: var(--blue); font-size: 0.9rem; }

.with-icon { display: flex; align-items: center; gap: 0.9rem; }
.icon { width: 2.3rem; height: 2.3rem; flex: none; color: var(--gold-2); }

/* Overview signposts: separated by a hairline rule above each, not framed. */
.signposts { display: grid; gap: 2rem 3rem; grid-template-columns: minmax(0, 1fr); }
.signpost { display: block; padding-top: 1.25rem; border-top: 1px solid var(--rule); text-decoration: none; color: var(--ink); }
.signpost:hover h2 { color: var(--gold-1); }
.signpost h2 { font-size: 1.6rem; }
.signpost p { color: var(--ink-soft); margin: 0; }

dl.domains { margin: 2rem 0 0; }
dl.specs { margin: 1.5rem 0 0; }
dl.specs dt { font-family: var(--serif); font-size: 1.35rem; color: var(--gold-1); margin-top: 1.6rem; }
dl.specs dd { margin: 0.3rem 0 0; }
dl.domains dt { font-family: var(--serif); font-size: 1.35rem; color: var(--gold-1); margin-top: 1.4rem; }
dl.domains dd { margin: 0.25rem 0 0; color: var(--ink-soft); }

/* ---- Photographs, in full colour. A slot shows where one is still to come. ---------------- */

.photo { margin: 0; }
.photo .frame { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-slot {
  aspect-ratio: 4 / 3; display: grid; place-items: center; text-align: center; padding: 1.5rem;
  border: 1px dashed var(--blue); color: var(--blue); background: var(--navy-raised);
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; line-height: 1.8;
}
.small-slot { aspect-ratio: 4 / 5; font-size: 0.72rem; }

/* ---- Diagrams, in the brand's hairlines ------------------------------------------------------ */

.diagram { margin: 0; }
.diagram svg { width: 100%; height: auto; display: block; }
.fdiag { margin: 2rem 0 0.5rem; }
.fdiag svg { max-width: 34rem; margin: 0 auto; }
/* These diagrams are read on a phone at about 70% scale, so their text runs a size larger. */
.fdiag .d-sub { font-size: 16px; }
.fdiag .d-label { font-size: 18px; }
.diagram figcaption { margin-top: 1rem; font-size: 0.95rem; color: var(--ink-soft); }
.diagram text { font-family: var(--sans); fill: var(--ink); }
.d-label { font-size: 19px; letter-spacing: 0.04em; }
.d-head { font-family: var(--serif) !important; font-size: 22px; }
.d-sub { font-size: 15px; fill: var(--ink-soft) !important; }
.d-core-t { font-family: var(--serif) !important; font-size: 30px; fill: var(--gold-1) !important; }
.diagram .gold { fill: var(--gold-1); background: none; }
.d-ring { fill: none; stroke: var(--rule); stroke-width: 1; stroke-dasharray: 3 5; }
.d-spoke line { stroke: var(--gold-2); stroke-width: 1; opacity: 0.7; }
.d-core { fill: none; stroke: var(--gold-2); stroke-width: 1.2; }
.d-node circle { fill: var(--navy); stroke: var(--gold-1); stroke-width: 1.5; }
.d-box { fill: none; stroke: var(--blue); stroke-width: 1; }
.d-box.d-ours { stroke: var(--gold-2); stroke-width: 1.4; }
.d-inner { fill: none; stroke: var(--gold-2); stroke-width: 0.6; opacity: 0.7; }
.d-divide { stroke: var(--rule); stroke-width: 1; stroke-dasharray: 2 6; }
.d-band { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; fill: var(--blue) !important; }
.d-poly { fill: none; }
/* The operations diagram has a landscape and a portrait drawing; show the one that fits. */
.ops .ops-wide { display: none; }
.ops .ops-tall { display: block; max-width: 24rem; margin: 0 auto; }
.d-line { stroke: var(--gold-2); stroke-width: 1.2; }
.d-arrowhead { fill: var(--gold-2); }

.wave { height: 3.5rem; overflow: hidden; }
.wave svg { width: 100%; height: 100%; display: block; }
.wave path { fill: none; vector-effect: non-scaling-stroke; }
.w-gold { stroke: var(--gold-2); stroke-width: 1.4; }
.w-gold.thin { stroke-width: 0.8; opacity: 0.7; }
.w-blue { stroke: var(--blue); stroke-width: 1; opacity: 0.8; }

/* ---- The references ----------------------------------------------------------------------- */

.brief h1 { font-size: clamp(2rem, 4.5vw, 2.8rem); }
.brief h2 { margin-top: 2.5em; padding-top: 1.25em; border-top: 1px solid var(--rule-soft); scroll-margin-top: 1rem; }
.brief h3 { scroll-margin-top: 1rem; }
.brief hr { border: 0; height: 1px; background: var(--rule); margin: 3rem 0; }
.brief table { border-collapse: collapse; width: 100%; margin: 1.5rem 0; font-size: 0.95rem; display: block; overflow-x: auto; }
.brief th, .brief td { border-bottom: 1px solid var(--rule-soft); padding: 0.55rem 0.75rem 0.55rem 0; text-align: left; vertical-align: top; }
.brief th { font-weight: 500; color: var(--gold-1); border-bottom-color: var(--rule); }
.brief strong { font-weight: 500; }
.brief li { margin-bottom: 0.5em; }
.refs li { margin-bottom: 1.1em; }
.refs a { overflow-wrap: anywhere; }

.toc { margin: 2rem 0 0; padding-top: 1.25rem; border-top: 1px solid var(--rule); }
.toc ol { margin: 0; padding-left: 1.4rem; columns: 1; }
.toc li { margin-bottom: 0.35rem; break-inside: avoid; }
.toc a { text-decoration: none; }
.toc a:hover { text-decoration: underline; }

/* ---- /assistants: the prompt is the one emphasised element; the rest is type and rules ------- */

.prompt-text { font-family: var(--serif); font-size: 1.2rem; line-height: 1.4; overflow-wrap: anywhere; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---- /about -------------------------------------------------------------------------------- */

.card-index { list-style: none; margin: 0 -1rem; padding: 0; display: grid; gap: 2.5rem; }
.card-row { display: grid; gap: 1rem; grid-template-columns: minmax(0, 1fr); padding: 1rem; border: 1px solid transparent; border-radius: 6px; transition: border-color .2s; }
.card-row img { display: block; width: 100%; height: auto; border-radius: 3%/4.6%; box-shadow: 0 0 0 1px rgba(233, 211, 176, .25), 0 10px 30px rgba(0, 0, 0, .45); }
.card-row:hover, .card-row:focus-visible { border-color: rgba(233, 211, 176, .5); }
.people { display: grid; gap: 2.5rem; grid-template-columns: minmax(0, 1fr); margin-top: 1.5rem; }
.portrait { width: 100%; max-width: 15rem; height: auto; aspect-ratio: 2 / 3; object-fit: cover; }
.person h3 { margin: 1rem 0 0.3rem; }
.person h3 a { color: var(--ink); text-decoration: none; }
.person h3 a:hover { color: var(--gold-1); }
.person .label { margin-bottom: 0.8rem; }
.placeholder { color: var(--blue); font-style: italic; }
.placeholder-name { color: var(--blue); }
.papers .pending { color: var(--blue); font-size: 0.9rem; }

/* ---- Breakpoints: tablet 40em (640px), desktop 64em (1024px). No other queries. -------------- */

@media (min-width: 40em) {
  .ops .ops-wide { display: block; }
  .ops .ops-tall { display: none; }
  .hero-head { grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 1.75rem; }
  .hero-mark { width: 4rem; }
  .signposts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .people { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
  .foot-inner { grid-template-columns: auto 1fr 1fr; }
  .brand img { width: 10rem; }
  .toc ol { columns: 2; column-gap: 2.5rem; }
  .landing .masthead nav { display: block; }
  .contact { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .ask-splash-panel { padding: 2rem; }
}

@media (min-width: 64em) {
  .splash { min-height: 100vh; padding: clamp(3rem, 7vw, 6rem) 0; }
  .hero-mark { width: 6rem; }
  .splash-text {
    max-width: var(--measure);
    margin: 2rem 0 2rem auto;
    padding: clamp(2rem, 3vw, 3rem);
  }
  .band { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
  .band.flip .band-media { order: -1; }
  .contact-id { grid-template-columns: auto minmax(0, 1fr); }
  .contact-portrait { width: 9rem; }
  /* Wide box, readable text: the side padding grows so the content sits centred at about 44rem. */
  .ask-splash-panel { padding: clamp(2rem, 3vw, 3rem) max(3rem, calc((100% - 44rem) / 2)); }
}
