:root {
  --ink: #1c1714;
  --ink-soft: #3c342e;
  --muted: #6d645c;
  --parchment: #f3eee6;
  --paper: #fbf7f1;
  --rule: #d8cec1;
  --burgundy: #7a2433;
  --burgundy-deep: #5c1b27;
  --copper: #9a6844;
  --moss: #2f4a38;
  --shadow: 0 18px 40px rgba(28, 23, 20, 0.08);
  --serif: "Fraunces", "Iowan Old Style", Palatino, serif;
  --sans: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding-left: 2.75rem;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }

a { color: var(--burgundy-deep); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--burgundy); }

::selection { background: var(--burgundy); color: #f7f1e8; }

.skip {
  position: absolute;
  left: 3.2rem;
  top: -4rem;
  background: var(--ink);
  color: var(--parchment);
  padding: 0.5rem 0.8rem;
  z-index: 50;
}
.skip:focus { top: 0.6rem; }

.rail {
  position: fixed;
  inset: 0 auto 0 0;
  width: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #221c19;
  z-index: 40;
}
.rail span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: #e7d3bf;
}

.wrap {
  width: min(1120px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(243, 238, 230, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.site-header::before {
  content: "";
  display: block;
  height: 6px;
  background: linear-gradient(90deg, var(--burgundy) 0 42%, var(--copper) 42% 100%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.4rem;
}
.wordmark {
  font-family: var(--serif);
  font-weight: 620;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--burgundy);
}
.site-nav a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--copper); }
.nav-contact {
  border: 1px solid var(--burgundy);
  padding: 0.35rem 0.7rem;
  color: var(--burgundy) !important;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--ink);
  background: transparent;
  font: inherit;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--burgundy);
  color: #f8f2ea;
  border: 1px solid var(--burgundy);
  padding: 0.75rem 1.1rem;
  font: 500 0.95rem/1 var(--sans);
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { background: var(--burgundy-deep); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--burgundy-deep);
}
.btn-ghost:hover { background: rgba(122, 36, 51, 0.06); color: var(--burgundy-deep); }
.text-link {
  font-weight: 600;
  color: var(--burgundy-deep);
}

.cover {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: end;
  padding: 2.6rem 0 3.4rem;
}
.kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin: 0 0 1.1rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}
h1, h2, h3, .footer-brand {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.cover h1 {
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 5.5rem);
  line-height: 0.92;
}
.cover h1 em {
  font-style: italic;
  font-weight: 520;
  color: var(--burgundy);
}
.cover-figure { margin: 0; }
.cover-figure img {
  width: 100%;
  height: min(68vh, 640px);
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04);
}
.cover-caption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: end;
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--ink);
}
.cover-caption p { margin: 0; color: var(--ink-soft); }

.section { padding: 3.2rem 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.6rem;
}
.section-head h2,
.page-title h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0; }
.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 42rem; }
.index-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--copper);
  font-size: 1.4rem;
}

.need-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2rem;
  border-top: 1px solid var(--ink);
  padding-top: 1.5rem;
}
.need-list { list-style: none; margin: 0; padding: 0; }
.need-list li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
}
.need-list strong { display: block; font-family: var(--serif); font-size: 1.35rem; font-weight: 560; }
.need-list span { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: center;
}
.split img { width: 100%; height: 100%; max-height: 520px; object-fit: cover; filter: saturate(0.78); }
.split.reverse { grid-template-columns: 0.9fr 1.1fr; }
.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--copper);
  margin: 0 0 0.6rem;
}

.offer-list { display: grid; gap: 0; }
.offer-row {
  display: grid;
  grid-template-columns: 6rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 0;
  border-top: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
}
.offer-row:hover { color: var(--burgundy); }
.offer-row small { color: var(--muted); display: block; }

.pull {
  margin: 0;
  padding: 2rem 0 0;
  border-top: 1px solid var(--ink);
}
.pull q {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
  display: block;
}
.pull figcaption { margin-top: 1rem; color: var(--muted); }

.journal-tease {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.journal-tease article {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 0.7rem;
}
.journal-tease img { width: 100%; height: 220px; object-fit: cover; }
.journal-tease h3 { margin: 0.8rem 0 0.4rem; font-size: 1.45rem; }
.meta { color: var(--muted); font-size: 0.88rem; }

.band {
  background: #221c19;
  color: #f3ebe1;
  padding: 3rem 0;
}
.band a { color: #f0d2b4; }
.band-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  align-items: end;
}
.band h2 { margin: 0 0 0.6rem; font-size: clamp(2rem, 4vw, 3rem); color: #f7f1e8; }

.page-title { padding: 2.4rem 0 1.2rem; }
.page-title p { max-width: 40rem; color: var(--ink-soft); }

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.card img { width: 100%; height: 210px; object-fit: cover; filter: saturate(0.8); }
.card-body { padding: 1.1rem 1.15rem 1.3rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.card h2, .card h3 { margin: 0; font-size: 1.55rem; }
.card p { margin: 0; color: var(--ink-soft); }
.card .text-link { margin-top: auto; }
.card-flagship { grid-column: 1 / -1; display: grid; grid-template-columns: 1.15fr 1fr; }
.card-flagship img { height: 100%; min-height: 280px; }

.steps { list-style: none; margin: 1.2rem 0 0; padding: 0; }
.steps li {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 0.8rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--rule);
}
.steps b { font-family: var(--serif); font-weight: 560; color: var(--burgundy); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.panel {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 1.2rem 1.3rem;
}
.panel h3 { margin-top: 0; }

.fee-table { width: 100%; border-collapse: collapse; background: var(--paper); }
.fee-table th, .fee-table td {
  text-align: left;
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.fee-table th { font-weight: 600; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.fee-table td:last-child { white-space: nowrap; font-variant-numeric: tabular-nums; }

.quotes { display: grid; gap: 1rem; }
.quote {
  margin: 0;
  padding: 1.3rem 1.3rem 1.1rem;
  background: var(--paper);
  border-left: 4px solid var(--burgundy);
}
.quote p { margin: 0 0 0.7rem; }
.quote.wide { font-size: 1.08rem; }
.quote footer { color: var(--muted); font-size: 0.92rem; }
.quote.reserve { border-left-color: var(--copper); background: #f7f1e6; }

.story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
  margin-top: 1.4rem;
  align-items: start;
}
.story img { width: 100%; height: 320px; object-fit: cover; filter: saturate(0.75); }

.people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.person { background: var(--paper); border: 1px solid var(--rule); }
.person img { width: 100%; height: 380px; object-fit: cover; object-position: center 15%; filter: saturate(0.7); }
.person div { padding: 1rem 1.1rem 1.2rem; }
.person h3 { margin: 0 0 0.3rem; }

.journal-list { display: grid; gap: 1.3rem; }
.journal-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.2rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
}
.journal-row img { width: 100%; height: 100%; min-height: 170px; object-fit: cover; }
.journal-row div { padding: 1rem 1rem 1rem 0; }
.journal-row h2 { margin: 0.3rem 0; font-size: 1.7rem; }

.article-hero img { width: 100%; max-height: 460px; object-fit: cover; filter: saturate(0.78); }
.prose { max-width: 68ch; }
.prose h2 { font-size: 1.8rem; margin: 2rem 0 0.6rem; }
.prose h3 { font-size: 1.3rem; margin: 1.4rem 0 0.4rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.2rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}
.contact-layout img { width: 100%; height: 240px; object-fit: cover; filter: saturate(0.75); }
form { display: grid; gap: 0.85rem; }
label { display: grid; gap: 0.3rem; font-weight: 560; }
input, select, textarea {
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #c9bfb2;
  padding: 0.7rem 0.75rem;
  width: 100%;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--copper);
  border-color: var(--copper);
}
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: var(--burgundy);
}
.field-error { min-height: 1.1em; color: var(--burgundy); font-size: 0.88rem; font-weight: 500; }
.form-status { min-height: 1.4em; margin: 0; }
.form-status.is-success { color: var(--moss); font-weight: 600; }
.form-status.is-error { color: var(--burgundy); font-weight: 600; }
.inline-error {
  background: #f8e8e6;
  color: var(--burgundy-deep);
  border: 1px solid var(--burgundy);
  padding: 0.7rem 0.8rem;
  margin: 0.6rem;
}
.cookie-fallback { margin: 1rem; }

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: calc(2.75rem + 1rem);
  z-index: 60;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 1rem;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
}
.cookie-kicker {
  margin: 0 0 0.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--copper);
}
.cookie-copy p { margin: 0; }
.cookie-actions { display: flex; gap: 0.6rem; }
.cookie-actions .btn { min-width: 8.5rem; }

.site-footer {
  background: #221c19;
  color: #efe4d6;
  padding: 2.6rem 0 1.4rem;
  margin-top: 3rem;
}
.site-footer a { color: #f0d2b4; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
}
.footer-grid a, .footer-grid p { display: block; margin: 0.25rem 0; }
.footer-brand { font-size: 1.7rem; margin: 0 0 0.4rem; color: #f7f1e8; }
.footer-label {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #c9a88a;
}
.registry-line {
  font-family: var(--serif);
  font-style: italic;
  color: #f7f1e8;
  overflow-wrap: anywhere;
}
.footer-base {
  margin-top: 1.6rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(243, 238, 230, 0.18);
  color: #cbbbaa;
  font-size: 0.9rem;
}

.missing {
  min-height: 55vh;
  display: grid;
  align-content: center;
  gap: 0.8rem;
}
.missing h1 { font-size: clamp(3rem, 8vw, 6rem); margin: 0; }

.note { color: var(--muted); font-size: 0.92rem; }

@media (max-width: 900px) {
  body { padding-left: 0; }
  .rail { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-inner { position: relative; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--parchment);
    border-bottom: 1px solid var(--rule);
    padding: 0.8rem 1.2rem 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav.is-open { display: flex; }
  .cover, .split, .split.reverse, .need-grid, .card-flagship, .journal-tease,
  .band-grid, .two-col, .story, .people, .contact-layout, .journal-row, .cookie-banner,
  .footer-grid, .cards {
    grid-template-columns: 1fr;
  }
  .cover-figure img { height: 320px; }
  .cover-caption, .offer-row, .need-list li { grid-template-columns: 1fr; }
  .journal-row div { padding: 0.4rem 1rem 1rem; }
  .cookie-banner { left: 1rem; }
  .card-flagship img, .person img, .story img { height: 240px; min-height: 0; }
  .fee-table td:last-child { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
