:root {
  --cream: #f4eadc;
  --paper: #fffaf1;
  --ink: #282622;
  --cobalt: #173c74;
  --cobalt-dark: #102b54;
  --clay: #d9552f;
  --turquoise: #3c9a92;
  --yellow: #f0ba3b;
  --line: rgba(40, 38, 34, 0.2);
  --muted: #676159;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --display: "Arial Black", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  --content: min(1180px, calc(100vw - 64px));
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--cream);
  background-image: radial-gradient(rgba(23, 60, 116, 0.1) 0.7px, transparent 0.7px);
  background-size: 10px 10px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-underline-offset: 0.22em; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--cobalt);
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}

.header-inner {
  display: grid;
  width: var(--content);
  min-height: 92px;
  margin: 0 auto;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-plate {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  border: 3px solid var(--cobalt);
  border-radius: 50%;
  color: var(--paper);
  background: var(--clay);
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: -0.08em;
  place-items: center;
  transform: rotate(-6deg);
}

.brand-plate::after {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
  transform: translate(23px, 19px);
}

.brand-copy { display: grid; line-height: 1.35; }
.brand-copy strong { font-size: 16px; font-weight: 800; letter-spacing: 0.05em; }
.brand-copy small { margin-top: 3px; color: var(--cobalt); font-family: Arial, sans-serif; font-size: 10px; font-weight: 800; letter-spacing: 0.2em; }

.site-nav { display: flex; align-items: center; gap: 25px; }
.site-nav a { font-size: 13px; font-weight: 800; text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--clay); }
.site-nav .nav-contact {
  padding: 11px 17px;
  border: 2px solid var(--ink);
  color: var(--paper);
  background: var(--cobalt);
  box-shadow: 5px 5px 0 var(--yellow);
}
.site-nav .nav-contact:hover { color: var(--paper); background: var(--clay); }

.menu-toggle {
  display: none;
  width: 49px;
  height: 49px;
  padding: 0;
  border: 2px solid var(--ink);
  background: var(--yellow);
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  content: "";
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}

.hero::before {
  position: absolute;
  right: -130px;
  bottom: -190px;
  width: 500px;
  height: 500px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: var(--content);
  min-height: 730px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
}

.hero-copy {
  display: flex;
  padding: 76px 70px 64px 0;
  flex-direction: column;
  justify-content: space-between;
}

.hero-label {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border: 2px solid var(--ink);
  color: var(--paper);
  background: var(--turquoise);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  transform: rotate(-1deg);
}

.hero-title {
  max-width: 770px;
  margin: 24px 0 0;
  font-family: var(--display);
  font-size: clamp(51px, 6.2vw, 91px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1.13;
}

.hero-title .blue { color: var(--cobalt); }
.hero-title .red { color: var(--clay); }

.hero-bottom {
  display: grid;
  max-width: 750px;
  margin-top: 50px;
  padding-top: 28px;
  border-top: 2px solid var(--ink);
  grid-template-columns: 1fr auto;
  gap: 38px;
  align-items: end;
}
.hero-bottom p { max-width: 500px; margin: 0; font-size: 17px; font-weight: 600; }

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 11px 20px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 2px solid var(--ink);
  color: var(--paper);
  background: var(--cobalt);
  box-shadow: 5px 5px 0 var(--clay);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}
.button::after { content: "→"; }
.button:hover { background: var(--clay); box-shadow: 2px 2px 0 var(--cobalt); transform: translate(3px, 3px); }
.button.light { color: var(--ink); background: var(--paper); box-shadow: 5px 5px 0 var(--yellow); }

.hero-art {
  position: relative;
  min-height: 730px;
  border-right: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  background: var(--cobalt);
}

.glaze-disc {
  position: absolute;
  top: 95px;
  left: 50%;
  display: grid;
  width: 350px;
  height: 350px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--clay);
  place-items: center;
  transform: translateX(-50%) rotate(4deg);
}

.glaze-disc::before {
  position: absolute;
  inset: 34px;
  border: 28px solid var(--turquoise);
  border-top-color: var(--yellow);
  border-right-color: var(--clay);
  border-radius: 50%;
  content: "";
  transform: rotate(-24deg);
}

.glaze-disc::after {
  position: absolute;
  inset: 105px;
  border: 3px solid var(--cobalt);
  border-radius: 50%;
  background: var(--paper);
  content: "";
}

.disc-copy {
  position: relative;
  z-index: 2;
  color: var(--cobalt);
  font-family: var(--display);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.85;
  text-align: center;
}
.disc-copy small { display: block; margin-top: 12px; font-family: Arial, sans-serif; font-size: 10px; letter-spacing: 0.18em; }

.hero-stamp {
  position: absolute;
  right: 25px;
  bottom: 108px;
  width: 150px;
  padding: 17px 10px;
  border: 2px solid var(--paper);
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  transform: rotate(-7deg);
}

.hero-coordinates {
  position: absolute;
  bottom: 34px;
  left: 28px;
  color: rgba(255,255,255,0.72);
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.ticker {
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  color: var(--paper);
  background: var(--clay);
}
.ticker-track {
  display: flex;
  width: max-content;
  padding: 14px 0;
  gap: 42px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  white-space: nowrap;
}
.ticker-track span::after { margin-left: 42px; color: var(--yellow); content: "●"; }

.section { padding: 112px 0; border-bottom: 2px solid var(--ink); }
.section.paper { background: var(--paper); }
.section.blue { color: var(--paper); background: var(--cobalt); }
.section.yellow { background: var(--yellow); }
.section.clay { color: var(--paper); background: var(--clay); }
.section-inner { width: var(--content); margin: 0 auto; }

.section-heading {
  display: grid;
  margin-bottom: 66px;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}
.section-no {
  padding-top: 8px;
  color: var(--clay);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.blue .section-no, .clay .section-no { color: var(--yellow); }
.section-title {
  max-width: 860px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 5.1vw, 68px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.22;
}

.mission-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 85px; }
.mission-lead { margin: 0; color: var(--cobalt); font-family: var(--display); font-size: clamp(27px, 3vw, 40px); font-weight: 900; line-height: 1.6; }
.mission-copy { position: relative; padding: 30px 32px; border: 2px solid var(--ink); background: var(--cream); box-shadow: 10px 10px 0 var(--turquoise); }
.mission-copy::before { position: absolute; top: -14px; left: 28px; padding: 2px 10px; color: var(--paper); background: var(--clay); font-family: monospace; font-size: 11px; content: "PURPOSE"; }
.mission-copy p { margin: 0 0 20px; }

.text-link { color: var(--cobalt); font-weight: 900; text-decoration-thickness: 2px; }
.blue .text-link, .clay .text-link { color: var(--yellow); }

.activity-board {
  display: grid;
  border-top: 2px solid var(--paper);
  border-left: 2px solid var(--paper);
  grid-template-columns: 1fr 1fr;
}
.activity-item {
  position: relative;
  min-height: 275px;
  padding: 38px 38px 32px;
  border-right: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper);
  overflow: hidden;
}
.activity-item:nth-child(2) { color: var(--ink); background: var(--yellow); }
.activity-item:nth-child(3) { color: var(--ink); background: var(--turquoise); }
.activity-item:nth-child(4) { background: var(--clay); }
.activity-number { font-family: Arial, sans-serif; font-size: 12px; font-weight: 900; letter-spacing: 0.15em; }
.activity-item h3 { max-width: 400px; margin: 55px 0 14px; font-family: var(--display); font-size: 30px; font-weight: 900; letter-spacing: -0.04em; line-height: 1.3; }
.activity-item p { max-width: 440px; margin: 0; font-size: 14px; }
.activity-shape { position: absolute; top: 22px; right: 25px; width: 86px; height: 86px; border: 3px solid currentColor; border-radius: 50%; opacity: 0.45; }
.activity-shape::after { position: absolute; inset: 17px; border: 3px solid currentColor; border-radius: 50%; content: ""; }

.archive-intro { display: grid; margin-bottom: 52px; grid-template-columns: 1fr 1fr; gap: 60px; }
.archive-intro p { margin: 0; }
.archive-note { padding: 21px 24px; border: 2px solid var(--ink); background: var(--paper); font-size: 13px; font-weight: 700; transform: rotate(1deg); }

.archive-list { border-top: 2px solid var(--ink); }
.archive-entry {
  display: grid;
  min-height: 150px;
  padding: 26px 0;
  border-bottom: 2px solid var(--ink);
  grid-template-columns: 130px minmax(250px, 0.82fr) minmax(280px, 1fr) 40px;
  gap: 30px;
  align-items: center;
}
.archive-date { color: var(--cobalt); font-family: monospace; font-size: 13px; font-weight: 900; }
.archive-entry h3 { margin: 0; font-family: var(--display); font-size: 22px; font-weight: 900; line-height: 1.35; }
.archive-entry p { margin: 0; color: var(--muted); font-size: 14px; }
.archive-mark { display: grid; width: 36px; height: 36px; border: 2px solid var(--ink); border-radius: 50%; color: var(--paper); background: var(--clay); font-weight: 900; place-items: center; }

.community-layout { display: grid; grid-template-columns: 1fr 0.9fr; gap: 90px; align-items: center; }
.community-layout h2 { margin: 0; font-family: var(--display); font-size: clamp(42px, 5.6vw, 76px); font-weight: 900; letter-spacing: -0.06em; line-height: 1.15; }
.community-copy p { max-width: 570px; margin: 28px 0; }
.community-poster { position: relative; padding: 42px 36px; border: 3px solid var(--ink); color: var(--ink); background: var(--paper); box-shadow: 13px 13px 0 var(--cobalt); transform: rotate(2deg); }
.community-poster::before { position: absolute; top: -20px; left: 50%; width: 105px; height: 33px; background: rgba(240,186,59,0.78); content: ""; transform: translateX(-50%) rotate(-4deg); }
.community-poster strong { display: block; color: var(--clay); font-family: var(--display); font-size: 28px; line-height: 1.3; }
.community-poster ul { margin: 26px 0 0; padding: 0; list-style: none; }
.community-poster li { padding: 10px 0; border-bottom: 1px solid var(--line); font-weight: 700; }

.profile-grid { display: grid; border: 2px solid var(--paper); grid-template-columns: 1fr 1fr; }
.profile-item { min-height: 140px; padding: 25px 28px; border-right: 2px solid var(--paper); border-bottom: 2px solid var(--paper); }
.profile-item:nth-child(even) { border-right: 0; }
.profile-item dt { color: var(--yellow); font-family: monospace; font-size: 12px; font-weight: 900; }
.profile-item dd { margin: 13px 0 0; font-size: 19px; font-weight: 800; line-height: 1.6; }
.profile-note { margin-top: 24px; color: rgba(255,255,255,0.75); font-size: 13px; }

.contact-banner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 70px; align-items: center; }
.contact-banner h2 { margin: 0; font-family: var(--display); font-size: clamp(42px, 5.6vw, 76px); font-weight: 900; letter-spacing: -0.06em; line-height: 1.15; }
.contact-banner p { max-width: 700px; margin: 24px 0 0; }
.contact-disc { display: grid; width: 190px; height: 190px; border: 3px solid var(--ink); border-radius: 50%; color: var(--paper); background: var(--cobalt); box-shadow: 10px 10px 0 var(--yellow); font-size: 17px; font-weight: 900; text-decoration: none; place-items: center; transform: rotate(-5deg); }
.contact-disc:hover { color: var(--ink); background: var(--paper); transform: rotate(4deg); }

.page-hero { position: relative; padding: 84px 0 76px; border-bottom: 2px solid var(--ink); overflow: hidden; background: var(--paper); }
.page-hero::after { position: absolute; right: 7%; bottom: -100px; width: 260px; height: 260px; border: 35px solid var(--turquoise); border-radius: 50%; content: ""; }
.page-hero-inner { position: relative; z-index: 1; display: grid; width: var(--content); margin: 0 auto; grid-template-columns: 150px 1fr; gap: 45px; }
.page-code { padding-top: 13px; color: var(--clay); font-family: monospace; font-size: 12px; font-weight: 900; letter-spacing: 0.12em; }
.page-title { max-width: 850px; margin: 0; color: var(--cobalt); font-family: var(--display); font-size: clamp(53px, 7vw, 94px); font-weight: 900; letter-spacing: -0.07em; line-height: 1.1; }
.page-lead { max-width: 760px; margin: 30px 0 0; font-size: 18px; font-weight: 600; }

.content-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 70px; }
.content-nav { position: sticky; top: 30px; align-self: start; }
.content-nav a { display: block; padding: 13px 0; border-bottom: 2px solid var(--ink); color: var(--cobalt); font-size: 13px; font-weight: 900; text-decoration: none; }
.content-nav a:hover { color: var(--clay); padding-left: 7px; }
.prose-section { margin-bottom: 82px; scroll-margin-top: 30px; }
.prose-section:last-child { margin-bottom: 0; }
.prose-section h2 { margin: 0 0 28px; padding: 0 0 18px; border-bottom: 3px solid var(--ink); color: var(--cobalt); font-family: var(--display); font-size: 37px; font-weight: 900; letter-spacing: -0.04em; line-height: 1.3; }
.prose-section h3 { margin: 38px 0 14px; color: var(--clay); font-family: var(--display); font-size: 23px; font-weight: 900; }
.prose-section p, .prose-section li { max-width: 790px; }
.prose-section blockquote { margin: 36px 0; padding: 27px 31px; border: 2px solid var(--ink); background: var(--paper); box-shadow: 9px 9px 0 var(--yellow); font-size: 17px; font-weight: 700; }

.fact-table { width: 100%; border-collapse: collapse; border-top: 2px solid var(--ink); }
.fact-table th, .fact-table td { padding: 21px 17px; border-bottom: 2px solid var(--ink); vertical-align: top; text-align: left; }
.fact-table th { width: 230px; color: var(--cobalt); font-size: 13px; font-weight: 900; }

.tag-wall { display: flex; flex-wrap: wrap; gap: 11px; }
.tag-wall span { padding: 8px 12px; border: 2px solid var(--ink); background: var(--paper); font-size: 13px; font-weight: 800; }
.tag-wall span:nth-child(3n+1) { background: var(--yellow); }
.tag-wall span:nth-child(3n+2) { color: var(--paper); background: var(--turquoise); }

.contact-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 75px; }
.contact-info h2 { margin: 0 0 24px; color: var(--cobalt); font-family: var(--display); font-size: 39px; font-weight: 900; letter-spacing: -0.04em; }
.contact-info dl { margin-top: 42px; border-top: 2px solid var(--ink); }
.contact-info dt { margin-top: 19px; color: var(--clay); font-family: monospace; font-size: 12px; font-weight: 900; }
.contact-info dd { margin: 5px 0 19px; padding-bottom: 19px; border-bottom: 2px solid var(--ink); font-weight: 700; }

.contact-form { position: relative; padding: 38px; border: 3px solid var(--ink); background: var(--yellow); box-shadow: 12px 12px 0 var(--cobalt); }
.contact-form::before { position: absolute; top: -18px; right: 35px; padding: 4px 15px; color: var(--paper); background: var(--clay); font-family: monospace; font-size: 11px; font-weight: 900; content: "MESSAGE FORM"; transform: rotate(2deg); }
.form-row { display: grid; margin-bottom: 21px; gap: 7px; }
.form-row label { font-size: 13px; font-weight: 900; }
.form-row label span { margin-left: 8px; color: var(--cobalt); font-size: 11px; }
.form-row input, .form-row select, .form-row textarea { width: 100%; border: 2px solid var(--ink); border-radius: 0; color: var(--ink); background: var(--paper); }
.form-row input, .form-row select { height: 52px; padding: 0 14px; }
.form-row textarea { min-height: 175px; padding: 12px 14px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; }
.contact-form .button { width: 100%; cursor: pointer; }
.contact-form .button:disabled { cursor: wait; opacity: 0.6; }
.form-status { min-height: 27px; margin: 18px 0 0; font-size: 13px; font-weight: 800; }
.form-status.is-success { color: #176043; }
.form-status.is-error { color: #8b2617; }

.site-footer { padding: 65px 0 28px; color: var(--paper); background: var(--ink); }
.footer-inner { width: var(--content); margin: 0 auto; }
.footer-main { display: grid; padding-bottom: 50px; grid-template-columns: minmax(320px, 1.3fr) 0.7fr 0.7fr; gap: 65px; }
.footer-brand strong { display: block; color: var(--yellow); font-family: var(--display); font-size: 24px; font-weight: 900; letter-spacing: -0.03em; }
.footer-brand p { margin: 17px 0 0; color: rgba(255,255,255,0.7); font-size: 13px; }
.footer-column h2 { margin: 0 0 15px; color: var(--turquoise); font-family: monospace; font-size: 11px; letter-spacing: 0.15em; }
.footer-column a { display: block; margin: 8px 0; color: rgba(255,255,255,0.78); font-size: 13px; text-decoration: none; }
.footer-column a:hover { color: var(--yellow); text-decoration: underline; }
.footer-bottom { display: flex; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.25); justify-content: space-between; gap: 25px; color: rgba(255,255,255,0.6); font-family: monospace; font-size: 10px; }

@media (max-width: 1040px) {
  :root { --content: min(100% - 40px, 920px); }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 92px 0 auto; display: none; padding: 28px 22px 38px; border-bottom: 3px solid var(--ink); flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 6px; border-bottom: 1px solid var(--line); }
  .site-nav .nav-contact { margin-top: 18px; text-align: center; }
  .hero-inner { grid-template-columns: 1fr 350px; }
  .hero-copy { padding-right: 42px; }
  .glaze-disc { width: 290px; height: 290px; }
  .glaze-disc::after { inset: 88px; }
  .section-heading { grid-template-columns: 110px 1fr; }
  .mission-layout, .community-layout { gap: 50px; }
  .archive-entry { grid-template-columns: 100px 0.8fr 1fr 35px; gap: 22px; }
  .content-layout { grid-template-columns: 190px 1fr; gap: 45px; }
}

@media (max-width: 760px) {
  :root { --content: calc(100% - 34px); }
  body { font-size: 15px; }
  .header-inner { min-height: 77px; }
  .site-nav { inset: 77px 0 auto; }
  .brand-plate { width: 45px; height: 45px; font-size: 13px; }
  .brand-copy strong { max-width: 205px; font-size: 12px; }
  .brand-copy small { display: none; }
  .hero::before { display: none; }
  .hero-inner { min-height: 0; grid-template-columns: 1fr; }
  .hero-copy { min-height: 610px; padding: 52px 0 46px; }
  .hero-title { font-size: clamp(48px, 15vw, 69px); }
  .hero-bottom { grid-template-columns: 1fr; gap: 24px; }
  .hero-bottom .button { width: 100%; }
  .hero-art { min-height: 500px; border-top: 2px solid var(--ink); border-right: 0; border-left: 0; }
  .glaze-disc { top: 60px; width: 300px; height: 300px; }
  .glaze-disc::after { inset: 90px; }
  .hero-stamp { bottom: 60px; }
  .ticker-track { font-size: 10px; }
  .section { padding: 78px 0; }
  .section-heading, .mission-layout, .archive-intro, .community-layout, .contact-banner, .page-hero-inner, .content-layout, .contact-layout, .footer-main { grid-template-columns: 1fr; }
  .section-heading { margin-bottom: 43px; gap: 15px; }
  .section-title { font-size: 39px; }
  .mission-layout { gap: 37px; }
  .mission-lead { font-size: 25px; }
  .activity-board { grid-template-columns: 1fr; }
  .activity-item { min-height: 235px; }
  .archive-intro { gap: 26px; }
  .archive-entry { padding: 25px 0; grid-template-columns: 84px 1fr 34px; gap: 15px; }
  .archive-entry p { grid-column: 2 / 4; }
  .community-layout { gap: 50px; }
  .contact-banner { gap: 42px; }
  .contact-disc { width: 155px; height: 155px; }
  .page-hero { padding: 57px 0 55px; }
  .page-hero::after { right: -70px; width: 190px; height: 190px; }
  .page-hero-inner { gap: 14px; }
  .page-title { font-size: 50px; }
  .content-nav { position: static; display: flex; overflow-x: auto; gap: 18px; }
  .content-nav a { flex: 0 0 auto; }
  .prose-section h2 { font-size: 31px; }
  .fact-table, .fact-table tbody, .fact-table tr, .fact-table th, .fact-table td { display: block; width: 100%; }
  .fact-table th { padding-bottom: 3px; border-bottom: 0; }
  .fact-table td { padding-top: 3px; }
  .contact-layout { gap: 45px; }
  .contact-form { padding: 29px 20px; box-shadow: 8px 8px 0 var(--cobalt); }
  .footer-main { gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-item, .profile-item:nth-child(even) { border-right: 0; }
}

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