:root {
  color-scheme: light;
  --ink: #191713;
  --muted: #6b655a;
  --paper: #faf8f4;
  --surface: #fffefb;
  --line: #e9e5da;
  --line-strong: #d9d3c4;
  --forest: #14555a;
  --forest-deep: #0e4347;
  --mint: #e9f1f0;
  --sand: #f1eee7;
  --moss: #4a6741;
  --danger: #a33838;
  --warning: #8a5a16;
  --success: #236747;
  --shadow: 0 22px 60px rgb(25 23 19 / 8%);
  font-family:
    "Aptos",
    "Inter",
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgb(20 85 90 / 28%);
  outline-offset: 3px;
}

button,
input,
select {
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 16ch;
  margin-bottom: 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(1.45rem, 2vw, 2.1rem);
}

h3 {
  font-size: 1.05rem;
}

code {
  padding: 0.1rem 0.35rem;
  border-radius: 0.35rem;
  background: #edf1ee;
  font-size: 0.87em;
}

.site-header,
.site-footer,
main {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.5rem;
  border-bottom: 1px solid rgb(22 34 29 / 12%);
}

.site-header.compact {
  min-height: 4.5rem;
}

.site-header nav,
.site-footer {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-header nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.site-header nav a:hover,
.site-footer a:hover {
  color: var(--forest);
}

.brand {
  color: var(--forest-deep);
  font-size: 1.35rem;
  font-weight: 760;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.hero {
  padding: clamp(5rem, 11vw, 10rem) 0 clamp(4.5rem, 8vw, 7rem);
}

.hero-copy,
.grader-intro > p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.eyebrow {
  margin-bottom: 1.2rem;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 0.55rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 120ms ease,
    border-color 120ms ease,
    transform 120ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgb(35 103 71 / 28%);
  outline-offset: 2px;
}

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

.button.primary:hover:not(:disabled) {
  background: var(--forest-deep);
}

.button.secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--forest-deep);
}

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

.button.wide {
  width: 100%;
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
}

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

.feature-card {
  padding: 2.4rem;
  border-right: 1px solid var(--line);
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card p:last-child,
.protocol-panel p,
.muted,
.form-footnote,
.privacy-action p,
.report-item p {
  color: var(--muted);
}

.feature-number {
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 800;
}

.protocol-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(240px, 0.7fr);
  gap: clamp(2rem, 6vw, 6rem);
  margin: 6rem 0;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 1rem;
  background: var(--forest-deep);
  color: white;
  box-shadow: var(--shadow);
}

.protocol-panel .eyebrow,
.protocol-panel p {
  color: #bfd9cd;
}

.protocol-links {
  display: grid;
  align-content: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.protocol-links a {
  display: block;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  text-decoration: none;
}

.protocol-hero h1 {
  max-width: 14ch;
}

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

.documentation-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgb(255 255 255 / 88%);
}

.documentation-card li,
.documentation-card p:last-child {
  color: var(--muted);
}

.site-footer {
  min-height: 6rem;
  justify-content: flex-end;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer > :first-child {
  margin-right: auto;
}

.grader-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.75fr);
  gap: clamp(3rem, 8vw, 7rem);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.grader-intro h1,
.private-card h1,
.report-heading h1 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.trust-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 2rem;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 1.6rem;
}

.trust-list li::before {
  position: absolute;
  left: 0;
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.form-panel,
.private-card,
.score-card,
.report-section,
.privacy-panel {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgb(255 255 255 / 92%);
  box-shadow: var(--shadow);
}

.form-panel {
  padding: clamp(1.5rem, 4vw, 2.7rem);
}

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

.field {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.field.full {
  grid-column: 1 / -1;
}

.field small {
  color: var(--muted);
  font-weight: 500;
}

input,
select {
  width: 100%;
  min-height: 2.9rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid #c9d2cc;
  border-radius: 0.45rem;
  background: white;
  color: var(--ink);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  gap: 0.7rem;
  align-items: start;
  margin: 0.9rem 0;
  color: #35463e;
  font-size: 0.88rem;
}

.checkbox-row input {
  width: 1.05rem;
  min-height: 1.05rem;
  margin-top: 0.18rem;
  accent-color: var(--forest);
}

.checkbox-row.optional {
  color: var(--muted);
}

.honeypot {
  position: fixed;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-slot {
  min-height: 65px;
  margin: 1.2rem 0;
}

.form-footnote {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  text-align: center;
}

.status-box {
  padding: 0.9rem 1rem;
  border: 1px solid #cbd7d0;
  border-radius: 0.55rem;
  background: #edf3f0;
  color: var(--forest-deep);
}

.status-box[data-tone="success"] {
  border-color: #a8cfb9;
  background: #e8f5ed;
  color: var(--success);
}

.status-box[data-tone="warning"] {
  border-color: #e7cfaa;
  background: #fff6e7;
  color: var(--warning);
}

.status-box[data-tone="error"] {
  border-color: #e0b3b3;
  background: #fff0f0;
  color: var(--danger);
}

.private-page {
  background: var(--paper);
}

.centered-shell {
  display: grid;
  min-height: calc(100vh - 4.5rem);
  place-items: center;
  padding: 3rem 0;
}

.private-card {
  width: min(650px, 100%);
  padding: clamp(2rem, 6vw, 4rem);
}

.private-card h1 {
  font-size: clamp(2.7rem, 6vw, 4.5rem);
}

.private-card .button {
  margin-top: 1rem;
}

.report-shell {
  padding: 4rem 0 7rem;
}

.report-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.report-heading h1 {
  margin-bottom: 2.5rem;
}

#report-content {
  display: grid;
  gap: 1.4rem;
  margin: 1.4rem 0;
}

.score-card,
.report-section {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.score-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 1.5rem;
}

.score-value {
  grid-row: span 2;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 1;
}

.score-copy {
  color: var(--ink);
  font-weight: 750;
}

.score-card .muted {
  margin-bottom: 0;
}

.report-summary {
  grid-column: 1 / -1;
  margin: 1.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
}

.dimension-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

.dimension-card,
.report-item {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: #fbfcfb;
}

.dimension-card p:last-child,
.report-item p:last-child {
  margin-bottom: 0;
}

.dimension-score {
  margin-bottom: 0.25rem;
  color: var(--forest);
  font-size: 1.2rem;
  font-weight: 800;
}

.report-list {
  display: grid;
  gap: 0.75rem;
}

.empty-copy {
  margin-bottom: 0;
  color: var(--muted);
}

.citation-list {
  margin-bottom: 0;
  padding-left: 1.2rem;
  font-size: 0.88rem;
}

.privacy-panel {
  margin-top: 1.4rem;
  overflow: hidden;
}

.privacy-panel summary {
  padding: 1.2rem 1.5rem;
  font-weight: 800;
}

.privacy-body {
  padding: 0 1.5rem 1.5rem;
}

.privacy-action {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
}

.privacy-action h2 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

.privacy-action p {
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}

.privacy-action input {
  max-width: 420px;
}

.danger-zone {
  border-color: #e0b3b3;
}

@media (max-width: 820px) {
  .feature-grid,
  .protocol-panel,
  .documentation-grid,
  .grader-shell {
    grid-template-columns: 1fr;
  }

  .feature-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .grader-shell {
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 1.5rem, 1180px);
  }

  .site-header nav a:not(:first-child) {
    display: none;
  }

  .field-grid,
  .privacy-action {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .score-card {
    grid-template-columns: 1fr;
  }

  .score-value {
    grid-row: auto;
  }

  .site-footer {
    flex-wrap: wrap;
  }
}

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

  .button {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Meklara company site

   The palette mirrors the current v2c application shell: warm paper and ink,
   with the product's restrained teal and moss reserved for wayfinding.
   -------------------------------------------------------------------------- */

.company-site {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.company-site::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  border-top: 3px solid var(--forest);
  content: "";
  pointer-events: none;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: var(--ink);
  color: var(--surface);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.company-header {
  border-bottom: 1px solid var(--line);
}

.header-inner,
.company-main,
.footer-grid,
.footer-bottom {
  width: min(1180px, calc(100% - 4rem));
  margin-inline: auto;
}

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

.company-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 1.85rem;
  height: 1.85rem;
  place-items: center;
  border-radius: 0.22rem;
  background: var(--forest);
  color: var(--surface);
  font-size: 0.83rem;
  font-weight: 760;
  letter-spacing: 0;
}

.company-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 3vw, 2.25rem);
}

.company-nav a {
  position: relative;
  padding: 0.4rem 0;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 620;
  text-decoration: none;
}

.company-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--forest);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 140ms ease,
    transform 140ms ease;
}

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

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

.company-main {
  min-height: 58vh;
}

.company-site h1,
.company-site h2,
.company-site h3 {
  color: var(--ink);
}

.company-site h1,
.company-site h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  text-wrap: balance;
}

.company-site h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(3.6rem, 8.4vw, 7.6rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.company-site h2 {
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.company-site h3 {
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.status-line,
.section-index,
.page-note,
.policy-nav > p {
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.company-hero {
  display: grid;
  min-height: min(760px, calc(100vh - 5.25rem));
  grid-template-columns: minmax(0, 1.75fr) minmax(260px, 0.75fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line-strong);
}

.hero-copy-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 12vh, 8.5rem) clamp(3rem, 7vw, 6.5rem)
    clamp(5rem, 12vh, 8.5rem) 0;
}

.hero-copy-block .status-line {
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.hero-copy-block h1 {
  max-width: 10.6ch;
}

.hero-lede {
  max-width: 650px;
  margin: clamp(2.3rem, 5vw, 4.2rem) 0 0;
  padding-left: clamp(1.2rem, 4vw, 3.2rem);
  border-left: 1px solid var(--forest);
  color: #4c4739;
  font-size: clamp(1.12rem, 1.6vw, 1.36rem);
  line-height: 1.55;
}

.system-field {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: var(--surface);
}

.system-field::before,
.system-field::after,
.field-line {
  position: absolute;
  background: var(--line);
  content: "";
}

.system-field::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.system-field::after {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.field-line-one {
  top: 22%;
  right: 0;
  left: 0;
  height: 1px;
}

.field-line-two {
  right: 0;
  bottom: 22%;
  left: 0;
  height: 1px;
}

.field-line-three {
  top: 0;
  bottom: 0;
  left: 22%;
  width: 1px;
}

.field-node {
  position: absolute;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 7px rgb(20 85 90 / 8%);
}

.field-node-one {
  top: 22%;
  left: 22%;
}

.field-node-two {
  top: 50%;
  left: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 7px rgb(74 103 65 / 8%);
}

.field-node-three {
  right: 18%;
  bottom: 22%;
}

.field-node-four {
  right: 11%;
  bottom: 8%;
  width: 0.3rem;
  height: 0.3rem;
  background: var(--line-strong);
  box-shadow: none;
}

.field-mark {
  position: absolute;
  top: calc(50% - 2.25rem);
  left: calc(50% - 2.25rem);
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  place-items: center;
  border: 1px solid var(--forest);
  border-radius: 0.35rem;
  background: var(--surface);
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
}

.principles-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: start;
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-intro h2 {
  max-width: 13ch;
  margin: 0;
}

.principles-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.principles-list li {
  min-height: 15rem;
  padding: 1.4rem clamp(1.2rem, 3vw, 2.5rem) 1.8rem 0;
  border-right: 1px solid var(--line);
}

.principles-list li + li {
  padding-left: clamp(1.2rem, 3vw, 2.5rem);
}

.principles-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.principle-number {
  display: block;
  margin-bottom: 4rem;
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 720;
}

.principles-list h3 {
  margin-bottom: 0.9rem;
}

.principles-list p {
  max-width: 30ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.company-statement,
.editorial-grid,
.company-details-section,
.contact-band {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  border-top: 1px solid var(--line-strong);
}

.company-statement > div,
.editorial-grid > div,
.company-details-section > div,
.contact-band > div {
  max-width: 760px;
}

.company-statement h2 {
  max-width: 15ch;
  margin-bottom: 2.5rem;
}

.company-statement div > p,
.prose > p {
  color: var(--muted);
  font-size: clamp(1.03rem, 1.35vw, 1.2rem);
}

.company-statement div > p {
  max-width: 61ch;
}

.page-heading {
  min-height: 36rem;
  padding: clamp(5rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--line-strong);
}

.page-heading h1 {
  max-width: 11ch;
  margin-top: clamp(3rem, 7vw, 6rem);
}

.page-note {
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  color: var(--muted);
}

.editorial-grid h2,
.company-details-section h2,
.contact-band h2 {
  margin-bottom: 2.2rem;
}

.prose-lead > p:first-of-type {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.details-list {
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.details-list > div {
  display: grid;
  grid-template-columns: minmax(140px, 0.8fr) 1.5fr;
  gap: 2rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.details-list dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.details-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
}

.details-list a,
.company-statement a,
.prose a,
.contact-band a,
.policy-content a {
  color: var(--forest);
  font-weight: 650;
}

.contact-company {
  font-size: clamp(2.5rem, 5vw, 4.8rem) !important;
}

.contact-details {
  width: min(100%, 620px);
}

.contact-band {
  align-items: start;
}

.contact-band p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.deletion-copy {
  max-width: 720px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.policy-nav {
  position: sticky;
  top: 2rem;
  display: grid;
  align-self: start;
  gap: 0.7rem;
  padding-right: 2rem;
}

.policy-nav > p {
  margin-bottom: 0.6rem;
}

.policy-nav a {
  width: fit-content;
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: none;
}

.policy-nav a:hover {
  color: var(--forest);
  text-decoration: underline;
}

.policy-content {
  max-width: 760px;
}

.policy-content-standalone {
  margin-left: 25%;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.policy-content section {
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  scroll-margin-top: 2rem;
}

.policy-content section + section {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  border-top: 1px solid var(--line);
}

.policy-content section:last-child {
  padding-bottom: 0;
}

.policy-content h2 {
  margin-bottom: 1.6rem;
  font-family: inherit;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 670;
  letter-spacing: -0.025em;
}

.policy-content p {
  color: var(--muted);
  font-size: 0.96rem;
}

.company-footer {
  border-top: 1px solid var(--line-strong);
  background: #f1eee7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.7fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.footer-brand-block p {
  max-width: 33ch;
  margin: 2rem 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.footer-details p {
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-details p:first-child {
  color: var(--ink);
  font-weight: 680;
}

.footer-details a,
.footer-links a,
.social-links a {
  text-decoration: none;
}

.footer-details a:hover,
.footer-links a:hover,
.social-links a:hover {
  color: var(--forest);
  text-decoration: underline;
}

.footer-links,
.social-links {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-links a,
.social-links a {
  width: fit-content;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-bottom {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line-strong);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

@media (max-width: 900px) {
  .company-hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1.6fr) minmax(190px, 0.55fr);
  }

  .hero-copy-block {
    padding-right: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
  }

  .footer-links {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .header-inner,
  .company-main,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 2rem, 1180px);
  }

  .header-inner {
    min-height: 4.75rem;
    gap: 1rem;
  }

  .company-brand {
    gap: 0.55rem;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .brand-mark {
    width: 1.65rem;
    height: 1.65rem;
  }

  .company-nav {
    gap: 0.9rem;
  }

  .company-nav a {
    font-size: 0.75rem;
  }

  .company-site h1 {
    font-size: clamp(3.25rem, 16vw, 5.1rem);
    line-height: 0.98;
  }

  .company-hero {
    display: block;
    border-bottom: 0;
  }

  .hero-copy-block {
    min-height: calc(100svh - 4.75rem);
    justify-content: center;
    padding: 4.5rem 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .hero-copy-block .status-line {
    margin-bottom: 3rem;
  }

  .hero-lede {
    margin-top: 2.7rem;
    padding-left: 1.2rem;
    font-size: 1.05rem;
  }

  .system-field {
    height: 13rem;
    min-height: 0;
    border-bottom: 1px solid var(--line-strong);
    border-left: 0;
  }

  .field-mark {
    top: calc(50% - 1.8rem);
    left: calc(50% - 1.8rem);
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.5rem;
  }

  .principles-section {
    padding: 5rem 0;
  }

  .section-intro,
  .company-statement,
  .editorial-grid,
  .company-details-section,
  .contact-band,
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .section-intro {
    margin-bottom: 3rem;
  }

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

  .principles-list li,
  .principles-list li + li {
    min-height: 0;
    padding: 1.5rem 0 2rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principles-list li:last-child {
    border-bottom: 0;
  }

  .principle-number {
    margin-bottom: 2.5rem;
  }

  .company-statement,
  .editorial-grid,
  .company-details-section,
  .contact-band {
    padding: 4.5rem 0;
  }

  .page-heading {
    min-height: 31rem;
    padding: 5rem 0 4rem;
  }

  .page-heading h1 {
    margin-top: 4rem;
  }

  .page-note {
    margin-top: 3.5rem;
  }

  .details-list > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .policy-layout {
    padding: 4.5rem 0;
  }

  .policy-nav {
    position: static;
    display: none;
  }

  .policy-content-standalone {
    margin-left: 0;
    padding: 4.5rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4.5rem 0;
  }

  .footer-links {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    min-height: 5rem;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
  }
}

@media (max-width: 430px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 0.8rem 0;
  }

  .company-nav {
    width: 100%;
    justify-content: space-between;
    padding-top: 0.65rem;
    border-top: 1px solid var(--line);
  }

  .hero-copy-block {
    min-height: calc(100svh - 7.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .company-nav a::after {
    transition: none;
  }
}
