/* City of Clayton, MO, prototype by Stoa.
   World: arts-and-business district. Orchid on warm stone.
   Type: Instrument Sans (display) + Newsreader (body serif). Self-hosted woff2. */

@font-face {
  font-family: "Instrument Sans";
  src: url("/clayton/assets/fonts/InstrumentSans-var.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Newsreader";
  src: url("/clayton/assets/fonts/Newsreader-var.woff2") format("woff2");
  font-weight: 400 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Newsreader";
  src: url("/clayton/assets/fonts/Newsreader-Italic-var.woff2") format("woff2");
  font-weight: 400 500;
  font-display: swap;
  font-style: italic;
}

:root {
  --ink: #1b1e20;
  --paper: #f5f1e8;
  --card: #fbf8f1;
  --teal: #8e4ca0;
  --teal-text: #8e4ca0;
  --teal-deep: #1c1426;
  --brass: #c79ad4;
  --brass-text: #8e4ca0;
  --slate: #455058;
  --line: #dad3c4;
  --line-soft: #e7e1d4;
  --display: "Instrument Sans", "Trebuchet MS", system-ui, sans-serif;
  --body: "Newsreader", Georgia, "Times New Roman", serif;
  --wrap: 1120px;
  --r: 4px;
  --shadow: 0 1px 0 rgba(27, 30, 32, .04), 0 12px 30px -22px rgba(11, 46, 43, .5);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.08; color: var(--ink); margin: 0 0 .4em; letter-spacing: -.012em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.15rem); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1em; }
a { color: var(--teal-text); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--brass-text); }
img { max-width: 100%; height: auto; display: block; }
:focus-visible { outline: 3px solid var(--brass); outline-offset: 2px; border-radius: 2px; }

.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: .8rem; top: -3rem; z-index: 60; background: var(--teal-deep);
  color: #fff; padding: .65rem 1rem; border-radius: var(--r); font-family: var(--display); font-weight: 600;
  transition: top .15s ease;
}
.skip-link:focus { top: .8rem; color: #fff; }

/* ---------------------------------------------------------------- proto banner */
.proto-banner {
  background: var(--teal-deep); color: #f3ede0; font-family: var(--display);
  font-size: .82rem; letter-spacing: .01em; text-align: center; padding: .5rem 1rem;
}
.proto-banner b { color: #fff; }

/* ------------------------------------------------------------------- masthead */
.masthead { background: var(--paper); border-bottom: 1px solid var(--line); position: relative; }
.masthead-inner { display: flex; align-items: center; gap: 1.4rem; padding: 1rem 0; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark { width: 40px; height: 40px; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr); gap: 3px; flex: none; }
.brand-mark i { background: var(--teal); border-radius: 1px; }
.brand-mark i:nth-child(2), .brand-mark i:nth-child(6), .brand-mark i:nth-child(7) { background: var(--brass); }
.brand-mark i:nth-child(5) { background: var(--teal-deep); }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1.32rem; line-height: 1; letter-spacing: -.02em; }
.brand-name span { display: block; font-size: .66rem; font-weight: 600; letter-spacing: .19em; text-transform: uppercase; color: var(--slate); margin-top: .26rem; }

.masthead-search { margin-left: auto; flex: 1 1 270px; max-width: 380px; }
.menu-btn {
  margin-left: auto; display: none; align-items: center; gap: .5rem; background: var(--teal);
  color: #fff; border: 0; font-family: var(--display); font-weight: 600; font-size: .95rem;
  padding: .55rem .9rem; border-radius: var(--r); cursor: pointer; min-height: 44px;
}
.menu-btn:hover { background: var(--teal-deep); }

/* search box (header + page) */
[data-search-box] { position: relative; }
[data-search-box] form { display: flex; gap: .4rem; }
[data-search-box] input[type=search] {
  flex: 1; min-width: 0; font-family: var(--body); font-size: 1rem; padding: .6rem .8rem;
  border: 1.5px solid var(--line); border-radius: var(--r); background: var(--card); color: var(--ink); min-height: 44px;
}
[data-search-box] input[type=search]:focus { border-color: var(--teal); outline: 3px solid var(--brass); outline-offset: 1px; }
.btn {
  font-family: var(--display); font-weight: 600; font-size: .95rem; border: 0; cursor: pointer;
  background: var(--teal); color: #fff; padding: .58rem 1.05rem; border-radius: var(--r); min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem; text-decoration: none;
  transition: background .15s ease, transform .1s ease;
}
.btn:hover { background: var(--teal-deep); color: #fff; transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--teal-text); border: 1.5px solid var(--teal); }
.btn.ghost:hover { background: var(--teal); color: #fff; }
.btn.brass { background: var(--brass); color: #221a06; }
.btn.brass:hover { background: var(--brass-text); color: #fff; }

.search-suggest {
  list-style: none; margin: .35rem 0 0; padding: .25rem; position: absolute; z-index: 50; left: 0; right: 0;
  background: var(--card); border: 1.5px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); display: none;
}
.search-suggest:not(:empty) { display: block; }
.search-suggest li { border-radius: 3px; }
.suggest-row { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; padding: .5rem .6rem; cursor: pointer; font-family: var(--display); font-size: .95rem; color: var(--ink); }
.suggest-row.active, .suggest-row:hover { background: var(--teal); color: #fff; }
.suggest-row .where { font-size: .78rem; color: var(--slate); font-weight: 600; }
.suggest-row.active .where, .suggest-row:hover .where { color: #d9efe9; }

/* ----------------------------------------------------------------- primary nav */
.primary-nav { width: 100%; }
.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .2rem; border-top: 1px solid var(--line-soft); }
.primary-nav a {
  display: block; font-family: var(--display); font-weight: 600; font-size: .98rem; letter-spacing: -.01em;
  color: var(--ink); text-decoration: none; padding: .8rem .9rem; border-bottom: 3px solid transparent; min-height: 44px;
}
.primary-nav a:hover { color: var(--teal-text); border-bottom-color: var(--brass); }
.primary-nav a[aria-current="page"] { color: var(--teal-text); border-bottom-color: var(--teal); }

/* ----------------------------------------------------------------------- hero */
.hero { position: relative; color: #fff; overflow: hidden; background: var(--teal-deep); }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) contrast(1.05); }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(28,20,38,.93) 0%, rgba(110,58,128,.72) 55%, rgba(28,20,38,.6) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: clamp(2.4rem, 6vw, 4.6rem) 0 clamp(2.2rem, 5vw, 3.4rem); }
.hero h1 { color: #fff; max-width: 17ch; }
.hero .eyebrow { color: var(--brass); }
.hero-lede { font-size: 1.18rem; max-width: 46ch; color: #eef3ef; }
.hero-search { margin-top: 1.6rem; max-width: 560px; background: rgba(245,241,232,.96); padding: .55rem; border-radius: 6px; box-shadow: var(--shadow); }
.hero-search .btn { background: var(--brass); color: #221a06; }
.hero-search .btn:hover { background: var(--brass-text); color: #fff; }
.hero-tags { margin: .9rem 0 0; display: flex; flex-wrap: wrap; gap: .5rem; font-family: var(--display); font-size: .9rem; }
.hero-tags a { background: rgba(255,255,255,.12); color: #fff; padding: .4rem .7rem; border-radius: 100px; text-decoration: none; border: 1px solid rgba(255,255,255,.28); }
.hero-tags a:hover { background: #fff; color: var(--teal-deep); }
.hero-credit { position: absolute; right: .6rem; bottom: .4rem; z-index: 2; font-family: var(--display); font-size: .66rem; color: rgba(255,255,255,.7); }

/* eyebrow + motif */
.eyebrow { font-family: var(--display); font-weight: 700; font-size: .78rem; letter-spacing: .17em; text-transform: uppercase; color: var(--brass-text); display: flex; align-items: center; gap: .55rem; margin: 0 0 .6rem; }
.eyebrow::before { content: ""; width: 14px; height: 14px; flex: none; background:
  linear-gradient(var(--brass) 0 0) 0 0 / 6px 6px no-repeat,
  linear-gradient(var(--teal) 0 0) 8px 0 / 6px 6px no-repeat,
  linear-gradient(var(--teal) 0 0) 0 8px / 6px 6px no-repeat,
  linear-gradient(var(--brass) 0 0) 8px 8px / 6px 6px no-repeat; }

.section { padding: clamp(2.4rem, 5vw, 3.6rem) 0; }
.section.alt { background: var(--card); border-block: 1px solid var(--line-soft); }
.section.dark { background: var(--teal-deep); color: #eef3ef; }
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark .eyebrow { color: var(--brass); }
.section.dark a { color: #d9efe9; }
.section-head { max-width: 60ch; margin-bottom: 1.6rem; }
.divider { display: flex; gap: 6px; margin: 0 0 1.4rem; }
.divider i { width: 8px; height: 8px; background: var(--line); }
.divider i:nth-child(odd) { background: var(--brass); }
.divider i:nth-child(3) { background: var(--teal); }

/* ------------------------------------------------------------- task counter */
.tasks { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: .8rem; }
.task {
  display: flex; flex-direction: column; gap: .3rem; background: var(--card); border: 1px solid var(--line);
  border-left: 4px solid var(--teal); border-radius: var(--r); padding: 1rem 1.05rem; text-decoration: none; color: var(--ink);
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.task:hover { transform: translateY(-2px); border-left-color: var(--brass); box-shadow: var(--shadow); color: var(--ink); }
.task b { font-family: var(--display); font-size: 1.06rem; }
.task span { font-size: .92rem; color: var(--slate); }

/* "I want to" jump menu */
.iwant { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; margin-top: 1.4rem; font-family: var(--display); }
.iwant label { font-weight: 700; }
.iwant select { font-family: var(--body); font-size: 1rem; padding: .55rem .7rem; border: 1.5px solid var(--line); border-radius: var(--r); background: var(--card); color: var(--ink); min-height: 44px; }

/* ------------------------------------------------------------- audience band */
.audiences { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.aud { position: relative; border-radius: 6px; overflow: hidden; min-height: 250px; display: flex; align-items: flex-end; color: #fff; text-decoration: none; border: 1px solid var(--line); }
.aud img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; filter: grayscale(.2); }
.aud::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(28,20,38,.92) 8%, rgba(28,20,38,.15) 75%); z-index: 1; }
.aud-body { position: relative; z-index: 2; padding: 1.1rem; }
.aud-body h3 { color: #fff; margin-bottom: .25rem; }
.aud-body p { color: #e7eee9; margin: 0; font-size: .95rem; }
.aud:hover img { filter: grayscale(0); }
.aud:hover { color: #fff; }
.aud .keyline { position: absolute; inset: 8px; border: 1.5px solid rgba(199,154,212,.75); z-index: 2; pointer-events: none; }

/* -------------------------------------------------------------------- cards */
.grid { display: grid; gap: 1.1rem; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 1.2rem 1.25rem; }
.card h3 { margin-bottom: .35rem; }
.card .meta { font-family: var(--display); font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; color: var(--brass-text); margin-bottom: .5rem; }

.muted { color: var(--slate); }
.lede { font-size: 1.18rem; color: var(--ink); max-width: 60ch; }
.sample-tag { display: inline-block; font-family: var(--display); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brass-text); background: #fcf9f3; border: 1px solid rgba(142,76,160,.32); padding: .15rem .45rem; border-radius: 100px; vertical-align: middle; }

/* list with square markers */
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li { position: relative; padding: .35rem 0 .35rem 1.5rem; border-bottom: 1px solid var(--line-soft); }
.feature-list li::before { content: ""; position: absolute; left: 0; top: .72rem; width: 9px; height: 9px; background: var(--teal); }
.feature-list li:nth-child(even)::before { background: var(--brass); }

/* meetings / notices list */
.stack { display: grid; gap: .7rem; }
.row-item { display: flex; gap: 1rem; align-items: baseline; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: .85rem 1rem; text-decoration: none; color: var(--ink); }
.row-item:hover { border-color: var(--brass); color: var(--ink); }
.row-date { font-family: var(--display); font-weight: 700; color: var(--teal-text); flex: none; min-width: 5.4rem; }
.row-item .row-body b { font-family: var(--display); }
.row-item .row-body small { color: var(--slate); }

/* alert ribbon */
.alert-ribbon { background: var(--brass); color: #221a06; }
.alert-ribbon .wrap { display: flex; gap: .8rem; align-items: center; padding: .55rem 0; font-size: .95rem; }
.alert-ribbon b { font-family: var(--display); }
.alert-ribbon a { color: #221a06; font-weight: 600; }
.alert-ribbon .close { margin-left: auto; background: rgba(34,26,6,.12); border: 0; color: #221a06; font-family: var(--display); cursor: pointer; border-radius: var(--r); padding: .3rem .6rem; min-height: 32px; }

/* -------------------------------------------------------------- breadcrumbs */
.crumbs { font-family: var(--display); font-size: .85rem; padding: .9rem 0; color: var(--slate); }
.crumbs a { color: var(--teal-text); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { margin: 0 .4rem; color: var(--line); }

.page-head { padding: clamp(1.8rem, 4vw, 2.8rem) 0 1.4rem; border-bottom: 1px solid var(--line); background: var(--card); }
.page-head h1 { margin-bottom: .3rem; }

/* framed photo plate */
.plate { position: relative; padding: 9px; background: var(--card); border: 1px solid var(--line); }
.plate img { width: 100%; }
.plate .keyline { position: absolute; inset: 17px; border: 1.5px solid rgba(176,122,30,.5); pointer-events: none; }
.plate figcaption { font-family: var(--display); font-size: .78rem; color: var(--slate); padding: .55rem .2rem .1rem; }

/* ------------------------------------------------------- search results page */
.results-layout { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
[data-search-status] { font-family: var(--display); color: var(--slate); margin: .4rem 0 1rem; }
.results-group { margin-bottom: 1.8rem; }
.results-group > h2 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .08em; color: var(--brass-text); border-bottom: 2px solid var(--line); padding-bottom: .35rem; }
.result { padding: .9rem 0; border-bottom: 1px solid var(--line-soft); }
.result h3 { margin: 0 0 .15rem; font-size: 1.16rem; }
.result .crumb { font-family: var(--display); font-size: .78rem; color: var(--brass-text); margin: 0 0 .3rem; text-transform: uppercase; letter-spacing: .05em; }
.result p { margin: 0; color: var(--slate); }
.didyoumean { font-family: var(--display); background: rgba(176,122,30,.1); border-left: 4px solid var(--brass); padding: .7rem .9rem; border-radius: var(--r); }
.empty-grid { display: grid; grid-template-columns: repeat(5, 22px); gap: 6px; margin: 1.4rem 0; }
.empty-grid i { width: 22px; height: 22px; background: rgba(142,76,160,.16); }
.empty-grid i:nth-child(3n) { background: rgba(199,154,212,.32); }
.empty-grid i:nth-child(4n) { background: rgba(142,76,160,.3); }

/* ----------------------------------------------------- accessibility toggle */
.a11y-toggle { display: inline-flex; border: 1.5px solid var(--teal); border-radius: 100px; overflow: hidden; font-family: var(--display); font-weight: 600; margin: 1rem 0; }
.a11y-toggle button { border: 0; background: var(--card); color: var(--teal-text); padding: .6rem 1.2rem; cursor: pointer; min-height: 44px; font: inherit; }
.a11y-toggle button[aria-pressed="true"] { background: var(--teal); color: #fff; }
.audit-meter { display: flex; align-items: baseline; gap: .6rem; margin: 1rem 0; }
.audit-count { font-family: var(--display); font-weight: 800; font-size: 3rem; line-height: 1; color: var(--brass-text); }
.audit-count.zero { color: var(--teal-text); }
.audit-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.audit-item { border: 1px solid var(--line); border-left: 4px solid var(--brass); border-radius: var(--r); background: var(--card); padding: .8rem 1rem; }
.audit-item.pass { border-left-color: var(--teal); }
.audit-item h3 { font-size: 1rem; margin: 0 0 .15rem; }
.audit-item .impact { font-family: var(--display); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--brass-text); }
.audit-item.pass .impact { color: var(--teal-text); }

/* ------------------------------------------------------------------- footer */
.site-footer { background: var(--teal-deep); color: #cdd9d4; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.8rem; padding: 2.6rem 0 1.8rem; }
.site-footer h2 { color: #fff; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .1em; }
.site-footer a { color: #d9efe9; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; font-family: var(--display); font-size: .95rem; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-name span { color: #9fb5af; }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,.14); padding: 1rem 0 2rem; font-size: .85rem; color: #9fb5af; }
.footer-disclaimer a { color: var(--brass); }

/* --------------------------------------------------------------- responsive */
@media (max-width: 820px) {
  .audiences { grid-template-columns: 1fr; }
  .grid.three, .grid.two { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.2rem; }
}
@media (max-width: 720px) {
  .masthead-search { display: none; }
  .menu-btn { display: inline-flex; }
  .primary-nav { display: none; }
  .primary-nav.open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav a { border-bottom: 1px solid var(--line-soft); border-left: 3px solid transparent; }
  .primary-nav a[aria-current="page"] { border-left-color: var(--teal); border-bottom-color: var(--line-soft); }
  .mobile-header-search { padding: .8rem 0 0; }
}
@media (min-width: 721px) { .mobile-header-search { display: none; } }

/* a11y fixes */
[hidden] { display: none !important; }
a.btn.brass { color: #221a06; }
.section.dark a.btn { color: #fff; }
.section.dark a.btn.brass { color: #221a06; }
main p a, main li a, main figcaption a, .crumbs a, .site-footer p a, .footer-disclaimer a { text-decoration: underline; text-underline-offset: 3px; }
.hero-tags a, a.task, a.aud, a.row-item { text-decoration: none; }

/* ================================================================
   VISUAL POLISH PASS, generated raster assets (gallery/print world)
   paper-grain (warm tooth), facade-grid (mid-century module motif),
   gallery-wall (dark register atmosphere), artfair-band (footer),
   module-mark (focal emblem). All raster, on the orchid palette.
   ================================================================ */

/* warm paper tooth under the light registers */
body {
  background-color: var(--paper);
  background-image: url("/clayton/assets/paper-grain.png");
  background-size: 340px;
  background-blend-mode: multiply;
}
.section.alt, .page-head {
  background-color: var(--card);
  background-image: url("/clayton/assets/paper-grain.png");
  background-size: 340px;
  background-blend-mode: multiply;
}

/* hero, add depth: a vignette over the duotone skyline */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(125% 85% at 72% 18%, transparent 38%, rgba(28,20,38,.5) 100%);
}

/* dark register becomes a real gallery wall, not flat plum */
.section.dark {
  background-color: var(--teal-deep);
  background-image:
    linear-gradient(165deg, rgba(28,20,38,.84) 0%, rgba(28,20,38,.93) 100%),
    url("/clayton/assets/gallery-wall.jpg");
  background-size: cover; background-position: center;
}

/* footer, art-fair canopies fading into plum */
.site-footer {
  background-color: var(--teal-deep);
  background-image:
    linear-gradient(180deg, rgba(28,20,38,.93) 0%, rgba(28,20,38,.975) 70%),
    url("/clayton/assets/artfair-band.jpg");
  background-size: cover; background-position: center top;
}

/* page-head carries a faint mid-century module motif in the corner */
.page-head { position: relative; overflow: hidden; }
.page-head::after {
  content: ""; position: absolute; right: -44px; top: -34px;
  width: 330px; height: 330px; pointer-events: none; opacity: .09;
  background: url("/clayton/assets/facade-grid.png") no-repeat center / contain;
}
.page-head > .wrap { position: relative; z-index: 1; }

/* task tiles, the module mark slides in on hover + a top keyline */
.task { position: relative; overflow: hidden; border-top: 3px solid transparent; }
.task::before {
  content: ""; position: absolute; right: -16px; bottom: -16px;
  width: 76px; height: 76px; pointer-events: none; opacity: 0;
  background: url("/clayton/assets/module-mark.png") no-repeat center / contain;
  transform: translate(8px, 8px); transition: opacity .16s ease, transform .16s ease;
}
.task:hover::before { opacity: .15; transform: translate(0, 0); }
.task:hover { border-top-color: var(--brass); }

/* empty-state + 404 motif */
.notfound { position: relative; text-align: center; padding: clamp(2.6rem,7vw,5rem) 0; }
.notfound .module-mark {
  width: clamp(96px, 18vw, 150px); height: auto; margin: 0 auto 1.4rem;
  display: block; opacity: .92;
}
.notfound-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .07;
  background: url("/clayton/assets/facade-grid.png") no-repeat center top / min(560px, 86%);
}
.notfound .wrap { position: relative; z-index: 1; }
.notfound .hero-tags { justify-content: center; }
.notfound .hero-tags a { background: rgba(142,76,160,.1); color: var(--teal-text); border-color: rgba(142,76,160,.4); }
.notfound .hero-tags a:hover { background: var(--teal); color: #fff; }
