:root {
  --bg: #fffdf8;
  --paper: #ffffff;
  --ink: #10231d;
  --navy: #111827;
  --muted: #607063;
  --line: #e2e8df;
  --forest: #0f5f45;
  --forest-2: #0a3e2f;
  --sage: #edf5ef;
  --sage-2: #dceade;
  --coral: #df6b4f;
  --gold: #b98949;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--forest-2);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--forest);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.95);
  border-bottom: 1px solid rgba(16, 35, 29, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

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

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.nav a {
  border-radius: 999px;
  color: #314139;
  font-size: 0.92rem;
  font-weight: 720;
  padding: 9px 13px;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--sage);
  color: var(--forest-2);
}

.hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: min(760px, calc(100vh - 82px));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  padding: 64px 0 54px;
}

.hero-copy h1,
.page-title h1 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.8vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5vw, 4.25rem);
}

.hero-copy p,
.page-title p {
  margin: 24px 0 0;
  max-width: 680px;
  color: #48584f;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.accent-line {
  width: 62px;
  height: 3px;
  margin: 26px 0 0;
  background: var(--coral);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 7px;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: #ffffff;
  font-weight: 780;
  padding: 12px 18px;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--forest-2);
}

.button:hover {
  color: #ffffff;
  background: var(--forest-2);
  border-color: var(--forest-2);
}

.button.secondary:hover {
  color: var(--ink);
  background: var(--sage);
}

.hero-media {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sage);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.hero-card div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.54);
}

.hero-card span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

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

.section.soft {
  background: var(--sage);
}

.section.dark {
  background: var(--forest-2);
  color: #eef7f0;
}

.section-inner,
.page {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0;
}

.section-title,
.page-title {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-title h2,
.content h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section.dark .section-title h2,
.section.dark .section-title p {
  color: #eef7f0;
}

.section-title p,
.content p,
.content li {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.lead-panel {
  border-left: 4px solid var(--coral);
  padding-left: 22px;
}

.lead-panel p {
  margin: 0;
  color: #405149;
  font-size: 1.08rem;
}

.fact-list {
  display: grid;
  gap: 14px;
}

.fact-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 14px;
}

.fact-row span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fact-row strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

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

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid rgba(16, 35, 29, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 24px;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.05);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.2;
}

.card p {
  margin: 0;
  color: #526259;
}

.card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-item {
  border: 1px solid rgba(238, 247, 240, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.service-item span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(223, 107, 79, 0.16);
  color: #ffd5cb;
  font-weight: 900;
}

.service-item h3 {
  margin: 16px 0 8px;
  color: #ffffff;
}

.service-item p,
.service-item a {
  color: #cde0d4;
}

.link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.policy-link {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  padding: 16px;
  text-decoration: none;
}

.policy-link span {
  color: var(--muted);
  font-size: 0.88rem;
}

.policy-link:hover {
  border-color: var(--forest);
  color: var(--ink);
}

.content {
  display: grid;
  grid-template-columns: minmax(0, 250px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 110px;
  border-left: 3px solid var(--forest);
  padding-left: 16px;
}

.toc a {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 720;
  margin: 0 0 10px;
  text-decoration: none;
}

.toc a:hover {
  color: var(--forest-2);
}

.article {
  min-width: 0;
}

.article section {
  border-top: 1px solid var(--line);
  padding: 30px 0;
}

.article section:first-child {
  border-top: 0;
  padding-top: 0;
}

.article h2 {
  margin-bottom: 14px;
}

.article h3 {
  margin: 22px 0 8px;
  font-size: 1.08rem;
}

.article p,
.article ul,
.article ol {
  max-width: 760px;
}

.article li + li {
  margin-top: 7px;
}

.note {
  border-left: 4px solid var(--gold);
  background: #fff7e9;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #60451c;
  margin: 18px 0;
  max-width: 780px;
  padding: 14px 16px;
}

.warning {
  border-left-color: var(--coral);
  background: #fff0ed;
  color: #663022;
}

.data-table {
  width: 100%;
  max-width: 860px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.data-table th,
.data-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px 15px;
  text-align: left;
  vertical-align: top;
}

.data-table th {
  width: 32%;
  background: var(--sage);
  color: var(--ink);
  font-size: 0.88rem;
}

.data-table td {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #071d16;
  color: #e7f2ea;
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 32px;
}

.site-footer a {
  color: #e7f2ea;
}

.site-footer p {
  margin: 8px 0 0;
  color: #b7c9bf;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  align-content: start;
}

.small {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    padding: 16px 0;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

  .split,
  .grid,
  .grid.two,
  .service-strip,
  .link-list,
  .footer-inner,
  .content {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .hero,
  .section-inner,
  .page,
  .footer-inner {
    width: min(100% - 32px, var(--max));
  }

  .brand {
    min-width: 0;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .nav a {
    min-width: 0;
    padding: 9px 6px;
    text-align: center;
  }

  .hero-copy h1,
  .page-title h1 {
    font-size: 2.45rem;
    line-height: 1;
  }

  .hero-media,
  .hero-media img {
    min-height: 330px;
  }

  .hero-card {
    position: static;
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .fact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .section-inner,
  .page {
    padding: 56px 0;
  }

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