:root {
  --ink: #17202a;
  --muted: #596b78;
  --line: #dce6ec;
  --paper: #f7fbfd;
  --white: #ffffff;
  --teal: #1d7f84;
  --aqua: #dff3f4;
  --gold: #d9a441;
  --charcoal: #12181c;
  --shadow: 0 22px 55px rgba(31, 52, 61, 0.14);
  --font-body: Aptos, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Aptos Display", Aptos, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #eef8fb 42%, #ffffff 100%);
  font-weight: 450;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1380px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(220, 230, 236, 0.8);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(223, 243, 244, 0.82)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(18, 24, 28, 0.1);
  backdrop-filter: blur(18px);
}

.site-header::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.72);
  content: "";
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.brand-mark {
  position: relative;
  display: grid;
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0 53%, rgba(255, 255, 255, 0.88) 56%, transparent 58%),
    conic-gradient(from 145deg, var(--gold), var(--teal), #092f33, var(--teal), var(--gold));
  box-shadow: 0 12px 28px rgba(29, 127, 132, 0.24);
  font-weight: 800;
  font-size: 1.15rem;
  overflow: hidden;
}

.brand-mark::before {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(29, 127, 132, 0.16),
    0 0 18px rgba(217, 164, 65, 0.16);
  content: "";
}

.brand-mark img {
  position: relative;
  z-index: 1;
  width: 90%;
  height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.18));
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.brand strong {
  font-size: 1.06rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 1;
  padding: 6px 8px;
  border: 1px solid rgba(220, 230, 236, 0.72);
  border-radius: 999px;
  color: #2e3b44;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1vw, 1.14rem);
  font-weight: 760;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 12px;
  text-align: center;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

  min-width: 154px;
  padding-right: 14px;
  padding-left: 14px;
}

.main-nav a::after {
  position: absolute;
  right: 16px;
  bottom: 6px;
  left: 16px;
  height: 3px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--charcoal);
  background: rgba(223, 243, 244, 0.92);
  box-shadow: 0 10px 24px rgba(31, 52, 61, 0.1);
  transform: translateY(-1px);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  right: -10px;
  left: -10px;
  height: 14px;
  content: "";
}

.nav-parent span {
  margin-left: 5px;
  color: var(--teal);
  font-size: 0.86em;
  line-height: 1;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  z-index: 35;
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgba(220, 230, 236, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 50px rgba(18, 24, 28, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  width: 100%;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  white-space: nowrap;
  font-size: 0.94rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(220, 230, 236, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.language-current,
.language-menu button {
  display: inline-grid;
  min-width: 36px;
  min-height: 34px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #2e3b44;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.language-current,
.language-current:hover,
.language-current:focus-visible,
.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--charcoal), var(--teal));
  box-shadow: 0 8px 18px rgba(29, 127, 132, 0.18);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  display: grid;
  gap: 4px;
  min-width: 52px;
  padding: 5px;
  border: 1px solid rgba(220, 230, 236, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(18, 24, 28, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

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

.google-translate-shell,
.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.phone-link,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 750;
}

.phone-link {
  min-height: 52px;
  padding: 0 22px;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--charcoal), #20313a),
    var(--charcoal);
  box-shadow: 0 14px 30px rgba(18, 24, 28, 0.18);
  font-size: 1.02rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.phone-link:hover,
.phone-link:focus-visible {
  box-shadow: 0 18px 36px rgba(18, 24, 28, 0.24);
  transform: translateY(-1px);
}


.nav-phone-link {
  display: none;
}

.main-nav .nav-phone-link {
  display: none;
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--aqua);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section-band,
.intro-grid,
.seller-section,
.global-section,
.lending-strip,
.calculator-promo,
.calculator-hero,
.calculator-page-grid,
.legal-hero,
.legal-layout,
.contact-section,
.property-hero,
.property-gallery,
.property-content-grid,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 52px;
  min-height: calc(100vh - 104px);
  align-items: center;
  padding: 54px 0 48px;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 760;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 3.9vw, 4.05rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.3vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-lede,
.intro-grid p,
.section-copy p,
.section-heading p,
.global-copy p,
.lending-strip p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.76;
}

.hero-lede {
  max-width: 650px;
}

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

.hero-service-nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
  gap: 8px;
  max-width: 640px;
  margin-top: 26px;
  padding: 10px;
  border: 1px solid rgba(220, 230, 236, 0.86);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 249, 249, 0.68)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 44px rgba(31, 52, 61, 0.08);
}

.hero-service-nav > span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px 0 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-seo-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.hero-seo-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(220, 230, 236, 0.9);
  border-radius: 999px;
  padding: 0 14px;
  color: #2e3b44;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    var(--service-tint, var(--white));
  box-shadow: 0 6px 18px rgba(31, 52, 61, 0.06);
  font-size: 0.84rem;
  font-weight: 750;
  text-align: center;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.hero-seo-links a:nth-child(1) {
  --service-tint: rgba(217, 164, 65, 0.18);
  border-color: rgba(217, 164, 65, 0.32);
  color: #6f561d;
}

.hero-seo-links a:nth-child(2) {
  --service-tint: rgba(29, 127, 132, 0.15);
  border-color: rgba(29, 127, 132, 0.28);
  color: #0f686e;
}

.hero-seo-links a:nth-child(3) {
  --service-tint: rgba(71, 132, 92, 0.15);
  border-color: rgba(71, 132, 92, 0.3);
  color: #2f6d45;
}

.hero-seo-links a:nth-child(4) {
  --service-tint: rgba(30, 83, 119, 0.16);
  border-color: rgba(30, 83, 119, 0.3);
  color: #1e5377;
}

.hero-seo-links a:hover,
.hero-seo-links a:focus-visible {
  border-color: currentColor;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56)),
    var(--service-tint, var(--white));
  box-shadow: 0 12px 28px rgba(31, 52, 61, 0.12);
}

.btn {
  position: relative;
  isolation: isolate;
  border: 1px solid transparent;
  padding: 0 22px;
  cursor: pointer;
  font-size: 0.92rem;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.btn.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 26px rgba(29, 127, 132, 0.18);
}

.btn.primary::before {
  position: absolute;
  inset: -5px;
  z-index: -1;
  border: 1px solid rgba(29, 127, 132, 0.34);
  border-radius: inherit;
  content: "";
  opacity: 0;
  transform: scale(0.94);
}

.btn.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.btn:hover,
.btn:focus-visible {
  box-shadow: 0 18px 38px rgba(31, 52, 61, 0.16);
  transform: translateY(-2px);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: #166f74;
  box-shadow:
    0 18px 38px rgba(29, 127, 132, 0.24),
    0 0 0 6px rgba(29, 127, 132, 0.1);
}

.btn.primary:hover::before,
.btn.primary:focus-visible::before {
  animation: cta-pulse 900ms ease-out;
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  border-color: rgba(217, 164, 65, 0.58);
  color: var(--teal);
  background: #fffaf0;
}

.btn:active {
  box-shadow: 0 10px 24px rgba(31, 52, 61, 0.12);
  transform: translateY(0) scale(0.99);
}

@keyframes cta-pulse {
  0% {
    opacity: 0.72;
    transform: scale(0.94);
  }

  70% {
    opacity: 0.1;
  }

  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

.btn.dark {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: transparent;
}

.btn.compact {
  width: fit-content;
  margin-top: 28px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 650px;
  margin: 30px 0 0;
  padding: 12px;
  border: 1px solid rgba(220, 230, 236, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(238, 249, 249, 0.72)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(31, 52, 61, 0.08);
}

.trust-strip div {
  padding: 16px 18px;
  border: 0;
  border-radius: 12px;
  background: transparent;
}

.trust-strip div + div {
  border-left: 1px solid rgba(29, 127, 132, 0.14);
}

.trust-strip dt {
  font-size: 1.15rem;
  font-weight: 850;
}

.trust-strip dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  position: relative;
  min-height: 640px;
}

.hero-media::after {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 480px);
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.42) 45%, transparent 58%);
  content: "";
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 220ms ease,
    transform 600ms ease;
  z-index: 1;
}

.hero-media:hover::after,
.hero-media:focus-within::after {
  opacity: 1;
  transform: translateX(120%);
}

.hero-main {
  position: relative;
  width: min(100%, 480px);
  margin-left: auto;
  border-radius: 22px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 16%;
  transition:
    transform 760ms ease,
    box-shadow 260ms ease;
  z-index: 0;
}

.hero-media:hover .hero-main,
.hero-media:focus-within .hero-main {
  box-shadow: 0 28px 70px rgba(31, 52, 61, 0.18);
  transform: translateY(-6px) scale(1.018);
}

.floating-card {
  position: absolute;
  width: min(310px, 78%);
  padding: 18px;
  border: 1px solid rgba(220, 230, 236, 0.78);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(18, 24, 28, 0.13);
  backdrop-filter: blur(16px);
  transition:
    transform 320ms ease,
    box-shadow 240ms ease;
  z-index: 2;
}

.hero-media:hover .floating-card,
.hero-media:focus-within .floating-card {
  box-shadow: 0 20px 52px rgba(18, 24, 28, 0.16);
}

.hero-media:hover .card-top,
.hero-media:focus-within .card-top {
  transform: translate(-4px, -6px);
}

.hero-media:hover .card-bottom,
.hero-media:focus-within .card-bottom {
  transform: translate(4px, -6px);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.card-top {
  top: 70px;
  left: 0;
}

.card-bottom {
  right: 22px;
  bottom: 70px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  padding: 66px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.welcome-panel {
  position: relative;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  overflow: hidden;
  margin-top: 36px;
  margin-bottom: 18px;
  padding: 42px;
  border: 1px solid rgba(220, 230, 236, 0.86);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(223, 243, 244, 0.62)),
    var(--white);
  box-shadow: 0 22px 58px rgba(31, 52, 61, 0.08);
}

.welcome-panel::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 45%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(29, 127, 132, 0.24), transparent);
  content: "";
}

.welcome-heading,
.welcome-copy {
  position: relative;
  z-index: 1;
}

.welcome-heading h2 {
  max-width: 500px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.welcome-copy p {
  max-width: 610px;
  margin-bottom: 0;
}

.welcome-cues {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.welcome-cues span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(29, 127, 132, 0.18);
  border-radius: 999px;
  padding: 0 13px;
  color: #245c61;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(31, 52, 61, 0.06);
  font-size: 0.88rem;
  font-weight: 760;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 58px;
  align-items: center;
  padding: 90px 0;
}

.buy-section {
  position: relative;
  grid-template-columns: 0.95fr 1fr;
  gap: 46px;
  overflow: hidden;
  margin-top: 18px;
  margin-bottom: 32px;
  padding: 44px;
  border: 1px solid rgba(29, 127, 132, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(223, 243, 244, 0.82) 58%, rgba(255, 247, 227, 0.64)),
    var(--white);
  box-shadow: 0 28px 76px rgba(31, 52, 61, 0.12);
}

.buy-section::before {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 50%;
  content: "";
}

.buy-section::after {
  position: absolute;
  right: 40px;
  bottom: 26px;
  color: rgba(29, 127, 132, 0.07);
  content: "BUY";
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.buy-kicker {
  position: absolute;
  top: 22px;
  right: 34px;
  z-index: 1;
  border: 1px solid rgba(29, 127, 132, 0.2);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 30px rgba(31, 52, 61, 0.08);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.buy-media,
.buy-copy {
  z-index: 1;
}

.buy-media {
  border: 8px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
}

.buy-media img {
  aspect-ratio: 1.22 / 1;
}

.buy-media .mini-panel {
  right: 18px;
  bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(18, 24, 28, 0.9);
}

.buy-copy h2 {
  max-width: 610px;
  font-size: clamp(1.85rem, 3vw, 3.3rem);
}

.buyer-card-grid {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.buyer-card-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0 14px;
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(220, 230, 236, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(31, 52, 61, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.buyer-card-grid article:hover {
  border-color: rgba(29, 127, 132, 0.34);
  box-shadow: 0 24px 48px rgba(31, 52, 61, 0.12);
  transform: translateY(-4px);
}

.buyer-card-grid h3 {
  margin: 2px 0 6px;
  font-size: 1rem;
}

.buyer-card-grid p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.buyer-icon {
  display: grid;
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: var(--teal);
  background:
    linear-gradient(135deg, rgba(223, 243, 244, 0.9), rgba(255, 247, 227, 0.95)),
    var(--white);
}

.buyer-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.buy-cta {
  box-shadow: 0 16px 34px rgba(29, 127, 132, 0.22);
}

.image-stack {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition:
    transform 700ms ease,
    box-shadow 260ms ease;
}

.image-stack::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.42) 45%, transparent 58%);
  content: "";
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 220ms ease,
    transform 600ms ease;
  z-index: 1;
}

.image-stack:hover,
.image-stack:focus-within {
  box-shadow: 0 28px 70px rgba(31, 52, 61, 0.18);
  transform: translateY(-6px) scale(1.012);
}

.image-stack:hover::after,
.image-stack:focus-within::after {
  opacity: 1;
  transform: translateX(120%);
}

.image-stack img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  object-position: 50% 33%;
  transition: transform 760ms ease;
}

.image-stack:hover img,
.image-stack:focus-within img {
  transform: scale(1.018);
}

.mini-panel {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 230px;
  padding: 18px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(18, 24, 28, 0.86);
  transition:
    transform 320ms ease,
    box-shadow 240ms ease;
  z-index: 2;
}

.image-stack:hover .mini-panel,
.image-stack:focus-within .mini-panel {
  box-shadow: 0 20px 52px rgba(18, 24, 28, 0.16);
  transform: translate(4px, -6px);
}

.mini-panel span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-panel strong {
  display: block;
  margin-top: 6px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #2e3b44;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  content: "+";
  font-size: 0.75rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-weight: 800;
}

.text-link::after {
  content: "->";
}

.seller-section {
  padding: 34px 0 86px;
}

.seller-shell {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border: 1px solid rgba(220, 230, 236, 0.96);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(18, 24, 28, 0.94), rgba(23, 70, 75, 0.94)),
    var(--charcoal);
  box-shadow: 0 24px 70px rgba(18, 24, 28, 0.18);
}

.seller-shell::before {
  position: absolute;
  top: -130px;
  right: -140px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(217, 164, 65, 0.3);
  border-radius: 50%;
  content: "";
  z-index: 0;
}

.seller-shell::after {
  position: absolute;
  right: 36px;
  bottom: 28px;
  color: rgba(255, 255, 255, 0.035);
  content: "AS-IS";
  font-size: clamp(5rem, 11vw, 9rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.seller-heading {
  position: relative;
  z-index: 1;
}

.seller-heading h2 {
  max-width: 980px;
  color: var(--white);
  font-size: clamp(1.85rem, 3vw, 3.3rem);
}

.seller-heading p {
  color: #bddfe1;
}

.seller-proof {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 30px;
}

.seller-proof span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 13px;
  color: #ecfbfc;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 800;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.benefit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-grid article,
.opportunity-card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(31, 52, 61, 0.08);
}

.benefit-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  transition:
    transform 260ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.seller-section .benefit-grid article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.92);
}

.benefit-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--card-accent, var(--teal));
  content: "";
}

.benefit-grid article:nth-child(1) {
  --card-accent: var(--gold);
}

.benefit-grid article:nth-child(2) {
  --card-accent: var(--teal);
}

.benefit-grid article:nth-child(3) {
  --card-accent: #6ab9d2;
}

.benefit-grid article:nth-child(4) {
  --card-accent: #2f4d59;
}

.benefit-grid article:hover,
.benefit-grid article:focus-within {
  border-color: rgba(217, 164, 65, 0.36);
  box-shadow: 0 24px 58px rgba(18, 24, 28, 0.18);
  transform: translateY(-8px);
}

.benefit-grid .benefit-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(18, 24, 28, 0.08);
  border-radius: 14px;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--card-accent, var(--teal)), var(--charcoal));
  box-shadow: 0 14px 30px rgba(18, 24, 28, 0.14);
  font-weight: 850;
}

.benefit-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.benefit-grid p,
.opportunity-card p {
  color: var(--muted);
  line-height: 1.6;
}

.seller-shell > .btn {
  position: relative;
  z-index: 1;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.investment-section {
  padding: 88px 0 104px;
}

.investment-section .section-heading {
  max-width: 900px;
}

.investment-section .section-heading p:not(.eyebrow) {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  color: #526575;
  font-size: clamp(1.08rem, 1.35vw, 1.22rem);
  line-height: 1.62;
}

.opportunity-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.opportunity-card {
  position: relative;
  overflow: hidden;
  transform-origin: center;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.opportunity-card.raised {
  transform: translateY(26px);
}

.opportunity-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.42) 45%, transparent 58%);
  content: "";
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 220ms ease,
    transform 520ms ease;
}

.opportunity-card:hover,
.opportunity-card:focus-within {
  border-color: rgba(29, 127, 132, 0.34);
  box-shadow: 0 24px 58px rgba(31, 52, 61, 0.16);
  transform: translateY(-8px);
}

.opportunity-card.raised:hover,
.opportunity-card.raised:focus-within {
  transform: translateY(14px);
}

.opportunity-card:hover::after,
.opportunity-card:focus-within::after {
  opacity: 1;
  transform: translateX(120%);
}

.opportunity-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  transition: transform 700ms ease;
}

.opportunity-card:hover img,
.opportunity-card:focus-within img {
  transform: scale(1.045);
}

.opportunity-card:nth-child(1) img {
  object-position: 50% 50%;
}

.opportunity-card:nth-child(2) img {
  object-position: 50% 48%;
}

.opportunity-card:nth-child(3) img {
  object-position: 50% 52%;
}

.opportunity-card div {
  padding: 20px;
}

/* ── Featured Properties Slider ── */
.featured-section {
  padding: 48px 0 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background:
    radial-gradient(ellipse 600px 300px at 50% 40%, rgba(29, 127, 132, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 400px 200px at 50% 70%, rgba(217, 164, 65, 0.04) 0%, transparent 70%);
}
.featured-section::before,
.featured-section::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 60%;
  max-width: 500px;
}
.featured-section::before {
  top: 0;
  background: linear-gradient(90deg, transparent, var(--teal), var(--gold), var(--teal), transparent);
}
.featured-section::after {
  bottom: 0;
  background: linear-gradient(90deg, transparent, var(--gold), var(--teal), var(--gold), transparent);
}
.featured-section .section-heading {
  margin-bottom: 28px;
  width: 100%;
  max-width: 600px;
}
.featured-section .section-heading h2 {
  font-size: 1.3rem;
}

.featured-slider-wrap {
  position: relative;
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(29, 127, 132, 0.15),
    0 0 30px rgba(29, 127, 132, 0.08),
    0 22px 55px rgba(31, 52, 61, 0.12);
  transition: box-shadow 0.4s ease;
}
.featured-slider-wrap:hover {
  box-shadow:
    0 0 0 1px rgba(29, 127, 132, 0.3),
    0 0 40px rgba(29, 127, 132, 0.12),
    0 0 80px rgba(217, 164, 65, 0.06),
    0 24px 60px rgba(31, 52, 61, 0.16);
}
.featured-slider {
  display: flex;
  transition: transform 0.5s ease;
}
.featured-slide {
  min-width: 100%;
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease;
}
.featured-slide:hover {
  box-shadow: 0 16px 40px rgba(31, 52, 61, 0.12);
}
.featured-slide-img {
  position: relative;
  overflow: hidden;
}
.featured-slide-img img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}
.featured-slide:hover .featured-slide-img img {
  transform: scale(1.04);
}
.featured-slide-price {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-family: "Aptos Display", Aptos, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}
.featured-slide-body {
  padding: 16px 22px 22px;
}
.featured-slide-body h3 {
  font-family: "Aptos Display", Aptos, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.featured-slide-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.featured-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--charcoal);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.2s, transform 0.2s;
}
.featured-arrow:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.08);
}
.featured-arrow.prev { left: 12px; }
.featured-arrow.next { right: 12px; }

.featured-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.featured-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.featured-dot.active {
  background: var(--teal);
  transform: scale(1.3);
}
.featured-dot:hover {
  background: var(--teal);
}

.featured-cta {
  text-align: center;
  margin-top: 28px;
}
.featured-cta .btn.primary {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 999px;
  font-family: Aptos, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s;
}
.featured-cta .btn.primary:hover {
  background: var(--teal-dark);
}

.global-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  margin-top: 58px;
  margin-bottom: 58px;
  padding: 54px;
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 24, 28, 0.94), rgba(23, 70, 75, 0.94)),
    var(--charcoal);
  box-shadow: 0 34px 90px rgba(18, 24, 28, 0.22);
  overflow: hidden;
}

.global-section::before {
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 14px;
  content: "";
  pointer-events: none;
}

.global-section::after {
  position: absolute;
  right: -16%;
  bottom: -34%;
  z-index: -2;
  width: 52%;
  aspect-ratio: 1;
  border: 1px solid rgba(217, 164, 65, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.18), transparent 62%);
  content: "";
  pointer-events: none;
}

.global-copy {
  min-width: 0;
}

.global-copy .eyebrow {
  color: #f3ce78;
}

.global-copy h2 {
  color: var(--white);
  font-size: clamp(1.85rem, 3vw, 3.3rem);
}

.global-copy p {
  color: #c7dde0;
}

.global-luxury-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.global-luxury-stats div {
  min-width: 0;
  padding: 16px 14px;
  border: 1px solid rgba(217, 164, 65, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.global-luxury-stats strong,
.global-luxury-stats span {
  display: block;
}

.global-luxury-stats strong {
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.1;
}

.global-luxury-stats span {
  margin-top: 5px;
  color: #a7c9cc;
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.global-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.34);
  transition:
    transform 700ms ease,
    box-shadow 260ms ease;
}

.global-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.42) 45%, transparent 58%);
  content: "";
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 220ms ease,
    transform 600ms ease;
}

.global-media:hover,
.global-media:focus-within {
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.42);
  transform: translateY(-6px) scale(1.012);
}

.global-media:hover::after,
.global-media:focus-within::after {
  opacity: 1;
  transform: translateX(120%);
}

.global-media img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 760ms ease;
}

.global-image-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: min(310px, calc(100% - 36px));
  padding: 14px 16px;
  border: 1px solid rgba(217, 164, 65, 0.42);
  border-radius: 8px;
  color: var(--white);
  background: rgba(18, 24, 28, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.global-image-badge span,
.global-image-badge strong {
  display: block;
}

.global-image-badge span {
  color: #f3ce78;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.global-image-badge strong {
  margin-top: 4px;
  font-size: 1.02rem;
  line-height: 1.25;
}

.global-media:hover img,
.global-media:focus-within img {
  transform: scale(1.018);
}

.global-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.global-points span {
  padding: 10px 13px;
  border: 1px solid rgba(217, 164, 65, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #eaf7f8;
  font-weight: 700;
  font-size: 0.88rem;
}

.global-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.global-actions:has(.btn:only-child) {
  gap: 0;
}

.property-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: 70px 0 54px;
}

.property-hero-copy {
  min-width: 0;
}

.property-hero-copy .eyebrow {
  color: var(--teal);
}

.property-hero-copy h1 {
  max-width: 660px;
  font-size: clamp(2.15rem, 3.7vw, 3.25rem);
  line-height: 1.08;
}

.property-hero-copy > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.property-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
  max-width: 560px;
}

.property-meta div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
}

.property-meta dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.property-meta dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 850;
}

.property-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 18px;
  background: var(--charcoal);
  box-shadow: 0 34px 90px rgba(31, 52, 61, 0.18);
  transition:
    box-shadow 260ms ease,
    transform 700ms ease;
}

.property-hero-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.42) 45%, transparent 58%);
  content: "";
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 220ms ease,
    transform 600ms ease;
}

.property-hero-media:hover,
.property-hero-media:focus-within {
  box-shadow: 0 40px 98px rgba(31, 52, 61, 0.24);
  transform: translateY(-6px) scale(1.01);
}

.property-hero-media:hover::after,
.property-hero-media:focus-within::after {
  opacity: 1;
  transform: translateX(120%);
}

.property-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 760ms ease;
}

.property-hero-media:hover img,
.property-hero-media:focus-within img {
  transform: scale(1.02);
}

.property-hero-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: min(330px, calc(100% - 44px));
  padding: 16px 18px;
  border: 1px solid rgba(217, 164, 65, 0.42);
  border-radius: 10px;
  color: var(--white);
  background: rgba(18, 24, 28, 0.82);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

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

.property-hero-badge span {
  color: #f3ce78;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.property-hero-badge strong {
  margin-top: 4px;
  font-size: 1.08rem;
}

.property-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  padding-bottom: 74px;
}

.property-gallery-item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  height: 100%;
  margin: 0;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(31, 52, 61, 0.12);
  transition:
    box-shadow 260ms ease,
    transform 700ms ease;
}

.property-gallery-item::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.42) 45%, transparent 58%);
  content: "";
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 220ms ease,
    transform 600ms ease;
}

.property-gallery-item:hover,
.property-gallery-item:focus-within {
  box-shadow: 0 28px 72px rgba(31, 52, 61, 0.2);
  transform: translateY(-5px) scale(1.01);
}

.property-gallery-item:hover::after,
.property-gallery-item:focus-within::after {
  opacity: 1;
  transform: translateX(120%);
}

.property-gallery img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 760ms ease;
}

.property-gallery-item:hover img,
.property-gallery-item:focus-within img {
  transform: scale(1.025);
}

.property-gallery-stack {
  display: grid;
  gap: 18px;
}

.property-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 34px;
  align-items: start;
  padding-bottom: 76px;
}

.property-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 52px rgba(31, 52, 61, 0.1);
}

.property-card h2,
.property-card h3 {
  margin-bottom: 14px;
}

.property-card p {
  color: var(--muted);
  line-height: 1.72;
}

.property-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.property-feature-list li {
  padding: 13px 14px;
  border: 1px solid rgba(29, 127, 132, 0.18);
  border-radius: 10px;
  background: rgba(223, 243, 244, 0.42);
  color: var(--ink);
  font-weight: 750;
}

.property-sidebar {
  display: grid;
  gap: 18px;
}

.property-cta-card {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(18, 24, 28, 0.98), rgba(29, 127, 132, 0.92)),
    var(--charcoal);
}

.property-cta-card p {
  color: #d7ecee;
}

.property-cta-card .btn {
  width: 100%;
  margin-top: 14px;
}

.property-cta-card .btn + .btn {
  margin-top: 12px;
}

.calculator-promo {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(220, 230, 236, 0.95);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(223, 243, 244, 0.88), rgba(255, 255, 255, 0.96)),
    var(--white);
  box-shadow: var(--shadow);
}

.calculator-promo-copy h2 {
  font-size: clamp(1.85rem, 3vw, 3.3rem);
}

.calculator-promo-copy p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.calculator-preview {
  padding: 26px;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(145deg, var(--charcoal), #174e54);
  box-shadow: 0 22px 50px rgba(18, 24, 28, 0.18);
}

.preview-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.preview-topline span {
  color: #bddfe1;
  font-weight: 750;
}

.preview-topline strong {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.preview-bars {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.preview-bars span {
  display: block;
  width: var(--bar-width);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #f2d891);
}

.calculator-preview dl,
.calculator-results dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.calculator-preview div,
.calculator-results dl div {
  min-width: 0;
}

.calculator-preview dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.calculator-preview dt {
  color: #bddfe1;
}

.calculator-preview dd,
.calculator-results dd {
  margin: 0;
  font-weight: 850;
}

.calculator-hero {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.42fr);
  gap: 44px;
  align-items: end;
  padding: 76px 0 54px;
}

.calculator-hero h1 {
  max-width: 900px;
}

.calculator-note {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(31, 52, 61, 0.08);
}

.calculator-note strong,
.calculator-note span {
  display: block;
}

.calculator-note span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.calculator-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: start;
  padding-bottom: 88px;
}

.calculator-suite {
  display: grid;
  gap: 34px;
  padding: 0 0 92px;
}

.calculator-suite .section-heading {
  width: min(920px, calc(100% - 32px));
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.suite-notice {
  width: min(960px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.calculator-tool {
  --tool-accent: var(--teal);
  --tool-deep: #12343b;
  --tool-soft: rgba(29, 127, 132, 0.1);
  --tool-line: rgba(29, 127, 132, 0.24);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: start;
  padding: 30px;
  border: 1px solid var(--tool-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 12%, var(--tool-soft), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(247, 251, 252, 0.9)),
    var(--white);
  box-shadow: 0 22px 58px rgba(31, 52, 61, 0.11);
}

.calculator-tool::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 7px;
  background: linear-gradient(90deg, var(--tool-accent), rgba(255, 255, 255, 0));
  content: "";
}

.calculator-tool:nth-of-type(1) {
  --tool-accent: #d9a441;
  --tool-deep: #4f3a12;
  --tool-soft: rgba(217, 164, 65, 0.18);
  --tool-line: rgba(217, 164, 65, 0.34);
}

.calculator-tool:nth-of-type(2) {
  --tool-accent: #1d7f84;
  --tool-deep: #0f3f45;
  --tool-soft: rgba(29, 127, 132, 0.18);
  --tool-line: rgba(29, 127, 132, 0.32);
}

.calculator-tool:nth-of-type(3) {
  --tool-accent: #3e7fb3;
  --tool-deep: #183d5d;
  --tool-soft: rgba(62, 127, 179, 0.16);
  --tool-line: rgba(62, 127, 179, 0.3);
}

.calculator-tool:nth-of-type(1)::after,
.calculator-tool:nth-of-type(2)::after,
.calculator-tool:nth-of-type(3)::after {
  position: absolute;
  inset: 18px 18px auto auto;
  z-index: -1;
  width: 180px;
  height: 180px;
  border: 1px solid var(--tool-line);
  border-radius: 999px;
  content: "";
  opacity: 0.42;
}

.calculator-tool:nth-of-type(1) {
  background:
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(217, 164, 65, 0.08) 34px 35px),
    radial-gradient(circle at 88% 12%, var(--tool-soft), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 239, 0.92)),
    var(--white);
}

.calculator-tool:nth-of-type(2) {
  background:
    linear-gradient(rgba(29, 127, 132, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 127, 132, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 88% 12%, var(--tool-soft), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 250, 0.92)),
    var(--white);
  background-size: auto, 34px 34px, auto, auto, auto;
}

.calculator-tool:nth-of-type(3) {
  background:
    radial-gradient(circle at 86% 16%, var(--tool-soft), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 252, 0.94)),
    var(--white);
}

.calculator-tool-copy {
  grid-column: 1 / -1;
  max-width: 820px;
}

.calculator-tool-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--tool-deep);
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
  line-height: 1.15;
}

.calculator-tool-copy .eyebrow::before {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--tool-line);
  border-radius: 999px;
  color: var(--tool-deep);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(31, 52, 61, 0.1);
  font-size: 0.88rem;
  content: "$";
}

.calculator-tool:nth-of-type(2) .calculator-tool-copy .eyebrow::before {
  content: "%";
}

.calculator-tool:nth-of-type(3) .calculator-tool-copy .eyebrow::before {
  content: "$";
}

.calculator-tool-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

.calculator-tool-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.calculator-form.compact,
.calculator-results.compact {
  border-color: var(--tool-line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    var(--white);
  box-shadow: 0 16px 40px rgba(31, 52, 61, 0.09);
}

.calculator-results.compact {
  position: static;
  border-top: 5px solid var(--tool-accent);
}

.calculator-results.compact .eyebrow {
  color: var(--tool-deep);
}

.calculator-results.compact h2 {
  color: var(--tool-accent);
  text-shadow: 0 10px 28px rgba(31, 52, 61, 0.08);
}

.calculator-results.compact dl div {
  border-color: rgba(31, 52, 61, 0.1);
}

.calculator-tool:nth-of-type(1) .estimate-notice {
  border-color: rgba(217, 164, 65, 0.42);
  background: #fff8e8;
}

.calculator-tool:nth-of-type(2) .estimate-notice {
  border-color: rgba(29, 127, 132, 0.28);
  color: #17464a;
  background: #eefafa;
}

.calculator-tool:nth-of-type(3) .estimate-notice {
  border-color: rgba(62, 127, 179, 0.28);
  color: #183d5d;
  background: #f0f7fc;
}

.estimate-notice {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(217, 164, 65, 0.32);
  border-radius: 8px;
  color: #4e3d1a;
  background: #fff8e8;
  font-size: 0.92rem;
  line-height: 1.5;
}

.share-result-btn {
  width: 100%;
  margin-top: 4px;
}

.share-status {
  min-height: 1.35em;
  margin: 8px 0 0;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 750;
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: 44px;
  align-items: end;
  padding: 76px 0 34px;
}

.legal-hero h1 {
  max-width: 850px;
}

.legal-summary {
  padding: 22px;
  border: 1px solid rgba(220, 230, 236, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(223, 243, 244, 0.92), rgba(255, 255, 255, 0.88)),
    var(--white);
  box-shadow: var(--shadow);
}

.legal-summary strong,
.legal-summary span {
  display: block;
}

.legal-summary strong {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.legal-summary span {
  color: var(--muted);
  line-height: 1.55;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  padding: 24px 0 76px;
}

.legal-index {
  position: sticky;
  top: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(31, 52, 61, 0.08);
}

.legal-index p {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.legal-index a {
  display: block;
  padding: 9px 0;
  border-top: 1px solid rgba(220, 230, 236, 0.82);
  color: #2e3b44;
  font-weight: 740;
}

.legal-card {
  padding: 34px;
  border: 1px solid rgba(220, 230, 236, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.policy-section {
  padding: 28px 0;
  border-top: 1px solid rgba(220, 230, 236, 0.88);
}

.policy-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.policy-section h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.policy-section ul {
  margin: 0;
  padding-left: 22px;
}

.policy-section li + li {
  margin-top: 8px;
}

.legal-callout {
  margin: 26px 0 0;
  padding: 20px;
  border-left: 5px solid var(--gold);
  border-radius: 14px;
  color: #2e3b44;
  background: #fff7e3;
}

.legal-contact {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 20px;
  border-radius: 16px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(29, 127, 132, 0.92), rgba(18, 24, 28, 0.96)),
    var(--charcoal);
}

.legal-contact a {
  color: var(--white);
  font-weight: 800;
}

.contact-card .accessibility-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 12px;
}

.contact-card .accessibility-contact-item {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 5px 10px;
  border: 1px solid rgba(29, 127, 132, 0.18);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(232, 249, 249, 0.92);
  font-weight: 850;
  text-decoration: none;
}

.contact-card a.accessibility-contact-item:hover,
.contact-card a.accessibility-contact-item:focus-visible {
  color: var(--charcoal);
  border-color: rgba(217, 164, 65, 0.58);
  background: #fff7e3;
}

.calculator-form,
.calculator-results {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

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

.calculator-form label {
  display: grid;
  gap: 8px;
  color: #32424c;
  font-weight: 750;
}

.calculator-results {
  position: sticky;
  top: 120px;
  padding: 28px;
}

.calculator-results h2 {
  margin-bottom: 12px;
  color: var(--teal);
}

.calculator-results p {
  color: var(--muted);
  line-height: 1.6;
}

.calculator-results dl {
  margin: 24px 0;
}

.calculator-results dl div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.calculator-results dt {
  margin-bottom: 4px;
  color: var(--muted);
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .opportunity-card.raised[data-reveal] {
  transform: translateY(48px);
}

.motion-ready .opportunity-card.raised[data-reveal].is-visible {
  transform: translateY(26px);
}

.motion-ready .opportunity-card.raised[data-reveal].is-visible:hover,
.motion-ready .opportunity-card.raised[data-reveal].is-visible:focus-within {
  transform: translateY(14px);
}

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

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

  .motion-ready [data-reveal],
  .motion-ready [data-reveal].is-visible,
  .motion-ready .opportunity-card.raised[data-reveal],
  .motion-ready .opportunity-card.raised[data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }

  .hero-media::after,
  .global-media::after,
  .image-stack::after,
  .opportunity-card::after {
    display: none;
  }

}

.lending-strip {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, #12181c, #17464b);
}

.lending-strip .eyebrow,
.lending-strip p {
  color: #bddfe1;
}

.lending-strip h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.55rem);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  padding: 94px 0;
}

address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.75;
}

address strong {
  display: block;
  color: var(--ink);
}

address a {
  color: var(--teal);
  font-weight: 800;
}

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

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #32424c;
  font-weight: 750;
}

.lead-form label:nth-last-of-type(2),
.lead-form .lead-consent,
.lead-form button {
  grid-column: 1 / -1;
}

.lead-form .lead-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 127, 132, 0.18);
  border-radius: 10px;
  background: rgba(238, 250, 250, 0.72);
  color: #506472;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.55;
}

.lead-form .lead-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--teal);
}

.lead-form .lead-consent a {
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}


input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdfe;
  font: inherit;
}

textarea {
  resize: vertical;
}

.lead-form button {
  border: 0;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-brand {
  align-self: center;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 12px;
  row-gap: 8px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: min(100%, 360px);
  margin: 0 auto;
  text-align: left;
}

.footer-brand .brand-mark {
  width: 66px;
  height: 66px;
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0 53%, rgba(255, 255, 255, 0.88) 56%, transparent 58%),
    conic-gradient(from 145deg, var(--gold), var(--teal), #092f33, var(--teal), var(--gold));
}

.footer-brand strong {
  color: var(--teal);
}

.footer-compliance {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 10px 0 0;
}

.footer-compliance img {
  display: block;
  width: min(96px, 24vw);
  height: auto;
  opacity: 0.72;
  filter: drop-shadow(0 12px 22px rgba(9, 47, 51, 0.08));
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 22px;
  width: 100%;
  color: #2e3b44;
  font-weight: 700;
  text-align: center;
}
.site-footer > nav:not(.social-links) > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: inherit;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-footer > nav:not(.social-links) > a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-footer > nav:not(.social-links) > a:hover,
.site-footer > nav:not(.social-links) > a:focus-visible {
  color: var(--teal);
  transform: translateY(-1px);
}

.site-footer > nav:not(.social-links) > a:hover::after,
.site-footer > nav:not(.social-links) > a:focus-visible::after {
  transform: scaleX(1);
}

.site-footer .legal-links {
  justify-content: center;
  gap: 14px 18px;
  font-size: 0.9rem;
  font-weight: 650;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 0;
}
.social-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(29, 127, 132, 0.2);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--teal);
  background: rgba(223, 243, 244, 0.62);
  font-size: 0.9rem;
  font-weight: 850;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(217, 164, 65, 0.55);
  color: var(--charcoal);
  background: #fff7e3;
  transform: translateY(-1px);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.copyright {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.32em;
  width: 100%;
  color: #2e3b44;
  font-weight: 850;
  line-height: 1.45;
  text-align: center;
}

.cookie-notice {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: 92px;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(220, 230, 236, 0.92);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(239, 250, 250, 0.94)),
    var(--white);
  box-shadow: 0 24px 60px rgba(18, 24, 28, 0.18);
}

.cookie-notice.is-dismissed {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.cookie-notice-copy strong {
  display: block;
  margin-bottom: 4px;
  color: var(--charcoal);
  font-size: 1rem;
}

.cookie-notice-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.cookie-notice-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-notice-actions a,
.cookie-notice-actions button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  font: inherit;
  font-weight: 850;
}

.cookie-notice-actions a {
  border: 1px solid rgba(29, 127, 132, 0.2);
  color: var(--teal);
  background: rgba(223, 243, 244, 0.72);
}

.cookie-notice-actions button {
  border: 0;
  color: var(--white);
  background: var(--teal);
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(29, 127, 132, 0.22);
}

@media (max-width: 1120px) {
  .site-header {
    width: calc(100% - 24px);
  }

  
  .header-actions > .phone-link {
    display: none;
  }

.main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 48px;
    padding: 13px 12px;
    font-size: 1.08rem;
  }

  
  .main-nav .nav-phone-link {
    display: inline-flex;
    width: 100%;
    min-height: 52px;
    margin-top: 10px;
    color: var(--white);
    background:
      linear-gradient(135deg, var(--charcoal), #20313a),
      var(--charcoal);
    box-shadow: 0 14px 30px rgba(18, 24, 28, 0.18);
    font-size: 1.02rem;
    letter-spacing: 0.01em;
  }

  .main-nav .nav-phone-link:hover,
  .main-nav .nav-phone-link:focus-visible {
    color: var(--white);
    background:
      linear-gradient(135deg, var(--charcoal), var(--teal)),
      var(--charcoal);
  }

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

  .nav-dropdown {
    display: grid;
    width: 100%;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown .nav-parent {
    position: relative;
    justify-content: center;
    gap: 0;
    width: 100%;
    text-align: center;
  }

  .nav-dropdown .nav-parent span {
    position: absolute;
    left: calc(50% + 92px);
  }

  .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    margin: 4px 0 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
  }

  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    display: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
  }

  .nav-dropdown.is-open .nav-submenu,
  .nav-dropdown.is-open:hover .nav-submenu,
  .nav-dropdown.is-open:focus-within .nav-submenu {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu a {
    justify-content: center;
    min-height: 44px;
    width: 100%;
    color: var(--teal);
    background: rgba(223, 243, 244, 0.48);
    font-size: 0.98rem;
  }

  .menu-button {
    display: block;
  }

  .hero,
  .intro-grid,
  .split-section,
  .global-section,
  .lending-strip,
  .calculator-promo,
  .calculator-hero,
  .calculator-page-grid,
  .legal-hero,
  .legal-layout,
  .contact-section,
  .property-hero,
  .property-content-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .welcome-panel {
    gap: 26px;
    padding: 34px 28px;
    text-align: center;
  }

  .global-section {
    padding: 42px 32px;
  }

  .global-luxury-stats {
    grid-template-columns: 1fr;
  }

  .welcome-panel::before {
    display: none;
  }

  .welcome-heading h2,
  .welcome-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .welcome-cues {
    justify-content: center;
  }

  .hero-media {
    min-height: 560px;
  }

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

  .buy-section {
    padding: 34px 28px;
  }

  .opportunity-card.raised {
    transform: none;
  }

  .seller-shell {
    padding: 38px 28px;
  }

  .lending-strip {
    align-items: start;
  }

  .calculator-tool {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .calculator-suite {
    padding-bottom: 58px;
  }

  .legal-index {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .site-footer nav,
  .social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 0;
}
.social-links a {
    min-width: 46px;
  }

  .calculator-tool {
    gap: 18px;
    padding: 18px;
    border-radius: 14px;
  }

  .calculator-suite {
    gap: 24px;
  }

  .language-switcher {
    padding: 3px;
  }

  .language-current,
  .language-menu button {
    min-width: 31px;
    min-height: 30px;
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.05rem);
    line-height: 1.08;
  }

  .section-band,
  .intro-grid,
  .seller-section,
  .global-section,
  .lending-strip,
  .calculator-promo,
  .calculator-hero,
  .calculator-page-grid,
  .legal-hero,
  .legal-layout,
  .contact-section,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    gap: 32px;
  }

  .welcome-panel {
    margin-top: 24px;
    padding: 28px 18px;
    border-radius: 18px;
  }

  .welcome-heading h2 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .welcome-cues {
    display: grid;
    grid-template-columns: 1fr;
  }

  .welcome-cues span {
    justify-content: center;
    width: 100%;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-service-nav {
    align-items: flex-start;
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 14px;
  }

  .hero-seo-links,
  .hero-seo-links a {
    width: 100%;
  }

  .hero-seo-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-seo-links a {
    justify-content: center;
  }

  .trust-strip,
  .benefit-grid,
  .opportunity-row,
  .buyer-card-grid,
  .calculator-form,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .trust-strip div + div {
    border-top: 1px solid rgba(29, 127, 132, 0.14);
    border-left: 0;
  }

  .buy-section {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .buy-section::after,
  .buy-kicker {
    display: none;
  }

  .buy-media {
    border-width: 5px;
    border-radius: 18px;
  }


  .hero-media {
    min-height: 520px;
  }

  .hero-main {
    width: 88%;
  }

  .hero-media::after {
    width: 88%;
  }

  .floating-card {
    width: 82%;
  }

  .card-top {
    top: 24px;
  }

  .card-bottom {
    right: 0;
    bottom: 30px;
  }

  .intro-grid,
  .split-section,
  .seller-section,
  .investment-section,
  .global-section,
  .calculator-hero,
  .calculator-page-grid,
  .legal-hero,
  .legal-layout,
  .contact-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .legal-card {
    padding: 24px 18px;
  }

  .calculator-promo {
    padding: 28px 18px;
  }

  .global-section {
    padding: 34px 18px;
    border-radius: 14px;
  }

  .global-section::before {
    inset: 10px;
  }

  .global-image-badge {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }

  .preview-topline {
    align-items: start;
    flex-direction: column;
  }

  .calculator-results {
    position: static;
  }

  .mini-panel {
    position: static;
    max-width: none;
    margin-top: 12px;
    border-radius: 8px;
  }

  .seller-shell {
    padding: 30px 18px;
    border-radius: 14px;
  }

  .seller-proof {
    margin-bottom: 22px;
  }

  .seller-proof span {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
  }

  .lead-form label,
  .lead-form .lead-consent,
  .lead-form button {
    grid-column: auto;
  }

  .cookie-notice {
    right: max(14px, env(safe-area-inset-right));
    bottom: calc(78px + env(safe-area-inset-bottom));
    left: max(14px, env(safe-area-inset-left));
    max-width: min(560px, calc(100vw - 28px));
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
    border-radius: 18px;
  }

  .cookie-notice-copy strong {
    margin-bottom: 3px;
    font-size: 0.98rem;
  }

  .cookie-notice-copy p {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .cookie-notice-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }

  .cookie-notice-actions a,
  .cookie-notice-actions button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .cookie-notice {
    right: max(10px, env(safe-area-inset-right));
    bottom: calc(74px + env(safe-area-inset-bottom));
    left: max(10px, env(safe-area-inset-left));
    max-width: calc(100vw - 20px);
    max-height: min(70vh, 420px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 13px;
    border-radius: 16px;
  }

  .cookie-notice-copy p {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .cookie-notice-actions {
    grid-template-columns: 1fr;
  }

  .cookie-notice-actions a,
  .cookie-notice-actions button {
    min-height: 42px;
    width: 100%;
    font-size: 0.86rem;
  }
}

@media (max-width: 640px) {
  .property-hero,
  .property-content-grid,
  .property-gallery {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 1180px);
  }

  .property-hero {
    gap: 22px;
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .property-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.82rem, 8.8vw, 2.48rem);
    line-height: 1.12;
  }

  .property-hero-copy > p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .property-meta,
  .property-feature-list {
    grid-template-columns: 1fr;
  }

  .property-meta {
    gap: 10px;
    margin: 22px 0;
  }

  .property-meta div {
    padding: 14px 16px;
  }

  .property-meta dd {
    font-size: 1.08rem;
  }

  .property-hero .global-actions,
  .property-hero .global-actions .btn,
  .property-cta-card .btn {
    width: 100%;
  }

  .property-hero-media,
  .property-hero-media img {
    min-height: 300px;
  }

  .property-hero-badge {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    padding: 13px 14px;
  }

  .property-gallery {
    gap: 14px;
    padding-bottom: 44px;
  }

  .property-gallery-stack {
    gap: 14px;
  }

  .property-content-grid {
    gap: 18px;
    padding-bottom: 54px;
  }

  .property-card {
    padding: 22px;
  }

  .property-feature-list li {
    padding: 12px 13px;
  }
}




.blog-page {
  display: grid;
  gap: 48px;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 38px;
  align-items: stretch;
  padding: clamp(54px, 7vw, 86px);
  overflow: hidden;
}

.blog-hero::before {
  position: absolute;
  inset: auto -8% -28% auto;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 50%;
  content: "";
}

.blog-hero-copy,
.blog-feature-card,
.blog-category-card,
.blog-article-card,
.blog-cta {
  position: relative;
  z-index: 1;
}

.blog-hero h1 {
  max-width: 13.5ch;
  font-size: clamp(2.25rem, 4.1vw, 3.65rem);
  line-height: 1;
}

.blog-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.75;
}

.blog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.blog-hero-actions a,
.blog-category-card a,
.blog-article-card a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(29, 127, 132, 0.18);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.8);
  font-weight: 850;
}

.blog-feature-card {
  display: grid;
  align-content: end;
  min-height: 420px;
  border: 1px solid rgba(29, 127, 132, 0.2);
  border-radius: 24px;
  padding: 30px;
  color: #e9fbfd;
  background:
    linear-gradient(150deg, rgba(9, 23, 29, 0.94), rgba(29, 127, 132, 0.88)),
    url("/sodo-original-real-estate-hero.webp?v=20260702-webp-binary-restore") center / cover;
  box-shadow: 0 30px 80px rgba(9, 47, 51, 0.18);
}

.blog-feature-card span,
.blog-article-card span,
.blog-category-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-feature-card h2 {
  max-width: 12ch;
  margin: 12px 0;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1;
}

.blog-feature-card p {
  color: rgba(235, 252, 253, 0.82);
}

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

.blog-category-card {
  display: grid;
  min-height: 360px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(22, 55, 62, 0.08);
}

.blog-category-card h2 {
  margin: 14px 0 10px;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1.05;
}

.blog-category-card p {
  color: var(--muted);
  line-height: 1.65;
}

.blog-category-card.market { border-top: 5px solid #d9a441; }
.blog-category-card.seller { border-top: 5px solid #1d7f84; }
.blog-category-card.invest { border-top: 5px solid #2e7d45; }
.blog-category-card.global { border-top: 5px solid #0d5d88; }

.blog-featured {
  padding: clamp(34px, 5vw, 58px);
}

.blog-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.blog-article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(20, 56, 64, 0.1);
}

.blog-article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-article-card div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.blog-article-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  line-height: 1.18;
}

.blog-article-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.blog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(34px, 5vw, 58px);
  color: #eafcfd;
  background: linear-gradient(135deg, #0c1a1f, #0f5559 65%, #1d7f84);
}

.blog-cta h2 {
  max-width: 20ch;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.04;
}

.blog-cta p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(235, 252, 253, 0.82);
}

@media (max-width: 980px) {
  .blog-hero,
  .blog-article-grid {
    grid-template-columns: 1fr;
  }

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

  .blog-feature-card {
    min-height: 340px;
  }

  .blog-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .blog-page {
    gap: 28px;
  }

  .blog-hero,
  .blog-featured,
  .blog-cta {
    padding: 24px;
  }

  .blog-hero h1 {
    max-width: 13.5ch;
    font-size: clamp(2.25rem, 4.1vw, 3.65rem);
    line-height: 1;
  }
}

.blog-category-image {
  position: relative;
  overflow: hidden;
  margin: 0 0 18px;
  border-radius: 16px;
  background: rgba(223, 243, 244, 0.62);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.blog-category-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(9, 23, 29, 0.28));
  content: "";
  pointer-events: none;
}

.blog-category-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
}

.blog-category-card:hover .blog-category-image img,
.blog-category-card:focus-within .blog-category-image img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.055);
}
#google_translate_element,
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
body > .skiptranslate {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

html.translated-ltr body,
html.translated-rtl body,
body {
  top: 0 !important;
}

.language-switcher.notranslate,
.language-switcher .notranslate {
  translate: no;
}
/* Prevent long blank tails on short pages that use the shared footer. */
.blog-page,
.short-page {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.blog-page::before,
.blog-page::after,
.short-page::before,
.short-page::after {
  max-height: 0;
}

.blog-page .blog-hero,
.short-page .blog-hero {
  overflow: hidden;
}

.blog-page .blog-hero::before,
.blog-page .blog-hero::after {
  display: none;
}

.blog-page + .site-footer,
.short-page + .site-footer,
.site-footer {
  min-height: 0 !important;
  height: auto !important;
  align-content: start !important;
  margin-bottom: 0 !important;
}

.blog-page + .site-footer,
.short-page + .site-footer {
  padding-top: 24px !important;
  padding-bottom: 28px !important;
}

.blog-page + .site-footer::before,
.blog-page + .site-footer::after,
.short-page + .site-footer::before,
.short-page + .site-footer::after {
  display: none !important;
  content: none !important;
}
.category-page .category-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  line-height: 1;
}

.category-page .blog-feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.category-page .blog-feature-card > div {
  position: relative;
  z-index: 1;
}

.category-api-note {
  max-width: 780px;
  color: var(--muted);
  line-height: 1.7;
}

.blog-back-link {
  border-color: rgba(217, 164, 65, 0.32) !important;
  color: #6f5414 !important;
}
.sodo-tv-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 0.88fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(42px, 6vw, 74px) 0;
}

.sodo-tv-player {
  position: relative;
  display: block;
  min-height: clamp(330px, 38vw, 470px);
  overflow: hidden;
  border-radius: 24px;
  color: #ffffff;
  background: #0d1a1e;
  box-shadow: 0 30px 80px rgba(8, 34, 39, 0.18);
  isolation: isolate;
}

.sodo-tv-player::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(8, 22, 27, 0.78), rgba(28, 127, 132, 0.42) 54%, rgba(217, 164, 65, 0.26));
}

.sodo-tv-player::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  pointer-events: none;
}

.sodo-tv-player img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 700ms ease, filter 700ms ease;
}

.sodo-tv-player:hover img,
.sodo-tv-player:focus-visible img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.sodo-tv-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(145deg, #f5d98f, #d9a441 56%, #f8e3a7);
  box-shadow: 0 20px 52px rgba(6, 31, 35, 0.36), inset 0 0 0 2px rgba(255, 255, 255, 0.38);
  transform: translate(-50%, -50%);
}

.sodo-tv-play::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(217, 164, 65, 0.45);
  border-radius: inherit;
  animation: sodo-tv-wave 3.4s ease-out infinite;
}

.sodo-tv-play::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid #0f2227;
}

.sodo-tv-caption {
  position: absolute;
  left: clamp(26px, 4vw, 46px);
  right: clamp(26px, 4vw, 46px);
  bottom: clamp(28px, 4vw, 46px);
  z-index: 4;
  max-width: 520px;
}

.sodo-tv-caption small {
  display: inline-block;
  color: #f3cf75;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sodo-tv-caption strong {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 3.05rem);
  line-height: 1.02;
}

.sodo-tv-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.sodo-tv-copy h2 {
  max-width: 650px;
  font-size: clamp(2.15rem, 4.2vw, 4.25rem);
  line-height: 1.03;
}

.sodo-tv-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.sodo-tv-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 8px;
}

.sodo-tv-points span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid rgba(29, 127, 132, 0.18);
  border-radius: 999px;
  color: #0b6f73;
  background: rgba(255, 255, 255, 0.74);
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(10, 46, 52, 0.07);
}

@keyframes sodo-tv-wave {
  0% {
    opacity: 0.75;
    transform: scale(0.9);
  }
  70%, 100% {
    opacity: 0;
    transform: scale(1.38);
  }
}

@media (max-width: 1120px) {
  .sodo-tv-section {
    grid-template-columns: 1fr;
  }

  .sodo-tv-player {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .sodo-tv-section {
    padding: 38px 0 52px;
    gap: 24px;
  }

  .sodo-tv-player {
    min-height: 300px;
    border-radius: 20px;
  }

  .sodo-tv-player::after {
    inset: 12px;
    border-radius: 16px;
  }

  .sodo-tv-play {
    width: 68px;
    height: 68px;
  }

  .sodo-tv-play::after {
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 18px;
  }

  .sodo-tv-copy h2 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sodo-tv-player img,
  .sodo-tv-play::before {
    animation: none;
    transition: none;
  }
}
.call-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: auto;
  z-index: 9997;
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(217, 164, 65, 0.38);
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, #12181c, #1d7f84);
  box-shadow: 0 16px 34px rgba(18, 24, 28, 0.18);
  text-decoration: none;
  isolation: isolate;
  transform-origin: center;
  animation: call-widget-ring 5.6s ease-in-out infinite;
}

.call-widget::before,
.call-widget::after {
  position: absolute;
  inset: -5px;
  z-index: -1;
  border: 1px solid rgba(29, 127, 132, 0.34);
  border-radius: inherit;
  content: "";
  opacity: 0;
  transform: scale(0.88);
  animation: call-widget-wave 3.2s ease-out infinite;
}

.call-widget::after {
  border-color: rgba(217, 164, 65, 0.3);
  animation-delay: 1.6s;
}

.call-widget svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18));
}

.call-widget:hover,
.call-widget:focus-visible {
  color: #ffffff;
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.3), transparent 28%),
    linear-gradient(135deg, #1d7f84, #0f575b);
  box-shadow: 0 22px 48px rgba(29, 127, 132, 0.28);
  transform: translateY(-2px);
}

.call-widget:focus-visible {
  outline: 4px solid rgba(217, 164, 65, 0.72);
  outline-offset: 4px;
}

@keyframes call-widget-wave {
  0% {
    opacity: 0.28;
    transform: scale(0.88);
  }
  66%, 100% {
    opacity: 0;
    transform: scale(1.24);
  }
}

@keyframes call-widget-ring {
  0%, 8%, 16%, 24%, 100% {
    transform: rotate(0deg);
  }
  4%, 20% {
    transform: rotate(-3deg);
  }
  12% {
    transform: rotate(3deg);
  }
}

@media (max-width: 640px) {


.article-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 4px;
}

.article-categories a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(29, 127, 132, 0.16);
  border-radius: 999px;
  color: #0b6f73;
  background: rgba(230, 248, 249, 0.78);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
}

.blog-sync-status {
  min-height: 260px;
}


.sodo-post-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(44px, 7vw, 76px);
}

.sodo-post-hero h1 {
  max-width: 13.5ch;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 1.02;
}

.sodo-post-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.75;
}

.sodo-post-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(29, 127, 132, 0.2);
  border-radius: 26px;
  box-shadow: 0 32px 78px rgba(12, 39, 52, 0.18);
}

.sodo-post-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.16) 38%, transparent 58%);
  pointer-events: none;
}

.sodo-post-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sodo-post-content {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(280px, 360px);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.sodo-post-body {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 70px rgba(12, 39, 52, 0.08);
  padding: clamp(24px, 4vw, 52px);
}

.sodo-post-body :where(h2, h3) {
  margin: 1.35em 0 0.55em;
  color: var(--ink);
  line-height: 1.12;
}

.sodo-post-body h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.sodo-post-body h3 {
  font-size: clamp(1.32rem, 2.2vw, 1.86rem);
}

.sodo-post-body :where(p, li) {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.09rem);
  line-height: 1.82;
}

.sodo-post-body :where(ul, ol) {
  display: grid;
  gap: 10px;
  padding-left: 1.25rem;
}

.sodo-post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.sodo-post-sidebar {
  position: sticky;
  top: 110px;
}

.sodo-post-card {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(92, 205, 211, 0.34);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(92, 205, 211, 0.16), transparent 42%),
    linear-gradient(145deg, #10242a, #0e5e62);
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(12, 39, 52, 0.18);
  padding: clamp(22px, 3vw, 32px);
}

.sodo-post-card h2,
.sodo-post-card p {
  margin: 0;
}

.sodo-post-card p:not(.eyebrow) {
  color: rgba(235, 252, 253, 0.84);
  line-height: 1.65;
}

.sodo-post-card .btn {
  justify-content: center;
  width: 100%;
}

.blog-subcategory-slider {
  display: grid;
  gap: 18px;
  margin-top: -12px;
}

.blog-subcategory-slider > .section-heading {
  max-width: 760px;
}

.blog-subcategory-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 6px 4px 18px;
}

.blog-subcategory-track .blog-category-card {
  scroll-snap-align: start;
}

@media (max-width: 860px) {
  .sodo-post-hero,
  .sodo-post-content {
    grid-template-columns: 1fr;
  }

  .sodo-post-sidebar {
    position: static;
  }

  .sodo-post-hero h1 {
    max-width: 12.5ch;
    font-size: clamp(2.15rem, 12vw, 3.3rem);
  }
}


.blog-intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: end;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(220, 230, 236, 0.88);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(223, 243, 244, 0.74)),
    var(--white);
  box-shadow: 0 24px 66px rgba(20, 56, 64, 0.08);
}

.blog-intro-panel h2,
.blog-intro-panel p {
  margin: 0;
}

.blog-intro-panel h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.04;
}

.blog-intro-panel > p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.blog-selector {
  display: grid;
  gap: 22px;
}

.blog-selector .section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

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

.blog-selector-pill {
  display: grid;
  gap: 8px;
  min-height: 112px;
  align-content: center;
  border: 1px solid rgba(220, 230, 236, 0.9);
  border-radius: 20px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72)),
    rgba(223, 243, 244, 0.54);
  box-shadow: 0 18px 44px rgba(20, 56, 64, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.blog-selector-pill span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-selector-pill strong {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.15;
}

.blog-selector-pill:hover,
.blog-selector-pill:focus-visible {
  border-color: rgba(29, 127, 132, 0.34);
  box-shadow: 0 26px 58px rgba(20, 56, 64, 0.11);
  transform: translateY(-3px);
}

.blog-category-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: stretch;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(220, 230, 236, 0.88);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(29, 127, 132, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(241, 250, 251, 0.88));
  box-shadow: 0 24px 68px rgba(20, 56, 64, 0.08);
}

.blog-category-row-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.blog-category-row-copy h2,
.blog-category-row-copy p {
  margin: 0;
}

.blog-category-row-copy h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.05;
}

.blog-category-row-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.blog-category-row-copy .btn {
  width: fit-content;
  margin-top: 10px;
}

.blog-horizontal-feed {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 14px;
  scroll-snap-type: inline mandatory;
}

.blog-subcategory-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.44fr) minmax(0, 1fr);
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(220, 230, 236, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 54px rgba(20, 56, 64, 0.08);
  scroll-snap-align: start;
}

.blog-subcategory-card figure {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.blog-subcategory-card figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 24, 30, 0.02), rgba(8, 24, 30, 0.24));
  content: "";
}

.blog-subcategory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-subcategory-card div {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 22px;
}

.blog-subcategory-card span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-subcategory-card h3 {
  margin: 0;
  font-size: clamp(1.28rem, 2vw, 1.75rem);
  line-height: 1.1;
}

.blog-subcategory-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.blog-subcategory-card a {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(29, 127, 132, 0.18);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--teal);
  background: rgba(223, 243, 244, 0.52);
  font-weight: 850;
}

@media (max-width: 980px) {
  .blog-intro-panel,
  .blog-category-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .blog-intro-panel,
  .blog-selector,
  .blog-category-row {
    width: min(100% - 24px, 1180px);
    padding: 22px;
    border-radius: 22px;
  }

  .blog-selector-grid {
    grid-template-columns: 1fr;
  }

  .blog-subcategory-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .blog-subcategory-card figure img {
    aspect-ratio: 16 / 10;
  }
}


.blog-hero-full {
  position: relative;
  display: grid;
  min-height: calc(100dvh - 98px);
  width: 100%;
  max-width: none;
  margin-top: -92px;
  padding: clamp(140px, 16vw, 190px) 24px clamp(28px, 5vw, 46px);
  place-items: center;
  overflow: hidden;
  border-radius: 0;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(7, 16, 20, 0.74), rgba(7, 16, 20, 0.84)),
    linear-gradient(115deg, rgba(12, 29, 36, 0.94), rgba(29, 127, 132, 0.42), rgba(217, 164, 65, 0.2)),
    url("/sodo-original-real-estate-hero.webp?v=20260702-webp-binary-restore") center / cover;
}

.blog-hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(29, 127, 132, 0.34), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(217, 164, 65, 0.22), transparent 26%),
    linear-gradient(90deg, rgba(4, 12, 16, 0.72), transparent 52%, rgba(4, 12, 16, 0.62));
  pointer-events: none;
}

.blog-hero-full::after {
  content: "";
  position: absolute;
  right: 9%;
  bottom: 15%;
  width: min(28vw, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(217, 164, 65, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.blog-hero-full .blog-hero-copy {
  display: grid;
  justify-items: center;
  max-width: min(900px, 100%);
  text-align: center;
}

.blog-hero-full .eyebrow {
  color: var(--gold);
}

.blog-hero-full h1 {
  max-width: 14ch;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(3rem, 6vw, 6.6rem);
  line-height: 0.98;
}

.blog-hero-full .blog-hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(235, 252, 253, 0.86);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.65;
}

.blog-hero-category-rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 14, 18, 0.64);
  backdrop-filter: blur(14px);
}

.blog-hero-category-rail a {
  min-height: 56px;
  min-width: min(18vw, 190px);
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.blog-hero-category-rail a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.blog-hero-category-rail a:hover,
.blog-hero-category-rail a:focus-visible {
  color: #ffffff;
  background: rgba(29, 127, 132, 0.34);
}

.blog-calculator-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: clamp(28px, 5vw, 54px);
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(29, 127, 132, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 164, 65, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(223, 243, 244, 0.76));
  box-shadow: 0 24px 62px rgba(20, 56, 64, 0.09);
}

.blog-calculator-strip h2,
.blog-calculator-strip p {
  margin: 0;
}

.blog-calculator-strip h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.04;
}

.blog-calculator-strip p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 760px) {
  .blog-hero-full {
    min-height: calc(100dvh - 84px);
    margin-top: -88px;
    padding: 132px 18px 112px;
  }

  .blog-hero-full h1 {
    max-width: 11.5ch;
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .blog-hero-category-rail {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 12px;
  }

  .blog-hero-category-rail a {
    flex: 0 0 auto;
    min-width: 160px;
  }

  .blog-calculator-strip {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 1180px);
  }

  .blog-calculator-strip .btn {
    width: 100%;
  }
}


/* Blog hero refresh with main editorial image and horizontal category rail. */
.blog-hero-featured {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.95fr);
  grid-template-areas:
    "copy image"
    "categories categories";
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  min-height: calc(100dvh - 112px);
  width: min(1380px, calc(100% - 32px));
  max-width: 1380px;
  margin: clamp(24px, 4vw, 54px) auto 0;
  padding: clamp(34px, 5vw, 68px);
  overflow: hidden;
  border: 1px solid rgba(220, 230, 236, 0.86);
  border-radius: 34px;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 15%, rgba(217, 164, 65, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(223, 243, 244, 0.72));
  box-shadow: 0 30px 88px rgba(20, 56, 64, 0.12);
}

.blog-hero-featured::before {
  content: "";
  position: absolute;
  inset: auto -120px -160px auto;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.blog-hero-featured::after {
  content: "INSIGHTS";
  position: absolute;
  right: 28px;
  bottom: 92px;
  color: rgba(29, 127, 132, 0.055);
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.blog-hero-featured-copy {
  grid-area: copy;
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  align-content: center;
}

.blog-hero-featured-copy h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 6.1rem);
  line-height: 0.98;
}

.blog-hero-featured-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.72;
}

.blog-hero-featured-copy .btn {
  width: fit-content;
  margin-top: 8px;
}

.blog-hero-main-image {
  grid-area: image;
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(29, 127, 132, 0.18);
  border-radius: 28px;
  box-shadow: 0 34px 86px rgba(12, 39, 52, 0.18);
}

.blog-hero-main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 23, 29, 0.58));
  pointer-events: none;
}

.blog-hero-main-image img {
  width: 100%;
  min-height: clamp(390px, 44vw, 620px);
  object-fit: cover;
  transform: scale(1.01);
}

.blog-hero-main-image figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: grid;
  gap: 6px;
  max-width: 480px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 18px 20px;
  color: #ffffff;
  background: rgba(18, 24, 28, 0.82);
  backdrop-filter: blur(14px);
}

.blog-hero-main-image figcaption span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-hero-main-image figcaption strong {
  font-size: clamp(1.05rem, 1.6vw, 1.34rem);
  line-height: 1.2;
}

.blog-hero-category-cards {
  grid-area: categories;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.blog-hero-category-cards a {
  display: grid;
  gap: 8px;
  min-height: 92px;
  align-content: center;
  border: 1px solid rgba(220, 230, 236, 0.9);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(20, 56, 64, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.blog-hero-category-cards a span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
}

.blog-hero-category-cards a strong {
  color: var(--teal);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.12;
}

.blog-hero-category-cards a:hover,
.blog-hero-category-cards a:focus-visible {
  border-color: rgba(29, 127, 132, 0.34);
  box-shadow: 0 24px 58px rgba(20, 56, 64, 0.12);
  transform: translateY(-3px);
}

@media (max-width: 980px) {
  .blog-hero-featured {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "image"
      "categories";
    min-height: 0;
  }

  .blog-hero-featured-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 10vw, 4.4rem);
  }

  .blog-hero-category-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-hero-featured {
    width: min(100% - 24px, 1380px);
    margin-top: 18px;
    padding: 22px;
    border-radius: 24px;
  }

  .blog-hero-main-image img {
    min-height: 320px;
  }

  .blog-hero-category-cards {
    grid-template-columns: 1fr;
  }
}


/* Sodo Realty premium blog hero polish. */
.blog-page .blog-hero-featured {
  isolation: isolate;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  grid-template-areas:
    "copy image"
    "categories categories";
  gap: clamp(22px, 3vw, 42px);
  width: min(1380px, calc(100% - 32px));
  min-height: min(780px, calc(100dvh - 108px));
  margin: clamp(20px, 3vw, 42px) auto 0;
  padding: clamp(26px, 4.4vw, 58px);
  border: 1px solid rgba(22, 84, 91, 0.18);
  border-radius: 32px;
  background:
    linear-gradient(110deg, rgba(7, 25, 31, 0.93) 0%, rgba(10, 53, 61, 0.84) 41%, rgba(17, 126, 130, 0.20) 100%),
    url("/sodo-original-real-estate-hero.webp?v=20260702-webp-binary-restore") center / cover no-repeat;
  color: #ffffff;
  box-shadow: 0 34px 100px rgba(11, 45, 52, 0.22);
}

.blog-page .blog-hero-featured::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 24% 20%, rgba(68, 203, 198, 0.18), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(217, 164, 65, 0.20), transparent 22%);
  pointer-events: none;
}

.blog-page .blog-hero-featured::after {
  content: "";
  position: absolute;
  inset: -35% auto auto -12%;
  z-index: 1;
  width: 42%;
  height: 170%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.22) 45%, transparent 70%);
  opacity: 0.44;
  transform: rotate(9deg);
  animation: sodoHeroShine 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sodoHeroShine {
  0%, 38% { transform: translateX(-70%) rotate(9deg); opacity: 0; }
  54% { opacity: 0.42; }
  74%, 100% { transform: translateX(260%) rotate(9deg); opacity: 0; }
}

.blog-page .blog-hero-featured-copy {
  align-self: center;
  max-width: 620px;
  padding: clamp(12px, 2vw, 22px);
  color: #ffffff;
}

.blog-page .blog-hero-featured-copy .eyebrow {
  color: var(--gold);
}

.blog-page .blog-hero-featured-copy h1 {
  max-width: 12.5ch;
  color: #ffffff;
  font-size: clamp(3rem, 5.5vw, 5.85rem);
  letter-spacing: 0;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.blog-page .blog-hero-featured-copy p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(238, 252, 253, 0.88);
}

.blog-page .blog-hero-featured-copy .btn {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.20);
}

.blog-page .blog-hero-main-image {
  min-height: clamp(410px, 45vw, 610px);
  border-color: rgba(255, 255, 255, 0.20);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 34px 86px rgba(0, 0, 0, 0.24);
}

.blog-page .blog-hero-main-image::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  pointer-events: none;
}

.blog-page .blog-hero-main-image::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 22%, rgba(7, 22, 28, 0.72)),
    radial-gradient(circle at 100% 100%, rgba(217, 164, 65, 0.26), transparent 36%);
}

.blog-page .blog-hero-main-image img {
  min-height: clamp(410px, 45vw, 610px);
  filter: saturate(1.08) contrast(1.03);
}

.blog-page .blog-hero-main-image figcaption {
  right: clamp(18px, 2vw, 30px);
  bottom: clamp(18px, 2vw, 30px);
  left: auto;
  max-width: min(440px, calc(100% - 40px));
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(10, 28, 35, 0.84);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.blog-page .blog-hero-category-cards {
  align-self: end;
  gap: 14px;
  margin-top: 4px;
}

.blog-page .blog-hero-category-cards a {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 60px rgba(4, 24, 30, 0.18);
}

.blog-page .blog-hero-category-cards a::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--teal);
}

.blog-page .blog-hero-category-cards a.market::before { background: var(--gold); }
.blog-page .blog-hero-category-cards a.seller::before { background: #1d7f84; }
.blog-page .blog-hero-category-cards a.invest::before { background: #2e7d45; }
.blog-page .blog-hero-category-cards a.global::before { background: #0d5d88; }

.blog-page .blog-hero-category-cards a::after {
  content: "";
  position: absolute;
  inset: -70% auto auto -20%;
  width: 54%;
  height: 220%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.65), transparent);
  opacity: 0;
  transform: rotate(14deg);
  transition: transform 420ms ease, opacity 220ms ease;
}

.blog-page .blog-hero-category-cards a:hover::after,
.blog-page .blog-hero-category-cards a:focus-visible::after {
  opacity: 0.5;
  transform: translateX(240%) rotate(14deg);
}

.blog-page .blog-hero-category-cards a span,
.blog-page .blog-hero-category-cards a strong,
.blog-page .blog-hero-category-cards a em {
  position: relative;
  z-index: 1;
}

.blog-page .blog-hero-category-cards a em {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .blog-page .blog-hero-featured {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "image"
      "categories";
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(7, 25, 31, 0.92) 0%, rgba(10, 53, 61, 0.78) 54%, rgba(17, 126, 130, 0.15) 100%),
      url("/sodo-original-real-estate-hero.webp?v=20260702-webp-binary-restore") center / cover no-repeat;
  }

  .blog-page .blog-hero-featured-copy h1 {
    max-width: 11.5ch;
    font-size: clamp(2.65rem, 9vw, 4.7rem);
  }

  .blog-page .blog-hero-category-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-page .blog-hero-featured {
    width: min(100% - 24px, 1380px);
    padding: 20px;
    border-radius: 24px;
  }

  .blog-page .blog-hero-featured-copy {
    padding: 4px;
  }

  .blog-page .blog-hero-main-image,
  .blog-page .blog-hero-main-image img {
    min-height: 310px;
  }

  .blog-page .blog-hero-main-image figcaption {
    left: 14px;
    right: 14px;
    max-width: none;
    padding: 14px;
  }

  .blog-page .blog-hero-category-cards {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-page .blog-hero-featured::after {
    animation: none;
  }
}


/* Sodo Realty luxury blog concept. */
.blog-lux-page {
  background:
    radial-gradient(circle at 82% 8%, rgba(29, 127, 132, 0.12), transparent 28%),
    radial-gradient(circle at 18% 28%, rgba(217, 164, 65, 0.10), transparent 24%);
}

.blog-lux-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  grid-template-areas:
    "copy media"
    "dock dock";
  gap: clamp(22px, 3.8vw, 54px);
  align-items: center;
  width: min(1400px, calc(100% - 32px));
  min-height: min(820px, calc(100dvh - 106px));
  margin: clamp(22px, 3vw, 44px) auto clamp(22px, 4vw, 54px);
  padding: clamp(28px, 4.6vw, 66px);
  overflow: hidden;
  border: 1px solid rgba(25, 89, 96, 0.18);
  border-radius: 34px;
  color: #ffffff;
  background:
    linear-gradient(112deg, rgba(5, 18, 24, 0.98) 0%, rgba(8, 46, 54, 0.93) 46%, rgba(29, 127, 132, 0.52) 100%),
    url("/sodo-original-real-estate-hero.webp?v=20260702-webp-binary-restore") center / cover no-repeat;
  box-shadow: 0 40px 110px rgba(6, 38, 45, 0.24);
}

.blog-lux-hero::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background:
    radial-gradient(circle at 24% 16%, rgba(57, 203, 196, 0.18), transparent 32%),
    radial-gradient(circle at 90% 18%, rgba(217, 164, 65, 0.20), transparent 24%);
}

.blog-lux-hero::after {
  content: "";
  position: absolute;
  inset: -35% auto auto -18%;
  z-index: 1;
  width: 46%;
  height: 180%;
  opacity: 0;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: rotate(10deg);
  animation: sodoBlogLuxuryShine 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sodoBlogLuxuryShine {
  0%, 34% { transform: translateX(-70%) rotate(10deg); opacity: 0; }
  50% { opacity: 0.45; }
  72%, 100% { transform: translateX(270%) rotate(10deg); opacity: 0; }
}

.blog-lux-hero-copy {
  grid-area: copy;
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.blog-lux-hero-copy .eyebrow {
  color: var(--gold);
}

.blog-lux-hero-copy h1 {
  max-width: 12.2ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.15rem, 5.6vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 20px 55px rgba(0, 0, 0, 0.26);
}

.blog-lux-hero-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: rgba(236, 252, 253, 0.88);
  font-size: clamp(1.04rem, 1.28vw, 1.22rem);
  line-height: 1.72;
}

.blog-lux-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.blog-lux-actions .secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.blog-lux-hero-media {
  grid-area: media;
  position: relative;
  z-index: 2;
  min-height: clamp(420px, 46vw, 620px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.28);
}

.blog-lux-hero-media::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  pointer-events: none;
}

.blog-lux-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 18, 24, 0.05) 18%, rgba(4, 18, 24, 0.66)),
    radial-gradient(circle at 100% 100%, rgba(217, 164, 65, 0.28), transparent 36%);
}

.blog-lux-hero-media img {
  width: 100%;
  min-height: clamp(420px, 46vw, 620px);
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.01);
}

.blog-lux-hero-media figcaption {
  position: absolute;
  right: clamp(18px, 2vw, 30px);
  bottom: clamp(18px, 2vw, 30px);
  z-index: 3;
  display: grid;
  gap: 6px;
  max-width: min(440px, calc(100% - 40px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: #ffffff;
  background: rgba(9, 26, 34, 0.84);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.blog-lux-hero-media figcaption span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-lux-hero-media figcaption strong {
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.2;
}

.blog-lux-category-dock {
  grid-area: dock;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.blog-lux-category-dock a,
.blog-lux-topic-card,
.blog-lux-intro,
.blog-lux-category {
  position: relative;
  overflow: hidden;
}

.blog-lux-category-dock a {
  display: grid;
  gap: 8px;
  min-height: 118px;
  align-content: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 60px rgba(4, 24, 30, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.blog-lux-category-dock a::before,
.blog-lux-topic-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--teal);
}

.blog-lux-category-dock .market::before,
.blog-lux-category.market .blog-lux-topic-card::before { background: var(--gold); }
.blog-lux-category-dock .seller::before,
.blog-lux-category.seller .blog-lux-topic-card::before { background: #1d7f84; }
.blog-lux-category-dock .invest::before,
.blog-lux-category.invest .blog-lux-topic-card::before { background: #2e7d45; }
.blog-lux-category-dock .global::before,
.blog-lux-category.global .blog-lux-topic-card::before { background: #0d5d88; }

.blog-lux-category-dock span,
.blog-lux-topic-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-lux-category-dock strong {
  color: var(--teal);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.12;
}

.blog-lux-category-dock em {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.35;
}

.blog-lux-category-dock a:hover,
.blog-lux-category-dock a:focus-visible {
  border-color: rgba(29, 127, 132, 0.34);
  box-shadow: 0 24px 58px rgba(20, 56, 64, 0.14);
  transform: translateY(-3px);
}

.blog-lux-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 4vw, 62px);
  align-items: end;
  width: min(1280px, calc(100% - 32px));
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(220, 230, 236, 0.88);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(223,243,244,0.62));
  box-shadow: 0 26px 76px rgba(20, 56, 64, 0.09);
}

.blog-lux-intro h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1.02;
}

.blog-lux-intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.blog-lux-category {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: stretch;
  width: min(1280px, calc(100% - 32px));
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(220, 230, 236, 0.88);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 28px 82px rgba(20, 56, 64, 0.10);
}

.blog-lux-category::after {
  content: "";
  position: absolute;
  inset: auto -90px -120px auto;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(217, 164, 65, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.blog-lux-category-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 24px;
  color: #ffffff;
  background:
    linear-gradient(150deg, rgba(7, 25, 31, 0.95), rgba(20, 96, 104, 0.82)),
    radial-gradient(circle at 10% 10%, rgba(217, 164, 65, 0.24), transparent 36%);
}

.blog-lux-number {
  color: rgba(217, 164, 65, 0.42);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 950;
  line-height: 0.82;
}

.blog-lux-category-copy .eyebrow {
  color: var(--gold);
}

.blog-lux-category-copy h2,
.blog-lux-category-copy p {
  margin: 0;
}

.blog-lux-category-copy h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.7vw, 3.8rem);
  line-height: 1.02;
}

.blog-lux-category-copy p:not(.eyebrow) {
  color: rgba(236, 252, 253, 0.86);
  line-height: 1.72;
}

.blog-lux-category-copy .secondary {
  width: fit-content;
  border-color: rgba(255, 255, 255, 0.20);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.blog-lux-topic-feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 18px;
}

.blog-lux-topic-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(220, 230, 236, 0.92);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 66px rgba(20, 56, 64, 0.09);
}

.blog-lux-topic-card figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.blog-lux-topic-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
}

.blog-lux-topic-card div {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px;
}

.blog-lux-topic-card h3,
.blog-lux-topic-card p {
  margin: 0;
}

.blog-lux-topic-card h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.02;
}

.blog-lux-topic-card p {
  color: var(--muted);
  line-height: 1.62;
}

.blog-lux-topic-card a {
  width: fit-content;
  color: var(--teal);
  font-weight: 900;
}

.blog-lux-topic-card:hover img,
.blog-lux-topic-card:focus-within img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

@media (max-width: 980px) {
  .blog-lux-hero,
  .blog-lux-intro,
  .blog-lux-category {
    grid-template-columns: 1fr;
  }

  .blog-lux-hero {
    grid-template-areas:
      "copy"
      "media"
      "dock";
    min-height: 0;
  }

  .blog-lux-category-dock,
  .blog-lux-topic-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-lux-hero,
  .blog-lux-intro,
  .blog-lux-category {
    width: min(100% - 24px, 1280px);
    padding: 20px;
    border-radius: 24px;
  }

  .blog-lux-hero-copy h1 {
    max-width: 11.5ch;
    font-size: clamp(2.6rem, 11vw, 4.25rem);
  }

  .blog-lux-hero-media,
  .blog-lux-hero-media img {
    min-height: 310px;
  }

  .blog-lux-category-dock,
  .blog-lux-topic-feed {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-lux-hero::after {
    animation: none;
  }
}
/* Sodo live blog category sliders. */
.blog-page {
  background:
    radial-gradient(circle at 82% 18%, rgba(29, 127, 132, 0.12), transparent 28%),
    radial-gradient(circle at 18% 38%, rgba(217, 164, 65, 0.10), transparent 24%);
}

.blog-live-categories {
  width: min(1380px, calc(100% - 32px));
  padding: clamp(62px, 8vw, 112px) 0 clamp(38px, 6vw, 84px);
}

.blog-live-heading {
  max-width: 780px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.blog-live-heading h2 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5.4vw, 5.3rem);
  line-height: 0.96;
}

.blog-live-heading p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.blog-live-stage {
  overflow: hidden;
  border: 1px solid rgba(220, 230, 236, 0.86);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(223, 243, 244, 0.52)),
    #ffffff;
  box-shadow: var(--shadow);
}

.blog-live-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(220, 230, 236, 0.86);
}

.blog-live-tab {
  min-height: 94px;
  border: 0;
  border-right: 1px solid rgba(220, 230, 236, 0.86);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: clamp(1.12rem, 2vw, 1.75rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.blog-live-tab:last-child {
  border-right: 0;
}

.blog-live-tab:hover,
.blog-live-tab:focus-visible,
.blog-live-tab.is-active {
  color: #ffffff;
  background: var(--teal);
  box-shadow: none;
}

.blog-live-tab:active {
  transform: translateY(1px);
}

.blog-live-slider-wrap {
  padding: clamp(22px, 4vw, 42px);
}

.blog-live-slider-block + .blog-live-slider-block {
  margin-top: 34px;
}

.blog-live-slider-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.blog-live-slider-head h3 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1;
}

.blog-live-slider-head p {
  max-width: 390px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.48;
}

.blog-live-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 34%);
  gap: 16px;
  overflow-x: auto;
  padding: 2px 0 14px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--teal) transparent;
}

.blog-live-slide {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid rgba(220, 230, 236, 0.84);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(18, 24, 28, 0.08);
  scroll-snap-align: start;
}

.blog-live-slide.subcategory {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.blog-live-slide.subcategory::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.9;
}

.blog-live-slide.subcategory > * {
  position: relative;
  z-index: 1;
}

.blog-live-slide.article {
  min-height: 340px;
  background: var(--charcoal);
}

.blog-live-slide.article img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transition: transform 320ms ease, filter 320ms ease;
}

.blog-live-slide.article::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 12%, rgba(18, 24, 28, 0.86) 100%);
  content: "";
}

.blog-live-slide.article div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 24px;
  color: #ffffff;
}

.blog-live-slide span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: none;
}

.blog-live-slide.article span {
  color: #b6e4e5;
}

.blog-live-slide h4 {
  margin: 12px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.blog-live-slide p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.blog-live-slide.article p {
  color: rgba(255, 255, 255, 0.78);
}

.blog-live-slide a {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  border-bottom: 2px solid currentColor;
  padding-bottom: 4px;
  color: var(--teal);
  font-weight: 900;
}

.blog-live-slide.article a {
  color: #dff3f4;
}

.blog-live-slide:hover.article img,
.blog-live-slide:focus-within.article img {
  filter: saturate(1.1) contrast(1.06);
  transform: scale(1.045);
}

.blog-live-slide.sub-market::before {
  background: linear-gradient(135deg, rgba(223, 243, 244, 0.94), rgba(255, 255, 255, 0.52));
}

.blog-live-slide.sub-seller::before {
  background: linear-gradient(135deg, rgba(232, 224, 207, 0.96), rgba(255, 255, 255, 0.56));
}

.blog-live-slide.sub-invest::before {
  background: linear-gradient(135deg, rgba(211, 232, 223, 0.96), rgba(255, 255, 255, 0.58));
}

.blog-live-slide.sub-global::before {
  background: linear-gradient(135deg, rgba(209, 241, 247, 0.96), rgba(255, 255, 255, 0.54));
}

.blog-live-personas {
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.8fr;
  gap: 18px;
  width: min(1380px, calc(100% - 32px));
  padding: clamp(22px, 4vw, 42px) 0 clamp(44px, 7vw, 86px);
}

.blog-live-persona {
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(220, 230, 236, 0.86);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(18, 24, 28, 0.06);
}

.blog-live-persona.featured {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(29, 127, 132, 0.94), rgba(18, 24, 28, 0.94)),
    var(--teal);
}

.blog-live-persona span {
  display: block;
  color: var(--teal);
  font-weight: 850;
}

.blog-live-persona.featured span,
.blog-live-persona.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.blog-live-persona h2 {
  margin: 18px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.blog-live-persona p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.blog-page .blog-cta {
  width: min(1380px, calc(100% - 32px));
  border-radius: 18px;
}

@media (max-width: 980px) {
  .blog-live-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-live-tab:nth-child(2) {
    border-right: 0;
  }

  .blog-live-tab:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(220, 230, 236, 0.86);
  }

  .blog-live-slider {
    grid-auto-columns: minmax(260px, 72%);
  }

  .blog-live-personas {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .blog-live-categories,
  .blog-live-personas,
  .blog-page .blog-cta {
    width: min(100% - 24px, 1380px);
  }

  .blog-live-tabs {
    grid-template-columns: 1fr;
  }

  .blog-live-tab,
  .blog-live-tab:nth-child(2) {
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid rgba(220, 230, 236, 0.86);
  }

  .blog-live-slider-head {
    display: block;
  }

  .blog-live-slider-head p {
    margin-top: 10px;
  }

  .blog-live-slider {
    grid-auto-columns: minmax(248px, 88%);
  }
}
/* End Sodo live blog category sliders. */
/* Sodo blog copy and H1 polish. */
.blog-page .blog-hero h1 {
  max-width: 10.8ch;
  font-size: clamp(2.05rem, 3.5vw, 3.18rem);
  line-height: 1.04;
}

.blog-page .blog-hero-copy > p:not(.eyebrow) {
  max-width: 640px;
}

@media (max-width: 640px) {
  .blog-page .blog-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.05rem, 10vw, 3rem);
  }
}
/* End Sodo blog copy and H1 polish. */
}

/* Sodo video-inspired cinematic blog redesign. */
.blog-cinematic-page {
  --blog-ink: #12191b;
  --blog-ink-2: #142022;
  --blog-panel: #eef4f2;
  --blog-paper: #fbfdfc;
  --blog-muted: #9fb4b3;
  --blog-teal: #428281;
  --blog-teal-deep: #0f6b6b;
  --blog-gold: #caa14a;
  background:
    radial-gradient(circle at 12% 6%, rgba(66, 130, 129, .24), transparent 28rem),
    linear-gradient(180deg, #131f21 0%, #12191b 42%, #eef4f2 42%, #fbfdfc 100%);
  color: var(--blog-paper);
  overflow: hidden;
}

.blog-cinematic-page .section-band {
  width: min(1180px, calc(100% - 40px));
}

.blog-cinematic-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(360px, .74fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: min(780px, calc(100dvh - 74px));
  padding: clamp(54px, 8vw, 94px) 0 clamp(44px, 7vw, 84px);
  isolation: isolate;
}

.blog-cinematic-orbit {
  position: absolute;
  inset: 10% auto auto 47%;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(238, 244, 242, .16);
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: .72;
  pointer-events: none;
}

.blog-cinematic-orbit::before,
.blog-cinematic-orbit::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  inset: 12%;
  border: 1px solid rgba(202, 161, 74, .14);
}

.blog-cinematic-orbit::after {
  inset: 27%;
  border-color: rgba(66, 130, 129, .28);
}

.blog-cinematic-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.blog-cinematic-copy .eyebrow,
.blog-cinematic-heading .eyebrow,
.blog-cinematic-cta .eyebrow {
  color: #8fd0ca;
  letter-spacing: .14em;
}

.blog-cinematic-copy h1 {
  margin: 0;
  color: #f7fbfa;
  font-size: clamp(3.45rem, 8vw, 7.8rem);
  line-height: .88;
  letter-spacing: 0;
  text-wrap: balance;
  max-width: 760px;
}

.blog-cinematic-copy > p:not(.eyebrow) {
  max-width: 58ch;
  margin: 24px 0 0;
  color: rgba(238, 244, 242, .78);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.8;
}

.blog-cinematic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.blog-cinematic-actions a,
.blog-cinematic-tabs .blog-live-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(238, 244, 242, .18);
  background: rgba(238, 244, 242, .08);
  color: #f7fbfa;
  padding: 11px 18px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.blog-cinematic-actions a:hover,
.blog-cinematic-actions a:focus-visible,
.blog-cinematic-tabs .blog-live-tab:hover,
.blog-cinematic-tabs .blog-live-tab:focus-visible {
  transform: translateY(-2px);
  background: #eef4f2;
  border-color: #eef4f2;
  color: var(--blog-ink);
}

.blog-cinematic-feature {
  position: relative;
  z-index: 1;
  margin: 0;
  min-height: clamp(460px, 62vw, 680px);
  border-radius: 34px;
  overflow: hidden;
  background: #1c3033;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
}

.blog-cinematic-feature img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  filter: saturate(.92) contrast(1.05);
}

.blog-cinematic-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18, 25, 27, .82));
  pointer-events: none;
}

.blog-cinematic-feature figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(18, 25, 27, .58);
  backdrop-filter: blur(18px);
  color: #f7fbfa;
}

.blog-cinematic-feature figcaption span,
.blog-cinematic-personas span,
.blog-cinematic-strip span {
  color: #9fd9d4;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.blog-cinematic-feature figcaption strong {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.08;
}

.blog-cinematic-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: -14px;
  padding: 0 0 clamp(54px, 7vw, 86px);
  background: rgba(238, 244, 242, .16);
  border-radius: 28px;
  overflow: hidden;
}

.blog-cinematic-strip article {
  min-height: 190px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(238, 244, 242, .09);
  color: #f7fbfa;
}

.blog-cinematic-strip strong {
  display: block;
  margin-top: 32px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.05;
}

.blog-cinematic-strip p {
  color: rgba(238, 244, 242, .68);
  line-height: 1.65;
  margin: 12px 0 0;
}

.blog-cinematic-categories {
  display: grid;
  gap: 30px;
  padding: clamp(56px, 8vw, 92px) 0;
  color: var(--blog-ink);
}

.blog-cinematic-heading {
  max-width: 840px;
}

.blog-cinematic-heading h2,
.blog-cinematic-personas h2,
.blog-cinematic-cta h2 {
  color: var(--blog-ink);
  letter-spacing: 0;
  text-wrap: balance;
}

.blog-cinematic-heading h2 {
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  line-height: .94;
  margin: 0;
}

.blog-cinematic-heading p:not(.eyebrow) {
  max-width: 58ch;
  color: #526869;
  font-size: 1.06rem;
  line-height: 1.75;
}

.blog-cinematic-stage {
  border-radius: 34px;
  background: #12191b;
  color: #f7fbfa;
  padding: clamp(18px, 3vw, 30px);
  box-shadow: 0 30px 80px rgba(18, 25, 27, .18);
}

.blog-cinematic-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(238, 244, 242, .08);
  border: 1px solid rgba(238, 244, 242, .12);
}

.blog-cinematic-tabs .blog-live-tab {
  border-color: transparent;
  background: transparent;
  color: rgba(238, 244, 242, .76);
  min-height: 48px;
  cursor: pointer;
}

.blog-cinematic-tabs .blog-live-tab.is-active {
  background: #eef4f2;
  color: var(--blog-ink);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .24);
}

.blog-cinematic-slider-wrap {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.blog-cinematic-slider-block {
  border: 1px solid rgba(238, 244, 242, .12);
  border-radius: 28px;
  background: rgba(238, 244, 242, .055);
  padding: clamp(18px, 2.5vw, 28px);
}

.blog-cinematic-slider-block .blog-live-slider-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.blog-cinematic-slider-block h3 {
  color: #f7fbfa;
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
}

.blog-cinematic-slider-block .blog-live-slider-head p {
  color: rgba(238, 244, 242, .6);
  margin: 0;
  max-width: 34ch;
  line-height: 1.55;
}

.blog-cinematic-page .blog-live-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 32%);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 2px 4px 12px;
}

.blog-cinematic-page .blog-live-slide {
  scroll-snap-align: start;
  border: 1px solid rgba(238, 244, 242, .12);
  background: #eef4f2;
  color: var(--blog-ink);
  border-radius: 24px;
  box-shadow: none;
  min-height: 230px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-cinematic-page .blog-live-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .22);
}

.blog-cinematic-page .blog-live-slide.subcategory {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background:
    radial-gradient(circle at 90% 0%, rgba(66, 130, 129, .22), transparent 46%),
    #eef4f2;
}

.blog-cinematic-page .blog-live-slide.subcategory span,
.blog-cinematic-page .blog-live-slide.article span {
  color: var(--blog-teal-deep);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.blog-cinematic-page .blog-live-slide h4 {
  margin: 0 0 10px;
  color: var(--blog-ink);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.blog-cinematic-page .blog-live-slide p {
  color: #526869;
  line-height: 1.62;
  margin: 0 0 18px;
}

.blog-cinematic-page .blog-live-slide a {
  color: var(--blog-ink);
  font-weight: 900;
  text-decoration-color: rgba(66, 130, 129, .4);
  text-underline-offset: 5px;
}

.blog-cinematic-page .blog-live-slide.article {
  display: grid;
  grid-template-rows: 180px 1fr;
}

.blog-cinematic-page .blog-live-slide.article img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.blog-cinematic-page .blog-live-slide.article > div {
  padding: 22px;
}

.blog-cinematic-personas {
  display: grid;
  grid-template-columns: 1.05fr .9fr 1.05fr;
  gap: 16px;
  padding: 0 0 clamp(60px, 8vw, 96px);
  color: var(--blog-ink);
}

.blog-cinematic-personas article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 30px;
  background: #eef4f2;
  border: 1px solid rgba(18, 25, 27, .08);
}

.blog-cinematic-personas article:nth-child(2) {
  background: #12191b;
  color: #f7fbfa;
  transform: translateY(34px);
}

.blog-cinematic-personas article:nth-child(2) h2,
.blog-cinematic-personas article:nth-child(2) p {
  color: #f7fbfa;
}

.blog-cinematic-personas h2 {
  margin: 18px 0 12px;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: .98;
}

.blog-cinematic-personas p {
  color: #526869;
  line-height: 1.7;
  margin: 0;
}

.blog-cinematic-cta {
  margin-bottom: clamp(56px, 8vw, 94px);
  border-radius: 34px;
  background: #12191b;
  color: #f7fbfa;
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 26px;
}

.blog-cinematic-cta h2 {
  color: #f7fbfa;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: .96;
  margin: 0;
}

.blog-cinematic-cta p:not(.eyebrow) {
  color: rgba(238, 244, 242, .72);
  max-width: 56ch;
}

.blog-cinematic-cta .btn.primary {
  background: #eef4f2;
  color: var(--blog-ink);
  box-shadow: none;
}

@media (max-width: 920px) {
  .blog-cinematic-page .section-band {
    width: min(100% - 28px, 1180px);
  }

  .blog-cinematic-hero,
  .blog-cinematic-personas,
  .blog-cinematic-cta {
    grid-template-columns: 1fr;
  }

  .blog-cinematic-feature {
    min-height: 420px;
  }

  .blog-cinematic-strip,
  .blog-cinematic-tabs {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .blog-cinematic-personas article:nth-child(2) {
    transform: none;
  }

  .blog-cinematic-page .blog-live-slider {
    grid-auto-columns: minmax(250px, 82%);
  }
}

@media (max-width: 620px) {
  .blog-cinematic-copy h1 {
    font-size: clamp(3.05rem, 16vw, 4.5rem);
  }

  .blog-cinematic-actions a,
  .blog-cinematic-tabs .blog-live-tab {
    width: 100%;
  }

  .blog-cinematic-slider-block .blog-live-slider-head {
    display: grid;
  }

  .blog-cinematic-feature figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}
/* End Sodo video-inspired cinematic blog redesign. */
/* Sodo blog desktop refresh and calculator width guard. */
.blog-cinematic-page {
  min-height: 100dvh;
}

@media (min-width: 1024px) {
  .blog-cinematic-page .blog-cinematic-hero.section-band,
  .blog-cinematic-page .blog-cinematic-strip.section-band,
  .blog-cinematic-page .blog-cinematic-categories.section-band,
  .blog-cinematic-page .blog-cinematic-personas.section-band,
  .blog-cinematic-page .blog-cinematic-cta.section-band {
    width: min(1180px, calc(100% - 64px));
  }

  .blog-cinematic-page .blog-cinematic-hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  }
}

.short-page .calculator-hero,
.short-page .calculator-page-grid,
.short-page .calculator-suite,
.short-page .calculator-promo {
  width: min(1040px, calc(100% - 40px));
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.short-page .calculator-page-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
}

.short-page .calculator-suite {
  display: grid;
  gap: clamp(22px, 4vw, 44px);
}

.short-page .calculator-suite .section-heading,
.short-page .calculator-suite > .calculator-note {
  width: min(860px, 100%);
  max-width: 860px;
}

.short-page .calculator-tool {
  width: 100%;
  max-width: 1040px;
  grid-template-columns: minmax(0, .86fr) minmax(280px, .74fr) minmax(280px, .74fr);
  gap: clamp(16px, 2.6vw, 26px);
  overflow: hidden;
}

.short-page .calculator-form,
.short-page .calculator-results {
  max-width: 100%;
  min-width: 0;
}

.short-page .calculator-form input,
.short-page .calculator-form select,
.short-page .calculator-form textarea {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 1080px) {
  .short-page .calculator-page-grid,
  .short-page .calculator-tool {
    grid-template-columns: 1fr;
  }

  .short-page .calculator-results {
    position: static;
  }
}

@media (max-width: 640px) {
  .short-page .calculator-hero,
  .short-page .calculator-page-grid,
  .short-page .calculator-suite,
  .short-page .calculator-promo {
    width: min(100% - 24px, 1040px);
  }
}
/* End Sodo blog desktop refresh and calculator width guard. */
/* Sodo calculator scale correction. */
.short-page .calculator-hero,
.short-page .calculator-page-grid,
.short-page .calculator-suite,
.short-page .calculator-promo {
  width: min(920px, calc(100% - 48px));
  max-width: 920px;
}

.short-page .calculator-hero {
  min-height: auto;
  padding-top: clamp(38px, 5vw, 62px);
  padding-bottom: clamp(18px, 3vw, 34px);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 22px;
}

.short-page .calculator-hero h1 {
  font-size: clamp(2.45rem, 5vw, 4.25rem);
  line-height: .96;
}

.short-page .calculator-page-grid {
  grid-template-columns: minmax(0, 1fr) minmax(285px, 340px);
  gap: 20px;
}

.short-page .calculator-form,
.short-page .calculator-results {
  border-radius: 22px;
  padding: clamp(18px, 2.4vw, 26px);
}

.short-page .calculator-form {
  gap: 14px;
}

.short-page .calculator-form label {
  gap: 7px;
  font-size: .88rem;
}

.short-page .calculator-form input,
.short-page .calculator-form select,
.short-page .calculator-form textarea {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 13px;
  font-size: .96rem;
}

.short-page .calculator-results h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.short-page .calculator-results dl {
  gap: 8px;
}

.short-page .calculator-results dl div {
  padding: 12px 0;
}

.short-page .calculator-suite {
  gap: 28px;
  padding-top: clamp(36px, 6vw, 64px);
}

.short-page .calculator-tool {
  max-width: 920px;
  grid-template-columns: minmax(0, .8fr) minmax(240px, .7fr) minmax(240px, .7fr);
  gap: 16px;
  padding: clamp(18px, 2.4vw, 26px);
  border-radius: 26px;
}

.short-page .calculator-tool-copy h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
}

.short-page .calculator-form.compact,
.short-page .calculator-results.compact {
  padding: 16px;
}

.short-page .calculator-results.compact h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
}

@media (max-width: 1080px) {
  .short-page .calculator-hero,
  .short-page .calculator-page-grid,
  .short-page .calculator-tool {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .short-page .calculator-hero,
  .short-page .calculator-page-grid,
  .short-page .calculator-suite,
  .short-page .calculator-promo {
    width: min(100% - 24px, 920px);
  }
}
/* End Sodo calculator scale correction. */
/* Sodo lower calculator width correction. */
.short-page .calculator-suite {
  width: min(1080px, calc(100% - 48px));
  max-width: 1080px;
}

.short-page .calculator-tool {
  width: 100%;
  max-width: 1080px;
  grid-template-columns: minmax(260px, .82fr) minmax(280px, .7fr) minmax(280px, .7fr);
  gap: clamp(18px, 2.4vw, 26px);
  padding: clamp(22px, 3vw, 34px);
}

.short-page .calculator-suite .section-heading,
.short-page .calculator-suite > .calculator-note {
  width: min(920px, 100%);
  max-width: 920px;
}

@media (max-width: 1120px) {
  .short-page .calculator-tool {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .short-page .calculator-suite {
    width: min(100% - 24px, 1080px);
  }
}
/* End Sodo lower calculator width correction. */
/* Sodo calculator centered full-size correction. */
.short-page .calculator-hero,
.short-page .calculator-page-grid,
.short-page .calculator-suite,
.short-page .calculator-promo {
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.short-page .calculator-hero {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(28px, 4vw, 44px);
  padding-top: clamp(58px, 7vw, 76px);
  padding-bottom: clamp(36px, 5vw, 54px);
}

.short-page .calculator-hero h1 {
  font-size: clamp(3.2rem, 5.8vw, 5.25rem);
  line-height: .96;
}

.short-page .calculator-page-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: clamp(24px, 3vw, 32px);
  align-items: start;
}

.short-page .calculator-form,
.short-page .calculator-results {
  padding: clamp(24px, 3vw, 32px);
  border-radius: 10px;
}

.short-page .calculator-form {
  gap: 18px;
}

.short-page .calculator-form label {
  gap: 9px;
  font-size: .95rem;
}

.short-page .calculator-form input,
.short-page .calculator-form select,
.short-page .calculator-form textarea {
  min-height: 52px;
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 1rem;
}

.short-page .calculator-results h2 {
  font-size: clamp(3rem, 5vw, 4.25rem);
}

.short-page .calculator-results dl {
  gap: 12px;
}

.short-page .calculator-results dl div {
  padding: 16px 0;
}

.short-page .calculator-suite {
  gap: clamp(30px, 4vw, 44px);
}

.short-page .calculator-tool {
  width: 100%;
  max-width: 1120px;
  grid-template-columns: minmax(280px, .9fr) minmax(300px, .78fr) minmax(300px, .78fr);
  gap: clamp(22px, 3vw, 30px);
  padding: clamp(26px, 3.5vw, 38px);
  border-radius: 18px;
}

.short-page .calculator-form.compact,
.short-page .calculator-results.compact {
  padding: clamp(20px, 2.5vw, 28px);
}

.short-page .calculator-results.compact h2 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
}

@media (max-width: 1120px) {
  .short-page .calculator-hero,
  .short-page .calculator-page-grid,
  .short-page .calculator-tool {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .short-page .calculator-hero,
  .short-page .calculator-page-grid,
  .short-page .calculator-suite,
  .short-page .calculator-promo {
    width: min(100% - 24px, 1120px);
  }

  .short-page .calculator-hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }
}
/* End Sodo calculator centered full-size correction. */
/* Sodo calculator tool inner-width correction. */
.short-page .calculator-tool {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .82fr);
  align-items: start;
  width: 100%;
  max-width: 1180px;
  gap: clamp(26px, 3vw, 38px);
  padding: clamp(28px, 3.8vw, 44px);
}

.short-page .calculator-tool-copy {
  grid-column: 1 / -1;
  max-width: none;
  padding-right: clamp(130px, 16vw, 230px);
}

.short-page .calculator-tool-copy h3 {
  max-width: 28ch;
}

.short-page .calculator-form.compact {
  grid-column: 1;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.short-page .calculator-results.compact {
  grid-column: 2;
  width: 100%;
}

.short-page .calculator-form.compact label,
.short-page .calculator-results.compact dl div,
.short-page .calculator-results.compact p {
  min-width: 0;
}

.short-page .calculator-results.compact .share-result-btn {
  width: 100%;
}

@media (max-width: 1120px) {
  .short-page .calculator-tool {
    grid-template-columns: 1fr;
  }

  .short-page .calculator-tool-copy {
    padding-right: 0;
  }

  .short-page .calculator-form.compact,
  .short-page .calculator-results.compact {
    grid-column: 1;
  }
}

@media (max-width: 680px) {
  .short-page .calculator-form.compact {
    grid-template-columns: 1fr;
  }
}
/* End Sodo calculator tool inner-width correction. */

.lead-form .lead-turnstile {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 10px 0 2px;
}

.lead-form .lead-turnstile .cf-turnstile {
  max-width: 100%;
}

/* Mobile header and hero responsive hardening */
@media (max-width: 1120px) {
  .site-header {
    box-sizing: border-box;
    width: min(100% - 24px, 1180px);
    max-width: calc(100vw - 24px);
    gap: 10px;
    padding-right: 12px;
    padding-left: 12px;
  }

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

  .brand-text {
    min-width: 0;
  }

  .brand-text strong,
  .brand-text small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 8px;
    margin-left: auto;
  }

  .header-actions > .phone-link {
    display: none !important;
  }

  .language-switcher {
    flex: 0 0 auto;
    isolation: isolate;
  }

  .language-menu {
    right: 0;
    left: auto;
  }

  .menu-button {
    flex: 0 0 46px;
  }

  .main-nav {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .main-nav a,
  .nav-dropdown,
  .nav-dropdown .nav-parent {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .nav-dropdown .nav-parent {
    gap: 8px;
  }

  .nav-dropdown .nav-parent span {
    position: static;
    left: auto;
    transform: none;
  }

  .main-nav .nav-phone-link {
    width: min(100%, 340px);
    align-self: center;
  }

  .hero {
    box-sizing: border-box;
    width: min(100% - 24px, 1180px);
    max-width: calc(100vw - 24px);
    overflow: hidden;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero h1 {
    max-width: 12.5ch;
    overflow-wrap: break-word;
  }

  .hero-lede {
    max-width: 100%;
  }

  .hero-actions,
  .hero-service-nav,
  .hero-seo-links {
    max-width: 100%;
  }

  .hero-service-nav,
  .hero-seo-links a {
    box-sizing: border-box;
  }

  .hero-service-nav > span,
  .hero-seo-links a {
    min-width: 0;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    max-width: calc(100vw - 20px);
    padding: 9px 10px;
    border-radius: 28px;
  }

  .brand {
    gap: 9px;
  }

  .header-actions {
    gap: 7px;
  }

  .language-switcher {
    padding: 3px;
    border-radius: 999px;
  }

  .language-current {
    min-width: 42px;
    min-height: 42px;
    border-radius: 50%;
    font-size: 0.78rem;
  }

  .language-menu {
    top: calc(100% + 9px);
    min-width: 50px;
    border-radius: 16px;
  }

  .language-menu button {
    min-width: 38px;
    min-height: 36px;
  }

  .menu-button {
    width: 46px;
    height: 46px;
  }

  .main-nav.is-open {
    right: 0;
    left: 0;
    width: 100%;
    padding: 14px;
    border-radius: 22px;
  }

  .main-nav a {
    min-height: 50px;
    padding: 12px 10px;
  }

  .hero {
    width: min(100% - 24px, 1180px);
    max-width: calc(100vw - 24px);
    gap: 26px;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .hero h1 {
    max-width: 11.8ch;
    font-size: clamp(2.25rem, 10.5vw, 3.12rem);
    line-height: 1.08;
  }

  .hero-lede,
  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-service-nav {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .hero-seo-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .hero-seo-links a {
    min-height: 44px;
    padding: 9px 10px;
    line-height: 1.15;
  }

  .hero-media {
    min-height: clamp(340px, 88vw, 500px);
  }
}

@media (max-width: 430px) {
  .site-header {
    width: calc(100% - 18px);
    max-width: calc(100vw - 18px);
    padding: 8px 9px;
  }

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

  .brand-text small {
    display: none;
  }

  .language-current {
    min-width: 40px;
    min-height: 40px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .main-nav.is-open {
    top: calc(100% + 8px);
  }

  .hero h1 {
    max-width: 10.8ch;
    font-size: clamp(2.06rem, 10vw, 2.7rem);
  }

  .hero-seo-links {
    grid-template-columns: 1fr;
  }
}

/* Sodo blog mobile header/menu extension. */
@media (max-width: 1120px) {
  .blog-cinematic-page ~ .site-footer,
  .blog-cinematic-page {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .blog-cinematic-page .hero-actions,
  .blog-cinematic-page .blog-cinematic-actions,
  .blog-category-metrics,
  .sodo-post-taxonomy {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .site-header .brand > span:last-child,
  .footer-brand > span:last-child {
    min-width: 0;
  }

  .site-header .brand > span:last-child strong,
  .site-header .brand > span:last-child small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .blog-cinematic-page .blog-category-metrics,
  .blog-cinematic-page .sodo-post-taxonomy {
    display: flex;
    gap: 9px;
  }

  .blog-cinematic-page .blog-category-metrics span,
  .blog-cinematic-page .sodo-post-taxonomy a {
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .blog-cinematic-page .blog-category-back {
    width: fit-content;
    max-width: 100%;
  }
}
/* End Sodo blog mobile header/menu extension. */

/* Legal pages responsive brand polish. */
body.legal-page .short-page,
.short-page:has(.legal-hero) {
  position: relative;
  overflow-x: clip;
  padding-top: clamp(18px, 3vw, 34px);
  background:
    radial-gradient(circle at 12% 8%, rgba(29, 127, 132, 0.10), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(217, 164, 65, 0.10), transparent 26%),
    linear-gradient(180deg, rgba(245, 253, 253, 0.82), rgba(255, 255, 255, 0.98) 36%, rgba(241, 250, 250, 0.86));
}

.short-page .legal-hero,
.short-page .legal-layout {
  box-sizing: border-box;
}

.short-page .legal-hero {
  align-items: stretch;
  padding: clamp(44px, 6vw, 86px) clamp(22px, 4vw, 42px) clamp(26px, 3.5vw, 40px);
  border: 1px solid rgba(29, 127, 132, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(228, 246, 247, 0.78)),
    var(--white);
  box-shadow: 0 30px 90px rgba(20, 56, 64, 0.10);
}

.short-page .legal-hero h1 {
  max-width: 11ch;
  margin: 0 0 18px;
  color: var(--charcoal);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
  text-wrap: balance;
}

.short-page .legal-hero .hero-lede {
  max-width: 68ch;
  color: #526776;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.short-page .legal-summary {
  align-self: end;
  border-color: rgba(29, 127, 132, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(10, 33, 39, 0.96), rgba(29, 127, 132, 0.90)),
    var(--charcoal);
  box-shadow: 0 24px 62px rgba(20, 56, 64, 0.18);
}

.short-page .legal-summary strong {
  color: #ffffff;
}

.short-page .legal-summary span {
  color: rgba(232, 249, 249, 0.84);
}

.short-page .legal-layout {
  grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 38px);
}

.short-page .legal-index {
  border-color: rgba(29, 127, 132, 0.14);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 52px rgba(20, 56, 64, 0.09);
}

.short-page .legal-index a:hover,
.short-page .legal-index a:focus-visible {
  color: var(--teal);
}

.short-page .legal-card {
  min-width: 0;
  border-color: rgba(29, 127, 132, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 78px rgba(20, 56, 64, 0.10);
}

.short-page .policy-section h2 {
  color: var(--charcoal);
  text-wrap: balance;
}

.short-page .policy-section p,
.short-page .policy-section li {
  max-width: 72ch;
  color: #526776;
  text-wrap: pretty;
}

.short-page .legal-contact,
.short-page .contact-card .accessibility-contact-list {
  max-width: 100%;
}

.short-page .legal-contact a,
.short-page .accessibility-contact-item {
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .short-page .legal-hero,
  .short-page .legal-layout {
    grid-template-columns: 1fr;
  }

  .short-page .legal-summary {
    align-self: stretch;
  }

  .short-page .legal-index {
    position: static;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px;
    border-radius: 18px;
    scrollbar-width: thin;
  }

  .short-page .legal-index p {
    flex: 0 0 auto;
    align-self: center;
    margin: 0 6px 0 0;
    white-space: nowrap;
  }

  .short-page .legal-index a {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 10px 13px;
    border: 1px solid rgba(29, 127, 132, 0.12);
    border-radius: 999px;
    background: rgba(232, 249, 249, 0.78);
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  body.legal-page .short-page,
.short-page:has(.legal-hero) {
    padding-top: 10px;
  }

  .short-page .legal-hero,
  .short-page .legal-layout,
  .short-page .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .short-page .legal-hero {
    gap: 22px;
    padding: 30px 18px 22px;
    border-radius: 24px;
  }

  .short-page .legal-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 13vw, 4rem);
    line-height: 1.02;
  }

  .short-page .legal-hero .hero-lede {
    font-size: 1rem;
  }

  .short-page .legal-summary,
  .short-page .legal-card,
  .short-page .legal-contact {
    border-radius: 18px;
  }

  .short-page .legal-card {
    padding: 22px 18px;
  }

  .short-page .policy-section {
    padding: 24px 0;
  }

  .short-page .policy-section h2 {
    font-size: clamp(1.45rem, 8vw, 2rem);
    line-height: 1.12;
  }

  .short-page .policy-section p,
  .short-page .policy-section li {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .short-page .policy-section ul {
    padding-left: 18px;
  }

  .short-page .contact-card .accessibility-contact-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .short-page .contact-card .accessibility-contact-item {
    justify-content: flex-start;
    border-radius: 14px;
    white-space: normal;
  }
}

@media (max-width: 430px) {
  .short-page .legal-hero,
  .short-page .legal-layout,
  .short-page .site-footer {
    width: min(100% - 18px, 1180px);
  }

  .short-page .legal-hero {
    padding: 26px 15px 20px;
  }

  .short-page .legal-card {
    padding: 20px 15px;
  }
}
/* Legal section index mobile alignment fix. */
@media (max-width: 980px) {
  .short-page .legal-index {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding: 14px;
  }

  .short-page .legal-index p {
    grid-column: 1 / -1;
    justify-self: center;
    margin: 0 0 2px;
    text-align: center;
  }

  .short-page .legal-index a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 44px;
    padding: 10px 12px;
    text-align: center;
    white-space: normal;
    line-height: 1.15;
  }
}

@media (max-width: 380px) {
  .short-page .legal-index {
    grid-template-columns: 1fr;
  }
}

/* Cash calculator page stable layout reset. */
.short-page .calculator-page-grid {
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: clamp(24px, 3vw, 32px);
  align-items: start;
}

.short-page .calculator-page-grid .calculator-form {
  min-height: 0;
}

.short-page .calculator-page-grid .calculator-results {
  min-height: 0;
}

.short-page .calculator-tool {
  min-height: 0;
  align-content: start;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: clamp(22px, 3vw, 32px);
  padding: clamp(24px, 3vw, 34px);
}

.short-page .calculator-tool-copy {
  grid-column: 1 / -1;
  padding-right: clamp(90px, 12vw, 180px);
}

.short-page .calculator-tool-copy h3 {
  max-width: 26ch;
}

.short-page .calculator-form.compact {
  grid-column: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-self: start;
}

.short-page .calculator-results.compact {
  grid-column: 2;
  align-self: start;
  width: 100%;
  min-height: 0;
}

.short-page .calculator-results.compact .estimate-notice {
  margin-bottom: 14px;
}

.short-page .calculator-results.compact dl {
  gap: 8px;
}

.short-page .calculator-results.compact dl div {
  padding: 12px 0;
}

@media (max-width: 1120px) {
  .short-page .calculator-page-grid,
  .short-page .calculator-tool {
    grid-template-columns: 1fr;
  }

  .short-page .calculator-tool-copy {
    padding-right: 0;
  }

  .short-page .calculator-form.compact,
  .short-page .calculator-results.compact {
    grid-column: 1;
  }
}

@media (max-width: 680px) {
  .short-page .calculator-page-grid,
  .short-page .calculator-suite,
  .short-page .calculator-hero,
  .short-page .calculator-promo {
    width: min(100% - 24px, 1120px);
  }

  .short-page .calculator-form.compact {
    grid-template-columns: 1fr;
  }

  .short-page .calculator-tool {
    padding: 20px 16px;
  }
}

/* Cash calculator lower-card density correction. */
@media (min-width: 1121px) {
  .short-page .calculator-suite {
    width: min(1180px, calc(100% - 48px));
    max-width: 1180px;
  }

  .short-page .calculator-tool {
    grid-template-columns: minmax(220px, 0.72fr) minmax(370px, 1.08fr) minmax(330px, 0.9fr);
    gap: clamp(18px, 2.2vw, 28px);
    padding: clamp(24px, 3vw, 34px);
    align-items: start;
  }

  .short-page .calculator-tool-copy {
    grid-column: 1;
    padding-right: 0;
  }

  .short-page .calculator-form.compact {
    grid-column: 2;
  }

  .short-page .calculator-results.compact {
    grid-column: 3;
  }
}

.short-page .calculator-results.compact {
  padding: clamp(18px, 2.1vw, 24px);
}

.short-page .calculator-results.compact h2 {
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1;
}

.short-page .calculator-results.compact p {
  line-height: 1.48;
}

.short-page .calculator-results.compact .estimate-notice {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px 12px;
  font-size: 0.92rem;
  line-height: 1.42;
}

.short-page .calculator-results.compact dl {
  margin-top: 14px;
  margin-bottom: 14px;
  gap: 4px;
}

.short-page .calculator-results.compact dl div {
  padding: 9px 0;
}

.short-page .calculator-results.compact .share-result-btn {
  min-height: 42px;
}

.short-page .calculator-results.compact .share-status:empty {
  display: none;
}

.short-page .calculator-tool-copy .eyebrow {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
}

.short-page .calculator-tool-copy h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
}

@media (max-width: 1120px) {
  .short-page .calculator-tool-copy,
  .short-page .calculator-form.compact,
  .short-page .calculator-results.compact {
    grid-column: 1;
  }
}
