:root {
  --bg: #FBF6F0;
  --ink: #241D17;
  --ink-soft: #6E655C;
  --line: #E4D8CB;
  --peach: #F8CDB4;
  --accent: #C5613B;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

main {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

a { color: var(--accent); }

.back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
}
.back:hover { color: var(--accent); }

/* Shared site header (matches the storefront header bar). */
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 65px;
  padding: 11px clamp(18px, 4vw, 52px);
  background: var(--peach);
  border-bottom: 1px solid rgba(36, 29, 23, .14);
}
.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}
.legal-brand img { width: 42px; height: 42px; object-fit: contain; }
.legal-brand span { display: flex; flex-direction: column; line-height: 1.05; }
.legal-brand strong {
  font-family: "Archivo", sans-serif;
  font-size: 14.5px;
  font-weight: 900;
  text-transform: uppercase;
}
.legal-brand small {
  margin-top: 4px;
  color: #9A6B4F;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.legal-header-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.legal-header-link:hover { color: var(--accent); }

h1 {
  font-family: "Archivo", sans-serif;
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 16px;
  overflow-wrap: break-word;
}

h2 {
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin: 30px 0 8px;
  overflow-wrap: break-word;
}

p, li { font-size: 15.5px; }
ul { padding-left: 20px; }

.lead {
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 28px;
}

/* Shared site footer (matches the storefront footer). */
.legal-footer {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid #3A322A;
  background: var(--ink);
  color: #EFE7DC;
  padding: 26px clamp(18px, 4vw, 52px);
}
.legal-footer > div:first-child {
  display: grid;
  gap: 6px;
  max-width: 60ch;
}
.legal-footer strong { font-family: "Archivo", sans-serif; }
.legal-footer span { color: #BEB3A6; font-size: 14px; }
.legal-footer-pay,
.legal-footer-contact { font-size: 13px; }
.legal-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 18px;
}
.legal-footer a {
  color: #EFE7DC;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid #4A4036;
  padding-bottom: 2px;
}
.legal-footer a:hover { border-color: var(--peach); }
