:root {
  --midnight: #070b10;
  --charcoal: #111820;
  --steel: #202a33;
  --steel-soft: #24313d;
  --gold: #b9944a;
  --soft-gold: #d6b875;
  --white: #ffffff;
  --muted-text: #aab2bc;
  --border: rgba(185, 148, 74, 0.2);
  --panel: rgba(17, 24, 32, 0.88);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 2rem));
  --header-height: 5rem;
  --header-height-condensed: 3.95rem;
  --logo-height: clamp(3.7rem, 4.8vw, 4.35rem);
  --logo-height-condensed: clamp(2.45rem, 3vw, 2.95rem);
  --chrome-offset: 8.65rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--chrome-offset) + 1rem);
}

body {
  margin: 0;
  padding-top: var(--chrome-offset);
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(185, 148, 74, 0.12), transparent 26rem),
    linear-gradient(180deg, #05080d 0%, #070b10 48%, #0b1016 100%);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 60;
  transition: box-shadow 180ms ease;
}

.page-shell.is-scrolled .site-chrome {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.utility-bar {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(4, 7, 12, 0.92);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, background 180ms ease;
}

.utility-bar__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 0.62rem 0;
  transition: padding 180ms ease, gap 180ms ease;
}

.utility-bar__label {
  margin: 0;
  white-space: nowrap;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft-gold);
}

.market-feed {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.market-feed__meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.market-feed__mode {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.8rem;
  min-height: 1.65rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}

.market-feed__mode[data-mode="live"] {
  color: #0a160f;
  background: linear-gradient(135deg, #7ae39f, #9df0b6);
  border-color: rgba(157, 240, 182, 0.35);
}

.market-feed__mode[data-mode="cached"] {
  color: #1a1402;
  background: linear-gradient(135deg, #d8c27c, #e8d79d);
  border-color: rgba(232, 215, 157, 0.35);
}

.market-feed__mode[data-mode="sample"] {
  color: #fff0cf;
  background: rgba(185, 148, 74, 0.16);
  border-color: rgba(185, 148, 74, 0.28);
}

.market-feed__status {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  transition: font-size 180ms ease;
}

.market-feed__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.market-feed__list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
}

.market-feed__list.is-animated {
  animation: market-tape-scroll 34s linear infinite;
}

.market-feed__viewport:hover .market-feed__list.is-animated {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .market-feed__list.is-animated {
    animation: none;
  }
}

.market-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.15rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  transition: min-height 180ms ease, padding 180ms ease;
}

.market-chip__label,
.market-chip__unit {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.68);
}

.market-chip__value {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: font-size 180ms ease;
}

.market-chip__change {
  font-size: 0.75rem;
  font-weight: 700;
}

.is-up .market-chip__value {
  color: #8dde9f;
}

.is-up .market-chip__change {
  color: #8dde9f;
}

.is-down .market-chip__value {
  color: #ff9d84;
}

.is-down .market-chip__change {
  color: #ff9d84;
}

.is-flat .market-chip__value {
  color: #cfd6de;
}

.is-flat .market-chip__change {
  color: #cfd6de;
}

.site-header {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(7, 11, 16, 0.88);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
  min-height: var(--header-height);
  transition: min-height 220ms ease, gap 220ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand__logo {
  width: auto;
  height: var(--logo-height);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.34));
  transition: height 220ms ease, filter 220ms ease, transform 220ms ease;
}

.brand__fallback {
  display: none;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
}

.brand--fallback .brand__fallback {
  display: block;
}

.brand--footer .brand__logo {
  width: auto;
  height: clamp(4rem, 6vw, 4.9rem);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
}

.menu-toggle__line {
  width: 1rem;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  position: relative;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease, font-size 180ms ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: transform 180ms ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--white);
}

.page-shell.is-scrolled .utility-bar__inner {
  gap: 0.9rem;
  padding: 0.34rem 0;
}

.page-shell.is-scrolled .market-feed__status {
  font-size: 0.72rem;
}

.page-shell.is-scrolled .market-chip {
  min-height: 1.8rem;
  padding: 0.34rem 0.62rem;
}

.page-shell.is-scrolled .market-chip__value {
  font-size: 0.78rem;
}

.page-shell.is-scrolled .site-header__inner {
  gap: 0.95rem;
  min-height: var(--header-height-condensed);
}

.page-shell.is-scrolled .brand__logo {
  height: var(--logo-height-condensed);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}

.page-shell.is-scrolled .site-nav__link {
  font-size: 0.88rem;
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.2rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #091016;
  background: linear-gradient(135deg, var(--gold), var(--soft-gold));
  box-shadow: 0 12px 32px rgba(185, 148, 74, 0.22);
}

.button--secondary {
  border-color: rgba(214, 184, 117, 0.4);
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
}

.button--ghost {
  color: var(--soft-gold);
  border-color: rgba(214, 184, 117, 0.18);
  background: rgba(255, 255, 255, 0.015);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 7rem 0 4rem;
}

.hero--home {
  min-height: calc(100vh - 9rem);
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image, none);
  background-position: right center;
  background-size: cover;
  opacity: 0.9;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.92) 0%, rgba(5, 8, 13, 0.84) 38%, rgba(5, 8, 13, 0.34) 100%),
    linear-gradient(180deg, rgba(7, 11, 16, 0.35), rgba(7, 11, 16, 0.78));
}

.hero__glow {
  position: absolute;
  left: 0;
  top: 20%;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 148, 74, 0.34), transparent 70%);
  filter: blur(28px);
  z-index: 1;
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
  align-items: end;
}

.hero__content {
  max-width: 46rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.15rem;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft-gold);
}

.eyebrow::before {
  content: "";
  width: 4.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero__title,
.section-title,
.card-title,
.page-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero__title {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.9rem);
}

.hero__copy,
.section-copy,
.card-copy,
.lead-copy {
  color: var(--muted-text);
}

.hero__copy {
  max-width: 42rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 1.4rem 0 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

@keyframes market-tape-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 0.375rem));
  }
}

.section {
  padding: 5.5rem 0;
}

.section--tight {
  padding: 3.25rem 0;
}

.section--muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-title,
.page-title {
  font-size: clamp(2.35rem, 4vw, 4rem);
}

.section-copy,
.lead-copy {
  font-size: 1.03rem;
  margin: 0;
}

.intro-banner {
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.card-grid {
  display: grid;
  gap: 1.35rem;
}

.card-grid--services {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 24, 32, 0.84), rgba(12, 18, 24, 0.95));
  box-shadow: var(--shadow);
}

.card::before {
  content: "";
  position: absolute;
  left: 1.6rem;
  top: 0;
  width: 4.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.card-title {
  font-size: 1.8rem;
  margin: 0 0 0.8rem;
}

.card-copy,
.card-list,
.quote-card__quote {
  margin: 0;
  font-size: 0.97rem;
}

.card-list {
  padding-left: 1rem;
  color: var(--muted-text);
}

.split {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.visual-panel,
.photo-panel {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(7, 11, 16, 0.18), rgba(7, 11, 16, 0.78)),
    var(--panel-image, linear-gradient(135deg, rgba(17, 24, 32, 0.95), rgba(32, 42, 51, 0.95)));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.visual-panel--wide {
  min-height: 30rem;
}

.visual-panel__content {
  position: absolute;
  inset: auto 1.35rem 1.35rem 1.35rem;
  display: grid;
  gap: 0.55rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  background: rgba(7, 11, 16, 0.72);
  backdrop-filter: blur(10px);
}

.visual-panel__content h3,
.visual-panel__content p {
  margin: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 184, 117, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-step {
  text-align: center;
  display: grid;
  gap: 0.8rem;
  justify-items: center;
}

.timeline-step__number {
  display: grid;
  place-items: center;
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 184, 117, 0.25);
  background: rgba(255, 255, 255, 0.02);
  color: var(--soft-gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.timeline-step__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
}

.timeline-step__copy {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.88rem;
}

.status-banner {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.status-banner.is-success {
  border-color: rgba(141, 222, 159, 0.35);
  background: rgba(141, 222, 159, 0.07);
}

.status-banner.is-error {
  border-color: rgba(255, 157, 132, 0.35);
  background: rgba(255, 157, 132, 0.07);
}

.form-shell {
  display: grid;
  gap: 1.5rem;
  padding: 1.7rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 24, 32, 0.92), rgba(10, 14, 19, 0.96));
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-group {
  display: grid;
  gap: 0.55rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.field-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft-gold);
}

.field,
.textarea,
.select {
  min-height: 3.3rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.textarea {
  min-height: 10rem;
  resize: vertical;
}

.field:focus,
.textarea:focus,
.select:focus {
  outline: 2px solid rgba(214, 184, 117, 0.35);
  border-color: rgba(214, 184, 117, 0.45);
}

.form-note {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.72);
}

.two-column-list {
  display: grid;
  gap: 0.9rem 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.two-column-list li,
.stack-list li {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted-text);
}

.stack-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  list-style: none;
}

.quote-card {
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.quote-card__quote {
  font-size: 1.16rem;
  color: var(--white);
}

.quote-card__source {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft-gold);
}

.site-footer {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(6, 9, 13, 0.72), rgba(6, 9, 13, 0.94)),
    url("../midgard-dark-gold-abstract-background.png") center / cover no-repeat;
}

.footer-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 16, 0.78), rgba(7, 11, 16, 0.98));
}

.footer-grid,
.footer-lower {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  padding: 4.5rem 0 2rem;
}

.footer-title {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
}

.footer-copy {
  max-width: 30rem;
  color: var(--muted-text);
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.74);
}

.footer-links a {
  color: inherit;
}

.footer-lower {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem 0 2.5rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.footer-lower__links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.page-hero {
  --hero-image: linear-gradient(135deg, rgba(17, 24, 32, 0.95), rgba(32, 42, 51, 0.95));
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 52rem;
}

.page-hero__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.02;
}

.page-hero__copy {
  max-width: 44rem;
  margin: 1rem 0 0;
  color: var(--muted-text);
  font-size: 1.08rem;
}

.detail-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.corridor-grid {
  display: grid;
  gap: 1rem;
}

.corridor-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.corridor-item__route {
  min-width: 13rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
}

.corridor-item__copy {
  margin: 0;
  color: var(--muted-text);
}

.disclaimer {
  padding: 1.1rem 1.3rem;
  border: 1px solid rgba(214, 184, 117, 0.12);
  border-radius: 1rem;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.025);
}

@media (max-width: 1080px) {
  :root {
    --logo-height: clamp(3.35rem, 5vw, 3.9rem);
    --logo-height-condensed: clamp(2.2rem, 3.2vw, 2.65rem);
    --chrome-offset: 8rem;
  }

  .card-grid--services,
  .card-grid--three,
  .footer-grid,
  .timeline,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .site-header__inner {
    gap: 1rem;
  }

  .site-nav__list {
    gap: 0.8rem;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: calc(var(--chrome-offset) + 0.8rem);
  }

  :root {
    --chrome-offset: 7rem;
  }

  .utility-bar__inner {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0.45rem 0;
  }

  .utility-bar__label {
    display: none;
  }

  .market-feed__meta {
    justify-content: space-between;
  }

  .market-chip {
    min-height: 1.9rem;
    padding: 0.36rem 0.62rem;
  }

  .site-header__inner {
    min-height: 4.2rem;
    gap: 0.75rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 0.75rem) 1rem auto 1rem;
    display: none;
    max-height: calc(100vh - 7.5rem);
    overflow: auto;
    padding: 1.1rem;
    border: 1px solid var(--border);
    border-radius: 1.4rem;
    background: rgba(7, 11, 16, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav__list,
  .site-nav {
    gap: 1rem;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav__cta {
    width: 100%;
  }

  .page-shell.is-scrolled .site-header__inner {
    min-height: 3.55rem;
  }

  .page-shell.is-scrolled .brand__logo {
    height: clamp(2rem, 4vw, 2.35rem);
  }

  .section,
  .hero {
    padding: 4.4rem 0 3rem;
  }

  .card-grid--two,
  .card-grid--three,
  .footer-grid,
  .form-grid,
  .two-column-list,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-lower {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: calc(var(--chrome-offset) + 0.6rem);
  }

  :root {
    --chrome-offset: 6.35rem;
    --logo-height: clamp(2.7rem, 8vw, 3.2rem);
    --logo-height-condensed: clamp(2rem, 6.2vw, 2.35rem);
  }

  .market-feed__meta {
    gap: 0.45rem;
  }

  .market-feed__status {
    display: none;
  }

  .market-feed__mode {
    min-width: 4.2rem;
  }

  .market-chip {
    min-height: 1.7rem;
    padding: 0.3rem 0.52rem;
  }

  .market-chip__label,
  .market-chip__unit,
  .market-chip__change {
    font-size: 0.68rem;
  }

  .market-chip__value {
    font-size: 0.82rem;
  }

  .site-header__inner {
    min-height: 3.85rem;
  }

  .menu-toggle {
    width: 2.75rem;
    height: 2.75rem;
  }

  .site-nav {
    inset: calc(100% + 0.55rem) 0.75rem auto 0.75rem;
    padding: 1rem;
  }

  .page-shell.is-scrolled .site-header__inner {
    min-height: 3.35rem;
  }

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

  .hero__actions,
  .footer-lower__links {
    flex-direction: column;
    align-items: flex-start;
  }

  .corridor-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .corridor-item__route {
    min-width: auto;
  }
}
