:root {
  --bg: #f5f2ec;
  --surface: #fbf9f5;
  --surface-strong: #f0ebe3;
  --text: #1d1b19;
  --muted: #6e675e;
  --line: rgba(29, 27, 25, 0.12);
  --line-strong: rgba(29, 27, 25, 0.2);
  --accent: #2f4f46;
  --accent-soft: rgba(47, 79, 70, 0.1);
  --shadow: 0 18px 40px rgba(22, 18, 13, 0.06);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1200px;
  --header-height: 68px;
  --brand-menu-width: clamp(356px, 30vw, 432px);
  --ease: 220ms ease;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.82), transparent 30%),
    linear-gradient(180deg, #f8f6f2 0%, var(--bg) 100%);
}

body.home-page {
  --hero-header-progress: 0;
  background: #2f6651;
  overflow-x: clip;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.page-shell {
  min-height: 100vh;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background:
    linear-gradient(
      90deg,
      rgba(5, 14, 12, 0.84) 0%,
      rgba(13, 24, 22, 0.8) 42%,
      rgba(29, 36, 34, 0.74) 100%
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-page .site-header {
  position: sticky;
  top: 0;
  margin-bottom: calc(0px - var(--header-height));
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
  transition: border-color 300ms ease;
}

.home-page .site-header .brand,
.home-page .hero-header-actions,
.home-page .hero-client-login,
.home-page .hero-menu-toggle {
  pointer-events: auto;
}

main section[id],
main article[id] {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.is-side-menu-open .site-header {
  background:
    linear-gradient(
      90deg,
      rgba(5, 14, 12, 0.86) 0%,
      rgba(13, 24, 22, 0.82) 42%,
      rgba(29, 36, 34, 0.76) 100%
    ),
    linear-gradient(180deg, rgba(5, 14, 12, 0.24), rgba(5, 14, 12, 0.05));
  border-bottom-color: rgba(255, 255, 255, 0.055);
}

.home-page.is-side-menu-open .site-header {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 24px;
}

.home-page .site-header__inner {
  justify-content: space-between;
  width: calc(100% - 148px);
  max-width: none;
  padding-top: 82px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  min-width: max-content;
  margin-left: clamp(8px, 1vw, 18px);
  margin-right: 0;
  transition: opacity 300ms ease, transform 300ms ease;
}

.menu-toggle {
  width: 32px;
  height: 24px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  transition: color 220ms ease, opacity 220ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.is-side-menu-open .menu-toggle {
  color: #fff;
  opacity: 1;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 260ms ease, opacity 220ms ease, width 220ms ease;
}

.menu-toggle span:nth-child(2) {
  width: 17px;
}

.menu-toggle:hover span:nth-child(1),
.menu-toggle:focus-visible span:nth-child(1) {
  width: 23px;
  transform: translateX(1px);
}

.menu-toggle:hover span:nth-child(2),
.menu-toggle:focus-visible span:nth-child(2) {
  width: 19px;
  transform: translateX(4px);
}

.menu-toggle:hover span:nth-child(3),
.menu-toggle:focus-visible span:nth-child(3) {
  width: 22px;
  transform: translateX(2px);
}

.is-side-menu-open .menu-toggle span:nth-child(1) {
  width: 23px;
  transform: translateX(1px);
}

.is-side-menu-open .menu-toggle span:nth-child(2) {
  width: 19px;
  transform: translateX(4px);
}

.is-side-menu-open .menu-toggle span:nth-child(3) {
  width: 22px;
  transform: translateX(2px);
}

.brand__home {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand__lockup {
  display: grid;
  gap: 4px;
  line-height: 1;
}

.brand__name {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.96);
  white-space: nowrap;
  text-transform: uppercase;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  transition: color 250ms ease;
}

.brand__name--secondary {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
  padding-left: 1px;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  transition: color 250ms ease;
}

.side-menu {
  position: fixed;
  inset: 0;
  z-index: 18;
  width: 100vw;
  margin: 0;
  min-height: 0;
  max-height: none;
  display: flex;
  flex-direction: column;
  padding: clamp(190px, 23vh, 260px) clamp(56px, 9vw, 132px) clamp(42px, 7vh, 78px);
  overflow: hidden;
  color: #4a443c;
  border: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  background:
    radial-gradient(72% 76% at 18% 18%, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.11) 34%, rgba(255, 255, 255, 0) 66%),
    radial-gradient(58% 66% at 88% 76%, rgba(114, 131, 112, 0.11) 0%, rgba(114, 131, 112, 0.035) 45%, rgba(114, 131, 112, 0) 72%),
    linear-gradient(90deg, rgba(47, 102, 81, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #f7f1e8 0%, #f6efe6 52%, #f4ede4 100%);
  background-size: auto, auto, 72px 72px, auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(74, 68, 60, 0.055);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 360ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.is-side-menu-open .side-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.is-side-menu-closing .side-menu {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.side-menu__nav {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  column-gap: clamp(54px, 10vw, 160px);
  row-gap: clamp(28px, 5vh, 56px);
  margin-top: 0;
  width: min(1040px, 78vw);
  align-self: flex-start;
}

.side-menu__nav a {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: clamp(10px, 1vw, 16px);
  align-items: start;
  padding: 0;
  min-width: 0;
  color: #4a443c;
  opacity: 0;
  transform: translateY(20px);
  transition: color 220ms ease, opacity 360ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.side-menu__nav a:nth-child(-n + 4) {
  grid-column: 1;
}

.side-menu__nav a:nth-child(n + 5) {
  grid-column: 2;
}

.side-menu__nav a:nth-child(1),
.side-menu__nav a:nth-child(5) {
  grid-row: 1;
}

.side-menu__nav a:nth-child(2),
.side-menu__nav a:nth-child(6) {
  grid-row: 2;
}

.side-menu__nav a:nth-child(3),
.side-menu__nav a:nth-child(7) {
  grid-row: 3;
}

.side-menu__nav a:nth-child(4),
.side-menu__nav a:nth-child(8) {
  grid-row: 4;
}

.is-side-menu-open .side-menu__nav a {
  opacity: 1;
  transform: translateY(0);
}

.is-side-menu-open .side-menu__nav a:nth-child(1) {
  transition-delay: 90ms;
}

.is-side-menu-open .side-menu__nav a:nth-child(2) {
  transition-delay: 150ms;
}

.is-side-menu-open .side-menu__nav a:nth-child(3) {
  transition-delay: 210ms;
}

.is-side-menu-open .side-menu__nav a:nth-child(4) {
  transition-delay: 270ms;
}

.is-side-menu-open .side-menu__nav a:nth-child(5) {
  transition-delay: 330ms;
}

.is-side-menu-open .side-menu__nav a:nth-child(6) {
  transition-delay: 390ms;
}

.is-side-menu-open .side-menu__nav a:nth-child(7) {
  transition-delay: 450ms;
}

.is-side-menu-open .side-menu__nav a:nth-child(8) {
  transition-delay: 510ms;
}

.side-menu__nav a::after {
  content: none;
}

.side-menu__nav a:hover,
.side-menu__nav a:focus-visible {
  color: #3f3a34;
}

.side-menu__nav a:hover::after,
.side-menu__nav a:focus-visible::after {
  transform: none;
}

.side-menu__number {
  display: inline-block;
  width: 52px;
  padding-top: 0.2em;
  font-size: clamp(0.94rem, 1.1vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1;
  color: rgba(74, 68, 60, 0.58);
  justify-self: start;
  transform: translateY(-0.08em);
  transition: color 220ms ease, transform 220ms ease, opacity 320ms ease;
}

.side-menu__nav strong {
  display: block;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: clamp(3.05rem, 6.25vw, 6.45rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.94;
  color: #4a443c;
  transition: color 220ms ease, transform 220ms ease;
}

.side-menu__nav a:hover .side-menu__number,
.side-menu__nav a:focus-visible .side-menu__number {
  color: #3f3a34;
  transform: translateX(4px) translateY(-0.08em);
}

.side-menu__nav a:hover .side-menu__title,
.side-menu__nav a:focus-visible .side-menu__title {
  color: #3f3a34;
  transform: translateX(4px);
}

.side-menu__footer {
  position: absolute;
  z-index: 1;
  left: auto;
  right: clamp(56px, 9vw, 132px);
  bottom: clamp(42px, 7vh, 78px);
  margin-top: 0;
  padding-left: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  padding-top: 0;
  color: #4a443c;
}

.side-menu__footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(74, 68, 60, 0.25);
  border-radius: 6px;
  background: transparent;
  line-height: 0;
  color: #4a443c;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.side-menu__footer a:hover,
.side-menu__footer a:focus-visible {
  border-color: rgba(74, 68, 60, 0.42);
  background: transparent;
  color: #3f3a34;
  transform: translateY(-2px);
}

.side-menu__footer svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.side-menu .side-menu__map {
  z-index: 0;
  opacity: 0.075;
}

.home-page .brand__name,
.home-page .brand__name--secondary,
.home-page .nav-link,
.home-page .nav-trigger,
.home-page .nav-toggle {
  color: rgba(250, 247, 241, 0.92);
}

.home-page .brand .brand__name {
  color: rgba(255, 250, 235, 0.92);
}

.home-page .brand .brand__name--secondary {
  color: rgba(255, 250, 235, 0.72);
}

.home-page .nav-link:hover,
.home-page .nav-link:focus-visible,
.home-page .nav-trigger:hover,
.home-page .nav-trigger:focus-visible,
.home-page .nav-item.is-open > .nav-trigger {
  background: rgba(8, 22, 18, 0.62);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.home-page .nav-item--language::before {
  background: rgba(255, 255, 255, 0.18);
}

.home-page .nav-toggle {
  border-color: rgba(255, 255, 255, 0.18);
}

.home-page .site-nav,
.home-page .nav-toggle {
  display: none;
}

.hero-header-actions {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: clamp(24px, 2.2vw, 32px);
  opacity: 1;
  transform: translateY(0);
  transform-origin: center top;
  transition: opacity 300ms ease, transform 300ms ease;
}

.hero-client-login {
  display: inline-flex;
  align-items: center;
  align-self: center;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(246, 255, 236, 0.68);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  text-decoration: none;
  box-shadow: none;
  opacity: 1;
  transform: none;
  transform-origin: center top;
  transition: color 220ms ease;
}

.hero-client-login:hover,
.hero-client-login:focus-visible {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 245, 0.94);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  box-shadow: none;
}

.is-side-menu-open.home-page .hero-client-login {
  border: 0;
  color: rgba(74, 68, 60, 0.68);
}

body.is-side-menu-open .hero-client-login {
  border: 0;
  background: transparent;
  color: rgba(74, 68, 60, 0.68);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: none;
}

body:not(.home-page):not(.locations-page):not(.request-access-page) .hero-client-login {
  position: static;
  top: auto;
  right: auto;
  z-index: auto;
}

.home-page .hero-menu-toggle {
  width: auto;
  height: auto;
  margin-left: auto;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 250, 235, 0.92);
  font-family: var(--font-sans);
  font-size: clamp(2.9rem, 4.8vw, 4.8rem);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  transform: translateY(0);
  transform-origin: center top;
  transition:
    color 250ms ease,
    opacity 300ms ease,
    transform 300ms ease;
}

.hero-header-actions .hero-menu-toggle {
  margin-left: 0;
}

.home-page .hero-menu-toggle:hover,
.home-page .hero-menu-toggle:focus-visible,
.is-side-menu-open.home-page .hero-menu-toggle {
  color: #fbf3e6;
}

.is-side-menu-open.home-page .hero-menu-toggle {
  color: #4a443c;
}

.home-page .hero-menu-toggle span {
  position: relative;
  display: block;
  width: 0.92em;
  height: 0.54em;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  line-height: 0;
  text-indent: -999px;
  transform: none;
  transform-origin: center;
}

.home-page .hero-menu-toggle:hover span,
.home-page .hero-menu-toggle:focus-visible span {
  width: 0.92em;
  height: 0.54em;
  transform: none;
}

.home-page .hero-menu-toggle span::before,
.home-page .hero-menu-toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  display: block;
  width: 0.86em;
  height: 0.075em;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

.home-page .hero-menu-toggle span::before {
  top: 0.16em;
}

.home-page .hero-menu-toggle span::after {
  bottom: 0.16em;
}

.is-side-menu-open.home-page .hero-menu-toggle span {
  width: 0.78em;
  height: 0.78em;
  overflow: visible;
  color: transparent;
  text-indent: 0;
  transform: rotate(45deg);
}

.is-side-menu-open.home-page .hero-menu-toggle span::before,
.is-side-menu-open.home-page .hero-menu-toggle span::after {
  left: 50%;
  top: 50%;
  bottom: auto;
  width: 0.72em;
  height: 0.075em;
  background: #4a443c;
  transform: translate(-50%, -50%);
}

.is-side-menu-open.home-page .hero-menu-toggle span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.home-page .brand {
  margin-left: 0;
  opacity: 1;
  transform: translateY(0);
  transform-origin: left top;
  transition:
    opacity 300ms ease,
    transform 300ms ease;
}

.home-page.header-theme-cream:not(.is-side-menu-open) .brand .brand__name,
.home-page.header-theme-cream:not(.is-side-menu-open) .brand .brand__name--secondary,
.home-page.header-theme-cream:not(.is-side-menu-open) .brand__descriptor,
.home-page.header-theme-cream:not(.is-side-menu-open) .hero-client-login,
.home-page.header-theme-cream:not(.is-side-menu-open) .hero-menu-toggle {
  color: #3f3a34;
}

.home-page.header-theme-cream:not(.is-side-menu-open) .hero-client-login {
  border-color: rgba(63, 58, 52, 0.22);
  background: rgba(63, 58, 52, 0.025);
  color: rgba(63, 58, 52, 0.62);
}

.home-page.header-theme-cream:not(.is-side-menu-open) .brand .brand__name--secondary,
.home-page.header-theme-cream:not(.is-side-menu-open) .brand__descriptor {
  color: rgba(63, 58, 52, 0.72);
}

.home-page.header-theme-green:not(.is-side-menu-open) .brand .brand__name,
.home-page.header-theme-dark:not(.is-side-menu-open) .brand .brand__name,
.home-page.header-theme-green:not(.is-side-menu-open) .hero-client-login,
.home-page.header-theme-dark:not(.is-side-menu-open) .hero-client-login,
.home-page.header-theme-green:not(.is-side-menu-open) .hero-menu-toggle,
.home-page.header-theme-dark:not(.is-side-menu-open) .hero-menu-toggle {
  color: rgba(255, 250, 235, 0.92);
}

.home-page.header-theme-green:not(.is-side-menu-open) .hero-client-login,
.home-page.header-theme-dark:not(.is-side-menu-open) .hero-client-login {
  color: rgba(246, 255, 236, 0.82);
}

.home-page.header-theme-green:not(.is-side-menu-open) .hero-client-login:hover,
.home-page.header-theme-green:not(.is-side-menu-open) .hero-client-login:focus-visible,
.home-page.header-theme-dark:not(.is-side-menu-open) .hero-client-login:hover,
.home-page.header-theme-dark:not(.is-side-menu-open) .hero-client-login:focus-visible {
  border-color: rgba(246, 255, 236, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 250, 235, 0.08), rgba(255, 250, 235, 0.032));
  color: rgba(255, 255, 245, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 245, 0.18);
}

.home-page.header-theme-green:not(.is-side-menu-open) .brand .brand__name--secondary,
.home-page.header-theme-dark:not(.is-side-menu-open) .brand .brand__name--secondary,
.home-page.header-theme-green:not(.is-side-menu-open) .brand__descriptor,
.home-page.header-theme-dark:not(.is-side-menu-open) .brand__descriptor {
  color: rgba(255, 250, 235, 0.72);
}

.home-page:not(.is-side-menu-open) .hero-client-login {
  min-height: 26px;
  padding: 0 8px;
  border-color: rgba(246, 255, 236, 0.16);
  background: transparent;
  color: rgba(246, 255, 236, 0.58);
  font-size: 0.56rem;
  font-weight: 620;
  letter-spacing: 0.16em;
  box-shadow: none;
}

.home-page:not(.is-side-menu-open) .hero-client-login:hover,
.home-page:not(.is-side-menu-open) .hero-client-login:focus-visible {
  border-color: rgba(246, 255, 236, 0.28);
  background: rgba(255, 250, 235, 0.018);
  color: rgba(255, 255, 245, 0.78);
  box-shadow: none;
}

.home-page.header-theme-cream:not(.is-side-menu-open) .hero-client-login {
  border-color: rgba(63, 58, 52, 0.14);
  background: transparent;
  color: rgba(63, 58, 52, 0.5);
}

.home-page.header-theme-cream:not(.is-side-menu-open) .hero-client-login:hover,
.home-page.header-theme-cream:not(.is-side-menu-open) .hero-client-login:focus-visible {
  border-color: rgba(63, 58, 52, 0.24);
  background: rgba(63, 58, 52, 0.018);
  color: rgba(63, 58, 52, 0.7);
}

.home-page:not(.is-side-menu-open) .hero-header-actions .hero-client-login,
.home-page.header-theme-green:not(.is-side-menu-open) .hero-header-actions .hero-client-login,
.home-page.header-theme-dark:not(.is-side-menu-open) .hero-header-actions .hero-client-login {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(246, 255, 236, 0.68);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  text-decoration: none;
  box-shadow: none;
}

.home-page:not(.is-side-menu-open) .hero-header-actions .hero-client-login::after,
.home-page.header-theme-green:not(.is-side-menu-open) .hero-header-actions .hero-client-login::after,
.home-page.header-theme-dark:not(.is-side-menu-open) .hero-header-actions .hero-client-login::after {
  content: none;
}

.home-page:not(.is-side-menu-open) .hero-header-actions .hero-client-login:hover,
.home-page:not(.is-side-menu-open) .hero-header-actions .hero-client-login:focus-visible,
.home-page.header-theme-green:not(.is-side-menu-open) .hero-header-actions .hero-client-login:hover,
.home-page.header-theme-green:not(.is-side-menu-open) .hero-header-actions .hero-client-login:focus-visible,
.home-page.header-theme-dark:not(.is-side-menu-open) .hero-header-actions .hero-client-login:hover,
.home-page.header-theme-dark:not(.is-side-menu-open) .hero-header-actions .hero-client-login:focus-visible {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 245, 0.9);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  box-shadow: none;
}

.home-page.header-theme-cream:not(.is-side-menu-open) .hero-header-actions .hero-client-login {
  border: 0;
  background: transparent;
  color: rgba(63, 58, 52, 0.62);
}

.home-page.header-theme-cream:not(.is-side-menu-open) .hero-header-actions .hero-client-login:hover,
.home-page.header-theme-cream:not(.is-side-menu-open) .hero-header-actions .hero-client-login:focus-visible {
  border: 0;
  background: transparent;
  color: rgba(63, 58, 52, 0.82);
}

.home-page.is-smart-header-hidden:not(.is-side-menu-open) .hero-header-actions {
  opacity: 0;
  transform: translateY(-120%);
  pointer-events: none;
}

.home-page.is-hero-brand-cleared:not(.is-side-menu-open) .brand,
.home-page.is-hero-brand-cleared:not(.is-side-menu-open) .hero-header-actions,
.home-page.is-past-hero-header:not(.is-side-menu-open) .brand {
  opacity: 0;
  transform: translateY(-120%);
  pointer-events: none;
}

.home-page.is-smart-header-hidden:not(.is-side-menu-open) .hero-header-actions {
  pointer-events: none;
}

.home-page.is-hero-header-hidden .brand,
.home-page.is-hero-header-hidden .hero-header-actions,
.home-page.is-smart-header-hidden:not(.is-side-menu-open) .hero-header-actions {
  pointer-events: none;
}

.home-page .brand__home {
  min-height: 74px;
}

.home-page .brand__lockup {
  gap: 7px;
}

.home-page .brand__name {
  font-size: 1.58rem;
  letter-spacing: 0.15em;
}

.home-page .brand__name--secondary {
  font-size: 0.94rem;
  letter-spacing: 0.21em;
}

.home-page .brand__descriptor {
  display: block;
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.045em;
  color: rgba(255, 250, 235, 0.72);
  transition: color 250ms ease;
  text-transform: none;
  white-space: nowrap;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

.home-page.is-side-menu-open .brand__name {
  color: #3f3a34;
}

.home-page.is-side-menu-open .brand__name--secondary {
  color: rgba(63, 58, 52, 0.72);
}

.home-page.is-side-menu-open .brand__descriptor {
  color: rgba(74, 68, 60, 0.72);
}

.site-nav {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  justify-content: flex-end;
  margin-left: auto;
  min-width: 0;
  padding-left: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.nav-toggle__icon {
  width: 18px;
  height: 18px;
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 50%;
  height: 1.5px;
  background: currentColor;
  transform: translateY(-50%);
}

.nav-toggle__icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item--language {
  margin-left: 28px;
  padding-left: 16px;
}

.nav-item--language::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  width: 1px;
  height: 16px;
  background: rgba(29, 27, 25, 0.08);
  transform: translateY(-50%);
}

.nav-link,
.nav-trigger {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 36px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29, 27, 25, 0.74);
  font-synthesis: none;
  text-rendering: geometricPrecision;
  transition: background-color 260ms ease, color 260ms ease;
}

.nav-item:not(.nav-item--cta) > .nav-link,
.nav-item:not(.nav-item--cta) > .nav-trigger {
  position: static;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-trigger:hover,
.nav-trigger:focus-visible,
.nav-item.is-open > .nav-trigger {
  background: rgba(8, 22, 18, 0.62);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.nav-item--cta {
  margin-left: 24px;
  flex: 0 0 auto;
}

@media (min-width: 981px) {
  .nav-item--cta {
    margin-right: clamp(8px, 1vw, 18px);
    align-self: center;
  }
}

.nav-link--cta {
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(190, 207, 196, 0.2);
  border-radius: 13px;
  background: rgba(8, 25, 20, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(224, 232, 225, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(238, 232, 221, 0.9);
  transform: translateX(3px);
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.nav-link--cta:hover,
.nav-link--cta:focus-visible {
  background: rgba(20, 48, 39, 0.68);
  border-color: rgba(200, 216, 205, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(235, 240, 234, 0.12),
    0 14px 32px rgba(14, 46, 36, 0.24);
  transform: translateX(3px) translateY(-1px);
}

.home-page .nav-link--cta {
  background: rgba(8, 25, 20, 0.58);
  border-color: rgba(190, 207, 196, 0.2);
  color: rgba(238, 232, 221, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(224, 232, 225, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.16);
}

.home-page .nav-link--cta:hover,
.home-page .nav-link--cta:focus-visible {
  background: rgba(20, 48, 39, 0.68);
  border-color: rgba(200, 216, 205, 0.34);
  color: rgba(248, 243, 234, 0.96);
}

.chevron {
  width: 7px;
  height: 7px;
  flex: 0 0 8px;
  border-right: 1.25px solid currentColor;
  border-bottom: 1.25px solid currentColor;
  display: block; 
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--ease);
}

.nav-item.is-open .chevron {
  transform: translateY(1px) rotate(225deg);
}

.site-nav .nav-trigger > .chevron {
  display: block;
  align-self: center;
  transform-origin: 50% 50%;
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 156px;
  width: max-content;
  max-width: 240px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(
      135deg,
      rgba(5, 14, 12, 0.9) 0%,
      rgba(13, 24, 22, 0.88) 48%,
      rgba(29, 36, 34, 0.86) 100%
    );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 260ms ease 80ms,
    transform 280ms ease 80ms,
    visibility 0s linear 360ms;
}

.nav-item.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 260ms ease 45ms,
    transform 280ms ease 45ms,
    visibility 0s linear 0s;
}

.dropdown a {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  display: block;
  padding: 11px 16px;
  border-radius: 12px;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(245, 240, 232, 0.92);
  font-synthesis: none;
  text-rendering: geometricPrecision;
  transition: background-color 220ms ease, color 220ms ease;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.dropdown__primary {
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero {
  padding: 112px 0 88px;
}

.hero--image {
  position: relative;
  min-height: 104vh;
  padding: 214px 0 176px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-slides,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1400ms ease;
  background-size: cover;
  background-position: center 58%;
  background-repeat: no-repeat;
  transform: scale(1.01);
}

.hero-slide:first-child {
  background-position: center 44%;
  filter: brightness(1.1) contrast(0.9) saturate(0.88);
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  z-index: 0;
  background:
    radial-gradient(58% 46% at 50% 51%, rgba(3, 14, 12, 0.34) 0%, rgba(4, 13, 12, 0.18) 52%, rgba(4, 13, 12, 0) 80%),
    radial-gradient(48% 66% at 82% 48%, rgba(36, 76, 63, 0.13) 0%, rgba(22, 50, 43, 0.06) 48%, rgba(5, 8, 9, 0) 78%),
    linear-gradient(180deg, rgba(5, 14, 12, 0.68) 0%, rgba(13, 24, 22, 0.42) 30%, rgba(29, 36, 34, 0.2) 66%, rgba(5, 8, 9, 0.34) 100%),
    radial-gradient(72% 76% at 78% 48%, rgba(24, 54, 49, 0.18) 0%, rgba(13, 24, 22, 0.08) 42%, rgba(5, 8, 9, 0) 78%),
    linear-gradient(90deg, rgba(5, 14, 12, 0.82) 0%, rgba(13, 24, 22, 0.54) 34%, rgba(29, 36, 34, 0.22) 68%, rgba(5, 8, 9, 0.1) 100%);
}

.hero--image::after {
  content: "";
  position: absolute;
  inset: auto -1px -1px;
  height: 300px;
  background:
    radial-gradient(120% 90% at 18% 40%, rgba(24, 50, 45, 0.2) 0%, rgba(11, 27, 28, 0.08) 38%, rgba(5, 8, 9, 0) 70%),
    linear-gradient(
      180deg,
      rgba(7, 17, 20, 0) 0%,
      rgba(7, 20, 23, 0.1) 20%,
      rgba(7, 18, 20, 0.32) 45%,
      rgba(5, 10, 12, 0.66) 72%,
      rgba(5, 7, 8, 0.94) 100%
    );
  z-index: 0;
  pointer-events: none;
}

.hero--image + .section {
  position: relative;
  background: linear-gradient(180deg, rgba(251, 249, 245, 0.28) 0%, rgba(251, 249, 245, 0) 160px);
}

.hero--image .hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  grid-template-columns: minmax(0, 40rem);
  justify-content: center;
  align-items: center;
  gap: 0;
}

.hero--image .hero-copy {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(720px, calc(100% - 48px));
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translate(-50%, -50%);
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slider-controls {
  position: absolute;
  right: 24px;
  bottom: 70px;
  z-index: 1;
  display: flex;
  gap: 10px;
}

.hero-slider-control {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(23, 21, 19, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(248, 243, 236, 0.9);
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.hero-slider-control:hover,
.hero-slider-control:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.hero-slider-control__arrow {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.hero-slider-control__arrow--left {
  transform: rotate(-135deg);
  margin-left: 3px;
}

.hero-slider-control__arrow--right {
  transform: rotate(45deg);
  margin-right: 3px;
}

.hero--image .eyebrow,
.hero--image h1,
.hero--image p {
  color: #f8f3ec;
}

.hero--image .eyebrow {
  margin: 0 0 22px;
  font-weight: 600;
}

.hero--image p {
  max-width: 560px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 251, 245, 0.96);
  text-shadow:
    0 1px 10px rgba(3, 5, 4, 0.42),
    0 8px 26px rgba(3, 5, 4, 0.24);
}

.hero--image [data-hero-body],
.hero--image [data-hero-actions] {
  opacity: 0;
  transform: translateY(10px);
}

.hero--image [data-hero-body].is-visible,
.hero--image [data-hero-actions].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero--image [data-hero-body] {
  margin-top: 30px;
  text-wrap: pretty;
  transition: opacity 520ms ease, transform 520ms ease;
}

.hero--image [data-hero-actions] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  transition: opacity 560ms ease, transform 560ms ease;
}

.hero--image h1 {
  max-width: 12ch;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.hero--image .button--primary {
  background: rgba(249, 244, 236, 0.96);
  color: #1d1b19;
}

.hero--image .button--secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: #f8f3ec;
  background: rgba(255, 255, 255, 0.06);
}

.hero--image .hero-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(27, 24, 22, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 48px rgba(8, 7, 6, 0.24);
}

.hero--image .hero-panel__label,
.hero--image .hero-panel__value,
.hero--image .hero-panel p {
  color: #f6f1ea;
}

.hero--editorial {
  isolation: isolate;
  height: clamp(600px, 82svh, 820px);
  min-height: 0;
  max-height: clamp(600px, 82svh, 820px);
  flex: 0 0 clamp(600px, 82svh, 820px);
  box-sizing: border-box;
  padding: 0;
  align-items: stretch;
  background: #2f6651;
  color: #f3ead9;
  max-width: 100vw;
  overflow: hidden;
  contain: layout paint;
}

.hero--editorial::after {
  display: none;
}

.hero-georgia-outline {
  position: absolute;
  right: clamp(-120px, -6vw, -42px);
  bottom: clamp(104px, 18vh, 156px);
  z-index: 0;
  width: clamp(560px, 50vw, 920px);
  max-width: none;
  opacity: 0.085;
  filter: brightness(0) saturate(100%);
  pointer-events: none;
  user-select: none;
}

.hero--editorial .hero-kinetic {
  position: absolute;
  inset: clamp(58px, 9vh, 96px) 0 clamp(96px, 14vh, 144px);
  z-index: 1;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 2.45vh, 34px);
  overflow-x: hidden;
  overflow-y: visible;
  pointer-events: auto;
}

.hero-marquee {
  width: 100%;
  min-width: 0;
  padding-block: 0.52em;
  margin-block: -0.52em;
  overflow: hidden;
  color: rgba(247, 238, 221, 0.92);
  opacity: 0.96;
  transform: none;
  pointer-events: auto;
}

.hero-marquee--reverse {
  color: rgba(238, 228, 207, 0.8);
  opacity: 0.9;
}

.hero-marquee--slow {
  color: rgba(247, 238, 221, 0.88);
  opacity: 0.92;
}

.hero-marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: heroMarqueeLeft 68s linear infinite;
}

.hero-marquee--reverse .hero-marquee__track {
  animation-name: heroMarqueeRight;
  animation-duration: 76s;
  animation-delay: -25s;
}

.hero-marquee--slow .hero-marquee__track {
  animation-duration: 84s;
  animation-delay: -42s;
}

.hero-marquee:hover .hero-marquee__track,
.hero-marquee:focus-within .hero-marquee__track {
  animation-play-state: paused;
}

.hero-marquee__track span {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: clamp(2.18rem, 4.55vw, 5.45rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

.hero-editorial__content {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.hero-editorial__message {
  width: min(480px, 100%);
  margin: 0 0 clamp(20px, 4vh, 48px);
  color: rgba(248, 239, 224, 0.9);
}

.hero-editorial__message p {
  max-width: 440px;
  margin: 0;
  color: rgba(248, 239, 224, 0.88);
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
  line-height: 1.75;
}

.hero-editorial__message .hero-editorial__kicker {
  margin-bottom: 16px;
  color: #fbf3e6;
  font-size: clamp(1.28rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-access-cluster {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  right: clamp(56px, 7vw, 118px);
  bottom: clamp(58px, 9vh, 96px);
  z-index: 2;
  width: auto;
}

.hero-access-row {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 18px;
  width: 100%;
}

.hero-access-marker {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 176px;
  padding: 22px 20px 20px;
  border: 1px solid rgba(244, 236, 218, 0.38);
  background: transparent;
  color: rgba(244, 236, 218, 0.74);
  display: flex;
  flex-direction: column;
}

.hero-access-marker::before,
.hero-access-marker::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.hero-access-marker::before {
  left: -1px;
  top: -1px;
  border-left: 1px solid rgba(244, 236, 218, 0.62);
  border-top: 1px solid rgba(244, 236, 218, 0.62);
}

.hero-access-marker::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid rgba(244, 236, 218, 0.62);
  border-bottom: 1px solid rgba(244, 236, 218, 0.62);
}

.hero--editorial .hero-access-marker__eyebrow {
  max-width: none;
  margin: 0;
  color: rgba(244, 236, 218, 0.88);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.12;
  text-shadow: none;
}

.hero--editorial .hero-access-marker__copy {
  max-width: none;
  margin: 18px 0 0;
  color: rgba(244, 236, 218, 0.74);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
  text-shadow: none;
}

.hero-access-marker__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
}

.hero-access-marker__secondary {
  display: inline-flex;
  align-items: center;
  position: relative;
  min-height: 32px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.hero-access-marker__secondary {
  gap: 6px;
  color: rgba(244, 236, 218, 0.82);
  background:
    linear-gradient(currentColor, currentColor) left calc(100% - 2px) / 76% 1px no-repeat;
  transition:
    background-size 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.hero-access-marker__secondary:hover,
.hero-access-marker__secondary:focus-visible {
  color: rgba(244, 236, 218, 0.96);
  background-size: 100% 1px;
}

.hero-access-marker__secondary span {
  display: inline-block;
  color: currentColor;
  transform: translateX(0);
  transition: transform 220ms ease;
}

.hero-access-marker__secondary:hover span,
.hero-access-marker__secondary:focus-visible span {
  transform: translateX(4px);
}

.hero-access-primary-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 232px;
  min-height: 44px;
  margin-top: 0;
  padding: 0 24px;
  border: 1px solid rgba(244, 236, 218, 0.92);
  background: rgba(244, 236, 218, 0.9);
  color: #214d3e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    border-color 220ms ease,
    color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.hero-access-primary-cta:hover,
.hero-access-primary-cta:focus-visible {
  border-color: rgba(244, 236, 218, 1);
  background: rgba(244, 236, 218, 0.98);
  color: #183a2f;
  transform: translateY(-3px);
}

@keyframes heroMarqueeLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes heroMarqueeRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.hero__grid,
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 44px;
  align-items: start;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #173f34;
}

.hero h1,
.page-intro h1,
.internal-hero h1 {
  margin: 0;
  max-width: 10ch;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 6.6rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.hero p,
.page-intro p,
.internal-hero p {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--ease), background-color var(--ease), border-color var(--ease), color var(--ease);
}

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

.button--primary {
  background: var(--text);
  color: #f8f6f2;
}

.button--secondary {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.42);
}

.panel,
.stat-card,
.location-card,
.contact-card,
.page-card,
.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 249, 245, 0.72);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 28px;
}

.hero-panel__label,
.section-label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #173f34;
}

.hero-panel__value {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.hero-panel p {
  margin: 18px 0 0;
  max-width: 30ch;
  font-size: 0.98rem;
  line-height: 1.75;
}

.section {
  padding: 32px 0 88px;
}

.section--spacious {
  padding-top: 88px;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.65fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 32px;
}

.section-header h2 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.title-gap {
  margin-top: 12px;
}

.text-measure {
  max-width: 58ch;
}

.text-measure--wide {
  max-width: 56ch;
}

.stack-lg {
  margin-top: 24px;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.stats-grid,
.locations-grid,
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cards-grid--single {
  grid-template-columns: 1fr;
}

.stat-card,
.location-card,
.contact-card,
.page-card {
  padding: 26px;
}

.stat-card strong,
.location-card strong,
.page-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.stat-card span,
.location-card span,
.contact-card span,
.page-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.location-card h3,
.contact-card h3,
.page-card h3,
.feature-block h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.1;
}

.location-card p,
.contact-card p,
.page-card p,
.feature-block p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.location-card a,
.page-card a,
.text-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.location-card a::after,
.page-card a::after,
.text-link::after {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.split-panel {
  padding: 34px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 18px;
}

.feature-list li {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.feature-list strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

.accordion-trigger span:first-child {
  font-size: 1.02rem;
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.accordion-panel__inner {
  overflow: hidden;
}

.accordion-panel__content {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.8;
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-item.is-open .chevron {
  transform: rotate(225deg) translateY(-1px);
}

.page-intro,
.internal-hero {
  padding: 96px 0 40px;
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 24px;
}

.contact-form {
  padding: 30px;
}

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

.field {
  display: grid;
  gap: 10px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.84rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--text);
  transition: border-color var(--ease), background-color var(--ease);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(29, 27, 25, 0.28);
  background: rgba(255, 255, 255, 0.78);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.site-footer {
  padding: 44px 0 28px;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.locations-page .site-footer {
  padding-top: 26px;
}

.locations-page .site-footer__inner {
  position: relative;
  width: min(calc(100% - clamp(40px, 6vw, 118px)), 1540px);
  max-width: none;
  border-top: 0;
}

.locations-page .site-footer__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  border-top: 1px solid var(--line);
  transform: translateX(-50%);
}

.locations-page .locations-footer,
.request-access-page .locations-footer {
  margin-top: 0;
  padding: clamp(72px, 7vw, 96px) 0 clamp(18px, 1.8vw, 26px);
  background: #172720;
  color: rgba(255, 251, 237, 0.78);
}

.locations-footer__inner {
  width: min(calc(100% - clamp(40px, 6vw, 118px)), 1540px);
  margin: 0 auto;
}

.locations-footer__top {
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(56px, 7vw, 118px);
  align-items: start;
}

.locations-footer__home {
  display: inline-grid;
  gap: 10px;
  color: #fffbed;
  text-decoration: none;
}

.locations-footer__lockup {
  display: grid;
  gap: 3px;
  text-transform: uppercase;
}

.locations-footer__name {
  display: block;
  color: #fffbed;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.05;
}

.locations-footer__name--secondary {
  font-size: 0.76rem;
  letter-spacing: 0.3em;
}

.locations-footer__descriptor {
  color: rgba(255, 251, 237, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.locations-footer__brand p {
  max-width: 340px;
  margin: 32px 0 0;
  color: rgba(255, 251, 237, 0.68);
  font-size: 0.98rem;
  line-height: 1.72;
}

.locations-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.locations-footer__socials a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 251, 237, 0.28);
  color: rgba(255, 251, 237, 0.74);
  text-decoration: none;
  transition: border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.locations-footer__socials a:hover,
.locations-footer__socials a:focus-visible {
  border-color: rgba(255, 251, 237, 0.58);
  color: #fffbed;
  transform: translateY(-1px);
}

.locations-footer__socials svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.locations-footer__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
}

.locations-footer__column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.locations-footer__column h2 {
  margin: 0 0 10px;
  color: rgba(178, 196, 185, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.locations-footer__column a {
  color: rgba(255, 251, 237, 0.72);
  font-size: 0.92rem;
  line-height: 1.35;
  text-decoration: none;
  transition: color 220ms ease, transform 220ms ease;
}

.locations-footer__column a:hover,
.locations-footer__column a:focus-visible {
  color: rgba(255, 251, 237, 0.96);
  transform: translateX(2px);
}

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

.locations-footer__notes {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(420px, 0.56fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
  margin-top: clamp(58px, 6vw, 88px);
  padding: clamp(28px, 3.2vw, 42px) 0;
  border-top: 1px solid rgba(255, 251, 237, 0.16);
  overflow: visible;
}

.locations-footer__notes-copy h2 {
  max-width: 520px;
  margin: 0;
  color: #fffbed;
  font-size: clamp(1.72rem, 2.35vw, 2.55rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.04;
}

.locations-footer__notes-copy p {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255, 251, 237, 0.62);
  font-size: 0.96rem;
  line-height: 1.66;
}

.locations-footer__notes-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.locations-footer__notes-copy {
  position: relative;
  z-index: 1;
}

.locations-footer__notes-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 52px;
  border: 1px solid rgba(255, 251, 237, 0.2);
  background: rgba(255, 251, 237, 0.035);
  transition: border-color 220ms ease, background-color 220ms ease;
}

.locations-footer__notes-field:focus-within {
  border-color: rgba(255, 251, 237, 0.42);
  background: rgba(255, 251, 237, 0.055);
}

.locations-footer__notes-field input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fffbed;
  font: inherit;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  outline: none;
  padding: 0 18px;
}

.locations-footer__notes-field input::placeholder {
  color: rgba(255, 251, 237, 0.42);
}

.locations-footer__notes-field button {
  min-width: 148px;
  border: 0;
  border-left: 1px solid rgba(255, 251, 237, 0.18);
  background: rgba(255, 251, 237, 0.92);
  color: #172720;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease;
}

.locations-footer__notes-field button:hover,
.locations-footer__notes-field button:focus-visible {
  background: #fffbed;
  color: #0f1d18;
}

.locations-footer__notes-message {
  min-height: 18px;
  margin: 0;
  color: rgba(255, 251, 237, 0.56);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.locations-footer__notes-message.is-error {
  color: rgba(255, 216, 198, 0.82);
}

.locations-footer__notes-form.is-submitted .locations-footer__notes-field {
  border-color: rgba(178, 196, 185, 0.42);
}

.locations-footer__map {
  position: absolute;
  right: clamp(10px, 1.2vw, 24px);
  bottom: clamp(-4px, -0.25vw, 4px);
  z-index: 0;
  width: clamp(160px, 13vw, 220px);
  height: auto;
  opacity: 0.046;
  filter: invert(96%) sepia(12%) saturate(363%) hue-rotate(337deg) brightness(108%) contrast(101%);
  pointer-events: none;
  user-select: none;
}

.locations-footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 0;
  color: rgba(255, 251, 237, 0.48);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* Locations page
   ========================= */

.locations-page {
  background: #f7f1e8;
  color: #2d2924;
  overflow-x: clip;
}

.locations-page .site-header {
  position: sticky;
  top: 0;
  background: #2f6651;
  border-bottom: 1px solid rgba(255, 250, 235, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.locations-page.is-side-menu-open .site-header,
.request-access-page.is-side-menu-open .site-header {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.request-access-page.is-side-menu-open:not(.home-page):not(.locations-page) .site-header {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.locations-page .site-header__inner,
.request-access-page .site-header__inner {
  justify-content: space-between;
  width: calc(100% - clamp(48px, 7vw, 132px));
  max-width: none;
  min-height: 132px;
  padding-top: 38px;
  padding-bottom: 26px;
}

body.locations-page:not(.is-side-menu-open) .site-header {
  background: #f7f1e8;
  border-bottom-color: rgba(47, 102, 81, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.locations-page .brand,
.request-access-page .brand {
  margin-left: 0;
}

.locations-page .brand__home,
.request-access-page .brand__home {
  min-height: 74px;
  transform: none;
}

.locations-page .brand__lockup,
.request-access-page .brand__lockup {
  gap: 7px;
}

.locations-page .brand__name,
.request-access-page .brand__name {
  font-size: 1.58rem;
  letter-spacing: 0.15em;
  color: rgba(255, 250, 235, 0.92);
}

body.locations-page:not(.is-side-menu-open) .brand__name {
  color: #20332d;
}

.locations-page .brand__name--secondary,
.request-access-page .brand__name--secondary {
  font-size: 0.94rem;
  letter-spacing: 0.21em;
  color: rgba(255, 250, 235, 0.72);
}

body.locations-page:not(.is-side-menu-open) .brand__name--secondary {
  color: rgba(32, 51, 45, 0.72);
}

.locations-page .brand__descriptor,
.request-access-page .brand__descriptor {
  display: block;
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.045em;
  color: rgba(255, 250, 235, 0.72);
  text-transform: none;
  white-space: nowrap;
}

body.locations-page:not(.is-side-menu-open) .brand__descriptor {
  color: rgba(32, 51, 45, 0.66);
}

.locations-page .hero-menu-toggle,
.request-access-page .hero-menu-toggle {
  width: auto;
  height: auto;
  margin-left: auto;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 250, 235, 0.92);
  font-family: var(--font-sans);
  font-size: clamp(2.9rem, 4.8vw, 4.8rem);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  transition: color 250ms ease;
}

body.locations-page:not(.is-side-menu-open) .hero-menu-toggle {
  color: #20332d;
}

body.locations-page:not(.is-side-menu-open) .hero-client-login {
  border: 0;
  background: transparent;
  color: rgba(32, 51, 45, 0.76);
  box-shadow: none;
}

body.locations-page:not(.is-side-menu-open) .hero-client-login:hover,
body.locations-page:not(.is-side-menu-open) .hero-client-login:focus-visible {
  border: 0;
  color: #20332d;
}

body:not(.home-page):not(.locations-page) .site-header {
  background: #2f6651;
  border-bottom-color: rgba(255, 250, 235, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body:not(.home-page):not(.locations-page) .site-header__inner {
  justify-content: space-between;
  width: calc(100% - 148px);
  max-width: none;
  min-height: 132px;
  padding-top: 38px;
  padding-bottom: 26px;
}

body:not(.home-page):not(.locations-page) .brand {
  margin-left: 0;
}

body:not(.home-page):not(.locations-page) .brand > .menu-toggle:not(.hero-menu-toggle) {
  position: fixed;
  top: 38px;
  right: 74px;
  z-index: 520;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 250, 235, 0.92);
  font-family: var(--font-sans);
  font-size: clamp(2.9rem, 4.8vw, 4.8rem);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: 0;
  transform: none;
}

body:not(.home-page):not(.locations-page) .brand > .menu-toggle:not(.hero-menu-toggle) span {
  position: relative;
  left: auto;
  top: auto;
  display: block;
  width: 0.92em;
  height: 0.54em;
  overflow: hidden;
  background: transparent;
  line-height: 0;
  text-indent: -999px;
  transform: none;
}

body:not(.home-page):not(.locations-page) .brand > .menu-toggle:not(.hero-menu-toggle) span:nth-child(2),
body:not(.home-page):not(.locations-page) .brand > .menu-toggle:not(.hero-menu-toggle) span:nth-child(3) {
  display: none;
}

body:not(.home-page):not(.locations-page) .brand > .menu-toggle:not(.hero-menu-toggle) span::before,
body:not(.home-page):not(.locations-page) .brand > .menu-toggle:not(.hero-menu-toggle) span::after {
  content: "";
  position: absolute;
  left: 50%;
  display: block;
  width: 0.86em;
  height: 0.075em;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

body:not(.home-page):not(.locations-page) .brand > .menu-toggle:not(.hero-menu-toggle) span::before {
  top: 0.16em;
}

body:not(.home-page):not(.locations-page) .brand > .menu-toggle:not(.hero-menu-toggle) span::after {
  bottom: 0.16em;
}

body:not(.home-page):not(.locations-page) .brand__home {
  min-height: 74px;
  transform: none;
}

body:not(.home-page):not(.locations-page) .brand__lockup {
  gap: 7px;
}

body:not(.home-page):not(.locations-page) .brand__name {
  font-size: 1.58rem;
  letter-spacing: 0.15em;
  color: rgba(255, 250, 235, 0.92);
}

body:not(.home-page):not(.locations-page) .brand__name--secondary {
  font-size: 0.94rem;
  letter-spacing: 0.21em;
  color: rgba(255, 250, 235, 0.72);
}

body:not(.home-page):not(.locations-page) .brand__descriptor {
  display: block;
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.045em;
  color: rgba(255, 250, 235, 0.72);
  text-transform: none;
  white-space: nowrap;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

body:not(.home-page):not(.locations-page) .site-nav,
body:not(.home-page):not(.locations-page) .nav-toggle {
  display: none;
}

.locations-page .hero-menu-toggle:hover,
.locations-page .hero-menu-toggle:focus-visible,
.locations-page.is-side-menu-open .hero-menu-toggle,
.request-access-page .hero-menu-toggle:hover,
.request-access-page .hero-menu-toggle:focus-visible,
.request-access-page.is-side-menu-open .hero-menu-toggle {
  color: #fbf3e6;
}

.locations-page.is-side-menu-open .hero-menu-toggle,
.request-access-page.is-side-menu-open .hero-menu-toggle {
  color: #4a443c;
}

.locations-page .hero-menu-toggle span,
.request-access-page .hero-menu-toggle span {
  position: relative;
  display: block;
  width: 0.92em;
  height: 0.54em;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  line-height: 0;
  text-indent: -999px;
  transform: none;
  transform-origin: center;
}

.locations-page .hero-menu-toggle span::before,
.locations-page .hero-menu-toggle span::after,
.request-access-page .hero-menu-toggle span::before,
.request-access-page .hero-menu-toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  display: block;
  width: 0.86em;
  height: 0.075em;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

.locations-page .hero-menu-toggle span::before,
.request-access-page .hero-menu-toggle span::before {
  top: 0.16em;
}

.locations-page .hero-menu-toggle span::after,
.request-access-page .hero-menu-toggle span::after {
  bottom: 0.16em;
}

.locations-page .hero-menu-toggle:hover span,
.locations-page .hero-menu-toggle:focus-visible span,
.request-access-page .hero-menu-toggle:hover span,
.request-access-page .hero-menu-toggle:focus-visible span {
  width: 0.92em;
  height: 0.54em;
  transform: none;
}

.locations-page.is-side-menu-open .hero-menu-toggle span,
.request-access-page.is-side-menu-open .hero-menu-toggle span {
  width: 0.78em;
  height: 0.78em;
  overflow: visible;
  color: transparent;
  text-indent: 0;
  transform: rotate(45deg);
}

.locations-page.is-side-menu-open .hero-menu-toggle span::before,
.locations-page.is-side-menu-open .hero-menu-toggle span::after,
.request-access-page.is-side-menu-open .hero-menu-toggle span::before,
.request-access-page.is-side-menu-open .hero-menu-toggle span::after {
  left: 50%;
  top: 50%;
  bottom: auto;
  width: 0.72em;
  height: 0.075em;
  background: #4a443c;
  transform: translate(-50%, -50%);
}

.locations-page.is-side-menu-open .hero-menu-toggle span::after,
.request-access-page.is-side-menu-open .hero-menu-toggle span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Shared open menu header treatment */
.is-side-menu-open .site-header {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.is-side-menu-open .site-header__inner {
  justify-content: space-between;
  width: calc(100% - 148px);
  max-width: none;
  padding-top: 82px;
}

.locations-page.is-side-menu-open .site-header__inner {
  width: calc(100% - clamp(48px, 7vw, 132px));
  min-height: 132px;
  padding-top: 38px;
  padding-bottom: 26px;
}

.is-side-menu-open .site-nav,
.is-side-menu-open .nav-toggle {
  display: none;
}

.is-side-menu-open .brand {
  margin-left: 0;
}

.is-side-menu-open .brand__home {
  min-height: 74px;
  transform: none;
}

.is-side-menu-open .brand__lockup {
  gap: 7px;
}

.is-side-menu-open .brand__name {
  font-size: 1.58rem;
  letter-spacing: 0.15em;
  color: #3f3a34;
}

.is-side-menu-open .brand__name--secondary {
  font-size: 0.94rem;
  letter-spacing: 0.21em;
  color: rgba(63, 58, 52, 0.72);
}

.is-side-menu-open .brand__descriptor {
  display: block;
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.045em;
  color: rgba(74, 68, 60, 0.72);
  text-transform: none;
  white-space: nowrap;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

.is-side-menu-open .brand > .menu-toggle:not(.hero-menu-toggle) {
  position: fixed;
  top: clamp(58px, 7vw, 90px);
  right: 74px;
  z-index: 520;
  width: 0.78em;
  height: 0.78em;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4a443c;
  font-size: clamp(2.9rem, 4.8vw, 4.8rem);
  line-height: 1;
  transform: none;
}

.is-side-menu-open .brand > .menu-toggle:not(.hero-menu-toggle) span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 0.72em;
  height: 0.075em;
  border-radius: 999px;
  background: currentColor;
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg);
}

.is-side-menu-open .brand > .menu-toggle:not(.hero-menu-toggle) span::before,
.is-side-menu-open .brand > .menu-toggle:not(.hero-menu-toggle) span::after {
  content: none;
}

.is-side-menu-open .brand > .menu-toggle:not(.hero-menu-toggle) span:nth-child(2) {
  display: block;
  opacity: 0;
}

.is-side-menu-open .brand > .menu-toggle:not(.hero-menu-toggle) span:nth-child(3) {
  display: block;
  transform: translate(-50%, -50%) rotate(-45deg);
}

body:not(.home-page).is-side-menu-open .side-menu {
  opacity: 1;
  transform: translateY(0);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

body:not(.home-page).is-side-menu-closing .side-menu {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 360ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.locations-page-main {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 38%),
    linear-gradient(90deg, rgba(47, 102, 81, 0.055) 1px, transparent 1px),
    #f7f1e8;
  background-size: auto, 72px 72px, auto;
}

.locations-editorial {
  min-height: calc(100svh - 96px);
  padding: clamp(22px, 4vw, 46px) 0 clamp(88px, 9vw, 132px);
}

.locations-page-main.is-locations-directory .locations-editorial {
  padding-bottom: clamp(34px, 5vw, 68px);
}

.locations-editorial__shell {
  width: min(calc(100% - clamp(40px, 6vw, 118px)), 1540px);
  max-width: none;
}

.locations-editorial__intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(320px, 0.68fr);
  gap: clamp(28px, 7vw, 118px);
  align-items: start;
  max-width: 1180px;
  margin-bottom: clamp(44px, 6vw, 82px);
}

.locations-editorial__intro span {
  display: block;
  color: #173f34;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.locations-editorial__intro p {
  margin: 0;
  max-width: 660px;
  color: rgba(63, 58, 52, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.28rem);
  line-height: 1.75;
}

.locations-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(18px, 3vw, 44px);
}

.locations-tab {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(63, 58, 52, 0.36);
  border-radius: 0;
  background: transparent;
  color: #3f3a34;
  font-size: clamp(0.88rem, 0.92vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background-color 240ms ease, border-color 240ms ease, color 240ms ease, transform 240ms ease;
}

.locations-tab:hover,
.locations-tab:focus-visible {
  border-color: rgba(23, 39, 32, 0.74);
  color: #172720;
  transform: translateY(-1px);
}

.locations-tab.is-active {
  border-color: #172720;
  background: #172720;
  color: #fffbed;
}

.locations-active {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(42px, 7vw, 116px);
  align-items: start;
}

.locations-active__content {
  min-width: 0;
}

.locations-active__meta {
  margin-bottom: 18px;
  color: rgba(23, 39, 32, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.locations-active h1 {
  margin: 0;
  max-width: 100%;
  color: #211d19;
  font-family: var(--font-sans);
  font-size: clamp(4.8rem, 12.2vw, 12.6rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.82;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.locations-page-main.is-locations-directory .locations-active h1 {
  font-size: clamp(4.9rem, 12.4vw, 12.8rem);
}

.locations-active__content > p {
  margin: clamp(34px, 4vw, 54px) 0 0;
  max-width: 760px;
  color: rgba(63, 58, 52, 0.78);
  font-size: clamp(0.98rem, 1.12vw, 1.16rem);
  line-height: 1.72;
}

.locations-page-main.is-locations-directory .locations-active__content > p {
  margin-top: clamp(52px, 5vw, 72px);
  font-size: clamp(0.96rem, 1.08vw, 1.12rem);
  line-height: 1.68;
}

.locations-intel {
  display: grid;
  margin-top: clamp(34px, 4vw, 54px);
  border-top: 1px solid rgba(63, 58, 52, 0.2);
}

.locations-page-main:not(.is-locations-directory) .locations-intel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(30px, 4vw, 58px);
  row-gap: clamp(26px, 3.2vw, 42px);
  margin-top: clamp(38px, 4.4vw, 62px);
  border-top: 0;
}

.locations-page-main:not(.is-locations-directory) .locations-intel::before {
  content: "Location Intelligence";
  grid-column: 1 / -1;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(63, 58, 52, 0.22);
  color: rgba(23, 39, 32, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.locations-page-main.is-locations-directory .locations-intel {
  margin-top: clamp(10px, 1.4vw, 18px);
}

.locations-page-main.is-locations-directory .locations-scroll-cue {
  margin-top: 12px;
}

.locations-scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: rgba(63, 58, 52, 0.54);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 260ms ease;
}

.locations-scroll-cue span {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(63, 58, 52, 0.28);
  transition: border-color 260ms ease;
}

.locations-scroll-cue[hidden] {
  display: none;
}

.locations-scroll-cue::after {
  content: "↓";
  color: currentColor;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1;
  transform: translateY(0);
  transition: transform 260ms ease;
}

.locations-scroll-cue:hover,
.locations-scroll-cue:focus-visible {
  color: rgba(63, 58, 52, 0.72);
}

.locations-scroll-cue:hover span,
.locations-scroll-cue:focus-visible span {
  border-color: rgba(63, 58, 52, 0.52);
}

.locations-scroll-cue:hover::after,
.locations-scroll-cue:focus-visible::after {
  transform: translateY(3px);
}

.locations-intel__row {
  display: grid;
  grid-template-columns: minmax(170px, 0.3fr) minmax(0, 0.7fr);
  gap: clamp(24px, 3.2vw, 46px);
  padding: 24px 0 26px;
  border-bottom: 1px solid rgba(63, 58, 52, 0.14);
}

.locations-page-main:not(.is-locations-directory) .locations-intel__row {
  display: block;
  min-height: 178px;
  padding: clamp(20px, 2.3vw, 28px) 0 0;
  border-top: 1px solid rgba(63, 58, 52, 0.16);
  border-right: 0;
  border-bottom: 0;
}

.locations-page-main:not(.is-locations-directory) .locations-intel__row:nth-child(odd) {
  padding-left: clamp(24px, 2.6vw, 38px);
  border-left: 1px solid rgba(63, 58, 52, 0.08);
}

.locations-intel__heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  margin-bottom: 16px;
}

.locations-intel__number {
  color: rgba(23, 39, 32, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}

.locations-intel__row strong {
  color: rgba(23, 39, 32, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.locations-intel__row span {
  max-width: 640px;
  color: rgba(63, 58, 52, 0.76);
  font-size: clamp(0.96rem, 1vw, 1.04rem);
  line-height: 1.78;
}

.locations-intel__description {
  display: block;
}

.locations-active__media {
  align-self: start;
  margin: clamp(88px, 7vw, 128px) 0 0;
}

.locations-active__visual {
  position: relative;
  align-self: start;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(63, 58, 52, 0.2);
  transform: none;
}

.locations-active__visual::before,
.locations-active__visual::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  pointer-events: none;
}

.locations-active__visual::before {
  right: -1px;
  top: -1px;
  border-top: 2px solid #172720;
  border-right: 2px solid #172720;
}

.locations-active__visual::after {
  left: -1px;
  bottom: -1px;
  border-left: 2px solid rgba(63, 58, 52, 0.34);
  border-bottom: 2px solid rgba(63, 58, 52, 0.34);
}

.locations-active__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.locations-active__visual--editorial {
  height: clamp(670px, 46vw, 720px);
  margin-top: clamp(0px, 0.8vw, 12px);
  padding: 0;
  border: 0;
}

.locations-active__visual--editorial[hidden],
.locations-active__visual--single[hidden],
.locations-active__media[hidden] {
  display: none;
}

.locations-active__visual--editorial::before,
.locations-active__visual--editorial::after {
  content: none;
}

.why-georgia-deck {
  --deck-ease: cubic-bezier(0.22, 1, 0.36, 1);
  isolation: isolate;
  overflow: visible;
  transform: translate(84px, -18px);
}

.why-georgia-deck__card {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(100%, 620px);
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(63, 58, 52, 0.14);
  background: rgba(63, 58, 52, 0.08);
  box-shadow: 0 20px 46px rgba(45, 41, 36, 0.13);
  transform:
    translate3d(calc(-50% + var(--deck-x)), var(--deck-y), 0)
    rotate(var(--deck-r))
    scale(var(--deck-s));
  transform-origin: 50% 50%;
  transition:
    transform 620ms var(--deck-ease),
    box-shadow 620ms var(--deck-ease);
  will-change: transform;
  backface-visibility: hidden;
}

.why-georgia-deck__card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  image-rendering: auto;
  filter: none;
}

.why-georgia-deck__card--one {
  --deck-x: 70px;
  --deck-y: 18px;
  --deck-r: -0.6deg;
  --deck-s: 0.96;
  z-index: 2;
}

.why-georgia-deck__card--two {
  --deck-x: 0px;
  --deck-y: 118px;
  --deck-r: 0deg;
  --deck-s: 1;
  z-index: 4;
}

.why-georgia-deck__card--three {
  --deck-x: -72px;
  --deck-y: 246px;
  --deck-r: 0.35deg;
  --deck-s: 0.97;
  z-index: 3;
}

.why-georgia-deck__card--four {
  --deck-x: -178px;
  --deck-y: 364px;
  --deck-r: -0.35deg;
  --deck-s: 0.97;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .why-georgia-deck:hover .why-georgia-deck__card--one {
    transform: translate3d(calc(-50% + 72px), 10px, 0) rotate(-0.75deg) scale(0.97);
  }

  .why-georgia-deck:hover .why-georgia-deck__card--two {
    transform: translate3d(calc(-50% + 0px), 110px, 0) rotate(0deg) scale(1);
  }

  .why-georgia-deck:hover .why-georgia-deck__card--three {
    transform: translate3d(calc(-50% - 96px), 268px, 0) rotate(0.45deg) scale(0.98);
  }

  .why-georgia-deck:hover .why-georgia-deck__card--four {
    transform: translate3d(calc(-50% - 188px), 398px, 0) rotate(-0.45deg) scale(0.98);
  }

  .why-georgia-deck__card:hover {
    z-index: 8;
    box-shadow: 0 28px 64px rgba(45, 41, 36, 0.18);
  }

  .why-georgia-deck:hover .why-georgia-deck__card--one:hover {
    transform: translate3d(calc(-50% + 72px), 0, 0) rotate(-0.75deg) scale(0.985);
  }

  .why-georgia-deck:hover .why-georgia-deck__card--two:hover {
    transform: translate3d(calc(-50% + 0px), 100px, 0) rotate(0deg) scale(1.02);
  }

  .why-georgia-deck:hover .why-georgia-deck__card--three:hover {
    transform: translate3d(calc(-50% - 96px), 258px, 0) rotate(0.45deg) scale(1);
  }

  .why-georgia-deck:hover .why-georgia-deck__card--four:hover {
    transform: translate3d(calc(-50% - 188px), 388px, 0) rotate(-0.45deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-georgia-deck__card {
    transition: none;
  }
}

.locations-active__visual figcaption {
  margin-top: 14px;
  color: rgba(63, 58, 52, 0.58);
  font-size: 0.78rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.locations-active__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 20px;
}

.locations-opportunities-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(23, 39, 32, 0.82);
  background: #172720;
  color: #fffbed;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 240ms ease, border-color 240ms ease, color 240ms ease, transform 240ms ease;
}

.locations-opportunities-cta:hover,
.locations-opportunities-cta:focus-visible {
  border-color: #20332d;
  background: #20332d;
  color: #fffbed;
  transform: translateY(-1px);
}

.locations-opportunities-cta--secondary {
  border-color: rgba(63, 58, 52, 0.38);
  background: transparent;
  color: #2d2924;
}

.locations-directory {
  margin-top: clamp(34px, 5vw, 64px);
}

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

.locations-directory-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(63, 58, 52, 0.16);
  background: rgba(255, 255, 255, 0.22);
  color: #3f3a34;
  text-align: left;
  cursor: pointer;
  transition: border-color 260ms ease, background-color 260ms ease, color 260ms ease, transform 260ms ease;
}

.locations-directory-card:hover,
.locations-directory-card:focus-visible {
  border-color: rgba(23, 39, 32, 0.46);
  background: rgba(255, 255, 255, 0.36);
  transform: translateY(-2px);
}

.locations-directory-card__type {
  color: rgba(23, 39, 32, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.locations-directory-card h3 {
  margin: 18px 0 0;
  color: #211d19;
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.locations-directory-card p {
  margin: 16px 0 0;
  color: rgba(63, 58, 52, 0.7);
  font-size: 0.94rem;
  line-height: 1.7;
}

.locations-directory-card__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
}

.locations-directory-card__meta span {
  display: grid;
  gap: 5px;
  color: rgba(63, 58, 52, 0.58);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.locations-directory-card__meta strong {
  color: #3f3a34;
  font-size: 0.8rem;
  letter-spacing: 0;
  text-transform: none;
}

.cookie-consent {
  position: fixed;
  left: clamp(12px, 2.2vw, 26px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 60;
  width: min(560px, calc(100vw - 36px));
  padding: 28px 28px 26px;
  border: 1px solid rgba(255, 250, 235, 0.78);
  border-radius: 2px;
  background: rgba(250, 247, 238, 0.88);
  box-shadow:
    0 24px 60px rgba(7, 26, 21, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.56),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  color: #2d2924;
  backdrop-filter: blur(20px) saturate(1.05);
  -webkit-backdrop-filter: blur(20px) saturate(1.05);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent__copy h2 {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: 23px;
  font-weight: 650;
  letter-spacing: 0.015em;
  line-height: 1.08;
  color: #1f1b17;
}

.cookie-consent__copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.72;
  color: rgba(45, 41, 36, 0.76);
}

.cookie-consent__preferences {
  display: grid;
  gap: 10px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 320ms ease, margin-top 260ms ease, opacity 260ms ease;
}

.cookie-consent.is-expanded .cookie-consent__preferences {
  max-height: 320px;
  margin-top: 22px;
  opacity: 1;
}

.cookie-consent__preference {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 13px 14px;
  border: 1px solid rgba(63, 58, 52, 0.16);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.34);
}

.cookie-consent__preference strong,
.cookie-consent__preference > div > span {
  display: block;
}

.cookie-consent__preference strong {
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(31, 27, 23, 0.88);
}

.cookie-consent__preference > div > span {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(63, 58, 52, 0.66);
}

.cookie-switch {
  position: relative;
  display: grid;
  justify-items: end;
  gap: 5px;
  cursor: pointer;
}

.cookie-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.cookie-switch__control {
  position: relative;
  width: 42px;
  height: 24px;
  border: 1px solid rgba(63, 58, 52, 0.28);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.cookie-switch__control::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 0;
  background: rgba(63, 58, 52, 0.44);
  box-shadow: none;
  transition: transform 220ms ease, background-color 220ms ease;
}

.cookie-switch input:checked + .cookie-switch__control {
  border-color: rgba(31, 90, 69, 0.58);
  background: rgba(31, 90, 69, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 0 0 2px rgba(31, 90, 69, 0.06);
}

.cookie-switch input:checked + .cookie-switch__control::after {
  transform: translateX(18px);
  background: #1f5a45;
}

.cookie-switch input:focus-visible + .cookie-switch__control {
  outline: 2px solid rgba(31, 90, 69, 0.34);
  outline-offset: 3px;
}

.cookie-switch__label {
  color: rgba(63, 58, 52, 0.58);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.cookie-switch--locked {
  cursor: default;
}

.cookie-switch--locked .cookie-switch__control {
  opacity: 0.72;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.cookie-consent__button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 17px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: opacity 220ms ease, transform 220ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.cookie-consent__button--primary {
  border: 1px solid rgba(31, 90, 69, 0.58);
  background: rgba(31, 90, 69, 0.1);
  color: #173d31;
}

.cookie-consent__button--secondary {
  border: 1px solid rgba(63, 58, 52, 0.24);
  background: rgba(255, 255, 255, 0.2);
  color: rgba(45, 41, 36, 0.82);
}

.cookie-consent__button--save {
  display: none;
}

.cookie-consent.is-expanded .cookie-consent__actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.cookie-consent.is-expanded .cookie-consent__button {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
}

.cookie-consent.is-expanded .cookie-consent__button--save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.cookie-consent__button--primary:hover,
.cookie-consent__button--primary:focus-visible {
  border-color: rgba(31, 90, 69, 0.78);
  background: rgba(31, 90, 69, 0.16);
}

.cookie-consent__button--secondary:hover,
.cookie-consent__button--secondary:focus-visible {
  border-color: rgba(63, 58, 52, 0.42);
  background: rgba(255, 255, 255, 0.38);
  color: #1f1b17;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.locations-section .reveal {
  transform: translateY(28px);
  transition:
    opacity 950ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 950ms cubic-bezier(0.22, 1, 0.36, 1);
}

.locations-section .reveal.is-visible {
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero__grid,
  .section-grid,
  .section-header,
  .contact-layout,
  .stats-grid,
  .locations-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    position: relative;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(340px, calc(100vw - 24px));
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(251, 249, 245, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-link,
  .nav-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0 16px;
    border-radius: 16px;
  }

  .nav-item--language {
    margin-left: 0;
    padding-left: 0;
  }

  .nav-item--cta {
    margin-left: 0;
  }

  .nav-item--language::before {
    display: none;
  }

  .dropdown {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    box-shadow: none;
    transform: none;
    display: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    background: rgba(29, 27, 25, 0.03);
    transition: none;
  }

  .nav-item.is-open .dropdown {
    display: block;
  }

  .locations-page .site-header__inner,
  body:not(.home-page):not(.locations-page) .site-header__inner {
    width: calc(100% - 56px);
    min-height: 118px;
    padding-top: 34px;
    padding-bottom: 22px;
  }

  .locations-page .brand__name,
  body:not(.home-page):not(.locations-page) .brand__name {
    font-size: 1.28rem;
  }

  .locations-page .brand__name--secondary,
  body:not(.home-page):not(.locations-page) .brand__name--secondary {
    font-size: 0.78rem;
  }

  .locations-page .brand__descriptor,
  body:not(.home-page):not(.locations-page) .brand__descriptor {
    margin-top: 7px;
    font-size: 0.66rem;
    letter-spacing: 0.035em;
  }

  body:not(.home-page):not(.locations-page) .brand > .menu-toggle:not(.hero-menu-toggle) {
    top: 34px;
    right: 28px;
    font-size: clamp(2.8rem, 15vw, 4.1rem);
  }

  .locations-editorial {
    padding-top: clamp(20px, 4vw, 34px);
  }

  .locations-active {
    grid-template-columns: 1fr;
  }

  .locations-tabs {
    margin-bottom: 18px;
  }

  .locations-active {
    align-items: start;
  }

  .locations-active__media {
    margin-top: 0;
  }

  .locations-page-main:not(.is-locations-directory) .locations-intel {
    grid-template-columns: 1fr;
  }

  .locations-footer__top {
    grid-template-columns: 1fr;
    gap: 54px;
  }

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

  .locations-footer__notes {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .locations-active h1 {
    font-size: clamp(4.4rem, 17vw, 9rem);
  }

  .locations-page-main.is-locations-directory .locations-active h1 {
    font-size: clamp(4rem, 15vw, 8rem);
  }

  .locations-active__visual {
    margin-top: 0;
    max-width: 720px;
  }

  .locations-active__visual--editorial {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    height: auto;
    margin-top: 0;
    transform: none;
  }

  .why-georgia-deck__card,
  .why-georgia-deck__card--one,
  .why-georgia-deck__card--two,
  .why-georgia-deck__card--three,
  .why-georgia-deck__card--four {
    position: relative;
    left: auto;
    top: auto;
    inset: auto;
    grid-column: auto;
    grid-row: auto;
    width: auto;
    justify-self: stretch;
    align-self: stretch;
    margin-top: 0;
    transform: none;
  }

  .why-georgia-deck__card img {
    aspect-ratio: 4 / 3;
  }

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

  .hero {
    padding-top: 80px;
  }

  .hero--image {
    min-height: auto;
    padding-top: 170px;
    padding-bottom: 132px;
    align-items: stretch;
  }

  .hero--image .hero__grid {
    grid-template-columns: minmax(0, 34rem);
    justify-content: center;
    align-items: center;
  }

  .hero-slide {
    background-position: 60% center;
  }

  .hero-slide:first-child {
    background-position: 52% 40%;
  }

  .hero--editorial {
    height: clamp(560px, 82svh, 760px);
    min-height: 0;
    max-height: clamp(560px, 82svh, 760px);
    flex-basis: clamp(560px, 82svh, 760px);
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero--editorial .hero-kinetic {
    inset: 58px 0 112px;
    gap: clamp(14px, 2.6vh, 28px);
  }

  .hero-georgia-outline {
    right: clamp(-160px, -13vw, -78px);
    bottom: clamp(104px, 16vh, 136px);
    width: clamp(460px, 64vw, 660px);
  }

  .hero-access-cluster {
    right: clamp(32px, 5vw, 62px);
    bottom: clamp(42px, 7vh, 72px);
    width: auto;
  }

  .hero-access-row {
    gap: 12px;
  }

  .hero-access-marker {
    min-height: 172px;
    padding: 20px 18px 18px;
  }

  .hero-marquee__track span {
    font-size: clamp(1.82rem, 6.75vw, 3.72rem);
    line-height: 1.06;
  }

  .hero-editorial__content {
    min-height: calc(100svh - 218px);
  }
}

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

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

  .hero h1,
  .page-intro h1,
  .internal-hero h1 {
    max-width: 12ch;
  }

  .hero-panel,
  .split-panel,
  .contact-form,
  .stat-card,
  .location-card,
  .contact-card,
  .page-card {
    padding: 22px;
  }

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

  .hero--image {
    padding-top: 152px;
    padding-bottom: 116px;
  }

  .hero--image .hero-copy {
    width: min(720px, calc(100% - 28px));
  }

  .hero--image::after {
    height: 156px;
  }

  .hero-slide {
    background-position: 64% center;
  }

  .hero-slide:first-child {
    background-position: 54% 38%;
  }

  .hero-slider-controls {
    right: 14px;
    bottom: 32px;
  }

  .hero-slider-control {
    width: 42px;
    height: 42px;
  }

  .home-page .site-header__inner {
    width: calc(100% - 56px);
    padding-top: 50px;
  }

  .home-page .brand {
    margin-left: 0;
  }

  .home-page .hero-menu-toggle {
    font-size: clamp(2.8rem, 15vw, 4.1rem);
  }

  .hero-header-actions {
    gap: 13px;
  }

  .hero-client-login {
    min-height: auto;
    padding: 0;
    font-size: 0.9rem;
    letter-spacing: 0;
  }

  .home-page .brand__name {
    font-size: 1.28rem;
  }

  .home-page .brand__name--secondary {
    font-size: 0.78rem;
  }

  .home-page .brand__descriptor {
    margin-top: 7px;
    font-size: 0.66rem;
    letter-spacing: 0.035em;
  }

  .hero--editorial {
    height: clamp(520px, 82svh, 680px);
    min-height: 0;
    max-height: clamp(520px, 82svh, 680px);
    flex-basis: clamp(520px, 82svh, 680px);
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero--editorial .hero-kinetic {
    inset: 58px 0 112px;
    gap: 12px;
  }

  .hero-georgia-outline {
    right: -200px;
    bottom: 132px;
    width: 540px;
  }

  .hero-access-cluster {
    left: 16px;
    right: 16px;
    bottom: 48px;
    width: auto;
    max-width: none;
  }

  .hero-access-row {
    gap: 6px;
  }

  .hero-access-marker {
    min-height: 112px;
    padding: 10px 10px 9px;
  }

  .hero--editorial .hero-access-marker__eyebrow {
    font-size: 0.48rem;
    letter-spacing: 0.12em;
    line-height: 1.2;
  }

  .hero--editorial .hero-access-marker__copy {
    margin-top: 8px;
    font-size: 0.55rem;
    line-height: 1.34;
  }

  .hero-access-marker__actions {
    gap: 6px;
    padding-top: 8px;
  }

  .hero-access-marker__secondary {
    min-height: 18px;
    font-size: 0.4rem;
    letter-spacing: 0.04em;
  }

  .hero-access-primary-cta {
    width: 100%;
    min-width: 0;
    min-height: 32px;
    margin-top: 0;
    padding: 0 15px;
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }

  .hero-access-cluster .hero-access-primary-cta {
    flex: 1 1 calc(50% - 4px);
    width: auto;
    min-width: 0;
  }

  .hero-marquee__track span {
    font-size: clamp(1.34rem, 7.85vw, 2.36rem);
    line-height: 1.08;
  }

  .hero-editorial__content {
    min-height: calc(100svh - 180px);
  }

  .hero-editorial__message {
    width: min(360px, 100%);
    margin-bottom: 0;
  }

  .hero-editorial__message p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(248, 239, 224, 0.88);
  }

}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-marquee__track {
    transform: translateX(0);
  }

  .market-thesis-section .reveal {
    filter: none;
  }
}

/* =========================
   ALL LOCATIONS SECTION
   ========================= */

.locations-section {
  position: relative;
  margin-top: -1px;
  padding: 92px 0 108px;
  scroll-margin-top: 0;
  background:
    radial-gradient(110% 70% at 50% 0%, rgba(210, 218, 212, 0.06) 0%, rgba(36, 69, 62, 0.08) 34%, rgba(6, 10, 12, 0) 66%),
    linear-gradient(180deg, rgba(5, 7, 8, 0.94) 0%, rgba(6, 11, 13, 0.96) 28%, rgba(8, 8, 8, 0.98) 100%);
}

.locations-shell {
  position: relative;
  padding-top: 10px;
}

.hero--image + .locations-section {
  position: relative;
}

.hero--image + .locations-section::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto;
  height: 220px;
  background:
    linear-gradient(
      180deg,
      rgba(5, 7, 8, 0.9) 0%,
      rgba(6, 14, 17, 0.72) 34%,
      rgba(28, 48, 44, 0.18) 70%,
      rgba(214, 219, 214, 0) 100%
    );
  pointer-events: none;
}

.locations-header {
  max-width: 980px;
  margin-bottom: 40px;
}

.locations-eyebrow {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.locations-title {
  margin: 0;
  font-size: clamp(38px, 5.1vw, 78px);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f4efe7;
}

.locations-intro {
  max-width: 680px;
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.64);
}

.locations-accordion {
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.locations-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.locations-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 22px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  transition: none;
}

.locations-name {
  font-size: clamp(24px, 3.4vw, 48px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #f3eee6;
}

.locations-chevron {
  position: relative;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  transition: transform 0.3s ease;
}

.locations-chevron::before,
.locations-chevron::after {
  content: "";
  position: absolute;
  inset: 0;
  border-right: 1.5px solid rgba(255, 255, 255, 0.84);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.84);
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
}

.locations-chevron::after {
  content: "";
}

.locations-item.is-open .locations-chevron {
  transform: rotate(180deg);
}

.locations-item.is-open .locations-name {
  color: #fffaf2;
}

.locations-panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.34s ease;
}

.locations-item.is-open .locations-panel {
  grid-template-rows: 1fr;
}

.locations-panel-inner {
  overflow: hidden;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(260px, 0.8fr);
  gap: 22px;
  align-items: start;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.locations-item.is-open .locations-panel-inner {
  padding: 0 0 28px;
  visibility: visible;
  opacity: 1;
}

.locations-media-placeholder {
  min-height: 208px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    radial-gradient(circle at top left, rgba(126, 43, 29, 0.16), transparent 45%),
    rgba(255, 255, 255, 0.016);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(10px);
}

.locations-media-placeholder img {
  width: calc(100% + 56px);
  height: calc(100% + 56px);
  min-height: 208px;
  margin: -28px;
  object-fit: cover;
  border-radius: 28px;
}

.locations-media-placeholder--image {
  overflow: hidden;
  padding: 0;
  height: clamp(260px, 27vw, 320px);
  background: rgba(255, 255, 255, 0.016);
}

.locations-media-placeholder--image img {
  width: 100%;
  height: 100%;
  min-height: 208px;
  margin: 0;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.locations-copy {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

.locations-panel-label {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.locations-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.68);
}

.location-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 11px 22px;
  border-radius: 999px;
  background: #f3eee4;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.location-cta:hover,
.location-cta:focus-visible {
  opacity: 0.86;
  transform: translateY(-1px);
}

.location-developers {
  margin-top: 24px;
}

.locations-copy .location-developers-title {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.location-developer-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.location-developer-list a {
  display: inline-block;
  width: fit-content;
  color: #789985;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  border-bottom: 1px solid rgba(120, 153, 133, 0.18);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.location-developer-list a:hover,
.location-developer-list a:focus-visible {
  color: #8cac99;
  border-bottom-color: currentColor;
  transform: translateX(2px);
}

#location-bakuriani .locations-panel-inner {
  gap: 18px;
}

#location-bakuriani .locations-media-placeholder--image,
#location-bakuriani .locations-copy {
  position: relative;
  border-radius: 8px;
  border-color: rgba(226, 232, 223, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.006)),
    rgba(5, 12, 11, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 22px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

#location-bakuriani .locations-media-placeholder--image {
  border-color: rgba(226, 232, 223, 0.16);
  background: rgba(5, 12, 11, 0.72);
}

#location-bakuriani .locations-media-placeholder--image::before,
#location-bakuriani .locations-copy::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  width: 34px;
  height: 1px;
  background: rgba(226, 232, 223, 0.34);
}

#location-bakuriani .locations-media-placeholder--image::after,
#location-bakuriani .locations-copy::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  width: 1px;
  height: 34px;
  background: rgba(226, 232, 223, 0.26);
}

#location-bakuriani .locations-media-placeholder--image img {
  border-radius: 7px;
  filter: saturate(0.92) contrast(1.02);
}

#location-bakuriani .locations-copy {
  padding: 28px 26px 26px;
}

#location-bakuriani .locations-panel-label,
#location-bakuriani .location-developers-title {
  color: rgba(226, 232, 223, 0.58);
  font-size: 10px;
  letter-spacing: 0.26em;
}

#location-bakuriani .locations-copy > p:not(.locations-panel-label) {
  color: rgba(244, 239, 231, 0.7);
  line-height: 1.75;
}

#location-bakuriani .location-developers {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(226, 232, 223, 0.1);
}

#location-bakuriani .location-developer-list {
  gap: 0;
  border-top: 1px solid rgba(226, 232, 223, 0.075);
}

#location-bakuriani .location-developer-list a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(226, 232, 223, 0.075);
  color: rgba(198, 217, 203, 0.78);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#location-bakuriani .location-developer-list a::after {
  content: ">";
  color: rgba(226, 232, 223, 0.34);
  font-size: 11px;
  transition: color 0.25s ease, transform 0.25s ease;
}

#location-bakuriani .location-developer-list a:hover,
#location-bakuriani .location-developer-list a:focus-visible {
  color: rgba(232, 226, 214, 0.92);
  border-bottom-color: rgba(226, 232, 223, 0.18);
  transform: none;
}

#location-bakuriani .location-developer-list a:hover::after,
#location-bakuriani .location-developer-list a:focus-visible::after {
  color: rgba(232, 226, 214, 0.72);
  transform: translate(2px, -2px);
}

#location-bakuriani .location-cta {
  margin-top: 24px;
  padding: 11px 20px;
  border: 1px solid rgba(244, 239, 231, 0.74);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(226, 219, 207, 0.9));
  color: rgba(8, 12, 11, 0.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 12px 26px rgba(0, 0, 0, 0.18);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

#location-bakuriani .location-cta:hover,
#location-bakuriani .location-cta:focus-visible {
  opacity: 1;
  border-color: rgba(255, 250, 242, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    0 16px 30px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

#location-bakuriani .locations-media-placeholder--image,
#location-bakuriani .locations-copy {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

#location-bakuriani.is-open .locations-media-placeholder--image,
#location-bakuriani.is-open .locations-copy {
  opacity: 1;
  transform: translateY(0);
}

#location-bakuriani.is-open .locations-copy {
  transition-delay: 0.06s;
}

/* =========================
   DEVELOPER INSIGHT SECTION
   ========================= */

.developer-insight-section {
  position: relative;
  padding: clamp(58px, 6.6vw, 96px) 0 clamp(54px, 5.8vw, 82px);
  background:
    radial-gradient(620px 320px at 88% 18%, rgba(114, 131, 112, 0.08), transparent 70%),
    linear-gradient(90deg, rgba(47, 102, 81, 0.055) 1px, transparent 1px),
    #f7f1e8;
  background-size: auto, 72px 72px, auto;
  color: #3f3a34;
  overflow: hidden;
}

.developer-insight-shell {
  width: min(calc(100% - clamp(48px, 6vw, 108px)), 1540px);
  max-width: none;
}

.developer-insight-header {
  max-width: 920px;
  display: grid;
  gap: clamp(18px, 2vw, 26px);
}

.developer-insight-eyebrow,
.developer-insight-row-header p {
  margin: 0;
  color: #173f34;
  font-size: clamp(0.76rem, 0.78vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.developer-insight-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
}

.developer-insight-header h2 {
  max-width: 760px;
  margin: 0;
  color: #332f2a;
  font-family: var(--font-sans);
  font-size: clamp(2.8rem, 4.85vw, 5.75rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.94;
}

.developer-insight-header h2 span {
  display: block;
  white-space: nowrap;
}

.developer-insight-header > p {
  max-width: 760px;
  margin: 0;
  color: rgba(63, 58, 52, 0.72);
  font-size: clamp(1rem, 1.12vw, 1.2rem);
  line-height: 1.78;
}

.developer-insight-landscape {
  margin-top: clamp(48px, 6vw, 82px);
  display: grid;
  gap: 18px;
}

.developer-insight-row-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 2px;
}

.developer-insight-row-header span {
  color: rgba(23, 63, 52, 0.64);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.developer-insight-marquee {
  position: relative;
  width: 100%;
  border-top: 1px solid rgba(63, 58, 52, 0.16);
  border-bottom: 1px solid rgba(63, 58, 52, 0.16);
  background:
    linear-gradient(180deg, rgba(247, 241, 232, 0.7), rgba(247, 241, 232, 0.92) 28%, rgba(247, 241, 232, 0.92) 72%, rgba(247, 241, 232, 0.7)),
    #f7f1e8;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.developer-insight-marquee__track {
  width: max-content;
  display: flex;
  gap: 14px;
  padding: 18px 0;
  animation: developerInsightMarquee 54s linear infinite;
}

.developer-insight-marquee:hover .developer-insight-marquee__track {
  animation-play-state: paused;
}

.developer-insight-logo-tile {
  width: clamp(156px, 12vw, 208px);
  height: clamp(74px, 6vw, 92px);
  display: grid;
  place-items: center;
  padding: clamp(16px, 1.8vw, 24px);
  border: 1px solid rgba(63, 58, 52, 0.16);
  background: rgba(255, 255, 255, 0.12);
}

.developer-insight-logo-tile img {
  width: 100%;
  max-height: 42px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(18%) sepia(12%) saturate(640%) hue-rotate(100deg) brightness(88%) contrast(88%);
  opacity: 0.82;
}

.developer-insight-logo-tile--eagle-hills img {
  max-height: 50px;
}

.developer-insight-logo-tile--alliance img {
  width: 112%;
  max-height: 56px;
}

.developer-insight-logo-tile--fk img,
.developer-insight-logo-tile--alliance-group img {
  image-rendering: auto;
  opacity: 0.9;
  backface-visibility: hidden;
}

.developer-insight-logo-tile--alliance-group {
  display: flex;
  align-items: center;
  justify-content: center;
}

.developer-logo--alliance-row {
  display: block !important;
  width: 84px !important;
  max-width: 84px !important;
  height: auto !important;
  max-height: 64px !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  transform: translateY(-1px) !important;
  transform-origin: center center !important;
}

.developer-insight-logo-tile--petra img {
  width: 86%;
  max-height: 44px;
}

.developer-insight-logo-tile--vr img {
  width: 64%;
  max-height: 58px;
  transform: translateY(-4px);
}

.developer-insight-logo-tile--tempo img {
  width: 82%;
  max-height: 38px;
}

.developer-insight-disclaimer {
  max-width: 720px;
  margin: 0;
  color: rgba(63, 58, 52, 0.48);
  font-size: 0.78rem;
  line-height: 1.68;
}

.developer-insight-signals {
  margin-top: clamp(42px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(63, 58, 52, 0.16);
  border-left: 1px solid rgba(63, 58, 52, 0.16);
}

.developer-insight-signal {
  min-height: 218px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 0;
  padding: clamp(24px, 2.35vw, 30px) clamp(22px, 2.4vw, 32px) clamp(26px, 2.6vw, 34px);
  border-right: 1px solid rgba(63, 58, 52, 0.16);
  border-bottom: 1px solid rgba(63, 58, 52, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.developer-insight-signal span {
  color: rgba(63, 58, 52, 0.42);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
}

.developer-insight-signal h3 {
  margin: clamp(18px, 1.8vw, 24px) 0 14px;
  color: #332f2a;
  font-size: clamp(1rem, 1.05vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.16;
  text-transform: uppercase;
}

.developer-insight-signal p {
  margin: 0;
  max-width: 30ch;
  color: rgba(63, 58, 52, 0.66);
  font-size: 0.92rem;
  line-height: 1.64;
}

.developer-insight-cta {
  width: fit-content;
  margin-top: clamp(32px, 4vw, 48px);
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #332f2a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.developer-insight-cta::before {
  content: "";
  order: 2;
  flex: 0 0 48px;
  width: 48px;
  height: 1px;
  margin-left: 18px;
  background: currentColor;
  opacity: 0.86;
  transform-origin: left center;
  transition: transform 220ms ease, opacity 220ms ease;
}

.developer-insight-cta::after {
  content: "";
  order: 3;
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-left: -7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  opacity: 0.86;
  transform: translateX(-1px) rotate(45deg);
  transition: transform 220ms ease, opacity 220ms ease;
}

.developer-insight-cta:hover::before,
.developer-insight-cta:focus-visible::before {
  opacity: 0.72;
  transform: scaleX(1.14);
}

.developer-insight-cta:hover::after,
.developer-insight-cta:focus-visible::after {
  opacity: 0.72;
  transform: translateX(5px) rotate(45deg);
}

.developer-insight-cta:focus-visible {
  outline: 1px solid rgba(63, 58, 52, 0.42);
  outline-offset: 6px;
}

@keyframes developerInsightMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================
   METHOD BRIDGE
   ========================= */

.method-bridge-section {
  position: relative;
  min-height: clamp(230px, 28vh, 310px);
  display: grid;
  align-items: center;
  padding: clamp(30px, 3.4vw, 46px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 251, 237, 0.08);
  border-bottom: 1px solid rgba(255, 251, 237, 0.08);
  background:
    radial-gradient(560px 260px at 16% 18%, rgba(255, 251, 237, 0.08), transparent 70%),
    radial-gradient(540px 320px at 88% 82%, rgba(114, 131, 112, 0.18), transparent 72%),
    linear-gradient(135deg, #5f715d 0%, #3f5145 48%, #172720 100%);
  color: #fffbed;
}

.method-bridge-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - clamp(48px, 6vw, 108px)), 1540px);
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.74fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.method-bridge-copy {
  max-width: 650px;
}

.method-bridge-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #fffbed;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3vw, 3.7rem);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 0.98;
}

.method-bridge-copy > p {
  max-width: 590px;
  margin: 16px 0 0;
  color: rgba(255, 251, 237, 0.66);
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  line-height: 1.66;
}

.method-bridge-visual {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  opacity: 0.9;
}

.method-bridge-visual::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 0;
  top: 50%;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 251, 237, 0.18), rgba(255, 251, 237, 0.04), transparent);
  transform: translateY(-50%);
  animation: methodBridgeRule 9s ease-in-out infinite;
  pointer-events: none;
}

.method-bridge-ghost {
  position: absolute;
  right: clamp(6px, 2vw, 34px);
  top: 50%;
  color: rgba(255, 251, 237, 0.055);
  font-family: var(--font-serif);
  font-size: clamp(5.8rem, 11vw, 11rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.8;
  transform: translateY(-50%);
}

.method-bridge-rules {
  position: absolute;
  inset: 20px 0 18px 10%;
  display: grid;
  align-content: space-between;
}

.method-bridge-rules span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 251, 237, 0.2), rgba(255, 251, 237, 0.055), transparent);
  transform-origin: left center;
  animation: methodBridgeRule 10s ease-in-out infinite;
}

.method-bridge-rules span:nth-child(2) {
  width: 86%;
  animation-delay: -1.6s;
}

.method-bridge-rules span:nth-child(3) {
  width: 72%;
  animation-delay: -3.2s;
}

.method-bridge-rules span:nth-child(4) {
  width: 94%;
  animation-delay: -4.8s;
}

.method-bridge-rules span:nth-child(5) {
  width: 64%;
  animation-delay: -6.4s;
}

.method-bridge-terms {
  position: absolute;
  inset: 0;
  color: rgba(255, 251, 237, 0.24);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.method-bridge-terms span {
  position: absolute;
  white-space: nowrap;
}

.method-bridge-terms span:nth-child(1) {
  left: 12%;
  top: 18%;
}

.method-bridge-terms span:nth-child(2) {
  left: 34%;
  top: 36%;
}

.method-bridge-terms span:nth-child(3) {
  left: 18%;
  top: 62%;
}

.method-bridge-terms span:nth-child(4) {
  right: 14%;
  top: 24%;
}

.method-bridge-terms span:nth-child(5) {
  right: 20%;
  bottom: 18%;
}

.method-bridge-lines {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  pointer-events: none;
}

.method-bridge-lines span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(620px, 66vw);
  height: 108px;
  border: 1px solid rgba(255, 251, 237, 0.09);
  overflow: hidden;
  transform: translate(-50%, -50%) skewX(-22deg);
  animation: prefooterLineDrift 30s linear infinite;
}

.method-bridge-lines span::before,
.method-bridge-lines span::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1.5px;
  width: 34%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 251, 237, 0.72), transparent);
  opacity: 0;
  transform: translateX(-125%);
  animation: prefooterSignalSweep 22s linear infinite;
  filter: drop-shadow(0 0 4px rgba(255, 251, 237, 0.18));
}

.method-bridge-lines span::after {
  top: auto;
  right: 0;
  bottom: -1.5px;
  left: auto;
  background: linear-gradient(270deg, transparent, rgba(255, 251, 237, 0.58), transparent);
  transform: translateX(125%);
  animation-name: prefooterSignalReturn;
  animation-delay: -3s;
}

.method-bridge-lines span:nth-child(1) {
  margin-left: -24vw;
  margin-top: -26px;
}

.method-bridge-lines span:nth-child(2) {
  width: min(520px, 58vw);
  margin-left: 22vw;
  margin-top: 34px;
  animation-delay: -9s;
}

.method-bridge-lines span:nth-child(2)::before,
.method-bridge-lines span:nth-child(2)::after {
  animation-delay: -8s;
}

.method-bridge-lines span:nth-child(3) {
  width: min(460px, 50vw);
  margin-left: 4vw;
  margin-top: -82px;
  opacity: 0.62;
  animation-delay: -18s;
}

.method-bridge-section--signals .method-bridge-shell {
  grid-template-columns: minmax(420px, 0.74fr) minmax(0, 0.86fr);
}

.method-bridge-section--signals .method-bridge-copy {
  justify-self: end;
}

.method-bridge-section--signals .method-bridge-visual {
  order: 0;
}

.method-bridge-section--signals .method-bridge-copy {
  order: 1;
}

.method-bridge-section--signals .method-bridge-ghost {
  right: auto;
  left: clamp(4px, 1.8vw, 30px);
  color: rgba(255, 251, 237, 0.038);
  font-size: clamp(4.35rem, 8.6vw, 8.7rem);
}

.method-bridge-section--signals .method-bridge-rules {
  inset: 20px 8% 18px 0;
}

.method-bridge-section--signals .method-bridge-terms span:nth-child(1) {
  left: 8%;
  top: 18%;
}

.method-bridge-section--signals .method-bridge-terms span:nth-child(2) {
  left: 38%;
  top: 34%;
}

.method-bridge-section--signals .method-bridge-terms span:nth-child(3) {
  left: 16%;
  top: 64%;
}

.method-bridge-section--signals .method-bridge-terms span:nth-child(4) {
  right: 12%;
  top: 22%;
}

.method-bridge-section--signals .method-bridge-terms span:nth-child(5) {
  right: 18%;
  bottom: 18%;
}

.method-bridge-section--signals .method-bridge-terms span:nth-child(6) {
  right: 36%;
  top: 58%;
}

/* =========================
   ROI FRAMEWORK SECTION
   ========================= */

.roi-framework-section {
  position: relative;
  isolation: isolate;
  margin-bottom: clamp(-680px, -62vh, -520px);
  padding: clamp(18px, 2.4vw, 34px) 0 clamp(58px, 6vw, 90px);
  background:
    radial-gradient(620px 320px at 88% 18%, rgba(114, 131, 112, 0.08), transparent 70%),
    linear-gradient(90deg, rgba(47, 102, 81, 0.055) 1px, transparent 1px),
    #f7f1e8;
  background-size: auto, 72px 72px, auto;
  color: #20332d;
  overflow: visible;
}

.roi-framework-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  height: clamp(430px, 50vh, 560px);
  background:
    linear-gradient(90deg, rgba(47, 102, 81, 0.055) 1px, transparent 1px),
    #f7f1e8;
  background-size: 72px 72px, auto;
  pointer-events: none;
}

.roi-framework-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - clamp(32px, 5vw, 96px)), 1500px);
  max-width: none;
  display: block;
}

.roi-framework-meta {
  --roi-meta-lift: 0px;
  position: absolute;
  left: 50%;
  top: calc(clamp(10px, 2.2vh, 24px) - 16px);
  z-index: 70;
  width: var(--roi-card-width);
  display: grid;
  grid-template-columns: minmax(180px, 0.22fr) minmax(0, 0.78fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: end;
  padding-top: 10px;
  border-top: 1px solid rgba(32, 51, 45, 0.1);
  transform: translate(-50%, calc(var(--roi-meta-lift) * -1));
  pointer-events: none;
}

.roi-framework-meta__label {
  display: flex;
  align-items: baseline;
  gap: 14px;
  min-width: 0;
}

.roi-framework-meta__eyebrow {
  margin: 0;
  color: #173f34;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.roi-framework-meta__label p:not(.roi-framework-meta__eyebrow) {
  margin: 0;
  color: rgba(32, 51, 45, 0.68);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.2;
}

.roi-framework-meta__disclaimer {
  max-width: 940px;
  margin: 0;
  justify-self: end;
  color: rgba(43, 62, 55, 0.58);
  font-size: 0.64rem;
  line-height: 1.42;
  text-align: right;
}

.roi-framework-stack-track {
  margin-top: 0;
  min-height: clamp(1720px, 285vh, 2460px);
  overflow: visible;
}

.roi-framework-stack {
  --roi-card-width: min(76vw, 1240px);
  position: sticky;
  top: clamp(94px, 12vh, 152px);
  z-index: 1;
  height: clamp(620px, 74vh, 780px);
  display: grid;
  place-items: center;
  overflow: visible;
  isolation: isolate;
}

.roi-framework-card {
  --roi-x: 0px;
  --roi-y: 0px;
  --roi-scale: 1;
  --roi-opacity: 1;
  --roi-z: 1;
  --roi-tone-a: #e2ecd9;
  --roi-tone-b: #c8dabc;
  position: absolute;
  top: clamp(54px, 8vh, 92px);
  left: 50%;
  z-index: var(--roi-z);
  width: var(--roi-card-width);
  min-height: clamp(480px, 56vh, 560px);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(26px, 3vw, 44px);
  padding: clamp(34px, 3.4vw, 54px);
  border: 1px solid rgba(32, 51, 45, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--roi-tone-a), var(--roi-tone-b)),
    #dfead5;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.56) inset,
    0 0 0 1px rgba(32, 51, 45, 0.05) inset,
    0 18px 38px rgba(32, 51, 45, 0.08);
  opacity: var(--roi-opacity);
  transform: translate3d(calc(-50% + var(--roi-x)), var(--roi-y), 0) scale(var(--roi-scale));
  transform-origin: center bottom;
  pointer-events: none;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.22, 0.8, 0.22, 1);
  will-change: transform, opacity;
}

.roi-framework-card.is-active {
  border-color: rgba(32, 51, 45, 0.38);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.58) inset,
    0 0 0 1px rgba(32, 51, 45, 0.05) inset,
    0 20px 42px rgba(32, 51, 45, 0.1);
  pointer-events: auto;
}

.roi-framework-card__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
}

.roi-framework-card__body {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(320px, 0.58fr);
  gap: clamp(24px, 3.2vw, 52px);
  align-items: end;
}

.roi-framework-logo {
  width: clamp(82px, 7vw, 120px);
  max-height: 58px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(18%) sepia(12%) saturate(640%) hue-rotate(100deg) brightness(88%) contrast(88%);
  opacity: 0.82;
}

.roi-framework-logo--alliance {
  width: clamp(123px, 10.5vw, 180px);
  max-height: 75px;
  transform: translateX(20%);
  image-rendering: -webkit-optimize-contrast;
  filter: brightness(0) saturate(100%) invert(18%) sepia(12%) saturate(640%) hue-rotate(100deg) brightness(88%) contrast(104%);
}

.roi-framework-card__number,
.roi-framework-card__type,
.roi-framework-scenario span,
.roi-framework-metrics dt {
  color: rgba(32, 51, 45, 0.56);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.roi-framework-card__number {
  display: block;
  margin-bottom: 18px;
  color: rgba(47, 102, 81, 0.72);
}

.roi-framework-card__type {
  margin: 0;
}

.roi-framework-card h3 {
  margin: 10px 0 0;
  color: #20332d;
  font-size: clamp(1.9rem, 3vw, 3.25rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 0.98;
}

.roi-framework-scenario p {
  max-width: 360px;
  margin: 12px 0 0;
  color: rgba(32, 51, 45, 0.72);
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  line-height: 1.68;
}

.roi-framework-rhythm {
  width: min(100%, 360px);
  margin: 0 0 clamp(24px, 3.4vw, 42px);
}

.roi-framework-rhythm__label {
  margin: 0 0 9px;
  color: rgba(32, 51, 45, 0.5);
  font-size: 0.64rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.roi-framework-rhythm__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.roi-framework-rhythm__days span {
  min-width: 0;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(32, 51, 45, 0.16);
  background: rgba(255, 251, 237, 0.12);
  color: rgba(32, 51, 45, 0.42);
  font-size: 0.56rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.roi-framework-rhythm__days span.is-selected {
  border-color: rgba(47, 102, 81, 0.34);
  background: rgba(92, 124, 93, 0.18);
  color: rgba(32, 51, 45, 0.78);
}

.roi-framework-metrics {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(32, 51, 45, 0.16);
}

.roi-framework-metrics div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid rgba(32, 51, 45, 0.12);
}

.roi-framework-metrics dd {
  margin: 0;
  color: rgba(32, 51, 45, 0.9);
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  font-weight: 760;
  line-height: 1.2;
  text-align: right;
}

.roi-framework-yield dd {
  padding: 9px 12px;
  border: 1px solid rgba(32, 51, 45, 0.24);
  background: rgba(255, 251, 237, 0.24);
  color: #20332d;
}

/* =========================
   MARKET THESIS SECTION
   ========================= */

.market-thesis-section {
  position: relative;
  margin-top: -1px;
  padding: clamp(96px, 10vw, 150px) 0 clamp(90px, 9vw, 132px);
  color: #f4efe7;
  background:
    radial-gradient(74% 68% at 18% 12%, rgba(57, 103, 84, 0.2), rgba(17, 31, 26, 0) 64%),
    linear-gradient(180deg, #14261f 0%, #111b18 100%);
  overflow: hidden;
}

.market-thesis-section::before {
  content: none;
}

.market-thesis-shell {
  position: relative;
  z-index: 1;
}

.market-thesis-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(54px, 7vw, 116px);
  align-items: start;
}

.market-thesis-header {
  position: relative;
  max-width: 720px;
  margin-left: 0;
  padding-bottom: 0;
}

.market-thesis-intro {
  position: relative;
  isolation: isolate;
}

.market-thesis-intro::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 10px;
  z-index: -1;
  width: 520px;
  height: 120px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.045) 38%,
    rgba(255, 255, 255, 0) 72%
  );
  filter: blur(28px);
  opacity: 0.75;
  pointer-events: none;
}

.market-thesis-header h2 {
  position: relative;
  z-index: 1;
  max-width: 10ch;
  margin: 18px 0 0;
  font-family: var(--font-sans);
  font-size: clamp(3.8rem, 7.4vw, 8.8rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.86;
  text-transform: none;
  color: #f4efe7;
}

.market-thesis-header > p:not(.market-thesis-eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 34px 0 0;
  font-size: clamp(1rem, 1.16vw, 1.18rem);
  line-height: 1.82;
  color: rgba(255, 251, 237, 0.7);
}

.market-thesis-risk {
  margin-top: 26px !important;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 251, 237, 0.16);
  color: rgba(213, 226, 216, 0.78) !important;
}

.market-thesis-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 3vw, 46px);
  width: 100%;
  margin-left: 0;
  margin-top: 0;
  border-top: 1px solid rgba(255, 251, 237, 0.18);
  border-bottom: 0;
}

.market-thesis-card {
  position: relative;
  display: block;
  min-height: 206px;
  padding: clamp(24px, 2.4vw, 34px) 0;
  border-bottom: 1px solid rgba(255, 251, 237, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.market-thesis-card::before {
  content: none;
}

.market-thesis-card:last-child {
  border-bottom: 0;
}

.market-thesis-card > div {
  position: relative;
  max-width: 430px;
}

.market-thesis-number {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  color: rgba(180, 205, 189, 0.64);
  transition: color 300ms ease;
}

.market-thesis-number::after {
  content: "";
  width: 20px;
  height: 1px;
  background: rgba(180, 205, 189, 0.24);
  transition: background-color 300ms ease;
}

.market-thesis-card h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.24rem, 1.55vw, 1.72rem);
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.08;
  color: rgba(255, 250, 242, 0.94);
  transition: color 300ms ease, transform 300ms ease;
}

.market-thesis-card:hover .market-thesis-number {
  color: rgba(205, 224, 212, 0.78);
}

.market-thesis-card:hover .market-thesis-number::after {
  background: rgba(205, 224, 212, 0.38);
}

.market-thesis-card:hover h3 {
  color: #fff8ee;
  transform: translateX(2px);
}

.market-thesis-card p {
  margin: 14px 0 0;
  font-size: 0.92rem;
  line-height: 1.72;
  color: rgba(255, 251, 237, 0.62);
}

.market-thesis-close {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr) auto;
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  margin-top: clamp(58px, 6vw, 86px);
  padding-top: 32px;
  border-top: 1px solid rgba(255, 251, 237, 0.18);
}

.market-thesis-close h3 {
  margin: 16px 0 0;
  color: #fffbed;
  font-size: clamp(1.8rem, 2.8vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.market-thesis-close > p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 251, 237, 0.68);
  font-size: 0.98rem;
  line-height: 1.76;
}

.market-thesis-close a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 251, 237, 0.32);
  color: rgba(255, 251, 237, 0.9);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 240ms ease, color 240ms ease, transform 240ms ease;
}

.market-thesis-close a:hover,
.market-thesis-close a:focus-visible {
  border-color: rgba(255, 251, 237, 0.58);
  color: #fffbed;
  transform: translateY(-1px);
}

.market-thesis-section .reveal {
  filter: blur(6px);
  transform: translateY(32px);
  transition:
    opacity 980ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 980ms cubic-bezier(0.22, 1, 0.36, 1);
}

.market-thesis-section .reveal.is-visible {
  filter: blur(0);
  transform: translateY(0);
}

.market-thesis-card.reveal {
  filter: blur(4px);
  transform: translateY(24px);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.market-thesis-card.reveal.is-visible {
  filter: blur(0);
  transform: translateY(0);
}

.market-thesis-card:nth-child(2) {
  transition-delay: 120ms;
}

.market-thesis-card:nth-child(3) {
  transition-delay: 240ms;
}

.market-thesis-card:nth-child(4) {
  transition-delay: 360ms;
}

.market-thesis-card:nth-child(5) {
  transition-delay: 480ms;
}

.market-thesis-card:nth-child(6) {
  transition-delay: 600ms;
}

.market-thesis-card:nth-child(7) {
  transition-delay: 720ms;
}

.market-thesis-card:nth-child(8) {
  transition-delay: 840ms;
}

/* =========================
   INCOME LOGIC SECTION
   ========================= */

.income-logic-section {
  position: relative;
  margin-top: -1px;
  padding: 76px 0 74px;
  color: #f4efe7;
  background:
    radial-gradient(78% 72% at 82% 16%, rgba(31, 70, 58, 0.12), rgba(8, 8, 8, 0) 68%),
    rgba(8, 8, 8, 0.98);
  overflow: hidden;
}

.income-logic-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)),
    radial-gradient(58% 42% at 18% 0%, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.income-logic-shell {
  position: relative;
  z-index: 1;
}

.income-logic-header {
  max-width: 860px;
  margin-left: clamp(-184px, -11vw, -112px);
}

.income-logic-eyebrow {
  margin: 0;
  color: rgba(255, 251, 237, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.income-logic-header h2 {
  margin: 16px 0 0;
  font-size: clamp(30px, 3.8vw, 56px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.96;
  text-transform: uppercase;
  color: #f4efe7;
}

.income-logic-header > p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.78;
}

.income-logic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(calc(100% + 260px), calc(100vw - 24px));
  margin-top: 38px;
  margin-left: calc((100% - min(calc(100% + 260px), calc(100vw - 24px))) / 2);
}

.income-logic-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(166, 194, 180, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(110% 82% at 18% 0%, rgba(255, 255, 255, 0.07), rgba(31, 70, 58, 0.028) 42%, rgba(31, 70, 58, 0) 72%),
    radial-gradient(96% 80% at 86% 92%, rgba(31, 70, 58, 0.07), rgba(5, 14, 12, 0) 66%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.046), rgba(11, 28, 23, 0.052) 48%, rgba(31, 70, 58, 0.024)),
    rgba(5, 12, 10, 0.08);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    inset 0 -1px 0 rgba(125, 166, 146, 0.045);
  overflow: hidden;
  transition: border-color 360ms ease, box-shadow 360ms ease, transform 360ms ease;
}

.income-logic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.11), rgba(218, 235, 225, 0.04) 18%, rgba(255, 255, 255, 0) 44%);
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.income-logic-card:hover {
  border-color: rgba(185, 212, 197, 0.22);
  box-shadow:
    0 30px 72px rgba(0, 0, 0, 0.3),
    0 18px 52px rgba(31, 70, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(125, 166, 146, 0.07);
  transform: translateY(-3px);
}

.income-logic-card:hover::before {
  opacity: 0.48;
}

.income-logic-card__header,
.income-logic-mockup,
.income-logic-assumptions {
  position: relative;
  z-index: 1;
}

.income-logic-card__header--with-logo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
}

.income-logic-logo {
  width: clamp(82px, 7vw, 108px);
  max-height: 52px;
  object-fit: contain;
  opacity: 0.82;
  filter: saturate(0.9) brightness(0.95);
}

.income-logic-card__header > span,
.income-logic-card__header > div > span {
  color: rgba(180, 205, 189, 0.66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.income-logic-card__header h3 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.1vw, 34px);
  font-weight: 500;
  line-height: 1.02;
  color: rgba(255, 250, 242, 0.94);
}

.income-logic-card__header p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.62;
}

.income-logic-mockup {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    rgba(3, 10, 9, 0.38);
}

.income-logic-mockup__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.income-logic-mockup__heading {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.income-logic-mockup__top span,
.income-logic-metrics span,
.income-logic-yield p,
.income-logic-assumptions dt {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.income-logic-mockup__top strong {
  max-width: 190px;
  color: rgba(255, 250, 242, 0.86);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.42;
  text-align: right;
}

.income-logic-mockup__heading strong {
  max-width: none;
  text-align: left;
}

.income-logic-toggle {
  flex: 0 0 auto;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(226, 232, 223, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(244, 239, 231, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 220ms ease, background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.income-logic-toggle:hover,
.income-logic-toggle:focus-visible {
  border-color: rgba(226, 232, 223, 0.24);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 250, 242, 0.9);
  transform: translateY(-1px);
}

.income-logic-view {
  display: grid;
  margin-top: 18px;
}

.income-logic-panel {
  grid-area: 1 / 1;
  min-width: 0;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 340ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.income-logic-panel--layout {
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px) scale(0.985);
  pointer-events: none;
}

.income-logic-mockup.is-layout-visible .income-logic-panel--income {
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px) scale(0.985);
  pointer-events: none;
}

.income-logic-mockup.is-layout-visible .income-logic-panel--layout {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.income-logic-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin-top: 18px;
}

.income-logic-view .income-logic-calendar {
  margin-top: 0;
}

.income-logic-calendar span {
  display: grid;
  place-items: center;
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 360ms ease, background-color 360ms ease, color 360ms ease, transform 360ms ease;
}

.income-logic-card:hover .income-logic-calendar .is-booked {
  border-color: rgba(226, 232, 223, 0.28);
  background: rgba(226, 232, 223, 0.12);
  color: rgba(255, 250, 242, 0.84);
  transform: translateY(-1px);
}

.income-logic-notice {
  width: fit-content;
  margin-top: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(180, 205, 189, 0.17);
  border-radius: 999px;
  background: rgba(31, 70, 58, 0.18);
  color: rgba(236, 241, 234, 0.76);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.income-logic-card:hover .income-logic-notice {
  opacity: 1;
  transform: translateX(0);
}

.income-logic-metrics {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.income-logic-metrics div,
.income-logic-assumptions div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.income-logic-metrics strong,
.income-logic-assumptions dd {
  margin: 0;
  color: rgba(244, 239, 231, 0.86);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-align: right;
}

.income-logic-metrics div:nth-child(3) strong {
  opacity: 0.72;
  transform: translateY(3px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.income-logic-card:hover .income-logic-metrics div:nth-child(3) strong {
  opacity: 1;
  transform: translateY(0);
}

.income-logic-yield {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.085);
}

.income-logic-ring {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  flex: 0 0 70px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(7, 12, 11, 0.95) 0 56%, transparent 57%),
    conic-gradient(rgba(226, 232, 223, 0.52) 0 18%, rgba(255, 255, 255, 0.07) 18% 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  transition: background 520ms ease, transform 520ms ease;
}

.income-logic-card:hover .income-logic-ring {
  background:
    radial-gradient(circle at center, rgba(7, 12, 11, 0.95) 0 56%, transparent 57%),
    conic-gradient(rgba(226, 232, 223, 0.72) 0 var(--yield-progress), rgba(255, 255, 255, 0.07) var(--yield-progress) 100%);
  transform: scale(1.03);
}

.income-logic-ring span {
  color: rgba(255, 250, 242, 0.92);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.income-logic-yield p {
  margin: 0;
}

.income-logic-panel--layout {
  margin: 0;
}

.income-logic-layout-frame {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 14px;
  border: 1px solid rgba(226, 232, 223, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(90% 72% at 50% 0%, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0) 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(4, 11, 10, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28);
}

.income-logic-layout-frame img {
  width: 100%;
  max-height: 205px;
  object-fit: contain;
}

.income-logic-panel--layout figcaption {
  margin-top: 10px;
  color: rgba(244, 239, 231, 0.58);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.income-logic-assumptions {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.085);
}

.income-logic-disclaimer {
  max-width: 860px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.72;
}

.income-logic-section .reveal {
  filter: blur(5px);
  transform: translateY(26px);
  transition:
    opacity 920ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 920ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 920ms cubic-bezier(0.22, 1, 0.36, 1);
}

.income-logic-section .reveal.is-visible {
  filter: blur(0);
  transform: translateY(0);
}

.income-logic-card:nth-child(2) {
  transition-delay: 120ms;
}

.income-logic-card:nth-child(3) {
  transition-delay: 240ms;
}

/* =========================
   MARKET TRANSITION
   ========================= */

.market-transition {
  position: relative;
  margin-top: -1px;
  padding: 0 0 38px;
  background: rgba(8, 8, 8, 0.98);
  color: #f4efe7;
}

.market-transition-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 72px);
  max-width: 1120px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.market-transition-copy {
  max-width: 700px;
  margin-left: 0;
}

.market-transition-eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255, 251, 237, 0.76);
}

.market-transition-copy h2 {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.12;
  color: #f4efe7;
}

.market-transition-copy > p:not(.market-transition-eyebrow) {
  max-width: 640px;
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.64);
}

.market-transition-process {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.market-transition-process span {
  display: inline-flex;
  align-items: center;
}

.market-transition-process span + span::before {
  content: "—";
  display: block;
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.4);
}

/* =========================
   RESEARCH SECTION
   ========================= */

.research-section {
  position: relative;
  margin-top: -1px;
  min-height: min(75vh, 720px);
  padding: clamp(58px, 5.8vw, 86px) 0 clamp(62px, 6vw, 92px);
  background:
    radial-gradient(80% 90% at 76% 10%, rgba(255, 252, 243, 0.3), rgba(226, 162, 116, 0) 66%),
    radial-gradient(58% 68% at 18% 22%, rgba(255, 236, 216, 0.28), rgba(212, 139, 98, 0) 72%),
    linear-gradient(135deg, #e5ad8e 0%, #d39472 50%, #b97960 100%);
  color: #fff8ee;
  overflow: hidden;
}

.research-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 0%, rgba(255, 255, 255, 0.045) 24%, rgba(255, 255, 255, 0.18) 43%, rgba(255, 245, 232, 0.085) 60%, transparent 80%),
    radial-gradient(760px 380px at 62% 16%, rgba(255, 255, 255, 0.16), transparent 76%);
  opacity: 0.78;
  pointer-events: none;
}

.research-section::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 248, 238, 0.2);
  border-bottom: 1px solid rgba(74, 40, 31, 0.16);
  pointer-events: none;
}

.research-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
  gap: clamp(72px, 9vw, 144px);
  align-items: center;
}

@media (min-width: 1100px) {
  .research-shell {
    width: min(calc(100vw - clamp(72px, 7vw, 128px)), 1580px);
    max-width: none;
    margin-left: calc(50% - min(calc(100vw - clamp(72px, 7vw, 128px)), 1580px) / 2);
  }
}

.research-copy {
  max-width: 720px;
}

.research-eyebrow {
  margin: 0;
  color: rgba(255, 251, 237, 0.82);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.research-copy h2 {
  margin: 16px 0 0;
  color: rgba(255, 250, 242, 0.98);
  font-family: var(--font-sans);
  font-size: clamp(2.55rem, 4.35vw, 4.8rem);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 0.94;
}

.research-copy > p:not(.research-eyebrow),
.research-closing {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 248, 238, 0.78);
  font-size: 0.98rem;
  line-height: 1.68;
}

.research-copy > strong {
  display: block;
  max-width: 620px;
  margin-top: clamp(26px, 3.2vw, 40px);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 248, 238, 0.42);
  color: rgba(255, 250, 242, 0.96);
  font-size: clamp(1.22rem, 1.8vw, 1.82rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.14;
}

.research-closing {
  margin-top: 14px;
  color: rgba(255, 248, 238, 0.66);
  font-size: 0.86rem;
}

.research-layers {
  justify-self: end;
  width: min(100%, 620px);
  border-top: 1px solid rgba(255, 248, 238, 0.42);
}

.research-layers article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: clamp(18px, 2vw, 28px);
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 248, 238, 0.28);
}

/* =========================
   HOME ACCESS SECTION
   ========================= */

.home-access-section {
  position: relative;
  margin-top: -1px;
  padding: clamp(64px, 6.6vw, 96px) 0 clamp(70px, 7vw, 106px);
  background:
    radial-gradient(620px 320px at 88% 18%, rgba(114, 131, 112, 0.08), transparent 70%),
    linear-gradient(90deg, rgba(47, 102, 81, 0.055) 1px, transparent 1px),
    #f7f1e8;
  background-size: auto, 72px 72px, auto;
  color: #20332d;
  overflow: hidden;
}

.home-access-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 0.84fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}

.home-access-copy {
  max-width: 620px;
}

.home-access-copy h2 {
  max-width: 10ch;
  margin: 18px 0 0;
  color: #20332d;
  font-family: var(--font-sans);
  font-size: clamp(2.9rem, 5.6vw, 5.6rem);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 0.94;
}

.home-access-copy > p:not(.request-access-eyebrow) {
  max-width: 570px;
  margin: 24px 0 0;
  color: rgba(32, 51, 45, 0.68);
  font-size: 0.98rem;
  line-height: 1.76;
}

.home-access-steps {
  display: grid;
  gap: 0;
  max-width: 560px;
  margin: clamp(26px, 3vw, 38px) 0 0;
  padding: 0;
  border-top: 1px solid rgba(32, 51, 45, 0.16);
  list-style: none;
}

.home-access-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(32, 51, 45, 0.12);
  color: rgba(32, 51, 45, 0.68);
  font-size: 0.86rem;
  line-height: 1.42;
}

.home-access-steps span {
  color: rgba(47, 102, 81, 0.64);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.home-access-form-card {
  padding: clamp(22px, 2.4vw, 30px);
  box-shadow:
    14px 14px 0 rgba(47, 102, 81, 0.055),
    0 18px 42px rgba(54, 45, 31, 0.06);
}

.home-access-form {
  margin-top: 22px;
}

.home-access-form .request-access-fields {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px 18px;
}

.home-access-field--top {
  grid-column: span 2;
}

.home-access-field--half {
  grid-column: span 3;
}

.home-access-field--full {
  grid-column: 1 / -1;
}

.home-access-form .request-access-field input,
.home-access-form .request-access-field select {
  min-height: 50px;
  padding-right: 18px;
  padding-left: 18px;
}

.home-access-form .request-access-field textarea {
  min-height: 88px;
}

.home-footer.locations-footer {
  margin-top: 0;
  padding: clamp(72px, 7vw, 96px) 0 clamp(18px, 1.8vw, 26px);
  background: #172720;
  color: rgba(255, 251, 237, 0.78);
}

/* =========================
   PRE-FOOTER CTA
   ========================= */

.prefooter-cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 2.9vw, 40px) 0;
  border-top: 1px solid rgba(255, 251, 237, 0.1);
  background:
    radial-gradient(680px 320px at 20% 12%, rgba(255, 251, 237, 0.1), transparent 68%),
    radial-gradient(620px 360px at 84% 72%, rgba(22, 39, 33, 0.22), transparent 72%),
    linear-gradient(135deg, #728370 0%, #4f604d 52%, #172720 100%);
  color: #fffbed;
}

.prefooter-cta-shell {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 860px;
  text-align: center;
}

.prefooter-cta-eyebrow {
  margin: 0;
  color: rgba(255, 251, 237, 0.8);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.prefooter-cta-shell h2 {
  max-width: none;
  margin: 12px 0 0;
  color: #fffbed;
  font-family: var(--font-sans);
  font-size: clamp(1.9rem, 3.55vw, 3.78rem);
  font-weight: 640;
  letter-spacing: -0.035em;
  line-height: 0.96;
  white-space: nowrap;
}

.prefooter-cta-shell > p:not(.prefooter-cta-eyebrow) {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255, 251, 237, 0.68);
  font-size: 1.02rem;
  line-height: 1.72;
}

.prefooter-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 18px;
  padding: 0 30px;
  border: 1px solid rgba(255, 251, 237, 0.42);
  background: rgba(255, 251, 237, 0.08);
  color: #fffbed;
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.prefooter-cta-button:hover,
.prefooter-cta-button:focus-visible {
  border-color: rgba(255, 251, 237, 0.72);
  background: rgba(255, 251, 237, 0.14);
  transform: translateY(-1px);
}

.prefooter-cta-lines {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  pointer-events: none;
}

.prefooter-cta-lines span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(720px, 72vw);
  height: 148px;
  border: 1px solid rgba(255, 251, 237, 0.1);
  overflow: hidden;
  transform: translate(-50%, -50%) skewX(-22deg);
  animation: prefooterLineDrift 24s linear infinite;
}

.prefooter-cta-lines span::before,
.prefooter-cta-lines span::after {
  content: "";
  display: none;
  position: absolute;
  left: 0;
  top: -1.5px;
  width: 38%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 251, 237, 0.96), transparent);
  opacity: 0;
  transform: translateX(-125%);
  animation: prefooterSignalSweep 18s linear infinite;
  filter: drop-shadow(0 0 5px rgba(255, 251, 237, 0.22));
}

.prefooter-cta-lines span:nth-child(1) {
  margin-left: -28vw;
  margin-top: -34px;
}

.prefooter-cta-lines span:nth-child(1)::before,
.prefooter-cta-lines span:nth-child(1)::after {
  display: block;
}

.prefooter-cta-lines span:nth-child(1)::after {
  top: auto;
  right: 0;
  bottom: -1.5px;
  left: auto;
  background: linear-gradient(270deg, transparent, rgba(255, 251, 237, 0.82), transparent);
  transform: translateX(125%);
  animation-name: prefooterSignalReturn;
  animation-delay: -1.8s;
}

.prefooter-cta-lines span:nth-child(2) {
  width: min(620px, 64vw);
  margin-left: 24vw;
  margin-top: 42px;
  animation-delay: -8s;
}

.prefooter-cta-lines span:nth-child(2)::before,
.prefooter-cta-lines span:nth-child(2)::after {
  display: block;
  opacity: 0;
  animation-delay: -9s;
  background: linear-gradient(90deg, transparent, rgba(255, 251, 237, 0.72), transparent);
}

.prefooter-cta-lines span:nth-child(2)::after {
  top: auto;
  right: 0;
  bottom: -1.5px;
  left: auto;
  background: linear-gradient(270deg, transparent, rgba(255, 251, 237, 0.6), transparent);
  transform: translateX(125%);
  animation-name: prefooterSignalReturn;
  animation-delay: -10.8s;
}

.prefooter-cta-lines span:nth-child(3) {
  width: min(520px, 56vw);
  margin-left: 8vw;
  margin-top: -94px;
  opacity: 0.65;
  animation-delay: -16s;
}

@keyframes prefooterLineDrift {
  0% {
    transform: translate(-54%, -50%) skewX(-22deg);
  }
  50% {
    transform: translate(-47%, -50%) skewX(-22deg);
  }
  100% {
    transform: translate(-54%, -50%) skewX(-22deg);
  }
}

@keyframes prefooterSignalSweep {
  0% {
    opacity: 0;
    transform: translateX(-125%);
  }
  7% {
    opacity: 1;
  }
  54% {
    opacity: 1;
    transform: translateX(320%);
  }
  64% {
    opacity: 0;
    transform: translateX(360%);
  }
  100% {
    opacity: 0;
    transform: translateX(360%);
  }
}

@keyframes prefooterSignalReturn {
  0%,
  46% {
    opacity: 0;
    transform: translateX(125%);
  }
  54% {
    opacity: 0.82;
  }
  88% {
    opacity: 0.82;
    transform: translateX(-320%);
  }
  100% {
    opacity: 0;
    transform: translateX(-360%);
  }
}

@keyframes methodBridgeRule {
  0% {
    opacity: 0.32;
    transform: scaleX(0.58);
  }
  50% {
    opacity: 0.72;
    transform: scaleX(1);
  }
  100% {
    opacity: 0.32;
    transform: scaleX(0.58);
  }
}

@media (prefers-reduced-motion: reduce) {
  .prefooter-cta-lines span,
  .prefooter-cta-lines span::before,
  .prefooter-cta-lines span::after,
  .method-bridge-lines span,
  .method-bridge-lines span::before,
  .method-bridge-lines span::after,
  .method-bridge-visual::before,
  .method-bridge-rules span {
    animation: none;
  }
}

/* =========================
   FAQ SECTIONS
   ========================= */

.faq-section {
  position: relative;
  margin-top: -1px;
  padding: clamp(54px, 5.6vw, 82px) 0 clamp(62px, 6.2vw, 92px);
  border-top: 1px solid rgba(32, 51, 45, 0.12);
  background:
    linear-gradient(90deg, rgba(47, 102, 81, 0.065) 1px, transparent 1px),
    linear-gradient(180deg, #f4eee4 0%, #f4eee4 100%);
  background-size: 72px 72px, auto;
  color: #20332d;
}

.request-access-faq-section {
  padding-top: clamp(18px, 2.2vw, 30px);
  border-top: 0;
}

.home-faq-section {
  padding-top: clamp(28px, 3.2vw, 42px);
  padding-bottom: clamp(24px, 3vw, 42px);
  border-top: 0;
  background:
    radial-gradient(620px 320px at 88% 18%, rgba(114, 131, 112, 0.08), transparent 70%),
    linear-gradient(90deg, rgba(47, 102, 81, 0.055) 1px, transparent 1px),
    #f7f1e8;
  background-size: auto, 72px 72px, auto;
}

.faq-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.72fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: start;
}

.faq-shell--compact {
  max-width: 1040px;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 3.6vw, 44px);
}

.faq-shell--compact.request-access-faq-shell {
  width: min(calc(100% - 48px), 1440px);
  max-width: 1440px;
}

.faq-intro {
  max-width: 520px;
}

.faq-eyebrow {
  margin: 0;
  color: #173f34;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.faq-intro h2 {
  margin: 18px 0 0;
  color: #20332d;
  font-family: var(--font-sans);
  font-size: clamp(2.35rem, 4.5vw, 4.8rem);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 0.96;
}

.faq-intro p:not(.faq-eyebrow) {
  max-width: 500px;
  margin: 22px 0 0;
  color: rgba(32, 51, 45, 0.66);
  font-size: 0.96rem;
  line-height: 1.72;
}

.faq-shell--compact .faq-intro {
  max-width: 620px;
}

.faq-shell--compact .faq-intro h2 {
  font-size: clamp(2.15rem, 3.6vw, 3.7rem);
}

.faq-shell--compact .faq-intro p:not(.faq-eyebrow) {
  max-width: 560px;
  margin-top: 18px;
}

.request-access-faq-shell .faq-intro {
  max-width: none;
}

.request-access-faq-shell #request-access-faq-title {
  white-space: nowrap;
}

.faq-list {
  position: relative;
  z-index: 1;
}

.request-access-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 4.4vw, 72px);
  align-items: start;
  width: 100%;
}

.request-access-faq-column {
  min-width: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(32, 51, 45, 0.14);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-question {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 22px;
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
  min-height: 72px;
  padding: 18px 0;
  color: #20332d;
  cursor: pointer;
  pointer-events: auto;
  text-align: left;
}

.faq-question span {
  pointer-events: none;
  color: rgba(47, 102, 81, 0.62);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
}

.faq-question strong {
  pointer-events: none;
  font-size: clamp(1rem, 1.14vw, 1.22rem);
  font-weight: 680;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.faq-question i {
  position: relative;
  pointer-events: none;
  width: 18px;
  height: 18px;
  justify-self: end;
}

.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  border-top: 1px solid rgba(32, 51, 45, 0.62);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, border-color 220ms ease;
}

.faq-question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-question {
  color: #172720;
}

.faq-item.is-open .faq-question span,
.faq-question:hover span,
.faq-question:focus-visible span {
  color: #5f6b64;
}

.faq-question:hover i::before,
.faq-question:hover i::after,
.faq-question:focus-visible i::before,
.faq-question:focus-visible i::after,
.faq-item.is-open .faq-question i::before,
.faq-item.is-open .faq-question i::after {
  border-color: #5f6b64;
}

.faq-item.is-open .faq-question i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}

.faq-answer p {
  max-width: 760px;
  margin: 0;
  padding: 0 42px 24px 68px;
  color: rgba(32, 51, 45, 0.66);
  font-size: 0.95rem;
  line-height: 1.72;
}

.faq-answer p.faq-answer-copy--cta {
  padding-bottom: 16px;
}

.faq-answer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 0 0 26px 68px;
  padding: 0 18px;
  border: 1px solid rgba(32, 51, 45, 0.24);
  background: rgba(32, 51, 45, 0.045);
  color: #20332d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.faq-answer-cta:hover,
.faq-answer-cta:focus-visible {
  border-color: rgba(32, 51, 45, 0.42);
  background: rgba(32, 51, 45, 0.075);
  transform: translateY(-1px);
}

.research-layers span {
  color: rgba(255, 248, 238, 0.52);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.18em;
  line-height: 1.15;
}

.research-layers h3 {
  margin: 0;
  color: rgba(255, 250, 242, 0.96);
  font-size: clamp(1.18rem, 1.45vw, 1.46rem);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.12;
}

.research-layers p {
  margin: 10px 0 0;
  color: rgba(255, 248, 238, 0.66);
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .research-section {
    min-height: auto;
  }

  .research-shell {
    grid-template-columns: 1fr;
    gap: 44px;
    align-items: start;
  }

  .research-copy {
    max-width: 760px;
  }

  .home-access-shell {
    grid-template-columns: 1fr;
    gap: 42px;
    align-items: start;
  }

  .home-access-copy {
    max-width: 720px;
  }

  .home-access-form .request-access-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-access-field--top,
  .home-access-field--half {
    grid-column: span 1;
  }

  .home-access-field--full {
    grid-column: 1 / -1;
  }

  .faq-shell,
  .faq-shell--compact {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .request-access-faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .request-access-faq-column:first-child .faq-item:last-child {
    border-bottom: 1px solid rgba(32, 51, 45, 0.14);
  }

  .request-access-faq-shell #request-access-faq-title {
    white-space: normal;
  }

  .faq-intro {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .prefooter-cta-shell h2 {
    max-width: 100%;
    white-space: normal;
  }

  .research-section {
    min-height: auto;
    padding: 72px 0 82px;
  }

  .research-copy h2 {
    font-size: clamp(2.55rem, 13vw, 4.15rem);
  }

  .research-layers article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 20px 0;
  }

  .home-access-section {
    padding: 68px 0 76px;
  }

  .home-access-copy h2 {
    font-size: clamp(2.55rem, 13vw, 4.3rem);
  }

  .home-access-form-card {
    padding: 22px;
  }

  .home-access-form .request-access-fields {
    grid-template-columns: 1fr;
  }

  .home-access-field--top,
  .home-access-field--half,
  .home-access-field--full {
    grid-column: 1 / -1;
  }

  .faq-section {
    padding: 56px 0 68px;
  }

  .home-faq-section {
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .faq-question {
    grid-template-columns: 36px minmax(0, 1fr) 20px;
    min-height: 66px;
    gap: 12px;
  }

  .faq-answer p {
    padding: 0 0 22px 48px;
  }

  .faq-answer p.faq-answer-copy--cta {
    padding-bottom: 14px;
  }

  .faq-answer-cta {
    margin-left: 48px;
    margin-bottom: 24px;
  }
}

/* =========================
   INTELLIGENCE LAYER SECTION
   ========================= */

.market-atlas-section {
  --atlas-line: rgba(255, 252, 242, 0.5);
  --atlas-line-strong: rgba(255, 252, 242, 0.7);
  --atlas-line-soft: rgba(255, 252, 242, 0.34);
  --atlas-module-width: min(1380px, 100%);
  position: relative;
  margin-top: -1px;
  padding: clamp(48px, 4.9vw, 74px) 0 clamp(54px, 5.2vw, 78px);
  background: #f7f1e8;
  color: #17211d;
  overflow: hidden;
}

.market-atlas-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(620px 320px at 12% 18%, rgba(114, 131, 112, 0.13), transparent 70%),
    radial-gradient(720px 420px at 92% 18%, rgba(247, 241, 232, 0.72), transparent 72%);
  opacity: 0.78;
  pointer-events: none;
}

.market-atlas-shell {
  position: relative;
  z-index: 2;
  width: min(calc(var(--container) + 220px), calc(100vw - 72px));
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.7vw, 24px);
}

.market-atlas-copy {
  width: var(--atlas-module-width);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
}

.market-atlas-eyebrow {
  margin: 0;
  color: #173f34;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.market-atlas-cta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #17211d;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.market-atlas-cta::before {
  content: "";
  order: 2;
  width: 58px;
  height: 1px;
  margin-left: 18px;
  background: currentColor;
  opacity: 0.72;
  transition: transform 220ms ease, opacity 220ms ease;
  transform-origin: left center;
}

.market-atlas-cta::after {
  content: "";
  order: 3;
  width: 7px;
  height: 7px;
  margin-left: -7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  opacity: 0.72;
  transform: rotate(45deg);
  transition: transform 220ms ease, opacity 220ms ease;
}

.market-atlas-cta:hover::before,
.market-atlas-cta:focus-visible::before,
.market-atlas-cta:hover::after,
.market-atlas-cta:focus-visible::after {
  opacity: 1;
}

.market-atlas-cta:hover::before,
.market-atlas-cta:focus-visible::before {
  transform: scaleX(1.16);
}

.market-atlas-cta:hover::after,
.market-atlas-cta:focus-visible::after {
  transform: translateX(9px) rotate(45deg);
}

.market-atlas-product-wrap {
  position: relative;
  width: var(--atlas-module-width);
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}

.market-atlas-product {
  position: relative;
  isolation: isolate;
  z-index: 2;
  width: 100%;
  min-height: 636px;
  border: 1px solid var(--atlas-line-strong);
  background:
    radial-gradient(560px 260px at 82% 16%, rgba(114, 131, 112, 0.07), transparent 68%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.34), rgba(255, 248, 238, 0.18)),
    linear-gradient(rgba(13, 20, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 20, 17, 0.03) 1px, transparent 1px),
    #fff8ee;
  background-size: auto, auto, 36px 36px, 36px 36px, auto;
  box-shadow:
    0 24px 70px rgba(46, 56, 47, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -1px 0 rgba(23, 33, 29, 0.06);
  overflow: visible;
}

@media (min-width: 1100px) {
  .market-atlas-shell {
    width: min(calc(100vw - clamp(44px, 5.4vw, 96px)), 1520px);
    max-width: none;
  }

  .market-atlas-copy {
    width: var(--atlas-module-width);
    margin-left: auto;
    margin-right: auto;
  }

  .market-atlas-product-wrap {
    width: var(--atlas-module-width);
    margin-left: auto;
    margin-right: auto;
  }

  .market-atlas-product {
    width: 100%;
    margin: 0;
  }

  .market-atlas-action {
    justify-content: flex-end;
    padding-right: 0;
  }

  .market-atlas-lower {
    width: var(--atlas-module-width);
    margin-left: auto;
    margin-right: auto;
  }
}

.market-atlas-lower {
  width: var(--atlas-module-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 48px);
  margin-top: -4px;
}

.market-atlas-action {
  display: flex;
  justify-content: flex-end;
  justify-self: end;
  margin-top: 2px;
  padding-right: 0;
}

.market-atlas-disclaimer {
  flex: 0 1 760px;
  max-width: 760px;
  margin-top: 0;
  margin-bottom: 0;
  color: rgba(23, 33, 29, 0.62);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.62;
  text-align: left;
}

.market-atlas-appbar,
.market-atlas-signal-strip,
.market-atlas-console {
  position: relative;
  z-index: 2;
}

.market-atlas-product::before,
.market-atlas-product::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  pointer-events: none;
  z-index: 3;
}

.market-atlas-product::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid var(--atlas-line-strong);
  border-left: 1px solid var(--atlas-line-strong);
}

.market-atlas-product::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid var(--atlas-line-strong);
  border-bottom: 1px solid var(--atlas-line-strong);
}

.market-atlas-appbar {
  position: relative;
  z-index: 50;
  isolation: isolate;
  pointer-events: auto;
  min-height: 56px;
  display: grid;
  grid-template-columns: 148px minmax(220px, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 11px 14px;
  border-bottom: 1px solid var(--atlas-line);
  background:
    linear-gradient(90deg, rgba(114, 131, 112, 0.055), transparent 44%),
    rgba(255, 253, 248, 0.78);
}

.market-atlas-signal-strip {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 7px 14px;
  border-bottom: 1px solid var(--atlas-line);
  background: #fffaf0;
}

.market-atlas-signal-strip[data-market-atlas-theme="market"] {
  border-bottom-color: var(--atlas-line);
  background: #fffaf0;
}

.market-atlas-signal-strip[data-market-atlas-theme="opportunity"] {
  border-bottom-color: var(--atlas-line);
  background: #fffaf0;
}

.market-atlas-signal-strip[data-market-atlas-theme="developer"] {
  border-bottom-color: var(--atlas-line);
  background: #fffaf0;
}

.market-atlas-signal-strip[data-market-atlas-theme="rental"] {
  border-bottom-color: var(--atlas-line);
  background: #fffaf0;
}

.market-atlas-signal-strip[data-market-atlas-theme="risk"] {
  border-bottom-color: var(--atlas-line);
  background: #fffaf0;
}

.market-atlas-select {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 28px;
  color: rgba(23, 33, 29, 0.54);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.market-atlas-select:first-child {
  margin-right: 0;
}

.market-atlas-select:last-child {
  margin-left: 0;
}

.market-atlas-select {
  justify-content: center;
  padding: 0;
}

.market-atlas-select select {
  width: clamp(82px, 7.4vw, 104px);
  height: 29px;
  padding: 0 23px 0 9px;
  border: 1px solid var(--atlas-line-strong);
  border-radius: 0;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, rgba(23, 33, 29, 0.56) 50%) calc(100% - 12px) 11px / 5px 5px no-repeat,
    linear-gradient(135deg, rgba(23, 33, 29, 0.56) 50%, transparent 50%) calc(100% - 7px) 11px / 5px 5px no-repeat,
    rgba(255, 253, 248, 0.3);
  color: rgba(23, 33, 29, 0.72);
  font: inherit;
  font-size: 0.56rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.market-atlas-select:first-child select {
  width: clamp(108px, 8.4vw, 124px);
}

.market-atlas-select:nth-child(2) select,
.market-atlas-select:nth-child(3) select {
  width: clamp(108px, 8.4vw, 124px);
}

.market-atlas-select:nth-child(4) select,
.market-atlas-select:nth-child(5) select {
  width: clamp(96px, 7.8vw, 112px);
}

.market-atlas-select:last-child select {
  width: clamp(112px, 8.7vw, 128px);
}

.market-atlas-select select:hover,
.market-atlas-select select:focus {
  border-color: var(--atlas-line-strong);
  background-color: rgba(255, 253, 248, 0.48);
}

.market-atlas-select select:focus {
  outline: 1px solid rgba(23, 33, 29, 0.28);
  outline-offset: 1px;
}

.market-atlas-appbar__brand {
  display: grid;
  gap: 4px;
  color: rgba(23, 33, 29, 0.72);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.market-atlas-appbar__brand strong {
  color: #17211d;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.market-atlas-search {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(90, 96, 82, 0.24);
  background: rgba(255, 253, 248, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
  color: rgba(23, 33, 29, 0.56);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.market-atlas-search:hover,
.market-atlas-search:focus-within {
  border-color: rgba(90, 96, 82, 0.38);
  background: rgba(255, 253, 248, 0.9);
  color: rgba(23, 33, 29, 0.66);
}

.market-atlas-search::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border: 1px solid rgba(90, 96, 82, 0.42);
  transform: rotate(45deg);
  transition: border-color 180ms ease;
}

.market-atlas-search:hover::before,
.market-atlas-search:focus-within::before {
  border-color: rgba(90, 96, 82, 0.58);
}

.market-atlas-filters {
  position: relative;
  z-index: 60;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: flex-end;
  pointer-events: auto;
}

.market-atlas-filters button {
  position: relative;
  z-index: 1;
  padding: 7px 9px;
  border: 1px solid var(--atlas-line);
  background: rgba(233, 227, 211, 0.2);
  color: rgba(23, 33, 29, 0.58);
  font: inherit;
  font-size: 9.5px;
  font-weight: 850;
  letter-spacing: 0.095em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.market-atlas-filters button:nth-child(2) {
  background: rgba(234, 215, 197, 0.22);
}

.market-atlas-filters button:nth-child(3) {
  background: rgba(215, 221, 207, 0.22);
}

.market-atlas-filters button:nth-child(4) {
  background: rgba(241, 234, 223, 0.3);
}

.market-atlas-filters button:nth-child(5) {
  background: rgba(228, 220, 200, 0.24);
}

.market-atlas-filters button:hover,
.market-atlas-filters button:focus-visible,
.market-atlas-filters button.is-active {
  border-color: var(--atlas-line-strong);
  color: rgba(23, 33, 29, 0.84);
}

.market-atlas-filters button[data-market-atlas-theme="market"]:hover,
.market-atlas-filters button[data-market-atlas-theme="market"]:focus-visible,
.market-atlas-filters button[data-market-atlas-theme="market"].is-active {
  background: rgba(233, 227, 211, 0.52);
}

.market-atlas-filters button[data-market-atlas-theme="opportunity"]:hover,
.market-atlas-filters button[data-market-atlas-theme="opportunity"]:focus-visible,
.market-atlas-filters button[data-market-atlas-theme="opportunity"].is-active {
  background: rgba(234, 215, 197, 0.5);
}

.market-atlas-filters button[data-market-atlas-theme="developer"]:hover,
.market-atlas-filters button[data-market-atlas-theme="developer"]:focus-visible,
.market-atlas-filters button[data-market-atlas-theme="developer"].is-active {
  background: rgba(215, 221, 207, 0.54);
}

.market-atlas-filters button[data-market-atlas-theme="rental"]:hover,
.market-atlas-filters button[data-market-atlas-theme="rental"]:focus-visible,
.market-atlas-filters button[data-market-atlas-theme="rental"].is-active {
  background: rgba(241, 234, 223, 0.62);
}

.market-atlas-filters button[data-market-atlas-theme="risk"]:hover,
.market-atlas-filters button[data-market-atlas-theme="risk"]:focus-visible,
.market-atlas-filters button[data-market-atlas-theme="risk"].is-active {
  background: rgba(228, 220, 200, 0.54);
}

.market-atlas-filters button:focus-visible {
  outline: 1px solid rgba(23, 33, 29, 0.34);
  outline-offset: 2px;
}

.market-atlas-count {
  justify-self: end;
  padding: 8px 10px;
  border: 1px solid var(--atlas-line);
  background: rgba(255, 253, 248, 0.42);
  color: rgba(23, 33, 29, 0.62);
  font-size: 9.5px;
  font-weight: 850;
  letter-spacing: 0.105em;
  line-height: 1.3;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

.market-atlas-console {
  position: relative;
  isolation: isolate;
  z-index: 5;
  display: grid;
  grid-template-columns: clamp(270px, 23vw, 330px) minmax(0, 1fr);
  min-height: 540px;
}

.market-atlas-console::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: clamp(270px, 23vw, 330px);
  background: #fffaf0;
  pointer-events: none;
}

.market-atlas-results {
  position: relative;
  isolation: isolate;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-content: start;
  min-height: 540px;
  max-height: 540px;
  border-right: 1px solid var(--atlas-line);
  background: #fffaf0;
  overflow: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(23, 33, 29, 0.28) transparent;
}

.market-atlas-results::before {
  content: none;
}

.market-atlas-result {
  position: relative;
  z-index: 1;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 42px;
  padding: 0 22px;
  border: 0;
  border-bottom: 1px solid var(--atlas-line-soft);
  background: transparent;
  color: rgba(23, 33, 29, 0.64);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.market-atlas-result span {
  color: rgba(23, 33, 29, 0.86);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.market-atlas-result:hover,
.market-atlas-result:focus-visible,
.market-atlas-result.is-active {
  background:
    linear-gradient(90deg, rgba(114, 131, 112, 0.18), rgba(114, 131, 112, 0.055));
  color: #17211d;
}

.market-atlas-result:focus-visible {
  outline: 1px solid rgba(23, 33, 29, 0.38);
  outline-offset: -4px;
}

.market-atlas-sidebar-note {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  margin: auto 14px 22px;
  padding: 13px 14px;
  border: 1px solid var(--atlas-line);
  background:
    linear-gradient(135deg, rgba(233, 227, 211, 0.66), rgba(255, 248, 238, 0.34)),
    rgba(255, 253, 248, 0.62);
  color: rgba(23, 33, 29, 0.58);
}

.market-atlas-sidebar-note[data-market-atlas-theme="market"] {
  background:
    linear-gradient(135deg, rgba(233, 227, 211, 0.72), rgba(255, 248, 238, 0.36)),
    rgba(255, 253, 248, 0.64);
}

.market-atlas-sidebar-note[data-market-atlas-theme="opportunity"] {
  background:
    linear-gradient(135deg, rgba(234, 215, 197, 0.7), rgba(255, 248, 238, 0.36)),
    rgba(255, 253, 248, 0.64);
}

.market-atlas-sidebar-note[data-market-atlas-theme="developer"] {
  background:
    linear-gradient(135deg, rgba(215, 221, 207, 0.76), rgba(255, 248, 238, 0.36)),
    rgba(255, 253, 248, 0.64);
}

.market-atlas-sidebar-note[data-market-atlas-theme="rental"] {
  background:
    linear-gradient(135deg, rgba(241, 234, 223, 0.82), rgba(255, 248, 238, 0.38)),
    rgba(255, 253, 248, 0.66);
}

.market-atlas-sidebar-note[data-market-atlas-theme="risk"] {
  background:
    linear-gradient(135deg, rgba(228, 220, 200, 0.76), rgba(255, 248, 238, 0.36)),
    rgba(255, 253, 248, 0.64);
}

.market-atlas-sidebar-note span {
  display: block;
  color: rgba(23, 33, 29, 0.46);
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.market-atlas-sidebar-note strong {
  display: block;
  margin-top: 8px;
  color: rgba(23, 33, 29, 0.86);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.market-atlas-sidebar-note p {
  margin: 10px 0 0;
  color: rgba(23, 33, 29, 0.54);
  font-size: 0.7rem;
  font-weight: 620;
  line-height: 1.45;
}

.market-atlas-map-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 540px;
  background:
    radial-gradient(420px 240px at 72% 32%, rgba(114, 131, 112, 0.07), transparent 70%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.46), rgba(255, 248, 238, 0.28)),
    rgba(255, 248, 238, 0.48);
}

.market-atlas-map-stage::before {
  content: none;
}

.market-atlas-zoom {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 430;
  display: grid;
  border: 1px solid var(--atlas-line-strong);
  background: rgba(255, 248, 238, 0.94);
}

.market-atlas-zoom button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-bottom: 1px solid var(--atlas-line);
  background: #fff8ee;
  color: rgba(23, 33, 29, 0.78);
  font: inherit;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.market-atlas-zoom button:last-child {
  border-bottom: 0;
}

.market-atlas-zoom button:hover,
.market-atlas-zoom button:focus-visible {
  background: rgba(255, 253, 248, 0.96);
  color: #17211d;
}

.market-atlas-zoom button:focus-visible {
  outline: 1px solid rgba(23, 33, 29, 0.34);
  outline-offset: -3px;
}

.market-atlas-map .leaflet-control-zoom,
.market-atlas-map .leaflet-control-zoom a,
.market-atlas-map .leaflet-control-zoom-in,
.market-atlas-map .leaflet-control-zoom-out {
  border-radius: 0 !important;
}

.market-atlas-map .leaflet-control-zoom {
  border: 1px solid var(--atlas-line-strong) !important;
  background: #fff8ee !important;
}

.market-atlas-map .leaflet-control-zoom a {
  border-color: var(--atlas-line) !important;
  background: #fff8ee !important;
  color: rgba(23, 33, 29, 0.78) !important;
}

.market-atlas-map .leaflet-control-zoom a:hover,
.market-atlas-map .leaflet-control-zoom a:focus {
  background: rgba(255, 253, 248, 0.96) !important;
  color: #17211d !important;
}

.market-atlas-panel {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.market-atlas-panel::before,
.market-atlas-panel::after {
  content: none;
}

.market-atlas-panel__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 10px;
  color: rgba(13, 20, 17, 0.48);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.market-atlas-map-wrap {
  position: relative;
  border: 1px solid var(--atlas-line);
  background: rgba(255, 248, 238, 0.5);
  overflow: hidden;
}

.market-atlas-map {
  position: relative;
  height: clamp(540px, 42vw, 610px);
  min-height: 540px;
}

.market-atlas-map::before {
  content: none;
}

.market-atlas-map.leaflet-container {
  background: #fff8ee;
  color: #0d1411;
  font-family: var(--font-sans);
}

.market-atlas-map .leaflet-tile-pane {
  filter: saturate(0.02) contrast(0.94) brightness(1.08) sepia(0.08);
}

.market-atlas-map .leaflet-control-attribution {
  background: transparent;
  box-shadow: none;
  color: rgba(13, 20, 17, 0.58);
  font-size: 10px;
}

.market-atlas-map .leaflet-control-attribution a {
  color: rgba(13, 20, 17, 0.72);
}

.market-atlas-marker {
  width: 22px !important;
  height: 22px !important;
}

.market-atlas-marker__dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 1.25px solid rgba(25, 37, 31, 0.9);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 0 0 3px rgba(114, 131, 112, 0.11);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.market-atlas-marker.is-active .market-atlas-marker__dot,
.market-atlas-marker.is-hovered .market-atlas-marker__dot {
  border-color: rgba(13, 20, 17, 0.95);
  background: #728370;
  box-shadow: 0 0 0 5px rgba(114, 131, 112, 0.17);
  transform: translate(-50%, -50%) rotate(45deg) scale(1.32);
}

.market-atlas-tags {
  position: absolute;
  left: 14px;
  top: 14px;
  bottom: auto;
  z-index: 420;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: min(520px, calc(100% - 36px));
  pointer-events: none;
}

.market-atlas-tags span {
  padding: 6px 8px;
  border: 1px solid var(--atlas-line);
  background: rgba(255, 246, 229, 0.64);
  color: rgba(13, 20, 17, 0.56);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.market-atlas-intel {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--atlas-line);
  border-bottom: 1px solid var(--atlas-line-soft);
  background: transparent;
}

.market-atlas-intel > span {
  color: #17211d;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.market-atlas-intel dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.market-atlas-intel dl div {
  display: grid;
  gap: 5px;
  align-items: start;
}

.market-atlas-intel dt,
.market-atlas-intel dd {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.45;
}

.market-atlas-intel dt {
  color: rgba(23, 33, 29, 0.46);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.market-atlas-intel dd {
  color: rgba(23, 33, 29, 0.76);
  font-weight: 650;
}

.market-atlas-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 32px;
  color: rgba(13, 20, 17, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intelligence-section {
  position: relative;
  margin-top: -1px;
  padding: 42px 0 132px;
  background: rgba(8, 8, 8, 0.98);
  color: #f4efe7;
  overflow: hidden;
}

.intelligence-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 16px;
  height: 190px;
  background: radial-gradient(
    ellipse at 34% 45%,
    rgba(255, 255, 255, 0.11) 0%,
    rgba(255, 255, 255, 0.05) 26%,
    rgba(255, 255, 255, 0.018) 42%,
    rgba(255, 255, 255, 0) 68%
  );
  filter: blur(42px);
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
}

.intelligence-shell {
  position: relative;
  z-index: 1;
}

.intelligence-header {
  max-width: 1120px;
  margin-left: clamp(-184px, -11vw, -112px);
}

.market-thesis-eyebrow,
.intelligence-eyebrow,
.intelligence-module-label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255, 251, 237, 0.76);
}

.market-thesis-eyebrow {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.intelligence-header h2 {
  max-width: 1040px;
  margin: 16px 0 0;
  font-family: var(--font-sans);
  font-size: clamp(30px, 3.8vw, 56px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.94;
  text-transform: uppercase;
  color: #f4efe7;
  white-space: nowrap;
}

.intelligence-header > p {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.64);
}

.intelligence-map-module {
  display: grid;
  grid-template-columns: minmax(274px, 0.22fr) minmax(0, 1fr);
  gap: clamp(24px, 2.8vw, 40px);
  align-items: stretch;
  width: min(calc(100% + 260px), calc(100vw - 24px));
  min-height: 582px;
  margin: 76px 0 0 calc((100% - min(calc(100% + 260px), calc(100vw - 24px))) / 2);
  padding: clamp(28px, 3.7vw, 44px);
  border: 1px solid rgba(166, 194, 180, 0.13);
  border-radius: 32px;
  background:
    radial-gradient(90% 88% at 80% 12%, rgba(255, 255, 255, 0.06), rgba(31, 70, 58, 0.025) 50%, rgba(31, 70, 58, 0) 72%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.048), rgba(31, 70, 58, 0.022)),
    rgba(5, 14, 12, 0.05);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    inset 0 -1px 0 rgba(125, 166, 146, 0.055);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.intelligence-preview {
  margin-top: 0;
  padding: 24px 22px;
  border: 1px solid rgba(166, 194, 180, 0.115);
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.044), rgba(31, 70, 58, 0.024)),
    rgba(5, 14, 12, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 34px rgba(21, 54, 44, 0.025);
}

.intelligence-preview__note {
  display: block;
  margin-bottom: 14px;
  color: rgba(180, 205, 189, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.intelligence-preview h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 250, 242, 0.96);
}

.intelligence-preview > p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.64);
}

.intelligence-preview dl {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.intelligence-preview dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.intelligence-preview dt,
.intelligence-preview dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

.intelligence-preview dt {
  color: rgba(255, 255, 255, 0.48);
}

.intelligence-preview dd {
  color: rgba(209, 222, 213, 0.86);
  font-weight: 600;
}

.intelligence-map-cta {
  margin-top: 30px;
}

.intelligence-map-cta p {
  max-width: 34ch;
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
}

.intelligence-map-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.intelligence-map-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: #f3eee4;
  color: #111;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.intelligence-map-cta__secondary {
  background: #f3eee4 !important;
  color: #111 !important;
}

.intelligence-map-cta__coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(226, 232, 223, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(244, 239, 231, 0.38);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: not-allowed;
  opacity: 1;
}

.intelligence-map-cta a:hover,
.intelligence-map-cta a:focus-visible {
  opacity: 0.88;
  transform: translateY(-1px);
}

.intelligence-map {
  position: relative;
  height: 540px;
  min-height: 540px;
  border-radius: 26px;
  background:
    radial-gradient(72% 86% at 48% 40%, rgba(54, 85, 76, 0.2), rgba(7, 12, 11, 0) 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.006));
  overflow: hidden;
}

.intelligence-map::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 410;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 76%);
  opacity: 0.18;
  pointer-events: none;
}

.intelligence-map.leaflet-container {
  width: 100%;
  height: 100%;
  background: #07100f;
  color: rgba(244, 239, 231, 0.78);
  font-family: var(--font-sans);
}

.intelligence-map .leaflet-tile-pane {
  filter: saturate(0.72) contrast(1.08) brightness(0.76) hue-rotate(12deg);
}

.intelligence-map .leaflet-control-zoom {
  margin-top: 18px;
  margin-right: 18px;
  border: 0;
  border-radius: 10px;
  box-shadow: none;
}

.intelligence-map .leaflet-control-zoom a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(226, 232, 223, 0.14);
  border-bottom: 1px solid rgba(226, 232, 223, 0.14);
  border-radius: 8px;
  margin-bottom: 8px;
  background: rgba(6, 14, 12, 0.76);
  color: rgba(244, 239, 231, 0.84);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 220ms ease, background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.intelligence-map .leaflet-control-zoom a:hover,
.intelligence-map .leaflet-control-zoom a:focus-visible {
  border-color: rgba(226, 232, 223, 0.28);
  background: rgba(255, 255, 255, 0.075);
  color: #f3eee4;
  transform: translateY(-1px);
}

.intelligence-map .leaflet-control-zoom a:first-child,
.intelligence-map .leaflet-control-zoom a:last-child {
  border-radius: 8px;
}

.intelligence-map .leaflet-control-zoom a:first-child {
  border-bottom: 1px solid rgba(226, 232, 223, 0.14);
}

.intelligence-map .leaflet-control-attribution {
  border-top-left-radius: 12px;
  background: rgba(6, 12, 11, 0.58);
  color: rgba(244, 239, 231, 0.34);
  font-size: 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.intelligence-map .leaflet-control-attribution a {
  color: rgba(244, 239, 231, 0.48);
}

.intelligence-map-marker {
  width: 42px !important;
  height: 42px !important;
}

.intelligence-map-marker__dot,
.intelligence-map-marker__pulse {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.intelligence-map-marker__dot {
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(7, 12, 11, 0.76);
  border-radius: 50%;
  background: rgba(226, 232, 223, 0.88);
  box-shadow:
    0 0 0 1px rgba(226, 232, 223, 0.24),
    0 0 20px rgba(209, 222, 213, 0.28);
  transform: translate(-50%, -50%);
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.intelligence-map-marker__pulse {
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(180, 205, 189, 0.25);
  border-radius: 50%;
  opacity: 0.72;
  transform: translate(-50%, -50%);
  animation: intelligence-marker-pulse 2800ms ease-in-out infinite;
  transition: border-color 220ms ease, opacity 220ms ease, transform 220ms ease;
}

@keyframes intelligence-marker-pulse {
  0%,
  100% {
    opacity: 0.38;
    transform: translate(-50%, -50%) scale(0.86);
  }

  50% {
    opacity: 0.86;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.intelligence-map-marker.is-active .intelligence-map-marker__dot,
.intelligence-map-marker.is-hovered .intelligence-map-marker__dot {
  background: #f3eee4;
  box-shadow:
    0 0 0 1px rgba(243, 238, 228, 0.38),
    0 0 24px rgba(243, 238, 228, 0.34);
  transform: translate(-50%, -50%) scale(1.08);
}

.intelligence-map-marker.is-active .intelligence-map-marker__pulse,
.intelligence-map-marker.is-hovered .intelligence-map-marker__pulse {
  border-color: rgba(226, 232, 223, 0.48);
  opacity: 0.95;
  transform: translate(-50%, -50%) scale(1.08);
}

.intelligence-map-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 32px;
  color: rgba(244, 239, 231, 0.62);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intelligence-framework {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(calc(100% + 260px), calc(100vw - 24px));
  margin-top: 34px;
  margin-left: calc((100% - min(calc(100% + 260px), calc(100vw - 24px))) / 2);
}

.intelligence-block {
  position: relative;
  min-height: 238px;
  padding: 30px;
  border: 1px solid rgba(166, 194, 180, 0.115);
  border-radius: 22px;
  background:
    radial-gradient(110% 86% at 18% 0%, rgba(255, 255, 255, 0.07), rgba(31, 70, 58, 0.026) 42%, rgba(31, 70, 58, 0) 72%),
    radial-gradient(88% 80% at 78% 86%, rgba(31, 70, 58, 0.065), rgba(5, 14, 12, 0) 66%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.046), rgba(11, 28, 23, 0.052) 48%, rgba(31, 70, 58, 0.024)),
    rgba(5, 12, 10, 0.04);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    inset 0 -1px 0 rgba(125, 166, 146, 0.045);
  overflow: hidden;
  transition: border-color 320ms ease, box-shadow 320ms ease, transform 320ms ease;
}

.intelligence-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.105) 0%, rgba(218, 235, 225, 0.043) 18%, rgba(255, 255, 255, 0) 42%);
  opacity: 0.34;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.intelligence-block::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 21px;
  border: 1px solid rgba(255, 255, 255, 0.028);
  pointer-events: none;
}

.intelligence-block:hover {
  border-color: rgba(148, 188, 168, 0.22);
  box-shadow:
    0 28px 68px rgba(0, 0, 0, 0.28),
    0 18px 52px rgba(31, 70, 58, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(125, 166, 146, 0.07);
  transform: translateY(-2px);
}

.intelligence-block:hover::before {
  opacity: 0.48;
}

.intelligence-block span {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  color: rgba(194, 214, 201, 0.66);
}

.intelligence-block h3 {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.15vw, 34px);
  font-weight: 500;
  line-height: 1.03;
  color: rgba(255, 250, 242, 0.94);
}

.intelligence-block p {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.74;
  color: rgba(255, 255, 255, 0.66);
}

.intelligence-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% + 260px), calc(100vw - 24px));
  margin-top: 24px;
  margin-left: calc((100% - min(calc(100% + 260px), calc(100vw - 24px))) / 2);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.intelligence-cta p {
  max-width: 440px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

.intelligence-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: #f3eee4;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.intelligence-cta a:hover,
.intelligence-cta a:focus-visible {
  opacity: 0.88;
  transform: translateY(-1px);
}

.intelligence-section .reveal {
  filter: blur(5px);
  transform: translateY(28px);
  transition:
    opacity 920ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 920ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 920ms cubic-bezier(0.22, 1, 0.36, 1);
}

.intelligence-section .reveal.is-visible {
  filter: blur(0);
  transform: translateY(0);
}

.intelligence-block:nth-child(2) {
  transition-delay: 100ms;
}

.intelligence-block:nth-child(3) {
  transition-delay: 200ms;
}

.intelligence-block:nth-child(4) {
  transition-delay: 300ms;
}

.intelligence-block:nth-child(5) {
  transition-delay: 400ms;
}

.intelligence-block:nth-child(6) {
  transition-delay: 500ms;
}

.intelligence-block:nth-child(7) {
  transition-delay: 600ms;
}

.intelligence-block:nth-child(8) {
  transition-delay: 700ms;
}

@media (prefers-reduced-motion: reduce) {
  .intelligence-section .reveal {
    filter: none;
    transform: none;
  }

  .intelligence-map-marker__pulse {
    animation: none;
  }

  .income-logic-card,
  .income-logic-card *,
  .income-logic-section .reveal {
    filter: none;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .developer-insight-shell {
    width: min(calc(100% - 48px), var(--container));
  }

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

  .method-bridge-shell {
    width: min(calc(100% - 48px), var(--container));
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .method-bridge-visual {
    width: min(100%, 640px);
    min-height: 148px;
  }

  .method-bridge-section--signals .method-bridge-copy {
    justify-self: start;
  }

  .roi-framework-shell {
    width: min(calc(100% - 48px), var(--container));
  }

  .roi-framework-meta {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
    transform: none;
  }

  .roi-framework-meta__label {
    flex-wrap: wrap;
  }

  .roi-framework-meta__disclaimer {
    max-width: 100%;
    justify-self: start;
    text-align: left;
  }

  .roi-framework-section {
    margin-bottom: 0;
  }

  .roi-framework-section::after {
    display: none;
  }

  .roi-framework-stack-track {
    margin-top: -6px;
    min-height: auto;
  }

  .roi-framework-stack {
    position: relative;
    top: auto;
    display: grid;
    gap: 18px;
    height: auto;
    min-height: auto;
  }

  .market-atlas-shell {
    width: min(calc(100% - 48px), var(--container));
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
  }

  .market-atlas-copy {
    max-width: 760px;
    transform: none;
  }

  .market-atlas-product-wrap {
    width: 100%;
    transform: none;
  }

  .market-atlas-appbar {
    grid-template-columns: 140px minmax(220px, 1fr);
  }

  .market-atlas-filters,
  .market-atlas-count {
    grid-column: 1 / -1;
    justify-content: flex-start;
    justify-self: start;
  }

  .market-atlas-console {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .market-atlas-map {
    height: 560px;
    min-height: 560px;
  }

  .roi-framework-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: auto;
    transform: none !important;
    opacity: 1 !important;
    z-index: auto !important;
    pointer-events: auto;
  }

  .locations-section {
    padding: 84px 0 96px;
  }

  .locations-header {
    margin-bottom: 32px;
  }

  .locations-trigger {
    min-height: 72px;
    padding: 20px 0;
  }

  .locations-panel-inner {
    grid-template-columns: 1fr;
  }

  .locations-media-placeholder,
  .locations-copy {
    min-height: auto;
  }

  .market-thesis-section {
    padding: 88px 0 76px;
  }

  .market-thesis-layout,
  .market-thesis-close {
    grid-template-columns: 1fr;
  }

  .market-thesis-header {
    margin-left: 0;
    padding-bottom: 0;
  }

  .market-thesis-header > p:not(.market-thesis-eyebrow) {
    max-width: 680px;
  }

  .market-thesis-grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: 0;
  }

  .market-thesis-card {
    min-height: auto;
  }

  .market-thesis-card > div {
    max-width: 760px;
  }

  .market-transition {
    padding-bottom: 34px;
  }

  .market-transition-shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding-top: 28px;
  }

  .market-transition-copy {
    margin-left: 0;
  }

  .income-logic-section {
    padding: 70px 0 68px;
  }

  .income-logic-header {
    margin-left: 0;
  }

  .income-logic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-left: 0;
  }

  .intelligence-section {
    padding: 42px 0 98px;
  }

  .intelligence-header {
    margin-left: 0;
  }

  .intelligence-header h2 {
    white-space: normal;
  }

  .intelligence-map-module {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: auto;
    margin-left: 0;
  }

  .intelligence-framework {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-left: 0;
  }

  .intelligence-cta {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .locations-page .site-header__inner,
  body:not(.home-page):not(.locations-page) .site-header__inner {
    width: calc(100% - 56px);
    min-height: 112px;
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .locations-page.is-side-menu-open .site-header__inner {
    width: calc(100% - 56px);
    min-height: 112px;
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .locations-page .brand__home,
  body:not(.home-page):not(.locations-page) .brand__home {
    min-height: 58px;
    transform: none;
  }

  .locations-page .brand__lockup,
  body:not(.home-page):not(.locations-page) .brand__lockup {
    gap: 5px;
  }

  .locations-page .brand__name,
  body:not(.home-page):not(.locations-page) .brand__name {
    font-size: 1.28rem;
    letter-spacing: 0.13em;
  }

  .locations-page .brand__name--secondary,
  body:not(.home-page):not(.locations-page) .brand__name--secondary {
    font-size: 0.78rem;
  }

  .locations-page .brand__descriptor,
  body:not(.home-page):not(.locations-page) .brand__descriptor {
    margin-top: 7px;
    font-size: 0.66rem;
    letter-spacing: 0.035em;
  }

  .locations-page .hero-menu-toggle,
  .request-access-page .hero-menu-toggle,
  body:not(.home-page):not(.locations-page) .brand > .menu-toggle:not(.hero-menu-toggle) {
    font-size: clamp(2.8rem, 15vw, 4.1rem);
  }

  body:not(.home-page):not(.locations-page) .brand > .menu-toggle:not(.hero-menu-toggle) {
    top: 30px;
    right: 28px;
  }

  body:not(.home-page):not(.locations-page):not(.request-access-page) .hero-client-login {
    top: auto;
    right: auto;
  }

  .locations-editorial__shell {
    width: min(calc(100% - 28px), 1540px);
  }

  .locations-page .site-footer__inner {
    width: min(calc(100% - 28px), 1540px);
  }

  .locations-footer__inner {
    width: min(calc(100% - 28px), 1540px);
  }

  .locations-footer__links {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .locations-footer__notes {
    margin-top: 48px;
    padding: 28px 0;
  }

  .locations-footer__map {
    right: 8px;
    bottom: 8px;
    width: min(42vw, 148px);
    opacity: 0.042;
  }

  .locations-footer__notes-field {
    grid-template-columns: 1fr;
  }

  .locations-footer__notes-field input {
    min-height: 52px;
  }

  .locations-footer__notes-field button {
    min-height: 48px;
    border-left: 0;
    border-top: 1px solid rgba(255, 251, 237, 0.16);
  }

  .locations-footer__bottom {
    display: grid;
    gap: 10px;
  }

  .locations-active,
  .locations-active__content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .locations-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 100%;
  }

  .locations-tab {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 0 13px;
    font-size: 0.82rem;
  }

  .locations-active h1 {
    width: auto;
    font-size: clamp(3rem, 14vw, 4.4rem);
    letter-spacing: -0.05em;
  }

  .locations-page-main.is-locations-directory .locations-active h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .locations-intel__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .locations-active__actions {
    grid-template-columns: 1fr;
  }

  .locations-active__visual {
    padding: 10px;
    transform: none;
  }

  .locations-active__visual--editorial {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .locations-directory__grid {
    grid-template-columns: 1fr;
  }

  .locations-directory-card {
    min-height: 0;
  }

  .locations-directory-card__meta {
    grid-template-columns: 1fr;
  }

  .developer-insight-section {
    padding: 52px 0 54px;
  }

  .developer-insight-header h2 span {
    display: inline;
    white-space: normal;
  }

  .developer-insight-row-header {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .developer-insight-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }

  .developer-insight-marquee__track {
    gap: 10px;
    animation-duration: 44s;
  }

  .developer-insight-logo-tile {
    width: 148px;
    height: 72px;
  }

  .developer-insight-signals {
    grid-template-columns: 1fr;
  }

  .developer-insight-signal {
    min-height: 172px;
  }

  .method-bridge-section {
    min-height: auto;
    padding: 38px 0;
  }

  .method-bridge-copy h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .method-bridge-visual {
    min-height: 116px;
  }

  .method-bridge-visual::before {
    left: 0;
  }

  .method-bridge-rules {
    inset: 16px 0 14px;
  }

  .method-bridge-ghost {
    right: 0;
    font-size: clamp(4.8rem, 22vw, 7rem);
  }

  .method-bridge-terms {
    font-size: 0.55rem;
  }

  .method-bridge-terms span:nth-child(4),
  .method-bridge-terms span:nth-child(5) {
    right: 6%;
  }

  .roi-framework-section {
    padding: 24px 0 52px;
  }

  .market-atlas-section {
    padding: 72px 0 82px;
  }

  .market-atlas-appbar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .market-atlas-search {
    min-height: 36px;
  }

  .market-atlas-filters {
    gap: 5px;
  }

  .market-atlas-signal-strip {
    flex-wrap: wrap;
  }

  .market-atlas-select {
    flex: 1 1 140px;
  }

  .market-atlas-select:first-child {
    margin-right: 0;
  }

  .market-atlas-select select {
    width: 100%;
    min-width: 0;
  }

  .market-atlas-console {
    grid-template-columns: 1fr;
  }

  .market-atlas-console::before {
    display: none;
  }

  .market-atlas-results {
    min-height: 0;
    max-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--atlas-line);
    overflow: auto;
  }

  .market-atlas-result {
    padding: 13px 12px;
  }

  .market-atlas-map {
    height: 430px;
    min-height: 430px;
  }

  .market-atlas-map-stage {
    min-height: 430px;
  }

  .market-atlas-lower {
    flex-direction: column;
    gap: 16px;
  }

  .market-atlas-action {
    justify-content: flex-start;
    justify-self: start;
    padding-right: 0;
  }

  .roi-framework-card {
    padding: 22px;
  }

  .roi-framework-card__top,
  .roi-framework-card__body {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .roi-framework-logo {
    width: 86px;
    justify-self: start;
  }

  .roi-framework-rhythm {
    margin-bottom: 18px;
  }

  .roi-framework-rhythm__days {
    grid-template-columns: repeat(4, minmax(42px, 1fr));
  }

  .roi-framework-metrics div {
    grid-template-columns: 1fr;
    gap: 7px;
    align-items: start;
    padding: 12px 0;
  }

  .roi-framework-metrics dd {
    text-align: left;
  }

  .roi-framework-yield dd {
    width: fit-content;
  }

  .locations-section {
    padding: 72px 0 86px;
  }

  .locations-title {
    font-size: clamp(32px, 11vw, 48px);
    line-height: 0.98;
  }

  .locations-name {
    font-size: clamp(19px, 6.5vw, 30px);
    letter-spacing: 0.08em;
  }

  .locations-trigger {
    min-height: 68px;
    padding: 18px 0;
  }

  .locations-chevron {
    width: 10px;
    height: 10px;
    flex-basis: 10px;
  }

  .locations-panel-inner {
    gap: 18px;
    padding-bottom: 26px;
  }

  .locations-media-placeholder,
  .locations-copy {
    border-radius: 22px;
    padding: 22px 20px;
  }

  #location-bakuriani .locations-media-placeholder--image,
  #location-bakuriani .locations-copy {
    border-radius: 8px;
  }

  #location-bakuriani .locations-media-placeholder--image {
    padding: 0;
  }

  #location-bakuriani .locations-copy {
    padding: 24px 20px 22px;
  }

  .locations-intro {
    font-size: 14px;
    line-height: 1.75;
  }

  .market-thesis-section {
    padding: 76px 0 62px;
  }

  .market-thesis-header h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .market-thesis-header > p:not(.market-thesis-eyebrow) {
    font-size: 14px;
    line-height: 1.78;
  }

  .market-thesis-grid {
    margin-top: 0;
  }

  .market-thesis-card {
    padding: 30px 0;
  }

  .market-thesis-number {
    width: fit-content;
  }

  .market-thesis-close a {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .market-transition {
    padding-bottom: 28px;
  }

  .market-transition-shell {
    gap: 18px;
    padding-top: 24px;
  }

  .market-transition-copy {
    padding-top: 0;
  }

  .market-transition-copy h2 {
    font-size: clamp(22px, 6.8vw, 28px);
  }

  .market-transition-copy > p:not(.market-transition-eyebrow) {
    font-size: 14px;
    line-height: 1.76;
  }

  .market-transition-process {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 0;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .market-transition-process span + span::before {
    margin: 0 8px;
  }

  .income-logic-section {
    padding: 62px 0 60px;
  }

  .income-logic-header h2 {
    font-size: clamp(30px, 9.5vw, 44px);
  }

  .income-logic-header > p {
    font-size: 14px;
    line-height: 1.76;
  }

  .income-logic-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .income-logic-card {
    padding: 22px;
  }

  .income-logic-card__header--with-logo {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .income-logic-logo {
    width: 92px;
    justify-self: start;
  }

  .income-logic-mockup__top {
    flex-direction: column;
    gap: 8px;
  }

  .income-logic-mockup__top strong {
    max-width: none;
    text-align: left;
  }

  .income-logic-toggle {
    align-self: flex-start;
    min-height: 30px;
  }

  .income-logic-calendar {
    gap: 5px;
  }

  .income-logic-calendar span {
    min-height: 30px;
    font-size: 8px;
  }

  .income-logic-layout-frame {
    min-height: 190px;
    padding: 12px;
  }

  .income-logic-layout-frame img {
    max-height: 176px;
  }

  .income-logic-disclaimer {
    margin-top: 22px;
  }

  .intelligence-section {
    padding: 36px 0 88px;
  }

  .intelligence-header h2 {
    font-size: clamp(30px, 9.5vw, 44px);
  }

  .intelligence-header > p {
    font-size: 14px;
    line-height: 1.76;
  }

  .intelligence-map-module {
    margin-top: 46px;
    padding: 20px;
    border-radius: 22px;
  }

  .intelligence-map {
    height: 300px;
    min-height: 300px;
    border-radius: 18px;
  }

  .intelligence-framework {
    grid-template-columns: 1fr;
  }

  .intelligence-block {
    min-height: auto;
    padding: 22px;
  }

  .intelligence-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 22px;
    padding-top: 18px;
  }

  .intelligence-cta a {
    width: 100%;
  }
}

@media (max-width: 780px) {
  :root {
    --brand-menu-width: min(calc(100vw - 32px), 380px);
  }

  .side-menu {
    padding: 156px 28px 34px;
    overflow-y: auto;
  }

  .side-menu__footer {
    left: 28px;
    right: auto;
    bottom: 34px;
    gap: 11px;
    padding-left: 0;
  }

  .side-menu__nav {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
  }

  .side-menu__nav a {
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 10px;
    grid-column: 1;
    grid-row: auto;
  }

  .side-menu__number {
    width: 40px;
    font-size: 1rem;
  }

  .side-menu__nav strong {
    font-size: clamp(2.6rem, 11.25vw, 4.55rem);
  }

  .side-menu__footer a {
    width: 44px;
    height: 44px;
    border-radius: 6px;
  }

  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 22px 18px 20px;
    border-radius: 0;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .cookie-consent.is-expanded .cookie-consent__actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .cookie-consent__button {
    width: 100%;
    padding: 0 6px;
    font-size: clamp(9px, 2.8vw, 12px);
    letter-spacing: 0.02em;
  }

 }
/* =========================================================
   MANUAL HERO CENTER STACK OVERRIDE
   ========================================================= */

.hero--image .hero-copy {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;

  width: min(720px, calc(100% - 48px)) !important;
  max-width: 720px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;

  z-index: 20 !important;
}

.hero--image .hero-copy > * {
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  text-align: center !important;
}

.hero--image .eyebrow {
  margin: 0 0 20px !important;
  text-align: center !important;
}

.hero--image h1 {
  max-width: 12ch !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.hero--image [data-hero-body] {
  max-width: 560px !important;
  margin: 32px auto 0 !important;
  text-align: center !important;
}

.hero--image [data-hero-actions] {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 16px !important;
  margin: 32px auto 0 !important;
  text-align: center !important;
}

.hero--image [data-hero-body] {
  position: relative !important;
  isolation: isolate;
  color: rgba(174, 164, 151, 0.84);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-shadow:
    0 1px 6px rgba(2, 4, 4, 0.52),
    0 4px 14px rgba(2, 4, 4, 0.24);
}

.hero--image [data-hero-body]::before {
  content: "";
  position: absolute;
  inset: -12px -22px -14px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(
      ellipse at center,
      rgba(4, 8, 7, 0.34) 0%,
      rgba(4, 8, 7, 0.2) 52%,
      rgba(4, 8, 7, 0) 78%
    );
  filter: blur(8px);
  pointer-events: none;
}

/* =========================================================
   HERO HEADLINE DESKTOP ONE-LINE TEST
   Keeps "Invest With Conviction" on one line on desktop only.
   Does not change animation or hero structure.
   ========================================================= */

@media (min-width: 981px) {
  .hero--image .hero-copy {
    width: min(1100px, calc(100% - 64px)) !important;
    max-width: 1100px !important;
  }

  .hero--image h1 {
    max-width: none !important;
    width: max-content !important;
    white-space: nowrap !important;
  }
/* Header nav chevron alignment override */
.site-nav .nav-trigger {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center;
  gap: 5px !important;
  line-height: 1 !important;
}

.site-nav .nav-trigger > .chevron {
  width: 7px !important;
  height: 7px !important;
  flex: 0 0 7px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  transform: translateY(-3px) !important;
  align-self: center !important;
}

.site-nav .nav-trigger > .chevron::before {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1.25px solid currentColor;
  border-bottom: 1.25px solid currentColor;
  transform: rotate(45deg);
  transform-origin: 50% 50%;
  transition: transform var(--ease);
}

.site-nav .nav-item.is-open > .nav-trigger > .chevron::before {
  transform: rotate(225deg);

}

/* FINAL OVERRIDE: Market Thesis wide shimmer like Locations */
.market-thesis-section {
  position: relative !important;
  overflow: hidden !important;
}

.market-thesis-section::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 28px !important;
  height: 190px !important;
  background: radial-gradient(
    ellipse at 34% 45%,
    rgba(255, 255, 255, 0.11) 0%,
    rgba(255, 255, 255, 0.05) 26%,
    rgba(255, 255, 255, 0.018) 42%,
    rgba(255, 255, 255, 0) 68%
  ) !important;
  filter: blur(42px) !important;
  opacity: 0.7 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

/* Keep all Market Thesis content above the shimmer */
.market-thesis-shell,
.market-thesis-header,
.market-thesis-grid,
.market-thesis-close {
  position: relative !important;
  z-index: 1 !important;
}

/* Disable the old tiny title-only shimmer */
.market-thesis-intro::before {
  content: none !important;
}

}

/* =========================
   REQUEST ACCESS
   ========================= */

.request-access-page {
  color: #20332d;
  background:
    linear-gradient(90deg, rgba(47, 102, 81, 0.065) 1px, transparent 1px),
    linear-gradient(180deg, #f4eee4 0%, #f4eee4 100%);
  background-size: 72px 72px, auto;
  overflow-x: clip;
}

body.request-access-page:not(.home-page):not(.locations-page):not(.is-side-menu-open) .site-header {
  background:
    linear-gradient(90deg, rgba(47, 102, 81, 0.065) 1px, transparent 1px),
    linear-gradient(180deg, #f7f2ea 0%, #f4eee4 100%);
  background-size: 72px 72px, auto;
  border-bottom-color: rgba(47, 102, 81, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.request-access-page:not(.home-page):not(.locations-page):not(.is-side-menu-open) .brand__name,
body.request-access-page:not(.home-page):not(.locations-page):not(.is-side-menu-open) .nav-link,
body.request-access-page:not(.home-page):not(.locations-page):not(.is-side-menu-open) .nav-trigger,
body.request-access-page:not(.home-page):not(.locations-page):not(.is-side-menu-open) .nav-toggle {
  color: #20332d;
}

body.request-access-page:not(.home-page):not(.locations-page):not(.is-side-menu-open) .brand__name--secondary {
  color: rgba(32, 51, 45, 0.72);
}

body.request-access-page:not(.home-page):not(.locations-page):not(.is-side-menu-open) .brand__descriptor {
  color: rgba(32, 51, 45, 0.66);
}

body.request-access-page:not(.home-page):not(.locations-page):not(.is-side-menu-open) .brand > .menu-toggle:not(.hero-menu-toggle) {
  color: #20332d;
}

body.request-access-page:not(.home-page):not(.locations-page):not(.is-side-menu-open) .hero-menu-toggle {
  color: #20332d;
}

body.request-access-page:not(.home-page):not(.locations-page):not(.is-side-menu-open) .hero-client-login {
  border: 0;
  background: transparent;
  color: rgba(32, 51, 45, 0.76);
  box-shadow: none;
}

body.request-access-page:not(.home-page):not(.locations-page):not(.is-side-menu-open) .hero-client-login:hover,
body.request-access-page:not(.home-page):not(.locations-page):not(.is-side-menu-open) .hero-client-login:focus-visible {
  border: 0;
  color: #20332d;
}

body.request-access-page.is-side-menu-open .brand__name {
  color: #3f3a34;
}

body.request-access-page.is-side-menu-open .brand__name--secondary {
  color: rgba(63, 58, 52, 0.72);
}

body.request-access-page.is-side-menu-open .brand__descriptor {
  color: rgba(74, 68, 60, 0.72);
}

.request-access-page .site-footer__inner {
  border-top-color: rgba(32, 51, 45, 0.13);
  color: rgba(32, 51, 45, 0.58);
}

.not-found-page .page-shell {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.not-found-page main {
  display: grid;
  min-height: 0;
}

.not-found-hero {
  position: relative;
  min-height: calc(100svh - 141px);
  display: grid;
  align-items: center;
  padding: clamp(28px, 6vh, 62px) 0 clamp(34px, 7vh, 70px);
  overflow: hidden;
  background:
    radial-gradient(680px 340px at 80% 24%, rgba(47, 102, 81, 0.08), transparent 70%),
    radial-gradient(560px 300px at 18% 80%, rgba(32, 51, 45, 0.055), transparent 72%),
    linear-gradient(90deg, rgba(47, 102, 81, 0.065) 1px, transparent 1px),
    #f4eee4;
  background-size: auto, auto, 72px 72px, auto;
  color: #20332d;
}

.not-found-hero__map {
  position: absolute;
  right: clamp(-120px, -6vw, -46px);
  bottom: clamp(0px, 3vw, 48px);
  width: min(44vw, 600px);
  opacity: 0.028;
  pointer-events: none;
}

.not-found-hero__inner {
  position: relative;
  z-index: 1;
  top: clamp(-148px, -14vh, -96px);
  width: min(calc(100% - 48px), 920px);
  display: grid;
  justify-items: center;
  gap: 0;
  text-align: center;
}

.not-found-hero__eyebrow {
  margin: 0;
  color: #173f34;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.not-found-hero h1 {
  margin: 18px 0 0;
  color: #20332d;
  font-family: var(--font-serif);
  font-size: clamp(3.6rem, 10vw, 8.4rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
}

.not-found-hero__copy {
  max-width: min(calc(100vw - 48px), 720px);
  margin: 24px 0 0;
  color: rgba(32, 51, 45, 0.66);
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
  line-height: 1.74;
  white-space: nowrap;
}

.not-found-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 32px;
  padding: 0 24px;
  border: 1px solid #2f6651;
  border-radius: 0;
  background: #2f6651;
  color: #fffaf2;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.not-found-hero__button:hover,
.not-found-hero__button:focus-visible {
  border-color: #20332d;
  background: #20332d;
  color: #fffaf2;
  transform: translateY(-1px);
}

.not-found-footer {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 3.2vh, 34px);
  z-index: 1;
  width: min(calc(100% - 48px), 920px);
  color: rgba(32, 51, 45, 0.42);
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.not-found-footer p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.request-access-hero {
  position: relative;
  min-height: auto;
  padding: clamp(70px, 6.6vw, 104px) 0 clamp(18px, 2.4vw, 30px);
  background:
    linear-gradient(90deg, rgba(47, 102, 81, 0.065) 1px, transparent 1px),
    linear-gradient(180deg, #f4eee4 0%, #f4eee4 100%);
  background-size: 72px 72px, auto;
  overflow: hidden;
}

.request-access-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.request-access-layout {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 1440px);
  max-width: 1440px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 0.9fr);
  gap: clamp(54px, 8vw, 118px);
  align-items: start;
}

.request-access-intro {
  position: static;
  top: auto;
  min-width: 0;
  padding-top: clamp(24px, 2.8vw, 36px);
}

.request-access-intro,
.request-access-lead,
.request-access-support,
.request-access-note,
.request-access-form-card {
  max-width: 100%;
}

@media (min-width: 981px) {
  .request-access-page .request-access-intro {
    transform: translateY(-34px);
  }
}

.request-access-eyebrow,
.request-access-form-heading > p,
.request-access-next__header > p,
.request-access-scheduling__eyebrow {
  margin: 0;
  color: #173f34;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.request-access-intro h1 {
  max-width: 8ch;
  margin: 22px 0 0;
  font-family: var(--font-sans);
  font-size: clamp(50px, 6.4vw, 88px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.94;
  color: #20332d;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

.request-access-lead {
  max-width: 580px;
  margin: 32px 0 0;
  color: rgba(32, 51, 45, 0.74);
  font-size: 16px;
  line-height: 1.82;
  overflow-wrap: break-word;
}

.request-access-support {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(32, 51, 45, 0.58);
  font-size: 14px;
  line-height: 1.75;
  overflow-wrap: break-word;
}

.request-access-note {
  max-width: 560px;
  margin-top: 36px;
  padding: 22px 24px;
  border: 1px solid rgba(47, 102, 81, 0.22);
  border-left-width: 4px;
  border-radius: 0;
  background: rgba(255, 250, 242, 0.54);
  box-shadow: none;
}

.request-access-note span {
  display: block;
  color: rgba(47, 102, 81, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.request-access-note p {
  margin: 12px 0 0;
  color: rgba(32, 51, 45, 0.66);
  font-size: 13px;
  line-height: 1.72;
}

.request-access-form-card {
  min-width: 0;
  width: 100%;
  padding: clamp(24px, 2.8vw, 36px);
  border: 1px solid rgba(47, 102, 81, 0.22);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(246, 240, 230, 0.94));
  box-shadow:
    18px 18px 0 rgba(47, 102, 81, 0.06),
    0 24px 58px rgba(54, 45, 31, 0.08);
}

@media (min-width: 981px) {
  .request-access-page .request-access-form-card {
    transform: translateY(-34px);
  }
}

.request-access-form-heading h2 {
  margin: 12px 0 0;
  font-family: var(--font-sans);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: #20332d;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

.request-access-form {
  margin-top: 26px;
}

.request-access-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.request-access-field {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.request-access-field--full {
  grid-column: 1 / -1;
}

.request-access-field label {
  color: rgba(32, 51, 45, 0.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.request-access-field input,
.request-access-field select,
.request-access-field textarea {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(47, 102, 81, 0.2);
  border-radius: 0;
  outline: none;
  background: rgba(255, 253, 249, 0.72);
  color: #20332d;
  font: inherit;
  font-size: 13px;
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
  color-scheme: light;
}

.request-access-page .request-access-field select.is-customized {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.request-access-select {
  position: relative;
  min-width: 0;
}

.request-access-select__trigger {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  border: 1px solid rgba(47, 102, 81, 0.2);
  border-radius: 0;
  background: rgba(255, 253, 249, 0.72);
  color: rgba(32, 51, 45, 0.54);
  font-size: 13px;
  text-align: left;
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.request-access-select__trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-right: 1px solid rgba(47, 102, 81, 0.66);
  border-bottom: 1px solid rgba(47, 102, 81, 0.66);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 220ms ease, border-color 220ms ease;
}

.request-access-select__trigger:hover,
.request-access-select__trigger:focus-visible,
.request-access-select.is-open .request-access-select__trigger {
  outline: none;
  border-color: rgba(47, 102, 81, 0.46);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 0 0 3px rgba(47, 102, 81, 0.08);
}

.request-access-select.is-open .request-access-select__trigger::after {
  border-color: rgba(47, 102, 81, 0.92);
  transform: translateY(2px) rotate(225deg);
}

.request-access-select.has-value .request-access-select__trigger {
  color: #20332d;
}

.request-access-select__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  max-height: 236px;
  margin: 0;
  padding: 7px;
  overflow-y: auto;
  border: 1px solid rgba(47, 102, 81, 0.22);
  border-radius: 0;
  background: #fffaf2;
  box-shadow:
    0 22px 48px rgba(54, 45, 31, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.request-access-select.is-open .request-access-select__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.request-access-select__option {
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 0;
  color: rgba(32, 51, 45, 0.7);
  font-size: 12px;
  line-height: 1.35;
  text-align: left;
  transition: background-color 160ms ease, color 160ms ease;
}

.request-access-select__option:hover,
.request-access-select__option:focus-visible,
.request-access-select__option.is-active {
  outline: none;
  background: rgba(47, 102, 81, 0.08);
  color: #20332d;
}

.request-access-select__option.is-selected {
  background: rgba(47, 102, 81, 0.14);
  color: #20332d;
}

.request-access-field textarea {
  min-height: 108px;
  padding-top: 15px;
  padding-bottom: 15px;
  resize: vertical;
}

.request-access-field input:focus,
.request-access-field select:focus,
.request-access-field textarea:focus {
  border-color: rgba(47, 102, 81, 0.46);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 0 0 3px rgba(47, 102, 81, 0.08);
}

.request-access-field textarea::placeholder {
  color: rgba(32, 51, 45, 0.34);
}

.request-access-submit,
.request-access-scheduling a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(32, 51, 45, 0.22);
  border-radius: 0;
  background: #2f6651;
  color: #fffaf2;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.request-access-submit {
  margin-top: 18px;
}

.request-access-page .request-access-submit {
  border-color: #2f6651;
  background: #2f6651;
  color: #fffaf2;
  box-shadow: none;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.request-access-page .request-access-submit:hover,
.request-access-page .request-access-submit:focus-visible {
  border-color: #20332d;
  background: #20332d;
  color: #fffaf2;
  box-shadow: none;
  opacity: 1;
}

.request-access-submit:hover,
.request-access-submit:focus-visible,
.request-access-scheduling a:hover,
.request-access-scheduling a:focus-visible {
  opacity: 0.9;
  transform: translateY(-1px);
}

.request-access-scheduling {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(47, 102, 81, 0.24);
  border-radius: 0;
  background: rgba(47, 102, 81, 0.07);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.request-access-scheduling[hidden] {
  display: none;
}

.request-access-scheduling.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.request-access-scheduling h3 {
  margin: 13px 0 0;
  font-family: var(--font-sans);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
  color: #20332d;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

.request-access-scheduling > p:not(.request-access-scheduling__eyebrow) {
  margin: 14px 0 0;
  color: rgba(32, 51, 45, 0.66);
  font-size: 13px;
  line-height: 1.7;
}

.request-access-scheduling a {
  margin-top: 20px;
}

.request-access-next {
  margin-top: -92px;
  padding: 0 0 clamp(88px, 10vw, 132px);
}

.request-access-next__header h2 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  line-height: 0.96;
  color: rgba(255, 250, 242, 0.94);
}

.request-access-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.request-access-steps li {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(171, 198, 181, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(31, 70, 58, 0.025)),
    rgba(5, 12, 11, 0.38);
}

.request-access-steps span {
  color: rgba(184, 207, 193, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.request-access-steps p {
  margin: 34px 0 0;
  color: rgba(244, 239, 231, 0.78);
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.08;
}

.request-access-next__copy {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(244, 239, 231, 0.58);
  font-size: 14px;
  line-height: 1.76;
}

.request-access-inline {
  position: relative;
  margin-top: -1px;
  padding: 84px 0 92px;
  color: #f4efe7;
  background:
    radial-gradient(72% 82% at 82% 12%, rgba(31, 70, 58, 0.11), rgba(8, 8, 8, 0) 70%),
    rgba(8, 8, 8, 0.98);
  overflow: hidden;
}

.request-access-inline__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.request-access-inline__intro h2 {
  margin: 17px 0 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.2vw, 66px);
  font-weight: 500;
  line-height: 0.95;
  color: rgba(255, 250, 242, 0.95);
}

.request-access-inline__intro > p:not(.request-access-eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(244, 239, 231, 0.62);
  font-size: 14px;
  line-height: 1.78;
}

.request-access-inline .request-access-form-card {
  padding: clamp(24px, 3vw, 34px);
  border-radius: 26px;
}

.request-access-inline .request-access-form {
  margin-top: 0;
}

/* =========================
   CLIENT LOGIN
   ========================= */

.login-page {
  min-height: 100vh;
  background: #f7f1e8;
  color: #2d2924;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.login-brand-panel {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(680px 320px at 20% 12%, rgba(255, 251, 237, 0.1), transparent 68%),
    radial-gradient(620px 360px at 84% 72%, rgba(22, 39, 33, 0.22), transparent 72%),
    linear-gradient(135deg, #728370 0%, #4f604d 52%, #172720 100%);
  color: #fffbed;
}

.login-brand-panel__lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}

.login-brand-panel__lines span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(660px, 68vw);
  height: 136px;
  border: 1px solid rgba(255, 251, 237, 0.1);
  overflow: hidden;
  transform: translate(-50%, -50%) skewX(-22deg);
  animation: prefooterLineDrift 24s linear infinite;
}

.login-brand-panel__lines span::before,
.login-brand-panel__lines span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -1.5px;
  width: 38%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 251, 237, 0.82), transparent);
  opacity: 0;
  transform: translateX(-125%);
  animation: prefooterSignalSweep 18s linear infinite;
  filter: drop-shadow(0 0 5px rgba(255, 251, 237, 0.18));
}

.login-brand-panel__lines span::after {
  top: auto;
  right: 0;
  bottom: -1.5px;
  left: auto;
  background: linear-gradient(270deg, transparent, rgba(255, 251, 237, 0.68), transparent);
  transform: translateX(125%);
  animation-name: prefooterSignalReturn;
  animation-delay: -1.8s;
}

.login-brand-panel__lines span:nth-child(1) {
  margin-left: -18vw;
  margin-top: -46px;
}

.login-brand-panel__lines span:nth-child(2) {
  width: min(560px, 58vw);
  margin-left: 18vw;
  margin-top: 38px;
  animation-delay: -8s;
}

.login-brand-panel__lines span:nth-child(2)::before,
.login-brand-panel__lines span:nth-child(2)::after {
  animation-delay: -9s;
  background: linear-gradient(90deg, transparent, rgba(255, 251, 237, 0.62), transparent);
}

.login-brand-panel__lines span:nth-child(2)::after {
  background: linear-gradient(270deg, transparent, rgba(255, 251, 237, 0.52), transparent);
  animation-delay: -10.8s;
}

.login-brand-panel__lines span:nth-child(3) {
  width: min(440px, 46vw);
  height: 110px;
  margin-left: 2vw;
  margin-top: 130px;
  opacity: 0.55;
  animation-delay: -15s;
}

.login-brand-panel__map {
  position: absolute;
  z-index: 0;
  right: clamp(6px, 2.5vw, 34px);
  bottom: clamp(26px, 7vh, 72px);
  width: clamp(430px, 47vw, 720px);
  max-width: none;
  opacity: 0.4;
  filter: brightness(0) saturate(100%) invert(46%) sepia(12%) saturate(390%) hue-rotate(28deg) brightness(84%) contrast(84%);
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
}

.login-brand-panel__content {
  position: relative;
  z-index: 1;
  width: min(100% - clamp(48px, 8vw, 104px), 560px);
  margin: 0 auto;
  transform: translateY(clamp(-44px, -4.5vh, -24px));
}

.login-brand {
  display: inline-grid;
  gap: 8px;
  color: #fffbed;
}

.login-brand__name {
  display: block;
  transform: translateX(-0.035em);
  font-size: clamp(2.45rem, 5vw, 4.7rem);
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 0.9;
  text-transform: uppercase;
}

.login-brand__name--secondary {
  transform: none;
  font-size: clamp(1.24rem, 2.5vw, 2.25rem);
  font-weight: 650;
  letter-spacing: 0.21em;
  color: rgba(255, 251, 237, 0.76);
}

.login-brand-panel__descriptor {
  margin: 24px 0 0;
  color: rgba(255, 251, 237, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.login-brand-panel__copy {
  max-width: 470px;
  margin: clamp(34px, 5vw, 58px) 0 0;
  color: rgba(255, 251, 237, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.72;
}

.login-brand-panel__points {
  display: grid;
  gap: 17px;
  max-width: 480px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.login-brand-panel__points li {
  position: relative;
  padding: 0 0 0 26px;
  color: rgba(255, 251, 237, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.login-brand-panel__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 251, 237, 0.72);
}

.login-form-panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 84px);
  background:
    radial-gradient(72% 54% at 90% 8%, rgba(47, 102, 81, 0.08), rgba(247, 241, 232, 0) 68%),
    #f7f1e8;
}

.login-form-card {
  width: min(100%, 460px);
  transform: translateY(-16px);
}

.login-form-card__eyebrow {
  margin: 0;
  color: #173f34;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.login-form-card h1 {
  margin: 16px 0 0;
  color: #2b2b26;
  font-family: var(--font-sans);
  font-size: clamp(2.7rem, 4.8vw, 4.25rem);
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.login-form-card__intro {
  margin: 18px 0 0;
  color: rgba(63, 58, 52, 0.68);
  font-size: 1rem;
  line-height: 1.68;
}

.login-social-actions {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.login-social-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(63, 58, 52, 0.18);
  background: rgba(255, 255, 255, 0.26);
  color: #2d2924;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.login-social-button:hover,
.login-social-button:focus-visible {
  border-color: rgba(35, 74, 60, 0.34);
  background: rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
}

.login-social-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.login-social-button svg path:not([fill]) {
  fill: #211d19;
}

.login-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 26px 0;
  color: rgba(63, 58, 52, 0.42);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.login-divider::before,
.login-divider::after {
  content: "";
  height: 1px;
  background: rgba(63, 58, 52, 0.14);
}

.login-form {
  display: grid;
  gap: 16px;
}

.login-field {
  display: grid;
  gap: 9px;
}

.login-field span {
  color: rgba(63, 58, 52, 0.64);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.login-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(63, 58, 52, 0.18);
  border-radius: 0;
  outline: none;
  background: rgba(255, 255, 255, 0.28);
  color: #211d19;
  font: inherit;
  font-size: 0.95rem;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.login-field input:focus {
  border-color: rgba(35, 74, 60, 0.72);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: none;
}

.login-forgot-link {
  justify-self: end;
  margin-top: -4px;
  color: rgba(70, 88, 68, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.login-forgot-link:hover,
.login-forgot-link:focus-visible,
.login-request a:hover,
.login-request a:focus-visible {
  color: #40523f;
}

.login-submit {
  min-height: 50px;
  margin-top: 8px;
  border: 1px solid #465844;
  background: #465844;
  color: #fffbed;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.login-submit:hover,
.login-submit:focus-visible {
  background: #40523f;
  border-color: #40523f;
  transform: translateY(-1px);
}

.login-request {
  margin: 24px 0 0;
  color: rgba(63, 58, 52, 0.58);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

.login-request a {
  color: rgba(70, 88, 68, 0.94);
  font-weight: 700;
}

.login-back-link {
  display: table;
  margin: 30px auto 0;
  color: rgba(63, 58, 52, 0.48);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.login-back-link:hover,
.login-back-link:focus-visible {
  color: rgba(35, 74, 60, 0.78);
}

@media (prefers-reduced-motion: reduce) {
  .login-brand-panel__lines span,
  .login-brand-panel__lines span::before,
  .login-brand-panel__lines span::after {
    animation: none;
  }
}

@media (max-width: 920px) {
  .login-shell {
    grid-template-columns: 1fr;
  }

  .login-brand-panel,
  .login-form-panel {
    min-height: auto;
  }

  .login-brand-panel {
    padding: 84px 0;
  }

  .login-brand-panel__content {
    width: min(calc(100% - 48px), 620px);
    transform: none;
  }

  .login-form-panel {
    padding: 64px 24px 76px;
  }

  .login-form-card {
    width: min(100%, 520px);
    transform: none;
  }
}

@media (max-width: 560px) {
  .login-brand-panel {
    padding: 66px 0;
  }

  .login-brand-panel__content {
    width: min(calc(100% - 32px), 520px);
  }

  .login-brand__name {
    font-size: clamp(2rem, 12vw, 3.3rem);
  }

  .login-brand__name--secondary {
    font-size: clamp(1rem, 6vw, 1.58rem);
  }

  .login-brand-panel__copy {
    margin-top: 30px;
    font-size: 0.98rem;
  }

  .login-brand-panel__points li {
    padding-left: 22px;
    font-size: 0.72rem;
    letter-spacing: 0.07em;
  }

  .login-form-panel {
    padding: 50px 16px 64px;
  }

  .login-social-button,
  .login-submit {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .request-access-layout,
  .request-access-inline__shell {
    grid-template-columns: 1fr;
  }

  .request-access-intro {
    position: static;
    padding-top: 0;
  }

  .request-access-page .request-access-intro {
    transform: none;
  }

  .request-access-page .request-access-form-card {
    transform: none;
  }

  .request-access-page .site-nav {
    border-color: rgba(190, 207, 196, 0.14);
    background: rgba(5, 14, 12, 0.98);
  }

  .request-access-page .dropdown {
    background: rgba(255, 255, 255, 0.035);
  }

}

@media (max-width: 680px) {
  .request-access-hero {
    padding-top: 72px;
  }

  .not-found-hero {
    min-height: calc(100svh - 113px);
    padding: 42px 0 54px;
  }

  .not-found-hero__map {
    right: -120px;
    bottom: 18px;
    width: 500px;
    opacity: 0.024;
  }

  .not-found-hero__inner {
    top: -108px;
    width: min(calc(100% - 40px), 620px);
  }

  .not-found-hero h1 {
    margin-top: 16px;
  }

  .not-found-hero__copy {
    max-width: 320px;
    white-space: normal;
  }

  .not-found-footer {
    bottom: 18px;
    width: min(calc(100% - 40px), 620px);
  }

  .request-access-layout {
    gap: 42px;
  }

  .request-access-fields,
  .request-access-steps {
    grid-template-columns: 1fr;
  }

  .request-access-field--full {
    grid-column: auto;
  }

  .request-access-submit {
    width: 100%;
  }

  .request-access-inline {
    padding: 70px 0 78px;
  }

  .request-access-inline__shell {
    gap: 34px;
  }
}

/* Compact one-frame Market Thesis rebuild */
.market-thesis-section {
  min-height: calc(100svh - clamp(78px, 7vw, 108px));
  padding: clamp(36px, 4.6vw, 58px) 0 clamp(8px, 1.2vw, 16px);
  scroll-margin-top: 0;
  color: #20332d;
  background:
    radial-gradient(620px 320px at 88% 18%, rgba(114, 131, 112, 0.08), transparent 70%),
    linear-gradient(90deg, rgba(47, 102, 81, 0.055) 1px, transparent 1px),
    #f7f1e8;
  background-size: auto, 72px 72px, auto;
}

.market-monitoring-strip {
  position: relative;
  padding: clamp(16px, 2vw, 28px) 0 clamp(18px, 2.2vw, 32px);
  color: #3f3a34;
  background:
    linear-gradient(90deg, rgba(63, 58, 52, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(63, 58, 52, 0.028) 1px, transparent 1px),
    #f7f1e8;
  background-size: 82px 82px, 82px 82px, auto;
}

.market-monitoring-strip__inner {
  width: min(calc(100% - clamp(48px, 6vw, 108px)), 1540px);
  max-width: none;
}

.market-monitoring-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
}

.market-monitoring-strip__metric {
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(12px, 1.05vw, 16px) clamp(20px, 2vw, 34px);
  border-right: 1px solid rgba(63, 58, 52, 0.075);
  background: transparent;
  text-align: center;
}

.market-monitoring-strip__metric:first-child {
  border-left: 0;
}

.market-monitoring-strip__metric:last-child {
  border-right: 0;
}

.market-monitoring-strip__metric strong {
  display: block;
  color: #3f3a34;
  font-family: var(--font-sans);
  font-size: clamp(1.92rem, 2.55vw, 3.16rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.market-monitoring-strip__metric span {
  display: block;
  max-width: 18ch;
  color: rgba(63, 58, 52, 0.66);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.buyer-positioning-section {
  position: relative;
  padding: clamp(46px, 5.8vw, 78px) 0 clamp(34px, 4.2vw, 58px);
  color: #20332d;
  background:
    radial-gradient(620px 320px at 88% 18%, rgba(114, 131, 112, 0.08), transparent 70%),
    linear-gradient(90deg, rgba(47, 102, 81, 0.055) 1px, transparent 1px),
    #f7f1e8;
  background-size: auto, 72px 72px, auto;
  overflow: hidden;
}

.buyer-positioning-shell {
  width: min(calc(100% - clamp(48px, 6vw, 108px)), 1280px);
  max-width: none;
  padding-top: clamp(24px, 2.8vw, 38px);
  border-top: 1px solid rgba(32, 51, 45, 0.13);
}

.buyer-positioning-eyebrow {
  margin: 0 0 clamp(22px, 2.4vw, 34px);
  color: #173f34;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.buyer-positioning-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.8fr) minmax(420px, 0.94fr);
  gap: clamp(26px, 3.8vw, 58px);
  align-items: start;
}

.buyer-positioning-grid h2 {
  max-width: 640px;
  margin: 0;
  color: #332f2a;
  font-family: var(--font-sans);
  font-size: clamp(2.56rem, 3.85vw, 4.72rem);
  font-weight: 600;
  letter-spacing: -0.058em;
  line-height: 0.86;
}

.buyer-positioning-grid h2 span {
  display: block;
  white-space: nowrap;
}

.buyer-positioning-copy {
  max-width: 660px;
  padding-top: 4px;
}

.buyer-positioning-copy p {
  margin: 0;
  color: rgba(32, 51, 45, 0.72);
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  line-height: 1.7;
}

.buyer-positioning-copy p + p {
  margin-top: 22px;
}

.buyer-positioning-copy p:last-child {
  margin-top: 24px;
  color: rgba(23, 63, 52, 0.9);
  font-weight: 620;
}

@media (max-width: 1180px) {
  .market-monitoring-strip__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .buyer-positioning-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (min-width: 1181px) and (max-width: 1380px) {
  .buyer-positioning-grid {
    gap: clamp(24px, 3vw, 42px);
  }

  .buyer-positioning-grid h2 {
    font-size: clamp(2.56rem, 3.55vw, 4.3rem);
  }
}

@media (max-width: 720px) {
  .market-monitoring-strip {
    padding: 22px 0 28px;
    background-size: 58px 58px, 58px 58px, auto;
  }

  .market-monitoring-strip__inner {
    width: min(calc(100% - 32px), 1540px);
  }

  .market-monitoring-strip__grid {
    grid-template-columns: 1fr;
  }

  .market-monitoring-strip__metric {
    min-height: 76px;
    padding: 15px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(63, 58, 52, 0.1);
  }

  .market-monitoring-strip__metric span {
    max-width: none;
  }

  .buyer-positioning-section {
    padding: 42px 0 58px;
    background-size: auto, 58px 58px, auto;
  }

  .buyer-positioning-shell {
    width: min(calc(100% - 32px), 1280px);
    padding-top: 24px;
  }

  .buyer-positioning-grid h2 {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .buyer-positioning-grid h2 span {
    display: inline;
    white-space: normal;
  }
}

.market-thesis-shell {
  display: grid;
  min-height: calc(100svh - clamp(152px, 14vw, 204px));
  align-content: center;
  gap: clamp(4px, 0.7vw, 10px);
}

.market-thesis-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(540px, 1.18fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
}

.market-thesis-header {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 520px;
}

.market-thesis-section .market-thesis-eyebrow {
  color: #173f34;
}

.market-thesis-header h2 {
  max-width: 11ch;
  margin-top: 18px;
  font-family: var(--font-sans);
  font-size: clamp(3rem, 4.8vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.88;
  color: #332f2a;
}

.market-thesis-header > p:not(.market-thesis-eyebrow) {
  max-width: 560px;
  margin-top: 28px;
  font-size: clamp(0.98rem, 1.04vw, 1.12rem);
  line-height: 1.72;
  color: rgba(32, 51, 45, 0.68);
}

.market-thesis-header > p.market-thesis-header__support {
  margin-top: 16px;
  color: rgba(32, 51, 45, 0.68);
}

.market-thesis-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
  padding: 0;
  border: 0;
  background: transparent;
  background-size: auto;
}

.market-thesis-layer {
  position: relative;
  min-height: clamp(310px, 38vh, 380px);
  padding: clamp(18px, 1.8vw, 26px);
  border-left: 1px solid rgba(255, 251, 237, 0.12);
  border-top: 1px solid rgba(255, 251, 237, 0.14);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms ease,
    background-color 240ms ease;
}

.market-thesis-board.is-visible .market-thesis-layer {
  opacity: 1;
  transform: translateY(0);
}

.market-thesis-board.is-visible .market-thesis-layer:nth-child(2) { transition-delay: 100ms; }
.market-thesis-board.is-visible .market-thesis-layer:nth-child(3) { transition-delay: 200ms; }

.market-thesis-layer::before {
  content: "";
  position: absolute;
  left: clamp(18px, 1.8vw, 26px);
  right: clamp(18px, 1.8vw, 26px);
  top: -1px;
  height: 1px;
  background: rgba(180, 205, 189, 0);
  transition: background-color 240ms ease;
}

.market-thesis-layer:hover {
  border-color: rgba(255, 251, 237, 0.18);
  background: rgba(255, 251, 237, 0.035);
}

.market-thesis-layer:hover::before {
  background: rgba(180, 205, 189, 0.56);
}

.market-thesis-layer__header {
  display: grid;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(32, 51, 45, 0.12);
}

.market-thesis-number {
  display: inline-flex;
  margin: 0;
  color: rgba(47, 102, 81, 0.62);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
}

.market-thesis-number::after {
  content: none;
}

.market-thesis-layer h3 {
  margin: 0;
  color: #20332d;
  font-size: clamp(1.12rem, 1.3vw, 1.42rem);
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.12;
  text-transform: uppercase;
}

.market-thesis-layer ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.market-thesis-layer li {
  position: relative;
  min-height: 36px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 251, 237, 0.1);
  color: rgba(255, 251, 237, 0.7);
  font-size: 0.82rem;
  line-height: 1.22;
  transition: border-color 220ms ease, color 220ms ease, background-color 220ms ease;
}

.market-thesis-layer li:hover {
  border-color: rgba(180, 205, 189, 0.36);
  background: rgba(255, 251, 237, 0.035);
  color: rgba(255, 251, 237, 0.92);
}

.market-thesis-strip {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(540px, 1.18fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
  margin-top: clamp(-18px, -1.4vw, -10px);
  padding-top: 0;
}

.market-thesis-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  grid-column: 2;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(32, 51, 45, 0.22);
  color: rgba(32, 51, 45, 0.86);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 240ms ease, color 240ms ease, transform 240ms ease;
}

.market-thesis-strip a:hover,
.market-thesis-strip a:focus-visible {
  border-color: rgba(32, 51, 45, 0.38);
  color: #20332d;
  transform: translateY(-1px);
}

.market-thesis-shell,
.market-thesis-header,
.market-thesis-board,
.market-thesis-strip {
  position: relative !important;
  z-index: 1 !important;
}

.market-thesis-section .reveal {
  opacity: 1;
  filter: none;
  transform: none;
}

@keyframes marketSignalIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.market-thesis-layer {
  animation: marketSignalIn 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.market-thesis-layer:nth-child(2) { animation-delay: 100ms; }
.market-thesis-layer:nth-child(3) { animation-delay: 200ms; }

@media (max-width: 980px) {
  .market-thesis-section {
    min-height: auto;
  }

  .market-thesis-shell {
    min-height: auto;
  }

  .market-thesis-layout,
  .market-thesis-strip {
    grid-template-columns: 1fr;
  }

  .market-thesis-board {
    grid-template-columns: 1fr;
  }

  .market-thesis-strip a {
    grid-column: 1;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .market-thesis-layer {
    min-height: auto;
  }

  .market-thesis-strip a {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

body.home-page .market-thesis-board-stack {
  position: relative;
  z-index: 1;
  min-width: 0;
  align-self: center;
  gap: clamp(14px, 1.4vw, 20px);
  overflow: hidden;
  contain: paint;
}

body.home-page .market-thesis-board {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: clamp(10px, 1vw, 14px);
  min-height: clamp(410px, 46vh, 520px);
  padding: 0;
  border: 0;
  background: transparent;
  background-size: auto;
  isolation: isolate;
}

body.home-page .market-thesis-board .market-thesis-layer {
  position: relative;
  flex: 0 1 clamp(82px, 8.5vw, 112px);
  min-width: 0;
  min-height: 100%;
  padding: clamp(24px, 2.3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(67, 92, 78, 0.18);
  border-radius: 3px;
  background:
    linear-gradient(135deg, rgba(160, 184, 145, 0.98), rgba(132, 164, 123, 0.98));
  box-shadow: 0 16px 34px rgba(32, 51, 45, 0.095);
  cursor: pointer;
  opacity: 0.9;
  transform: translateY(0);
  transform-origin: center;
  animation: none;
  transition:
    flex-basis 560ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;
}

body.home-page .market-thesis-board .market-thesis-layer.is-active {
  flex: 1 1 min(68%, 620px);
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(67, 92, 78, 0.24);
  box-shadow: 0 26px 54px rgba(32, 51, 45, 0.15);
  filter: none;
}

body.home-page .market-thesis-board .market-thesis-layer.is-stack-back-one {
  opacity: 0.88;
  transform: translateY(10px);
  filter: saturate(0.94) brightness(0.96);
}

body.home-page .market-thesis-board .market-thesis-layer.is-stack-back-two {
  opacity: 0.78;
  transform: translateY(10px);
  filter: saturate(0.86) brightness(0.94);
}

body.home-page .market-thesis-board .market-thesis-layer:hover {
  border-color: rgba(47, 102, 81, 0.26);
  box-shadow: 0 28px 58px rgba(32, 51, 45, 0.17);
}

body.home-page .market-thesis-board .market-thesis-layer::before {
  left: clamp(20px, 2vw, 30px);
  right: clamp(20px, 2vw, 30px);
  top: clamp(18px, 1.8vw, 26px);
  bottom: auto;
  width: auto;
  height: 1px;
  background: rgba(32, 51, 45, 0.16);
  clip-path: none;
  opacity: 0;
}

body.home-page .market-thesis-board .market-thesis-layer::after {
  content: none;
}

body.home-page .market-thesis-board .market-thesis-layer__header {
  min-width: min-content;
  border-bottom-color: rgba(32, 51, 45, 0.14);
  transition: border-color 260ms ease, padding 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-page .market-thesis-board .market-thesis-layer:not(.is-active) .market-thesis-layer__header {
  min-height: 100%;
  align-content: start;
  justify-items: center;
  gap: 18px;
  padding-bottom: 0;
  border-bottom-color: transparent;
}

body.home-page .market-thesis-board .market-thesis-layer:not(.is-active) .market-thesis-number {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

body.home-page .market-thesis-board .market-thesis-layer:not(.is-active) h3 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  max-height: 270px;
  color: rgba(32, 51, 45, 0.78);
  letter-spacing: 0.12em;
}

body.home-page .market-thesis-board .market-thesis-layer ul {
  gap: 12px;
  margin-top: clamp(22px, 2.2vw, 30px);
  opacity: 1;
  transition: opacity 240ms ease 120ms, transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-page .market-thesis-board .market-thesis-layer:not(.is-active) ul {
  display: none;
  opacity: 0;
  transform: translateX(8px);
}

body.home-page .market-thesis-board .market-thesis-layer li {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

body.home-page .market-thesis-board .market-thesis-chip {
  min-height: 40px;
  border-color: rgba(32, 51, 45, 0.12);
  background: rgba(244, 250, 239, 0.24);
}

body.home-page .market-thesis-note {
  width: min(86%, 640px);
}

@media (max-width: 980px) {
  body.home-page .market-thesis-board {
    display: grid;
    gap: 14px;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }

  body.home-page .market-thesis-board .market-thesis-layer,
  body.home-page .market-thesis-board .market-thesis-layer.is-active,
  body.home-page .market-thesis-board .market-thesis-layer.is-stack-back-one,
  body.home-page .market-thesis-board .market-thesis-layer.is-stack-back-two {
    flex-basis: auto;
    min-height: auto;
    opacity: 1;
    transform: none;
    filter: none;
  }

  body.home-page .market-thesis-board .market-thesis-layer:not(.is-active) .market-thesis-layer__header {
    min-height: auto;
    justify-items: start;
    padding-bottom: 18px;
    border-bottom-color: rgba(32, 51, 45, 0.14);
  }

  body.home-page .market-thesis-board .market-thesis-layer:not(.is-active) .market-thesis-number,
  body.home-page .market-thesis-board .market-thesis-layer:not(.is-active) h3 {
    writing-mode: horizontal-tb;
  }

  body.home-page .market-thesis-board .market-thesis-layer:not(.is-active) ul {
    display: grid;
    opacity: 1;
    transform: none;
  }

body.home-page .market-thesis-note {
    width: 100%;
  }
}

/* Full-width Market Thesis lens deck */
body.home-page .market-thesis-section {
  min-height: auto;
  padding: clamp(42px, 5vw, 68px) 0 clamp(24px, 3vw, 38px);
}

body.home-page .market-thesis-shell {
  min-height: auto;
  align-content: start;
  gap: clamp(26px, 3vw, 42px);
}

body.home-page .market-thesis-board-stack {
  display: grid;
  align-self: stretch;
  gap: clamp(10px, 1vw, 16px);
  width: 100%;
}

body.home-page .market-thesis-board-eyebrow {
  margin: 0;
}

body.home-page .market-thesis-board-hint {
  max-width: 620px;
  margin: -2px 0 clamp(6px, 0.7vw, 10px);
  color: rgba(32, 51, 45, 0.54);
  font-size: clamp(0.82rem, 0.84vw, 0.92rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

body.home-page .market-thesis-board.market-thesis-lens-board {
  display: grid;
  align-items: stretch;
  gap: clamp(8px, 0.8vw, 12px);
  min-height: clamp(390px, 42vh, 500px);
  width: 100%;
  overflow: hidden;
  contain: paint;
  isolation: isolate;
}

body.home-page .market-thesis-lens-card {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: clamp(16px, 1.8vw, 24px);
  min-width: 0;
  min-height: 100%;
  padding: clamp(16px, 1.45vw, 22px);
  overflow: hidden;
  border: 1px solid rgba(67, 92, 78, 0.2);
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(147, 174, 132, 0.98), rgba(113, 146, 106, 0.98));
  box-shadow: 0 14px 30px rgba(32, 51, 45, 0.09);
  color: #20332d;
  cursor: pointer;
  opacity: 0.88;
  transform: translateY(0);
  will-change: transform, opacity;
  transition:
    opacity 420ms ease,
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 300ms ease,
    box-shadow 300ms ease;
}

body.home-page .market-thesis-lens-card::before {
  content: "";
  position: absolute;
  top: clamp(18px, 1.7vw, 26px);
  right: clamp(20px, 2vw, 32px);
  left: clamp(20px, 2vw, 32px);
  height: 1px;
  background: rgba(32, 51, 45, 0.15);
  opacity: 0;
  transition: opacity 240ms ease;
}

body.home-page .market-thesis-lens-card.is-active {
  padding: clamp(24px, 2.3vw, 34px);
  opacity: 1;
  border-color: rgba(67, 92, 78, 0.28);
  box-shadow: 0 26px 54px rgba(32, 51, 45, 0.15);
  filter: none;
  cursor: default;
}

body.home-page .market-thesis-lens-card.is-active::before {
  opacity: 1;
}

body.home-page .market-thesis-lens-card:not(.is-active) {
  opacity: 0.84;
}

body.home-page .market-thesis-lens-card:not(.is-active):hover,
body.home-page .market-thesis-lens-card:not(.is-active):focus-visible {
  opacity: 0.96;
  border-color: rgba(47, 102, 81, 0.3);
  outline: none;
}

body.home-page .market-thesis-lens-board.is-switching .market-thesis-lens-card {
  pointer-events: none;
}

body.home-page .market-thesis-lens-board.is-switching .market-thesis-lens-card p {
  opacity: 0;
  transform: translateY(6px);
}

body.home-page .market-thesis-lens-card .market-thesis-number {
  color: rgba(32, 51, 45, 0.58);
}

body.home-page .market-thesis-lens-card h3 {
  max-width: 14ch;
  margin: 0;
  color: #20332d;
  font-size: clamp(0.88rem, 0.95vw, 1.06rem);
  font-weight: 760;
  letter-spacing: 0.1em;
  line-height: 1.14;
  text-transform: uppercase;
}

body.home-page .market-thesis-lens-card:not(.is-active) .market-thesis-number,
body.home-page .market-thesis-lens-card:not(.is-active) h3 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

body.home-page .market-thesis-lens-card:not(.is-active) h3 {
  max-width: none;
  max-height: 300px;
  color: rgba(32, 51, 45, 0.76);
  letter-spacing: 0.12em;
}

body.home-page .market-thesis-lens-card.is-active h3 {
  max-width: 16ch;
  font-size: clamp(1.35rem, 1.9vw, 2.12rem);
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1.02;
}

body.home-page .market-thesis-lens-card p {
  max-width: 500px;
  margin: 0;
  color: rgba(32, 51, 45, 0.74);
  font-size: clamp(0.92rem, 1vw, 1.04rem);
  line-height: 1.62;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 300ms ease 140ms,
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1) 140ms;
}

body.home-page .market-thesis-lens-card.is-active p {
  opacity: 1;
  transform: translateY(0);
}

body.home-page .market-thesis-lens-card:not(.is-active) p {
  display: none;
}

body.home-page .market-thesis-layout {
  grid-template-columns: 1fr;
  gap: 0;
  transform: none;
}

body.home-page .market-thesis-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: none;
  margin-top: clamp(18px, 2.2vw, 28px);
}

body.home-page .market-thesis-header h2 {
  grid-column: 1;
  grid-row: 1;
  max-width: 15ch;
  font-size: clamp(2rem, 2.85vw, 3.45rem);
  font-weight: 540;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

body.home-page .market-thesis-header > p:not(.market-thesis-eyebrow) {
  grid-column: 2;
  grid-row: 1;
  max-width: 690px;
  margin-top: clamp(8px, 0.7vw, 12px);
  font-size: clamp(0.98rem, 1.02vw, 1.1rem);
  line-height: 1.68;
}

body.home-page .market-thesis-header > p.market-thesis-header__support {
  grid-column: 2;
  grid-row: 2;
  margin-top: 16px;
}

body.home-page .market-thesis-strip {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  transform: none;
  margin-top: 0;
}

body.home-page .market-thesis-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: auto;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #332f2a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 220ms ease;
}

body.home-page .market-thesis-strip a::before {
  content: "";
  order: 2;
  flex: 0 0 48px;
  width: 48px;
  height: 1px;
  margin-left: 18px;
  background: currentColor;
  opacity: 0.86;
  transform-origin: left center;
  transition: transform 220ms ease, opacity 220ms ease;
}

body.home-page .market-thesis-strip a::after {
  content: "";
  order: 3;
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-left: -7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  opacity: 0.86;
  transform: translateX(-1px) rotate(45deg);
  transition: transform 220ms ease, opacity 220ms ease;
}

body.home-page .market-thesis-strip a:hover,
body.home-page .market-thesis-strip a:focus-visible {
  color: #332f2a;
  transform: none;
}

body.home-page .market-thesis-strip a:hover::before,
body.home-page .market-thesis-strip a:focus-visible::before {
  opacity: 0.72;
  transform: scaleX(1.14);
}

body.home-page .market-thesis-strip a:hover::after,
body.home-page .market-thesis-strip a:focus-visible::after {
  opacity: 0.72;
  transform: translateX(5px) rotate(45deg);
}

body.home-page .market-thesis-strip a:focus-visible {
  outline: 1px solid rgba(63, 58, 52, 0.42);
  outline-offset: 6px;
}

@media (max-width: 1180px) {
  body.home-page .market-thesis-board.market-thesis-lens-board {
    min-height: auto;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  body.home-page .market-thesis-lens-card {
    min-width: 0;
  }

  body.home-page .market-thesis-lens-card.is-active {
    min-height: 285px;
  }
}

@media (max-width: 980px) {
  body.home-page .market-thesis-section {
    padding: 44px 0 32px;
  }

  body.home-page .market-thesis-layout {
    transform: none;
  }

  body.home-page .market-thesis-header,
  body.home-page .market-thesis-strip {
    display: flex;
  }

  body.home-page .market-thesis-header h2,
  body.home-page .market-thesis-header > p:not(.market-thesis-eyebrow),
  body.home-page .market-thesis-header > p.market-thesis-header__support {
    grid-column: 1;
    grid-row: auto;
  }

  body.home-page .market-thesis-header > p:not(.market-thesis-eyebrow) {
    margin-top: 0;
  }

  body.home-page .market-thesis-strip {
    margin-top: 0;
  }

  body.home-page .market-thesis-strip a {
    grid-column: 1;
  }
}

@media (max-width: 680px) {
  body.home-page .market-thesis-board.market-thesis-lens-board {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  body.home-page .market-thesis-lens-card,
  body.home-page .market-thesis-lens-card.is-active {
    min-height: auto;
  }

  body.home-page .market-thesis-lens-card:not(.is-active) .market-thesis-number,
  body.home-page .market-thesis-lens-card:not(.is-active) h3 {
    writing-mode: horizontal-tb;
  }

  body.home-page .market-thesis-lens-card:not(.is-active) p {
    display: none;
  }
}
