:root {
  --ink: #080706;
  --ink-soft: #1f1a13;
  --paper: #f8f3ea;
  --surface: #fffaf1;
  --line: rgba(18, 19, 15, 0.13);
  --gold: #ac8540;
  --gold-deep: #7c5a27;
  --teal: #0b5652;
  --wine: #4b1d2a;
  --sage: #687261;
  --mist: #eee6da;
  --champagne: #e7d3a5;
  --shadow: 0 28px 80px rgba(11, 10, 7, 0.16);
  --shadow-soft: 0 16px 48px rgba(11, 10, 7, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(8, 7, 6, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 7, 6, 0.018) 1px, transparent 1px),
    linear-gradient(118deg, rgba(172, 133, 64, 0.11), transparent 24rem),
    linear-gradient(180deg, #fcf8f0, #efe7dc 52%, #f8f3ea);
  background-size: 34px 34px, 34px 34px, auto, auto;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255, 250, 242, 0.72), transparent 32%),
    linear-gradient(290deg, rgba(75, 29, 42, 0.045), transparent 44%);
  content: "";
  pointer-events: none;
}

html[lang="tr"] .lang-en,
html[lang="en"] .lang-tr {
  display: none !important;
}

body.intro-lock {
  overflow: hidden;
}

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

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

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

::selection {
  background: rgba(185, 145, 70, 0.32);
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  height: 3px;
  background: rgba(11, 10, 7, 0.08);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--champagne));
  box-shadow: 0 0 24px rgba(201, 164, 90, 0.48);
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 48%, rgba(172, 133, 64, 0.18), transparent 28rem),
    radial-gradient(circle at 72% 26%, rgba(11, 86, 82, 0.13), transparent 26rem),
    linear-gradient(135deg, #050403, #120e08 58%, #1a1116);
  color: #fffdf5;
  transition:
    opacity 800ms ease,
    visibility 800ms ease,
    transform 800ms ease;
}

.intro.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  pointer-events: none;
}

#intro-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro-copy {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 40px));
  text-align: center;
  transform: translateY(0);
  animation: introText 5.4s ease both;
}

.intro-copy h1 {
  margin: 0.4rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.8rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.intro-copy p {
  margin: 1rem auto 0;
  max-width: 500px;
  color: rgba(255, 253, 245, 0.78);
}

.intro-skip {
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  bottom: clamp(16px, 4vw, 44px);
  z-index: 3;
  border: 1px solid rgba(255, 253, 245, 0.28);
  background: rgba(255, 253, 245, 0.08);
  color: #fffdf5;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(18px);
}

@keyframes introText {
  0%,
  28% {
    opacity: 0;
    transform: translateY(34px) scale(0.98);
  }
  45%,
  86% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-28px) scale(0.98);
  }
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px 10px 16px;
  border: 1px solid rgba(201, 164, 90, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.92), rgba(232, 222, 205, 0.78)),
    rgba(248, 243, 234, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 46px rgba(11, 10, 7, 0.14);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.header-tools {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(11, 10, 7, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.62);
  padding: 3px;
}

.language-switch button {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(11, 10, 7, 0.62);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.language-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--champagne);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, #060504, #17110a),
    var(--ink);
  color: var(--gold);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 28px rgba(11, 10, 7, 0.18);
}

.brand-mark svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.brand-mark svg path:nth-child(2) {
  fill: currentColor;
  stroke: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(18, 19, 15, 0.58);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: clamp(12px, 2vw, 28px);
  min-width: 0;
  color: rgba(18, 19, 15, 0.72);
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  border-radius: 999px;
  padding: 8px 10px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a:hover {
  background: rgba(201, 164, 90, 0.12);
  color: var(--ink);
}

.nav-links a.is-active {
  background: rgba(11, 10, 7, 0.88);
  color: var(--champagne);
}

.nav-links a.is-active::after {
  transform: scaleX(0);
}

.header-cta,
.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: var(--radius);
  white-space: nowrap;
}

.header-cta,
.primary-btn {
  border: 1px solid var(--ink);
  background: linear-gradient(135deg, #070604, #17120a);
  color: var(--champagne);
  padding: 0 18px;
  box-shadow: 0 12px 30px rgba(11, 10, 7, 0.14);
}

.ghost-btn {
  border: 1px solid rgba(18, 19, 15, 0.18);
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
  padding: 0 18px;
}

.primary-btn,
.ghost-btn,
.carousel-btn,
.back-to-top {
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.primary-btn:hover,
.ghost-btn:hover,
.back-to-top:hover {
  transform: translateY(-1px);
}

.header-cta svg,
.primary-btn svg,
.contact-links svg,
.search-box svg,
.panel-stat svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.section {
  position: relative;
  padding: clamp(72px, 10vw, 132px) max(20px, calc((100vw - 1180px) / 2));
  scroll-margin-top: 96px;
  perspective: 1400px;
  transform: none;
  transform-origin: top center;
  opacity: 1;
  filter: none;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.18, 1), opacity 700ms ease, filter 900ms ease, clip-path 900ms ease;
  will-change: transform, opacity;
}

.section.reveal-pending {
  clip-path: none;
  transform: none;
  opacity: 1;
  filter: none;
}

.section.reveal-pending:not(.hero):not(.glossary) > * {
  opacity: 0;
  filter: blur(8px) saturate(0.78);
  transform: perspective(1300px) rotateX(16deg) translate3d(0, 72px, -90px) scale(0.965);
  transform-origin: top center;
}

.section.is-visible {
  clip-path: none;
  transform: none;
  opacity: 1;
  filter: none;
  animation: none;
}

.section.is-visible:not(.hero):not(.glossary) > * {
  animation: section3dReveal 980ms cubic-bezier(0.16, 0.78, 0.18, 1) both;
}

.section.is-visible:not(.hero):not(.glossary) > *:nth-child(2) {
  animation-delay: 80ms;
}

.section.is-visible:not(.hero):not(.glossary) > *:nth-child(3) {
  animation-delay: 150ms;
}

.section.is-visible:not(.hero):not(.glossary) > *:nth-child(4) {
  animation-delay: 220ms;
}

.section::before {
  display: none;
}

.section.is-visible::before {
  display: none;
}

.section > * {
  position: relative;
  z-index: 1;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
}

@keyframes section3dReveal {
  0% {
    opacity: 0;
    filter: blur(8px) saturate(0.78);
    transform: perspective(1300px) rotateX(16deg) translate3d(0, 72px, -90px) scale(0.965);
  }
  58% {
    opacity: 1;
    filter: blur(0) saturate(1.06);
    transform: perspective(1300px) rotateX(-2deg) translate3d(0, -8px, 18px) scale(1.008);
  }
  100% {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: perspective(1300px) rotateX(0deg) translate3d(0, 0, 0) scale(1);
  }
}

@keyframes sectionPageIn {
  0% {
    clip-path: inset(0 0 24% 0);
    transform: perspective(1200px) rotateX(20deg) translateY(110px) scale(0.95);
    opacity: 0.28;
    filter: blur(3px) saturate(0.65);
  }
  62% {
    transform: perspective(1200px) rotateX(-2.5deg) translateY(-8px) scale(1.01);
    opacity: 1;
    filter: blur(0) saturate(1.08);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: perspective(1200px) rotateX(0deg) translateY(0) scale(1);
    opacity: 1;
    filter: blur(0) saturate(1);
  }
}

.hero {
  display: grid;
  height: calc(100svh - 26px);
  min-height: 680px;
  align-items: center;
  overflow: hidden;
  padding-top: 104px;
  padding-bottom: 0;
  color: #fffdf5;
  background: #060604;
  isolation: isolate;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 6, 4, 0.98) 0%, rgba(8, 7, 5, 0.76) 42%, rgba(8, 7, 5, 0.08) 100%),
    linear-gradient(0deg, rgba(6, 6, 4, 0.92) 0%, transparent 46%),
    linear-gradient(180deg, rgba(75, 29, 42, 0.18), transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  margin-top: -32px;
  padding: clamp(22px, 5vh, 42px) 0 clamp(44px, 7vh, 70px);
}

.hero-content > * {
  animation: heroEditorialIn 960ms cubic-bezier(0.16, 0.78, 0.18, 1) both;
}

.hero-content > *:nth-child(2) {
  animation-delay: 90ms;
}

.hero-content > *:nth-child(3) {
  animation-delay: 170ms;
}

.hero-content > *:nth-child(4) {
  animation-delay: 250ms;
}

.hero-content > *:nth-child(5) {
  animation-delay: 330ms;
}

.hero-content::before {
  display: block;
  width: 72px;
  height: 1px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.copy-block h2,
.section-heading h2,
.route-copy h2,
.glossary-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.75rem, 6.15vw, 4.55rem);
  line-height: 0.96;
}

.hero-lead {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(255, 253, 245, 0.82);
  font-size: 1.02rem;
  line-height: 1.66;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero .primary-btn {
  border-color: var(--gold);
  background: linear-gradient(135deg, #e3c276, #a77b35);
  color: #161007;
}

.hero .ghost-btn {
  border-color: rgba(255, 253, 245, 0.28);
  background: rgba(255, 253, 245, 0.08);
  color: #fffdf5;
  backdrop-filter: blur(18px);
}

.hero .primary-btn:hover {
  box-shadow: 0 20px 42px rgba(201, 164, 90, 0.24);
}

.hero-metrics {
  display: grid;
  max-width: 690px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(239, 224, 189, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.08), rgba(201, 164, 90, 0.08)),
    rgba(239, 224, 189, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.hero-metrics div {
  min-height: 86px;
  padding: 16px;
  background: rgba(7, 8, 6, 0.38);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  line-height: 1;
}

.hero-metrics span {
  margin-top: 6px;
  color: rgba(255, 253, 245, 0.7);
  font-size: 0.8rem;
}

.hero-dossier {
  position: absolute;
  right: max(58px, calc((100vw - 1120px) / 2));
  bottom: clamp(78px, 13vh, 128px);
  z-index: 2;
  width: min(340px, 28vw);
  overflow: hidden;
  border: 1px solid rgba(239, 224, 189, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 245, 0.16), rgba(255, 253, 245, 0.055)),
    rgba(9, 8, 6, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 245, 0.16),
    0 34px 90px rgba(0, 0, 0, 0.42);
  padding: 18px;
  backdrop-filter: blur(22px);
  transform: perspective(1200px) rotateX(4deg) rotateY(-4deg) translateZ(0);
  transform-origin: center right;
  animation: dossierFloatIn 1100ms cubic-bezier(0.16, 0.78, 0.18, 1) 540ms both;
}

.hero-dossier::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.12) 48%, transparent 58%),
    repeating-linear-gradient(90deg, rgba(255, 253, 245, 0.035) 0 1px, transparent 1px 18px);
  content: "";
  pointer-events: none;
}

.hero-dossier > * {
  position: relative;
  z-index: 1;
}

.dossier-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(239, 224, 189, 0.16);
  padding-bottom: 14px;
}

.dossier-topline span {
  color: rgba(255, 253, 245, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dossier-topline strong {
  border: 1px solid rgba(201, 164, 90, 0.32);
  border-radius: 999px;
  color: var(--champagne);
  padding: 6px 9px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dossier-route {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin: 18px 0;
}

.dossier-route span {
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dossier-route svg {
  width: 100%;
  height: 54px;
}

.dossier-route-line {
  fill: none;
  stroke: var(--gold);
  stroke-dasharray: 9 8;
  stroke-linecap: round;
  stroke-width: 2.4;
  animation: routeFlow 2.8s linear infinite;
}

.dossier-route circle {
  fill: var(--gold);
  stroke: rgba(255, 253, 245, 0.86);
  stroke-width: 2;
}

.dossier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(239, 224, 189, 0.13);
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
}

.dossier-grid div {
  min-height: 82px;
  border-right: 1px solid rgba(239, 224, 189, 0.11);
  border-bottom: 1px solid rgba(239, 224, 189, 0.11);
  background: rgba(255, 253, 245, 0.045);
  padding: 13px;
}

.dossier-grid div:nth-child(2n) {
  border-right: 0;
}

.dossier-grid div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.dossier-grid span,
.dossier-grid strong {
  display: block;
}

.dossier-grid span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
}

.dossier-grid strong {
  margin-top: 8px;
  color: rgba(255, 253, 245, 0.84);
  font-size: 0.86rem;
  line-height: 1.25;
}

.hero-dossier p {
  margin: 16px 0 0;
  color: rgba(255, 253, 245, 0.68);
  font-size: 0.88rem;
  line-height: 1.55;
}

.hero-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(239, 224, 189, 0.18);
  border-bottom: 1px solid rgba(239, 224, 189, 0.1);
  background:
    linear-gradient(90deg, rgba(7, 8, 6, 0.94), rgba(26, 19, 12, 0.84), rgba(7, 8, 6, 0.94));
  box-shadow: 0 -20px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hero-ticker::before,
.hero-ticker::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 14vw;
  content: "";
  pointer-events: none;
}

.hero-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #070806, transparent);
}

.hero-ticker::after {
  right: 0;
  background: linear-gradient(270deg, #070806, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 34px;
  min-height: 54px;
  color: rgba(255, 253, 245, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: tickerLoop 34s linear infinite;
}

.ticker-track > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.ticker-track > span::before {
  width: 6px;
  height: 6px;
  border: 1px solid rgba(201, 164, 90, 0.75);
  border-radius: 50%;
  background: rgba(201, 164, 90, 0.18);
  content: "";
}

.scroll-cue {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 72px;
  z-index: 2;
  display: grid;
  width: 28px;
  height: 44px;
  place-items: start center;
  border: 1px solid rgba(255, 253, 245, 0.32);
  border-radius: 999px;
  transform: none;
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--gold);
  animation: cue 1.5s ease-in-out infinite;
}

@keyframes cue {
  50% {
    transform: translateY(14px);
    opacity: 0.5;
  }
}

@keyframes tickerLoop {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes heroEditorialIn {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(-18px, 24px, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes dossierFloatIn {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: perspective(1200px) rotateX(12deg) rotateY(-12deg) translate3d(34px, 40px, -90px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: perspective(1200px) rotateX(4deg) rotateY(-4deg) translateZ(0);
  }
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  border-top: 1px solid rgba(18, 19, 15, 0.12);
  padding-top: 18px;
  color: rgba(18, 19, 15, 0.58);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-kicker > span:first-child::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.42;
}

.section-kicker > span:last-child {
  display: grid;
  min-width: 38px;
  min-height: 32px;
  place-items: center;
  border: 1px solid rgba(201, 164, 90, 0.24);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.48);
  color: var(--gold-deep);
}

.split,
.route-layout,
.case-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.copy-block h2,
.section-heading h2,
.route-copy h2,
.glossary-head h2 {
  font-size: clamp(2.75rem, 5vw, 4rem);
  line-height: 1;
}

.copy-block p,
.section-heading p,
.route-copy p,
.glossary-head p {
  margin: 20px 0 0;
  color: rgba(18, 19, 15, 0.7);
  font-size: 1rem;
}

.signature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
  color: rgba(18, 19, 15, 0.55);
}

.signature {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--wine);
  font-size: 1.8rem;
  font-style: italic;
}

.about-credentials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid rgba(201, 164, 90, 0.22);
  border-radius: var(--radius);
  background: rgba(201, 164, 90, 0.2);
  box-shadow: var(--shadow-soft);
}

.about-credentials div {
  min-height: 158px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 240, 0.58));
  padding: 18px;
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.about-credentials div:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 240, 0.72));
  box-shadow: inset 0 2px 0 rgba(201, 164, 90, 0.28);
  transform: translateY(-2px);
}

.about-credentials span,
.about-credentials strong {
  display: block;
}

.about-credentials span {
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 900;
}

.about-credentials strong {
  margin-top: 12px;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.24;
}

.about-credentials p {
  margin: 10px 0 0;
  color: rgba(18, 19, 15, 0.62);
  font-size: 0.86rem;
  line-height: 1.45;
}

.visual-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 164, 90, 0.18);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.visual-panel::after,
.case-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(18, 19, 15, 0.52)),
    radial-gradient(circle at 78% 18%, rgba(185, 145, 70, 0.3), transparent 18rem);
  content: "";
  z-index: 1;
  pointer-events: none;
}

.visual-panel img,
.case-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.panel-stat {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 36px);
  border: 1px solid rgba(255, 253, 245, 0.25);
  border-radius: var(--radius);
  background: rgba(18, 19, 15, 0.72);
  color: #fffdf5;
  padding: 12px 14px;
  backdrop-filter: blur(16px);
}

.guide-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.88), rgba(238, 230, 218, 0.96)),
    var(--mist);
}

.guide-section::after,
.mistakes::after {
  position: absolute;
  z-index: 0;
  inset: 74px max(20px, calc((100vw - 1180px) / 2)) auto auto;
  width: min(340px, 38vw);
  height: 220px;
  border: 1px solid rgba(185, 144, 74, 0.14);
  background:
    linear-gradient(135deg, rgba(185, 144, 74, 0.11), transparent 62%),
    repeating-linear-gradient(90deg, rgba(9, 8, 6, 0.04) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(9, 8, 6, 0.035) 0 1px, transparent 1px 18px);
  content: "";
  opacity: 0.72;
  pointer-events: none;
  transform: perspective(900px) rotateX(10deg) rotateY(-10deg);
}

.guide-intro {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: 20px;
  margin: -10px 0 28px;
  border: 1px solid rgba(201, 164, 90, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.9), rgba(239, 224, 189, 0.34)),
    rgba(255, 250, 240, 0.64);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.guide-intro strong {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.guide-intro p {
  margin: 0;
  color: rgba(18, 19, 15, 0.72);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 40px;
}

.guide-grid {
  display: flex;
  gap: 16px;
  overflow-x: hidden;
  scroll-behavior: auto;
  scrollbar-width: none;
  will-change: scroll-position;
}

.guide-grid::-webkit-scrollbar {
  display: none;
}

.guide-card,
.term-card,
.mistake-grid article,
.contact-form {
  border: 1px solid rgba(201, 164, 90, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 240, 0.76)),
    rgba(255, 250, 240, 0.78);
  box-shadow: var(--shadow-soft);
}

.guide-card {
  position: relative;
  display: grid;
  flex: 0 0 100%;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 0 30px;
  align-items: start;
  overflow: hidden;
  min-height: 470px;
  padding: 34px;
  isolation: isolate;
  border-color: rgba(234, 216, 173, 0.3);
  background:
    linear-gradient(145deg, rgba(255, 253, 245, 0.11), rgba(255, 253, 245, 0.04)),
    rgba(9, 8, 6, 0.92);
  color: #fffdf5;
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 245, 0.1),
    0 24px 64px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.guide-card::before {
  position: absolute;
  inset: auto -30% -45% -30%;
  height: 70%;
  background: radial-gradient(circle, rgba(47, 140, 133, 0.16), transparent 65%);
  content: "";
  transform: translateZ(-20px);
}

.guide-card::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--gold), transparent);
  content: "";
}

.guide-card:hover {
  border-color: rgba(234, 216, 173, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 245, 0.1),
    0 28px 72px rgba(0, 0, 0, 0.24);
  transform: translateY(-6px) rotateX(1.6deg) rotateY(-1.6deg);
}

.guide-card .icon-3d {
  border-color: rgba(234, 216, 173, 0.32);
  background:
    linear-gradient(145deg, rgba(255, 253, 245, 0.14), rgba(255, 253, 245, 0.06)),
    rgba(255, 253, 245, 0.05);
  color: var(--champagne);
}

.guide-card li {
  border-color: rgba(234, 216, 173, 0.16);
  background: rgba(255, 253, 245, 0.06);
}

.icon-3d {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(201, 164, 90, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(233, 237, 240, 0.68)),
    #fff;
  box-shadow:
    12px 18px 32px rgba(18, 19, 15, 0.13),
    inset -8px -8px 18px rgba(18, 19, 15, 0.04);
  color: var(--wine);
  transform: translateZ(36px) rotateX(8deg) rotateY(-12deg);
}

.icon-3d svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.guide-card .icon-3d {
  grid-row: 1 / span 4;
}

.guide-card .step,
.guide-card h3,
.guide-card p,
.guide-card ul {
  grid-column: 2;
}

.guide-card .step {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
}

.guide-card h3,
.term-card h3,
.mistake-grid h3 {
  margin: 8px 0 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.guide-card h3 {
  max-width: 760px;
  color: #fffdf5;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
}

.guide-card p,
.term-card p,
.mistake-grid p {
  margin: 12px 0 0;
  color: rgba(18, 19, 15, 0.67);
  font-size: 0.94rem;
}

.guide-card p {
  max-width: 860px;
  color: rgba(255, 253, 245, 0.72);
  font-size: 1rem;
  line-height: 1.72;
}

.guide-card ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.guide-card li {
  position: relative;
  min-height: 112px;
  padding: 18px 18px 18px 30px;
  border: 1px solid rgba(234, 216, 173, 0.16);
  border-radius: calc(var(--radius) - 6px);
  background: rgba(255, 253, 245, 0.06);
  color: rgba(255, 253, 245, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.guide-card li::before {
  position: absolute;
  top: 28px;
  left: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transform: translateY(-50%);
}

.guide-checklist {
  margin-top: 24px;
  border: 1px solid rgba(11, 10, 7, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 10, 7, 0.94), rgba(34, 23, 16, 0.92));
  color: var(--champagne);
  padding: 22px;
  box-shadow: var(--shadow);
}

.guide-checklist h3 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.guide-checklist div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guide-checklist span {
  border: 1px solid rgba(239, 224, 189, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.06);
  padding: 8px 12px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.84rem;
  font-weight: 800;
}

.routes {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(108, 38, 56, 0.08), transparent 34rem),
    linear-gradient(315deg, rgba(47, 140, 133, 0.1), transparent 28rem),
    var(--paper);
}

.route-layout {
  grid-template-columns: minmax(280px, 0.52fr) minmax(340px, 1fr);
}

.map-stage {
  overflow: hidden;
  border: 1px solid rgba(201, 164, 90, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 247, 242, 0.72)),
    #fff;
  box-shadow: var(--shadow);
  transform: none;
  transform-origin: center;
}

.map-stage svg {
  width: 100%;
  min-height: 420px;
}

.map-land {
  fill: rgba(115, 130, 114, 0.14);
  stroke: rgba(18, 19, 15, 0.08);
  stroke-width: 2;
}

.map-gridline {
  fill: none;
  stroke: rgba(18, 19, 15, 0.08);
  stroke-width: 1;
}

.route-line {
  fill: none;
  stroke: url(#routeLine);
  stroke-dasharray: 12 10;
  stroke-linecap: round;
  stroke-width: 4;
  animation: routeFlow 2.4s linear infinite;
}

.route-two {
  animation-delay: -0.6s;
}

.route-three {
  animation-delay: -1.1s;
}

.route-four {
  animation-delay: -1.6s;
}

@keyframes routeFlow {
  to {
    stroke-dashoffset: -88;
  }
}

.city circle {
  fill: var(--gold);
  stroke: #fff;
  stroke-width: 4;
}

.city.origin circle {
  fill: var(--wine);
  animation: pulse 1.8s ease-in-out infinite;
}

.city text {
  fill: rgba(18, 19, 15, 0.76);
  font-size: 18px;
  font-weight: 700;
}

.real-map-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(201, 164, 90, 0.22);
  border-radius: var(--radius);
  background: #d8ded6;
  box-shadow: var(--shadow);
  isolation: isolate;
  transform: none;
  transform-origin: center;
}

.map-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.1) sepia(0.03);
}

.tile-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(var(--tile-cols), 1fr);
  grid-template-rows: repeat(var(--tile-rows), 1fr);
  background: #d6e3df;
  filter: saturate(1.08) contrast(1.12) sepia(0.03);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.tile-map.is-loaded {
  opacity: 1;
}

.tile-map img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.real-map-panel::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.03), rgba(11, 10, 7, 0.06)),
    radial-gradient(circle at 47% 46%, rgba(201, 164, 90, 0.12), transparent 13rem);
  content: "";
  pointer-events: none;
}

.real-map-panel .route-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  min-height: 0;
  pointer-events: none;
}

.route-overlay marker path {
  fill: var(--wine);
}

.map-route {
  fill: none;
  stroke: var(--wine);
  stroke-dasharray: 12 12;
  stroke-linecap: round;
  stroke-width: 3.2;
  marker-end: url(#route-tip);
  filter: drop-shadow(0 3px 3px rgba(11, 10, 7, 0.18));
}

.route-overlay.is-animated .map-route {
  opacity: 0;
  transition: opacity 160ms ease;
}

.route-runner {
  fill: var(--champagne);
  stroke: var(--wine);
  stroke-width: 6;
  filter: drop-shadow(0 12px 18px rgba(11, 10, 7, 0.35));
}

.compact .map-route {
  marker-end: url(#route-tip-compact);
}

.map-route-two {
  stroke: var(--teal);
}

.map-route-three {
  stroke: var(--gold);
}

.origin-pulse {
  fill: var(--wine);
  stroke: #fffaf0;
  stroke-width: 6;
  animation: mapPulse 1.8s ease-in-out infinite;
}

@keyframes mapPulse {
  50% {
    r: 18;
    opacity: 0.76;
  }
}

.map-label {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  max-width: calc(100% - 36px);
  border: 1px solid rgba(255, 250, 240, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.84);
  box-shadow: 0 18px 36px rgba(11, 10, 7, 0.16);
  padding: 12px 14px;
  backdrop-filter: blur(14px);
}

.map-attribution {
  position: absolute;
  z-index: 4;
  left: 10px;
  bottom: 8px;
  color: rgba(11, 10, 7, 0.48);
  font-size: 0.62rem;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.72);
}

.map-label span,
.map-caption span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-label strong,
.map-caption strong {
  color: var(--ink);
  font-size: 0.92rem;
}

@keyframes pulse {
  50% {
    r: 16;
    opacity: 0.68;
  }
}

.mistakes {
  background:
    linear-gradient(145deg, #060504, #100d09 54%, #171015),
    var(--ink);
  color: #fffdf5;
}

.mistakes .section-kicker {
  border-color: rgba(255, 253, 245, 0.16);
  color: rgba(255, 253, 245, 0.58);
}

.mistakes .section-kicker > span:last-child,
.glossary .section-kicker > span:last-child {
  border-color: rgba(239, 224, 189, 0.22);
  background: rgba(255, 253, 245, 0.08);
  color: var(--champagne);
}

.mistakes .section-heading p {
  color: rgba(255, 253, 245, 0.68);
}

.guide-carousel,
.mistake-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  grid-template-rows: auto auto;
  gap: 14px;
  align-items: center;
}

.guide-carousel {
  margin-top: 22px;
  align-items: start;
}

.guide-carousel .carousel-btn {
  margin-top: 0;
  border-color: rgba(122, 24, 44, 0.22);
  background: rgba(11, 10, 7, 0.88);
  color: var(--champagne);
  box-shadow: 0 18px 42px rgba(11, 10, 7, 0.14);
}

.carousel-footer {
  display: grid;
  grid-column: 2;
  gap: 10px;
  margin-top: 4px;
}

.carousel-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(9, 8, 6, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carousel-caption strong {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
}

.carousel-progress {
  position: relative;
  overflow: hidden;
  height: 8px;
  border: 1px solid rgba(185, 144, 74, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.64), rgba(255, 250, 240, 0.32)),
    rgba(9, 8, 6, 0.055);
  box-shadow:
    inset 0 1px 2px rgba(9, 8, 6, 0.08),
    0 10px 28px rgba(9, 8, 6, 0.07);
}

.carousel-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, var(--wine), var(--gold), var(--champagne));
  box-shadow: 0 0 24px rgba(185, 144, 74, 0.46);
  transition: width 260ms ease;
}

.mistake-grid {
  display: flex;
  gap: 16px;
  overflow-x: hidden;
  scroll-behavior: auto;
  scrollbar-width: none;
  will-change: scroll-position;
}

.mistake-grid::-webkit-scrollbar {
  display: none;
}

.mistake-grid article {
  position: relative;
  flex: 0 0 calc((100% - 32px) / 3);
  overflow: hidden;
  min-height: 238px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 253, 245, 0.11), rgba(255, 253, 245, 0.04)),
    rgba(255, 253, 245, 0.04);
  color: #fffdf5;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.mistake-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
}

.mistake-grid article:hover {
  border-color: rgba(234, 216, 173, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 245, 0.1),
    0 26px 64px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}

.carousel-btn {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(239, 224, 189, 0.32);
  border-radius: 50%;
  background: rgba(255, 253, 245, 0.08);
  color: var(--champagne);
  cursor: pointer;
}

.carousel-btn:hover {
  background: rgba(201, 164, 90, 0.2);
  border-color: rgba(239, 224, 189, 0.48);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.mistake-grid span {
  color: var(--gold);
  font-weight: 800;
}

.mistake-grid p {
  color: rgba(255, 253, 245, 0.68);
}

.mistakes .carousel-caption {
  color: rgba(255, 253, 245, 0.58);
}

.mistakes .carousel-caption strong {
  color: var(--champagne);
}

.mistakes .carousel-progress {
  border-color: rgba(239, 224, 189, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 253, 245, 0.08), rgba(255, 253, 245, 0.035)),
    rgba(255, 253, 245, 0.05);
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.22),
    0 12px 34px rgba(0, 0, 0, 0.2);
}

.case-study {
  background:
    radial-gradient(circle at 12% 16%, rgba(172, 133, 64, 0.18), transparent 24rem),
    linear-gradient(135deg, rgba(75, 29, 42, 0.08), transparent 34rem),
    linear-gradient(180deg, rgba(255, 250, 241, 0.9), rgba(235, 226, 213, 0.98)),
    var(--paper);
}

.case-grid {
  grid-template-columns: minmax(320px, 1.05fr) minmax(280px, 0.88fr);
  align-items: start;
}

.case-visual-column {
  display: grid;
  gap: 16px;
  align-self: start;
}

.case-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(201, 164, 90, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.case-media::before {
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 253, 245, 0.22);
  border-radius: calc(var(--radius) - 8px);
  background:
    linear-gradient(90deg, rgba(255, 253, 245, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 253, 245, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  opacity: 0.58;
  pointer-events: none;
}

.case-media img {
  transform: scale(1.02);
}

.case-market-stack,
.case-market-badge {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 253, 245, 0.22);
  background:
    linear-gradient(135deg, rgba(18, 19, 15, 0.78), rgba(56, 38, 27, 0.64)),
    rgba(18, 19, 15, 0.62);
  color: #fffdf5;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.case-market-stack {
  top: 36px;
  left: 36px;
  display: grid;
  gap: 8px;
  width: min(260px, calc(100% - 72px));
  border-radius: calc(var(--radius) - 10px);
  padding: 14px;
}

.case-market-stack span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(239, 224, 189, 0.12);
  padding: 0 0 8px;
  color: rgba(255, 253, 245, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-market-stack span::after {
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 253, 245, 0.18));
  content: "";
}

.case-market-stack span:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.case-market-badge {
  right: 34px;
  bottom: 34px;
  display: grid;
  gap: 8px;
  max-width: min(360px, calc(100% - 68px));
  border-radius: var(--radius);
  padding: 18px 20px;
}

.case-market-badge > span {
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-market-badge strong {
  color: #fffdf5;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.04;
}

.case-side-panel,
.case-intel-card,
.case-research-strip,
.case-check-panel,
.case-decision-panel {
  border: 1px solid rgba(172, 133, 64, 0.18);
  border-radius: var(--radius);
  box-shadow:
    0 26px 70px rgba(40, 28, 17, 0.12),
    inset 0 1px 0 rgba(255, 253, 245, 0.58);
}

.case-side-panel {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(172, 133, 64, 0.18), transparent 16rem),
    linear-gradient(145deg, rgba(255, 253, 245, 0.86), rgba(232, 221, 205, 0.82));
  padding: 26px;
}

.case-side-panel .eyebrow {
  margin: 0;
  color: var(--gold-deep);
}

.case-side-panel h3 {
  margin: 14px 0 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  line-height: 0.98;
}

.case-side-panel p {
  margin: 18px 0 0;
  color: rgba(18, 19, 15, 0.68);
  line-height: 1.68;
}

.case-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.case-stat-grid article {
  min-height: 108px;
  border: 1px solid rgba(172, 133, 64, 0.16);
  border-radius: calc(var(--radius) - 12px);
  background:
    linear-gradient(145deg, rgba(255, 253, 245, 0.72), rgba(255, 250, 240, 0.3)),
    rgba(255, 253, 245, 0.34);
  padding: 16px;
}

.case-stat-grid strong {
  display: block;
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.case-stat-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(18, 19, 15, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-intel-card {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 0%, rgba(172, 133, 64, 0.22), transparent 16rem),
    linear-gradient(145deg, #0b0907, #17100d 58%, #25151d);
  color: #fffdf5;
}

.case-intel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(239, 224, 189, 0.12);
  padding: 22px;
}

.case-intel-head span {
  color: rgba(239, 224, 189, 0.66);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-intel-head strong {
  max-width: 15rem;
  color: #fffdf5;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
  text-align: right;
}

.case-intel-card ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-intel-card li {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  border-bottom: 1px solid rgba(239, 224, 189, 0.1);
  padding: 18px 22px;
}

.case-intel-card li:last-child {
  border-bottom: 0;
}

.case-intel-card li > span {
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-intel-card p {
  margin: 0;
  color: rgba(255, 253, 245, 0.68);
  font-size: 0.93rem;
  line-height: 1.55;
}

.case-research-strip {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(75, 29, 42, 0.08), transparent 18rem),
    rgba(255, 253, 245, 0.56);
  padding: 18px;
}

.case-research-strip > span {
  display: block;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}

.case-research-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.case-research-strip small {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(172, 133, 64, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 245, 0.54);
  color: rgba(18, 19, 15, 0.66);
  padding: 7px 11px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-check-panel {
  background:
    radial-gradient(circle at 8% 0%, rgba(172, 133, 64, 0.16), transparent 14rem),
    linear-gradient(145deg, rgba(255, 253, 245, 0.8), rgba(236, 226, 211, 0.82));
  padding: 24px;
}

.case-check-panel .eyebrow {
  margin: 0;
  color: var(--gold-deep);
}

.case-check-panel h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  line-height: 1;
}

.case-check-panel ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.case-check-panel li {
  position: relative;
  border: 1px solid rgba(18, 19, 15, 0.08);
  border-radius: calc(var(--radius) - 12px);
  background: rgba(255, 253, 245, 0.48);
  color: rgba(18, 19, 15, 0.7);
  padding: 12px 14px 12px 42px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.case-check-panel li::before {
  position: absolute;
  top: 13px;
  left: 14px;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(172, 133, 64, 0.36);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, var(--gold) 0 3px, transparent 4px),
    rgba(172, 133, 64, 0.1);
  content: "";
}

.case-decision-panel {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 10%, rgba(172, 133, 64, 0.24), transparent 16rem),
    linear-gradient(145deg, #100b08, #1a100e 58%, #291620);
  color: #fffdf5;
  padding: 24px;
}

.case-decision-panel > div:first-child {
  display: grid;
  gap: 12px;
  border-bottom: 1px solid rgba(239, 224, 189, 0.13);
  padding-bottom: 18px;
}

.case-decision-panel > div:first-child span {
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-decision-panel strong {
  max-width: 24rem;
  color: #fffdf5;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.18rem);
  font-weight: 600;
  line-height: 1;
}

.case-decision-panel dl {
  display: grid;
  gap: 1px;
  margin: 18px 0 0;
  background: rgba(239, 224, 189, 0.1);
}

.case-decision-panel dl > div {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 14px;
  background:
    linear-gradient(145deg, rgba(255, 253, 245, 0.05), rgba(255, 253, 245, 0.02)),
    rgba(12, 9, 7, 0.62);
  padding: 16px;
}

.case-decision-panel dt,
.case-decision-panel dd {
  margin: 0;
}

.case-decision-panel dt {
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-decision-panel dd {
  color: rgba(255, 253, 245, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
}

.market-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.market-pillars article {
  min-height: 210px;
  border: 1px solid rgba(172, 133, 64, 0.18);
  border-radius: calc(var(--radius) - 10px);
  background:
    linear-gradient(145deg, rgba(255, 253, 245, 0.86), rgba(236, 226, 211, 0.78)),
    var(--paper);
  padding: 18px;
  box-shadow: 0 18px 46px rgba(41, 29, 18, 0.08);
}

.market-pillars article > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(172, 133, 64, 0.24);
  border-radius: 999px;
  background: rgba(172, 133, 64, 0.1);
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 900;
}

.market-pillars h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.38rem;
  line-height: 1;
}

.market-pillars p {
  margin: 12px 0 0;
  color: rgba(18, 19, 15, 0.66);
  font-size: 0.88rem;
  line-height: 1.55;
}

.story-flow {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  counter-reset: story-step;
  list-style: none;
}

.story-flow li {
  position: relative;
  counter-increment: story-step;
  min-height: 86px;
  border: 1px solid rgba(18, 19, 15, 0.08);
  border-radius: calc(var(--radius) - 12px);
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.72), rgba(232, 220, 203, 0.72)),
    rgba(255, 250, 240, 0.56);
  padding: 18px 18px 18px 64px;
  color: rgba(18, 19, 15, 0.72);
  box-shadow: 0 14px 40px rgba(41, 29, 18, 0.07);
}

.story-flow li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(185, 145, 70, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(172, 133, 64, 0.92), rgba(108, 72, 32, 0.92));
  color: #fffdf5;
  content: counter(story-step, decimal-leading-zero);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.story-flow li::after {
  position: absolute;
  top: 58px;
  bottom: 18px;
  left: 33px;
  width: 1px;
  background: linear-gradient(180deg, rgba(172, 133, 64, 0.36), transparent);
  content: "";
}

.story-flow strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
}

.market-board {
  grid-column: 1 / -1;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(239, 224, 189, 0.17);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0%, rgba(172, 133, 64, 0.22), transparent 16rem),
    linear-gradient(145deg, #0b0907, #17100e 58%, #25151d);
  color: #fffdf5;
  box-shadow:
    0 34px 90px rgba(18, 12, 8, 0.2),
    inset 0 1px 0 rgba(255, 253, 245, 0.08);
}

.market-board-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(239, 224, 189, 0.13);
  padding: 22px;
}

.market-board .eyebrow {
  margin: 0;
  color: var(--champagne);
}

.market-board h3 {
  margin: 10px 0 0;
  max-width: 42rem;
  color: #fffdf5;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  line-height: 1;
}

.market-board-code {
  flex: 0 0 auto;
  border: 1px solid rgba(239, 224, 189, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 245, 0.06);
  color: rgba(239, 224, 189, 0.72);
  padding: 8px 12px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.market-board-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(239, 224, 189, 0.12);
}

.market-board-grid article {
  min-height: 172px;
  background:
    linear-gradient(145deg, rgba(255, 253, 245, 0.055), rgba(255, 253, 245, 0.022)),
    rgba(10, 8, 6, 0.68);
  padding: 22px;
}

.market-board-grid article > span {
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-board-grid p,
.market-takeaway {
  color: rgba(255, 253, 245, 0.68);
  line-height: 1.62;
}

.market-board-grid p {
  margin: 14px 0 0;
  font-size: 0.92rem;
}

.market-takeaway {
  margin: 0;
  border-top: 1px solid rgba(239, 224, 189, 0.13);
  padding: 20px 22px 22px;
  color: rgba(255, 253, 245, 0.78);
  font-size: 0.98rem;
}

.glossary {
  background:
    linear-gradient(135deg, rgba(172, 133, 64, 0.15), transparent 30rem),
    linear-gradient(315deg, rgba(11, 86, 82, 0.13), transparent 28rem),
    linear-gradient(145deg, #080706, #141008 58%, #1b1217);
  color: #fffaf0;
  clip-path: none !important;
  transform: none !important;
  opacity: 1 !important;
  filter: none !important;
  animation: none !important;
  transition: none !important;
}

.glossary::before {
  display: none;
}

.glossary .section-kicker {
  border-color: rgba(239, 224, 189, 0.18);
  color: rgba(239, 224, 189, 0.62);
}

.glossary .glossary-head p {
  color: rgba(255, 250, 240, 0.68);
}

.glossary-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 420px);
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  border: 1px solid rgba(239, 224, 189, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.11);
  color: var(--champagne);
  padding: 0 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 240, 0.08),
    0 18px 46px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fffaf0;
}

.search-box input::placeholder {
  color: rgba(255, 250, 240, 0.54);
}

.term-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.term-card {
  min-height: 204px;
  padding: 18px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.glossary .term-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(239, 224, 189, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.11), rgba(255, 250, 240, 0.045)),
    rgba(11, 10, 7, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 240, 0.1),
    0 24px 60px rgba(0, 0, 0, 0.16);
}

.glossary .term-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
}

.glossary .term-card h3 {
  color: var(--champagne);
}

.glossary .term-card p {
  color: rgba(255, 250, 240, 0.66);
}

.term-card:hover {
  border-color: rgba(201, 164, 90, 0.34);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.term-card.is-hidden {
  display: none;
}

.contact {
  padding-bottom: 78px;
  background:
    linear-gradient(180deg, rgba(248, 243, 234, 0.74), rgba(255, 250, 241, 0.94)),
    var(--paper);
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 0.68fr);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 240, 0.78));
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(18, 19, 15, 0.66);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 19, 15, 0.13);
  border-radius: var(--radius);
  outline: 0;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  padding: 13px 14px;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(47, 140, 133, 0.12);
}

.contact-form .primary-btn {
  width: 100%;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 700;
}

.mini-map {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  margin-top: 44px;
  border: 1px solid rgba(201, 164, 90, 0.22);
  border-radius: var(--radius);
  background: #d8ded6;
  box-shadow: var(--shadow);
  transform: none;
}

.map-caption {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  max-width: calc(100% - 36px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 12px 14px;
  box-shadow: 0 16px 32px rgba(18, 19, 15, 0.12);
  backdrop-filter: blur(12px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px max(20px, calc((100vw - 1180px) / 2)) 34px;
  border-top: 1px solid var(--line);
  color: rgba(18, 19, 15, 0.58);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
}

.back-to-top {
  border: 1px solid rgba(11, 10, 7, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.72);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  min-height: 42px;
  padding: 0 14px;
}

.back-to-top:hover {
  border-color: rgba(201, 164, 90, 0.42);
  background: var(--ink);
  color: var(--champagne);
}

@media (max-width: 1040px) {
  .site-header {
    gap: 10px;
  }

  .nav-links {
    display: flex;
    flex: 1 1 auto;
    justify-content: flex-start;
    width: auto;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    border: 1px solid rgba(11, 10, 7, 0.11);
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.6);
    padding: 7px 12px;
    font-size: 0.82rem;
    font-weight: 800;
  }

  .nav-links a::after {
    display: none;
  }

  .section-heading,
  .split,
  .route-layout,
  .case-grid,
  .contact-grid,
  .guide-intro,
  .glossary-head {
    grid-template-columns: 1fr;
  }

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

  .guide-card {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 520px;
    padding: 28px;
  }

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

  .hero-dossier {
    display: none;
  }

  .hero-ticker {
    display: none;
  }

  .about-credentials {
    grid-template-columns: 1fr;
  }

  .mistake-grid article {
    flex-basis: calc((100% - 16px) / 2);
  }

  .hero h1 {
    max-width: 590px;
    font-size: 4.25rem;
  }

  .copy-block h2,
  .section-heading h2,
  .route-copy h2,
  .glossary-head h2 {
    font-size: 2.9rem;
  }

  .route-layout,
  .case-grid {
    gap: 36px;
  }

  .case-media {
    position: relative;
    top: auto;
    min-height: 560px;
  }

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

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 60px;
    padding: 8px 10px;
  }

  .brand {
    flex: 0 0 auto;
    min-width: 0;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 118px;
  }

  .hero h1 {
    font-size: 2.85rem;
    line-height: 1;
    max-width: 22rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-content {
    padding-top: 42px;
  }

  .hero-metrics,
  .term-grid {
    grid-template-columns: 1fr;
  }

  .guide-carousel,
  .mistake-carousel {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .guide-carousel .carousel-btn {
    margin-top: 0;
  }

  .guide-card {
    display: block;
    min-height: 0;
    padding: 22px;
  }

  .guide-card .icon-3d {
    margin-bottom: 18px;
  }

  .guide-card h3 {
    font-size: 1.35rem;
  }

  .guide-card p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .guide-card li {
    min-height: 0;
  }

  .mistake-grid article {
    flex-basis: 100%;
    min-height: 250px;
    padding: 22px;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
  }

  .hero-metrics div {
    min-height: 86px;
    padding: 18px;
  }

  .visual-panel,
  .case-media {
    min-height: 360px;
  }

  .case-media::before {
    inset: 12px;
    background-size: 36px 36px;
  }

  .case-market-stack {
    top: 22px;
    left: 22px;
    width: calc(100% - 44px);
  }

  .case-market-badge {
    right: 22px;
    bottom: 22px;
    max-width: calc(100% - 44px);
  }

  .case-market-badge strong {
    font-size: 1.25rem;
  }

  .case-side-panel {
    padding: 22px;
  }

  .case-stat-grid,
  .market-pillars,
  .market-board-grid {
    grid-template-columns: 1fr;
  }

  .case-intel-head {
    display: grid;
  }

  .case-intel-head strong {
    text-align: left;
  }

  .case-intel-card li {
    grid-template-columns: 1fr;
  }

  .case-decision-panel dl > div {
    grid-template-columns: 1fr;
  }

  .market-pillars article {
    min-height: 0;
  }

  .story-flow li {
    min-height: 0;
    padding-right: 16px;
  }

  .market-board-head {
    display: grid;
  }

  .map-stage {
    transform: none;
  }

  .map-stage svg {
    min-height: 300px;
  }

  .city text {
    font-size: 24px;
  }

  .intro-copy {
    transform: translateY(0);
  }

  .intro-copy h1 {
    font-size: 3rem;
  }

  .copy-block h2,
  .section-heading h2,
  .route-copy h2,
  .glossary-head h2 {
    font-size: 2.2rem;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .intro {
    display: none;
  }

  .section,
  .section.reveal-pending,
  .section.is-visible {
    transform: none;
    opacity: 1;
    filter: none;
    clip-path: none;
  }

  .section.reveal-pending:not(.hero):not(.glossary) > *,
  .section.is-visible:not(.hero):not(.glossary) > * {
    transform: none;
    opacity: 1;
    filter: none;
    animation: none;
  }
}
