@font-face {
  font-family: "Bodily Truth Wordmark";
  src: url("/fonts/bodily-truth-wordmark.woff2?v=20260801-2") format("woff2");
  font-display: swap;
}

:root {
  color-scheme: light;
  --canvas: #f7f4ee;
  --paper: #fffdf9;
  --ink: #3e3934;
  --muted: #6f675f;
  --earth: #755f4b;
  --earth-dark: #5d4939;
  --green: #496659;
  --green-pale: #e7eee9;
  --line: #ddd3c7;
  --warm-line: #eadfce;
  --shadow: 0 20px 60px rgba(70, 58, 47, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Source Sans Pro", "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
}

a {
  color: var(--earth-dark);
  text-decoration-color: rgba(93, 73, 57, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #2f5143;
  text-decoration-color: currentColor;
}

a:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(73, 102, 89, 0.35);
  outline-offset: 4px;
}

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

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

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(117, 95, 75, 0.14);
  background: rgba(255, 253, 249, 0.96);
}

.header-inner,
.hero-inner,
.principles,
.content-grid,
.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  display: block;
  width: 52px;
  height: 52px;
}

.brand span,
.footer-brand {
  font-family: "Bodily Truth Wordmark", Georgia, serif;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

.header-inner nav,
.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
}

.header-inner nav a,
.footer-inner nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 87% 24%, rgba(73, 102, 89, 0.14), transparent 24rem),
    linear-gradient(135deg, #fffdf9 0%, #f1ebe2 100%);
}

.hero-inner {
  min-height: 455px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 80px;
}

.eyebrow,
.section-label,
.updated,
.contents > p {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 18px;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: #53483e;
  font-weight: 500;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 730px;
  margin: 30px 0 0;
  color: #5f574f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.55;
}

.updated {
  margin: 30px 0 0;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.principles article {
  min-width: 0;
  padding: 30px;
}

.principles article + article {
  border-left: 1px solid var(--line);
}

.number {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.principles h2 {
  margin: 0 0 12px;
  font-size: 1.23rem;
  line-height: 1.25;
}

.principles p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.content-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(50px, 8vw, 110px);
  padding-block: 100px 120px;
}

.contents {
  position: sticky;
  top: 32px;
  align-self: start;
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.contents > p {
  margin: 0 0 16px;
}

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

.contents li + li {
  margin-top: 9px;
}

.contents a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

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

.content-section {
  padding-bottom: 66px;
}

.content-section + .content-section {
  padding-top: 66px;
  border-top: 1px solid var(--line);
}

.section-label {
  margin: 0 0 10px;
}

.content-section h2,
.assurance-note h2 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.13;
  letter-spacing: -0.025em;
}

.content-section h3 {
  margin: 0 0 9px;
  font-size: 1.18rem;
}

.content-section p {
  margin: 0 0 20px;
}

.content-section ul {
  margin: 0;
  padding-left: 1.25rem;
}

.content-section li + li {
  margin-top: 12px;
}

.check-list {
  padding: 0 !important;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.52em;
  left: 1px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transform: rotate(-45deg);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.detail-grid > div {
  padding: 24px;
  border: 1px solid var(--warm-line);
  border-radius: 10px;
  background: var(--paper);
}

.detail-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.reporting {
  padding: 42px !important;
  border: 1px solid #cbd8d0 !important;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8fbf9, var(--green-pale));
}

.reporting + .assurance-note {
  margin-top: 64px;
}

.assurance-note {
  padding: 34px 38px;
  border-left: 4px solid #9d8063;
  background: #efe6da;
}

.assurance-note h2 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.assurance-note p {
  margin: 0;
}

footer {
  border-top: 1px solid var(--line);
  background: #eee9e1;
}

.footer-inner {
  padding-block: 50px;
  text-align: center;
}

.footer-brand {
  margin: 0 0 20px;
}

.footer-inner nav {
  justify-content: center;
}

.copyright {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

@media (max-width: 900px) {
  .principles {
    grid-template-columns: repeat(2, 1fr);
  }

  .principles article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principles article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contents {
    position: static;
    display: none;
  }
}

@media (max-width: 680px) {
  .header-inner,
  .hero-inner,
  .principles,
  .content-grid,
  .footer-inner {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 16px 18px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .header-inner nav {
    gap: 8px 18px;
  }

  .hero-inner {
    min-height: 400px;
    padding-block: 64px 82px;
  }

  .principles {
    grid-template-columns: 1fr;
    margin-top: -28px;
  }

  .principles article + article,
  .principles article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principles article {
    padding: 25px;
  }

  .content-grid {
    padding-block: 74px 84px;
  }

  .content-section {
    padding-bottom: 50px;
  }

  .content-section + .content-section {
    padding-top: 50px;
  }

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

  .reporting {
    padding: 28px 24px !important;
  }

  .assurance-note {
    padding: 28px 24px;
  }
}

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