:root {
  --ink: #12201c;
  --ink-soft: #2a3b36;
  --paper: #f4efe4;
  --paper-2: #ebe4d4;
  --cream: #faf7f0;
  --brass: #b8893a;
  --brass-deep: #8c6424;
  --pine: #1e4a3d;
  --pine-2: #16382e;
  --line: rgba(18, 32, 28, 0.12);
  --shadow: 0 18px 40px rgba(18, 32, 28, 0.08);
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--pine); text-decoration: none; }
a:hover { color: var(--brass-deep); }

.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: var(--pine-2);
  color: #e8efe9;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 8px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #f0d9a4; }

header.site {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250,247,240,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.mark {
  width: 38px; height: 38px; border: 1.5px solid var(--brass);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; color: var(--pine);
}
.brand strong { display: block; font-family: var(--serif); font-size: 18px; line-height: 1.1; }
.brand span { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
nav.links { display: flex; gap: 22px; flex-wrap: wrap; font-size: 14px; }
nav.links a { color: var(--ink-soft); }
nav.links a:hover { color: var(--pine); }

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  background: #0f1c18 center/cover no-repeat;
  color: #f6f1e6;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,28,24,.25) 0%, rgba(14,28,24,.78) 70%);
}
.hero-inner { position: relative; z-index: 1; padding: 80px 0 56px; }
.kicker {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: #e3c27a; margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  max-width: 16ch;
  font-weight: 600;
}
.hero p.lead {
  margin-top: 18px; max-width: 62ch; font-size: 18px; color: #efe7d7;
}
.hero-meta { margin-top: 28px; display: flex; gap: 28px; flex-wrap: wrap; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }

.disclaimer {
  background: #efe6d2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  font-size: 13.5px;
  color: var(--ink-soft);
}

section { padding: 72px 0; }
section.alt { background: var(--paper); }
h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  margin-bottom: 16px;
}
h3 { font-family: var(--serif); font-size: 24px; margin: 8px 0 10px; }
.intro { max-width: 72ch; font-size: 18px; color: var(--ink-soft); margin-bottom: 36px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; align-items: start; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow);
  animation: rise .8s ease both;
}
.card img { width: 100%; height: 180px; object-fit: cover; margin: -24px -24px 18px; }
.num { color: var(--brass-deep); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }

.figure {
  position: relative; overflow: hidden;
}
.figure img { width: 100%; height: 420px; object-fit: cover; }
.caption { font-size: 13px; color: var(--ink-soft); margin-top: 8px; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); background: #fff; }
table { width: 100%; border-collapse: collapse; font-size: 15px; }
th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }
th { background: var(--pine); color: #f4efe4; font-weight: 600; }

blockquote {
  border-left: 3px solid var(--brass);
  padding: 8px 0 8px 18px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  margin: 24px 0;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px 18px;
  margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 600; }

form.contact {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
  display: grid;
  gap: 12px;
}
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 12px 14px;
  font: inherit;
}
button, .btn {
  display: inline-block;
  background: var(--pine);
  color: #f6f1e6;
  border: 0;
  padding: 12px 20px;
  cursor: pointer;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
}
button:hover, .btn:hover { background: var(--pine-2); color: #fff; }

footer {
  background: var(--ink);
  color: #d9d2c4;
  padding: 48px 0 28px;
  font-size: 14px;
}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
footer a { color: #e3c27a; }
.legal-note { border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; font-size: 12.5px; color: #b7b0a3; }

.legal-page { padding: 48px 0 80px; }
.legal-page h1 { font-family: var(--serif); font-size: 42px; margin-bottom: 12px; }
.legal-page h2 { font-size: 26px; margin-top: 28px; }
.legal-page p, .legal-page li { margin-bottom: 12px; max-width: 78ch; }
.legal-page ul { padding-left: 20px; margin-bottom: 16px; }

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .grid-3, .grid-2, .foot-grid { grid-template-columns: 1fr; }
  .hero { min-height: 68vh; }
  nav.links { display: none; }
}