:root {
  color-scheme: dark;
  --ink: #0a0a0a;
  --ink-soft: #121314;
  --paper: #f5f1e8;
  --paper-soft: #ded9ce;
  --muted: #aaa8a3;
  --muted-strong: #cbc7be;
  --line: rgba(245, 241, 232, 0.2);
  --line-strong: rgba(245, 241, 232, 0.42);
  --vermilion: #ff2a12;
  --vermilion-dark: #c91c0b;
  --map: #344154;
  --map-soft: #202a38;
  --focus: #ffb2a8;
  --display: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, serif;
  --ui: "Avenir Next Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --content: 92rem;
  --header-height: 4.75rem;
  --shadow-phone: 0 2rem 6rem rgba(0, 0, 0, 0.55);
}

:root[data-theme="light"] {
  color-scheme: light;
  --ink: #f7f4ed;
  --ink-soft: #efebe2;
  --paper: #111111;
  --paper-soft: #2d2b28;
  --muted: #625f59;
  --muted-strong: #3a3834;
  --line: rgba(17, 17, 17, 0.18);
  --line-strong: rgba(17, 17, 17, 0.38);
  --map: #aab5c5;
  --map-soft: #d8dee6;
  --focus: #951506;
  --vermilion: #a61908;
  --vermilion-dark: #a61908;
  --shadow-phone: 0 2rem 6rem rgba(27, 22, 16, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  background: var(--ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(52, 65, 84, 0.18), transparent 34rem),
    var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.62;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
}

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

button,
select,
input,
textarea {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-color: var(--vermilion);
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--vermilion);
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 999;
  transform: translateY(-200%);
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ui);
  font-weight: 700;
}

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

[dir="rtl"] :is(
  .quiet-button,
  .locale-menu > summary,
  .icon-button,
  .section-label,
  .data-line,
  .route-facts strong,
  .scan-example small
) {
  letter-spacing: normal;
  text-transform: none;
}

[dir="rtl"] .data-line {
  font-family: var(--body);
  font-weight: 600;
}

[lang="hi"] .display-title {
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

[lang="ru"] .primary-nav {
  gap: clamp(0.75rem, 1.2vw, 1.25rem);
  font-size: 0.84rem;
}

[lang="ru"] .primary-nav a {
  white-space: nowrap;
}

.shell {
  width: min(100%, var(--content));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--ink) 90%, transparent);
  backdrop-filter: blur(18px) saturate(150%);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 1.5rem;
  padding-inline: clamp(1rem, 2vw, 2rem);
}

.site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.7rem;
  color: var(--paper);
  font-family: var(--ui);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.site-brand img {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 0.72rem;
  box-shadow: 0 0.7rem 1.8rem rgba(0, 0, 0, 0.28);
}

.primary-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  font-family: var(--ui);
  font-size: 0.91rem;
  font-weight: 650;
  letter-spacing: 0.015em;
}

.primary-nav a,
.footer-links a {
  text-decoration: none;
}

.primary-nav a {
  white-space: nowrap;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.75rem;
}

.quiet-button,
.icon-button {
  min-height: 2.75rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-family: var(--ui);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quiet-button {
  padding: 0.65rem 1rem;
}

.header-availability,
.theme-toggle,
.locale-menu > summary,
.menu-toggle {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--ink-soft);
  color: var(--paper);
  cursor: pointer;
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1;
  list-style: none;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.header-availability {
  max-width: 16rem;
  padding-inline: 1rem;
  border-color: var(--vermilion);
  background: var(--vermilion);
  color: #fff8f3;
  letter-spacing: 0.05em;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-availability:hover {
  border-color: var(--paper);
  background: var(--vermilion-dark);
  color: #fff;
}

.theme-toggle__icon {
  color: var(--vermilion);
  font-size: 1rem;
}

.locale-menu {
  position: relative;
}

.locale-menu > summary {
  min-width: 7.5rem;
}

.locale-menu > summary::-webkit-details-marker {
  display: none;
}

.locale-menu__flag {
  display: inline-grid;
  width: 1.35rem;
  flex: 0 0 auto;
  place-items: center;
  font-size: 1.05rem;
  line-height: 1;
}

.locale-menu__current {
  white-space: nowrap;
}

.locale-menu__chevron {
  color: var(--muted);
}

.locale-menu[open] > summary,
.theme-toggle:hover,
.quiet-button:hover {
  border-color: var(--vermilion);
  color: var(--vermilion);
}

.locale-menu[open] > summary {
  background: color-mix(in srgb, var(--ink-soft) 72%, var(--vermilion) 28%);
}

.locale-list {
  position: absolute;
  z-index: 120;
  top: calc(100% + 0.75rem);
  inset-inline-end: 0;
  display: grid;
  width: max-content;
  min-width: 28rem;
  max-width: min(36rem, calc(100vw - 2rem));
  max-height: min(68vh, 36rem);
  grid-template-columns: repeat(2, minmax(12rem, 1fr));
  gap: 0.2rem;
  overflow: auto;
  padding: 0.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--ink-soft);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.35);
}

.locale-list a {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.75rem;
  border-radius: 2px;
  font-family: var(--ui);
  text-decoration: none;
  white-space: nowrap;
}

.locale-list a:hover,
.locale-list a[aria-current="page"] {
  background: color-mix(in srgb, var(--ink-soft) 72%, var(--vermilion) 28%);
  color: var(--vermilion);
}

.menu-toggle,
.mobile-nav,
.mobile-controls {
  display: none;
}

.section {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.editorial-index {
  color: var(--vermilion);
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 0.9;
}

.section-label {
  margin: 0;
  color: var(--vermilion);
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.display-title,
.section-title,
.article-title,
.legal-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.display-title {
  max-width: 12ch;
  font-size: clamp(3.7rem, 6.8vw, 7.75rem);
}

.section-title {
  max-width: 17ch;
  font-size: clamp(3rem, 5.4vw, 6.5rem);
}

.section-lede {
  max-width: 43rem;
  margin: 1.4rem 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  padding-block: clamp(3rem, 8vw, 7.5rem) 2rem;
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  inset: 6% -8% auto 46%;
  height: 70%;
  opacity: 0.48;
  background:
    linear-gradient(27deg, transparent 47%, var(--map) 47.4%, var(--map) 48%, transparent 48.4%),
    linear-gradient(-13deg, transparent 48%, var(--map-soft) 48.4%, var(--map-soft) 49%, transparent 49.4%);
  background-size: 7rem 5rem, 5rem 6rem;
  mask-image: radial-gradient(ellipse, #000, transparent 74%);
}

.hero::after {
  top: 22%;
  right: -2%;
  width: 54%;
  height: 2px;
  transform: rotate(-7deg);
  background: var(--vermilion);
  box-shadow: 9rem 4.2rem 0 -0.5px var(--vermilion), 18rem -2rem 0 -0.5px var(--vermilion);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(30rem, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
}

.hero-copy {
  min-width: 0;
  padding-block: 1.5rem;
}

.hero-copy > p {
  max-width: 38rem;
  margin: 1.6rem 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.8rem;
  margin-top: 2rem;
}

.primary-cta {
  display: inline-flex;
  max-width: 100%;
  min-width: 0;
  min-height: 3.6rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--vermilion-dark);
  border-radius: 2px;
  background: var(--vermilion-dark);
  color: #fff;
  font-family: var(--ui);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}

.primary-cta:hover {
  background: transparent;
  color: var(--vermilion);
}

.final-cta > * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.availability-link {
  padding: 0.65rem 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted-strong);
  cursor: pointer;
  font-family: var(--ui);
}

.data-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
  margin: 2.3rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line-strong);
  color: var(--muted-strong);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.data-line span::before {
  margin-right: 0.7rem;
  color: var(--vermilion);
  content: "✦";
}

.hero-media {
  position: relative;
  min-height: clamp(31rem, 58vw, 48rem);
}

.phone-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: clamp(1.6rem, 3vw, 3.1rem);
  background: #050505;
  box-shadow: var(--shadow-phone);
}

.phone-frame img {
  width: 100%;
  height: auto;
}

.provider-attribution {
  position: relative;
  z-index: 2;
  padding: 0.45rem 0.6rem 0.55rem;
  background: #050505;
  color: #ded9ce;
  font-family: var(--ui);
  font-size: 0.62rem;
  line-height: 1.25;
  text-align: center;
}

.provider-attribution a {
  color: inherit;
  text-decoration-thickness: 1px;
}

.hero-phone {
  position: absolute;
  width: clamp(13rem, 24vw, 22rem);
}

.hero-phone--main {
  top: 0;
  left: 33%;
  z-index: 3;
  transform: rotate(1.5deg);
}

.hero-phone--left {
  top: 21%;
  left: 2%;
  z-index: 2;
  transform: rotate(-8deg) scale(0.83);
}

.hero-phone--right {
  top: 18%;
  right: -6%;
  z-index: 1;
  transform: rotate(7deg) scale(0.84);
}

.screenshot-band {
  position: relative;
  z-index: 4;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-strong);
}

.rail-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.rail-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.4vw, 3.75rem);
  font-weight: 500;
}

.rail-controls {
  display: flex;
  gap: 0.5rem;
}

.icon-button {
  width: 2.9rem;
  padding: 0;
  font-size: 1.3rem;
}

.screenshot-rail {
  display: grid;
  grid-auto-columns: minmax(12rem, 16rem);
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0.4rem 0 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.screenshot-rail figure {
  margin: 0;
  scroll-snap-align: start;
}

.screenshot-rail .phone-frame {
  border-radius: 1.8rem;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.35);
}

.neighborhood-section {
  padding-block: clamp(5rem, 10vw, 10rem);
}

.neighborhood-header {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.neighborhood-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(22rem, 1fr) minmax(17rem, 0.68fr);
  align-items: stretch;
  gap: clamp(2rem, 4vw, 4.5rem);
}

.neighborhood-tabs {
  display: grid;
  align-content: start;
}

.neighborhood-button {
  position: relative;
  min-height: 4.5rem;
  padding: 1rem 2.3rem 1rem 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.2vw, 2.5rem);
  text-align: left;
}

[dir="rtl"] .neighborhood-button {
  padding-right: 0;
  padding-left: 2.3rem;
  text-align: right;
}

.neighborhood-button::after {
  position: absolute;
  top: 50%;
  right: 0.25rem;
  transform: translateY(-50%);
  color: var(--vermilion);
  content: "→";
  opacity: 0;
}

[dir="rtl"] .neighborhood-button::after {
  right: auto;
  left: 0.25rem;
  content: "←";
}

.neighborhood-button.is-selected {
  border-bottom-color: var(--vermilion);
  color: var(--vermilion);
}

.neighborhood-button.is-selected::after {
  opacity: 1;
}

.neighborhood-panel {
  position: relative;
  min-height: 31rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid var(--line-strong);
}

[dir="rtl"] .neighborhood-panel {
  border-right: 1px solid var(--line-strong);
  border-left: 0;
}

.neighborhood-panel[hidden] {
  display: none;
}

.neighborhood-panel h3 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.95;
}

.neighborhood-panel > p {
  max-width: 33rem;
  color: var(--muted-strong);
  font-size: 1.1rem;
}

.route-facts {
  display: grid;
  gap: 0;
  margin: 2rem 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.route-facts li {
  display: grid;
  grid-template-columns: 6.4rem 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.route-facts strong {
  color: var(--vermilion);
  font-family: var(--ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mini-route {
  position: absolute;
  right: 0;
  bottom: 1rem;
  width: min(90%, 30rem);
  height: 10rem;
  opacity: 0.85;
  background:
    radial-gradient(circle at 18% 72%, var(--vermilion) 0 0.35rem, transparent 0.4rem),
    radial-gradient(circle at 52% 44%, var(--vermilion) 0 0.35rem, transparent 0.4rem),
    radial-gradient(circle at 86% 70%, var(--vermilion) 0 0.35rem, transparent 0.4rem),
    linear-gradient(25deg, transparent 19%, var(--vermilion) 19.2% 19.8%, transparent 20%) 0 0 / 50% 100%,
    linear-gradient(-24deg, transparent 50%, var(--vermilion) 50.2% 50.8%, transparent 51%) 100% 0 / 55% 100%;
  background-repeat: no-repeat;
}

.neighborhood-media {
  align-self: center;
  max-width: 22rem;
  justify-self: end;
}

.editorial-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.workflow-section {
  padding-block: clamp(5rem, 10vw, 10rem);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.workflow-stage {
  position: relative;
  min-width: 0;
  min-height: 30rem;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--line-strong);
  overflow-wrap: anywhere;
}

.workflow-stage::after {
  position: absolute;
  right: -1.5rem;
  bottom: 24%;
  left: 3rem;
  height: 2px;
  background: var(--vermilion);
  content: "";
}

.workflow-stage:nth-child(1) {
  grid-column: 1 / span 4;
}

.workflow-stage:nth-child(2) {
  grid-column: 5 / span 4;
  margin-top: 8rem;
}

.workflow-stage:nth-child(3) {
  grid-column: 9 / span 4;
}

.workflow-stage:nth-child(4) {
  grid-column: 2 / span 10;
  display: grid;
  grid-template-columns: 1fr minmax(15rem, 22rem);
  align-items: center;
  min-height: 26rem;
  gap: 3rem;
}

.stage-number {
  color: var(--vermilion);
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.8;
}

.workflow-stage h3 {
  margin: 0.8rem 0 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 500;
}

.workflow-stage p {
  max-width: 26rem;
  color: var(--muted-strong);
}

.workflow-stage .phone-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 18rem);
  margin: 2rem auto 0;
}

.scan-example {
  position: relative;
  z-index: 2;
  margin-top: 4rem;
  padding: 1.5rem;
  border: 1px solid var(--line-strong);
  background: var(--ink-soft);
  text-align: center;
}

.scan-example strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.8rem);
  font-weight: 500;
}

.scan-example small {
  color: var(--muted);
  font-family: var(--ui);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.provider-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4rem;
  border-block: 1px solid var(--line-strong);
}

.provider-strip span {
  padding: 1rem 1.5rem;
  color: var(--muted-strong);
  font-family: var(--ui);
  text-align: center;
}

.provider-strip span + span {
  border-left: 1px solid var(--line-strong);
}

[dir="rtl"] .provider-strip span + span {
  border-right: 1px solid var(--line-strong);
  border-left: 0;
}

.guides-section {
  padding-block: clamp(5rem, 10vw, 10rem);
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(20rem, 0.8fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  margin-top: 4rem;
}

.featured-guide {
  position: relative;
  min-height: 39rem;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(125deg, transparent 55%, rgba(52, 65, 84, 0.32)),
    var(--ink-soft);
}

.featured-guide::before {
  position: absolute;
  inset: 8% 7% 10% 35%;
  content: "";
  opacity: 0.55;
  background:
    linear-gradient(32deg, transparent 48%, var(--map) 48.4% 49%, transparent 49.4%) 0 0 / 5rem 5rem,
    linear-gradient(-15deg, transparent 48%, var(--map-soft) 48.4% 49%, transparent 49.4%) 0 0 / 6rem 4rem;
  mask-image: radial-gradient(ellipse, #000 30%, transparent 78%);
}

.featured-guide::after {
  position: absolute;
  right: 8%;
  bottom: 18%;
  width: 52%;
  height: 36%;
  content: "";
  border-bottom: 4px dotted var(--vermilion);
  border-left: 4px dotted var(--vermilion);
  transform: skew(-18deg) rotate(-8deg);
}

.featured-guide-content {
  position: relative;
  z-index: 2;
  max-width: 38rem;
}

.featured-guide h3 {
  margin: 1.4rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(3rem, 5.3vw, 6.2rem);
  font-weight: 500;
  line-height: 0.94;
}

.guide-meta,
.byline {
  color: var(--muted);
  font-family: var(--ui);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.featured-guide p {
  max-width: 31rem;
  color: var(--muted-strong);
  font-size: 1.05rem;
}

.text-cta {
  display: inline-block;
  margin-top: 1rem;
  color: var(--vermilion);
  font-family: var(--ui);
  font-size: 1.1rem;
  font-weight: 750;
  text-wrap: pretty;
}

.guide-index {
  border-top: 1px solid var(--line-strong);
}

.guide-index a {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line-strong);
  text-decoration: none;
}

.guide-index .index-number {
  color: var(--vermilion);
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1;
}

.guide-index strong {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.1;
}

.guide-index small {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.4;
}

.section-footnote {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--vermilion);
  color: var(--muted);
  font-size: 0.85rem;
}

.trust-section {
  background: #f5f1e8;
  color: #111;
}

:root[data-theme="light"] .trust-section {
  background: #111;
  color: #f5f1e8;
}

.trust-section .section-label,
.trust-section .text-cta {
  color: #a61908;
}

:root[data-theme="light"] .trust-section .section-label,
:root[data-theme="light"] .trust-section .text-cta {
  color: #ff5a46;
}

.trust-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr minmax(14rem, 0.5fr) 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.trust-layout > *,
.faq-layout > * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.trust-section h2,
.trust-section h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  line-height: 1;
}

.trust-section h2 {
  font-size: clamp(2.8rem, 4.5vw, 5rem);
}

.trust-section h3 {
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
}

.trust-section p {
  color: color-mix(in srgb, currentColor 72%, transparent);
}

.access-list {
  border-top: 1px solid currentColor;
}

.access-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid color-mix(in srgb, currentColor 35%, transparent);
  font-family: var(--ui);
  font-weight: 700;
}

.trust-phone {
  width: min(100%, 14rem);
  justify-self: center;
}

.trust-phone.phone-frame {
  border-color: rgba(0, 0, 0, 0.55);
  border-radius: 2rem;
}

.faq-section {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 6vw, 7rem);
}

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

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

.faq-list summary {
  position: relative;
  padding: 1.15rem 3rem 1.15rem 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.3rem;
  transform: translateY(-50%);
  color: var(--vermilion);
  content: "+";
  font-family: var(--ui);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 48rem;
  margin: 0;
  padding: 0 3rem 1.4rem 0;
  color: var(--muted-strong);
}

[dir="rtl"] .faq-list summary {
  padding-right: 0;
  padding-left: 3rem;
}

[dir="rtl"] .faq-list summary::after {
  right: auto;
  left: 0.3rem;
}

[dir="rtl"] .faq-list details p {
  padding-right: 0;
  padding-left: 3rem;
}

.final-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.45fr;
  gap: 2rem;
  align-items: center;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.5vw, 6.6rem);
  font-weight: 500;
  line-height: 0.94;
}

.final-cta em {
  color: var(--vermilion);
  font-weight: 500;
}

.final-cta .brand {
  width: min(100%, 14rem);
  justify-self: end;
}

.site-footer {
  border-top: 1px solid var(--line-strong);
  background: var(--ink-soft);
}

.footer-inner {
  padding-block: 2.6rem 1.9rem;
}

.footer-main,
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}

.footer-main {
  margin-bottom: 2.4rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem 1.65rem;
  font-family: var(--ui);
  font-size: 0.9rem;
}

.footer-links a,
.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper-soft);
  cursor: pointer;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--vermilion);
}

.footer-meta {
  align-items: flex-end;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-meta p {
  margin: 0;
  color: inherit;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.footer-status__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--vermilion);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--vermilion) 18%, transparent);
}

dialog {
  width: min(calc(100% - 2rem), 36rem);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: #111;
  color: #f5f1e8;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.6);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(6px);
}

.dialog-inner {
  padding: 1.8rem;
}

.dialog-inner h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 500;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.consent-panel {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  width: min(calc(100% - 2rem), 34rem);
  max-height: min(calc(100dvh - 2rem), 38rem);
  overflow-y: auto;
  padding: 1.4rem;
  border: 1px solid rgba(245, 241, 232, 0.42);
  border-top: 3px solid #ff2a12;
  background: #111;
  color: #f5f1e8;
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.58);
}

.consent-panel[hidden] {
  display: none;
}

.consent-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
}

.consent-panel p {
  margin: 0.65rem 0;
  color: #cbc7be;
  font-size: 0.92rem;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.consent-actions button {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(245, 241, 232, 0.45);
  border-radius: 2px;
  background: transparent;
  color: #f5f1e8;
  cursor: pointer;
  font-family: var(--ui);
  font-weight: 750;
}

.consent-actions button[data-consent-choice="granted"] {
  border-color: #c91c0b;
  background: #c91c0b;
  color: #fff;
}

/* Guide and neighborhood content */
.article-hero {
  padding-block: clamp(3.5rem, 7vw, 7rem) 3rem;
  border-bottom: 1px solid var(--line-strong);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
  color: var(--muted);
  font-family: var(--ui);
  font-size: 0.85rem;
}

.breadcrumb a {
  text-decoration: none;
}

.article-title {
  max-width: 18ch;
  font-size: clamp(3.5rem, 6.7vw, 7.5rem);
}

.article-dek {
  max-width: 54rem;
  margin: 1.5rem 0;
  color: var(--muted-strong);
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(10rem, 0.34fr) minmax(0, 1fr) minmax(17rem, 0.42fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  padding-block: clamp(3rem, 6vw, 6rem);
}

.article-toc {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
  padding-right: 1.5rem;
  border-right: 1px solid var(--line);
}

.article-toc strong {
  display: block;
  margin-bottom: 1rem;
  color: var(--muted);
  font-family: var(--ui);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-toc a {
  display: block;
  padding: 0.42rem 0;
  color: var(--muted-strong);
  font-size: 0.86rem;
  text-decoration: none;
}

.article-content {
  min-width: 0;
}

.article-content h2 {
  margin: 3.2rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(2.25rem, 3.6vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content p,
.article-content li {
  color: var(--muted-strong);
  font-size: 1.04rem;
}

.direct-answer {
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: #f5f1e8;
  color: #111;
}

.direct-answer h2,
.direct-answer p {
  color: inherit;
}

.direct-answer h2 {
  margin-top: 0;
}

.route-steps {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.route-step {
  position: relative;
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  padding-bottom: 1.6rem;
}

.route-step::after {
  position: absolute;
  top: 2.7rem;
  bottom: 0;
  left: 1.2rem;
  width: 2px;
  background: var(--vermilion);
  content: "";
}

.route-step:last-child::after {
  display: none;
}

.step-marker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--vermilion-dark);
  color: #fff;
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 800;
}

.route-step h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
}

.route-step p {
  margin: 0.25rem 0 0;
}

.caveat-list {
  padding-left: 1.2rem;
  border-left: 3px solid var(--vermilion);
  list-style: none;
}

.article-aside {
  align-self: start;
}

.fact-panel,
.app-panel,
.related-panel {
  margin-bottom: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line-strong);
  background: var(--ink-soft);
}

.fact-panel h2,
.app-panel h2,
.related-panel h2 {
  margin: 0 0 1rem;
  color: var(--muted);
  font-family: var(--ui);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fact-panel dl {
  margin: 0;
}

.fact-panel div {
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
}

.fact-panel dt {
  color: var(--vermilion);
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact-panel dd {
  margin: 0.15rem 0 0;
  color: var(--muted-strong);
}

.app-panel .phone-frame {
  width: min(100%, 15rem);
  margin: 1rem auto;
  border-radius: 2rem;
}

.media-note {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.related-panel a {
  display: block;
  padding: 0.65rem 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.hub-header {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.hub-list {
  display: grid;
  padding-bottom: clamp(5rem, 10vw, 10rem);
  border-top: 1px solid var(--line-strong);
}

.hub-list a {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) minmax(12rem, 0.5fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line-strong);
  text-decoration: none;
}

.hub-list .hub-number {
  color: var(--vermilion);
  font-family: var(--display);
  font-size: 2.2rem;
}

.hub-list h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.hub-list p {
  color: var(--muted);
  font-size: 0.92rem;
}

.editorial-policy {
  max-width: 58rem;
  margin-bottom: clamp(5rem, 10vw, 10rem);
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.editorial-policy h2 {
  margin: 0.8rem 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1;
}

.editorial-policy p:not(.section-label) {
  color: var(--muted-strong);
}

.shop-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.shop-list article {
  padding: 1.2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shop-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
}

.shop-list p {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
}

/* Legal and support */
.legal-shell {
  display: grid;
  grid-template-columns: minmax(12rem, 0.32fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
  padding-block: clamp(4rem, 8vw, 8rem);
}

.legal-title {
  font-size: clamp(3.5rem, 6.5vw, 7rem);
}

.legal-intro {
  color: var(--muted-strong);
}

.legal-copy {
  max-width: 52rem;
}

.legal-copy h1,
.legal-copy h2 {
  margin: 2.6rem 0 0.8rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.1;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted-strong);
}

.legal-copy > p:first-child {
  padding: 1.2rem;
  border-left: 3px solid var(--vermilion);
  background: var(--ink-soft);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3rem;
  border-top: 1px solid var(--line-strong);
}

.support-grid article {
  min-height: 15rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-grid h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
}

.not-found {
  display: grid;
  min-height: calc(100vh - var(--header-height));
  place-items: center;
  padding-block: 4rem;
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--vermilion);
  font-family: var(--display);
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 500;
  line-height: 0.8;
}

.not-found h1 {
  margin: 1rem 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 500;
}

@media (max-width: 1400px) {
  .primary-nav {
    display: none;
  }

  .header-actions {
    margin-inline-start: auto;
  }

  .menu-toggle {
    display: inline-grid;
    width: 2.75rem;
    padding: 0;
    font-size: 1.25rem;
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    inset-inline: 0;
    bottom: 0;
    height: calc(100dvh - var(--header-height));
    padding-block: 1.9rem;
    background: var(--ink);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobile-nav[data-open="true"] {
    display: grid;
    align-content: start;
    gap: 0.5rem;
  }

  .mobile-nav > a,
  .mobile-availability {
    width: 100%;
    min-height: 3.5rem;
    padding: 0.9rem 0.65rem;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--paper);
    cursor: pointer;
    font-family: var(--ui);
    font-size: 1.2rem;
    font-weight: 720;
    text-align: start;
    text-decoration: none;
  }

  .mobile-nav > a:hover,
  .mobile-availability:hover {
    color: var(--vermilion);
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero-media {
    min-height: 38rem;
  }

  .hero-phone--main {
    left: 16%;
  }

  .neighborhood-layout {
    grid-template-columns: 0.8fr 1fr;
  }

  .neighborhood-media {
    display: none;
  }

  .workflow-stage:nth-child(1),
  .workflow-stage:nth-child(2),
  .workflow-stage:nth-child(3) {
    grid-column: span 4;
    margin-top: 0;
  }

  .workflow-stage:nth-child(4) {
    grid-column: 1 / -1;
  }

  .trust-layout {
    grid-template-columns: 1fr 1fr;
  }

  .trust-phone {
    grid-column: 1;
    grid-row: 2;
  }

  .article-shell {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.38fr);
  }

  .article-toc {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 4.125rem;
  }

  .header-inner {
    gap: 0.6rem;
  }

  .site-brand {
    font-size: 1.08rem;
  }

  .site-brand img {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.62rem;
  }

  .header-actions > .locale-menu,
  .header-actions > .theme-toggle,
  .header-actions > .header-availability {
    display: none;
  }

  .mobile-controls {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
  }

  .mobile-controls .locale-menu,
  .mobile-controls .locale-menu > summary,
  .mobile-controls .theme-toggle {
    width: 100%;
  }

  .mobile-controls .locale-menu > summary,
  .mobile-controls .theme-toggle {
    min-height: 3rem;
    justify-content: flex-start;
  }

  .mobile-controls .locale-menu__current {
    flex: 1;
    text-align: start;
  }

  .mobile-controls .locale-list {
    position: static;
    width: 100%;
    min-width: 0;
    max-width: none;
    max-height: 45dvh;
    grid-template-columns: 1fr;
    margin-top: 0.5rem;
    box-shadow: none;
  }

  .footer-main,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-status {
    white-space: normal;
  }
}

@media (max-width: 52rem) {
  .hero::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 3.5rem;
  }

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

  .display-title {
    max-width: 10.5ch;
    font-size: clamp(3.5rem, 15vw, 6.2rem);
  }

  .hero-media {
    min-height: 32rem;
    margin-inline: -2rem;
  }

  .hero-phone {
    width: 15.5rem;
  }

  .hero-phone--main {
    left: 34%;
  }

  .hero-phone--left {
    left: 5%;
  }

  .hero-phone--right {
    right: 0;
  }

  .neighborhood-header {
    grid-template-columns: 1fr;
  }

  .neighborhood-layout {
    grid-template-columns: 1fr;
  }

  .neighborhood-panel {
    min-height: 28rem;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

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

  .workflow-stage:nth-child(n) {
    grid-column: 1;
    min-height: auto;
  }

  .workflow-stage:nth-child(4) {
    grid-template-columns: 1fr;
  }

  .workflow-stage::after {
    display: none;
  }

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

  .provider-strip span + span {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .guide-layout {
    grid-template-columns: 1fr;
  }

  .featured-guide {
    min-height: 32rem;
  }

  .trust-layout,
  .faq-layout,
  .final-cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-phone {
    display: none;
  }

  .final-cta .brand {
    justify-self: start;
  }

  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .hub-list a {
    grid-template-columns: 3rem 1fr auto;
  }

  .hub-list p {
    display: none;
  }

  .legal-shell {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }


  .neighborhood-button,
  .neighborhood-panel h3 {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 35rem) {
  .brand {
    width: 7.5rem;
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-cta {
    width: 100%;
  }

  .availability-link {
    align-self: flex-start;
  }

  .data-line {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .data-line span {
    min-width: 0;
    padding: 0 0.45rem;
    border-right: 1px solid var(--line);
    overflow-wrap: anywhere;
    text-align: center;
  }

  .data-line span::before {
    display: block;
    margin: 0 0 0.35rem;
  }

  .hero-media {
    min-height: 27rem;
    margin-inline: -4rem;
  }

  .hero-phone {
    width: 13rem;
  }

  .screenshot-rail {
    grid-auto-columns: 78vw;
  }

  .neighborhood-panel {
    padding-inline: 0;
  }

  .mini-route {
    width: 100%;
  }

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

  .shop-list {
    grid-template-columns: 1fr;
  }

  .consent-panel {
    right: 0.5rem;
    bottom: 0.5rem;
    width: calc(100% - 1rem);
  }
}

@media (max-width: 25rem) {
  :root {
    --gutter: 0.75rem;
  }

  .brand {
    width: 5.5rem;
  }

  .site-brand {
    gap: 0.5rem;
    font-size: 1rem;
  }

  .hero-media {
    margin-inline: 0;
    overflow: hidden;
  }

  .neighborhood-layout > *,
  .neighborhood-tabs,
  .neighborhood-panel {
    width: 100%;
    min-width: 0;
  }
}

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

@media (forced-colors: active) {
  .primary-cta,
  .step-marker {
    border: 1px solid ButtonText;
  }

  .phone-frame {
    border: 2px solid CanvasText;
  }
}
