:root {
  --paper: #f7f1e7;
  --paper-strong: #fffaf0;
  --ink: #171515;
  --ink-soft: #4d4742;
  --line: #d8cfc2;
  --accent: #b3261e;
  --accent-deep: #7f1813;
  --card: #fffdf8;
  --shadow: rgba(23, 21, 21, 0.06);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(179, 38, 30, 0.08), transparent 32%),
    linear-gradient(180deg, #fffaf3 0%, var(--paper) 100%);
}
a { color: var(--accent-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
.site-shell { min-height: 100vh; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(216, 207, 194, 0.9);
  background: rgba(255, 250, 240, 0.94);
  backdrop-filter: blur(16px);
}
.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.main-nav a { font-size: 0.95rem; }
.search {
  display: flex;
  gap: 8px;
  align-items: center;
}
.search input {
  width: min(320px, 42vw);
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
}
.search button,
.cta,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  background: var(--accent);
  color: white;
  font-weight: 600;
}
.button-link.alt,
.search button.alt {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}
main { padding: 26px 28px 56px; }
.hero {
  padding: 32px;
  border: 1px solid rgba(179, 38, 30, 0.12);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 247, 238, 0.96));
  box-shadow: 0 18px 42px var(--shadow);
}
.hero h1, .page-hero h1, .article h1, .product-hero h1 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}
.lede,
.muted { color: var(--ink-soft); }
.stats,
.card-grid,
.lane-grid,
.archive-grid,
.meta-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.stats { margin-top: 18px; }
.stat,
.card,
.lane,
.route-note,
.archive-card,
.product-card,
.post-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 26px var(--shadow);
}
.stat {
  min-width: 140px;
  padding: 16px;
}
.section { margin-top: 24px; }
.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 10px;
}
.card-grid,
.lane-grid,
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.card, .lane, .archive-card, .post-card, .product-card {
  padding: 18px;
}
.product-card .price {
  margin: 10px 0 0;
  font-size: 1.15rem;
  font-weight: 700;
}
.product-meta,
.post-meta,
.archive-meta,
.micro-copy {
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.pill {
  border-radius: 999px;
  border: 1px solid rgba(179, 38, 30, 0.12);
  background: rgba(179, 38, 30, 0.06);
  padding: 6px 10px;
  font-size: 0.84rem;
}
.article,
.product-hero,
.page-hero,
.not-found {
  max-width: 960px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 18px 42px var(--shadow);
}
.article-body { line-height: 1.7; }
.article-body h2, .article-body h3 { font-family: Georgia, "Times New Roman", serif; }
.article-body img { max-width: 100%; height: auto; }
.article-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1.18fr) minmax(280px, 0.48fr);
  gap: 22px;
  align-items: start;
}
.article-main { min-width: 0; }
.article-guide-rail,
.article-rail {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
}
.guide-card,
.rail-card,
.answer-box,
.article-toc,
.author-card,
.article-table-block {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 26px var(--shadow);
}
.answer-box,
.article-toc,
.article-table-block,
.guide-card,
.rail-card { padding: 18px; }
.guide-card {
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.98), rgba(255, 255, 255, 0.98));
}
.guide-card-header,
.rail-card-header {
  margin: -18px -18px 16px;
  padding: 14px 18px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(135deg, #071f3a, #0b2e57 62%, #133b68);
  color: #f7fbff;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.guide-steps,
.rail-checklist,
.rail-number-list {
  display: grid;
  gap: 12px;
}
.guide-step,
.rail-check-item,
.rail-number-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.guide-step-number,
.rail-number-badge,
.rail-check-badge {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
  flex-shrink: 0;
}
.guide-step-number,
.rail-number-badge {
  background: linear-gradient(180deg, rgba(25, 94, 194, 0.12), rgba(25, 94, 194, 0.24));
  border: 1px solid rgba(25, 94, 194, 0.18);
  color: #12448b;
}
.rail-check-badge {
  background: linear-gradient(180deg, rgba(31, 133, 78, 0.14), rgba(31, 133, 78, 0.24));
  border: 1px solid rgba(31, 133, 78, 0.18);
  color: #176842;
}
.guide-step-title,
.rail-number-copy strong,
.rail-check-copy strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}
.guide-step-copy a {
  color: var(--ink);
  text-decoration: none;
}
.guide-step-copy p,
.rail-number-copy p,
.rail-check-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}
.author-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 18px;
  padding: 18px;
  align-items: center;
}
.author-card-copy h2,
.rail-card h2,
.answer-box h2,
.article-toc h2,
.article-table-block h2 {
  margin-top: 0;
}
.article-breadcrumbs {
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.article-breadcrumbs a { color: var(--accent-deep); }
.article-bullets {
  margin: 0;
  padding-left: 20px;
  line-height: 1.65;
}
.article-bullets li + li { margin-top: 8px; }
.article-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.article-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.article-section-number {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(31, 133, 78, 0.12), rgba(31, 133, 78, 0.24));
  border: 1px solid rgba(31, 133, 78, 0.18);
  color: #176842;
  font-weight: 800;
}
.article-section-head h2 {
  margin: 0;
}
.article-meta-card {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 24px var(--shadow);
}
.article-meta-card h2 {
  margin: 6px 0 8px;
  font-size: 1.02rem;
}
.article-toc ol {
  margin: 0;
  padding-left: 20px;
  columns: 2;
  gap: 20px;
}
.article-toc li { break-inside: avoid; margin-bottom: 8px; }
.article-section-block + .article-section-block { margin-top: 22px; }
.article-field-notes {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(179, 38, 30, 0.1);
  background: rgba(179, 38, 30, 0.04);
}
.article-ad-slot {
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px dashed rgba(23, 21, 21, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(243, 247, 255, 0.86), rgba(255, 250, 240, 0.96));
}
.article-ad-label {
  display: inline-block;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(179, 38, 30, 0.08);
  padding: 4px 10px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.article-ad-body {
  display: grid;
  gap: 4px;
  color: var(--ink-soft);
}
.article-ad-body strong { color: var(--ink); }
.article-anchor-wrap {
  margin: 18px 0;
}
.article-media,
.article-hero-media,
.product-media,
.author-portrait,
.card-media {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
}
.article-hero-media,
.product-media { margin: 18px 0; }
.card-media { margin-bottom: 12px; }
.article-media img,
.article-hero-media img,
.product-media img,
.author-portrait img,
.card-media img {
  width: 100%;
  height: auto;
  display: block;
}
.article-media figcaption,
.article-hero-media figcaption,
.product-media figcaption,
.author-portrait figcaption {
  padding: 10px 12px 12px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.article-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}
.article-table th,
.article-table td {
  padding: 11px 12px;
  border: 1px solid var(--line);
  text-align: left;
}
.article-table th {
  background: rgba(179, 38, 30, 0.06);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.faq-stack {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  padding: 14px 16px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--ink-soft);
}
.faq-item p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 20px;
}
.route-note { padding: 16px; }
.order-panel {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(179, 38, 30, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(179, 38, 30, 0.04), rgba(255, 255, 255, 0.96));
}
.order-form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.order-form label {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.order-form input,
.order-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  font: inherit;
  color: var(--ink);
}
.order-form textarea {
  min-height: 110px;
  resize: vertical;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.callout-error {
  padding: 12px 14px;
  border: 1px solid rgba(179, 38, 30, 0.2);
  border-radius: 16px;
  background: rgba(179, 38, 30, 0.08);
  color: var(--accent-deep);
}
.site-footer {
  padding: 22px 28px 36px;
  border-top: 1px solid rgba(216, 207, 194, 0.9);
  color: var(--ink-soft);
}
.article-result-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, #071f3a, #0b2e57 62%, #133b68);
  color: #f7fbff;
}
.article-result-strip strong {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.article-result-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.article-result-pill {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  padding: 7px 12px;
  font-size: 0.84rem;
}
.footer-links a { margin-right: 12px; }
.review-body {
  margin: 0;
  color: #152130;
  background:
    radial-gradient(circle at top left, rgba(11, 61, 99, 0.24), transparent 20%),
    linear-gradient(180deg, #06121d 0%, #0d2234 18%, #f3ede3 18.1%, #f6f1e8 100%);
}
.review-shell {
  min-height: 100vh;
  color: #152130;
}
.review-utility {
  background: rgba(5, 18, 29, 0.92);
  border-bottom: 1px solid rgba(141, 180, 209, 0.16);
}
.review-utility-row,
.review-topbar,
.review-main,
.review-footer {
  max-width: 1460px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}
.review-utility-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  color: #d7e4ee;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.review-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.15fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 18px;
  background: rgba(246, 241, 232, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10, 39, 62, 0.08);
}
.review-brand-block {
  display: grid;
  gap: 10px;
}
.review-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #081722;
  text-decoration: none;
}
.review-brand:hover {
  text-decoration: none;
}
.review-brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d4068, #082338 72%);
  box-shadow: 0 18px 30px rgba(8, 35, 56, 0.22);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.review-brand-text {
  display: grid;
  gap: 4px;
}
.review-brand-text strong {
  font-family: "Avenir Next", "Franklin Gothic Medium", "Segoe UI", sans-serif;
  font-size: 1.32rem;
  letter-spacing: 0.01em;
}
.review-brand-text span {
  color: #54697c;
  font-size: 0.9rem;
}
.review-brand-note {
  margin: 0;
  color: #516274;
  font-size: 0.92rem;
  line-height: 1.55;
}
.review-nav-cluster {
  display: grid;
  gap: 12px;
}
.review-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.review-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #11263a;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(8, 35, 56, 0.08);
}
.review-nav a:hover,
.review-silo-strip a:hover {
  text-decoration: none;
}
.review-silo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.review-silo-strip a {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(13, 64, 104, 0.07);
  border: 1px solid rgba(13, 64, 104, 0.12);
  color: #39566f;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}
.review-search {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 24px;
  border: 1px solid rgba(9, 37, 58, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(235, 243, 248, 0.92));
  box-shadow: 0 18px 36px rgba(7, 24, 37, 0.08);
}
.review-search-label {
  color: #4a6073;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.review-search-row {
  display: flex;
  gap: 10px;
}
.review-search input {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(8, 35, 56, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: #102233;
}
.review-search button,
.review-shell .button-link {
  border-radius: 16px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #0d4068, #0a2741 72%);
  box-shadow: 0 14px 28px rgba(8, 35, 56, 0.16);
}
.review-shell .button-link.alt {
  background: rgba(255, 255, 255, 0.85);
  color: #0a2741;
  border: 1px solid rgba(10, 39, 65, 0.12);
  box-shadow: none;
}
.review-main {
  padding-top: 28px;
  padding-bottom: 70px;
}
.review-main .hero,
.review-main .page-hero,
.review-main .product-hero,
.review-main .article,
.review-main .route-note,
.review-main .card,
.review-main .post-card,
.review-main .product-card,
.review-main .guide-card,
.review-main .rail-card,
.review-main .answer-box,
.review-main .article-toc,
.review-main .author-card,
.review-main .article-table-block {
  border-color: rgba(8, 35, 56, 0.09);
  box-shadow: 0 22px 44px rgba(8, 31, 48, 0.08);
}
.review-main .hero,
.review-main .page-hero,
.review-main .product-hero,
.review-main .article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 252, 0.94));
  border-radius: 32px;
}
.review-main .page-hero,
.review-main .product-hero {
  max-width: 1280px;
}
.review-home-hero,
.review-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: start;
}
.review-hero-copy,
.review-page-hero-copy {
  display: grid;
  gap: 16px;
}
.review-hero-copy h1,
.review-page-hero-copy h1,
.review-main .article h1,
.review-main .product-hero h1 {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(3.1rem, 6vw, 5.25rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 11ch;
}
.review-page-hero-copy h1,
.review-main .product-hero h1 {
  font-size: clamp(2.7rem, 4.8vw, 4.3rem);
  max-width: 13ch;
}
.review-main .lede,
.review-main .muted {
  color: #556777;
}
.review-main .stats {
  gap: 14px;
}
.review-main .stat {
  min-width: 140px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 250, 0.95));
}
.review-hero-actions {
  margin-top: 4px;
}
.review-hero-side {
  display: grid;
  gap: 14px;
}
.review-main .article-media,
.review-main .article-hero-media,
.review-main .product-media,
.review-main .author-portrait,
.review-main .card-media {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(9, 33, 51, 0.03), rgba(9, 33, 51, 0.01));
}
.review-main .article-media img,
.review-main .article-hero-media img,
.review-main .product-media img,
.review-main .author-portrait img,
.review-main .card-media img {
  display: block;
  width: 100%;
}
.review-highlight-stack {
  display: grid;
  gap: 12px;
}
.review-highlight-card {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(10, 39, 62, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 244, 249, 0.9));
  box-shadow: 0 16px 28px rgba(7, 24, 37, 0.06);
}
.review-highlight-card strong {
  display: block;
  margin-bottom: 6px;
  color: #0d2d46;
}
.review-highlight-card p {
  margin: 0;
  color: #576979;
  line-height: 1.55;
}
.review-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 12px;
}
.review-section-head > div {
  display: grid;
  gap: 4px;
}
.review-section-head p {
  max-width: 42rem;
  margin: 0;
}
.review-main .section h2,
.review-main .article h2,
.review-main .route-note h2,
.review-main .rail-card h2,
.review-main .guide-card h2,
.review-main .answer-box h2,
.review-main .article-toc h2,
.review-main .article-table-block h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  letter-spacing: -0.03em;
}
.review-main .section h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.55rem);
}
.review-shell .card,
.review-shell .post-card,
.review-shell .product-card,
.review-shell .route-note,
.review-shell .stat,
.review-shell .guide-card,
.review-shell .rail-card,
.review-shell .answer-box,
.review-shell .article-toc,
.review-shell .author-card,
.review-shell .article-table-block,
.review-shell .faq-item,
.review-shell .article-meta-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 251, 0.95));
}
.review-shell .card,
.review-shell .post-card,
.review-shell .product-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.review-shell .card:hover,
.review-shell .post-card:hover,
.review-shell .product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 48px rgba(8, 31, 48, 0.12);
  text-decoration: none;
}
.review-shell .micro-copy {
  color: #4b7090;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.review-shell .pill {
  border-color: rgba(13, 64, 104, 0.12);
  background: rgba(13, 64, 104, 0.06);
  color: #234866;
}
.review-shell .archive-grid,
.review-shell .card-grid {
  gap: 18px;
}
.review-shell .product-card h3,
.review-shell .post-card h3,
.review-shell .card strong {
  color: #102133;
}
.review-shell .post-card h3,
.review-shell .product-card h3 {
  font-size: 1.12rem;
  line-height: 1.28;
}
.review-shell .article-shell {
  max-width: 1450px;
  margin: 0 auto;
}
.review-shell .article-guide-rail,
.review-shell .article-rail {
  top: 118px;
}
.review-shell .guide-card,
.review-shell .rail-card {
  border-radius: 24px;
}
.review-shell .guide-card-header,
.review-shell .rail-card-header {
  background: linear-gradient(135deg, #0d2f4c, #0b3f67 68%, #1d6a8d);
}
.review-shell .article-result-strip {
  max-width: 1450px;
  margin: 24px auto 0;
  box-shadow: 0 22px 42px rgba(7, 24, 37, 0.16);
}
.author-profile-page {
  max-width: 1200px;
}
.author-profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  gap: 24px;
  align-items: start;
}
.author-profile-copy {
  display: grid;
  gap: 12px;
}
.author-profile-copy h1 {
  max-width: 12ch;
}
.author-profile-media {
  display: grid;
}
.review-footer {
  padding-bottom: 34px;
}
.review-footer-shell {
  border-radius: 34px 34px 0 0;
  background: linear-gradient(180deg, #081521, #10293d 68%);
  box-shadow: 0 32px 54px rgba(6, 18, 29, 0.22);
  padding: 32px 28px 36px;
  color: #eef4f8;
}
.review-footer-lead {
  display: grid;
  gap: 10px;
  max-width: 52rem;
  margin-bottom: 24px;
}
.review-footer-kicker {
  color: #8fc3e2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.review-footer-lead h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}
.review-footer-lead p {
  margin: 0;
  color: #cedae3;
  line-height: 1.65;
}
.review-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr 1fr;
  gap: 18px;
}
.review-footer-grid h3 {
  margin: 0 0 12px;
  font-family: "Avenir Next", "Franklin Gothic Medium", "Segoe UI", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.review-footer-grid p {
  margin: 0;
  color: #cdd8e2;
  line-height: 1.6;
}
.review-footer-links {
  display: grid;
  gap: 9px;
}
.review-footer-links a {
  color: #ecf4f8;
  text-decoration: none;
}
.review-footer-links a:hover {
  text-decoration: underline;
}
@media (max-width: 1180px) {
  .article-shell {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  }
  .article-guide-rail {
    display: none;
  }
  .review-topbar,
  .review-home-hero,
  .review-page-hero,
  .author-profile-hero,
  .review-footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 880px) {
  .topbar {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .search input { width: 100%; }
  main { padding: 18px 18px 42px; }
  .hero { padding: 22px; }
  .split,
  .article-shell,
  .author-card { grid-template-columns: 1fr; }
  .article-meta-grid { grid-template-columns: 1fr; }
  .article-guide-rail,
  .article-rail { position: static; }
  .article-toc ol { columns: 1; }
  .field-grid { grid-template-columns: 1fr; }
  .article-table {
    min-width: 100%;
    display: block;
  }
  .review-utility-row,
  .review-topbar,
  .review-main,
  .review-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  .review-topbar {
    padding-top: 18px;
    padding-bottom: 16px;
  }
  .review-search-row,
  .review-section-head {
    display: grid;
  }
  .review-home-hero,
  .review-page-hero,
  .author-profile-hero {
    grid-template-columns: 1fr;
  }
  .review-main .hero,
  .review-main .page-hero,
  .review-main .product-hero,
  .review-main .article {
    padding: 22px;
  }
  .review-hero-copy h1,
  .review-page-hero-copy h1,
  .review-main .article h1,
  .review-main .product-hero h1 {
    font-size: clamp(2.5rem, 9vw, 3.5rem);
    max-width: none;
  }
}
