/* The subpage shell: nav, wordmark, page kicker and page h1.
 *
 * These are NOT in base.css because index.html genuinely replaces them. Its nav
 * is fixed and transparent over a full-bleed hero and only grows a border once
 * scrolled; its kicker is a flex row with a rule rather than an accent eyebrow;
 * its h1 runs to 124px against this file's 84px. Merging the two shells put a
 * permanent hairline under the homepage nav and 18px under every kicker.
 *
 * base.css holds what every page shares: tokens, type roles, .btn, .glass,
 * dialogs, the footer and the focus ring. This holds the five-page chrome.
 */
.wrap{margin:0 auto;padding-inline:max(24px,env(safe-area-inset-left)) max(24px,env(safe-area-inset-right))}
nav{border-bottom:1px solid var(--line)}
.nav-inner{margin:0 auto;height:72px;display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding-inline:max(24px,env(safe-area-inset-left)) max(24px,env(safe-area-inset-right))}
.wordmark{display:flex;align-items:center;gap:10px;text-decoration:none;color:var(--porcelain)}
.wordmark .logo-mark{width:38px;height:38px;object-fit:cover;border-radius:var(--r-chrome);display:block}
/* Gardiant carries the mark; Archivo carries everything else. */
.wordmark b{font-family:var(--font-title);font-weight:400;font-size:13px;letter-spacing:.1em;text-transform:uppercase;white-space:nowrap}
.back{color:var(--porcelain-dim);text-decoration:none;font-size:13px;letter-spacing:.08em;text-transform:uppercase;white-space:nowrap}
@media(max-width:480px){.nav-inner .wordmark b{display:none}}
.back:hover{color:var(--porcelain)}
.kicker{font-family:var(--font-mono);font-weight:400;font-size:11px;letter-spacing:.32em;text-transform:uppercase;color:var(--accent);margin-bottom:18px}
/* Gradient eyebrows. Guarded: without background-clip:text the transparent fill
   colour renders invisible rather than degrading to the solid accent. Uses the
   text cut of the ramp, whose darkest point is 7.94:1 on the ground. */
@supports ((-webkit-background-clip:text) or (background-clip:text)){
  .kicker{background:var(--accent-grad-text);-webkit-background-clip:text;background-clip:text;
    color:transparent;-webkit-text-fill-color:transparent;width:fit-content}
}
/* The display voice is the logo face; Gardiant has no width axis, so no
   font-stretch, and the geometric caps want positive tracking. */
h1{font-family:var(--font-title);font-weight:400;font-size:clamp(36px,7vw,84px);line-height:1;letter-spacing:.006em;text-transform:uppercase}
