:root {
  --ink: #223137;
  --ink-soft: #536367;
  --deep: #173f46;
  --deep-2: #0d2e34;
  --terra: #b7543b;
  --terra-dark: #8f3d2a;
  --blue: #315f7c;
  --sage: #708b74;
  --brass: #c59342;
  --sand: #e5c991;
  --paper: #f3e7d4;
  --paper-light: #fffaf1;
  --purple: #75627f;
  --line: rgba(34, 49, 55, .17);
  --shadow: 0 22px 55px rgba(30, 43, 44, .12);
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.66;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .16em;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: white;
  background: var(--terra);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: white;
  background: rgba(13, 46, 52, .95);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
}

.nav-shell,
.section-shell,
.footer-shell,
.hero-shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.nav-shell {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.brand small {
  color: rgba(255, 255, 255, .63);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  transform: rotate(3deg);
}

.brand-mark i {
  display: block;
}

.brand-mark i:nth-child(1) {
  background: var(--terra);
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 86%);
}

.brand-mark i:nth-child(2) {
  background: var(--sand);
  clip-path: polygon(8% 0, 100% 14%, 100% 100%, 0 90%);
}

.brand-mark i:nth-child(3) {
  background: #81a799;
  clip-path: polygon(0 0, 91% 10%, 100% 100%, 7% 100%);
}

.brand-mark i:nth-child(4) {
  background: #53809a;
  clip-path: polygon(10% 7%, 100% 0, 90% 100%, 0 100%);
}

nav {
  display: flex;
  align-items: center;
  gap: 23px;
}

nav a {
  color: rgba(255, 255, 255, .77);
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: white;
}

nav .nav-cta {
  color: white;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, .42);
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 80% 0%, rgba(197, 147, 66, .22), transparent 30%),
    linear-gradient(135deg, var(--deep-2), var(--deep) 63%, #234d51);
}

.hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  left: -190px;
  bottom: -240px;
  border: 80px solid rgba(229, 201, 145, .08);
  border-radius: 50%;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 80px;
  align-items: center;
  min-height: 760px;
  padding-block: 90px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--sand);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.ink-kicker {
  color: var(--terra);
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.035em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.45rem, 6.8vw, 7rem);
  font-weight: 500;
  line-height: .91;
}

.hero h1 em {
  color: var(--sand);
  font-weight: 400;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .79);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 11px 20px;
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid transparent;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, .12);
}

.button-primary {
  color: white;
  background: var(--terra);
}

.button-primary:hover {
  background: var(--terra-dark);
}

.button-quiet {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, .4);
}

.button-light {
  color: var(--deep);
  background: var(--sand);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 27px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .83rem;
  list-style: none;
}

.trust-row span {
  margin-right: 5px;
  color: var(--sand);
}

.hero-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 165px;
  gap: 12px;
  transform: rotate(1.2deg);
}

.hero-tile {
  position: relative;
  overflow: hidden;
  padding: 22px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
}

.hero-tile::after {
  content: "";
  position: absolute;
  width: 115px;
  height: 115px;
  right: -45px;
  top: -45px;
  border: 20px solid rgba(255, 255, 255, .10);
  transform: rotate(25deg);
}

.hero-tile > * {
  position: relative;
  z-index: 1;
}

.hero-tile span {
  position: absolute;
  left: 19px;
  top: 15px;
  color: rgba(255, 255, 255, .65);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.hero-tile strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.hero-tile small {
  color: rgba(255, 255, 255, .73);
}

.tile-a { background: var(--terra); clip-path: polygon(0 0, 100% 0, 93% 100%, 0 92%); }
.tile-b { background: var(--blue); clip-path: polygon(5% 0, 100% 6%, 100% 100%, 0 94%); }
.tile-c { background: var(--sage); clip-path: polygon(0 4%, 95% 0, 100% 92%, 6% 100%); }
.tile-d { background: var(--brass); clip-path: polygon(4% 0, 100% 7%, 94% 100%, 0 94%); }
.tile-e { background: var(--purple); clip-path: polygon(0 0, 94% 7%, 100% 100%, 6% 94%); }
.tile-f { background: #3c777d; clip-path: polygon(6% 4%, 100% 0, 94% 94%, 0 100%); }

.editorial-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--deep);
  background: var(--sand);
}

.editorial-strip > div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px clamp(20px, 4vw, 60px);
  border-right: 1px solid rgba(23, 63, 70, .2);
}

.editorial-strip > div:last-child {
  border-right: 0;
}

.strip-number {
  min-width: 47px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.editorial-strip p {
  margin: 0;
  font-size: .82rem;
}

.section-shell {
  padding-block: 105px;
}

.section-heading h2,
.cabinet-copy h2,
.boundary-section h2,
.identity-section h2,
.policy-contact h2 {
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: .97;
}

.intro-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 90px;
}

.large-copy {
  margin-top: 0;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  line-height: 1.35;
}

.intro-copy > p:not(.large-copy) {
  max-width: 770px;
  color: var(--ink-soft);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.principle-grid article {
  position: relative;
  padding: 26px 22px 20px;
  background: rgba(255, 250, 241, .65);
  border-top: 4px solid var(--terra);
}

.mini-index {
  color: var(--terra);
  font-size: .72rem;
  font-weight: 900;
}

.principle-grid h3 {
  margin: 24px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.principle-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .88rem;
}

.workspace-section {
  color: white;
  background: var(--deep);
}

.heading-row {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 52px;
}

.heading-row > p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, .67);
}

.workspace-board {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.workspace-card {
  position: relative;
  min-height: 350px;
  padding: 26px;
  overflow: hidden;
  color: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, .14);
}

.workspace-card:nth-child(1),
.workspace-card:nth-child(6),
.workspace-card:nth-child(8) {
  grid-column: span 5;
}

.workspace-card:nth-child(2),
.workspace-card:nth-child(7),
.workspace-card:nth-child(9) {
  grid-column: span 7;
}

.workspace-card:nth-child(3),
.workspace-card:nth-child(4),
.workspace-card:nth-child(5) {
  grid-column: span 4;
}

.workspace-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -90px;
  bottom: -100px;
  border: 35px solid rgba(255, 255, 255, .08);
  transform: rotate(20deg);
}

.workspace-card > * {
  position: relative;
}

.card-index {
  color: rgba(255, 255, 255, .62);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.card-icon {
  margin-top: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1;
}

.workspace-card h3 {
  margin: 17px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}

.workspace-card p {
  color: rgba(255, 255, 255, .82);
}

.workspace-card ul {
  margin: 16px 0 0;
  padding: 16px 0 0 19px;
  border-top: 1px solid rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .7);
  font-size: .84rem;
}

.card-purpose { background: var(--terra); clip-path: polygon(0 0, 100% 0, 97% 100%, 0 95%); }
.card-listen { background: var(--blue); clip-path: polygon(2% 0, 100% 3%, 100% 96%, 0 100%); }
.card-assets { background: var(--sage); clip-path: polygon(0 3%, 96% 0, 100% 100%, 4% 97%); }
.card-outcome { background: var(--brass); clip-path: polygon(3% 0, 100% 4%, 97% 100%, 0 96%); }
.card-partner { background: var(--purple); clip-path: polygon(0 3%, 97% 0, 100% 96%, 3% 100%); }
.card-access { background: #36777e; clip-path: polygon(4% 0, 100% 2%, 96% 100%, 0 98%); }
.card-safe { background: #986343; clip-path: polygon(0 0, 97% 4%, 100% 100%, 3% 96%); }
.card-resource { background: #536f5a; clip-path: polygon(3% 2%, 100% 0, 97% 97%, 0 100%); }
.card-learning { background: #466694; clip-path: polygon(0 3%, 96% 0, 100% 97%, 3% 100%); }

.workflow-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 90px;
}

.workflow-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 15px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.workflow-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.workflow-list > li > span {
  color: var(--terra);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.workflow-list h3 {
  margin: 2px 0 6px;
  font-size: 1.1rem;
}

.workflow-list p {
  margin: 0;
  color: var(--ink-soft);
}

.cabinet-section {
  color: white;
  background: var(--terra);
}

.cabinet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.cabinet-art {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 150px;
  gap: 12px;
  background: var(--deep-2);
  box-shadow: 18px 18px 0 rgba(75, 24, 12, .25);
  transform: rotate(-1.2deg);
}

.drawer {
  padding: 18px;
  display: flex;
  align-items: flex-end;
  border: 7px solid rgba(255, 255, 255, .08);
}

.drawer span {
  color: var(--deep);
  padding: 5px 9px;
  background: var(--paper-light);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.d1 { background: var(--sand); }
.d2 { background: var(--blue); }
.d3 { background: var(--sage); }
.d4 { background: var(--purple); }

.cabinet-copy p:not(.kicker) {
  color: rgba(255, 255, 255, .82);
}

.fact-list {
  margin: 32px 0 0;
}

.fact-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 15px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.fact-list dt {
  color: var(--sand);
  font-weight: 800;
}

.fact-list dd {
  margin: 0;
}

.template-section .heading-row > p {
  color: var(--ink-soft);
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.template-grid article {
  min-height: 270px;
  padding: 28px;
  background: rgba(255, 250, 241, .48);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.template-grid span {
  color: var(--terra);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.template-grid blockquote {
  margin: 36px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1.25;
}

.template-grid p {
  color: var(--ink-soft);
  font-size: .88rem;
}

.privacy-section {
  color: white;
  background:
    linear-gradient(110deg, rgba(13, 46, 52, .98), rgba(23, 63, 70, .94)),
    var(--deep);
}

.privacy-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 95px;
}

.privacy-lead {
  margin: 25px 0 30px;
  color: rgba(255, 255, 255, .74);
  font-size: 1.05rem;
}

.privacy-checks {
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-checks li {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 15px;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.privacy-checks li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.privacy-checks span {
  grid-row: 1 / 3;
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.privacy-checks strong,
.privacy-checks small {
  display: block;
}

.privacy-checks small {
  color: rgba(255, 255, 255, .62);
}

.boundary-title {
  display: flex;
  gap: 25px;
  align-items: center;
}

.boundary-mark {
  flex: 0 0 auto;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--terra);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  transform: rotate(-3deg);
}

.boundary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.boundary-grid article {
  padding: 26px;
  background: var(--paper-light);
  border-top: 5px solid var(--terra);
  box-shadow: 8px 8px 0 rgba(23, 63, 70, .08);
}

.boundary-grid h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.boundary-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.faq-section {
  color: white;
  background: var(--blue);
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
}

.faq-grid .section-heading > p:last-child {
  color: rgba(255, 255, 255, .67);
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, .3);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.faq-list summary {
  position: relative;
  padding: 23px 45px 23px 0;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 7px;
  color: var(--sand);
  font-family: system-ui, sans-serif;
  font-size: 1.6rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -5px 0 23px;
  padding-right: 45px;
  color: rgba(255, 255, 255, .7);
}

.identity-section {
  background: var(--paper-light);
}

.identity-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
}

.identity-intro,
.contact-note {
  color: var(--ink-soft);
}

.contact-note {
  max-width: 430px;
  font-size: .78rem;
}

.identity-list {
  margin: 0;
}

.identity-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.identity-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.identity-list dt {
  color: var(--terra);
  font-weight: 850;
}

.identity-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.identity-list a {
  color: var(--terra-dark);
}

.site-footer {
  color: rgba(255, 255, 255, .72);
  background: var(--deep-2);
}

.footer-shell {
  padding-block: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.footer-brand small {
  font-size: .78rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 28px 0;
}

.footer-links a {
  color: white;
  font-size: .85rem;
}

.footer-shell > p {
  margin: 0;
  font-size: .76rem;
}

/* Privacy policy */

.policy-hero {
  color: white;
  background: var(--deep);
}

.policy-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 90px;
  min-height: 560px;
}

.policy-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 500;
  line-height: .9;
}

.policy-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, .73);
  font-size: 1.1rem;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .63);
  font-size: .8rem;
}

.policy-summary {
  padding: 30px;
  color: var(--ink);
  background: var(--sand);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, .16);
  transform: rotate(1deg);
}

.policy-summary ul {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.policy-summary li {
  padding: 9px 0 9px 25px;
  border-bottom: 1px solid rgba(23, 63, 70, .16);
}

.policy-summary li::before {
  content: "✓";
  margin-left: -25px;
  margin-right: 10px;
  color: var(--terra);
  font-weight: 900;
}

.policy-summary > p:last-child {
  margin-bottom: 0;
  font-size: .75rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: 285px 1fr;
  align-items: start;
  gap: 60px;
}

.policy-index {
  position: sticky;
  top: 105px;
  padding: 25px;
  background: rgba(255, 250, 241, .75);
  border-top: 5px solid var(--terra);
}

.policy-index ol {
  margin: 0;
  padding-left: 22px;
}

.policy-index li {
  margin: 8px 0;
  color: var(--terra);
  font-size: .76rem;
  font-weight: 800;
}

.policy-index a {
  color: var(--ink);
  font-weight: 650;
}

.policy-articles {
  border-top: 1px solid var(--line);
}

.policy-article {
  scroll-margin-top: 100px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.policy-number {
  color: var(--terra);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.policy-article h2 {
  margin: -5px 0 15px;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -.02em;
}

.policy-article p {
  color: var(--ink-soft);
}

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

.policy-article a {
  color: var(--terra-dark);
  overflow-wrap: anywhere;
}

.warning-article {
  margin-inline: -25px;
  padding-inline: 25px;
  background: rgba(183, 84, 59, .06);
  border-left: 4px solid var(--terra);
}

.policy-contact {
  color: white;
  background: var(--terra);
}

.policy-contact-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.policy-contact p:not(.kicker) {
  color: rgba(255, 255, 255, .77);
}

/* 404 */

.not-found {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  color: white;
  background: var(--deep);
}

.not-found-card {
  width: min(calc(100% - 40px), 760px);
  padding: 60px;
  color: var(--ink);
  background: var(--paper-light);
  border-top: 10px solid var(--terra);
  box-shadow: 18px 18px 0 rgba(0, 0, 0, .2);
}

.not-found-code {
  color: var(--terra);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 1;
}

.not-found h1 {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: .95;
}

@media (max-width: 980px) {
  nav a:not(.nav-cta) {
    display: none;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 55px;
  }

  .hero-board {
    max-width: 720px;
  }

  .editorial-strip {
    grid-template-columns: 1fr;
  }

  .editorial-strip > div {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 63, 70, .2);
  }

  .intro-grid,
  .workflow-section,
  .cabinet-grid,
  .privacy-grid,
  .faq-grid,
  .identity-grid,
  .policy-hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .principle-grid,
  .template-grid,
  .boundary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .heading-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .workspace-card,
  .workspace-card:nth-child(n) {
    grid-column: span 6;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-index {
    position: static;
  }
}

@media (max-width: 660px) {
  .nav-shell,
  .section-shell,
  .footer-shell,
  .hero-shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand small {
    display: none;
  }

  nav .nav-cta {
    padding: 7px 10px;
    font-size: .72rem;
  }

  .hero-shell,
  .section-shell {
    padding-block: 70px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 17vw, 5.5rem);
  }

  .hero-board {
    grid-auto-rows: 135px;
    gap: 8px;
  }

  .hero-tile {
    padding: 15px;
  }

  .hero-tile strong {
    font-size: 1.2rem;
  }

  .hero-tile small {
    font-size: .7rem;
  }

  .section-heading h2,
  .cabinet-copy h2,
  .boundary-section h2,
  .identity-section h2,
  .policy-contact h2 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .principle-grid,
  .template-grid,
  .boundary-grid {
    grid-template-columns: 1fr;
  }

  .workspace-card,
  .workspace-card:nth-child(n) {
    grid-column: 1 / -1;
    min-height: 315px;
  }

  .cabinet-art {
    grid-auto-rows: 115px;
    padding: 18px;
  }

  .fact-list div,
  .identity-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .workflow-list li {
    grid-template-columns: 52px 1fr;
  }

  .boundary-title {
    align-items: flex-start;
  }

  .boundary-mark {
    width: 55px;
    height: 55px;
    font-size: 2rem;
  }

  .policy-hero-grid {
    min-height: 0;
  }

  .policy-hero h1 {
    font-size: clamp(3.4rem, 19vw, 6rem);
  }

  .policy-article {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .policy-number {
    font-size: 1.5rem;
  }

  .warning-article {
    margin-inline: 0;
    padding-inline: 15px;
  }

  .policy-contact-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .not-found-card {
    padding: 35px 25px;
  }
}

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

@media print {
  .site-header,
  .skip-link,
  .policy-index,
  .policy-contact,
  .site-footer {
    display: none;
  }

  body,
  .policy-hero {
    color: black;
    background: white;
  }

  .policy-hero-grid,
  .section-shell {
    display: block;
    width: 100%;
    padding: 0;
  }

  .policy-hero {
    margin-bottom: 35px;
  }

  .policy-hero h1,
  .policy-lead,
  .policy-meta {
    color: black;
  }

  .policy-summary {
    box-shadow: none;
    transform: none;
  }

  .policy-layout {
    display: block;
  }

  .policy-article {
    break-inside: avoid;
  }
}
