:root {
  color-scheme: dark;
  --ink: #f7f2ff;
  --ink-soft: #c9c0d7;
  --ink-muted: #91879f;
  --night: #0d0916;
  --night-raised: #151020;
  --night-soft: #1b1429;
  --line: rgba(245, 237, 255, 0.13);
  --line-strong: rgba(245, 237, 255, 0.22);
  --lavender: #cab1f4;
  --lavender-bright: #e0d0ff;
  --rose: #e8b8c8;
  --gold: #e8d6a6;
  --success: #b9d8c2;
  --warning: #efd7a8;
  --max-width: 1160px;
  --copy-width: 760px;
  --serif: "Gowun Batang", "Noto Serif KR", "Batang", Georgia, serif;
  --sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  --latin: "Manrope", var(--sans);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% -8%, rgba(105, 70, 148, 0.24), transparent 34rem),
    radial-gradient(circle at 96% 13%, rgba(140, 82, 120, 0.14), transparent 29rem),
    var(--night);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 450;
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.19'/%3E%3C/svg%3E");
  opacity: 0.035;
}

body::after {
  position: fixed;
  top: 14vh;
  right: -12rem;
  z-index: -1;
  width: 31rem;
  aspect-ratio: 1;
  border: 1px solid rgba(224, 208, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 4.75rem rgba(224, 208, 255, 0.018),
    0 0 0 9.5rem rgba(224, 208, 255, 0.012);
  content: "";
  pointer-events: none;
}

::selection {
  background: var(--lavender-bright);
  color: #160f22;
}

a {
  color: inherit;
}

svg {
  display: block;
}

.shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--night);
  font-size: 0.875rem;
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--lavender-bright);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(245, 237, 255, 0.09);
  background: rgba(13, 9, 22, 0.78);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-family: var(--latin);
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.19em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
}

.brand-mark svg {
  width: 1.15rem;
  fill: none;
  stroke: var(--lavender-bright);
  stroke-width: 1.25;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding-block: 0.4rem;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--lavender-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.home-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.home-link:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
}

.page-hero {
  position: relative;
  padding: clamp(5.25rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.page-hero::before {
  position: absolute;
  top: 16%;
  left: max(5vw, calc(50% - 39rem));
  width: 0.28rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    6.25rem 3.5rem 0 rgba(255, 255, 255, 0.48),
    19rem -1.7rem 0 rgba(232, 184, 200, 0.72),
    31rem 4.5rem 0 rgba(255, 255, 255, 0.34),
    52rem 0.5rem 0 rgba(202, 177, 244, 0.62),
    61rem 6rem 0 rgba(255, 255, 255, 0.28);
  content: "";
  opacity: 0.8;
}

.hero-inner {
  position: relative;
  max-width: 910px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
  color: var(--lavender);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.75rem, 6.4vw, 5.25rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.14;
}

.page-hero h1 em {
  color: var(--rose);
  font-style: normal;
}

.hero-lead {
  max-width: 690px;
  margin: 1.6rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.8;
}

.about-hero .hero-inner {
  max-width: 1160px;
}

.about-hero h1,
.about-hero .hero-lead,
.about-hero .status-note {
  max-width: 650px;
}

.about-hero h1 {
  max-width: 750px;
  font-size: clamp(2.75rem, 5.2vw, 4.7rem);
}

.about-hero h1 > span,
.about-hero h1 em {
  display: block;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.55rem;
}

.about-hero-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 720;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.about-hero-actions a:hover,
.about-hero-actions a:focus-visible {
  border-color: rgba(224, 208, 255, 0.48);
  color: var(--ink);
  transform: translateY(-1px);
}

.about-hero-actions .about-primary-action {
  border-color: var(--lavender-bright);
  background: var(--lavender-bright);
  color: #171020;
}

.about-hero-actions .about-primary-action:hover,
.about-hero-actions .about-primary-action:focus-visible {
  background: #eadfff;
  color: #100b18;
}

.about-hero-art {
  position: absolute;
  top: 0;
  right: 0;
  width: min(35vw, 400px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 1.6rem;
  background: var(--night-raised);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.about-hero-art img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  margin: 2rem 0 0;
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.hero-meta span,
.hero-meta time {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
}

.hero-meta span::before,
.hero-meta time::before {
  width: 0.28rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lavender);
  content: "";
}

.status-note {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
  max-width: 900px;
  margin-top: 2.4rem;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(239, 215, 168, 0.25);
  border-radius: 1rem;
  background: linear-gradient(115deg, rgba(239, 215, 168, 0.09), rgba(202, 177, 244, 0.055));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.15);
}

.status-label {
  display: inline-flex;
  min-height: 1.75rem;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--warning);
  color: #251a0e;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}

.status-note p {
  margin: 0;
  color: #dfd5e9;
  font-size: 0.89rem;
  line-height: 1.72;
}

.document-wrap {
  padding: 0 0 clamp(6rem, 11vw, 10rem);
}

.document-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, var(--copy-width));
  justify-content: space-between;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.document-nav {
  position: sticky;
  top: 7rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
}

.document-nav strong {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--ink-muted);
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.document-nav ol {
  display: grid;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}

.document-nav li {
  counter-increment: toc;
}

.document-nav a {
  display: grid;
  grid-template-columns: 1.65rem 1fr;
  gap: 0.3rem;
  padding: 0.53rem 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 160ms ease;
}

.document-nav a::before {
  color: var(--ink-muted);
  content: counter(toc, decimal-leading-zero);
  font-size: 0.65rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  transform: translateY(0.15rem);
}

.document-nav a:hover {
  color: var(--lavender-bright);
}

.document-content {
  min-width: 0;
}

.policy-section {
  padding: 0 0 3.5rem;
  scroll-margin-top: 7rem;
}

.policy-section + .policy-section {
  padding-top: 3.5rem;
  border-top: 1px solid var(--line);
}

.section-number {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--lavender);
  font-family: "Manrope", var(--sans);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.policy-section h2,
.content-card h2 {
  margin: 0 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.policy-section h3 {
  margin: 2rem 0 0.65rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.015em;
}

.policy-section p,
.policy-section li,
.content-card p,
.content-card li {
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.policy-section p,
.content-card p {
  margin: 0 0 1rem;
}

.policy-section strong,
.content-card strong {
  color: var(--ink);
  font-weight: 720;
}

.policy-section a,
.content-card a,
.contact-card a {
  color: var(--lavender-bright);
  text-decoration-color: rgba(224, 208, 255, 0.42);
  text-underline-offset: 0.22em;
}

.policy-section a:hover,
.content-card a:hover,
.contact-card a:hover {
  text-decoration-color: currentColor;
}

.clean-list,
.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li,
.check-list li {
  position: relative;
  padding-left: 1.45rem;
}

.clean-list li::before {
  position: absolute;
  top: 0.7rem;
  left: 0.1rem;
  width: 0.35rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lavender);
  content: "";
}

.check-list li::before {
  position: absolute;
  top: 0.02rem;
  left: 0;
  color: var(--gold);
  content: "✦";
  font-size: 0.72rem;
}

.callout {
  margin: 1.6rem 0;
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--line);
  border-left: 2px solid var(--lavender);
  border-radius: 0.25rem 0.9rem 0.9rem 0.25rem;
  background: rgba(202, 177, 244, 0.05);
}

.callout strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.84rem;
}

.callout p:last-child {
  margin-bottom: 0;
}

.draft-table {
  display: grid;
  margin: 1.4rem 0 0;
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
}

.draft-row {
  display: grid;
  grid-template-columns: minmax(135px, 0.75fr) minmax(0, 1.8fr);
}

.draft-row + .draft-row {
  border-top: 1px solid var(--line);
}

.draft-row dt,
.draft-row dd {
  margin: 0;
  padding: 0.95rem 1.1rem;
  font-size: 0.88rem;
}

.draft-row dt {
  background: rgba(255, 255, 255, 0.025);
  color: var(--ink-muted);
  font-weight: 700;
}

.draft-row dd {
  color: var(--ink-soft);
}

.pending-value {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--warning);
  font-weight: 700;
}

.pending-value::before {
  width: 0.35rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: currentColor;
  content: "";
  box-shadow: 0 0 0 4px rgba(239, 215, 168, 0.08);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.principle-card,
.content-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.018));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.12);
}

.principle-card {
  min-height: 210px;
  padding: 1.5rem;
}

.principle-card > span {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--lavender);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.principle-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
}

.principle-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.72;
}

.content-card {
  padding: clamp(1.4rem, 4vw, 2.25rem);
}

.content-card + .content-card {
  margin-top: 1rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.comparison-grid .content-card {
  min-height: 100%;
}

.comparison-grid .content-card + .content-card {
  margin-top: 0;
}

.comparison-grid h3 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(202, 177, 244, 0.2);
  border-radius: 1.15rem;
  background: linear-gradient(120deg, rgba(92, 61, 130, 0.2), rgba(232, 184, 200, 0.06));
}

.contact-card p,
.contact-card strong {
  margin: 0;
}

.contact-card p {
  color: var(--ink-muted);
  font-size: 0.79rem;
}

.contact-card strong {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.contact-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}

.related-pages {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.related-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.related-header p,
.related-header h2 {
  margin: 0;
}

.related-header p {
  color: var(--ink-muted);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.related-header h2 {
  margin-top: 0.35rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.related-grid a {
  display: flex;
  min-height: 122px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.022);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.related-grid a:hover {
  border-color: rgba(202, 177, 244, 0.32);
  background: rgba(202, 177, 244, 0.06);
  transform: translateY(-3px);
}

.related-grid small {
  color: var(--ink-muted);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
}

.related-grid span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.site-footer {
  padding: 2.1rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
}

.footer-brand {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.footer-copy,
.footer-status {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer-status {
  text-align: right;
}

.footer-status strong {
  color: var(--warning);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(245, 237, 255, 0.07);
  font-size: 0.75rem;
}

.footer-bottom a {
  color: var(--ink-soft);
  text-underline-offset: 0.22em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem 1rem;
}

@media (max-width: 1100px) {
  .about-hero-art {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 520px);
    margin-top: 1.75rem;
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .document-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 5.5rem;
  }

  body {
    font-size: 16px;
  }

  body::after {
    top: 22vh;
    right: -22rem;
  }

  .shell {
    width: min(calc(100% - 36px), var(--max-width));
  }

  .header-inner {
    min-height: 64px;
  }

  .site-nav {
    display: none;
  }

  .home-link {
    min-height: 44px;
    padding-inline: 0.75rem;
  }

  .page-hero {
    padding: 4.4rem 0 3.5rem;
  }

  .page-hero::before {
    left: 2rem;
    opacity: 0.48;
  }

  .page-hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.65rem);
    line-height: 1.18;
  }

  .hero-lead {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.72;
  }

  .status-note {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.8rem;
    padding: 1.05rem;
  }

  .status-label {
    width: max-content;
  }

  .document-layout {
    display: block;
  }

  .document-nav {
    position: static;
    margin-bottom: 3.25rem;
    padding: 1.15rem;
  }

  .document-nav ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.1rem 0.8rem;
  }

  .document-nav a {
    grid-template-columns: 1.4rem 1fr;
    font-size: 0.79rem;
  }

  .policy-section {
    padding-bottom: 2.75rem;
  }

  .policy-section + .policy-section {
    padding-top: 2.75rem;
  }

  .policy-section p,
  .policy-section li,
  .content-card p,
  .content-card li {
    font-size: 0.94rem;
  }

  .principles-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: 0;
  }

  .principle-card > span {
    margin-bottom: 1.5rem;
  }

  .comparison-grid .content-card + .content-card {
    margin-top: 0;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-card a {
    width: 100%;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .related-grid a {
    min-height: 98px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-status {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 0.55rem;
    font-size: 0.82rem;
  }

  .brand-mark {
    width: 1.8rem;
  }

  .home-link span:first-child {
    display: none;
  }

  .document-nav ol {
    grid-template-columns: 1fr;
  }

  .draft-row {
    grid-template-columns: 1fr;
  }

  .draft-row dt {
    padding-bottom: 0.25rem;
  }

  .draft-row dd {
    padding-top: 0.35rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  :root {
    color-scheme: light;
  }

  body {
    background: #fff;
    color: #18131f;
  }

  body::before,
  body::after,
  .site-header,
  .document-nav,
  .related-pages,
  .site-footer,
  .skip-link {
    display: none !important;
  }

  .page-hero {
    padding: 2rem 0;
  }

  .page-hero h1,
  .policy-section h2,
  .policy-section h3,
  .policy-section strong,
  .content-card h2,
  .content-card strong {
    color: #18131f;
  }

  .hero-lead,
  .hero-meta,
  .policy-section p,
  .policy-section li,
  .content-card p,
  .content-card li {
    color: #3c3544;
  }

  .document-layout {
    display: block;
  }

  .policy-section,
  .content-card {
    break-inside: avoid;
  }

  .status-note,
  .callout,
  .draft-table,
  .content-card {
    border-color: #c9c2ce;
    background: #fff;
    box-shadow: none;
  }
}
