
:root {
  --crz-ink: #14181b;
  --crz-ink-soft: #31383d;
  --crz-paper: #f4f1e9;
  --crz-paper-deep: #e9e2d3;
  --crz-line: rgba(20, 24, 27, 0.15);
  --crz-gold: #c69b55;
  --crz-gold-deep: #8d6530;
  --crz-moss: #536a49;
  --crz-white: #ffffff;
  --crz-max: 1180px;
  --crz-reading: 760px;
  --crz-radius: 22px;
  --crz-shadow: 0 24px 70px rgba(15, 20, 23, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--crz-paper);
  color: var(--crz-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

a { color: inherit; }

.crz-progress {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto 0;
  height: 4px;
  background: rgba(255,255,255,.12);
}

.crz-progress > span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--crz-gold);
}

.crz-shell {
  width: min(calc(100% - 40px), var(--crz-max));
  margin-inline: auto;
}

.crz-hero {
  min-height: 78vh;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  color: white;
  overflow: hidden;
  background: #101417;
}

.crz-hero__image,
.crz-hero__veil {
  position: absolute;
  inset: 0;
}

.crz-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  z-index: -3;
}

.crz-hero__veil {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5,8,10,.10) 5%, rgba(5,8,10,.20) 42%, rgba(5,8,10,.85) 100%),
    linear-gradient(90deg, rgba(5,8,10,.55) 0%, rgba(5,8,10,.08) 72%);
}

.crz-hero__content {
  padding: clamp(80px, 10vw, 140px) 0 clamp(48px, 8vw, 86px);
  max-width: 900px;
}

.crz-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.74);
}

.crz-breadcrumbs a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.crz-breadcrumbs a:hover { border-bottom-color: currentColor; }

.crz-kicker {
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #e7c992;
  font-size: .84rem;
}

.crz-hero h1 {
  margin: 0;
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: .92;
  letter-spacing: -.05em;
  text-wrap: balance;
}

.crz-deck {
  margin: 24px 0 0;
  max-width: 760px;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: rgba(255,255,255,.86);
  text-wrap: pretty;
}

.crz-byline {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  font-size: .9rem;
  color: rgba(255,255,255,.72);
}

.crz-byline strong { color: white; }

.crz-article {
  padding: clamp(56px, 8vw, 100px) 0 110px;
}

.crz-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: clamp(38px, 6vw, 78px);
  align-items: start;
}

.crz-reading {
  min-width: 0;
  max-width: var(--crz-reading);
}

.crz-lede {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.34rem, 2.4vw, 1.75rem);
  line-height: 1.55;
  color: #202529;
}

.crz-lede::first-letter {
  float: left;
  font-size: 4.7rem;
  line-height: .78;
  padding: .12em .12em 0 0;
  color: var(--crz-gold-deep);
  font-weight: 700;
}

.crz-reading p {
  margin: 1.2em 0;
  font-size: 1.055rem;
}

.crz-reading h2 {
  margin: 2.6em 0 .7em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.crz-reading h3 {
  margin: 2em 0 .55em;
  font-size: 1.18rem;
  letter-spacing: .02em;
}

.crz-inline-link {
  font-weight: 750;
  text-decoration-color: rgba(141, 101, 48, .42);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.crz-inline-link:hover {
  color: var(--crz-gold-deep);
  text-decoration-color: currentColor;
}

.crz-aside {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 18px;
}

.crz-road-file,
.crz-contents {
  border: 1px solid var(--crz-line);
  background: rgba(255,255,255,.46);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 20px;
}

.crz-aside__label {
  margin: 0 0 14px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--crz-gold-deep);
}

.crz-road-file dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.crz-road-file div {
  border-top: 1px solid var(--crz-line);
  padding-top: 10px;
}

.crz-road-file div:first-child {
  border-top: 0;
  padding-top: 0;
}

.crz-road-file dt {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #656c70;
}

.crz-road-file dd {
  margin: 2px 0 0;
  font-weight: 800;
}

.crz-contents nav {
  display: grid;
  gap: 8px;
}

.crz-contents a {
  text-decoration: none;
  font-size: .88rem;
  color: #444c51;
  padding: 4px 0;
}

.crz-contents a:hover { color: var(--crz-gold-deep); }

.crz-figure {
  width: min(1120px, calc(100vw - 40px));
  margin: clamp(42px, 7vw, 74px) 0;
}

.crz-reading .crz-figure {
  margin-left: 0;
}

.crz-figure--wide {
  width: min(1120px, calc(100vw - 40px));
}

.crz-figure img {
  width: 100%;
  max-height: 820px;
  object-fit: cover;
  border-radius: var(--crz-radius);
  box-shadow: var(--crz-shadow);
}

.crz-figure--landscape img {
  aspect-ratio: 4 / 3;
}

.crz-figure--portrait img {
  aspect-ratio: 4 / 5;
}

.crz-caption {
  margin: 12px 4px 0;
  max-width: 780px;
  font-size: .88rem;
  color: #626a6f;
}

.crz-caption strong { color: #2d3337; }

.crz-pullquote {
  position: relative;
  margin: 3em 0;
  padding: 28px 0 28px 34px;
  border-left: 5px solid var(--crz-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.25;
  color: #293033;
}

.crz-pullquote p { margin: 0; font-size: inherit; }

.crz-note {
  margin: 2.4em 0;
  padding: 22px 24px;
  border-radius: 16px;
  border: 1px solid rgba(141, 101, 48, .25);
  background: #eee6d7;
}

.crz-note strong { display: block; margin-bottom: 4px; }

.crz-editor-slot {
  display: none;
  margin: 48px 0;
  border: 2px dashed rgba(141, 101, 48, .42);
  border-radius: 20px;
  min-height: 260px;
  place-items: center;
  text-align: center;
  padding: 32px;
  color: #6f675b;
  background:
    linear-gradient(135deg, rgba(198,155,85,.08), rgba(83,106,73,.08));
}

body[data-editor="on"] .crz-editor-slot { display: grid; }

.crz-editor-slot b {
  display: block;
  color: #383d3f;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.crz-related {
  width: min(calc(100% - 40px), var(--crz-max));
  margin: 20px auto 0;
  padding-top: 52px;
  border-top: 1px solid var(--crz-line);
}

.crz-related__head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.crz-related h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.crz-related__head p {
  margin: 0;
  max-width: 520px;
  color: #626a6f;
}

.crz-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.crz-route-card {
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: end;
  text-decoration: none;
  color: white;
  background:
    linear-gradient(160deg, rgba(83,106,73,.9), rgba(20,24,27,.94));
  border: 1px solid rgba(255,255,255,.08);
}

.crz-route-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(198,155,85,.38), transparent 34%),
    linear-gradient(180deg, transparent 30%, rgba(10,13,15,.75));
}

.crz-route-card__inner {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.crz-route-card small {
  display: block;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .7;
  font-weight: 800;
  margin-bottom: 4px;
}

.crz-route-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.crz-route-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.7);
  font-size: .88rem;
}

.crz-route-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(15, 20, 23, .14);
}

.crz-sources {
  width: min(calc(100% - 40px), var(--crz-max));
  margin: 64px auto 0;
  border-top: 1px solid var(--crz-line);
  padding-top: 26px;
  color: #667075;
  font-size: .86rem;
}

.crz-sources summary {
  cursor: pointer;
  color: #343b3f;
  font-weight: 800;
}

.crz-sources ul { padding-left: 18px; }

.crz-footer-note {
  width: min(calc(100% - 40px), var(--crz-max));
  margin: 42px auto 0;
  padding: 28px 0 58px;
  border-top: 1px solid var(--crz-line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #596166;
  font-size: .9rem;
}

.crz-footer-note strong { color: var(--crz-ink); }

@media (max-width: 960px) {
  .crz-layout {
    grid-template-columns: 1fr;
  }

  .crz-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: -1;
  }

  .crz-reading {
    max-width: 820px;
  }

  .crz-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .crz-shell { width: min(calc(100% - 28px), var(--crz-max)); }

  .crz-hero { min-height: 72vh; }

  .crz-hero__content { padding-bottom: 42px; }

  .crz-aside {
    grid-template-columns: 1fr;
  }

  .crz-contents { display: none; }

  .crz-reading p { font-size: 1rem; }

  .crz-figure,
  .crz-figure--wide {
    width: calc(100vw - 28px);
  }

  .crz-related {
    width: calc(100% - 28px);
  }

  .crz-related__head {
    display: block;
  }

  .crz-related__head p { margin-top: 12px; }

  .crz-related-grid {
    grid-template-columns: 1fr;
  }

  .crz-footer-note {
    width: calc(100% - 28px);
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
