:root {
  --ink: #14231f;
  --muted: #607169;
  --paper: #f7f4ef;
  --white: #ffffff;
  --green: #153d35;
  --green-2: #0e2d28;
  --copper: #b88746;
  --mist: #dce8ea;
  --line: rgba(20, 35, 31, 0.14);
  --radius: 8px;
  --content: 1080px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }

.policy-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 0 clamp(18px, 5vw, 56px);
  background: rgba(247, 244, 239, 0.94);
  box-shadow: 0 8px 30px rgba(21, 61, 53, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand { font-weight: 800; white-space: nowrap; }

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.lang-option {
  min-width: 42px;
  height: 32px;
  padding: 0 10px;
  color: var(--green);
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.lang-option.is-active {
  color: var(--white);
  background: var(--green);
}

.ghost-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 900;
}

.policy-shell {
  width: min(var(--content), calc(100% - 36px));
  margin: 0 auto;
  padding: 62px 0 82px;
}

.policy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(28px, 6vw, 70px);
  align-items: end;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-hero h1,
.policy-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

.policy-hero h1 {
  max-width: 760px;
  font-size: 58px;
}

.policy-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.policy-meta {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.policy-meta span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-meta strong {
  display: block;
  margin-top: 6px;
  color: var(--green);
}

.policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(28px, 6vw, 70px);
  margin-top: 44px;
}

.policy-nav {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 8px;
  align-self: start;
}

.policy-nav a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  color: var(--green);
  font-weight: 800;
}

.policy-nav a.is-current {
  color: var(--white);
  background: var(--green);
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-section {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.policy-section h2 {
  font-size: 30px;
}

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

.policy-section ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.policy-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--green);
  font-weight: 800;
}

.lang-panel[hidden] { display: none; }

.policy-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.policy-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 860px) {
  .policy-hero,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-hero h1 { font-size: 44px; }
}

@media (max-width: 620px) {
  .policy-header {
    min-height: 66px;
    padding: 0 14px;
  }

  .header-actions { gap: 8px; }
  .ghost-link { display: none; }
  .lang-option { min-width: 36px; height: 28px; padding: 0 7px; font-size: 12px; }
  .policy-shell { width: calc(100% - 28px); padding: 38px 0 58px; }
  .policy-hero h1 { font-size: 36px; }
  .policy-nav { grid-template-columns: 1fr; }
  .policy-section { padding: 20px; }
  .policy-section h2 { font-size: 26px; }
}
