:root {
  --paper: #fcf7f1;
  --paper-deep: #f7eddf;
  --ink: #2b241e;
  --muted: #6e665f;
  --copper: #b87939;
  --blue: #397b8d;
  --rule: #e8ddd1;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Poppins", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.legal-header {
  border-bottom: 1px solid var(--rule);
  background: rgba(252, 247, 241, .94);
}

.legal-header__inner,
.legal-footer__inner {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-header__inner { min-height: 72px; }

.brand-logo {
  display: block;
  width: 104px;
  height: 36px;
  overflow: hidden;
  position: relative;
}

.brand-logo img {
  position: absolute;
  width: 192px;
  height: 192px;
  max-width: none;
  left: -40px;
  top: -74px;
  object-fit: contain;
}

.legal-footer .brand-logo {
  width: 92px;
  height: 32px;
}

.legal-footer .brand-logo img {
  width: 170px;
  height: 170px;
  left: -35px;
  top: -66px;
}

.back-link {
  font-size: 11px;
  font-weight: 500;
}

.legal-main {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 88px;
}

.summary {
  margin-bottom: 34px;
  padding: 20px 22px;
  border: 1px solid #e4bd88;
  border-radius: 10px;
  background: #fff8ee;
  box-shadow: 0 8px 26px rgba(104, 72, 40, .04);
}

.summary__label,
.eyebrow {
  display: block;
  color: var(--copper);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.summary p { margin: 6px 0 0; font-size: 12px; line-height: 1.65; }

h1, h2 {
  font-family: var(--serif);
  letter-spacing: -.025em;
}

h1 {
  margin: 5px 0 6px;
  font-size: clamp(36px, 6vw, 52px);
  line-height: 1.1;
}

.intro { margin: 0 0 24px; color: var(--muted); }
.effective { margin: 0 0 26px; color: var(--muted); font-size: 12px; }
.effective strong { color: var(--ink); }

.legal-section {
  padding: 28px 0;
  border-top: 1px solid var(--rule);
}

.legal-section h2 {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.25;
}

.section-number {
  display: inline-block;
  min-width: 25px;
  color: var(--copper);
  font-family: var(--sans);
  font-size: 11px;
}

.legal-section h3 {
  margin: 18px 0 7px;
  color: var(--blue);
  font-size: 13px;
}

.legal-section p { margin: 0 0 12px; }
.legal-section ul, .legal-section ol { margin: 8px 0 0; padding-left: 20px; }
.legal-section li { margin: 7px 0; padding-left: 2px; }
.legal-section strong { font-weight: 600; }

.data-table,
.contact-table {
  width: 100%;
  margin-top: 14px;
  border-collapse: collapse;
  font-size: 12px;
}

.data-table th,
.data-table td,
.contact-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--rule);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: var(--paper-deep);
  font-weight: 600;
}

.contact-table td:first-child { width: 30%; color: var(--muted); }

.legal-note {
  margin-top: 32px;
  color: #918980;
  font-size: 10px;
}

.legal-footer {
  padding: 32px 0 38px;
  border-top: 1px solid var(--rule);
  background: var(--paper-deep);
}

.legal-footer__inner { align-items: flex-start; }
.legal-footer nav { display: flex; gap: 22px; margin: 10px 0; font-size: 11px; font-weight: 500; }
.legal-footer p { max-width: 570px; margin: 0; color: var(--muted); font-size: 10px; }

@media (max-width: 600px) {
  body { font-size: 13px; }
  .legal-main { padding-top: 30px; }
  .legal-footer__inner { display: block; }
  .contact-table td { display: block; width: 100% !important; padding-left: 0; }
}
