﻿:root {
  --bg: #efe8dc;
  --paper: #fffdf7;
  --text: #241d18;
  --muted: #6b625a;
  --line: #e2d6c6;
  --ink-soft: #493c31;
  --accent: #a96a3d;
  --accent-soft: #f4dfc8;
  --shadow: 0 22px 70px rgba(56, 42, 28, 0.14);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 2%, rgba(169, 106, 61, 0.16), transparent 26rem),
    linear-gradient(180deg, #fbf4ea 0%, var(--bg) 48%, #fffaf3 100%);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.72;
}
a { color: var(--accent); font-weight: 700; text-underline-offset: 4px; }
a:focus-visible { outline: 3px solid rgba(169, 106, 61, 0.32); outline-offset: 4px; }
.document-page {
  width: min(calc(100% - 32px), 940px);
  margin: clamp(18px, 5vw, 64px) auto clamp(36px, 8vw, 92px);
}
.document {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.document-header, section {
  padding: clamp(24px, 4.6vw, 54px);
  border-top: 1px solid var(--line);
}
.document-header {
  border-top: 0;
  background: linear-gradient(135deg, rgba(169,106,61,.1), transparent 42%), #fff9ef;
}
.stamp {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid #e2c5aa;
  border-radius: 999px;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--accent-soft);
}
h1, h2, p, ul { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 7vw, 5.2rem);
  line-height: .96;
  letter-spacing: -.055em;
}
h2 {
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}
p {
  max-width: 820px;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.08rem);
}
p:last-child, ul:last-child { margin-bottom: 0; }
ul { max-width: 820px; padding-left: 1.15rem; color: var(--muted); }
li + li { margin-top: 9px; }
.contact-section { background: #2d241d; }
.contact-section h2, .contact-section p, .contact-section a { color: #fff7eb; }
.contact-section p { color: rgba(255,247,235,.78); }
.contact-section a { display: inline-flex; max-width: 100%; overflow-wrap: anywhere; font-size: clamp(1.08rem, 2.2vw, 1.45rem); }
@media (max-width: 620px) {
  body { line-height: 1.62; }
  .document-page { width: min(calc(100% - 20px), 940px); margin-top: 10px; }
  .document { border-radius: 14px; }
  .document-header, section { padding: 22px 16px; }
  .stamp { font-size: .68rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
