:root {
  --wine: #b22a1d;
  --wine-dark: #7d1b13;
  --ink: #181716;
  --muted: #66605d;
  --soft: #f7f5f3;
  --line: #e5dfdb;
  --sand: #efe8e3;
}

html { scroll-behavior: smooth; }
body { background: #fff; color: var(--ink); }
.header { z-index: 50; }
.menuBtn { border: 0; background: transparent; cursor: pointer; }

.articleHero {
  margin-top: 65px;
  padding: 68px 0 58px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f1ee 0%, #fff 58%, #efe2dc 100%);
}
.articleHero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .86fr);
  gap: 54px;
  align-items: center;
}
.articleHero__copy { max-width: 700px; }
.eyebrow {
  margin-bottom: 16px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.articleHero h1 {
  margin: 0 0 24px;
  font-size: clamp(39px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.articleHero p { margin: 0; color: #4c4744; font-size: 18px; line-height: 1.7; }
.articleHero figure { position: relative; margin: 0; }
.articleHero figure::before {
  content: "";
  position: absolute;
  inset: -18px 22px 18px -18px;
  border: 1px solid rgba(178, 42, 29, .27);
  border-radius: 24px;
}
.articleHero img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 55px rgba(55, 31, 24, .18);
}

.quickGuide { padding: 22px 0; background: #171717; color: #fff; }
.quickGuide .pageWidth { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.quickGuide span { display: block; margin-bottom: 5px; color: #d9b8b0; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.quickGuide strong { font-size: 16px; }
.articleBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--wine);
  color: #fff !important;
  font-weight: 700;
  white-space: nowrap;
  transition: .2s ease;
}
.articleBtn:hover { background: var(--wine-dark); text-decoration: none; transform: translateY(-1px); }

.articleLayout {
  display: grid;
  grid-template-columns: 250px minmax(0, 820px);
  gap: 60px;
  justify-content: center;
  padding-top: 64px;
  padding-bottom: 80px;
}
.articleToc {
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--wine);
  font-size: 13px;
}
.articleToc strong { display: block; margin-bottom: 16px; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; }
.articleToc ol { margin: 0; padding: 0; list-style: none; counter-reset: toc; }
.articleToc li { float: none; display: flex; gap: 8px; margin: 0 0 11px; line-height: 1.35; }
.articleToc li::before { counter-increment: toc; content: counter(toc, decimal-leading-zero); padding-top: 2px; color: #aaa; font-size: 11px; }
.articleToc a { color: #403b39; }
.articleToc a:hover { color: var(--wine); }

.articleContent { min-width: 0; }
.articleIntro p:first-child { color: #333; font-size: 20px; line-height: 1.75; }
.articleSection { display: flow-root; padding: 8px 0 34px; scroll-margin-top: 88px; }
.articleSection h2 {
  margin: 42px 0 24px;
  color: #1b1918;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -.025em;
}
.articleSection h2::after { content: ""; display: block; width: 54px; height: 3px; margin-top: 16px; background: var(--wine); }
.articleSection h3 { margin: 30px 0 12px; color: #292522; font-size: 23px; line-height: 1.3; }
.articleSection p, .articleIntro p { float: none; margin: 0 0 20px; padding: 0; color: #383432; line-height: 1.82; }
.articleSection a, .articleIntro a { color: var(--wine); text-decoration: underline; text-underline-offset: 3px; }
.sectionVisual { margin: 4px 0 30px; }
.sectionVisual img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 16px; }
.sectionVisual--wide img { aspect-ratio: 16 / 9; }

.insight {
  margin: 30px 0 38px;
  padding: 30px 34px;
  border-radius: 14px;
  background: linear-gradient(135deg, #201b19, #332522);
  color: #fff;
  box-shadow: 0 14px 34px rgba(38, 23, 19, .12);
}
.insight__label { margin-bottom: 12px; color: #efb7aa; font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.insight p { margin: 0 !important; color: #f5f0ed !important; line-height: 1.75 !important; }

.cityGrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin: 28px 0 34px; }
.cityCard { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 9px 30px rgba(35, 24, 19, .06); }
.cityCard:first-child { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(300px, .9fr) 1fr; }
.cityCard img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.cityCard:first-child img { height: 100%; min-height: 300px; }
.cityCard__body { padding: 24px 25px; }
.cityCard h3 { margin: 0 0 12px; font-size: 24px; }
.cityCard p { margin: 0; font-size: 15.5px; line-height: 1.72; }

.finalStatement { margin-top: 28px; padding: 30px 34px; border-radius: 16px; background: var(--sand); }
.finalStatement p { margin-bottom: 15px; }
.finalStatement p:last-child { margin-bottom: 0; color: var(--wine); font-size: 19px; font-weight: 800; }

.relatedGuides { margin-top: 34px; padding: 42px 0 20px; border-top: 1px solid var(--line); }
.relatedGuides h2 { margin: 0 0 24px; font-size: 32px; }
.relatedGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.relatedGrid a { display: flex; flex-direction: column; gap: 10px; padding: 22px; border-radius: 12px; background: var(--soft); color: #222; transition: .2s ease; }
.relatedGrid a:hover { background: #f0e8e4; text-decoration: none; transform: translateY(-2px); }
.relatedGrid strong { font-size: 17px; }
.relatedGrid span { color: var(--muted); font-size: 14px; line-height: 1.55; }

.articleMembers { margin: 0; }
.articleCta { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.articleCta h2 { max-width: 730px; font-size: 34px; }
.articleBtn--light { background: #fff; color: var(--wine) !important; }
.articleBtn--light:hover { background: #f4e8e5; }
.footer .footLinks dl:first-child { padding-right: 44px; }
.footer .footLinks dl dd { float: none; }
.footer .footLinks dl a { color: #333; }

@media (max-width: 980px) {
  .articleHero__grid { grid-template-columns: 1fr; gap: 38px; }
  .articleHero__copy { max-width: none; }
  .articleHero figure { max-width: 720px; }
  .articleLayout { grid-template-columns: 1fr; gap: 20px; }
  .articleToc { position: static; padding: 22px 24px; border: 1px solid var(--line); border-left: 3px solid var(--wine); }
  .articleToc ol { columns: 2; }
}

@media (max-width: 768px) {
  .articleHero { padding: 40px 0 34px; }
  .articleHero h1 { font-size: 39px; }
  .articleHero p { font-size: 16px; }
  .articleHero figure::before { display: none; }
  .quickGuide .pageWidth { align-items: flex-start; flex-direction: column; }
  .articleLayout { padding-top: 38px; padding-bottom: 55px; }
  .articleToc ol { columns: 1; }
  .articleSection h2 { margin-top: 28px; font-size: 30px; }
  .articleSection h3 { font-size: 21px; }
  .cityGrid { grid-template-columns: 1fr; }
  .cityCard:first-child { grid-column: auto; display: block; }
  .cityCard:first-child img { height: auto; min-height: 0; }
  .relatedGrid { grid-template-columns: 1fr; }
  .articleCta { align-items: flex-start; flex-direction: column; }
  .articleCta h2 { font-size: 28px; }
  .footer .footLinks dl { width: 100%; padding: 0 0 25px !important; }
}

@media (max-width: 420px) {
  .articleHero h1 { font-size: 34px; }
  .articleIntro p:first-child { font-size: 18px; }
  .articleSection h2 { font-size: 28px; }
  .quickGuide strong { line-height: 1.5; }
  .insight, .finalStatement { padding: 25px; }
  .relatedGuides h2 { font-size: 27px; }
}
