:root {
  --black: #050505;
  --charcoal: #111112;
  --ink: #1b1a18;
  --gold: #d8a43d;
  --gold-light: #f4d47d;
  --blue: #0739c6;
  --red: #df141c;
  --cream: #f8f4ec;
  --muted: #77736c;
  --line: rgba(216, 164, 61, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  top: 0 !important;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  padding: 10px clamp(20px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.35));
  color: #fff;
  backdrop-filter: blur(12px);
}

.brand img {
  width: clamp(118px, 11vw, 172px);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.86);
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-has-submenu::before {
  position: absolute;
  content: "";
  left: -18px;
  right: -18px;
  top: 100%;
  height: 16px;
}

.nav-has-submenu > .nav-parent {
  display: inline-flex;
  align-items: center;
  padding-right: 18px;
}

.nav-has-submenu > .nav-parent::before {
  position: absolute;
  content: "v";
  right: 0;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--gold-light);
  color: transparent;
  transform: translateY(-42%);
  transition: transform 180ms ease;
}

.nav-links a::after,
.nav-parent::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links .active::after {
  transform: scaleX(1);
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 250px;
  padding: 16px 12px 12px;
  border: 1px solid rgba(216, 164, 61, 0.45);
  background:
    radial-gradient(circle at 0% 0%, rgba(7, 57, 198, 0.22), transparent 36%),
    radial-gradient(circle at 100% 0%, rgba(223, 20, 28, 0.18), transparent 34%),
    rgba(3, 3, 3, 0.96);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  opacity: 0;
  transform: translate(-50%, 10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-submenu::before {
  position: absolute;
  content: "";
  left: 18px;
  right: 18px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--red));
}

.nav-has-submenu:hover .nav-submenu,
.nav-has-submenu:focus-within .nav-submenu,
.nav-has-submenu.submenu-open .nav-submenu {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.nav-has-submenu:hover > .nav-parent::before,
.nav-has-submenu:focus-within > .nav-parent::before,
.nav-has-submenu.submenu-open > .nav-parent::before {
  transform: translateY(-42%) rotate(180deg);
}

.nav-submenu a {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

.nav-submenu a:last-child {
  border-bottom: 0;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--gold-light);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.language-switcher {
  position: relative;
}

.language-select {
  min-height: 44px;
  padding: 0 34px 0 14px;
  min-width: 118px;
  border: 1px solid rgba(244, 212, 125, 0.62);
  border-radius: 0;
  color: var(--gold-light);
  background:
    linear-gradient(135deg, rgba(7, 57, 198, 0.18), rgba(216, 164, 61, 0.08), rgba(223, 20, 28, 0.14)),
    rgba(0, 0, 0, 0.28);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
}

.language-switcher::after {
  position: absolute;
  content: "v";
  right: 12px;
  top: 50%;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 900;
  transform: translateY(-55%);
  pointer-events: none;
}

.language-select option {
  color: #111;
  background: #fff;
}

.menu-toggle {
  display: none;
  place-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(244, 212, 125, 0.62);
  background:
    linear-gradient(135deg, rgba(7, 57, 198, 0.18), rgba(216, 164, 61, 0.08), rgba(223, 20, 28, 0.14)),
    rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold-light);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

#google_translate_element {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.goog-te-banner-frame.skiptranslate,
body > .skiptranslate {
  display: none !important;
}

.header-cta,
.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-position 220ms ease;
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(216, 164, 61, 0.24);
}

.button::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.34) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
  pointer-events: none;
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(120%);
}

.header-cta {
  color: var(--gold-light);
}

.header-phone {
  position: relative;
  min-width: 184px;
  overflow: hidden;
}

.header-phone span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.header-phone .phone-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  letter-spacing: 1.15px;
  white-space: nowrap;
}

.header-phone:hover .phone-default,
.header-phone:focus-visible .phone-default {
  opacity: 0;
  transform: translateY(-14px);
}

.header-phone:hover .phone-hover,
.header-phone:focus-visible .phone-hover {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-color: #06080d;
  overflow: hidden;
  transform: scale(1.02);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  animation: heroSlideshow 24s infinite;
  transform: scale(1);
}

.hero-slide-night {
  opacity: 1;
  background-image: url("assets/hero-luxury-home.webp");
}

.hero-slide-day {
  background-image: url("assets/property-villa.webp");
  animation-delay: 6s;
}

.hero-slide-estate {
  background-image: url("assets/property-estate.webp");
  animation-delay: 12s;
}

.hero-slide-skyview {
  background-image: url("assets/property-penthouse.webp");
  animation-delay: 18s;
}

@keyframes heroSlideshow {
  0% {
    opacity: 1;
    transform: scale(1.035);
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    transform: scale(1.09);
  }
  100% {
    opacity: 0;
    transform: scale(1.09);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.025);
  }
}

@keyframes logoPanelSheen {
  0%,
  42% {
    background-position: -160% 0, center, center;
  }

  72%,
  100% {
    background-position: 230% 0, center, center;
  }
}

@keyframes logoOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoHaloDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-14px, 18px, 0) scale(1.08);
  }
}

.hero-overlay {
  background:
    radial-gradient(circle at 8% 42%, rgba(7, 57, 198, 0.34), transparent 30%),
    radial-gradient(circle at 92% 40%, rgba(223, 20, 28, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 5vw, 72px);
  padding-top: clamp(210px, 14vw, 260px);
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 38px;
  height: 2px;
  margin-right: 12px;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--red));
}

.center {
  text-align: center;
}

.center::before {
  display: block;
  margin: 0 auto 14px;
}

.intro .section-kicker,
.lead-panel .section-kicker,
.about-lead .section-kicker,
.home-value .section-kicker,
.home-tools-teaser .section-kicker,
.cta .section-kicker {
  color: #91610d;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 24px rgba(45, 32, 13, 0.18);
}

.intro .section-kicker::before,
.lead-panel .section-kicker::before,
.about-lead .section-kicker::before,
.home-value .section-kicker::before,
.home-tools-teaser .section-kicker::before,
.cta .section-kicker::before {
  box-shadow: 0 7px 18px rgba(7, 57, 198, 0.2), 0 7px 18px rgba(223, 20, 28, 0.14);
}

.lead-intro .section-kicker.center::before {
  width: 52px;
  height: 3px;
  margin-bottom: 10px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  font-size: 18px;
  line-height: 1.7;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.6vw, 74px);
  line-height: 1.04;
}

h1 span {
  display: block;
  color: var(--gold-light);
  font-style: italic;
}

.hero-creole {
  margin: -6px 0 24px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.1vw, 42px);
  font-style: italic;
  line-height: 1.15;
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-gold {
  color: #171004;
  background: linear-gradient(135deg, #f8db87, var(--gold));
  box-shadow: 0 20px 50px rgba(216, 164, 61, 0.22);
}

.button-dark {
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(var(--black), var(--black)) padding-box,
    linear-gradient(90deg, var(--blue), var(--gold), var(--red)) border-box;
  border: 1px solid transparent;
}

.button-phone {
  min-width: 230px;
  color: var(--gold-light);
  font-size: 15px;
  letter-spacing: 2px;
}

.button-call-swap {
  min-width: 218px;
}

.button-call-swap span {
  transition: transform 180ms ease, opacity 180ms ease;
}

.button-call-swap .call-hover {
  position: absolute;
  opacity: 0;
  transform: translateY(16px);
  letter-spacing: 1.8px;
}

.button-call-swap:hover .call-default,
.button-call-swap:focus-visible .call-default {
  opacity: 0;
  transform: translateY(-16px);
}

.button-call-swap:hover .call-hover,
.button-call-swap:focus-visible .call-hover {
  opacity: 1;
  transform: translateY(0);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 96px);
  background:
    linear-gradient(90deg, rgba(7, 57, 198, 0.08), transparent 18%),
    linear-gradient(270deg, rgba(223, 20, 28, 0.08), transparent 18%),
    var(--cream);
}

.intro h2,
.services h2,
.lead-card h2,
.about-lead h2,
.cta h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.5vw, 50px);
}

.intro-copy p:not(.section-kicker),
.lead-card p,
.about-lead p,
.cta p {
  max-width: 620px;
  color: #59544c;
  font-size: 18px;
  line-height: 1.75;
}

.signature {
  margin-top: 24px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-style: italic;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-grid article,
.service-card,
.lead-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 70px rgba(17, 17, 18, 0.08);
}

.trust-grid article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 34px 24px;
  text-align: center;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, rgba(7, 57, 198, 0.28), rgba(216, 164, 61, 0.45), rgba(223, 20, 28, 0.24)) border-box;
  border: 1px solid transparent;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.trust-grid article::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 164, 61, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(7, 57, 198, 0.06), transparent 44%, rgba(223, 20, 28, 0.06));
  transition: opacity 220ms ease;
}

.trust-grid article::after {
  position: absolute;
  content: "";
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--red));
  transform: scaleX(0.25);
  transform-origin: center;
  transition: transform 220ms ease;
}

.trust-grid article:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 90px rgba(17, 17, 18, 0.16);
}

.trust-grid article:hover::before {
  opacity: 1;
}

.trust-grid article:hover::after {
  transform: scaleX(1);
}

.trust-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  border: 6px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(17, 17, 18, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.trust-grid article:hover .trust-icon {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 22px 54px rgba(17, 17, 18, 0.24);
}

.blue {
  background: var(--blue);
}

.red {
  background: var(--red);
}

.gold {
  background: var(--gold);
  color: #150f04;
}

.trust-grid h3,
.service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.trust-grid p,
.service-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.services,
.lead-panel,
.creole-cta,
.home-value,
.social-feed,
.mortgage-calculator,
.service-partners {
  padding: clamp(70px, 8vw, 110px) clamp(20px, 6vw, 96px);
  text-align: center;
}

.creole-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: #fff;
  text-align: left;
  background:
    radial-gradient(circle at 8% 50%, rgba(7, 57, 198, 0.28), transparent 26%),
    radial-gradient(circle at 92% 50%, rgba(223, 20, 28, 0.22), transparent 25%),
    linear-gradient(135deg, #050505, #17110a);
  border-top: 1px solid rgba(216, 164, 61, 0.32);
  border-bottom: 1px solid rgba(216, 164, 61, 0.32);
}

.creole-cta h2 {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: clamp(30px, 4vw, 50px);
}

.creole-cta p:not(.section-kicker) {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.services {
  color: #fff;
  background:
    radial-gradient(circle at 0% 20%, rgba(7, 57, 198, 0.18), transparent 28%),
    radial-gradient(circle at 100% 80%, rgba(223, 20, 28, 0.16), transparent 25%),
    var(--black);
}

.service-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 32px;
  color: #fff;
  text-align: left;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.04);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-card::after {
  position: absolute;
  content: "";
  inset: auto -22% -46% 26%;
  height: 130px;
  opacity: 0;
  background: radial-gradient(circle, rgba(216, 164, 61, 0.24), transparent 66%);
  transform: translateY(20px) scale(0.82);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.24);
}

.service-card:hover::after,
.service-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-number {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.service-icon {
  position: absolute;
  top: 28px;
  right: 28px;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  color: var(--gold-light);
  border: 1px solid rgba(216, 164, 61, 0.34);
  background:
    linear-gradient(145deg, rgba(7, 57, 198, 0.22), rgba(223, 20, 28, 0.12)),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.045), 0 18px 42px rgba(0, 0, 0, 0.18);
  transition: transform 240ms ease, color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.service-icon svg {
  width: 38px;
  height: 38px;
  overflow: visible;
}

.icon-fill {
  fill: currentColor;
  opacity: 0.1;
}

.icon-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  transition: transform 240ms ease, stroke 240ms ease, opacity 240ms ease;
}

.service-card:hover .service-icon,
.service-card:focus-visible .service-icon {
  color: #fff;
  border-color: rgba(216, 164, 61, 0.78);
  box-shadow: inset 0 0 24px rgba(216, 164, 61, 0.12), 0 24px 56px rgba(0, 0, 0, 0.25);
}

.service-card.buy:hover .service-icon,
.service-card.buy:focus-visible .service-icon {
  transform: translateY(-5px) rotate(-3deg);
}

.service-card.sell:hover .service-icon,
.service-card.sell:focus-visible .service-icon {
  transform: translateY(-5px) rotate(3deg);
}

.service-card.invest:hover .service-icon,
.service-card.invest:focus-visible .service-icon {
  transform: translateY(-6px) scale(1.04);
}

.service-card.buy:hover .icon-roof,
.service-card.buy:focus-visible .icon-roof {
  transform: translateY(-3px);
}

.service-card.buy:hover .icon-key,
.service-card.buy:focus-visible .icon-key {
  transform: translate(3px, -2px);
}

.service-card.sell:hover .icon-graph,
.service-card.sell:focus-visible .icon-graph {
  transform: translateY(-4px);
}

.service-card.sell:hover .icon-tag,
.service-card.sell:focus-visible .icon-tag {
  transform: translate(2px, -2px);
}

.service-card.invest:hover .icon-pin,
.service-card.invest:focus-visible .icon-pin {
  transform: translateY(-4px);
}

.service-card.invest:hover .icon-route,
.service-card.invest:focus-visible .icon-route {
  transform: translateX(4px);
}

.service-card.buy {
  border-top: 4px solid var(--blue);
}

.service-card.sell {
  border-top: 4px solid var(--red);
}

.service-card.invest {
  border-top: 4px solid var(--gold);
}

.service-card p {
  color: rgba(255, 255, 255, 0.74);
}

.lead-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(90deg, rgba(7, 57, 198, 0.08), transparent 18%),
    linear-gradient(270deg, rgba(223, 20, 28, 0.08), transparent 18%),
    #e6e2da;
  text-align: left;
}

.lead-intro {
  grid-column: 1 / -1;
  width: min(920px, 100%);
  margin: 0 auto clamp(6px, 1.4vw, 14px);
  text-align: center;
}

.lead-intro h2 {
  margin: 0 auto 16px;
  max-width: 860px;
  font-size: clamp(30px, 3.5vw, 50px);
}

.lead-intro p:not(.section-kicker) {
  max-width: 780px;
  margin: 0 auto;
  color: #59544c;
  font-size: 18px;
  line-height: 1.75;
}

.lead-card {
  min-height: 520px;
  padding: clamp(30px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lead-card h2 {
  max-width: 580px;
}

.lead-card ul {
  display: grid;
  gap: 12px;
  margin: 8px 0 28px;
  padding: 0;
  list-style: none;
}

.lead-card li {
  position: relative;
  padding-left: 26px;
  color: #39352f;
  font-weight: 700;
}

.lead-card li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0.68em;
  width: 12px;
  height: 2px;
  background: var(--gold);
}

.lead-buy {
  border-top: 5px solid var(--blue);
}

.lead-sell {
  color: #fff;
  border-top: 5px solid var(--red);
  background:
    radial-gradient(circle at 100% 10%, rgba(223, 20, 28, 0.18), transparent 28%),
    linear-gradient(135deg, #080808, #17110a);
}

.lead-sell p,
.lead-sell li {
  color: rgba(255, 255, 255, 0.78);
}

.about-lead {
  display: grid;
  grid-template-columns: minmax(300px, 460px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: clamp(76px, 9vw, 128px) clamp(20px, 6vw, 96px);
  background:
    radial-gradient(circle at 10% 14%, rgba(7, 57, 198, 0.1), transparent 26%),
    radial-gradient(circle at 92% 20%, rgba(223, 20, 28, 0.08), transparent 24%),
    #fff;
}

.portrait-feature {
  position: relative;
  display: grid;
  min-height: 560px;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(7, 57, 198, 0.5), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(223, 20, 28, 0.36), transparent 28%),
    radial-gradient(circle at 50% 84%, rgba(216, 164, 61, 0.24), transparent 38%),
    linear-gradient(145deg, #050505, #15100b 58%, #050505);
  border: 1px solid rgba(216, 164, 61, 0.58);
  box-shadow: 0 38px 110px rgba(7, 57, 198, 0.16), 0 24px 80px rgba(0, 0, 0, 0.22);
}

.portrait-feature::before {
  position: absolute;
  content: "";
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(244, 212, 125, 0.32);
  z-index: 4;
}

.portrait-feature::after {
  position: absolute;
  content: "";
  width: 190px;
  height: 190px;
  right: -58px;
  top: -58px;
  border: 1px solid rgba(216, 164, 61, 0.34);
  border-radius: 50%;
  animation: logoHaloDrift 9s ease-in-out infinite;
}

.logo-feature {
  align-content: center;
  gap: 28px;
}

.logo-orbit {
  position: absolute;
  inset: 28px;
  pointer-events: none;
  border: 1px solid rgba(244, 212, 125, 0.14);
  border-radius: 50%;
  opacity: 0.9;
  animation: logoOrbitSpin 18s linear infinite;
}

.logo-orbit span {
  position: absolute;
  display: block;
  border-radius: 50%;
  box-shadow: 0 0 30px currentColor;
}

.logo-orbit span:nth-child(1) {
  top: 10%;
  left: 12%;
  width: 12px;
  height: 12px;
  color: var(--blue);
  background: var(--blue);
}

.logo-orbit span:nth-child(2) {
  right: 7%;
  top: 42%;
  width: 10px;
  height: 10px;
  color: var(--red);
  background: var(--red);
}

.logo-orbit span:nth-child(3) {
  left: 46%;
  bottom: -5px;
  width: 14px;
  height: 14px;
  color: var(--gold);
  background: var(--gold);
}

.logo-stage {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 330px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(244, 212, 125, 0.45);
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.13) 42%, transparent 58%) -160% 0 / 70% 100% no-repeat,
    radial-gradient(circle at 50% 48%, rgba(244, 212, 125, 0.13), transparent 44%),
    rgba(0, 0, 0, 0.38);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.28);
  animation: logoPanelSheen 5.8s ease-in-out infinite;
}

.logo-stage::before,
.logo-stage::after {
  position: absolute;
  content: "";
  inset: 18px;
  pointer-events: none;
}

.logo-stage::before {
  border-top: 3px solid var(--blue);
  border-left: 3px solid var(--blue);
  opacity: 0.86;
}

.logo-stage::after {
  border-right: 3px solid var(--red);
  border-bottom: 3px solid var(--gold);
  opacity: 0.86;
}

.logo-stage img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 28px rgba(216, 164, 61, 0.24));
  animation: logoFloat 4.8s ease-in-out infinite;
}

.logo-nameplate {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 7px;
  margin: 0 clamp(8px, 3vw, 20px);
  padding: 22px 24px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 57, 198, 0.22), transparent 40%, rgba(223, 20, 28, 0.2)),
    rgba(5, 5, 5, 0.9);
  border: 1px solid rgba(216, 164, 61, 0.54);
}

.logo-nameplate strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 500;
}

.logo-nameplate span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.specialty-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.specialty-chips span {
  padding: 10px 14px;
  border: 1px solid rgba(216, 164, 61, 0.42);
  border-left: 4px solid var(--blue);
  color: #2c2821;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(17, 17, 18, 0.06);
}

.specialty-chips span:nth-child(even) {
  border-left-color: var(--red);
}

.specialty-chips span:nth-child(3n) {
  border-left-color: var(--gold);
}

.home-value {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: clamp(54px, 6vw, 82px);
  text-align: left;
  background:
    linear-gradient(90deg, rgba(7, 57, 198, 0.08), transparent 22%),
    linear-gradient(270deg, rgba(223, 20, 28, 0.08), transparent 22%),
    #e6e2da;
}

.home-value h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.7vw, 48px);
}

.home-value p {
  max-width: 620px;
  color: #59544c;
  font-size: 18px;
  line-height: 1.75;
}

.home-value ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.home-value li {
  position: relative;
  padding-left: 28px;
  color: #39352f;
  font-weight: 800;
}

.home-value li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0.7em;
  width: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--red));
}

.homebot-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  max-width: 760px;
  width: 100%;
  justify-self: end;
  padding: clamp(16px, 2.8vw, 28px);
  border: 1px solid rgba(216, 164, 61, 0.48);
  background:
    linear-gradient(135deg, rgba(7, 57, 198, 0.06), transparent 36%),
    linear-gradient(315deg, rgba(223, 20, 28, 0.05), transparent 36%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 68px rgba(17, 17, 18, 0.12);
}

.homebot-card::before {
  position: absolute;
  content: "";
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--blue), var(--gold), var(--red));
}

.homebot-card::after {
  position: absolute;
  content: "";
  right: 18px;
  bottom: 16px;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--red));
  opacity: 0.68;
}

#homebot_homeowner {
  position: relative;
  z-index: 1;
  min-height: 230px;
}

#homebot_homeowner iframe {
  min-height: 230px !important;
  max-height: 300px;
}

.social-feed {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  text-align: left;
  color: #fff;
  background:
    radial-gradient(circle at 12% 28%, rgba(7, 57, 198, 0.26), transparent 28%),
    radial-gradient(circle at 88% 68%, rgba(223, 20, 28, 0.24), transparent 26%),
    linear-gradient(135deg, #050505, #15120d 58%, #090909);
  border-top: 1px solid rgba(216, 164, 61, 0.24);
  border-bottom: 1px solid rgba(216, 164, 61, 0.24);
}

.social-feed h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(30px, 3.65vw, 50px);
}

.social-feed p:not(.section-kicker) {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.75;
}

.youtube-placeholder {
  display: block;
  color: inherit;
  text-decoration: none;
}

.youtube-frame {
  position: relative;
  overflow: hidden;
  min-height: clamp(260px, 30vw, 430px);
  border: 1px solid rgba(244, 212, 125, 0.48);
  background:
    linear-gradient(135deg, rgba(7, 57, 198, 0.78), transparent 36%),
    linear-gradient(315deg, rgba(223, 20, 28, 0.68), transparent 40%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.9)),
    url("assets/property-villa.webp") center/cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.youtube-frame::before {
  position: absolute;
  content: "";
  inset: 18px;
  border: 1px solid rgba(244, 212, 125, 0.34);
}

.youtube-frame::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--red));
}

.youtube-placeholder:hover .youtube-frame,
.youtube-placeholder:focus-visible .youtube-frame {
  transform: translateY(-6px);
  border-color: rgba(244, 212, 125, 0.84);
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.42), 0 0 34px rgba(216, 164, 61, 0.16);
}

.youtube-window {
  position: absolute;
  left: clamp(22px, 4vw, 52px);
  right: clamp(22px, 4vw, 52px);
  bottom: clamp(26px, 4vw, 58px);
  z-index: 1;
  display: grid;
  gap: 10px;
}

.youtube-tag,
.youtube-caption {
  width: max-content;
  max-width: 100%;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.youtube-title {
  max-width: 560px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.06;
}

.youtube-caption {
  color: rgba(255, 255, 255, 0.74);
}

.youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 82px;
  height: 82px;
  border: 2px solid rgba(244, 212, 125, 0.9);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(244, 212, 125, 0.94), rgba(216, 164, 61, 0.82));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -50%);
}

.youtube-play::before {
  position: absolute;
  content: "";
  left: 34px;
  top: 25px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 22px solid #15100a;
}

.home-tools-teaser {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(56px, 6vw, 88px) clamp(20px, 6vw, 96px);
  text-align: left;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 20%, rgba(7, 57, 198, 0.16), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(223, 20, 28, 0.12), transparent 28%),
    #e6e2da;
}

.home-tools-teaser::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--red));
}

.home-tools-copy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(216, 164, 61, 0.42);
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.96), rgba(19, 16, 12, 0.9)) padding-box,
    linear-gradient(135deg, rgba(7, 57, 198, 0.52), rgba(216, 164, 61, 0.42), rgba(223, 20, 28, 0.46)) border-box;
  box-shadow: 0 30px 92px rgba(17, 17, 18, 0.22);
}

.home-tools-content {
  min-width: 0;
}

.home-tools-content .section-kicker {
  color: var(--gold-light);
  text-shadow: none;
}

.home-tools-teaser h2,
.tools-hero h1 {
  max-width: 740px;
  margin-bottom: 18px;
}

.home-tools-teaser h2 {
  color: #fff7dc;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.68),
    0 0 22px rgba(216, 164, 61, 0.2);
}

.home-tools-teaser p:not(.section-kicker),
.tools-hero p:not(.section-kicker) {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.75;
}

.home-tools-teaser p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.tools-hero p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.home-tools-button {
  margin-top: 22px;
}

.tools-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tool-preview-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 26px 22px;
  border: 1px solid rgba(216, 164, 61, 0.34);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 164, 61, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.tool-preview-card::after {
  position: absolute;
  content: "";
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--red));
  transform: scaleX(0.38);
  transform-origin: left;
  transition: transform 220ms ease;
}

.tool-preview-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 212, 125, 0.74);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

.tool-preview-card:hover::after {
  transform: scaleX(1);
}

.tool-preview-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  color: var(--gold-light);
  border: 1px solid rgba(216, 164, 61, 0.44);
  background:
    linear-gradient(145deg, rgba(7, 57, 198, 0.2), rgba(223, 20, 28, 0.12)),
    rgba(255, 255, 255, 0.05);
}

.tool-preview-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tool-preview-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
}

.tool-preview-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

.tools-hero {
  min-height: 620px;
  padding: clamp(170px, 19vw, 230px) clamp(20px, 6vw, 96px) clamp(80px, 8vw, 120px);
  color: #fff;
  text-align: left;
  background:
    radial-gradient(circle at 10% 22%, rgba(7, 57, 198, 0.34), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(223, 20, 28, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.54)),
    url("assets/property-estate.webp") center/cover;
}

.tools-hero h1 {
  font-size: clamp(40px, 5.4vw, 78px);
  max-width: 780px;
}

.tool-anchor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.mortgage-calculator {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(7, 57, 198, 0.08), transparent 26%),
    linear-gradient(270deg, rgba(223, 20, 28, 0.08), transparent 24%),
    #f8f4ec;
}

.tools-main .mortgage-calculator {
  border-bottom: 1px solid rgba(216, 164, 61, 0.24);
}

.mortgage-calculator h2 {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(30px, 3.65vw, 50px);
}

.mortgage-calculator p:not(.section-kicker) {
  max-width: 620px;
  color: #59544c;
  font-size: 18px;
  line-height: 1.75;
}

.calculator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.calculator-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(216, 164, 61, 0.48);
  background:
    radial-gradient(circle at 0% 0%, rgba(7, 57, 198, 0.1), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(223, 20, 28, 0.1), transparent 28%),
    #fff;
  box-shadow: 0 28px 72px rgba(17, 17, 18, 0.12);
}

.calculator-card::before {
  position: absolute;
  content: "";
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--red));
}

.calculator-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.calculator-grid label {
  display: grid;
  gap: 8px;
}

.calculator-grid span {
  color: #342d22;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.calculator-grid input,
.calculator-grid select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(52, 45, 34, 0.18);
  color: #1f1b16;
  background: rgba(248, 244, 236, 0.74);
  font: inherit;
  font-size: 17px;
}

.calculator-grid input:focus,
.calculator-grid select:focus {
  outline: 2px solid rgba(216, 164, 61, 0.62);
  outline-offset: 2px;
  border-color: rgba(216, 164, 61, 0.74);
}

.calculator-results {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 0% 0%, rgba(7, 57, 198, 0.22), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(223, 20, 28, 0.18), transparent 32%),
    #080808;
}

.result-total {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(244, 212, 125, 0.28);
}

.result-total span {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.result-total strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.calculator-results dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.calculator-results dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.calculator-results dt,
.calculator-results dd {
  margin: 0;
  font-size: 15px;
}

.calculator-results dt {
  color: rgba(255, 255, 255, 0.7);
}

.calculator-results dd {
  color: #fff;
  font-weight: 900;
}

.calculator-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}

.seller-calculator {
  display: grid;
  grid-template-columns: minmax(340px, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  text-align: left;
  color: #fff;
  background:
    radial-gradient(circle at 8% 20%, rgba(7, 57, 198, 0.2), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(223, 20, 28, 0.18), transparent 28%),
    linear-gradient(135deg, #050505, #17120b);
}

.seller-calculator h2 {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(30px, 3.65vw, 50px);
}

.seller-calculator p:not(.section-kicker) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.75;
}

.seller-calculator .calculator-card {
  background:
    radial-gradient(circle at 0% 0%, rgba(7, 57, 198, 0.13), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(223, 20, 28, 0.13), transparent 28%),
    #fff;
}

.seller-calculator .calculator-copy {
  order: 2;
}

.seller-calculator .calculator-card {
  order: 1;
}

.tools-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
  color: #fff;
  background: #080808;
}

.tools-support article {
  min-height: 240px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(216, 164, 61, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.tools-support span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tools-support h2,
.tools-support h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 500;
}

.tools-support p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.service-partners {
  padding: clamp(46px, 5vw, 68px) clamp(20px, 6vw, 96px);
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(7, 57, 198, 0.22), transparent 25%),
    radial-gradient(circle at 88% 28%, rgba(223, 20, 28, 0.18), transparent 25%),
    linear-gradient(135deg, #050505, #17120b);
}

.service-partners .section-kicker {
  margin-bottom: 12px;
}

.service-partners h2 {
  max-width: 980px;
  margin: 0 auto 12px;
  font-size: clamp(28px, 3vw, 42px);
}

.partners-intro {
  max-width: 700px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 40px);
  text-align: left;
}

.partner-grid-single {
  grid-template-columns: minmax(0, 600px);
  justify-content: center;
}

.partner-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(216, 164, 61, 0.42);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.partner-card::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 164, 61, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(7, 57, 198, 0.1), transparent 46%, rgba(223, 20, 28, 0.1));
  transition: opacity 220ms ease;
}

.partner-card::after {
  position: absolute;
  content: "";
  width: 120px;
  height: 120px;
  right: -42px;
  bottom: -42px;
  border: 1px solid rgba(216, 164, 61, 0.32);
  border-radius: 50%;
  transition: transform 220ms ease, border-color 220ms ease;
}

.partner-card:hover {
  transform: translateY(-10px);
  border-color: rgba(244, 212, 125, 0.8);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.38);
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-card:hover::after {
  transform: scale(1.18);
  border-color: rgba(244, 212, 125, 0.68);
}

.partner-card.realty {
  border-top: 5px solid var(--blue);
}

.partner-card.mortgage {
  border-top: 5px solid var(--red);
}

.partner-card-featured {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: clamp(24px, 3.4vw, 34px);
  padding-inline: clamp(26px, 5vw, 54px);
  text-align: center;
  background:
    radial-gradient(circle at 86% 30%, rgba(223, 20, 28, 0.18), transparent 34%),
    radial-gradient(circle at 18% 0%, rgba(216, 164, 61, 0.16), transparent 30%),
    rgba(255, 255, 255, 0.055);
}

.partner-card-featured::after {
  width: 132px;
  height: 132px;
  right: -48px;
  bottom: -48px;
}

.partner-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  color: var(--gold-light);
  border: 1px solid rgba(216, 164, 61, 0.48);
  background:
    linear-gradient(145deg, rgba(7, 57, 198, 0.26), rgba(223, 20, 28, 0.14)),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.05),
    0 20px 48px rgba(0, 0, 0, 0.22);
  transition: transform 240ms ease, color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.partner-icon svg {
  width: 40px;
  height: 40px;
  overflow: visible;
}

.partner-icon-fill {
  fill: currentColor;
  opacity: 0.1;
}

.partner-icon-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  transition: transform 240ms ease, opacity 240ms ease;
}

.partner-card-featured:hover .partner-icon,
.partner-card-featured:focus-within .partner-icon {
  color: #fff;
  border-color: rgba(244, 212, 125, 0.82);
  transform: translateY(-6px);
  box-shadow:
    inset 0 0 30px rgba(216, 164, 61, 0.14),
    0 28px 62px rgba(0, 0, 0, 0.3);
}

.partner-card-featured:hover .icon-home-line,
.partner-card-featured:focus-within .icon-home-line {
  transform: translateY(-3px);
}

.partner-card-featured:hover .icon-rate-line,
.partner-card-featured:focus-within .icon-rate-line {
  transform: translateY(-2px);
}

.partner-card-featured:hover .icon-coin,
.partner-card-featured:focus-within .icon-coin {
  transform: translate(3px, -2px);
}

.partner-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.partner-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 500;
}

.partner-card-featured h3 {
  font-size: clamp(30px, 2.7vw, 40px);
}

.partner-card p {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.6;
}

.partner-card .button {
  position: relative;
  z-index: 1;
  align-self: center;
}

.cta {
  padding: clamp(76px, 9vw, 120px) 20px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(7, 57, 198, 0.22), transparent 28%, transparent 72%, rgba(223, 20, 28, 0.22)),
    linear-gradient(135deg, #070707, #16120c);
}

.cta p {
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.74);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cta-large {
  min-width: min(360px, 100%);
  min-height: 58px;
  font-size: 13px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1060px, calc(100% - 36px));
  margin: 34px auto 0;
  text-align: left;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(216, 164, 61, 0.38);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.lead-form select option {
  color: var(--ink);
}

.buy-sell-hero {
  min-height: 100vh;
  padding: clamp(150px, 13vw, 190px) clamp(18px, 5vw, 72px) clamp(70px, 8vw, 110px);
  color: #fff;
  background:
    radial-gradient(circle at 10% 18%, rgba(7, 57, 198, 0.24), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(223, 20, 28, 0.2), transparent 26%),
    linear-gradient(135deg, #050505, #17120b);
}

.buy-sell-heading {
  width: min(900px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.buy-sell-heading h1 {
  max-width: 860px;
  margin: 0 auto 18px;
  font-size: clamp(42px, 5vw, 70px);
}

.buy-sell-heading p:not(.section-kicker) {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.75;
}

.buy-sell-form {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(216, 164, 61, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.32);
}

.form-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 22px;
  padding: 0 0 22px;
  border: 0;
  border-bottom: 1px solid rgba(216, 164, 61, 0.18);
}

.form-section[hidden] {
  display: none;
}

.form-section legend {
  grid-column: 1 / -1;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
}

.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field span,
.consent-field {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.form-field span {
  font-weight: 800;
  letter-spacing: 0.5px;
}

.form-field strong {
  color: var(--gold-light);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(216, 164, 61, 0.32);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.form-field textarea {
  min-height: 130px;
  padding-top: 14px;
  resize: vertical;
}

.form-field select option {
  color: var(--ink);
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(244, 212, 125, 0.62);
  background: rgba(255, 255, 255, 0.095);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(216, 164, 61, 0.14);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-1px);
}

#turnstile-container {
  min-height: 72px;
  margin: 0 0 20px;
  border: 1px dashed rgba(216, 164, 61, 0.34);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(7, 57, 198, 0.1), rgba(223, 20, 28, 0.08)),
    rgba(255, 255, 255, 0.035);
}

.turnstile-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
}

.consent-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 24px;
}

.consent-field input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.consent-field a {
  color: var(--gold-light);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 0;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.form-status.is-error,
.form-status.is-success {
  margin-bottom: 18px;
  padding: 13px 15px;
  border-radius: 12px;
}

.form-status.is-error {
  border: 1px solid rgba(223, 20, 28, 0.5);
  background: rgba(223, 20, 28, 0.13);
}

.form-status.is-success {
  border: 1px solid rgba(216, 164, 61, 0.5);
  background: rgba(216, 164, 61, 0.16);
}

.buy-sell-submit {
  width: min(320px, 100%);
  min-height: 58px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.buy-sell-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(140px, 0.7fr));
  align-items: start;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(46px, 6vw, 76px) clamp(20px, 6vw, 96px);
  color: #fff;
  background: #030303;
  border-top: 1px solid rgba(216, 164, 61, 0.35);
}

.footer-copyright {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 12px 0 0;
  padding-top: 22px;
  width: min(100%, 980px);
  border-top: 1px solid rgba(216, 164, 61, 0.24);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  letter-spacing: 1.2px;
  text-align: center;
  text-transform: uppercase;
}

.footer-copyright strong {
  color: var(--gold-light);
  font-weight: 900;
}

.footer-brand {
  display: grid;
  justify-items: center;
  width: min(100%, 300px);
  text-align: center;
}

.footer-brand img {
  display: block;
  width: min(180px, 72%);
  margin: 0 auto 8px;
}

.footer-column h2 {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-brand p {
  margin: 0 auto 16px;
  max-width: 260px;
  color: rgba(255, 239, 190, 0.86);
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  text-shadow:
    0 0 10px rgba(244, 212, 125, 0.52),
    0 0 26px rgba(216, 164, 61, 0.28),
    0 0 42px rgba(216, 164, 61, 0.16);
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(244, 212, 125, 0.58);
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1.6px;
  background:
    linear-gradient(90deg, rgba(7, 57, 198, 0.18), rgba(216, 164, 61, 0.16), rgba(223, 20, 28, 0.16)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.footer-phone:hover,
.footer-phone:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  box-shadow: 0 20px 48px rgba(216, 164, 61, 0.2);
}

.footer-column nav {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-column a:hover {
  color: var(--gold-light);
}

.policy-page {
  min-height: 100vh;
  padding: clamp(28px, 5vw, 70px) 20px;
  background:
    radial-gradient(circle at 0% 0%, rgba(7, 57, 198, 0.22), transparent 28%),
    radial-gradient(circle at 100% 8%, rgba(223, 20, 28, 0.18), transparent 28%),
    linear-gradient(135deg, #050505, #15100a);
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  width: min(980px, 100%);
  margin: 0 auto 18px;
}

.policy-back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(244, 212, 125, 0.62);
  color: var(--gold-light);
  background:
    linear-gradient(90deg, rgba(7, 57, 198, 0.18), rgba(216, 164, 61, 0.12), rgba(223, 20, 28, 0.14)),
    rgba(0, 0, 0, 0.45);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease;
}

.policy-back::before {
  content: "<";
  margin-right: 10px;
  color: var(--gold-light);
  font-weight: 900;
}

.policy-back:hover,
.policy-back:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold-light);
}

.policy-language {
  justify-self: end;
}

.policy-logo {
  display: block;
  width: min(260px, 70vw);
  margin: 0 auto 28px;
}

.policy-card {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 6vw, 76px);
  color: var(--ink);
  background: rgba(248, 244, 236, 0.98);
  border: 1px solid rgba(216, 164, 61, 0.46);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
}

.policy-card h1 {
  margin-bottom: 10px;
  font-size: clamp(42px, 7vw, 74px);
}

.policy-card h2 {
  margin: 34px 0 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.policy-card p {
  color: #4d4942;
  font-size: 18px;
  line-height: 1.75;
}

.policy-card a {
  color: var(--blue);
  font-weight: 800;
}

.policy-date {
  color: #8a7b5d;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.legal-note {
  margin-top: 38px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(216, 164, 61, 0.12);
}

.brand-kit-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(7, 57, 198, 0.2), transparent 26%),
    radial-gradient(circle at 90% 8%, rgba(223, 20, 28, 0.16), transparent 28%),
    linear-gradient(135deg, #050505, #17120b 58%, #f8f4ec 58%);
}

.brand-kit {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) 0;
}

.brand-kit-hero,
.brand-kit-section {
  border: 1px solid rgba(216, 164, 61, 0.34);
  background: rgba(248, 244, 236, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
}

.brand-kit-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(30px, 6vw, 76px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 57, 198, 0.2), transparent 28%, rgba(223, 20, 28, 0.14)),
    #050505;
}

.brand-kit-hero .policy-back {
  grid-column: 1 / -1;
  width: max-content;
}

.brand-kit-hero h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(58px, 9vw, 118px);
}

.brand-kit-hero p:not(.section-kicker) {
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(18px, 2.4vw, 28px);
}

.brand-kit-hero img {
  justify-self: center;
  width: min(360px, 100%);
}

.brand-kit-section {
  margin-top: 28px;
  padding: clamp(28px, 5vw, 58px);
}

.brand-kit-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.brand-kit-heading h2,
.brand-kit-section h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 64px);
}

.brand-kit-heading p:not(.section-kicker),
.brand-kit-section > p,
.brand-kit-split p,
.brand-card-dark p {
  color: #5b554c;
  font-size: 18px;
  line-height: 1.7;
}

.logo-showcase,
.usage-grid,
.color-grid,
.message-grid,
.button-samples {
  display: grid;
  gap: 18px;
}

.logo-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.logo-tile {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(216, 164, 61, 0.3);
}

.logo-tile img {
  width: min(280px, 90%);
}

.logo-tile span,
.brand-kit-note {
  margin-top: 18px;
  color: #716a60;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.logo-tile-dark {
  color: #fff;
  background: #050505;
}

.logo-tile-light {
  background: #fff;
}

.usage-grid,
.brand-kit-split,
.message-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.usage-grid article,
.message-grid article {
  padding: 24px;
  border: 1px solid rgba(216, 164, 61, 0.32);
  background: #fff;
}

.usage-grid h3,
.brand-card-dark h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.color-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.color-grid article {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.color-grid span {
  display: block;
  min-height: 120px;
  background: var(--swatch);
}

.color-grid h3,
.color-grid p,
.color-grid small {
  margin-left: 18px;
  margin-right: 18px;
}

.color-grid h3 {
  margin-top: 18px;
  margin-bottom: 6px;
}

.color-grid p {
  margin-top: 0;
  color: #4b443c;
  font-weight: 900;
}

.color-grid small {
  display: block;
  margin-bottom: 18px;
  color: #746d64;
}

.brand-kit-split {
  align-items: stretch;
  gap: 24px;
}

.type-sample {
  margin: 18px 0;
  padding: 22px;
  border-left: 5px solid var(--gold);
  background: #fff;
}

.type-sample.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

.type-sample.sans {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.4px;
}

.brand-card-dark {
  padding: clamp(26px, 4vw, 42px);
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(223, 20, 28, 0.2), transparent 30%),
    #050505;
}

.brand-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.button-samples {
  grid-template-columns: repeat(3, max-content);
  align-items: center;
}

.brand-kit-messaging {
  background:
    linear-gradient(135deg, rgba(7, 57, 198, 0.08), transparent 30%),
    linear-gradient(315deg, rgba(223, 20, 28, 0.08), transparent 30%),
    rgba(248, 244, 236, 0.96);
}

.message-grid article {
  min-height: 150px;
  display: grid;
  align-content: space-between;
}

.message-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.message-grid p {
  margin: 20px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .language-switcher {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .menu-toggle {
    grid-column: 4;
    grid-row: 1;
    justify-self: end;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-header .header-cta {
    display: none;
  }

  .site-header.menu-open .nav-links {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: 1fr;
    gap: 0;
    justify-items: stretch;
    padding: 14px 0 6px;
    border-top: 1px solid rgba(216, 164, 61, 0.24);
    text-align: center;
  }

  .site-header.menu-open .header-cta {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    min-height: 58px;
    margin-top: 10px;
    border-color: rgba(244, 212, 125, 0.78);
    background:
      linear-gradient(135deg, rgba(7, 57, 198, 0.16), rgba(216, 164, 61, 0.12), rgba(223, 20, 28, 0.16)),
      rgba(0, 0, 0, 0.28);
    box-shadow: 0 18px 48px rgba(216, 164, 61, 0.16);
    font-size: 12px;
    letter-spacing: 1.8px;
  }

  .site-header.menu-open .nav-links > a,
  .site-header.menu-open .nav-item > .nav-parent {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-header.menu-open .nav-item {
    display: block;
    width: 100%;
  }

  .site-header.menu-open .nav-has-submenu::before {
    display: none;
  }

  .site-header.menu-open .nav-has-submenu > .nav-parent {
    gap: 10px;
    padding-right: 12px;
  }

  .site-header.menu-open .nav-has-submenu > .nav-parent::before {
    position: static;
    display: inline-block;
    flex: 0 0 auto;
    margin-left: 0;
    transform: none;
  }

  .site-header.menu-open .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: none;
    opacity: 0;
    transform: none;
    pointer-events: none;
  }

  .site-header.menu-open .nav-has-submenu.submenu-open .nav-submenu {
    display: grid;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.menu-open .nav-submenu::before {
    left: 0;
    right: 0;
  }

  .site-header.menu-open .nav-submenu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    letter-spacing: 1px;
    white-space: normal;
  }

  .home-tools-copy {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-tools-content {
    display: grid;
    justify-items: center;
  }

  .intro,
  .creole-cta,
  .lead-panel,
  .about-lead,
  .home-value,
  .social-feed,
  .home-tools-teaser,
  .mortgage-calculator,
  .seller-calculator,
  .tools-support,
  .service-partners,
  .lead-form,
  .service-row,
  .partner-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .form-section {
    grid-template-columns: 1fr;
  }

  .tools-preview {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .brand-kit-hero,
  .logo-showcase,
  .usage-grid,
  .brand-kit-split,
  .color-grid,
  .message-grid {
    grid-template-columns: 1fr;
  }

  .button-samples {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 8px;
    padding: 12px;
  }

  .brand img {
    width: 82px;
  }

  .language-select {
    min-height: 36px;
    max-width: 104px;
    min-width: 104px;
    padding: 0 24px 0 9px;
    font-size: 9px;
    letter-spacing: 0.6px;
  }

  .language-switcher::after {
    right: 9px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .site-header.menu-open .header-cta {
    min-height: 56px;
    padding: 0 16px;
    font-size: 11px;
  }

  .buy-sell-hero {
    padding-top: 122px;
  }

  .buy-sell-form {
    border-radius: 14px;
  }

  .home-tools-copy {
    padding: 22px;
  }

  .tools-preview {
    grid-template-columns: 1fr;
  }

  .tool-preview-card {
    min-height: 0;
  }

  .form-section legend {
    font-size: 21px;
  }

  .service-card {
    min-height: 230px;
    padding: 28px 24px;
  }

  .service-icon {
    top: 24px;
    right: 24px;
    width: 62px;
    height: 62px;
  }

  .service-icon svg {
    width: 38px;
    height: 38px;
  }

  .header-phone .phone-hover {
    letter-spacing: 1.1px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-slide-night {
    background-position: 58% center;
  }

  .hero-slide-day {
    background-position: 52% center;
  }

  .hero-slide-estate {
    background-position: 48% center;
  }

  .hero-slide-skyview {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 10% 36%, rgba(7, 57, 198, 0.42), transparent 34%),
      radial-gradient(circle at 96% 34%, rgba(223, 20, 28, 0.28), transparent 32%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 56%, rgba(0, 0, 0, 0.38) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 52%);
  }

  .hero-content {
    margin-left: 20px;
    padding-top: 150px;
  }

  h1 {
    font-size: 45px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .lead-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .homebot-card {
    min-height: 230px;
    padding: 14px;
  }

  .intro,
  .services,
  .creole-cta,
  .lead-panel,
  .about-lead,
  .home-value,
  .social-feed,
  .home-tools-teaser,
  .mortgage-calculator,
  .seller-calculator,
  .tools-support,
  .service-partners {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tools-hero {
    min-height: 560px;
    padding: 150px 20px 76px;
  }

  .tools-hero h1 {
    font-size: clamp(38px, 10vw, 58px);
  }

  .tool-anchor-row {
    flex-direction: column;
    align-items: stretch;
  }

  .seller-calculator .calculator-copy,
  .seller-calculator .calculator-card {
    order: initial;
  }

  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .calculator-actions,
  .result-total,
  .calculator-results dl div {
    flex-direction: column;
    align-items: stretch;
  }

  .result-total strong {
    font-size: 42px;
  }

  .youtube-frame {
    min-height: 300px;
  }

  .youtube-play {
    width: 68px;
    height: 68px;
  }

  .youtube-play::before {
    left: 28px;
    top: 21px;
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 19px;
  }

  .hero-actions,
  .footer-column nav {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer {
    text-align: center;
  }

  .footer-brand,
  .footer-column {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .footer-column nav {
    justify-items: center;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto;
  }

  .brand-kit {
    width: min(100% - 24px, 1180px);
  }

  .brand-kit-hero,
  .brand-kit-section {
    padding: 24px 18px;
  }

  .logo-tile {
    min-height: 220px;
  }

  .button-samples {
    justify-items: stretch;
  }

  .policy-actions {
    justify-content: center;
    text-align: center;
  }

  .policy-back,
  .policy-language,
  .policy-language .language-select {
    width: 100%;
    max-width: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .hero-slide-night {
    opacity: 1;
  }

  .logo-orbit,
  .logo-stage,
  .logo-stage img,
  .portrait-feature::after {
    animation: none;
  }

  .service-card,
  .service-card::after,
  .service-icon,
  .icon-line,
  .partner-icon,
  .partner-icon-line {
    transition: none;
  }

  .service-card:hover,
  .service-card:focus-visible,
  .service-card:hover .service-icon,
  .service-card:focus-visible .service-icon,
  .service-card:hover .icon-line,
  .service-card:focus-visible .icon-line,
  .partner-card-featured:hover .partner-icon,
  .partner-card-featured:focus-within .partner-icon,
  .partner-card-featured:hover .partner-icon-line,
  .partner-card-featured:focus-within .partner-icon-line {
    transform: none;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 70px;
  }

  .language-select {
    max-width: 92px;
    min-width: 92px;
    padding-left: 8px;
    font-size: 8px;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
  }

  .site-header.menu-open .header-cta {
    min-height: 52px;
    padding: 0 12px;
    font-size: 10px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
  }

  .service-icon svg {
    width: 34px;
    height: 34px;
  }
}
