@charset "UTF-8";
:root{
  --ink: #2a1410;
  --ink-soft: #3d2a23;
  --paper: #faf6ed;
  --paper-warm: #f3ecdd;
  --cream: #fff8e8;
  --burgundy: #7a2c3a;
  --burgundy-deep: #5d1e29;
  --amber: #d4a64a;
  --amber-bright: #e8b64f;
  --terracotta: #c8764b;
  --mist: #e8ddc9;
  --muted: #7a6a5a;
  --line: rgba(42,20,16,.12);
  --line-strong: rgba(42,20,16,.22);
  --shadow-sm: 0 1px 2px rgba(42,20,16,.08);
  --shadow-md: 0 12px 30px -12px rgba(42,20,16,.22);
  --shadow-lg: 0 24px 60px -20px rgba(42,20,16,.28);
  --radius-xs: 4px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  --t-fast: 180ms cubic-bezier(.2,.7,.2,1);
  --t-base: 320ms cubic-bezier(.2,.7,.2,1);
  --size-1: 0.825rem;
  --size-2: 0.95rem;
  --size-3: 1.05rem;
  --size-4: 1.25rem;
  --size-5: 1.5rem;
  --size-6: 2rem;
  --size-7: 2.75rem;
  --size-8: 3.75rem;
  --size-9: 5rem;
}
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: var(--size-3);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--burgundy); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--burgundy-deep); }
a:focus-visible, button:focus-visible, iframe:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(2.25rem, 5vw + 1rem, 4.25rem); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 3vw + .5rem, 2.75rem); }
h3 { font-size: clamp(1.35rem, 1.5vw + .6rem, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.05rem; letter-spacing: .02em; }
h6 { font-size: .95rem; text-transform: uppercase; letter-spacing: .14em; font-family: var(--sans); font-weight: 600; }
p { margin-bottom: 1.1em; max-width: 70ch; }
ul, ol { margin: 0 0 1.25em 1.4em; }
li { margin-bottom: .45em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 3em 0; }
strong { font-weight: 700; color: var(--ink); }
em { font-style: italic; }
mark { background: linear-gradient(180deg, transparent 60%, rgba(212,166,74,.4) 60%); padding: 0 .15em; }
small { font-size: var(--size-1); color: var(--muted); }
blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  color: var(--ink-soft);
  border-left: 2px solid var(--burgundy);
  padding: .5em 0 .5em 1.75em;
  margin: 2em 0;
}
blockquote cite { display: block; margin-top: .75em; font-family: var(--sans); font-size: .85em; font-style: normal; color: var(--muted); letter-spacing: .04em; }
.skip-to-main {
  position: absolute;
  left: -9999px;
  top: 1rem;
  background: var(--ink);
  color: var(--cream);
  padding: .7rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
}
.skip-to-main:focus { left: 1rem; }
.shell { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: clamp(1.25rem, 3vw, 2.5rem); }
.shell--narrow { max-width: 820px; }
.shell--wide { max-width: 1440px; }
.stack > * + * { margin-top: var(--stack-gap, 1.5rem); }
.cluster { display: flex; flex-wrap: wrap; gap: var(--cluster-gap, 1rem); align-items: center; }
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--cream { background: var(--cream); }
.section--warm { background: var(--paper-warm); }
.section--ink { background: var(--ink); color: var(--mist); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--cream); }
.section--burgundy { background: var(--burgundy); color: var(--paper); }
.section--burgundy h1, .section--burgundy h2, .section--burgundy h3 { color: var(--paper); }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--sans);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--burgundy);
}
.section-ink .section-label, .section--burgundy .section-label { color: var(--amber-bright); }
.section-ink .section-label::before, .section--burgundy .section-label::before { background: var(--amber-bright); }
.display-lede {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 62ch;
}
.topstrip { background: var(--ink); color: var(--mist); font-size: var(--size-1); padding-block: .55rem; }
.topstrip__row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topstrip__left span + span { margin-left: 1.25rem; }
.topstrip a { color: var(--mist); border-bottom: 1px dotted transparent; transition: border-color var(--t-fast); }
.topstrip a:hover { color: var(--amber-bright); border-bottom-color: var(--amber-bright); }
.masthead {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 500;
}
.masthead__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-block: 1.25rem;
}
.wordmark { display: inline-flex; align-items: center; gap: .75rem; color: var(--ink); font-family: var(--serif); font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; }
.wordmark__glyph {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--amber-bright);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0;
}
.wordmark em { color: var(--burgundy); font-style: normal; }
.primary-nav { justify-self: center; }
.primary-nav__list { list-style: none; display: flex; flex-wrap: wrap; gap: .25rem; margin: 0; }
.primary-nav__list > li { position: relative; }
.primary-nav__link {
  display: inline-block;
  padding: .65rem 1rem;
  font-size: .95rem;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
}
.primary-nav__link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .4rem;
  height: 2px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.primary-nav__link:hover, .primary-nav__link[aria-current="page"] { color: var(--burgundy); }
.primary-nav__link:hover::after, .primary-nav__link[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav__sub {
  position: absolute;
  top: calc(100% + .25rem);
  left: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  list-style: none;
  padding: .5rem;
  margin: 0;
  min-width: 220px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--t-base), transform var(--t-base), visibility 0s linear var(--t-base);
  z-index: 20;
}
.primary-nav__list > li:hover > .primary-nav__sub,
.primary-nav__list > li:focus-within > .primary-nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.primary-nav__sub a {
  display: block;
  padding: .55rem .8rem;
  font-size: .9rem;
  color: var(--ink-soft);
  border-radius: var(--radius-xs);
}
.primary-nav__sub a:hover { background: var(--paper-warm); color: var(--burgundy); }
.masthead__cta { display: flex; gap: .5rem; align-items: center; }
.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
  justify-self: end;
}
.burger::before, .burger::after, .burger span {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform var(--t-base), opacity var(--t-base);
}
.burger::before { transform: translate(-50%, calc(-50% - 7px)); }
.burger::after { transform: translate(-50%, calc(-50% + 7px)); }
.burger[aria-expanded="true"]::before { transform: translate(-50%, -50%) rotate(45deg); }
.burger[aria-expanded="true"]::after { transform: translate(-50%, -50%) rotate(-45deg); }
.burger[aria-expanded="true"] span { opacity: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-fast);
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--burgundy); color: var(--paper); }
.btn--primary:hover { background: var(--burgundy-deep); color: var(--paper); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn--amber { background: var(--amber); color: var(--ink); }
.btn--amber:hover { background: var(--amber-bright); color: var(--ink); }
.btn--outline-paper { background: transparent; color: var(--paper); border-color: rgba(255,248,232,.45); }
.btn--outline-paper:hover { border-color: var(--paper); background: transparent; color: var(--paper); }
.btn--sm { padding: .6rem 1.1rem; font-size: .85rem; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.hero {
  padding-block: clamp(3rem, 5vw, 5.5rem) clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(ellipse at top right, rgba(212,166,74,.15), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(122,44,58,.08), transparent 60%),
    var(--paper);
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
.hero__eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: inline-flex;
  gap: .8rem;
  align-items: center;
}
.hero__eyebrow::before { content: "—"; color: var(--burgundy); }
.hero__title {
  font-size: clamp(2.5rem, 6vw + 1rem, 5.25rem);
  line-height: 1.02;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -.025em;
}
.hero__title em { color: var(--burgundy); font-style: italic; font-weight: 500; }
.hero__lede { font-size: clamp(1.05rem, 1.2vw + .5rem, 1.3rem); line-height: 1.6; color: var(--ink-soft); max-width: 58ch; margin-bottom: 2rem; }
.hero__actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero__side {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
}
.hero__side-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .25em; color: var(--muted); margin-bottom: 1rem; font-weight: 600; }
.hero__side-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.hero__side-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__side-title { font-family: var(--serif); font-size: 1.35rem; line-height: 1.25; font-weight: 700; margin-bottom: .5rem; }
.hero__side-meta { font-size: .85rem; color: var(--muted); }
.hero__readout {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.readout__figure { font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.75rem); line-height: 1; color: var(--burgundy); font-weight: 700; }
.readout__label { font-size: .8rem; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); margin-top: .5rem; display: block; }
.prose { max-width: 68ch; }
.prose p { font-size: 1.08rem; line-height: 1.8; color: var(--ink-soft); }
.prose p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4.5em;
  line-height: .85;
  float: left;
  margin-right: .1em;
  margin-top: .08em;
  color: var(--burgundy);
  font-weight: 900;
}
.prose h2 { margin-top: 2.5em; margin-bottom: .75em; }
.prose h3 { margin-top: 2em; margin-bottom: .5em; }
.prose ul li { line-height: 1.75; }
.prose img { border-radius: var(--radius-md); margin: 2em 0; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.feature-row--flipped { direction: rtl; }
.feature-row--flipped > * { direction: ltr; }
.feature-row__art {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--paper-warm);
  position: relative;
}
.feature-row__art img { width: 100%; height: 100%; object-fit: cover; }
.feature-row__art-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  padding: .4rem .8rem;
  border-radius: var(--radius-xs);
}
.feature-row__text h2 { margin-bottom: 1rem; }
.feature-row__text p { color: var(--ink-soft); margin-bottom: 1em; }
.feature-row__meta { display: flex; gap: 1.5rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: .85rem; color: var(--muted); }
.feature-row__meta strong { color: var(--burgundy); font-family: var(--serif); font-size: 1.15rem; font-weight: 700; display: block; }
.journey { counter-reset: journey-step; position: relative; }
.journey::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  width: 1px;
  background: var(--line-strong);
}
.journey__item { position: relative; padding-left: 110px; padding-block: 2rem; counter-increment: journey-step; }
.journey__item::before {
  content: counter(journey-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 2rem;
  width: 100px;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--burgundy);
  line-height: 1;
}
.journey__item::after {
  content: "";
  position: absolute;
  left: 44px;
  top: calc(2rem + 1.25rem);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--burgundy);
}
.section--ink .journey::before { background: rgba(255,248,232,.2); }
.section--ink .journey__item::before { color: var(--amber-bright); }
.section--ink .journey__item::after { background: var(--ink); border-color: var(--amber-bright); }
.journey__item h3 { margin-bottom: .5rem; }
.journey__item p { color: var(--ink-soft); max-width: 55ch; }
.section--ink .journey__item p { color: rgba(255,248,232,.75); }
.articles-digest { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.article-card { display: grid; grid-template-columns: 2fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); padding-block: 2.5rem; border-bottom: 1px solid var(--line); align-items: center; }
.article-card--reversed { grid-template-columns: 1fr 2fr; }
.article-card__meta { display: flex; gap: 1rem; margin-bottom: .75rem; font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.article-card__meta span.article-card__category { color: var(--burgundy); font-weight: 600; }
.article-card__title { font-size: clamp(1.35rem, 1.5vw + .6rem, 1.9rem); line-height: 1.25; margin-bottom: .75rem; }
.article-card__title a { color: inherit; }
.article-card__title a:hover { color: var(--burgundy); }
.article-card__excerpt { color: var(--ink-soft); margin-bottom: 1rem; max-width: 62ch; }
.article-card__more { font-family: var(--sans); font-weight: 600; font-size: .9rem; color: var(--burgundy); display: inline-flex; align-items: center; gap: .5rem; border-bottom: 1px solid currentColor; padding-bottom: 2px; transition: gap var(--t-base); }
.article-card__more:hover { gap: .8rem; }
.article-card__visual { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius-md); background: var(--paper-warm); }
.article-card__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.article-card:hover .article-card__visual img { transform: scale(1.04); }
.crumbs {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  margin-bottom: 1.5rem;
}
.crumbs a { color: var(--muted); border-bottom: 1px solid transparent; }
.crumbs a:hover { color: var(--burgundy); border-bottom-color: var(--burgundy); }
.crumbs > span { color: var(--burgundy); }
.crumbs i { opacity: .5; }
.page-head { padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem); background: var(--paper-warm); border-bottom: 1px solid var(--line); }
.page-head h1 { max-width: 22ch; }
.page-head__lede { max-width: 58ch; font-size: 1.15rem; color: var(--ink-soft); margin-top: 1rem; }
.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.pill {
  padding: .4rem 1rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  font-size: .82rem;
  color: var(--ink-soft);
}
.pill--active { background: var(--burgundy); color: var(--paper); border-color: var(--burgundy); }
.callout {
  background: var(--cream);
  border-left: 4px solid var(--amber);
  padding: 1.75rem 2rem;
  border-radius: var(--radius-sm);
  margin-block: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}
.callout__icon {
  width: 40px;
  height: 40px;
  background: var(--amber);
  color: var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
}
.callout h4 { margin-bottom: .35em; font-family: var(--serif); font-size: 1.15rem; }
.callout p { margin: 0; max-width: none; font-size: .98rem; color: var(--ink-soft); }
.volume-block { padding-block: clamp(3rem, 5vw, 5rem); border-bottom: 1px solid var(--line); }
.volume-block__inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.volume-block--reverse .volume-block__inner { grid-template-columns: 1.3fr 1fr; direction: rtl; }
.volume-block--reverse .volume-block__inner > * { direction: ltr; }
.volume-tag {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
  display: block;
}
.volume-block h2 { margin-bottom: 1rem; }
.volume-block__media { aspect-ratio: 3/4; border-radius: var(--radius-md); overflow: hidden; background: var(--paper-warm); }
.volume-block__media img { width: 100%; height: 100%; object-fit: cover; }
.tag-list { list-style: none; margin: 1.5rem 0 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.tag-list li { margin: 0; }
.tag-list li span { display: inline-block; padding: .3rem .8rem; background: var(--paper-warm); color: var(--ink-soft); font-size: .78rem; border-radius: 999px; border: 1px solid var(--line); }
.faq-group { margin-bottom: 3rem; }
.faq-group__label { font-family: var(--mono); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--burgundy); margin-bottom: 1rem; }
.faq-group__title { margin-bottom: 1.5rem; }
.qa { border-top: 1px solid var(--line); }
.qa__item { border-bottom: 1px solid var(--line); }
.qa__trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 1.5rem 3rem 1.5rem 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  transition: color var(--t-fast);
}
.qa__trigger::after {
  content: "+";
  position: absolute;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.5rem;
  color: var(--burgundy);
  transition: transform var(--t-base);
  font-weight: 300;
}
.qa__item[data-open="true"] .qa__trigger { color: var(--burgundy); }
.qa__item[data-open="true"] .qa__trigger::after { transform: translateY(-50%) rotate(45deg); }
.qa__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base);
}
.qa__panel > div { padding-bottom: 1.75rem; max-width: 68ch; color: var(--ink-soft); line-height: 1.75; }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.contact-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  transition: border-color var(--t-base), transform var(--t-base);
}
.contact-card:hover { border-color: var(--burgundy); transform: translateY(-2px); }
.contact-card__role { font-family: var(--mono); font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--burgundy); margin-bottom: .5rem; }
.contact-card__name { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.contact-card__list { list-style: none; margin: 0; padding: 0; }
.contact-card__list li { display: flex; gap: .75rem; align-items: flex-start; padding-block: .6rem; font-size: .95rem; border-top: 1px solid var(--line); }
.contact-card__list li:first-child { border-top: 0; }
.contact-card__list i { color: var(--burgundy); width: 16px; margin-top: .35em; flex-shrink: 0; }
.map-frame { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16/9; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; grid-auto-rows: 280px; grid-auto-flow: dense; }
.gallery-cell { overflow: hidden; border-radius: var(--radius-sm); background: var(--paper-warm); position: relative; }
.gallery-cell--tall { grid-row: span 2; }
.gallery-cell--wide { grid-column: span 2; }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.gallery-cell:hover img { transform: scale(1.05); }
.gallery-cell__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(42,20,16,.85);
  color: var(--cream);
  font-size: .78rem;
  padding: .4rem .8rem;
  border-radius: var(--radius-xs);
  font-family: var(--mono);
  letter-spacing: .08em;
}
.glossary { columns: 2; column-gap: 3rem; column-rule: 1px solid var(--line); }
.glossary__term { break-inside: avoid; margin-bottom: 2rem; }
.glossary__term dt { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; color: var(--burgundy); margin-bottom: .35rem; display: flex; align-items: baseline; gap: .5rem; }
.glossary__term dt small { font-family: var(--mono); font-size: .7rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
.glossary__term dd { color: var(--ink-soft); font-size: .95rem; line-height: 1.65; margin: 0; }
.timeline-release { border-left: 2px solid var(--burgundy); padding-left: 2rem; margin-left: 1rem; }
.timeline-release__entry { position: relative; padding-bottom: 2.5rem; }
.timeline-release__entry::before {
  content: "";
  position: absolute;
  left: -2.4rem;
  top: .4rem;
  width: 14px;
  height: 14px;
  background: var(--amber);
  border: 2px solid var(--burgundy);
  border-radius: 50%;
}
.timeline-release__date { font-family: var(--mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--burgundy); margin-bottom: .5rem; }
.timeline-release__title { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; margin-bottom: .5rem; }
.timeline-release__desc { color: var(--ink-soft); max-width: 65ch; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
  margin-block: 2rem;
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.compare-table thead { background: var(--ink); color: var(--cream); }
.compare-table th, .compare-table td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--line); }
.compare-table th { font-family: var(--sans); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table tr:nth-child(even) { background: var(--paper-warm); }
.compare-table td:first-child { font-weight: 600; color: var(--burgundy); font-family: var(--serif); }
.colophon { background: var(--ink); color: var(--mist); padding-block: 4rem 0; }
.colophon a { color: var(--mist); }
.colophon a:hover { color: var(--amber-bright); }
.colophon__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,248,232,.12); }
.colophon__identity .wordmark__glyph { background: var(--amber-bright); color: var(--ink); }
.colophon__identity .wordmark em { color: var(--amber-bright); }
.colophon__identity .wordmark { color: var(--cream); }
.colophon__about { margin-top: 1.25rem; color: rgba(255,248,232,.75); font-size: .95rem; line-height: 1.75; max-width: 40ch; }
.colophon h5 { color: var(--amber-bright); font-size: .85rem; letter-spacing: .18em; text-transform: uppercase; font-family: var(--sans); font-weight: 600; margin-bottom: 1.25rem; }
.colophon__links { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.5rem; }
.colophon__links li { margin: 0; }
.colophon__links a { font-size: .92rem; color: rgba(255,248,232,.7); transition: color var(--t-fast), padding var(--t-fast); }
.colophon__links a:hover { color: var(--amber-bright); padding-left: .25rem; }
.colophon__contact-block { font-size: .92rem; line-height: 1.7; color: rgba(255,248,232,.75); }
.colophon__contact-block + .colophon__contact-block { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,248,232,.1); }
.colophon__contact-block strong { display: block; color: var(--cream); font-family: var(--serif); font-size: 1.05rem; margin-bottom: .25rem; font-weight: 700; }
.colophon__bottom { padding-block: 1.75rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: rgba(255,248,232,.5); }
.social-orbit { display: flex; gap: .5rem; }
.social-orbit a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,248,232,.25);
  color: var(--mist);
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
}
.social-orbit a:hover { background: var(--amber-bright); color: var(--ink); border-color: transparent; }
.to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--cream);
  border: 0;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--t-base), transform var(--t-base), background var(--t-base);
  z-index: 800;
}
.to-top[data-visible="true"] { opacity: 1; transform: translateY(0); }
.to-top:hover { background: var(--burgundy-deep); }
.not-found { min-height: 70vh; display: grid; place-items: center; padding: 4rem 1rem; text-align: center; background: radial-gradient(circle at 50% 40%, var(--paper-warm), var(--paper) 65%); }
.not-found__numeric { font-family: var(--serif); font-size: clamp(6rem, 18vw, 14rem); line-height: .9; font-weight: 900; color: var(--burgundy); letter-spacing: -.05em; }
.not-found__title { max-width: 22ch; margin-inline: auto; margin-block: 1rem; }
.not-found__subtitle { max-width: 48ch; margin-inline: auto; color: var(--ink-soft); font-size: 1.1rem; }
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42,20,16,.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), visibility 0s linear var(--t-base);
  z-index: 400;
}
.drawer-overlay[data-open="true"] { opacity: 1; visibility: visible; transition-delay: 0s; }
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row--flipped { direction: ltr; }
  .volume-block__inner { grid-template-columns: 1fr; }
  .volume-block--reverse .volume-block__inner { direction: ltr; }
  .article-card, .article-card--reversed { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .colophon__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .colophon__links { grid-template-columns: 1fr 1fr; }
  .glossary { columns: 1; }
}
@media (max-width: 780px) {
  .burger { display: block; }
  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 360px);
    height: 100vh;
    background: var(--paper);
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--t-base);
    box-shadow: var(--shadow-lg);
    z-index: 500;
    justify-self: end;
  }
  .primary-nav[data-open="true"] { transform: translateX(0); }
  .primary-nav__list { flex-direction: column; gap: 0; }
  .primary-nav__list > li { border-bottom: 1px solid var(--line); width: 100%; }
  .primary-nav__link { padding: 1rem 0; display: block; font-size: 1.05rem; }
  .primary-nav__link::after { display: none; }
  .primary-nav__sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: 0;
    padding: 0 0 1rem 0;
    margin: 0;
    display: none;
  }
  .primary-nav__list > li[data-sub-open="true"] > .primary-nav__sub { display: block; }
  .masthead__cta { display: none; }
  .masthead__inner { grid-template-columns: 1fr auto; }
  .topstrip { display: none; }
  .hero__readout { grid-template-columns: 1fr; gap: 1rem; }
  .hero__readout > div { padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
  .journey::before { left: 30px; }
  .journey__item { padding-left: 70px; }
  .journey__item::before { width: 55px; font-size: 1.8rem; }
  .journey__item::after { left: 25px; }
}
@media (max-width: 520px) {
  .section { padding-block: 3rem; }
  .hero { padding-block: 2.5rem 3.5rem; }
  .callout { grid-template-columns: 1fr; padding: 1.5rem; }
  .contact-card { padding: 1.5rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
@media print {
  .topstrip, .masthead, .colophon, .to-top, .drawer-overlay, .burger, .hero__actions { display: none !important; }
  body { background: #fff; color: #000; }
}
