:root {
  --bg: #ffffff;
  --bg-elevated: rgba(255, 255, 255, 0.96);
  --panel: rgba(255, 255, 255, 0.94);
  --panel-strong: rgba(247, 247, 247, 0.98);
  --text: #111111;
  --muted: #666666;
  --line: rgba(17, 17, 17, 0.12);
  --gold: #111111;
  --gold-bright: #ffffff;
  --accent-blue: #111111;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.1);
  --radius: 24px;
  --content-width: 1320px;
  --header-height: 122px;
}

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.035), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f7 42%, #eeeeee 100%);
  background-attachment: fixed;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  display: none;
}

body::after {
  background: radial-gradient(circle at 50% 0%, rgba(0, 0, 0, 0.04), transparent 26%);
}



body.lake-guy-page {
  background:
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.035), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f7 42%, #eeeeee 100%);
}

body.lake-guy-page .page-shell {
  width: min(100% - 28px, 1480px);
}

body.lake-guy-page .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(17, 17, 17, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

body.lake-guy-page .site-nav a:not(.nav-cta):not(.is-current) {
  color: #111111;
}

body.lake-guy-page .site-nav a.is-current {
  background: rgba(17, 17, 17, 0.08);
  color: #111111;
}

body.lake-guy-page::before {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 82%);
}

body.lake-guy-page::after {
  background:
    radial-gradient(circle at 20% 12%, rgba(0, 0, 0, 0.04), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0.04));
}

::selection {
  background: rgba(0, 0, 0, 0.16);
  color: #ffffff;
}

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

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

.page-shell {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), 100%);
  margin: 0 auto 28px;
}

.luxury-shell {
  width: 100%;
  margin: 0 0 28px;
}

.scroll-progress {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 90;
  height: 3px;
  transform-origin: left center;
}

.scroll-progress::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  background: linear-gradient(90deg, #ffffff 0%, #d6d6d1 45%, #8d8d8d 100%);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}

.site-header,
.section,
.trust-strip,
.site-footer,
.hero {
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  animation: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: transform 280ms ease;
}

.brand:hover,
.brand:focus-visible {
  transform: none;
}

.brand-wordmark {
  gap: 16px;
}

.brand-logo-image {
  display: block;
  width: clamp(260px, 24vw, 390px);
  height: auto;
  padding: 0;
  background: transparent;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  color: #111111;
  border-radius: 0;
  background: none;
  box-shadow: none;
  transform-origin: center;
  animation: none;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brand:hover .brand-mark img,
.brand:focus-visible .brand-mark img {
  transform: none;
}

.brand-mark-word {
  width: 58px;
  height: 58px;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.brand-text strong,
.brand-text-compact strong {
  color: #111111;
  font-family: "Manrope", sans-serif;
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-transform: none;
  animation: none;
}

.brand-tagline {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: none;
}

.brand-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.34em;
  margin-top: 5px;
  color: var(--gold);
  font-size: 0.54rem;
  line-height: 1;
  letter-spacing: 0;
}

.brand-stars > span {
  opacity: 0;
  transform: translateY(-4px);
  animation: brandStarReveal 360ms ease-out both;
}

.brand-stars > span:nth-child(1) {
  animation-delay: 420ms;
}

.brand-stars > span:nth-child(2) {
  animation-delay: 540ms;
}

.brand-stars > span:nth-child(3) {
  animation-delay: 660ms;
}

.brand-stars > span:nth-child(4) {
  animation-delay: 780ms;
}

.brand-stars > span:nth-child(5) {
  animation-delay: 900ms;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  color: #222222;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.site-nav a::before {
  display: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-blue);
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 220ms ease, transform 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  transform: none;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a.is-current {
  color: #111111;
  animation: none;
}

.nav-cta {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 0;
  background: var(--text);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 800;
  box-shadow: none;
}

.nav-cta.is-current {
  color: #ffffff;
  background: #111111;
  border-color: rgba(17, 17, 17, 0.14);
}

.site-nav a.nav-cta:link,
.site-nav a.nav-cta:visited,
.site-nav a.nav-cta:hover,
.site-nav a.nav-cta:focus-visible,
.site-nav a.nav-cta:active,
.site-nav a.nav-cta.is-current {
  color: #ffffff;
  background: #111111;
}

.site-nav a.nav-cta:hover,
.site-nav a.nav-cta:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(17, 17, 17, 0.22);
}

.nav-cta::before,
.nav-cta::after {
  display: none;
}

body.home-scroll-locked,
body.about-page {
  height: 100svh;
  overflow: hidden;
  overscroll-behavior: none;
  scrollbar-width: none;
}

body.home-scroll-locked::-webkit-scrollbar,
body.about-page::-webkit-scrollbar {
  display: none;
}

.section-jump-menu {
  position: fixed;
  right: 24px;
  top: 138px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0;
  width: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(17, 17, 17, 0.7);
  box-shadow: none;
  backdrop-filter: blur(14px);
  transform: none;
}

.section-jump-menu span {
  display: none;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-jump-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.experience-profile-section {
  background: #ffffff;
}

.experience-profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.experience-profile-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 22px;
  background: #f8f8f8;
}

.experience-profile-card span,
.experience-source-links a {
  color: #666666;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.experience-profile-card h3 {
  margin: 0;
  color: #111111;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.experience-profile-card p {
  margin: 0;
  color: #666666;
  line-height: 1.7;
}

.experience-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.experience-source-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  color: #111111;
  background: #ffffff;
}

.experience-source-links a:hover,
.experience-source-links a:focus-visible {
  background: #111111;
  color: #ffffff;
}

.section-jump-menu a:hover,
.section-jump-menu a:focus-visible,
.section-jump-menu a.is-current {
  background: #ffffff;
  color: #111111;
  transform: none;
}

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: var(--shadow-soft);
}

.luxury-hero {
  min-height: calc(100svh - var(--header-height));
  height: calc(100svh - var(--header-height));
  margin-top: 0;
  border-radius: 0;
}

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

.hero-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.4) 48%, rgba(0, 0, 0, 0.16)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.32));
}

.hero-orbit {
  display: none;
}

.hero-orbit-one {
  right: -120px;
  top: 90px;
  width: 360px;
  height: 360px;
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.04);
}

.hero-orbit-two {
  right: 80px;
  bottom: -120px;
  width: 240px;
  height: 240px;
  border-color: rgba(244, 241, 236, 0.08);
}

.luxury-hero .hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: calc(100svh - var(--header-height));
  padding: 118px 24px 64px;
  max-width: 1180px;
  margin: 0 auto;
  color: #f5f5f5;
  text-align: left;
}

.hero-signal-row {
  display: none;
}

.hero-signal-row span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(23, 28, 33, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(245, 245, 242, 0.9);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-plaque {
  display: none;
}

.hero-plaque-label {
  margin: 0;
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-plaque strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #f5f5f5;
}

.hero-plaque span {
  color: rgba(232, 232, 227, 0.78);
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.92));
}

.hero h1,
.section-heading h1,
.section-heading h2,
.cta-content h2,
.realtor-copy h1,
.realtor-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.25rem, 6.2vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-type-heading {
  display: block;
  align-items: center;
  min-height: 1.1em;
  max-width: 12.5ch;
}

.hero-type-text {
  display: inline-block;
}

.hero-type-heading::after {
  content: none;
  width: 0.08em;
  height: 0.88em;
  margin-left: 0.08em;
  background: currentColor;
  opacity: 0;
  transform: translateY(0.02em);
}

.hero-type-heading.is-typing::after {
  opacity: 1;
  animation: typingCaret 900ms steps(1, end) infinite;
}

.hero-text,
.section-intro,
.property-body p,
.realtor-copy p,
.testimonial-card p,
.cta-content p,
.site-footer p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  max-width: 48ch;
  margin: 24px 0 0;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-subnote {
  margin-top: 14px;
  font-size: 0.92rem;
  opacity: 0.78;
}

.lake-guy-hero {
  position: relative;
  overflow: hidden;
  min-height: 900px;
  border-radius: 38px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.94), rgba(0, 0, 0, 0.98));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.18);
}

.lake-guy-hero-media,
.lake-guy-hero-overlay {
  position: absolute;
  inset: 0;
}

.lake-guy-hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.lake-guy-hero-overlay {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 20%),
    linear-gradient(115deg, rgba(0, 0, 0, 0.82), rgba(17, 17, 17, 0.36) 42%, rgba(0, 0, 0, 0.84) 100%);
}

.lake-guy-hero .hero-copy,
.lake-guy-hero .hero-panel {
  position: relative;
  z-index: 1;
}

.lake-guy-hero-copy {
  max-width: 720px;
}

.lake-guy-hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(4.4rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.lake-guy-hero-copy .hero-text {
  max-width: 44ch;
  font-size: 1.12rem;
}

.lake-guy-hero-copy .eyebrow,
.lake-guy-hero-copy h1,
.lake-guy-hero-copy .hero-text,
.lake-guy-hero-copy .hero-subnote {
  color: #ffffff;
}

.lake-guy-hero-copy .eyebrow::before {
  background: rgba(255, 255, 255, 0.5);
}

.lake-guy-hero-actions {
  gap: 16px;
  align-items: stretch;
}

.lake-guy-guide-button {
  min-height: 82px;
  min-width: 300px;
  padding: 0 38px;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff, #f1f1f1);
  color: #111111;
  border-color: rgba(17, 17, 17, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.lake-guy-guide-button:hover,
.lake-guy-guide-button:focus-visible {
  filter: brightness(1.03);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.26);
}

.lake-guy-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.lake-guy-pill-row span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lake-guide-highlight {
  margin-top: 28px;
  padding: 28px 28px 30px;
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 44%),
    linear-gradient(145deg, rgba(28, 28, 28, 0.9), rgba(10, 10, 10, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.16);
}

.lake-guide-highlight-label {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lake-guide-highlight strong {
  display: block;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.lake-guide-highlight p:last-of-type {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.lake-guide-highlight-button {
  margin-top: 22px;
}

.lake-guy-hero-panel .form-card,
.lake-guy-signal-card {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 26%),
    rgba(17, 17, 17, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.lake-guy-signal-card .form-title,
.lake-guy-signal-card .mock-field span,
.lake-guy-signal-card .lead-form-note {
  color: rgba(255, 255, 255, 0.82);
}

.lake-guy-signal-card .mock-field strong {
  color: #ffffff;
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(28px);
}

body.is-loaded .hero-copy > * {
  animation: riseIn 900ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

body.is-loaded .hero-copy > *:nth-child(1) {
  animation-delay: 120ms;
}

body.is-loaded .hero-copy > *:nth-child(2) {
  animation-delay: 240ms;
}

body.is-loaded .hero-copy > *:nth-child(3) {
  animation-delay: 360ms;
}

body.is-loaded .hero-copy > *:nth-child(4) {
  animation-delay: 480ms;
}



.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 2px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: translateY(0) scale(1);
  will-change: auto;
  transition:
    transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 180ms ease,
    filter 240ms ease,
    border-color 180ms ease;
}

.button::after {
  content: none;
  position: absolute;
  inset: -65% auto -65% -35%;
  width: 46%;
  transform: translateX(-220%) rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.button::before {
  content: none;
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 52%);
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 240ms ease, transform 240ms ease;
  z-index: 0;
}

.button > * ,
.button {
  position: relative;
  z-index: 1;
}

body.is-loaded .button {
  animation: none;
}

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

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(420%) rotate(18deg);
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.button:active {
  transform: translateY(1px) scale(0.975);
  transition-duration: 90ms;
  filter: brightness(0.98);
}

.button-primary {
  background: var(--text);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.2),
    0 0 0 rgba(0, 0, 0, 0);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(255, 255, 255, 0.03);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.24);
}

.trust-strip,
.section,
.site-footer {
  margin-top: 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
}

.trust-strip div {
  padding: 30px 26px;
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  transition: background-color 180ms ease;
}

.trust-strip div:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.34);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip span {
  display: block;
  margin-bottom: 8px;
  color: #111111;
  font-size: 1.35rem;
  font-weight: 800;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.metric-link {
  display: inline-flex;
  margin-top: 12px;
  color: #111111;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 180ms ease, transform 180ms ease;
}

.metric-link:hover,
.metric-link:focus-visible {
  opacity: 0.72;
  transform: translateY(-1px);
}

.stat-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-status::before {
  content: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #111111;
}

.stat-status.is-live::before {
  background: none;
  box-shadow: none;
}

.stat-status.is-fallback {
  color: var(--muted);
}



.section {
  padding: 46px;
}

.section-heading h2 {
  text-wrap: balance;
}

.section-compact {
  padding-top: 38px;
  padding-bottom: 38px;
}

.luxury-metrics {
  position: relative;
  overflow: hidden;
}

.luxury-metrics::before {
  content: none;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.07), transparent 30%);
  pointer-events: none;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 30px;
  align-items: end;
}

.section-intro {
  margin: 0;
}

.listings-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 42px;
  align-items: start;
}

.listings-lead {
  display: grid;
  gap: 18px;
  align-content: start;
}

.listings-lead h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.9rem, 5vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-family: "Cormorant Garamond", serif;
}

.listings-lead .section-intro {
  max-width: 32ch;
}

.listings-sidecar {
  display: grid;
  gap: 24px;
  align-self: start;
  grid-template-columns: minmax(240px, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
}

.listings-sidecar-card {
  min-width: 0;
}

.listings-sidecar-card {
  padding: 22px 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 24%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.listings-sidecar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  min-height: 38px;
}

.listings-sidecar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.listings-sidecar-label {
  margin: 0;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.listings-sidecar-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.listing-grid,
.testimonial-grid {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.listing-grid-luxury {
  grid-template-columns: repeat(3, 1fr);
}

.property-card,
.testimonial-card {
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: var(--shadow-soft);
  transition: transform 260ms ease, box-shadow 260ms ease;
  color: #111111;
}

.property-card-link {
  display: block;
}

.property-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.property-image-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.property-image-wrap img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.property-card:hover .property-image-wrap img {
  transform: scale(1.06);
}

.property-body {
  padding: 24px 24px 26px;
}

.property-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.property-topline strong {
  color: #111111;
  font-size: 1.5rem;
}

.property-topline span {
  color: #6a6a6a;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.property-body h3 {
  margin: 0 0 10px;
  color: #111111;
  font-size: 1.4rem;
  font-weight: 700;
}

.property-link-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  color: #111111;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-link-label::after {
  content: "->";
}

.integration-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 24px 26px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 24%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.integration-banner-compact {
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 0;
  padding: 22px 24px;
  align-items: start;
  min-height: 100%;
}

.integration-banner-compact .eyebrow {
  margin-bottom: 10px;
}

.listing-page .hero {
  align-items: start;
}

.listing-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 20px 6px 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.listing-breadcrumb strong {
  color: var(--text);
}

.listing-hero .hero-copy {
  padding-right: 10px;
}

.listing-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.listing-hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.listing-facts-section {
  padding-top: 22px;
  padding-bottom: 22px;
}

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

.listing-facts-grid article {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.listing-facts-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.listing-facts-grid strong {
  display: block;
  font-size: 1.08rem;
}

.listing-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 20px;
}

.listing-gallery-primary,
.listing-gallery-stack img {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.03);
}

.listing-gallery-primary {
  min-height: 520px;
}

.listing-gallery-primary img,
.listing-gallery-stack img {
  height: 100%;
  object-fit: cover;
}

.listing-gallery-stack {
  display: grid;
  gap: 20px;
}

.listing-gallery-stack img {
  min-height: 250px;
}

.listing-details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.listing-details-copy {
  display: grid;
  gap: 18px;
}

.listing-story {
  display: grid;
  gap: 14px;
}

.listing-story p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.listing-contact-card {
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 24%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.listing-contact-label {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.listing-contact-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.listing-contact-card p:not(.listing-contact-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.listing-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

@media (min-width: 1181px) and (max-width: 1379px) {
  .listings-editorial {
    grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1.18fr);
    gap: 36px;
  }

  .listings-sidecar {
    grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.1fr);
    gap: 20px;
  }
}

.pathways-grid,
.pathways-editorial {
  display: grid;
  margin-top: 30px;
}

.pathways-editorial {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.pathway-card {
  display: block;
  min-height: 100%;
  padding: 26px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 30%),
    rgba(21, 24, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  color: #ffffff;
}

.pathway-card:hover,
.pathway-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.24);
}

.pathway-card-featured {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(145deg, rgba(38, 38, 38, 0.92), rgba(15, 15, 15, 0.94));
}

.pathway-card-featured h3 {
  max-width: 12ch;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.96;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
}

.pathway-feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 18px;
}

.pathway-feature-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pathway-stack {
  display: grid;
  gap: 22px;
}

.pathway-card-seller {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(145deg, rgba(28, 28, 28, 0.94), rgba(14, 14, 14, 0.96));
}

.pathway-card-market {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.025), transparent 40%),
    linear-gradient(145deg, rgba(24, 24, 24, 0.94), rgba(9, 9, 9, 0.98));
  border-color: rgba(255, 255, 255, 0.16);
}

.pathway-label {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pathway-card h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  color: #ffffff;
}

.pathway-card > p:not(.pathway-label) {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.pathway-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pathway-link::after {
  content: "->";
  font-size: 0.9rem;
}

.integration-banner h3,
.integration-copy h3 {
  margin: 0;
  font-size: 1.45rem;
}

.realtor-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.portrait-frame {
  overflow: hidden;
  min-height: 620px;
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #111111;
  box-shadow: var(--shadow-soft);
}

.portrait-frame img {
  height: 100%;
  object-fit: cover;
}

.about-guide-card {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 22px;
  background: #f8f8f8;
}

.about-guide-label {
  margin: 0 0 10px;
  color: #666666;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-guide-card h2 {
  margin: 0 0 10px;
  color: #111111;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.about-guide-card p:last-of-type {
  margin-bottom: 0;
}

.about-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.trust-indicators div {
  padding: 18px;
  border-radius: 16px;
  background: rgba(17, 17, 17, 0.06);
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.trust-indicators strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 1.6rem;
}

.trust-indicators span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.lake-guy-section {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(135deg, rgba(18, 21, 27, 0.94), rgba(10, 12, 16, 0.96));
}

.lake-guy-story-section {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 18%),
    linear-gradient(135deg, rgba(16, 22, 29, 0.96), rgba(8, 12, 17, 0.98));
}

.lake-guy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.lake-guy-story-layout {
  gap: 32px;
}

.lake-guy-copy .eyebrow,
.lake-guy-copy h2,
.lake-guy-copy .section-intro {
  color: #ffffff;
}

.lake-guy-copy .section-intro {
  color: rgba(255, 255, 255, 0.74);
}

.lake-guy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.lake-guy-points span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lake-guy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.lake-guy-proof {
  display: grid;
  gap: 18px;
  align-content: start;
}

.lake-guy-proof-stack {
  gap: 20px;
}

.lake-guy-proof-card {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.lake-guy-proof-card-large {
  min-height: 100%;
}

.lake-guy-proof-card-compact {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.03);
}

.lake-guy-proof-label {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lake-guy-proof-card strong {
  display: block;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.lake-guy-proof-card p:last-child {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.lake-guy-links a:first-child {
  background: linear-gradient(135deg, #ffffff, #f1f1f1);
  color: #111111;
  border-color: rgba(12, 28, 42, 0.08);
}

.lake-guy-links {
  justify-content: flex-start;
}

.signature-quote {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #1a1a1a, #050505);
}

.signature-quote::before {
  content: none;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 30%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05), transparent 40%);
  pointer-events: none;
}

.signature-quote-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 30px;
  align-items: center;
}

.signature-quote .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.signature-quote-layout h2 {
  max-width: 14ch;
  color: #f5f5f5;
}

.signature-quote-layout h1 {
  max-width: 14ch;
  margin: 0;
  color: #f5f5f5;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.signature-quote-card {
  margin: 0;
  padding: 34px 36px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
}

.signature-quote-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.signature-quote-card footer {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1.8;
}



.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  padding: 28px;
}

.testimonial-card p {
  margin: 0 0 18px;
  font-size: 1rem;
}

.testimonial-card strong {
  color: var(--gold-bright);
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-source-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(440px, 1.28fr);
  gap: 18px;
  margin-top: 0;
}

.review-source-grid-two {
  align-items: stretch;
}

.review-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, #1a1a1a, #050505 72%);
}

.review-showcase::before {
  content: none;
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
}

.review-showcase-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.review-showcase-copy {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
}

.review-showcase-copy .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.review-showcase-copy h2 {
  max-width: 720px;
  color: #ffffff;
}

.review-showcase-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.review-showcase-copy .section-intro {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.review-showcase-stat {
  width: fit-content;
  min-width: 210px;
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding: 20px 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.review-showcase-stat strong {
  color: var(--gold-bright);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.95;
}

.review-showcase-stat span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-showcase-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.review-showcase-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
  justify-content: flex-end;
}

.review-showcase-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.review-showcase-links a:hover,
.review-showcase-links a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.review-showcase-highlights span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-source-card {
  min-height: 100%;
  padding: 22px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: none;
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.review-source-card-featured {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background:
    rgba(10, 10, 10, 0.78);
}

.sold-stories-section {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.09), transparent 20%),
    linear-gradient(145deg, rgba(17, 18, 24, 0.96), rgba(9, 11, 16, 0.98));
}

.sold-stories-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 26px;
  mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
}

.sold-stories-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: soldStoriesMarquee 34s linear infinite;
}

.sold-story-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 280px;
  min-height: 340px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, filter 220ms ease;
}

.sold-story-card img {
  height: 100%;
  object-fit: cover;
}

.sold-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 10, 14, 0.08) 0%, rgba(9, 10, 14, 0.24) 42%, rgba(9, 10, 14, 0.9) 100%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 22%);
}

.sold-story-copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  color: #ffffff;
}

.sold-story-copy strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.95;
}

.sold-story-copy span {
  display: inline-flex;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sold-story-card:hover,
.sold-story-card:focus-within {
  transform: translateY(-5px);
  filter: brightness(1.03);
}

.sold-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 22px;
}

.sold-story-card-static {
  min-height: 300px;
}

.sold-gallery-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.property-card,
.review-source-card,
.pathway-card,
.contact-card,
.live-review-card {
  position: relative;
}

.property-card::before,
.review-source-card::before,
.pathway-card::before,
.contact-card::before,
.live-review-card::before {
  content: none;
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  opacity: 0.9;
}

.review-source-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.review-source-label {
  margin: 0 0 6px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-source-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.28rem;
  line-height: 1.08;
}

.review-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.live-review-grid {
  display: grid;
  gap: 14px;
}

.ratemyagent-widget-shell {
  overflow: auto;
  display: grid;
  place-items: center;
  min-height: 360px;
  max-height: 480px;
  padding: 14px;
  border-radius: 14px;
  background: #f7f7f7;
}

.ratemyagent-widget-shell iframe,
.ratemyagent-widget-shell .review-carousel-markup-container {
  width: 100% !important;
  max-width: 760px;
  margin: 0 auto;
}

.live-review-card {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.live-review-card-empty {
  min-height: 132px;
  display: grid;
  align-items: center;
}

.live-review-quote {
  margin: 0;
  color: rgba(245, 245, 240, 0.78);
  line-height: 1.72;
}

.live-review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
}

.live-review-meta strong {
  color: #ffffff;
  font-size: 0.98rem;
}

.live-review-meta span,
.live-review-date {
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 700;
}

.live-review-date {
  display: inline-flex;
  margin-top: 10px;
}

.review-profile-link {
  display: inline-flex;
  margin-top: 16px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.reviews-page {
  background: #ffffff;
}

body.reviews-page::before,
body.reviews-page::after {
  opacity: 0;
}

body.reviews-page .page-shell {
  background: #ffffff;
}

body.reviews-page .review-showcase {
  background: #ffffff;
  box-shadow: none;
}

body.reviews-page .review-dossier {
  padding: clamp(48px, 6vw, 96px) clamp(20px, 5vw, 72px);
}

body.reviews-page .review-dossier-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  max-width: 1500px;
  margin: 0 auto clamp(34px, 5vw, 72px);
  padding-bottom: clamp(24px, 4vw, 48px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

body.reviews-page .review-dossier-intro .eyebrow,
body.reviews-page .review-dossier-intro h1 {
  grid-column: 1;
}

body.reviews-page .review-dossier-intro .section-intro,
body.reviews-page .review-dossier-intro .review-showcase-links,
body.reviews-page .review-dossier-intro .review-intro-panel {
  grid-column: 2;
}

body.reviews-page .review-dossier-intro h1 {
  max-width: 12ch;
  margin: 0;
  color: #111111;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.2rem, 8vw, 9.5rem);
  line-height: 0.82;
  letter-spacing: -0.07em;
}

body.reviews-page .review-dossier-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  max-width: 1500px;
  margin: 0 auto;
}

body.reviews-page .review-intro-panel {
  display: grid;
  gap: 22px;
  align-content: end;
}

body.reviews-page .review-proof-strip {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 2px solid #111111;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

body.reviews-page .review-proof-strip div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  border-right: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

body.reviews-page .review-proof-strip div:last-child {
  border-bottom: 0;
}

body.reviews-page .review-proof-strip strong {
  display: block;
  color: #111111;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.35rem, 3.2vw, 3.45rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

body.reviews-page .review-proof-strip span {
  display: block;
  margin-top: 8px;
  max-width: 18ch;
  color: #666666;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

body.reviews-page .review-feature-panel {
  min-width: 0;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.08);
}

body.reviews-page .review-verification-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-top: 4px solid #111111;
  background: #ffffff;
}

body.reviews-page .review-verification-panel h2 {
  margin: 6px 0 14px;
  color: #111111;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

body.reviews-page .review-verification-panel > p:not(.review-source-label) {
  margin: 0 0 18px;
  color: #666666;
  line-height: 1.75;
}

body.reviews-page .review-verification-panel .third-party-review-widget,
body.reviews-page .review-verification-panel .live-review-grid {
  grid-column: 2;
  grid-row: 1 / span 4;
}

body.reviews-page .review-verification-panel .review-profile-link {
  align-self: end;
}

body.reviews-page .review-showcase-copy .eyebrow {
  color: #666666;
}

body.reviews-page .review-showcase-copy h1,
body.reviews-page .review-showcase-copy h2,
body.reviews-page .review-source-head h2,
body.reviews-page .review-source-head h3 {
  color: #111111;
}

body.reviews-page .review-showcase-copy .section-intro,
body.reviews-page .live-review-quote {
  color: #666666;
}

body.reviews-page .review-showcase-links a {
  background: #ffffff;
  border-color: rgba(17, 17, 17, 0.14);
  color: #111111;
}

body.reviews-page .review-showcase-links a:hover,
body.reviews-page .review-showcase-links a:focus-visible {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

body.reviews-page .review-source-card,
body.reviews-page .review-source-card-featured {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  color: #111111;
  backdrop-filter: none;
}

body.reviews-page .review-source-card-featured {
  background: #f8f8f8;
}

body.reviews-page .review-source-label {
  color: #666666;
}

body.reviews-page .review-status {
  background: #f7f7f7;
  border-color: rgba(17, 17, 17, 0.12);
  color: #111111;
}

body.reviews-page .live-review-card {
  background: #ffffff;
  border-color: rgba(17, 17, 17, 0.1);
  color: #111111;
}

body.reviews-page .live-review-meta strong,
body.reviews-page .live-review-meta span,
body.reviews-page .live-review-date {
  color: #111111;
}

body.reviews-page .ratemyagent-widget-shell {
  min-height: 560px;
  max-height: none;
  padding: 0;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: none;
}

body.reviews-page .review-profile-link {
  color: #111111;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 20%),
    linear-gradient(135deg, rgba(241, 243, 238, 0.92), rgba(232, 235, 229, 0.88));
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta-content h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  width: min(100%, 760px);
}

.hero-actions-centered {
  justify-content: flex-start;
}

.luxury-hero .hero-actions-centered {
  animation: exploreCardFloatIn 720ms cubic-bezier(0.18, 0.72, 0.22, 1) 220ms both;
}

.luxury-hero .hero-actions-centered .button {
  flex: 1 1 260px;
}

.closing-section {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(16, 18, 23, 0.96), rgba(9, 11, 15, 0.98));
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.closing-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.closing-intro h2 {
  color: #ffffff;
}

.closing-intro .section-intro {
  color: rgba(255, 255, 255, 0.72);
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-card {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-card-label {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a {
  color: #ffffff;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.3;
}

.contact-office {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-office strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1rem;
}

.contact-office p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.footer-luxury {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) minmax(220px, 0.8fr) minmax(220px, 0.8fr);
  gap: 24px;
  padding: 30px;
}

.footer-luxury strong {
  font-size: 1.05rem;
}

.footer-luxury p {
  margin: 0 0 8px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

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

.review-profile-section {
  background: #f8f8f8;
}

.review-profile-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.review-profile-card:hover,
.review-profile-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.12);
}

.review-profile-card span,
.review-profile-card b {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-profile-card strong {
  color: #111111;
  font-size: 1.8rem;
}

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

.review-profile-card b {
  color: #111111;
}

.media-publish-steps {
  margin: 18px 0 0;
  padding-left: 22px;
  color: #555555;
  line-height: 1.75;
}

.media-assistant-page {
  min-height: 100vh;
  background: #f4f4f4;
}

.media-assistant-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.media-assistant-heading {
  max-width: 760px;
}

.media-assistant-heading > a {
  color: #111111;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-assistant-heading h1 {
  margin: 12px 0;
  color: #111111;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.95;
}

.media-assistant-heading > p:last-child {
  color: var(--muted);
  line-height: 1.8;
}

.media-assistant-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  margin-top: 34px;
}

.media-upload-card,
.media-preview-card,
.media-results {
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.media-upload-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.media-upload-card label {
  display: grid;
  gap: 8px;
  color: #111111;
  font-size: 0.82rem;
  font-weight: 800;
}

.media-upload-card input,
.media-upload-card select {
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 14px;
  background: #ffffff;
  color: #111111;
  font: inherit;
}

.media-dropzone {
  padding: 22px;
  border: 1px dashed rgba(17, 17, 17, 0.25);
  border-radius: 18px;
  background: #f8f8f8;
}

.media-dropzone small {
  color: var(--muted);
  font-weight: 500;
}

.media-preview-card {
  display: grid;
  min-height: 440px;
  place-items: center;
  overflow: hidden;
}

.media-preview-card img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border-radius: 16px;
}

.media-preview-empty {
  color: var(--muted);
  font-weight: 700;
}

.media-assistant-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.media-assistant-status[data-state="error"] {
  color: #111111;
}

.media-assistant-status[data-state="success"] {
  color: #111111;
}

.media-results {
  margin-top: 24px;
}

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

.media-results-grid div {
  padding: 18px;
  border-radius: 18px;
  background: #f7f7f7;
}

.media-results-grid dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-results-grid dd {
  margin: 9px 0 0;
  color: #111111;
  line-height: 1.6;
}

.footer-brand-block p,
.footer-meta p {
  margin: 8px 0 0;
}

.footer-meta span {
  display: block;
  color: var(--text);
  font-weight: 600;
}

.footer-links {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-masthead {
  max-width: 980px;
  padding: 72px 24px 48px;
}

.blog-masthead h1 {
  max-width: 11ch;
  margin: 14px 0 20px;
  color: #111111;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.blog-masthead > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.blog-featured {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  min-height: 520px;
  margin-top: 0;
  border-radius: 36px;
  background: #111111;
  box-shadow: var(--shadow);
}

.blog-featured-media img {
  height: 100%;
  object-fit: cover;
}

.blog-photo-placeholder {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 320px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.045) 0 1px,
      transparent 1px 16px
    ),
    #111111;
}

.blog-photo-placeholder::before {
  content: "Sold";
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-photo-placeholder span {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-photo-placeholder-card {
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.blog-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
  color: #ffffff;
}

.blog-featured-copy .blog-card-kicker,
.blog-featured-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.blog-featured-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.blog-featured-copy > p {
  margin: 22px 0 0;
  line-height: 1.8;
}

.blog-featured-copy .button {
  align-self: flex-start;
  margin-top: 28px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 24%),
    rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 180ms ease;
}

.blog-card-kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0;
  color: #111111;
  font-size: 1.5rem;
  line-height: 1.18;
}

.blog-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.blog-card span {
  margin-top: auto;
  padding-top: 22px;
  color: #111111;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card:hover,
.blog-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(17, 17, 17, 0.18);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.14);
}

.blog-card-with-image {
  overflow: hidden;
  padding: 0;
}

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

.blog-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 26px 28px;
}

.article-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.blog-featured-copy .article-card-meta {
  color: rgba(255, 255, 255, 0.62);
}

.blog-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  margin-top: 22px;
  padding: clamp(34px, 6vw, 64px);
  border-radius: 36px;
  background: #111111;
  color: #ffffff;
}

.blog-cta h2 {
  max-width: 14ch;
  margin: 10px 0 14px;
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.blog-cta p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.article-shell {
  max-width: 1120px;
}

.article-header {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 24px 42px;
}

.article-back-link {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-header h1 {
  margin: 12px 0 22px;
  color: #111111;
  font-size: clamp(3.2rem, 7vw, 6.3rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.article-deck {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.75;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.article-byline img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.article-byline div {
  display: grid;
  gap: 4px;
}

.article-byline strong {
  color: #111111;
  font-size: 0.88rem;
}

.article-byline span {
  color: var(--muted);
  font-size: 0.78rem;
}

.article-hero-image {
  overflow: hidden;
  margin: 0;
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
}

.article-hero-image img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
}

.article-photo-placeholder {
  box-shadow: var(--shadow-soft);
}

.article-photo-placeholder .blog-photo-placeholder {
  min-height: clamp(320px, 45vw, 600px);
}

.article-prose {
  display: grid;
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.article-prose h2 {
  margin: 24px 0 0;
  color: #111111;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.article-prose p,
.article-prose li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.article-lede {
  color: #222222 !important;
  font-size: clamp(1.2rem, 2.2vw, 1.42rem) !important;
  line-height: 1.75 !important;
}

.article-prose ul {
  margin: 0;
  padding-left: 20px;
}

.article-callout {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.04);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.article-callout strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.article-callout p {
  margin: 0;
}

.article-cta {
  margin-top: 28px;
  padding: 30px;
  border-radius: 28px;
  background: #111111;
}

.article-cta h2 {
  margin-top: 0;
  color: #ffffff;
}

.article-cta p {
  color: rgba(255, 255, 255, 0.7);
}

.article-cta .button {
  margin-top: 6px;
}

body.is-loaded .blog-card {
  animation: exploreCardFloatIn 760ms cubic-bezier(0.18, 0.72, 0.22, 1) both;
}

.blog-grid > :nth-child(1) {
  animation-delay: 120ms;
}

.blog-grid > :nth-child(2) {
  animation-delay: 220ms;
}

.blog-grid > :nth-child(3) {
  animation-delay: 320ms;
}

.crafted-by {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  align-self: start;
  justify-self: end;
  padding: 14px 16px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.crafted-by:hover,
.crafted-by:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
}

.crafted-by-mark {
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(244, 241, 236, 0.18), rgba(124, 132, 141, 0.18));
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.crafted-by-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crafted-by-copy {
  display: grid;
  gap: 4px;
}

.crafted-by-copy span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.crafted-by-copy strong {
  color: var(--text);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.feature-page .site-header {
  margin-bottom: 20px;
}

.feature-page .hero {
  margin-top: 18px;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(145deg, rgba(16, 18, 23, 0.96), rgba(10, 12, 16, 0.92));
}

.search-hero {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 20%),
    linear-gradient(145deg, rgba(16, 18, 23, 0.96), rgba(10, 12, 16, 0.92));
}

.valuation-hero {
  align-items: start;
  background:
    radial-gradient(circle at top right, rgba(0, 0, 0, 0.04), transparent 20%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 245, 0.95));
}

.feature-page .hero-copy,
.feature-page .hero-panel {
  position: relative;
  z-index: 2;
}

.feature-page .hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 24px;
  padding: 44px;
}

.search-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 26%);
  pointer-events: none;
}

.search-hero .hero-copy {
  padding-right: 18px;
  color: #ffffff;
}

.search-hero .eyebrow,
.search-hero h1,
.search-hero .hero-text,
.search-hero .form-title,
.search-hero .lead-form-note,
.search-hero .lead-field span,
.search-hero .lead-form-context,
.search-hero .lead-form-context strong,
.search-hero .lead-status {
  color: #ffffff;
}

.search-hero .lead-field select option {
  color: #ffffff;
}

.search-hero .hero-copy::after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  opacity: 0.7;
}



.hero-panel {
  display: grid;
  gap: 16px;
}

.valuation-hero .hero-panel {
  align-self: start;
}

.valuation-hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.valuation-hero .eyebrow::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.9));
}

.valuation-hero h1,
.valuation-hero .hero-text {
  color: #ffffff;
}

.form-card,
.search-steps article,
.search-results-preview article,
.valuation-points article,
.valuation-process article {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(21, 24, 30, 0.9);
  box-shadow: var(--shadow-soft);
}

.form-card {
  padding: 24px;
}

.search-form-panel .form-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(13, 15, 20, 0.94);
}

.valuation-hero .search-form-panel .form-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 249, 249, 0.96)),
    rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.search-form-panel .form-card,
.search-hero .button-secondary,
.search-hero .mock-field {
  backdrop-filter: blur(14px);
}

.search-hero .lead-field input,
.search-hero .lead-field select,
.search-hero .lead-field textarea {
  color: #ffffff;
}

.search-hero .lead-field input::placeholder,
.search-hero .lead-field textarea::placeholder,
.search-hero .lead-field select {
  color: rgba(255, 255, 255, 0.62);
}

.search-hero .form-card {
  color: #ffffff;
}

.form-title {
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 800;
}

.lead-intake-form {
  display: grid;
  gap: 18px;
}

.lead-form-note {
  margin: -8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.lead-field {
  display: grid;
  gap: 8px;
}

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

.lead-field span,
.lead-form-context {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-field input,
.lead-field select,
.lead-field textarea {
  width: 100%;
  min-height: 56px;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  resize: vertical;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.valuation-hero .lead-field input,
.valuation-hero .lead-field select,
.valuation-hero .lead-field textarea {
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: #111111;
}

.lead-field textarea {
  min-height: 120px;
}

.lead-field input::placeholder,
.lead-field textarea::placeholder {
  color: rgba(218, 222, 229, 0.48);
}

.valuation-hero .lead-field input::placeholder,
.valuation-hero .lead-field textarea::placeholder {
  color: rgba(17, 17, 17, 0.42);
}

.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.valuation-hero .lead-field input:focus,
.valuation-hero .lead-field select:focus,
.valuation-hero .lead-field textarea:focus {
  border-color: rgba(17, 17, 17, 0.22);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.06);
}

.valuation-hero .button-primary,
.valuation-hero .button-secondary {
  background: #ffffff;
  color: #111111;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.lead-form-meta {
  display: grid;
  gap: 12px;
}

.lead-form-context {
  margin: 0;
}

.lead-form-context strong {
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

.lead-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  min-height: 1.7em;
}

.lead-status.is-success {
  color: #ffffff;
}

.lead-status.is-error {
  color: #ffffff;
}

.button.is-loading {
  opacity: 0.86;
  pointer-events: none;
}

.mock-field-group {
  display: grid;
  gap: 12px;
}

.valuation-hero .mock-field-group {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mock-field {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}



.mock-field span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-button {
  margin-top: 18px;
  width: 100%;
}

.search-steps,
.search-results-preview,
.valuation-points,
.valuation-process {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.search-steps,
.search-results-preview,
.valuation-points,
.valuation-process {
  grid-template-columns: repeat(3, 1fr);
}

.search-steps article,
.search-results-preview article,
.valuation-points article,
.valuation-process article {
  padding: 22px;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.valuation-points article,
.valuation-process article {
  color: #ffffff;
}

.valuation-points article h3,
.valuation-process article h3 {
  color: #ffffff;
}

.valuation-points article p,
.valuation-process article p {
  color: rgba(255, 255, 255, 0.74);
}

.search-steps article:hover,
.search-results-preview article:hover,
.valuation-points article:hover,
.valuation-process article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-bright);
  font-weight: 800;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(14, 16, 20, 0.98), rgba(7, 8, 11, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.integration-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 24px;
  margin-top: 28px;
}

.integration-screen {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(21, 24, 30, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.integration-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.integration-toolbar span,
.chart-card span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.integration-map {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 28px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.07), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  text-align: center;
}

.integration-map p {
  max-width: 44ch;
  color: var(--muted);
  line-height: 1.8;
}

.integration-copy {
  padding: 28px;
  border-radius: 28px;
  background: rgba(21, 24, 30, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.integration-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}



.faq-section {
  background:
    radial-gradient(circle at top right, rgba(0, 0, 0, 0.03), transparent 22%),
    rgba(255, 255, 255, 0.96);
}

.faq-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.faq-item {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  color: #111111;
  font-size: 1rem;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: #111111;
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.8;
}

.chart-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px;
}

.chart-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.chart-card strong {
  display: block;
  margin-top: 12px;
  color: var(--gold-bright);
  font-size: 1.6rem;
}

.integration-screen-large .integration-map {
  min-height: 280px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: start;
}

.contact-meta {
  color: var(--muted);
  line-height: 1.8;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #111111;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-link:hover,
.service-link:focus-visible {
  background: #ffffff;
  color: #111111;
}

.service-link-secondary {
  background: #ffffff;
  color: #111111;
}

.service-link-secondary:hover,
.service-link-secondary:focus-visible {
  background: #111111;
  color: #ffffff;
}

.site-footer a {
  transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 760ms ease;
  will-change: opacity, transform, filter;
}

[data-reveal][data-reveal-style="soft-left"] {
  transform: translate3d(-22px, 18px, 0);
}

[data-reveal][data-reveal-style="soft-right"] {
  transform: translate3d(22px, 18px, 0);
}

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

[data-stagger] > * {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  filter: blur(3px);
  transition:
    opacity 640ms ease,
    transform 640ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 640ms ease;
  transition-delay: calc(var(--stagger-index, 0) * 85ms);
}

[data-reveal].is-visible [data-stagger] > *,
[data-reveal].is-visible[data-stagger] > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.section-heading,
.article-header,
.blog-masthead,
.review-dossier-intro {
  position: relative;
}

.section-heading::after,
.article-header::after,
.blog-masthead::after,
.review-dossier-intro::after {
  content: "";
  display: block;
  width: min(180px, 38vw);
  height: 1px;
  margin-top: 24px;
  background: #111111;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1) 160ms;
}

.section-heading.is-visible::after,
.article-header.is-visible::after,
.blog-masthead.is-visible::after,
.review-dossier-intro.is-visible::after {
  transform: scaleX(1);
}

.portrait-frame,
.article-hero-image,
.blog-featured-media,
.blog-card-with-image,
.lake-guy-hero-media {
  overflow: hidden;
}

[data-reveal].is-visible .blog-featured-media img,
[data-reveal].is-visible .blog-card-with-image > img,
[data-reveal].is-visible .lake-guy-hero-media img {
  animation: editorialImageSettle 1200ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero.is-tilting {
  transition: transform 180ms ease-out;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes typingCaret {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

@keyframes headerSlide {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brandGlow {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 0 rgba(255, 255, 255, 0);
  }

  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 0 24px rgba(255, 255, 255, 0.16);
  }
}

@keyframes brandMarkReveal {
  0% {
    opacity: 0;
    transform: translateX(-14px) scale(0.78) rotate(-8deg);
  }

  65% {
    opacity: 1;
    transform: translateX(2px) scale(1.04) rotate(1deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0);
  }
}

@keyframes brandCopyReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes brandStarReveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes activeNavPulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.06),
      0 0 18px rgba(255, 255, 255, 0.07);
  }

  50% {
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.08),
      0 0 24px rgba(255, 255, 255, 0.16);
  }
}

@keyframes buttonSettleIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }

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

@keyframes exploreHeadingRise {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes exploreCardFloatIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes explorePulseIn {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }

  65% {
    opacity: 1;
    transform: scale(1.03);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes exploreNavPillIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

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

@media (max-width: 1180px) {
  .listing-grid-luxury,
  .pathways-grid,
  .lead-grid,
  .testimonial-grid,
  .review-source-grid,
  .experience-profile-grid,
  .trust-strip,
  .trust-indicators,
  .footer-luxury,
  .search-steps,
  .search-results-preview,
  .valuation-points,
  .valuation-process {
    grid-template-columns: 1fr 1fr;
  }

  .realtor-layout,
  .signature-quote-layout,
  .pathways-editorial,
  .listings-editorial,
  .listing-details-layout,
  .listing-gallery-grid,
  .review-showcase-layout,
  .closing-grid,
  .contact-panel,
  .integration-panel,
  .integration-banner,
  .feature-page .hero,
  .section-heading-split {
    grid-template-columns: 1fr;
  }

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

  .blog-featured-media {
    min-height: 380px;
  }

  .luxury-hero .hero-copy {
    max-width: 100%;
  }

  .lake-guy-hero {
    min-height: auto;
  }

  .lake-guy-hero-copy h1 {
    max-width: 12ch;
  }

  .review-showcase-copy {
    position: static;
  }

}

@media (max-width: 780px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .page-shell {
    width: min(100% - 16px, var(--content-width));
    margin-top: 8px;
    margin-bottom: 18px;
  }

  .review-profile-grid,
  .review-profile-grid-three,
  .media-assistant-layout,
  .media-results-grid {
    grid-template-columns: 1fr;
  }

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

  .blog-masthead {
    padding: 48px 16px 34px;
  }

  .blog-featured {
    min-height: 0;
    border-radius: 28px;
  }

  .blog-featured-media {
    min-height: 260px;
  }

  .blog-featured-copy {
    padding: 30px 24px;
  }

  .blog-cta .hero-actions {
    justify-content: flex-start;
  }

  .article-header {
    padding: 48px 12px 30px;
  }

  .article-hero-image {
    border-radius: 26px;
  }

  .article-prose {
    padding: 38px 12px 60px;
  }

  .media-assistant-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 30px;
  }

  .media-preview-card {
    min-height: 280px;
  }

  body.lake-guy-page .page-shell {
    width: min(100% - 16px, 1480px);
  }

  .site-header,
  .section,
  .contact-panel,
  .feature-page .hero {
    padding: 20px;
  }

  .section-jump-menu {
    right: 20px;
    top: 132px;
    bottom: auto;
    width: auto;
    gap: 0;
    padding: 0;
    transform: none;
  }

  .section-jump-menu span {
    display: none;
  }

  .section-jump-menu a {
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }

  .site-header {
    position: sticky;
    top: 8px;
    gap: 12px;
    border-radius: 24px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 14px;
  }

  .site-header,
  body.lake-guy-page .site-header {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 17, 17, 0.1);
  }

  .luxury-hero {
    min-height: calc(100svh - var(--header-height));
    height: calc(100svh - var(--header-height));
    border-radius: 28px;
  }

  .luxury-hero .hero-copy {
    min-height: calc(100svh - var(--header-height));
    justify-content: flex-end;
    padding: 116px 20px 42px;
  }

  .lake-guy-hero {
    min-height: auto;
    padding: 22px 20px 24px;
    border-radius: 28px;
  }

  .lake-guy-hero .hero-copy,
  .lake-guy-hero .hero-panel {
    width: 100%;
  }

  .lake-guy-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .lake-guy-hero-copy .hero-text {
    max-width: 100%;
  }

  .lake-guy-hero-actions {
    gap: 12px;
  }

  .lake-guy-guide-button {
    width: 100%;
    min-width: 0;
    min-height: 74px;
    padding: 0 24px;
  }

  .lake-guy-pill-row {
    gap: 8px;
    margin-top: 20px;
  }

  .lake-guy-pill-row span {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.7rem;
  }

  .lake-guide-highlight {
    margin-top: 22px;
    padding: 22px 20px 24px;
    border-radius: 24px;
  }

  .lake-guide-highlight strong {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .hero-orbit-one,
  .hero-orbit-two {
    display: none;
  }

  .hero-plaque {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
  }

  .hero-media img {
    object-position: center;
  }

  .hero h1,
  .section-heading h1,
  .section-heading h2,
  .cta-content h2,
  .realtor-copy h1,
  .realtor-copy h2 {
    font-size: clamp(2.45rem, 11.5vw, 4rem);
    line-height: 0.98;
  }

  .listing-grid-luxury,
  .pathways-grid,
  .lead-grid,
  .listing-facts-grid,
  .listing-summary-grid,
  .testimonial-grid,
  .review-source-grid,
  .experience-profile-grid,
  .trust-strip,
  .trust-indicators,
  .footer-luxury,
  .search-steps,
  .search-results-preview,
  .valuation-points,
  .valuation-process,
  .chart-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    border-color: rgba(17, 17, 17, 0.12);
    background: #ffffff;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    border-radius: 22px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .site-header.is-menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    min-height: 46px;
    width: 100%;
    justify-content: flex-start;
    padding: 0 14px;
    font-size: 0.92rem;
    color: #111111;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 16px;
    background: #ffffff;
  }

  .site-nav a.is-current {
    background: #f7f7f7;
    color: #111111;
  }

  .site-nav a.nav-cta:link,
  .site-nav a.nav-cta:visited,
  .site-nav a.nav-cta:hover,
  .site-nav a.nav-cta:focus-visible,
  .site-nav a.nav-cta:active {
    justify-content: center;
    background: #111111;
    color: #ffffff;
  }

  .brand {
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
    gap: 10px;
  }

  .brand-logo-image {
    width: clamp(210px, 52vw, 310px);
  }

  .brand-text {
    align-items: flex-start;
  }

  .brand-mark,
  .brand-mark-word {
    width: 46px;
    height: 46px;
  }

  .brand-text strong,
  .brand-text-compact strong {
    font-size: clamp(0.95rem, 4.5vw, 1.08rem);
  }

  .brand-tagline {
    margin-top: 3px;
    font-size: clamp(0.46rem, 2.2vw, 0.56rem);
    letter-spacing: 0.08em;
  }

  .brand-stars {
    gap: 0.28em;
    font-size: 0.5rem;
  }

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

  .valuation-hero .mock-field-group {
    grid-template-columns: 1fr;
  }

  .search-field {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .listings-sidecar {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .listings-lead h2 {
    max-width: 12ch;
  }

  .listing-gallery-primary {
    min-height: 320px;
  }

  .listing-gallery-stack img {
    min-height: 180px;
  }

  .listing-contact-actions .button {
    width: 100%;
  }

  .search-field select {
    min-height: 28px;
    font-size: 0.95rem;
  }

  .hero-actions .button,
  .contact-actions .button,
  .closing-actions .button {
    width: 100%;
  }

  .trust-strip {
    padding: 20px;
    gap: 10px;
    border-radius: 28px;
  }

  .trust-strip div {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

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

  .section-heading-split {
    gap: 14px;
  }

  .property-body,
  .review-source-card,
  .testimonial-card,
  .integration-copy,
  .form-card,
  .signature-quote-card,
  .pathway-card-featured {
    padding: 20px;
  }

  .portrait-frame {
    min-height: 300px;
    border-radius: 26px;
  }

  .realtor-layout,
  .signature-quote-layout,
  .review-showcase-layout {
    gap: 22px;
  }

  .review-showcase-copy {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
  }

  body.reviews-page .review-dossier-intro,
  body.reviews-page .review-dossier-layout {
    grid-template-columns: 1fr;
  }

  body.reviews-page .review-dossier-intro .eyebrow,
  body.reviews-page .review-dossier-intro h1,
  body.reviews-page .review-dossier-intro .section-intro,
  body.reviews-page .review-dossier-intro .review-showcase-links {
    grid-column: 1;
  }

  body.reviews-page .review-dossier-intro h1 {
    max-width: 10ch;
    font-size: clamp(3.4rem, 14vw, 6.5rem);
  }

  body.reviews-page .review-verification-panel {
    position: static;
    border-left: 0;
    border-top: 4px solid #111111;
  }

  .review-showcase-copy h1,
  .signature-quote-layout h1 {
    font-size: clamp(2.45rem, 11vw, 3.8rem);
  }

  .review-source-card {
    border-radius: 20px;
  }

  .reviews-page .review-showcase {
    padding-top: 28px;
  }

  body.reviews-page .review-source-card,
  body.reviews-page .review-source-card-featured {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
  }

  body.reviews-page .ratemyagent-widget-shell {
    min-height: 440px;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ratemyagent-widget-shell iframe,
  .ratemyagent-widget-shell .review-carousel-markup-container {
    min-width: 0;
    max-width: 100%;
  }

  .review-source-head,
  .property-topline,
  .live-review-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-luxury {
    padding: 22px 20px;
    gap: 12px;
  }

  .crafted-by {
    justify-self: start;
  }

  .social-row a {
    width: auto;
    min-height: 40px;
  }

  .integration-map {
    min-height: 220px;
    padding: 20px;
  }

  .lake-guy-layout,
  .sold-gallery-grid {
    grid-template-columns: 1fr;
  }

  .lake-guy-actions .button {
    width: 100%;
  }

  .review-showcase-links {
    gap: 10px;
    justify-content: stretch;
  }

  .review-showcase-links a {
    width: 100%;
    justify-content: center;
  }

  .experience-profile-card {
    padding: 20px;
  }

  .experience-source-links a {
    width: 100%;
  }

  .about-guide-card {
    padding: 20px;
  }

  .about-guide-actions .service-link {
    width: 100%;
    margin-top: 0;
  }

  .sold-stories-track {
    gap: 14px;
    animation-duration: 26s;
  }

  .sold-story-card {
    flex-basis: 220px;
    min-height: 280px;
  }

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

  .luxury-hero .hero-actions-centered {
    animation-duration: 560ms;
    animation-delay: 120ms;
  }
}

@media (max-width: 520px) {
  :root {
    --header-height: 110px;
  }

  .page-shell {
    width: min(100% - 10px, var(--content-width));
    margin-top: 5px;
  }

  .site-header {
    top: 5px;
    padding: 10px;
    border-radius: 20px;
  }

  .brand-mark,
  .brand-mark-word {
    width: 40px;
    height: 40px;
  }

  .brand-text {
    align-items: flex-start;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-color: rgba(17, 17, 17, 0.12);
    background: #ffffff;
  }

  .luxury-hero {
    min-height: calc(100svh - var(--header-height));
    height: calc(100svh - var(--header-height));
  }

  .luxury-hero .hero-copy {
    min-height: calc(100svh - var(--header-height));
    padding: 76px 18px 24px;
  }

  .hero-actions,
  .luxury-hero .hero-actions-centered,
  .lake-guy-hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .service-link,
  .review-profile-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .section,
  .trust-strip,
  .site-footer,
  .review-source-card,
  .signature-quote-card,
  .pathway-card,
  .form-card {
    border-radius: 22px;
  }

  .review-source-head {
    gap: 10px;
  }

  .review-status {
    align-self: flex-start;
  }

  .ratemyagent-widget-shell {
    min-height: 390px;
    max-height: 520px;
    padding: 8px;
  }

  body.reviews-page .ratemyagent-widget-shell {
    min-height: 390px;
    padding: 0;
  }

  body.reviews-page .review-dossier {
    padding: 32px 14px;
  }

  body.reviews-page .review-feature-panel {
    padding: 16px;
    border-radius: 22px;
  }

  body.reviews-page .review-dossier-intro h1 {
    max-width: 100%;
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .lake-guy-hero-copy h1,
  .hero h1,
  .section-heading h1,
  .section-heading h2,
  .realtor-copy h1,
  .realtor-copy h2,
  .review-showcase-copy h1,
  .signature-quote-layout h1 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .hero-text,
  .section-intro,
  .realtor-copy p,
  .signature-quote-card p {
    font-size: 1rem;
    line-height: 1.65;
  }
}

/* Professional refinement: remove soft template bubbles across the site. */
.site-header,
.section,
.trust-strip,
.site-footer,
.hero,
.feature-page .hero,
.section-jump-menu,
.site-nav,
.site-nav a,
.menu-toggle,
.button,
.service-link,
.review-profile-link,
.review-showcase-links a,
.experience-source-links a,
.social-row a,
.about-guide-card,
.experience-profile-card,
.review-feature-panel,
.review-verification-panel,
.review-source-card,
.live-review-card,
.ratemyagent-widget-shell,
.signature-quote-card,
.portrait-frame,
.trust-indicators div,
.trust-indicators strong,
.pathway-card,
.pathway-card-featured,
.property-card,
.testimonial-card,
.form-card,
.contact-card,
.blog-card,
.blog-featured,
.blog-cta,
.article-hero-image,
.article-cta,
.faq-item,
.integration-copy,
.integration-map,
.lake-guide-highlight,
.lake-guy-hero,
.lake-guy-signal-card,
.lake-guy-pill-row span,
.mock-field,
.review-status {
  border-radius: 0 !important;
}

.section,
.trust-strip,
.about-guide-card,
.experience-profile-card,
.review-feature-panel,
.review-source-card,
.signature-quote-card,
.pathway-card,
.property-card,
.testimonial-card,
.form-card,
.contact-card,
.faq-item,
.blog-card {
  box-shadow: none !important;
}

.section,
.trust-strip,
.about-guide-card,
.experience-profile-card,
.review-feature-panel,
.review-source-card,
.signature-quote-card,
.faq-item {
  border-color: rgba(17, 17, 17, 0.14) !important;
}

.button,
.service-link,
.review-profile-link,
.review-showcase-links a,
.experience-source-links a,
.social-row a {
  min-height: 44px;
  border-radius: 0 !important;
  letter-spacing: 0.1em;
}

.button:hover,
.button:focus-visible,
.service-link:hover,
.service-link:focus-visible,
.review-profile-link:hover,
.review-profile-link:focus-visible,
.review-showcase-links a:hover,
.review-showcase-links a:focus-visible,
.experience-source-links a:hover,
.experience-source-links a:focus-visible {
  transform: none;
}

.site-header {
  box-shadow: none;
}

.menu-toggle {
  border: 1px solid rgba(17, 17, 17, 0.18);
}

.section-jump-menu {
  background: rgba(17, 17, 17, 0.9);
}

.section-jump-menu {
  gap: 10px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.section-jump-menu a {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(17, 17, 17, 0.9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

body.home-page .menu-toggle {
  display: none;
}

body.home-page .site-nav {
  display: flex;
  width: auto;
}

body.home-page .site-nav .nav-cta {
  min-width: 170px;
}

body.home-page .site-header {
  display: none;
}

body.home-page .luxury-hero {
  height: 100svh;
  min-height: 100svh;
}

body.home-page .luxury-hero .hero-copy {
  min-height: 100svh;
  padding-top: clamp(132px, 18svh, 190px);
}

.hero-brand {
  position: absolute;
  top: clamp(18px, 2.4vw, 28px);
  left: clamp(18px, 3vw, 44px);
  z-index: 5;
  width: auto;
  color: #ffffff;
}

.hero-logo-lockup {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 20px);
  text-decoration: none;
}

.hero-logo-lockup-compact {
  padding: 0;
  background: transparent;
}

.hero-logo-panel {
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-logo-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-logo-panel-andrew {
  width: clamp(190px, 19vw, 310px);
  padding: 0;
}

.hero-logo-lockup-compact .hero-logo-panel-andrew {
  width: clamp(230px, 22vw, 350px);
}

.hero-logo-panel-compass {
  width: clamp(120px, 10vw, 170px);
  padding: 0;
}

.hero-brand .brand-logo-image {
  width: clamp(280px, 30vw, 470px);
  padding: 0;
  background: transparent;
}

.hero-brand .brand-mark,
.hero-brand .brand-mark-word {
  background: rgba(255, 255, 255, 0.92);
}

.hero-brand .brand-text strong,
.hero-brand .brand-tagline,
.hero-brand .brand-stars {
  color: #ffffff;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
}

.hero-brand .brand-tagline {
  opacity: 0.86;
}

body.home-page .section-jump-menu {
  top: clamp(22px, 4vw, 42px);
}

body.home-page .section-jump-menu a {
  opacity: 0;
  transform: translateY(-4px);
  animation: brandStarReveal 360ms ease-out both;
}

body.home-page .section-jump-menu a:nth-of-type(1) {
  animation-delay: 1040ms;
}

body.home-page .section-jump-menu a:nth-of-type(2) {
  animation-delay: 1160ms;
}

body.home-page .section-jump-menu a:nth-of-type(3) {
  animation-delay: 1280ms;
}

body.home-page .section-jump-menu a:nth-of-type(4) {
  animation-delay: 1400ms;
}

.about-guide-card,
.experience-profile-card,
body.reviews-page .review-feature-panel {
  background: #ffffff;
}

.about-guide-card {
  border-left: 4px solid #111111;
}

.about-guide-card h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.experience-profile-grid,
.review-dossier-layout {
  align-items: stretch;
}

body.reviews-page .review-verification-panel {
  border-top: 4px solid #111111;
}

body.reviews-page .ratemyagent-widget-shell {
  background: transparent;
}

.third-party-review-widget {
  min-height: 460px;
  margin: 22px 0;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.12);
  overflow: hidden;
}

.third-party-review-widget:empty {
  display: none;
}

.third-party-widget-placeholder {
  padding: clamp(22px, 4vw, 36px);
  color: #111111;
}

.third-party-widget-placeholder p {
  margin: 0 0 16px;
  color: #555555;
  font-size: 0.98rem;
  line-height: 1.7;
}

.third-party-widget-placeholder code {
  padding: 2px 5px;
  background: #f4f4f4;
  color: #111111;
  font-size: 0.9em;
}

.third-party-widget-placeholder a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  background: #111111;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 780px) {
  .site-header,
  .section,
  .trust-strip,
  .feature-page .hero {
    border-radius: 0 !important;
  }

  body.reviews-page .review-verification-panel {
    border-left: 0;
    border-top: 4px solid #111111;
  }
}

/* Mobile refinement pass for the current page set. */
@media (max-width: 900px) {
  .page-shell,
  body.lake-guy-page .page-shell,
  body.reviews-page .page-shell {
    width: 100%;
    margin: 0;
  }

  .site-header {
    top: 0;
    z-index: 50;
    width: 100%;
    padding: 12px clamp(14px, 4vw, 22px);
    border-left: 0;
    border-right: 0;
  }

  .brand {
    max-width: calc(100% - 58px);
  }

  .brand-logo-image {
    width: min(250px, 58vw);
  }

  .brand-text {
    min-width: 0;
  }

  .brand-text strong {
    white-space: nowrap;
  }

  .brand-tagline {
    white-space: nowrap;
  }

  .site-nav {
    max-height: calc(100svh - 92px);
    overflow-y: auto;
  }

  body.home-page .site-nav {
    display: flex;
    max-height: none;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  body.home-page .site-nav .nav-cta {
    min-width: 0;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.68rem;
  }

  body.home-page .luxury-hero,
  body.home-page .luxury-hero .hero-copy {
    height: 100svh;
    min-height: 100svh;
  }

  body.home-page .luxury-hero .hero-copy {
    padding-top: clamp(124px, 18svh, 170px);
  }

  .hero-brand {
    top: 18px;
    left: 18px;
    max-width: calc(100% - 110px);
  }

  body.home-page .hero-brand.hero-logo-lockup {
    max-width: calc(100vw - 36px);
    gap: 10px;
  }

  body.home-page .hero-logo-lockup-compact .hero-logo-panel-andrew {
    width: min(270px, 58vw);
  }

  body.home-page .hero-logo-panel-andrew {
    width: min(48vw, 210px);
    padding: 0;
  }

  body.home-page .hero-logo-panel-compass {
    width: min(34vw, 150px);
    padding: 0;
  }

  body:not(.home-scroll-locked) main {
    padding-bottom: 34px;
  }

  .section,
  .feature-page .hero {
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  body.reviews-page .review-dossier {
    padding: clamp(28px, 8vw, 56px) clamp(16px, 5vw, 28px);
  }

  body.reviews-page .review-dossier-layout {
    gap: 18px;
  }

  body.reviews-page .review-verification-panel {
    grid-template-columns: 1fr;
  }

  body.reviews-page .review-verification-panel .third-party-review-widget,
  body.reviews-page .review-verification-panel .live-review-grid {
    grid-column: 1;
    grid-row: auto;
  }

  body.reviews-page .review-feature-panel,
  body.reviews-page .review-verification-panel {
    min-width: 0;
    padding: clamp(18px, 5vw, 28px);
  }

  body.reviews-page .review-source-head {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  body.reviews-page .review-status {
    flex: 0 0 auto;
  }

  .third-party-review-widget,
  body.reviews-page .ratemyagent-widget-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .third-party-review-widget {
    min-height: 220px;
  }

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

  .section-jump-menu {
    right: 18px;
    top: 116px;
    gap: 8px;
  }

  body.home-page .section-jump-menu {
    top: 118px;
    right: 18px;
    left: 18px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .section-jump-menu a {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.58rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 86px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .brand {
    gap: 9px;
  }

  .brand-logo-image {
    width: min(230px, 58vw);
  }

  .brand-mark,
  .brand-mark-word {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 1rem;
    line-height: 1;
  }

  .brand-tagline {
    font-size: 0.52rem;
    letter-spacing: 0.09em;
  }

  .brand-stars {
    margin-top: 3px;
    font-size: 0.52rem;
  }

  .menu-toggle {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }

  .luxury-hero {
    height: calc(100svh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    border-left: 0;
    border-right: 0;
  }

  .luxury-hero .hero-copy {
    min-height: calc(100svh - var(--header-height));
    padding: clamp(34px, 8svh, 70px) 18px clamp(18px, 4svh, 30px);
    justify-content: center;
  }

  .luxury-hero .eyebrow {
    margin-bottom: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .luxury-hero h1 {
    max-width: 11ch;
    font-size: clamp(3.05rem, 14.8vw, 4.85rem);
    line-height: 0.9;
  }

  .luxury-hero .hero-text {
    max-width: 31rem;
    margin-top: 14px;
    font-size: clamp(0.96rem, 3.8vw, 1.08rem);
    line-height: 1.55;
  }

  .luxury-hero .hero-actions-centered {
    margin-top: 18px;
    gap: 10px;
  }

  .luxury-hero .hero-actions-centered .button {
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.74rem;
  }

  .hero-media img {
    object-position: 58% center;
  }

  body.reviews-page .review-dossier-intro h1,
  .lake-guy-hero-copy h1,
  .realtor-copy h1,
  .realtor-copy h2,
  .experience-hero h1,
  .blog-masthead h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
    line-height: 0.95;
  }

  body.reviews-page .review-source-head {
    flex-direction: column;
  }

  .third-party-widget-placeholder {
    padding: 20px;
  }

  .third-party-widget-placeholder a,
  .review-profile-link,
  .review-showcase-links a {
    width: 100%;
  }

  body.reviews-page .ratemyagent-widget-shell {
    min-height: 430px;
    max-height: none;
  }
}

@media (max-width: 390px) {
  :root {
    --header-height: 80px;
  }

  body.home-page .hero-brand.hero-logo-lockup {
    top: 14px;
    left: 14px;
    max-width: calc(100vw - 28px);
    gap: 8px;
  }

  body.home-page .hero-logo-lockup-compact .hero-logo-panel-andrew {
    width: min(230px, 66vw);
  }

  body.home-page .hero-logo-panel-andrew {
    width: 52vw;
  }

  body.home-page .hero-logo-panel-compass {
    width: 32vw;
    padding: 0;
  }

  .brand-mark,
  .brand-mark-word {
    width: 36px;
    height: 36px;
  }

  .brand-text strong {
    font-size: 0.92rem;
  }

  .brand-tagline {
    font-size: 0.46rem;
    letter-spacing: 0.07em;
  }

  .brand-stars {
    font-size: 0.46rem;
  }

  .menu-toggle {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .luxury-hero h1 {
    font-size: clamp(2.7rem, 14.2vw, 3.7rem);
  }

  body.home-page .site-nav .nav-cta {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }

  .hero-brand .brand-mark,
  .hero-brand .brand-mark-word {
    width: 36px;
    height: 36px;
  }
}

body.home-page .luxury-hero,
body.home-page .luxury-hero .hero-copy {
  height: 100svh !important;
  min-height: 100svh !important;
}

body.home-page .luxury-hero .hero-copy {
  justify-content: center;
  width: min(100%, 1280px);
  margin: 0;
  padding: clamp(112px, 13svh, 148px) clamp(24px, 6vw, 96px) clamp(34px, 6svh, 72px);
}

body.home-page .luxury-hero h1 {
  max-width: 15.5ch;
  font-size: clamp(4rem, 5.15vw, 6.1rem);
  line-height: 0.88;
}

body.home-page .luxury-hero .hero-text {
  max-width: 50ch;
  margin-top: clamp(14px, 2svh, 20px);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.62;
}

body.home-page .luxury-hero .hero-actions-centered {
  width: min(100%, 680px);
  margin-top: clamp(18px, 2.8svh, 28px);
}

body.home-page .luxury-hero .hero-actions-centered .button {
  flex: 1 1 240px;
}

body.about-page .realtor-copy h1 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(4.1rem, 5.45vw, 6.2rem);
  line-height: 0.9;
}

body.about-page .page-shell,
body.about-page main {
  height: 100svh;
  overflow: hidden;
}

body.about-page .realtor-section {
  height: calc(100svh - var(--header-height));
  min-height: 0;
  padding-top: clamp(22px, 3vw, 42px);
  padding-bottom: clamp(22px, 3vw, 42px);
  overflow: hidden;
}

body.about-page .realtor-layout {
  height: 100%;
  gap: clamp(28px, 3.6vw, 52px);
}

body.about-page .portrait-frame {
  height: 100%;
  min-height: 0;
  background: #ffffff;
}

body.about-page .portrait-frame img {
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

body.about-page .realtor-copy {
  max-height: 100%;
  overflow: hidden;
}

body.about-page .realtor-copy p {
  margin-bottom: clamp(10px, 1.4vw, 18px);
  line-height: 1.62;
}

body.about-page .about-guide-card {
  margin-top: clamp(14px, 1.8vw, 24px);
  padding: clamp(18px, 2vw, 24px);
}

body.about-page .about-guide-card h2 {
  font-size: clamp(1.9rem, 2.7vw, 2.6rem);
}

body.reviews-page .review-dossier {
  padding-top: clamp(34px, 4vw, 64px);
}

body.reviews-page .review-dossier-intro {
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.7fr);
  gap: clamp(28px, 4vw, 68px);
  margin-bottom: clamp(22px, 3vw, 36px);
  padding-bottom: clamp(20px, 2.5vw, 32px);
}

body.reviews-page .review-dossier-intro h1 {
  max-width: 13.5ch;
  font-size: clamp(3.4rem, 5vw, 5.65rem);
  line-height: 0.9;
}

body.reviews-page .review-dossier-intro .section-intro {
  max-width: 34rem;
  margin: 0;
}

body.reviews-page .review-showcase-links {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: stretch;
}

body.reviews-page .review-showcase-links a {
  justify-content: center;
}

body.reviews-page .review-dossier-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(22px, 3vw, 38px);
}

body.reviews-page .review-feature-panel,
body.reviews-page .review-verification-panel {
  min-height: clamp(520px, 58svh, 680px);
}

body.reviews-page .review-verification-panel {
  display: flex;
  flex-direction: column;
}

body.reviews-page .review-verification-panel .third-party-review-widget,
body.reviews-page .review-verification-panel .live-review-grid {
  grid-column: auto;
  grid-row: auto;
}

body.reviews-page .review-verification-panel .third-party-review-widget {
  flex: 1 1 auto;
  min-height: 360px;
}

body.reviews-page .ratemyagent-widget-shell {
  min-height: 430px;
}

@media (max-width: 900px) {
  body.reviews-page .review-dossier-intro {
    grid-template-columns: 1fr;
  }

  body.reviews-page .review-dossier-layout {
    grid-template-columns: 1fr;
  }

  body.reviews-page .review-feature-panel,
  body.reviews-page .review-verification-panel {
    min-height: 0;
  }

  body.reviews-page .review-dossier-intro .review-intro-panel {
    grid-column: 1;
  }

  body.reviews-page .review-proof-strip div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  }

  body.reviews-page .review-proof-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-height: 820px) and (min-width: 901px) {
  body.home-page .luxury-hero h1 {
    max-width: 16ch;
    font-size: clamp(3.5rem, 4.55vw, 5.25rem);
  }

  body.home-page .luxury-hero .hero-copy {
    padding-top: 108px;
    padding-bottom: 28px;
  }

  body.home-page .luxury-hero .hero-text {
    margin-top: 12px;
    line-height: 1.5;
  }

  body.home-page .luxury-hero .hero-actions-centered {
    margin-top: 18px;
  }
}

@media (max-width: 1100px) {
  body.about-page .realtor-copy h1 {
    white-space: nowrap;
    font-size: clamp(3.15rem, 6.1vw, 4.25rem);
  }
}

@media (max-width: 720px) {
  body.about-page {
    height: auto;
    overflow: auto;
    overscroll-behavior: auto;
  }

  body.about-page .page-shell,
  body.about-page main,
  body.about-page .realtor-section {
    height: auto;
    overflow: visible;
  }

  body.about-page .realtor-section {
    padding-top: clamp(38px, 10vw, 62px);
    padding-bottom: clamp(42px, 12vw, 72px);
  }

  body.home-page .luxury-hero .hero-actions-centered .button {
    flex: 0 0 auto;
  }

  body.home-page .luxury-hero h1 {
    max-width: 22ch;
    font-size: clamp(2.2rem, 8vw, 3.4rem);
    line-height: 1.04;
  }

  body.home-page .section-jump-menu {
    top: 118px;
    right: 12px;
    left: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  body.about-page .realtor-copy h1 {
    white-space: normal;
    font-size: clamp(3rem, 13vw, 4rem);
  }

  body.about-page .portrait-frame {
    min-height: clamp(360px, 115vw, 560px);
    height: auto;
  }
}

@media (max-width: 560px) {
  body.home-page .section-jump-menu {
    top: 104px;
    right: 12px;
    left: 12px;
    flex-wrap: wrap;
  }
}

/* Live-ready polish: keep internal status language out of the public UI. */
.stat-status,
.review-status {
  display: none !important;
}

.review-source-label,
.about-guide-label,
.experience-profile-card span,
.lake-guy-proof-label {
  color: #111111;
  opacity: 1;
}

.section-intro,
.realtor-copy p,
.experience-profile-card p,
.review-verification-panel p,
.live-review-quote,
.site-footer p {
  color: #343434;
}

body.is-loaded .site-header {
  animation: polishedHeaderIn 520ms ease-out both;
}

[data-reveal].is-visible .portrait-frame img,
[data-reveal].is-visible .hero-media img,
[data-reveal].is-visible .article-hero-image img {
  animation: editorialImageSettle 1200ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.review-feature-panel,
.review-verification-panel,
.experience-profile-card,
.about-guide-card,
.blog-card,
.live-review-card {
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.review-feature-panel:hover,
.review-verification-panel:hover,
.experience-profile-card:hover,
.about-guide-card:hover,
.blog-card:hover,
.live-review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 17, 17, 0.24) !important;
}

.review-profile-link,
.review-showcase-links a,
.experience-source-links a,
.service-link,
.button {
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    letter-spacing 220ms ease;
}

.review-profile-link:hover,
.review-profile-link:focus-visible,
.review-showcase-links a:hover,
.review-showcase-links a:focus-visible,
.experience-source-links a:hover,
.experience-source-links a:focus-visible,
.service-link:hover,
.service-link:focus-visible,
.button:hover,
.button:focus-visible {
  letter-spacing: 0.13em;
}

@keyframes polishedHeaderIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes editorialImageSettle {
  from {
    transform: scale(1.035);
    filter: saturate(0.86) contrast(0.94);
  }

  to {
    transform: scale(1);
    filter: saturate(1) contrast(1);
  }
}

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

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

  [data-reveal],
  [data-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .brand-stars > span {
    opacity: 1 !important;
    transform: none !important;
  }

  .luxury-hero .hero-actions-centered,
  .blog-card {
    animation: none !important;
    transition: none !important;
  }

  .sold-stories-track {
    animation: none !important;
    transform: none !important;
  }
}
