@font-face {
  font-family: "DM Serif Display";
  src: url("/assets/dm-serif-display-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --cream: #f4f1e9;
  --ink: #1d2923;
  --green: #23372f;
  --terra: #8f3627;
  --paper: #e5dfd2;
  --line: rgba(35, 55, 47, .2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: "Manrope", sans-serif; line-height: 1.75; }
a { color: inherit; }
a:focus-visible { outline: 3px solid #d6a16f; outline-offset: 4px; }

.legal-header {
  min-height: 5rem;
  padding: 1rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--green);
  color: var(--cream);
}

.legal-brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.legal-brand img { width: 2.4rem; height: 2.4rem; padding: .25rem; object-fit: contain; border: 1px solid rgba(244, 241, 233, .42); }
.legal-brand strong { font: 1.35rem/1 "DM Serif Display", serif; font-weight: 400; }
.legal-header > a { font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }

.legal-main { width: min(54rem, 90vw); margin: 0 auto; padding: clamp(4rem, 8vw, 8rem) 0; }
.legal-eyebrow { margin: 0 0 1rem; color: var(--terra); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1, h2 { font-family: "DM Serif Display", serif; font-weight: 400; letter-spacing: -.035em; }
h1 { max-width: 45rem; margin: 0 0 2.6rem; color: var(--green); font-size: clamp(3.5rem, 8vw, 7rem); line-height: .9; }
h2 { margin: 0 0 .8rem; color: var(--green); font-size: clamp(1.6rem, 3vw, 2.35rem); line-height: 1.05; }
p, li { color: #3e4a42; }
address { font-style: normal; }
.legal-section { padding: 1.8rem 0; border-top: 1px solid var(--line); }
.legal-section:first-of-type { border-top-color: var(--green); }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--terra); font-weight: 700; text-underline-offset: .2em; }
.legal-note { padding: 1rem 1.15rem; border-left: 2px solid var(--terra); background: var(--paper); }
.legal-meta { margin-top: 2.2rem; color: #667169; font-size: .75rem; }
.legal-footer { padding: 1.4rem 5vw; display: flex; justify-content: space-between; gap: 1rem; background: #1c2b24; color: #d9d7cc; font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.legal-footer a { text-decoration: none; }

@media (max-width: 640px) {
  .legal-header { align-items: flex-start; flex-direction: column; gap: .85rem; }
  .legal-main { width: min(100% - 2.5rem, 54rem); padding: 4rem 0; }
  .legal-footer { flex-direction: column; }
}
