@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --cream: #f6efe5;
  --paper: #fbf7ef;
  --ink: #1c1917;
  --muted: #57534e;
  --soft: #78716c;
  --line: rgba(28, 25, 23, 0.12);
  --orange: #e87f54;
  --green: #78b7a3;
  --yellow: #f6d35f;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  background:
    radial-gradient(circle at 8% 4%, rgba(232, 127, 84, 0.3), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(120, 183, 163, 0.34), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(246, 211, 95, 0.36), transparent 32%),
    var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

::selection {
  background: var(--yellow);
  color: var(--ink);
}

.legal-shell {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 72px;
}

.legal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 0 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 17px;
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-weight: 900;
}

.home-link {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  padding: clamp(28px, 5vw, 54px);
  border: 2px solid var(--ink);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--green);
}

.eyebrow {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #a64b2a;
  margin-bottom: 14px;
}

.hero h1 {
  margin: 0 0 16px;
  font-family: Fraunces, Georgia, serif;
  color: var(--ink);
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero p {
  margin: 0;
  max-width: 820px;
  color: var(--muted);
  line-height: 1.85;
  font-size: 17px;
}

.meta-card,
.content-card {
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 28px;
  backdrop-filter: blur(12px);
}

.meta-card {
  padding: 20px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.meta-item {
  padding: 16px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.meta-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.meta-item span,
.meta-item a {
  color: var(--muted);
  text-decoration: none;
  line-height: 1.65;
  font-size: 14px;
}

.content-card {
  padding: clamp(22px, 4vw, 38px);
}

.section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.section:first-child {
  border-top: 0;
  padding-top: 0;
}

.section h2 {
  margin: 0 0 13px;
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section p {
  margin: 0 0 13px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 15.5px;
}

.section ul {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.section li {
  margin-bottom: 10px;
  line-height: 1.85;
  font-size: 15.5px;
}

.section strong {
  color: var(--ink);
}

.note,
.contact-card {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 22px;
  background: #fff7d7;
  border: 1px solid rgba(166, 75, 42, 0.2);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.timeline-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.timeline-table th,
.timeline-table td {
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.65;
}

.timeline-table th {
  background: var(--ink);
  color: var(--paper);
}

.timeline-table td {
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 720px) {
  .legal-shell {
    width: min(100% - 24px, 1080px);
    padding-top: 18px;
  }

  .legal-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    border-radius: 26px;
    box-shadow: 7px 7px 0 var(--green);
  }
}
