/* ==========================================================================
   The Collective Era — cyberlightcomics.com
   Editorial/archival treatment: deep indigo + electric cyan chrome over a
   warm parchment reading surface. Loaded AFTER Bulma; overrides its resets.
   ========================================================================== */

:root {
  /* Chrome — descended from the original v5 indigo (#222358) and v4 black */
  --ink-950: #08091d;
  --ink-900: #101132;
  --ink-800: #16173d;
  --ink-700: #1c1d4a;
  --indigo:  #222358;
  --indigo-lift: #2c2d69;
  --indigo-soft: #3a3b84;

  /* Electric cyan — precision accent only, never a wash */
  --cyan: #00ffff;
  --cyan-bright: #6ff8ff;
  --cyan-mid: #34d6de;
  --cyan-dim: rgba(0, 255, 255, .34);
  --cyan-ghost: rgba(0, 255, 255, .10);
  --cyan-deep: #0a656d;   /* accessible link colour on parchment */
  --cyan-deeper: #064a51;

  /* Reading surface */
  --paper:   #f7f2e6;
  --paper-2: #efe8d7;
  --paper-3: #e5dcc6;
  --rule:    #d9cfb7;
  --rule-soft: #e6ddc9;

  /* Ink on paper */
  --text: #1b1b25;
  --text-soft: #4c4a44;
  --text-faint: #7c766a;

  /* Ink on chrome */
  --chrome-text: #eee9dc;
  --chrome-soft: #b3b7d8;
  --chrome-faint: #7f84ab;

  --display: 'Bricolage Grotesque', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --body: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --measure: 70ch;
  --wrap: 74rem;
  --shell: clamp(1.15rem, 5vw, 3.25rem);
}

/* --- Safeguard: content is NEVER hidden waiting on JavaScript ------------- */
[data-aos] { opacity: 1 !important; transform: none !important; }

/* --- Base ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  background-color: var(--ink-900);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--cyan-deep); text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.018em;
  color: var(--text);
  margin: 0;
}

p { margin: 0 0 1.15em; }

::selection { background: var(--cyan-ghost); color: var(--text); }

:focus-visible {
  outline: 2px solid var(--cyan-mid);
  outline-offset: 3px;
  border-radius: 1px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--shell);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--cyan);
  color: var(--ink-950);
  font-family: var(--mono);
  font-size: .8rem;
  padding: .6rem 1rem;
}
.skip-link:focus { left: 0; }

/* --- Dark chrome texture (scanlines + faint grid) ------------------------- */
.chrome {
  position: relative;
  background: var(--ink-800);
  color: var(--chrome-text);
  isolation: isolate;
}
.chrome::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(to bottom, rgba(0, 255, 255, .045) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(to right, rgba(255, 255, 255, .028) 0 1px, transparent 1px 5.5rem);
  opacity: .85;
}
.chrome > * { position: relative; z-index: 1; }

/* --- Reading progress (decorative enhancement only) ----------------------- */
.progress-rail {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  z-index: 90;
  pointer-events: none;
  background: transparent;
}
.progress-rail > span {
  display: block;
  height: 100%;
  width: var(--read, 0%);
  background: linear-gradient(90deg, var(--cyan-deep), var(--cyan));
  box-shadow: 0 0 10px rgba(0, 255, 255, .55);
}

/* --- Site header --------------------------------------------------------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--ink-950);
  border-bottom: 1px solid rgba(0, 255, 255, .22);
  transition: box-shadow .25s ease;
}
.site-head.is-stuck { box-shadow: 0 14px 34px -22px rgba(0, 0, 0, .95); }

.site-head .wrap { max-width: 86rem; }

.head-inner {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 3vw, 2.25rem);
  min-height: 4.1rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .6rem;
  flex: 0 0 auto;
  text-decoration: none;
}
.brand .mark {
  width: .62rem;
  height: .62rem;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 255, 255, .8);
  transform: translateY(-.05rem);
  flex: 0 0 auto;
}
.brand .name {
  font-family: var(--mono);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .155em;
  text-transform: uppercase;
  color: var(--chrome-text);
  white-space: nowrap;
}
.brand .years {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .1em;
  color: var(--chrome-faint);
  white-space: nowrap;
}
.brand:hover .name { color: var(--cyan-bright); }

/* Nav is a plain scrollable strip on small screens — no JS, never hidden */
.site-nav {
  margin-left: auto;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(to right, transparent 0, #000 .9rem, #000 calc(100% - .9rem), transparent 100%);
}
.site-nav::-webkit-scrollbar { display: none; }
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0 .9rem;
  white-space: nowrap;
}
.site-nav a {
  display: inline-block;
  padding: 1.35rem 0 1.2rem;
  font-family: var(--mono);
  font-size: .685rem;
  font-weight: 500;
  letter-spacing: .105em;
  text-transform: uppercase;
  color: var(--chrome-soft);
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.site-nav a:hover { color: var(--cyan-bright); }
.site-nav a[aria-current="page"] {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

/* --- Page head (dark masthead band) -------------------------------------- */
.pagehead {
  background: linear-gradient(178deg, var(--ink-900) 0%, var(--indigo) 62%, var(--ink-800) 100%);
  padding-block: clamp(3rem, 8vw, 5.75rem) clamp(2.6rem, 6vw, 4.25rem);
  border-bottom: 1px solid rgba(0, 255, 255, .2);
  overflow: hidden;
}
.pagehead .wrap { max-width: 68rem; }

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem .7rem;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .21em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 1.5rem;
}
.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0, 255, 255, .7);
  flex: 0 0 auto;
}
.eyebrow .sep { color: var(--chrome-faint); }

.pagehead h1 {
  color: #f6f3ea;
  font-size: clamp(2.05rem, 5.4vw, 3.7rem);
  line-height: 1.03;
  letter-spacing: -0.028em;
  max-width: 20ch;
  text-wrap: balance;
  animation: rise .55s cubic-bezier(.2, .7, .3, 1) both;
}
.pagehead .standfirst {
  margin: 1.5rem 0 0;
  max-width: 54ch;
  font-size: clamp(1.02rem, 1.9vw, 1.24rem);
  line-height: 1.62;
  color: #c5c9e6;
  animation: rise .55s .07s cubic-bezier(.2, .7, .3, 1) both;
}
.pagehead .standfirst em { color: #dfe2f5; }

/* Transform-only entrance: content is fully visible even if it never runs */
@keyframes rise { from { transform: translateY(11px); } to { transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pagehead h1, .pagehead .standfirst { animation: none; }
}

/* Home variant — hero photograph behind the masthead */
.pagehead--home {
  position: relative;
  padding-block: clamp(4rem, 11vw, 8.5rem) clamp(3.25rem, 8vw, 6rem);
  background: var(--ink-950);
}
.pagehead--home .hero-bleed {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}
.pagehead--home .hero-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  filter: saturate(.86) contrast(1.06);
}
.pagehead--home .hero-bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(96deg, rgba(8, 9, 29, .96) 0%, rgba(16, 17, 50, .9) 42%, rgba(34, 35, 88, .58) 72%, rgba(34, 35, 88, .34) 100%),
    linear-gradient(to top, rgba(8, 9, 29, .92), transparent 46%);
}
.pagehead--home > .wrap { position: relative; z-index: 2; }
.pagehead--home h1 { max-width: 20ch; font-size: clamp(2.3rem, 6.4vw, 4.5rem); }
.pagehead--home .standfirst { max-width: 46ch; }

/* Plain variant — no photograph, so the chrome does the work */
.pagehead--plain {
  position: relative;
  background:
    radial-gradient(96% 130% at 88% 4%, rgba(0, 255, 255, .16), transparent 58%),
    linear-gradient(178deg, var(--ink-900) 0%, var(--indigo) 68%, var(--ink-800) 100%);
}
.pagehead--plain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(to bottom, rgba(0, 255, 255, .05) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(to right, rgba(0, 255, 255, .07) 0 1px, transparent 1px 3.5rem);
  mask-image: linear-gradient(to left, #000, transparent 62%);
}
.pagehead--plain > .wrap { position: relative; z-index: 1; }

/* --- Hero band (article photographs) ------------------------------------- */
.hero-band {
  margin: 0;
  background: var(--ink-950);
  border-bottom: 1px solid var(--rule);
}
.hero-band img {
  width: 100%;
  height: clamp(15rem, 38vw, 27rem);
  object-fit: cover;
  filter: saturate(.9) contrast(1.04);
}

/* --- Reading surface ----------------------------------------------------- */
.sheet {
  flex: 1 0 auto;
  background: var(--paper);
  padding-block: clamp(2.75rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5.5rem);
}
.sheet--alt { background: var(--paper-2); border-top: 1px solid var(--rule); }

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 62rem) {
  .layout { grid-template-columns: minmax(0, 1fr) 15.5rem; }
}

/* --- Prose --------------------------------------------------------------- */
.prose {
  max-width: var(--measure);
  counter-reset: sect;
  font-size: 1.075rem;
  line-height: 1.735;
  color: var(--text);
}
.prose > *:first-child { margin-top: 0; }

.prose p { margin: 0 0 1.2em; }

.prose > p:first-of-type {
  font-size: 1.16em;
  line-height: 1.62;
  color: #23232f;
}
.prose > p:first-of-type::first-letter {
  float: left;
  font-family: var(--display);
  font-weight: 700;
  font-size: 3.35em;
  line-height: .82;
  margin: .06em .09em 0 0;
  color: var(--indigo);
}

.prose h2 {
  position: relative;
  margin: 2.9em 0 .62em;
  padding-top: 1.35em;
  border-top: 1px solid var(--rule);
  font-size: clamp(1.42rem, 2.6vw, 1.7rem);
  line-height: 1.16;
  letter-spacing: -0.022em;
  color: #17172a;
  scroll-margin-top: 6rem;
  text-wrap: balance;
}
.prose h2::before {
  counter-increment: sect;
  content: "§ " counter(sect, decimal-leading-zero);
  display: block;
  margin-bottom: .75rem;
  font-family: var(--mono);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--cyan-deep);
  text-transform: uppercase;
}
.prose h3 {
  margin: 2.1em 0 .5em;
  font-size: 1.16rem;
  letter-spacing: -0.01em;
}

.prose a {
  color: var(--cyan-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .19em;
  text-decoration-color: rgba(10, 101, 109, .42);
  transition: background-color .14s ease, color .14s ease, text-decoration-color .14s ease;
}
.prose a:hover {
  color: var(--cyan-deeper);
  background: rgba(0, 255, 255, .16);
  text-decoration-color: var(--cyan-deep);
}
.prose a[href^="http"]::after {
  content: "\2197";
  font-family: var(--mono);
  font-size: .72em;
  margin-left: .16em;
  opacity: .62;
  text-decoration: none;
}

.prose strong { font-weight: 600; color: #14141f; }
.prose em { font-style: italic; }

.prose code {
  font-family: var(--mono);
  font-size: .845em;
  padding: .14em .4em .16em;
  background: rgba(34, 35, 88, .065);
  border: 1px solid rgba(34, 35, 88, .14);
  border-radius: 2px;
  color: #23245c;
  word-break: break-word;
}

.prose ul, .prose ol {
  margin: 0 0 1.35em;
  padding-left: 1.35em;
}
.prose ul { list-style: square; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: .58em; padding-left: .25em; }
.prose li::marker { color: var(--cyan-deep); font-weight: 600; }
.prose ul ul, .prose ol ol { margin-top: .6em; margin-bottom: 0; }

/* Inline plate */
.plate {
  margin: 2.8em 0;
  padding: 0;
  border: 1px solid var(--rule);
  background: var(--paper-2);
}
.plate img { width: 100%; }
.plate figcaption {
  padding: .8rem 1rem .85rem;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: .715rem;
  line-height: 1.55;
  letter-spacing: .015em;
  color: var(--text-faint);
}
.plate figcaption::before {
  content: "PLATE — ";
  color: var(--cyan-deep);
  font-weight: 600;
  letter-spacing: .13em;
}

/* Page-specific mono treatments ------------------------------------------- */
/* Timeline: every h2 is a year range — set it in the machine face */
body.page-timeline .prose h2 {
  font-family: var(--mono);
  font-weight: 600;
  font-size: clamp(1.08rem, 2.1vw, 1.28rem);
  letter-spacing: -0.005em;
  color: var(--indigo);
}
/* Glossary: defined terms are the vocabulary of the era — mono them */
body.page-glossary .prose li > strong:first-child {
  font-family: var(--mono);
  font-weight: 600;
  font-size: .93em;
  letter-spacing: -0.01em;
  color: var(--cyan-deeper);
}

/* --- Rail ---------------------------------------------------------------- */
.rail { font-size: .9rem; }
@media (min-width: 62rem) {
  .rail {
    position: sticky;
    top: 5.9rem;
    align-self: start;
    border-left: 1px solid var(--rule);
    padding-left: 1.6rem;
  }
}
@media (max-width: 61.99rem) {
  .rail { border-top: 1px solid var(--rule); padding-top: 2rem; }
}

.rail-label {
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin: 0 0 .95rem;
}
.rail-label + .rail-label { margin-top: 2.4rem; }

.rail ol, .rail ul {
  list-style: none;
  margin: 0 0 2.4rem;
  padding: 0;
  counter-reset: railitem;
}
.rail li { margin-bottom: .62rem; line-height: 1.4; }
.rail a {
  color: var(--text-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.rail a:hover { color: var(--cyan-deeper); border-bottom-color: var(--cyan-dim); }

.rail .toc li { display: flex; gap: .6rem; }
.rail .toc li::before {
  counter-increment: railitem;
  content: counter(railitem, decimal-leading-zero);
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--text-faint);
  padding-top: .16rem;
  flex: 0 0 auto;
}

/* --- Index cards (home) --------------------------------------------------- */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 1.1rem;
  margin-bottom: 2.4rem;
  border-bottom: 1px solid var(--rule);
}
.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  letter-spacing: -0.025em;
}
.section-head .note {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0;
}

.idx-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.4rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.sheet .idx-card { background: var(--paper); }
.sheet--alt .idx-card { background: #fbf8f0; }
.idx-card:hover {
  transform: translateY(-3px);
  border-color: var(--cyan-deep);
  box-shadow: -4px 4px 0 0 rgba(10, 101, 109, .16);
}
.idx-card .num {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--cyan-deep);
  margin-bottom: .7rem;
}
.idx-card h3 {
  font-size: 1.09rem;
  line-height: 1.24;
  margin: 0 0 .55rem;
  color: var(--text);
  text-wrap: balance;
}
.idx-card p {
  margin: 0;
  font-size: .925rem;
  line-height: 1.55;
  color: var(--text-soft);
}
.idx-card .go {
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}

/* --- Pager --------------------------------------------------------------- */
.pager {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border-block: 1px solid var(--rule);
}
@media (min-width: 46rem) { .pager { grid-template-columns: 1fr 1fr; } }
.pager a {
  display: block;
  padding: 1.7rem clamp(1.15rem, 4vw, 2.25rem) 1.85rem;
  background: var(--paper-2);
  text-decoration: none;
  transition: background-color .18s ease;
}
.pager a:hover { background: #fbf8f0; }
.pager a:only-child { grid-column: 1 / -1; }
.pager .dir {
  display: block;
  font-family: var(--mono);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin-bottom: .55rem;
}
.pager .ttl {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.06rem;
  line-height: 1.26;
  letter-spacing: -0.018em;
  color: var(--text);
}
.pager .next { text-align: right; }

/* --- Footer -------------------------------------------------------------- */
.site-foot {
  background: var(--ink-950);
  color: var(--chrome-soft);
  border-top: 1px solid rgba(0, 255, 255, .22);
  padding-block: clamp(2.75rem, 6vw, 4rem) 1.75rem;
  font-size: .92rem;
}
.site-foot .foot-brand .name {
  font-family: var(--mono);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .155em;
  text-transform: uppercase;
  color: var(--chrome-text);
}
.site-foot .foot-brand p {
  margin: .9rem 0 0;
  max-width: 34ch;
  color: var(--chrome-faint);
  line-height: 1.6;
}
.foot-label {
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 1.1rem;
}
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: .55rem; line-height: 1.4; }
.site-foot a { color: var(--chrome-soft); text-decoration: none; }
.site-foot a:hover { color: var(--cyan-bright); }
.foot-rule {
  margin-top: 2.9rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 2rem;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--chrome-faint);
}
.foot-rule p { margin: 0; }

/* --- 404 ----------------------------------------------------------------- */
.oops {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  background:
    radial-gradient(80% 120% at 78% 10%, rgba(0, 255, 255, .16), transparent 60%),
    linear-gradient(176deg, var(--ink-900), var(--indigo) 70%, var(--ink-800));
  padding-block: clamp(4rem, 12vw, 8rem);
}
.oops .code {
  font-family: var(--mono);
  font-size: clamp(3.5rem, 14vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--cyan);
  text-shadow: 0 0 34px rgba(0, 255, 255, .45);
  line-height: 1;
  margin: 0 0 1.5rem;
}
.oops h1 {
  color: #f6f3ea;
  font-size: clamp(1.8rem, 4.6vw, 2.85rem);
  max-width: 18ch;
}
.oops p { margin: 1.35rem 0 0; max-width: 52ch; color: #c5c9e6; }
.oops .actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2.25rem;
}
.btn {
  display: inline-block;
  padding: .8rem 1.35rem;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--cyan-dim);
  color: var(--cyan);
  background: rgba(0, 255, 255, .06);
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}
.btn:hover { background: var(--cyan); color: var(--ink-950); border-color: var(--cyan); }
.btn--ghost { color: var(--chrome-soft); border-color: rgba(255, 255, 255, .22); background: transparent; }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .4); }

/* --- Bulma column gutters, tightened ------------------------------------- */
.columns { margin-bottom: 0; }
.column { padding-bottom: 1.5rem; }

/* --- Narrow screens ------------------------------------------------------ */
@media (max-width: 46rem) {
  .prose { font-size: 1.04rem; }
  .prose > p:first-of-type { font-size: 1.1em; }
  .prose > p:first-of-type::first-letter { font-size: 3em; }
  .head-inner { min-height: 3.6rem; }
  .brand .years { display: none; }
}
