/* ============================================================
   Teaching in ICP — global styles (v2)
   Greige neumorphism · teal + magenta · Marcellus / Spectral
   ============================================================ */

:root {
  /* core palette */
  --teal:        #1E8C8C;
  --teal-700:    #146A6A;
  --teal-100:    #D6E8E6;
  --magenta:     #C42A74;
  --magenta-700: #9C1E5A;
  --magenta-100: #F4D7E5;
  --pink:        #ECC7D8;
  --pink-soft:   #F6E3EC;

  --bg:          #E9E5DE;   /* greige page + neumorphic surface (same colour) */
  --surface:     #E9E5DE;
  --surface-alt: #F0ECE5;
  --ink:         #2B2630;
  --ink-soft:    #5E5763;
  --ink-faint:   #8A8390;
  --border:      #D7D1C6;
  --border-strong:#C6BFB2;

  /* neumorphic shadows (for #E9E5DE) */
  --nm-light:    #F8F3EB;
  --nm-dark:     #C8C2B6;
  --nm-raised:   -7px -7px 14px var(--nm-light), 7px 7px 14px var(--nm-dark);
  --nm-raised-sm: -4px -4px 9px var(--nm-light), 4px 4px 9px var(--nm-dark);
  --nm-pressed:  inset -4px -4px 8px var(--nm-light), inset 4px 4px 8px var(--nm-dark);

  /* icon accent colours (quick-find / kickers) */
  --c-teal:  #1E8C8C;
  --c-coral: #D9714E;
  --c-blue:  #3B73C4;
  --c-amber: #C9912A;
  --c-pink:  #C42A74;
  --c-gray:  #6B6B73;

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;

  --font-head: 'Marcellus', Georgia, 'Times New Roman', serif;
  --font-body: 'Spectral', Georgia, serif;

  --maxw: 1180px;
  --sidebar-w: 270px;

  /* back-compat aliases (older inline page styles reference these) */
  --purple:      var(--teal);
  --purple-700:  var(--teal-700);
  --purple-100:  var(--teal-100);
  --purple-050:  var(--surface-alt);
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
  background: linear-gradient(to top, #E3E5D2 0%, #EAEADD 45%, #F2F1E8 75%, #F8F6EF 100%) fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }

a { color: var(--teal-700); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--magenta); text-decoration: underline; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: .01em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.7vw, 2.1rem); margin-bottom: .5em; }
h3 { font-size: 1.25rem; margin-bottom: .35em; }
h4 { font-size: 1.05rem; margin-bottom: .3em; }
p  { margin-bottom: 1em; color: var(--ink-soft); }
ul, ol { padding-left: 1.3em; margin-bottom: 1em; color: var(--ink-soft); }
li { margin-bottom: .4em; }
strong { color: var(--ink); font-weight: 600; }

a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 4px;
}

.skip-link { position: absolute; left: -999px; top: 0; background: var(--magenta); color: #fff; padding: .6rem 1rem; z-index: 200; border-radius: 0 0 var(--r-sm) 0; }
.skip-link:focus { left: 0; color: #fff; text-decoration: none; }

.role-hidden, .search-hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.topwrap { position: sticky; top: 0; z-index: 100; }
.topbar { background: rgba(233,229,222,.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.topbar-inner { max-width: var(--maxw); margin: 0 auto; padding: .6rem 1.25rem; display: flex; align-items: center; gap: 1.25rem; }
.brand { display: flex; align-items: center; gap: .85rem; flex-shrink: 0; }
.brand a:hover { text-decoration: none; }
.brand-logo { display: inline-flex; align-items: center; }
.brand img { width: 120px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text .b-main { font-family: var(--font-head); font-size: 1.15rem; color: var(--ink); }
.brand-text .b-sub { font-size: .74rem; letter-spacing: .04em; color: var(--teal); }

.mainnav { margin-left: auto; }
.mainnav ul { list-style: none; display: flex; flex-wrap: nowrap; gap: .1rem; padding: 0; margin: 0; }
.mainnav a { display: inline-block; white-space: nowrap; color: var(--ink-soft); font-size: .9rem; padding: .45rem .7rem; border-radius: 999px; }
.mainnav a:hover { background: var(--teal-100); color: var(--teal-700); text-decoration: none; }
.mainnav a.active { background: var(--magenta); color: #fff; }

.menu-toggle { display: none; margin-left: auto; background: var(--surface); border: none; border-radius: var(--r-sm); color: var(--ink); font-size: 1.3rem; line-height: 1; padding: .45rem .6rem; cursor: pointer; box-shadow: var(--nm-raised-sm); }

/* ============================================================
   ROLE SWITCHER BAR
   ============================================================ */
.rolebar { background: var(--bg); border-bottom: 1px solid var(--border); }
.rolebar-inner { max-width: var(--maxw); margin: 0 auto; padding: .6rem 1.25rem; display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.rolebar .rb-label { font-size: .82rem; color: var(--ink-soft); display: inline-flex; align-items: center; gap: .35rem; }
.role-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.role-pill {
  font-family: var(--font-body); font-size: .85rem; padding: .4rem .95rem; border-radius: 999px;
  border: none; background: var(--surface); color: var(--ink-soft); cursor: pointer;
  box-shadow: var(--nm-raised-sm); transition: color .15s, box-shadow .15s, transform .15s;
}
.role-pill:hover { color: var(--teal-700); }
.role-pill[aria-pressed="true"] { box-shadow: var(--nm-pressed); color: var(--magenta); font-weight: 600; }
body[data-page="home"] .rolebar { display: none; }   /* homepage uses the hero switcher */

/* ============================================================
   SHELL / SIDEBAR
   ============================================================ */
.shell { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: var(--sidebar-w) 1fr; gap: 2rem; padding: 1.75rem 1.25rem 0; align-items: start; }
.content { min-width: 0; padding-bottom: 3rem; }

.sidebar { position: sticky; top: 130px; background: var(--surface); border: none; border-radius: var(--r-lg); padding: 1.35rem 1.15rem; box-shadow: var(--nm-raised); max-height: calc(100vh - 150px); overflow-y: auto; }
/* Home hides the role bar, so the sticky header is shorter — align the sidebar top with the hero. */
body[data-page="home"] .sidebar { top: 76px; max-height: calc(100vh - 96px); }
.sidebar h2 { font-family: var(--font-body); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin: 1.3rem 0 .6rem; font-weight: 600; }
.sidebar h2:first-child { margin-top: 0; }
.sidebar ul { list-style: none; padding: 0; margin: 0; }
.sidebar a {
  display: flex; align-items: center; gap: .6rem; padding: .6rem .85rem; margin-bottom: .55rem;
  border-radius: 999px; color: var(--ink-soft); font-size: .9rem; background: #EFEEEB;
  box-shadow: var(--nm-raised-sm); transition: transform .12s, color .15s;
}
.sidebar a:hover { color: var(--teal-700); transform: translateY(-1px); text-decoration: none; }
.sidebar a.active { box-shadow: var(--nm-pressed); color: var(--magenta); font-weight: 600; }
.sidebar a i { font-size: 1.05rem; color: var(--teal); flex-shrink: 0; }
.sidebar a .ext-mark { margin-left: auto; font-size: .9rem; color: var(--ink-faint); }
.sidebar-divider { border: none; border-top: 1px solid var(--border); margin: .9rem 0 .2rem; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { font-size: .84rem; color: var(--ink-faint); margin-bottom: 1.25rem; display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb .sep { color: var(--border-strong); }
.breadcrumb [aria-current="page"] { color: var(--ink); }

/* ============================================================
   GENERIC SURFACES
   ============================================================ */
.section { margin-bottom: 2.5rem; }
.section > p { max-width: 72ch; }

.surface { background: var(--surface); border: none; border-radius: var(--r-lg); padding: 1.6rem; margin-bottom: 1.5rem; box-shadow: var(--nm-raised-sm); }
.surface-alt { background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.6rem; margin-bottom: 1.5rem; }

.lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 70ch; }

.eyebrow { display: inline-block; font-size: .78rem; letter-spacing: .06em; color: var(--teal-700); background: var(--teal-100); padding: .28rem .8rem; border-radius: 999px; margin-bottom: .85rem; }

hr.divider { border: none; border-top: 1px solid var(--border); margin: 2.25rem 0; }
[id] { scroll-margin-top: 130px; }

/* ============================================================
   HERO  (pink-wave card)
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3.2vw, 2.5rem);
  margin-bottom: 2rem;
  color: #fff;
  background:
    linear-gradient(125deg, rgba(156,30,90,.88), rgba(196,42,116,.60) 55%, rgba(30,140,140,.45)),
    radial-gradient(120% 120% at 80% 10%, var(--pink), var(--magenta) 70%),
    var(--magenta);
  box-shadow: var(--nm-raised);
}
.hero.has-wave { background:
    linear-gradient(135deg, rgba(138,22,76,.78), rgba(178,32,94,.58)),
    var(--magenta) url("../images/hero-wave.jpg") center / cover no-repeat;
}
.hero-body { position: relative; z-index: 1; max-width: 700px; }
.hero h1 { color: #fff; font-size: clamp(1.9rem, 4.2vw, 3.2rem); margin-bottom: .35em; }
.hero .hero-sub { color: rgba(255,255,255,.93); font-size: 1.05rem; max-width: 50ch; margin-bottom: 1.1rem; }
.hero .eyebrow { background: transparent; color: rgba(255,255,255,.82); text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; padding: 0; margin-bottom: 1rem; }
.role-label { color: rgba(255,255,255,.88); font-size: .95rem; margin-right: .15rem; align-self: center; }
.qf-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: .3rem 1rem; margin-bottom: 1.25rem; }
.qf-head h2 { margin: 0; }
.role-current { font-size: .9rem; color: var(--ink-soft); margin: 0; }
.role-current strong { color: var(--magenta); }

.hero .role-pill { background: rgba(255,255,255,.16); box-shadow: none; border: 1px solid rgba(255,255,255,.5); color: #fff; }
.hero .role-pill:hover { color: #fff; background: rgba(255,255,255,.26); }
.hero .role-pill[aria-pressed="true"] { background: #fff; color: var(--magenta); border-color: #fff; box-shadow: none; }

.searchbar { display: flex; align-items: center; gap: .5rem; background: #fff; border-radius: 999px; padding: .65rem 1.1rem; max-width: 38rem; box-shadow: var(--nm-raised-sm); }
.hero .role-pills { margin-bottom: .25rem; }
.hero .searchbar { margin: 1.1rem 0 .25rem; }
.searchbar i { color: var(--teal); font-size: 1.2rem; }
.searchbar input { border: none; background: transparent; font-family: var(--font-body); font-size: 1rem; color: var(--ink); width: 100%; }
.searchbar input:focus { outline: none; }

.hero-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; align-items: center; }
.hero-tags .tags-label { font-size: .8rem; color: rgba(255,255,255,.8); }
.hero-tags a { font-size: .8rem; color: #fff; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.4); padding: .25rem .7rem; border-radius: 999px; }
.hero-tags a:hover { background: rgba(255,255,255,.28); text-decoration: none; }

/* ============================================================
   QUICK-FIND GRID (2 columns, mosaic banners)
   ============================================================ */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }
.qf-card { display: flex; flex-direction: column; background: var(--surface); border-radius: var(--r-lg); overflow: hidden; color: inherit; box-shadow: var(--nm-raised-sm); transition: transform .15s ease, box-shadow .15s ease; }
.qf-card:hover { transform: translateY(-3px); box-shadow: var(--nm-raised), 0 0 0 2px var(--teal); text-decoration: none; }
.qf-banner { height: 96px; }
/* Three distinct mosaic tile photos (pink / silver / blue), filling the banner
   edge-to-edge via cover so there are no side strips. */
.qf-banner.pink   { background: #E7C6D6 url("../images/tile-pink.jpg")   center / cover no-repeat; }
.qf-banner.silver { background: #D9D5CD url("../images/tile-silver.jpg") center / cover no-repeat; }
.qf-banner.blue   { background: #C5DCE6 url("../images/tile-blue.jpg")   center / cover no-repeat; }
.qf-card-body { padding: 1.25rem 1.4rem 1.5rem; }
.qf-kicker { display: block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: .35rem; }
.qf-card h3 { font-family: var(--font-head); font-size: 1.3rem; margin: 0 0 .35rem; color: var(--ink); }
.qf-card p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.qf-icon { width: 2.6rem; height: 2.6rem; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--r-sm); background: var(--surface-alt); font-size: 1.4rem; }

.ic-purple { color: var(--teal); }
.ic-teal { color: var(--c-teal); }
.ic-coral { color: var(--c-coral); }
.ic-blue { color: var(--c-blue); }
.ic-amber { color: var(--c-amber); }
.ic-pink { color: var(--c-pink); }
.ic-gray { color: var(--c-gray); }

/* ============================================================
   "NEW THIS SEMESTER"
   ============================================================ */
.news-strip { background: var(--surface); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--nm-raised-sm); }
.news-list { list-style: none; padding: 0; margin: 0; }
.news-list li { display: flex; align-items: flex-start; gap: .75rem; padding: .7rem 0; border-bottom: 1px solid var(--border); color: var(--ink-soft); }
.news-list li:last-child { border-bottom: none; }
.news-list li i { color: var(--magenta); font-size: 1.15rem; margin-top: .15rem; flex-shrink: 0; }
.badge { display: inline-block; font-size: .68rem; letter-spacing: .03em; padding: .14rem .55rem; border-radius: 999px; margin-left: .4rem; vertical-align: middle; white-space: nowrap; }
.badge-new { background: var(--teal); color: #fff; }
.badge-required { background: var(--magenta); color: #fff; }

/* ============================================================
   CONTACT / FEATURE CARDS
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.contact-card { background: var(--surface); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--nm-raised-sm); }
.contact-card .ct-head { display: flex; align-items: center; gap: .65rem; margin-bottom: .6rem; }
.contact-card .ct-head i { font-size: 1.6rem; color: var(--magenta); }
.contact-card h3 { margin: 0; }
.contact-card .ct-primary { font-weight: 600; color: var(--ink); margin-bottom: .4rem; }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.info-card { background: var(--surface); border: none; border-radius: var(--r-lg); padding: 1.4rem; box-shadow: var(--nm-raised-sm); }
.info-card h3 { display: flex; align-items: center; gap: .5rem; }
.info-card h3 i { color: var(--teal); font-size: 1.2rem; }

/* ============================================================
   EVENT CARDS
   ============================================================ */
.event-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.event-card { background: var(--surface); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--nm-raised-sm); }
.event-card .ev-head { padding: 1rem 1.3rem; border-bottom: 1px solid var(--border); background: var(--surface-alt); }
.event-card .ev-head h3 { margin: 0; display: flex; align-items: center; gap: .5rem; }
.event-card .ev-head h3 i { color: var(--magenta); }
.event-card .ev-head .ev-scale { font-size: .82rem; color: var(--ink-faint); }
.event-card .ev-body { padding: 1.1rem 1.3rem; }
.event-card dl { margin: 0; font-size: .9rem; }
.event-card dt { font-weight: 600; color: var(--ink); margin-top: .6rem; }
.event-card dt:first-child { margin-top: 0; }
.event-card dd { margin: 0 0 .2rem; color: var(--ink-soft); }

/* ============================================================
   CHECKLIST / REF / NOTICE / CALLOUT
   ============================================================ */
.checklist { list-style: none; padding: 0; }
.checklist li { display: flex; align-items: flex-start; gap: .7rem; padding: .55rem 0; border-bottom: 1px solid var(--border); color: var(--ink-soft); }
.checklist li:last-child { border-bottom: none; }
.checklist li > i:first-child { color: var(--teal); font-size: 1.15rem; margin-top: .15rem; flex-shrink: 0; }

.role-tag { display: inline-block; font-size: .68rem; letter-spacing: .02em; padding: .1rem .5rem; border-radius: 999px; background: var(--teal-100); color: var(--teal-700); margin-right: .4rem; vertical-align: middle; }
.role-tag.adjunct { background: var(--magenta-100); color: var(--magenta-700); }
.role-tag.core { background: var(--teal-100); color: var(--teal-700); }
.role-tag.ta { background: #F1E2D2; color: #9A5A1E; }

.notice { display: flex; gap: .6rem; background: var(--surface-alt); border: 1px solid var(--border); border-left: 4px solid var(--c-amber); border-radius: var(--r-sm); padding: .95rem 1.1rem; font-size: .92rem; color: var(--ink-soft); margin-bottom: 1.5rem; }
.notice i { color: var(--c-amber); font-size: 1.2rem; flex-shrink: 0; }
.callout { background: var(--teal-100); border-radius: var(--r); padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; }
.callout h3 { color: var(--teal-700); }

.doclink { display: inline-flex; align-items: center; gap: .5rem; background: var(--surface); border: none; border-radius: 999px; padding: .6rem 1.05rem; font-size: .9rem; color: var(--magenta-700); font-weight: 600; box-shadow: var(--nm-raised-sm); }
.doclink:hover { color: var(--magenta); transform: translateY(-1px); text-decoration: none; }
.doclink i { font-size: 1.2rem; }

.btn { display: inline-flex; align-items: center; gap: .5rem; background: var(--magenta); color: #fff; border: none; border-radius: 999px; padding: .65rem 1.3rem; font-family: var(--font-body); font-size: .95rem; font-weight: 600; cursor: pointer; box-shadow: var(--nm-raised-sm); }
.btn:hover { background: var(--magenta-700); color: #fff; text-decoration: none; }
.btn-outline { background: var(--surface); color: var(--teal-700); }
.btn-outline:hover { background: var(--surface); color: var(--magenta); }

/* ============================================================
   IMAGES / MISC
   ============================================================ */
.photo { width: 100%; height: auto; display: block; border-radius: var(--r-lg); border: none; box-shadow: var(--nm-raised-sm); }
figure.photo-figure { margin: 0 0 1.75rem; }
figure.photo-figure figcaption { font-size: .82rem; color: var(--ink-faint); margin-top: .45rem; }

.page-banner { width: 100%; height: 170px; object-fit: cover; border-radius: var(--r-lg); border: none; margin-bottom: 1.5rem; box-shadow: var(--nm-raised-sm); }
body[data-page="campus-map"] .page-banner { height: 340px; }
body[data-page="transportation"] .page-banner { height: 340px; }
/* Pedagogy + HR banners show the full image uncropped (designed graphics). */
body[data-page="pedagogy"] .page-banner { height: auto; object-fit: contain; }
body[data-page="hr-pay"] .page-banner { height: auto; object-fit: contain; }
/* First steps banner shows ~80% of the 944x656 photo (full width, ~20% cropped). */
body[data-page="first-steps"] .page-banner { height: auto; aspect-ratio: 944 / 525; object-fit: cover; }

.ref-list { list-style: none; padding: 0; }
.ref-list li { display: flex; gap: .6rem; padding: .55rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.ref-list li:last-child { border-bottom: none; }
.ref-list i { color: var(--teal); font-size: 1.2rem; margin-top: .1rem; flex-shrink: 0; }
.ref-list strong { display: block; }
.ref-list span { font-size: .85rem; color: var(--ink-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.sitefooter { background: var(--surface); border-top: 1px solid var(--border); margin-top: 2rem; padding: 2.5rem 1.25rem 1.5rem; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-inner img { width: 150px; height: auto; margin-bottom: .8rem; }
.footer-inner p { font-size: .85rem; color: var(--ink-soft); margin-bottom: .5rem; }
.footer-inner h3 { font-family: var(--font-body); font-size: .76rem; letter-spacing: .05em; color: var(--teal); font-weight: 600; margin-bottom: .6rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .4rem; }
.footer-links a { font-size: .88rem; color: var(--ink-soft); }
.footer-land { font-size: .85rem; color: var(--ink-soft); }
.footer-bottom { max-width: var(--maxw); margin: 1.5rem auto 0; padding-top: 1.25rem; border-top: 1px solid var(--border); font-size: .8rem; color: var(--ink-faint); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .shell { grid-template-columns: 1fr; }
  .sidebar { position: static; max-height: none; display: none; }
  body.sidebar-open .sidebar { display: block; }
  .menu-toggle { display: inline-block; }
  .mainnav { display: none; width: 100%; margin-left: 0; order: 3; }
  .topbar-inner { flex-wrap: wrap; }
  body.nav-open .mainnav { display: block; }
  body.nav-open .mainnav ul { flex-direction: column; gap: .1rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media print {
  .topwrap, .rolebar, .sidebar, .sitefooter, .menu-toggle, .searchbar { display: none !important; }
  .shell { display: block; }
  .hero { color: var(--ink); background: none; box-shadow: none; }
  .hero h1, .hero .hero-sub { color: var(--ink); }
}
