@font-face {
  font-family: "Figtree";
  src: url("../fonts/cd749a02-dc18-4eac-9936-4d5a58c9be99.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --red: #d8232a;
  --red-dark: #a81820;
  --red-light: #ff7c82;
  --red-soft: #fdf3f3;
  --jade: #0e7c6e;
  --jade-dark: #075d53;
  --jade-soft: #e1f0ed;
  --gold-text: #835700;
  --ink: #111;
  --body: #333;
  --muted: #666;
  --line: #dedede;
  --soft: #f7f7f7;
  --paper: #fff;
  --container: 1280px;
  --shadow: 0 2px 12px rgb(17 17 17 / 8%);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--body);
  font: 400 16px/1.6 "Figtree", "Noto Sans SC", sans-serif;
}

body,
button {
  font-family: inherit;
}

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

a {
  color: inherit;
}

a,
button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.section--ink :focus-visible,
.food-section :focus-visible,
.trust-section :focus-visible,
.site-footer :focus-visible {
  outline-color: #fff;
}

.related-guides {
  background: var(--soft);
}

.related-guides__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 80px;
  align-items: end;
  padding-top: 24px;
  border-top: 4px solid var(--ink);
}

.related-guides__heading h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 68px);
}

.related-guides__intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.related-guides__intro p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.related-guides__intro span {
  padding: 8px 10px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.related-card {
  display: flex;
  min-width: 0;
  grid-column: span 1;
  flex-direction: column;
  border-bottom: 3px solid var(--ink);
  background: var(--paper);
  color: inherit;
  text-decoration: none;
}

.related-card--lead {
  grid-column: span 2;
}

.related-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--line);
}

.related-card--lead .related-card__media {
  aspect-ratio: 16 / 9;
}

.related-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.related-card:hover .related-card__media > img {
  transform: scale(1.025);
}

.related-card__media > span {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.related-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 24px 22px;
}

.related-card h3 {
  margin-bottom: 0;
  font-size: 25px;
  line-height: 1.12;
}

.related-card--lead h3 {
  max-width: 690px;
  font-size: clamp(30px, 3vw, 43px);
}

.related-card__task {
  margin: 0 0 14px;
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.related-card__deck {
  margin: 16px 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.related-card--lead .related-card__deck {
  max-width: 700px;
  font-size: 16px;
}

.related-card__meta {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.related-card__meta img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
}

.related-card__meta span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.related-card__meta strong {
  color: var(--ink);
  font-size: 12px;
}

.related-card__meta b {
  display: inline-flex;
  min-height: 44px;
  gap: 7px;
  align-items: center;
  color: var(--ink);
  font-size: 12px;
  white-space: nowrap;
}

.related-card:hover .related-card__meta b {
  color: var(--red-dark);
}

.related-card__meta i {
  color: var(--red);
  font-size: 17px;
  font-style: normal;
}

.related-guides__trust {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin-top: 34px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink);
}

.related-guides__trust strong {
  color: var(--ink);
  font-size: 13px;
}

.related-guides__trust p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.container {
  width: min(var(--container), calc(100% - 80px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-180%);
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 16px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: var(--red);
  content: "";
}

.eyebrow--inverse {
  color: #fff;
}

.eyebrow--inverse::before {
  background: var(--red-light);
}

.utility {
  min-height: 34px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.utility__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 34px;
}

.masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 90px;
}

.wordmark {
  display: flex;
  min-height: 44px;
  flex-direction: column;
  justify-content: center;
  color: var(--red);
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: .9;
  text-align: center;
  text-decoration: none;
}

.wordmark small {
  display: block;
  margin-top: 9px;
  color: var(--ink);
  font-size: 9px;
  letter-spacing: .17em;
}

.menu-button {
  display: none;
  width: max-content;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.search-link {
  display: flex;
  justify-self: end;
  min-width: 180px;
  min-height: 44px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.search-link:hover {
  border-color: var(--red);
  color: var(--red-dark);
}

.primary-nav {
  border-block: 1px solid var(--line);
  box-shadow: 0 3px 10px rgb(17 17 17 / 4%);
}

.primary-nav__inner {
  display: flex;
  gap: 30px;
  min-height: 56px;
  overflow-x: auto;
}

.primary-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 56px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--red-dark);
}

.primary-nav a.is-active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  background: var(--red);
  content: "";
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 54px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--body);
  text-underline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--ink);
}

.hero > img,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgb(17 17 17 / 94%) 0%, rgb(17 17 17 / 62%) 53%, rgb(17 17 17 / 14%) 100%),
    linear-gradient(0deg, rgb(17 17 17 / 30%), transparent 45%);
}

.hero__content {
  position: relative;
  display: flex;
  min-height: 650px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 70px;
  color: #fff;
}

.hero__credit {
  position: absolute;
  right: max(20px, calc((100vw - var(--container)) / 2));
  bottom: 18px;
  z-index: 2;
  margin: 0;
  padding: 6px 9px;
  border-radius: 3px;
  background: rgb(0 0 0 / 58%);
  color: #fff;
  font-size: 11px;
  line-height: 1.3;
}

.hero h1 {
  max-width: 930px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(56px, 7.3vw, 100px);
  letter-spacing: -.05em;
  line-height: .94;
}

.hero__lead {
  max-width: 680px;
  margin: 0;
  color: #f3f3f3;
  font-size: 20px;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  margin-top: 32px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
}

.button--red {
  background: var(--red);
  color: #fff;
}

.button--red:hover {
  background: var(--red-dark);
}

.jump-nav {
  position: sticky;
  z-index: 12;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 97%);
}

.jump-nav__inner {
  display: flex;
  gap: 28px;
  align-items: center;
  min-height: 58px;
  overflow-x: auto;
}

.jump-nav span,
.jump-nav a {
  white-space: nowrap;
}

.jump-nav span {
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.jump-nav a {
  min-height: 44px;
  padding-block: 11px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.jump-nav a:hover {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section {
  padding-block: 96px;
  scroll-margin-top: 66px;
}

.section--soft {
  background: var(--soft);
}

.section--ink {
  background: var(--ink);
  color: #fff;
}

.section-heading {
  max-width: 880px;
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: 1.35fr .65fr;
  gap: 72px;
  align-items: end;
}

.section-heading h2,
.feature-intro h2,
.planning h2,
.gateways h2,
.faq-layout h2,
.trust-grid h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4.5vw, 58px);
}

.section-heading > p:last-child:not(.eyebrow),
.standfirst {
  color: var(--muted);
}

.standfirst {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
}

.editorial-note {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--body);
  font-size: 14px;
}

.district-navigator {
  margin-top: 54px;
  border-top: 3px solid var(--ink);
}

.district-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 156px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.district-card--primary {
  border-bottom-color: #c9c9c9;
}

.district-card__number {
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 800;
}

.district-card__cn {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
}

.district-card h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.district-card div > p:last-child {
  max-width: 700px;
  margin: 0;
}

.status-label {
  padding: 8px 10px;
  border: 1px solid var(--red);
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-label--neutral {
  border-color: #aaa;
  color: #555;
}

.module-actions {
  display: flex;
  gap: 28px;
  justify-content: flex-end;
  margin-top: 28px;
}

.module-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
  text-underline-offset: 4px;
}

.module-actions a:hover {
  color: var(--red-dark);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.decision-card {
  display: flex;
  min-height: 310px;
  min-width: 0;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.decision-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.decision-card > span {
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.decision-card h3 {
  margin: 56px 0 14px;
  font-size: 29px;
}

.decision-card p {
  margin: 0;
}

.decision-card b {
  margin-top: auto;
  padding-top: 26px;
  color: var(--ink);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 50px;
}

.story-grid article {
  min-width: 0;
}

.story-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-grid .photo-credit {
  display: block;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.story-grid__index {
  display: block;
  margin-top: 20px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
}

.story-grid h3 {
  margin: 8px 0 12px;
  font-size: 24px;
}

.story-grid p {
  margin: 0;
  color: var(--muted);
}

.food-section {
  background: var(--red-dark);
  color: #fff;
}

.feature-intro {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  gap: 72px;
  align-items: end;
}

.feature-intro h2 {
  color: #fff;
}

.feature-intro > p {
  margin: 0;
  color: #fff;
  font-size: 18px;
}

.meal-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border-block: 1px solid rgb(255 255 255 / 34%);
}

.meal-timeline article {
  position: relative;
  min-width: 0;
  padding: 28px 24px 32px 0;
}

.meal-timeline article + article {
  padding-left: 24px;
  border-left: 1px solid rgb(255 255 255 / 34%);
}

.meal-timeline time {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.meal-timeline h3 {
  margin: 40px 0 12px;
  color: #fff;
  font-size: 23px;
}

.meal-timeline p {
  margin: 0;
  color: #fff;
}

.route-strip {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
  padding: 22px 0;
  overflow-x: auto;
  border-bottom: 1px solid rgb(255 255 255 / 34%);
  white-space: nowrap;
}

.route-strip__label {
  margin-right: auto;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.route-strip i {
  width: 24px;
  height: 1px;
  background: var(--red-light);
}

.safety-callout {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  margin-top: 52px;
  padding: 32px;
  background: #fff;
  color: var(--body);
}

.safety-callout__mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red-dark);
  font-size: 28px;
  font-weight: 800;
}

.safety-callout h3 {
  margin-bottom: 10px;
  font-size: 27px;
}

.safety-callout p {
  max-width: 880px;
  margin: 0 0 10px;
}

.safety-callout small {
  color: var(--muted);
}

.lens-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 54px;
  border-block: 3px solid var(--ink);
}

.lens-grid article {
  min-width: 0;
  padding: 34px 32px 36px 0;
}

.lens-grid article + article {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.lens-grid span {
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
}

.lens-grid h3 {
  margin: 44px 0 12px;
  font-size: 28px;
}

.temple-decision {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  margin-top: 72px;
  background: var(--soft);
}

.temple-decision__image img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
}

.temple-decision__content {
  padding: 52px;
}

.temple-decision__content > h3 {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: clamp(36px, 4vw, 54px);
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.choice-grid article {
  padding: 24px;
  border-top: 3px solid var(--ink);
  background: #fff;
}

.choice-grid article > span {
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 800;
}

.choice-grid h4 {
  margin: 32px 0 10px;
  font-size: 23px;
}

.choice-grid p {
  margin: 0;
}

.status-panel {
  margin-top: 26px;
  padding: 34px;
  border: 1px solid var(--line);
}

.status-panel__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, .6fr);
  gap: 54px;
  align-items: start;
}

.status-panel__heading h3 {
  margin: 0;
  font-size: 30px;
}

.status-panel__heading div > p:last-child {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.status-panel__scope {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 2px 0 0;
  padding: 15px 0 15px 18px;
  border-left: 3px solid var(--jade);
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.status-panel__scope strong {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 32px;
  border-block: 1px solid var(--line);
}

.status-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  min-width: 0;
  padding: 24px 18px 22px 0;
}

.status-card + .status-card {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.status-card__topline {
  display: flex;
  min-height: 26px;
  gap: 9px;
  align-items: center;
}

.status-marker {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.status-card--current .status-marker {
  border-color: var(--jade-dark);
  background: var(--jade);
}

.status-card--stale .status-marker {
  border-color: var(--gold-text);
  background: #f4c653;
}

.status-card--expired .status-marker,
.status-card--missing .status-marker {
  border-color: var(--red);
  background: var(--red-soft);
}

.status-badge {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.status-card--current .status-badge {
  color: var(--jade-dark);
}

.status-card--stale .status-badge {
  color: var(--gold-text);
}

.status-card--expired .status-badge,
.status-card--missing .status-badge {
  color: var(--red-dark);
}

.status-card h4 {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.status-card > p {
  margin: 10px 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.status-card dl {
  display: grid;
  gap: 5px;
  margin: auto 0 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.status-card dl div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 8px;
}

.status-card dt,
.status-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.status-card dt {
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.status-card a {
  display: inline-flex;
  min-height: 44px;
  gap: 7px;
  align-items: center;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration-color: var(--red);
  text-underline-offset: 4px;
}

.status-card a:hover {
  color: var(--red-dark);
}

.status-card small {
  color: var(--muted);
  font-size: 9px;
  overflow-wrap: anywhere;
}

.status-panel details {
  margin-top: 24px;
}

.status-panel summary {
  min-height: 44px;
  padding-block: 10px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.status-panel details p {
  max-width: 850px;
  margin-bottom: 0;
}

.section--ink .section-heading h2,
.section--ink .section-heading > p:last-child {
  color: #fff;
}

.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.itinerary-grid article {
  min-width: 0;
  padding: 30px;
  border: 1px solid #555;
}

.itinerary-grid__number {
  color: var(--red-light);
  font-size: 42px;
  font-weight: 800;
}

.itinerary-grid__duration {
  margin: 40px 0 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.itinerary-grid h3 {
  min-height: 86px;
  margin-bottom: 24px;
  color: #fff;
  font-size: 28px;
}

.itinerary-grid ol {
  margin: 0;
  padding: 0;
  color: #eee;
  list-style: none;
}

.itinerary-grid li {
  padding: 13px 0;
  border-top: 1px solid #444;
}

.itinerary-grid strong {
  display: block;
  color: #fff;
}

.itinerary-note {
  max-width: 780px;
  margin: 34px 0 0;
  color: #ccc;
  font-size: 13px;
}

.planning {
  background: var(--red-soft);
}

.planning__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 84px;
  align-items: start;
}

.planning h2 {
  margin-bottom: 22px;
}

.planning-links {
  border-top: 3px solid var(--ink);
}

.planning-links > * {
  display: grid;
  grid-template-columns: 130px 1fr 1fr;
  gap: 22px;
  align-items: center;
  min-height: 132px;
  padding: 22px 0;
  border-bottom: 1px solid #cfc5c5;
}

.planning-links a {
  text-decoration: none;
}

.planning-links a:hover strong {
  color: var(--red-dark);
}

.planning-links span {
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.planning-links strong {
  color: var(--ink);
  font-size: 23px;
}

.planning-links small {
  color: var(--muted);
  font-size: 13px;
}

.planning-links__disabled {
  opacity: .76;
}

.essentials {
  background: var(--jade-soft);
}

.essentials__intro {
  max-width: 800px;
}

.essentials__intro h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4.5vw, 58px);
}

.essentials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 50px;
  border-block: 3px solid var(--jade-dark);
}

.essentials-grid article {
  min-width: 0;
  padding: 30px 24px 30px 0;
}

.essentials-grid article + article {
  padding-left: 24px;
  border-left: 1px solid rgb(7 93 83 / 35%);
}

.essentials-grid span {
  color: var(--jade-dark);
  font-size: 12px;
  font-weight: 800;
}

.essentials-grid h3 {
  margin: 38px 0 10px;
  font-size: 24px;
}

.essentials-grid p {
  margin: 0;
}

.help-strip {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, .7fr) 1.5fr;
  margin-top: 44px;
  border-top: 1px solid rgb(7 93 83 / 35%);
  border-bottom: 1px solid rgb(7 93 83 / 35%);
}

.help-strip > * {
  min-width: 0;
  padding: 20px 16px;
}

.help-strip > *:first-child {
  padding-left: 0;
}

.help-strip > * + * {
  border-left: 1px solid rgb(7 93 83 / 35%);
}

.help-strip > p {
  margin: 0;
  color: var(--jade-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.help-strip a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.help-strip a:hover strong {
  color: var(--red-dark);
}

.help-strip strong {
  color: var(--ink);
  font-size: 21px;
}

.help-strip span {
  color: var(--muted);
  font-size: 12px;
}

.help-strip__note {
  color: var(--body) !important;
  font-size: 12px !important;
}

.checked-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.gateway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.gateway-grid article {
  min-width: 0;
  padding-top: 30px;
  border-top: 3px solid var(--ink);
}

.gateway-grid h2 {
  margin-bottom: 20px;
}

.gateway-grid ul {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.gateway-grid li {
  border-bottom: 1px solid var(--line);
}

.gateway-grid li a {
  display: block;
  min-height: 48px;
  padding: 12px 0;
  font-weight: 800;
  text-underline-offset: 4px;
}

.gateway-grid li a:hover {
  color: var(--red-dark);
}

.gateway-grid dl {
  margin: 34px 0 0;
}

.gateway-grid dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.gateway-grid dt {
  color: var(--ink);
  font-weight: 800;
}

.gateway-grid dd {
  margin: 0;
}

.faq-section {
  background: var(--soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
}

.faq-list {
  border-top: 3px solid var(--ink);
}

.faq-list article {
  border-bottom: 1px solid var(--line);
}

.faq-list button {
  display: flex;
  width: 100%;
  min-height: 70px;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 15px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 19px;
  font-weight: 800;
  text-align: left;
}

.faq-list button:hover {
  color: var(--red-dark);
}

.faq-list button span:last-child {
  font-size: 25px;
}

.faq-list article > div {
  max-width: 760px;
  padding: 0 42px 22px 0;
}

.faq-list article > div p {
  margin: 0;
}

.trust-section {
  background: var(--ink);
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 90px;
}

.trust-grid h2 {
  color: #fff;
}

.trust-grid > div > p:last-child {
  max-width: 760px;
  color: #ddd;
}

.trust-grid dl {
  margin: 0;
  border-top: 1px solid #555;
}

.trust-grid dl div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #444;
}

.trust-grid dt {
  color: #bbb;
}

.trust-grid dd {
  margin: 0;
  color: #fff;
}

.prototype-disclosure {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  margin-top: 62px;
  padding-top: 24px;
  border-top: 3px solid var(--red);
}

.prototype-disclosure strong {
  color: var(--red-light);
  text-transform: uppercase;
}

.prototype-disclosure p {
  margin: 0;
}

.site-footer {
  padding-block: 64px 28px;
  background: #050505;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
}

.footer-wordmark {
  color: var(--red-light);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.03em;
  text-decoration: none;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-grid div a {
  display: block;
  min-height: 38px;
  padding-block: 6px;
  color: #ddd;
  text-decoration: none;
}

.footer-grid div a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid #333;
  color: #aaa;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 46px;
  }

  .status-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .status-card:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }

  .status-card:nth-child(n+4) {
    border-top: 1px solid var(--line);
  }

  .help-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .help-strip > p,
  .help-strip__note {
    grid-column: 1 / -1;
    border-left: 0 !important;
  }

  .help-strip > a:nth-of-type(1) {
    border-left: 0;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(var(--container), calc(100% - 40px));
  }

  .utility__inner span:first-child {
    display: none;
  }

  .utility__inner {
    justify-content: flex-end;
  }

  .masthead {
    grid-template-columns: 1fr auto 1fr;
    min-height: 74px;
  }

  .menu-button {
    display: block;
  }

  .search-link {
    min-width: 44px;
  }

  .primary-nav {
    display: none;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav__inner {
    min-height: auto;
    flex-direction: column;
    gap: 0;
    padding-block: 8px;
    overflow: visible;
  }

  .primary-nav a {
    min-height: 48px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a.is-active::after {
    width: 4px;
    height: auto;
    top: 8px;
    bottom: 8px;
    left: auto;
  }

  .hero,
  .hero__content {
    min-height: 580px;
  }

  .hero h1 {
    font-size: clamp(48px, 11vw, 74px);
  }

  .section {
    padding-block: 72px;
  }

  .section-heading--split,
  .feature-intro,
  .planning__grid,
  .faq-layout,
  .trust-grid,
  .related-guides__heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .related-card--lead {
    grid-column: 1 / -1;
  }

  .district-card {
    grid-template-columns: 52px 1fr;
  }

  .district-card .status-label {
    grid-column: 2;
    justify-self: start;
  }

  .decision-grid,
  .lens-grid,
  .itinerary-grid {
    grid-template-columns: 1fr;
  }

  .decision-card {
    min-height: 250px;
  }

  .meal-timeline,
  .essentials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .meal-timeline article:nth-child(3),
  .essentials-grid article:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid currentColor;
    border-left: 0;
  }

  .meal-timeline article:nth-child(4),
  .essentials-grid article:nth-child(4) {
    border-top: 1px solid currentColor;
  }

  .temple-decision {
    grid-template-columns: 1fr;
  }

  .temple-decision__image img {
    min-height: 380px;
  }

  .gateway-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-wordmark {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 36px));
  }

  .wordmark {
    font-size: 22px;
  }

  .wordmark small {
    font-size: 7px;
  }

  .search-link {
    font-size: 12px;
    text-align: right;
  }

  .breadcrumbs {
    overflow: hidden;
  }

  .hero,
  .hero__content {
    min-height: 590px;
  }

  .hero__veil {
    background: linear-gradient(90deg, rgb(17 17 17 / 92%), rgb(17 17 17 / 55%));
  }

  .hero h1 {
    font-size: 47px;
  }

  .hero__lead {
    font-size: 17px;
  }

  .jump-nav__inner {
    gap: 22px;
  }

  .section {
    padding-block: 60px;
  }

  .section-heading h2,
  .feature-intro h2,
  .planning h2,
  .gateways h2,
  .faq-layout h2,
  .trust-grid h2,
  .essentials__intro h2,
  .related-guides__heading h2 {
    font-size: 37px;
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 38px;
  }

  .related-card,
  .related-card--lead {
    grid-column: 1;
  }

  .related-card__media,
  .related-card--lead .related-card__media {
    aspect-ratio: 4 / 3;
  }

  .related-card__body {
    padding: 24px 20px 20px;
  }

  .related-card__meta {
    grid-template-columns: 36px 1fr;
  }

  .related-card__meta b {
    grid-column: 1 / -1;
    min-height: 44px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .related-guides__trust {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .district-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 24px;
  }

  .district-card .status-label {
    grid-column: 1;
  }

  .district-card h3 {
    font-size: 25px;
  }

  .module-actions {
    flex-direction: column;
    gap: 12px;
  }

  .decision-card {
    padding: 24px;
  }

  .story-grid,
  .meal-timeline,
  .essentials-grid,
  .choice-grid,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    gap: 38px;
  }

  .meal-timeline article,
  .meal-timeline article + article,
  .essentials-grid article,
  .essentials-grid article + article {
    padding: 25px 0;
    border-top: 1px solid rgb(255 255 255 / 34%);
    border-left: 0;
  }

  .meal-timeline article:first-child,
  .essentials-grid article:first-child {
    border-top: 0;
  }

  .route-strip__label {
    margin-right: 18px;
  }

  .safety-callout {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .lens-grid article,
  .lens-grid article + article {
    padding: 26px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .lens-grid article:first-child {
    border-top: 0;
  }

  .lens-grid h3 {
    margin-top: 24px;
  }

  .temple-decision__image img {
    min-height: 270px;
  }

  .temple-decision__content {
    padding: 28px 22px;
  }

  .temple-decision__content > h3 {
    font-size: 35px;
  }

  .status-panel {
    padding: 24px 20px;
  }

  .status-panel__heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .status-card,
  .status-card + .status-card,
  .status-card:nth-child(4) {
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .status-card:first-child {
    border-top: 0;
  }

  .itinerary-grid h3 {
    min-height: 0;
  }

  .planning-links > * {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .help-strip {
    grid-template-columns: 1fr 1fr;
  }

  .help-strip > p,
  .help-strip__note {
    grid-column: 1 / -1;
  }

  .help-strip > a:nth-of-type(3) {
    border-left: 0;
  }

  .gateway-grid dl div,
  .trust-grid dl div,
  .prototype-disclosure {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-wordmark {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
