
:root {
  --pine: #2A231C;
  --pine-deep: #161310;
  --brass: #6D4A3A;
  --ink: #1C1814;
  --steel: #5C564D;
  --mist: #8A8378;
  --line: #D9D1C3;
  --paper: #F5F0E6;
  --cream: #EBE4D4;
  --white: #FCFAF6;
  --shadow: 0 18px 50px -28px rgba(22,19,16,.45);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
}
p { text-wrap: pretty; }
.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus {
  left: 8px; top: 8px; z-index: 80;
  background: var(--pine); color: var(--paper);
  padding: 8px 12px;
}
.wrap { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.wrap-narrow { width: min(760px, calc(100% - 32px)); margin-inline: auto; }
header.site {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img, .brand svg { width: 36px; height: 36px; }
.brand-name { font-family: "Cormorant Garamond", Georgia, serif; font-size: 18px; font-weight: 600; line-height: 1.1; }
.brand-sub { display: block; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--steel); margin-top: 2px; }
nav.primary { display: flex; flex-wrap: wrap; gap: 4px 16px; font-size: 13.5px; }
nav.primary a { text-decoration: none; color: var(--steel); padding: 6px 10px; }
nav.primary a:hover, nav.primary a[aria-current="page"] { color: var(--pine); }
.nav-tools { display: flex; align-items: center; gap: 10px; }
.lang a { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; color: var(--mist); }
.lang a.on { color: var(--pine); font-weight: 600; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 42px; padding: 0 18px; border-radius: 999px;
  background: var(--pine); color: var(--paper); text-decoration: none; font-size: 13.5px;
  border: 1px solid var(--pine);
}
.btn.ghost { background: transparent; color: var(--pine); }
.hero .btn.ghost { color: var(--paper); border-color: color-mix(in srgb, var(--paper) 45%, transparent); }
.btn:hover { background: var(--pine-deep); color: var(--paper); }
.menu-btn {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 8px; padding: 8px 10px; font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase;
}
.hero {
  position: relative; overflow: hidden; color: var(--paper);
  background: var(--pine-deep); min-height: 62vh;
  display: grid; place-items: stretch;
}
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.hero .veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,19,16,.92), rgba(22,19,16,.55) 55%, rgba(22,19,16,.25)); }
.hero-inner { position: relative; padding: 72px 0 80px; }
.kicker { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--brass); font-weight: 600; }
.hero h1 { font-size: clamp(40px, 7vw, 72px); max-width: 16ch; margin-top: 14px; }
.hero .lead { max-width: 46ch; margin-top: 22px; font-size: 17px; color: color-mix(in srgb, var(--paper) 82%, transparent); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.section { padding: 72px 0; }
.section.alt { background: var(--cream); }
.section.dark { background: var(--pine-deep); color: var(--paper); }
.grid-2 { display: grid; gap: 28px; }
.grid-3 { display: grid; gap: 18px; }
.grid-4 { display: grid; gap: 14px; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
}
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: 22px; box-shadow: var(--shadow);
}
.card h3 { font-size: 26px; margin-bottom: 8px; }
.muted { color: var(--steel); }
.small { font-size: 14px; }
.tiny { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--mist); }
ol.timeline { list-style: none; padding: 0; margin: 32px 0 0; }
ol.timeline li { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 16px 0; border-top: 1px solid var(--line); }
ol.timeline .y { font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; }
footer.site { border-top: 1px solid var(--line); padding: 48px 0 32px; background: var(--white); }
.foot-grid { display: grid; gap: 28px; }
@media (min-width: 800px) { .foot-grid { grid-template-columns: 1.4fr .9fr .9fr; } }
.network a { display: flex; justify-content: space-between; gap: 12px; text-decoration: none; padding: 6px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.disclaimer { font-size: 12.5px; color: var(--steel); margin-top: 28px; }
form.contact { display: grid; gap: 12px; }
form.contact input, form.contact select, form.contact textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px;
  font: inherit; background: var(--white);
}
form.contact textarea { min-height: 140px; }
.figure { border-radius: 22px; overflow: hidden; border: 1px solid var(--line); }
.figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.page-head { padding: 56px 0 12px; }
.page-head h1 { font-size: clamp(36px, 6vw, 58px); margin-top: 10px; max-width: 18ch; }
.prose p { font-size: 16.5px; color: var(--ink); max-width: 66ch; }
.prose p + p { margin-top: 14px; }
table.dir { width: 100%; border-collapse: collapse; font-size: 14.5px; }
table.dir th, table.dir td { text-align: left; padding: 12px 8px; border-bottom: 1px solid var(--line); vertical-align: top; }
.pill { display: inline-block; border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; font-size: 12px; }
.announce {
  display: none; background: var(--pine); color: var(--paper);
  padding: 8px 16px; font-size: 13.5px; text-align: center;
}
@media (max-width: 880px) {
  .menu-btn { display: inline-flex; }
  nav.primary {
    display: none; position: absolute; left: 0; right: 0; top: 68px;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 12px 16px 18px;
  }
  body.nav-open nav.primary { display: flex; }
  .brand-sub { display: none; }
  ol.timeline li { grid-template-columns: 1fr; gap: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
