:root {
  --green: #27520d;
  --mint: #eef5ea;
  --ink: #1e2619;
  --muted: #66705f;
  --paper: #fffdf8;
  --line: #d8dfd0;
  --accent: #bd7b3e;
  --shadow: 0 18px 45px rgba(31, 56, 18, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.legal-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-header nav a {
  color: var(--muted);
  text-decoration: none;
}

.legal-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 48px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

h2 {
  font-size: 1.45rem;
}

.stand {
  max-width: 760px;
  margin: 14px 0 36px;
  color: var(--muted);
}

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

.legal-grid article,
.legal-copy {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.legal-grid p,
.legal-copy p {
  color: var(--muted);
}

.legal-copy h2:not(:first-child) {
  margin-top: 30px;
}

@media (max-width: 720px) {
  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }

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