:root {
  --ink: #1d2230;
  --ink-soft: #4b5162;
  --paper: #f1ecdf;
  --paper-bright: #fcf9f1;
  --paper-deep: #ded6c4;
  --gold: #f1b83a;
  --gold-deep: #a86f0a;
  --signal: #d65342;
  --line: rgba(29, 34, 48, 0.19);
  --navy: #243352;
  --navy-deep: #121b2e;
  --shadow: 0 26px 70px rgba(11, 18, 33, 0.22);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  --mono: "SFMono-Regular", "Cascadia Mono", "Courier New", monospace;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--navy) var(--paper-deep);
  scrollbar-width: thin;
}

/* Page rail — styled like a slim timetable index rather than browser chrome. */
html::-webkit-scrollbar { width: 11px; }

html::-webkit-scrollbar-track {
  background: var(--paper-deep);
  border-left: 1px solid rgba(29, 34, 48, 0.12);
}

html::-webkit-scrollbar-thumb {
  min-height: 48px;
  border: 3px solid var(--paper-deep);
  border-radius: 999px;
  background: var(--navy);
}

html::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

html::-webkit-scrollbar-thumb:active { background: var(--signal); }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

button, textarea, input { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.clipboard-fallback {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

.masthead {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: rgba(241, 237, 223, 0.88);
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 3;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  overflow: hidden;
  border-radius: 9px;
}

.brand-mark img { display: block; width: 100%; height: 100%; }

.masthead-meta {
  display: flex;
  gap: 34px;
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: stretch;
  background: var(--navy);
  color: var(--paper-bright);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "UoL";
  position: absolute;
  left: 0.025em;
  bottom: -0.22em;
  color: rgba(255,255,255,0.04);
  font: 700 clamp(210px, 28vw, 430px)/1 var(--sans);
  letter-spacing: 0.055em;
}

.hero-copy {
  align-self: center;
  max-width: 870px;
  padding: 100px clamp(32px, 7vw, 110px) 116px;
  position: relative;
  z-index: 1;
  animation: enter 700ms cubic-bezier(.2,.8,.2,1) both;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 800px;
  margin-bottom: 30px;
  font: 400 clamp(57px, 6vw, 96px)/0.92 var(--serif);
  letter-spacing: -0.045em;
}

.hero-intro {
  max-width: 650px;
  color: rgba(251, 248, 238, 0.76);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  text-decoration: none;
  font-weight: 700;
}

.button-primary { background: var(--gold); color: var(--ink); }
.button-primary:hover { background: #ffd056; transform: translateY(-2px); }

.text-link {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  color: var(--paper-bright);
  text-underline-offset: 7px;
  font-weight: 650;
}

.text-link span { color: var(--gold); padding-left: 7px; }

.hero-board {
  align-self: center;
  margin-right: clamp(24px, 5vw, 72px);
  border: 1px solid rgba(241, 237, 223, 0.24);
  background: rgba(13, 22, 42, 0.78);
  box-shadow: 22px 22px 0 rgba(239, 184, 47, 0.13);
  position: relative;
  z-index: 1;
  animation: enter 700ms 100ms cubic-bezier(.2,.8,.2,1) both;
}

.board-label,
.board-status {
  padding: 17px 21px;
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.board-label { border-bottom: 1px solid rgba(241, 237, 223, 0.2); color: var(--gold); }
.board-status { border-top: 1px solid rgba(241, 237, 223, 0.2); color: rgba(255,255,255,.62); }
.board-status i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #67c997; margin-right: 8px; box-shadow: 0 0 0 4px rgba(103,201,151,.13); }

.hero-board ol { list-style: none; margin: 0; padding: 0; }
.hero-board li { display: grid; grid-template-columns: 48px 1fr auto; align-items: baseline; gap: 12px; padding: 22px; border-bottom: 1px solid rgba(241, 237, 223, 0.13); }
.hero-board li:last-child { border-bottom: 0; }
.hero-board li span { color: var(--gold); font: 600 11px/1 var(--mono); }
.hero-board li strong { font: 400 28px/1 var(--serif); }
.hero-board li small { color: rgba(255,255,255,.48); font: 500 11px/1 var(--mono); text-transform: uppercase; }

.extract-section,
.converter-section {
  padding: 110px clamp(24px, 6vw, 96px);
  position: relative;
}

.section-index {
  position: absolute;
  top: 116px;
  right: clamp(24px, 6vw, 96px);
  color: var(--gold-deep);
  font: 700 12px/1 var(--mono);
  letter-spacing: .15em;
}

.section-heading { max-width: 800px; margin-bottom: 58px; }
.section-heading h2 { margin: 0; font: 400 clamp(42px, 4.7vw, 72px)/1.02 var(--serif); letter-spacing: -0.035em; }

.extract-grid { display: grid; grid-template-columns: minmax(340px, .9fr) minmax(420px, 1.1fr); gap: clamp(45px, 8vw, 130px); align-items: center; }

.bookmark-ticket {
  padding: 20px;
  background: var(--paper-bright);
  border: 1px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink);
  position: relative;
}

.bookmark-ticket::before,
.bookmark-ticket::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--paper);
  top: 50%;
  transform: translateY(-50%);
}

.bookmark-ticket::before { left: -12px; border-right: 1px solid var(--ink); }
.bookmark-ticket::after { right: -12px; border-left: 1px solid var(--ink); }

.ticket-topline { display: flex; justify-content: space-between; padding: 4px 4px 18px; font: 700 10px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.ticket-code { color: var(--signal); }

.bookmarklet {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 22px;
  color: var(--ink);
  background: var(--gold);
  text-decoration: none;
  cursor: grab;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.bookmarklet:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--ink); }
.bookmarklet:active { cursor: grabbing; }
.bookmarklet-icon { font: 400 36px/1 var(--serif); }
.bookmarklet strong { display: block; margin-bottom: 7px; font-size: 17px; }
.bookmarklet small { display: block; font: 500 11px/1.4 var(--mono); text-transform: uppercase; letter-spacing: .05em; }

.copy-link,
.quiet-button,
.secondary-action {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.copy-link { width: 100%; padding: 18px 0 3px; font-size: 12px; }

.instructions ol { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.instructions li { display: grid; grid-template-columns: 54px 1fr; padding: 25px 0; border-bottom: 1px solid var(--line); }
.instructions li span { color: var(--gold-deep); font: 700 11px/1.7 var(--mono); }
.instructions li p { margin: 0; font-size: 17px; line-height: 1.55; }
.privacy-note { margin: 25px 0 0 54px; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }
.ios-import-note {
  margin: 24px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--gold-deep);
  background: #f5f1e8;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}
.ios-import-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font: 700 10px/1.2 var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ios-import-note p { margin: 0; }
.ios-import-note code { font-size: .95em; }

.converter-section { background: var(--ink); color: var(--paper-bright); }
.converter-heading { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.live-status { flex: 0 0 auto; margin-bottom: 8px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.62); font: 600 10px/1 var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.live-status.valid { border-color: #67c997; color: #8de3b7; }
.live-status.invalid { border-color: #e97c61; color: #f6a18d; }

.workbench { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(350px, .75fr); border: 1px solid rgba(255,255,255,.22); box-shadow: var(--shadow); }
.input-panel, .output-panel { min-width: 0; padding: clamp(24px, 3.5vw, 52px); }
.input-panel {
  display: flex;
  flex-direction: column;
  background: #252c3d;
}
.output-panel { background: var(--paper-bright); color: var(--ink); border-left: 1px solid rgba(0,0,0,.25); }

.panel-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.panel-header > div:first-child { display: flex; align-items: center; gap: 15px; }
.panel-header h3 { margin: 0; font: 400 28px/1 var(--serif); }
.panel-number { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 50%; font: 700 10px/1 var(--mono); }
.panel-actions { display: flex; gap: 16px; }
.input-panel .quiet-button { color: rgba(255,255,255,.65); font-size: 12px; }
.format-stamp { padding: 8px; border: 1px solid var(--ink); font: 700 9px/1 var(--mono); letter-spacing: .08em; transform: rotate(-2deg); }

.drop-zone {
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px dashed rgba(255,255,255,.4);
  color: rgba(255,255,255,.72);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.ingest-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.paste-clipboard {
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: var(--gold);
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.paste-clipboard:hover {
  background: #ffd05c;
  box-shadow: 5px 5px 0 rgba(10, 15, 28, 0.7);
  transform: translate(-2px, -2px);
}

.paste-clipboard:active {
  box-shadow: none;
  transform: translate(0, 0);
}

.paste-clipboard strong,
.paste-clipboard small { display: block; }

.paste-clipboard small {
  margin-top: 5px;
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paste-icon {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  flex: 0 0 auto;
}

.paste-icon kbd {
  min-width: 28px;
  display: grid;
  place-items: center;
  padding: 6px 7px;
  border: 1px solid rgba(29,34,48,.48);
  box-shadow: inset 0 -2px 0 rgba(29,34,48,.15);
  font: 700 15px/1 var(--mono);
}

.drop-zone:hover, .drop-zone.dragover { background: rgba(239,184,47,.09); border-color: var(--gold); }
.drop-zone input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.drop-icon { color: var(--gold); font-size: 25px; }

.textarea-label { display: flex; justify-content: space-between; margin: 25px 0 10px; color: rgba(255,255,255,.52); font: 600 10px/1 var(--mono); text-transform: uppercase; letter-spacing: .07em; }

textarea {
  width: 100%;
  min-height: 390px;
  resize: vertical;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding: 20px 0;
  outline: none;
  color: #e8e3d5;
  background: transparent;
  caret-color: var(--gold);
  font: 12px/1.65 var(--mono);
  tab-size: 2;
  scrollbar-color: rgba(241, 184, 58, 0.7) rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
}

.input-panel > textarea { flex: 1 1 390px; }

textarea::-webkit-scrollbar { width: 9px; }

textarea::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

textarea::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(241, 184, 58, 0.7);
  background-clip: padding-box;
}

textarea::-webkit-scrollbar-thumb:hover { background-color: var(--gold); }

textarea:focus { border-color: var(--gold); }
.message { margin-top: 15px; padding: 13px 15px; color: #ffc1b2; background: rgba(217,84,53,.12); border-left: 3px solid var(--signal); font-size: 13px; line-height: 1.5; }

.summary-empty { min-height: 510px; display: grid; place-content: center; justify-items: center; text-align: center; color: #7b817d; }
.summary-empty span { font: 400 62px/1 var(--serif); color: var(--paper-deep); }
.summary-empty p { max-width: 240px; line-height: 1.6; }

.calendar-name-row { display: flex; align-items: start; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 3px double var(--ink); border-bottom: 1px solid var(--line); }
.calendar-name-row span { display: block; margin-bottom: 7px; color: #6d756f; font: 600 9px/1 var(--mono); text-transform: uppercase; letter-spacing: .09em; }
.calendar-name-row strong { font: 400 23px/1.2 var(--serif); }
.ready-seal { flex: 0 0 auto; padding: 12px 7px; border: 2px solid var(--signal); border-radius: 50%; color: var(--signal); font: 800 9px/1 var(--mono); text-transform: uppercase; transform: rotate(8deg); }

.metrics { display: grid; grid-template-columns: repeat(3, 1fr); margin: 25px 0; border: 1px solid var(--ink); }
.metrics div { padding: 19px 12px; text-align: center; border-right: 1px solid var(--ink); }
.metrics div:last-child { border: 0; }
.metrics dt { font: 400 31px/1 var(--serif); }
.metrics dd { margin: 7px 0 0; color: #66706a; font: 700 9px/1 var(--mono); text-transform: uppercase; letter-spacing: .08em; }

.metadata-list { border-top: 1px solid var(--line); }
.metadata-list div { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.metadata-list span { color: #737a76; }
.metadata-list strong { text-align: right; }

.module-key { display: flex; flex-wrap: wrap; gap: 7px; margin: 23px 0; }
.module-chip { padding: 7px 9px; border: 1px solid var(--line); font: 700 9px/1 var(--mono); }

.export-button {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 19px 20px;
  border: 0;
  color: var(--paper-bright);
  background: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.export-button:hover { background: var(--navy-deep); transform: translateY(-2px); }
.export-button span { display: block; font-weight: 700; }
.export-button small { display: block; grid-column: 1; margin-top: 5px; color: rgba(255,255,255,.57); font: 500 10px/1 var(--mono); }
.export-button b { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--gold); font: 400 28px/1 var(--serif); }
.secondary-action { width: 100%; padding: 17px 0 0; font-size: 11px; }

.diagnostics {
  margin: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.diagnostics-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  font: 700 9px/1.35 var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.diagnostics-heading span { color: #737a76; }
.diagnostics-heading strong { color: #34765c; }
.diagnostics.has-issues .diagnostics-heading strong { color: var(--signal); }
.diagnostics ul { max-height: 130px; overflow: auto; margin: 0 0 14px; padding: 0 0 0 18px; color: #656b68; font-size: 11px; line-height: 1.55; }

.output-files { display: grid; gap: 6px; margin-bottom: 14px; }
.output-file {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(29,34,48,.025);
}
.output-file strong { overflow: hidden; text-overflow: ellipsis; font: 700 10px/1.2 var(--mono); white-space: nowrap; }
.output-file small { grid-column: 1; color: #777d79; font: 600 9px/1 var(--mono); text-transform: uppercase; }
.output-file button { grid-column: 2; grid-row: 1 / 3; border: 0; background: none; color: var(--navy); cursor: pointer; font: 700 10px/1 var(--mono); text-decoration: underline; text-underline-offset: 3px; }


.site-footer {
  padding: 46px clamp(24px, 6vw, 96px) 30px;
  border-top: 3px solid var(--gold);
  color: var(--paper-bright);
  background: var(--navy-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(330px, 1.25fr) minmax(190px, .7fr);
  gap: clamp(32px, 4vw, 68px);
  align-items: start;
  padding-bottom: 38px;
}

.footer-label {
  display: block;
  margin-bottom: 13px;
  color: var(--gold);
  font: 700 9px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-identity strong {
  display: block;
  font: 400 clamp(21px, 2.2vw, 30px)/1 var(--serif);
  letter-spacing: -.02em;
  white-space: nowrap;
}

.footer-privacy p,
.footer-owner p {
  margin: 0 0 9px;
  color: var(--paper-bright);
}

.footer-privacy p { font: 400 clamp(18px, 1.7vw, 24px)/1.25 var(--serif); }
.footer-owner p { font: 600 13px/1.4 var(--sans); }

.footer-privacy small,
.footer-owner small {
  display: block;
  max-width: 520px;
  color: rgba(252, 249, 241, .55);
  font-size: 11px;
  line-height: 1.55;
}

.footer-legal {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(252, 249, 241, .17);
}

.footer-legal p {
  min-width: 0;
  flex: 1 1 auto;
  margin: 0;
  color: rgba(252, 249, 241, .46);
  font-size: 10px;
  line-height: 1.65;
  text-wrap: pretty;
}

.footer-legal strong { color: rgba(252, 249, 241, .7); font-weight: 650; }
.footer-legal a {
  flex: 0 0 auto;
  color: var(--paper-bright);
  font: 700 9px/1 var(--mono);
  letter-spacing: .08em;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
  text-transform: uppercase;
}
.footer-legal a span { margin-left: 5px; color: var(--gold); }

.toast { position: fixed; right: 24px; bottom: 24px; z-index: 110; max-width: 340px; padding: 15px 18px; color: var(--paper-bright); background: var(--ink); border-left: 4px solid var(--gold); box-shadow: 0 12px 35px rgba(0,0,0,.3); font-size: 13px; opacity: 0; transform: translateY(12px); pointer-events: none; transition: 180ms ease; }
.toast.show { opacity: 1; transform: translateY(0); }

@keyframes enter { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1120px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-identity { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-board { margin: 0 32px 72px; }
  .extract-grid, .workbench { grid-template-columns: 1fr; }
  .output-panel { border-left: 0; border-top: 1px solid var(--ink); }
  .extract-grid { gap: 60px; }
}

@media (max-width: 680px) {
  .masthead { min-height: 64px; }
  .masthead-meta span:first-child { display: none; }
  .masthead-meta { gap: 0; }
  .hero-copy { padding: 76px 24px 70px; }
  h1 { font-size: 52px; }
  .hero-actions, .converter-heading { align-items: flex-start; flex-direction: column; }
  .hero-board { margin: 0 20px 55px; }
  .hero-board li { grid-template-columns: 35px 1fr; }
  .hero-board li small { display: none; }
  .extract-section, .converter-section { padding: 78px 20px; }
  .section-index { display: none; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2 { font-size: 43px; }
  .extract-grid { grid-template-columns: minmax(0, 1fr); }
  .bookmark-ticket { box-shadow: 8px 8px 0 var(--ink); }
  .privacy-note { margin-left: 0; }
  .input-panel, .output-panel { padding: 26px 20px; }
  .panel-header { align-items: flex-start; }
  .panel-actions { flex-direction: column; gap: 8px; }
  .ingest-actions { grid-template-columns: 1fr; }
  textarea { min-height: 320px; }
  .site-footer { padding-top: 38px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-identity { grid-column: auto; }
  .footer-legal { align-items: flex-start; flex-direction: column; gap: 20px; }
}

@media (max-width: 480px) {
  .masthead-meta { display: none; }
  .brand { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
