:root {
  --ink: #162329;
  --muted: #607178;
  --paper: #f4f7f2;
  --white: #ffffff;
  --teal: #0c716d;
  --teal-dark: #07514f;
  --coral: #e47d62;
  --line: #d8e3df;
  --shadow: 0 24px 60px rgba(22, 35, 41, 0.12);
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 85% 5%, rgba(228, 125, 98, 0.16), transparent 28rem),
    linear-gradient(135deg, #f4f7f2 0%, #eef5f1 100%);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header,
.site-footer,
.page-shell {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50% 50% 50% 8px;
  color: var(--white);
  background: var(--teal);
  transform: rotate(-45deg);
}

.brand-mark span {
  transform: rotate(45deg);
  font-size: 1.1rem;
}

.header-link {
  color: var(--teal-dark);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.header-link:hover,
.text-link:hover {
  color: var(--coral);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
  min-height: 620px;
  padding: 54px 0 92px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 660px;
  font-size: clamp(3.6rem, 8vw, 6.9rem);
  line-height: 0.94;
}

.hero-copy {
  max-width: 530px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 1.12rem;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid var(--teal);
  border-radius: 4px;
  color: var(--white);
  background: var(--teal);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.button::after {
  content: "→";
  font-size: 1.2rem;
}

.visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 460px;
  margin-inline: auto;
}

.visual::before,
.visual::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(12, 113, 109, 0.25);
  border-radius: 50%;
}

.visual::before {
  inset: 4%;
}

.visual::after {
  inset: 15%;
}

.visual-core {
  position: absolute;
  inset: 22%;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 8%;
  color: var(--white);
  background: var(--teal);
  box-shadow: var(--shadow);
  transform: rotate(-45deg);
}

.visual-core span {
  transform: rotate(45deg);
  font-family: Georgia, serif;
  font-size: clamp(4rem, 8vw, 6rem);
}

.orbit-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--coral);
}

.dot-one { top: 8%; right: 19%; }
.dot-two { bottom: 12%; left: 11%; width: 11px; height: 11px; background: var(--teal); }

.intro-band {
  padding: 72px 0;
  color: var(--white);
  background: var(--teal-dark);
}

.intro-band .page-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.intro-band h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
}

.intro-band p {
  max-width: 570px;
  margin: 0;
  color: #c3dcda;
  font-size: 1.05rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
}

.policy-page {
  max-width: 800px;
  padding: 64px 0 90px;
}

.policy-page h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.updated {
  margin: 0 0 55px;
  color: var(--muted);
}

.policy-content {
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.policy-content h2 {
  margin: 32px 0 10px;
  color: var(--teal-dark);
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  margin: 0 0 16px;
  color: var(--muted);
}

.policy-lead {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--ink) !important;
  font-size: 1.05rem;
}

.policy-content h3 {
  margin: 24px 0 8px;
  color: var(--ink);
  font-size: 1rem;
}

.policy-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--muted);
}

.policy-content li {
  margin: 7px 0;
  padding-left: 4px;
}

.policy-content a {
  color: var(--teal-dark);
  font-weight: 700;
}

.table-wrap {
  margin: 22px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 0.9rem;
}

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

th {
  color: var(--teal-dark);
  background: #edf4f1;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td:first-child {
  min-width: 145px;
  color: var(--ink);
  font-weight: 700;
}

tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 700px) {
  .site-header,
  .site-footer,
  .page-shell {
    width: min(100% - 32px, 1120px);
  }

  .hero,
  .intro-band .page-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .visual {
    width: min(86vw, 360px);
  }

  .intro-band .page-shell {
    gap: 26px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}