﻿@font-face {
  font-family: "Geist";
  src: url("fonts/Geist-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f4f1eb;
  --surface: #fcfaf7;
  --surface-strong: #ffffff;
  --text: #1f2731;
  --muted: #66707c;
  --line: rgba(27, 39, 52, 0.1);
  --line-strong: rgba(27, 39, 52, 0.18);
  --brand: #203449;
  --brand-soft: #638bb2;
  --accent: #b78b5a;
  --accent-soft: #dfc6aa;
  --shadow: 0 24px 60px rgba(19, 32, 48, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1140px;
  --page-gutter: clamp(20px, 4vw, 64px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Geist", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(135, 169, 205, 0.18), transparent 34%),
    linear-gradient(180deg, #faf8f4 0%, var(--bg) 48%, #eff3f7 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - var(--page-gutter) * 2), var(--container));
  margin: 0 auto;
}

.site-header .container,
.hero-section .container,
.object-hero .container {
  width: min(calc(100% - var(--page-gutter) * 2), 1560px);
}

.section {
  padding: 88px 0;
}

.intro-section,
.listings-section,
.faq-section {
  background:
    linear-gradient(180deg, rgba(32, 52, 73, 0.035), rgba(32, 52, 73, 0.065)),
    rgba(239, 243, 247, 0.5);
  border-block: 1px solid rgba(32, 52, 73, 0.07);
}

.services-section,
.partner-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(252, 250, 247, 0.72)),
    rgba(255, 255, 255, 0.72);
}

.expert-section {
  background:
    radial-gradient(circle at 18% 34%, rgba(183, 139, 90, 0.12), transparent 28%),
    linear-gradient(180deg, #1b2221 0%, #202726 100%);
  color: rgba(255, 255, 255, 0.88);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(18, 29, 43, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    backdrop-filter 0.22s ease,
    box-shadow 0.22s ease;
}

.site-header.is-compact {
  background: rgba(18, 29, 43, 0.94);
  box-shadow: 0 10px 30px rgba(10, 20, 31, 0.12);
}

.nav-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 30px 0;
  transition:
    gap 0.22s ease,
    padding 0.22s ease;
}

.site-header.is-compact .nav-bar {
  gap: 24px;
  padding: 10px 0;
}

.brand img,
.footer-logo {
  width: 184px;
  height: auto;
}

.brand img {
  transition: width 0.22s ease;
}

.site-header.is-compact .brand img {
  width: 150px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

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

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

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  transition:
    gap 0.22s ease,
    font-size 0.22s ease;
}

.site-header.is-compact .main-nav {
  gap: 18px;
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

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

.brand,
.main-nav a,
.site-header .button {
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease;
}

.brand:hover,
.main-nav a:hover,
.site-header .button:hover {
  opacity: 0.9;
}

.button-dark {
  background: #fff;
  color: var(--brand);
}

.site-header .button-dark {
  background: rgba(255, 255, 255, 0.96);
  color: #fff;
}

.site-header .button-dark {
  color: var(--brand);
}

.site-header .button {
  transition:
    min-height 0.22s ease,
    padding 0.22s ease,
    font-size 0.22s ease,
    opacity 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease;
}

.site-header.is-compact .button {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.92rem;
}

.button-light {
  background: #fff;
  color: var(--brand);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button-primary {
  background: var(--brand);
  color: #fff;
}

.hero-section {
  padding: 0;
}

.hero-section .container {
  width: 100%;
  max-width: none;
}

.hero-card {
  --hero-inset: clamp(34px, 4.6vw, 76px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(720px, 82svh, 940px);
  padding-block: var(--hero-inset);
  padding-inline: max(var(--page-gutter), calc((100vw - 1560px) / 2));
  border-radius: 0;
  background: #0d1d2d;
  box-shadow: var(--shadow);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 600px);
  margin: 0;
  padding: clamp(34px, 4.2vw, 56px);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(15, 27, 40, 0.7), rgba(15, 27, 40, 0.42)),
    rgba(17, 31, 46, 0.32);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 55px rgba(10, 20, 31, 0.22);
  color: #fff;
}

.hero-content h1,
.section-heading h2,
.intro-copy h2,
.partner-copy h2 {
  margin: 0;
  font-family: "Geist", sans-serif;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero-content h1 {
  max-width: 11ch;
  font-size: clamp(2.85rem, 4.8vw, 5rem);
  line-height: 1;
}

.hero-copy {
  max-width: 42ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.hero-facts div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-facts strong,
.partner-stats strong {
  display: block;
  font-family: "Geist", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  font-weight: 700;
}

.hero-facts span,
.partner-stats span {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 78%;
  filter: saturate(0.98) contrast(1.02);
  transform: scale(1.035);
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-card:hover .hero-image {
  transform: scale(1.07);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 19, 30, 0.48) 0%, rgba(10, 21, 33, 0.24) 35%, rgba(10, 21, 33, 0.1) 68%, rgba(10, 21, 33, 0.28) 100%),
    linear-gradient(180deg, rgba(9, 19, 30, 0.22) 0%, transparent 34%, rgba(9, 19, 30, 0.26) 100%);
}

.company-intro-section {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 6vw, 92px) 0 clamp(60px, 6vw, 98px);
  background: #202524;
  color: rgba(226, 224, 219, 0.9);
}

.company-intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.024), transparent 46%),
    radial-gradient(circle at 18% 28%, rgba(183, 139, 90, 0.045), transparent 34%);
}

.company-intro {
  position: relative;
  max-width: 1120px;
}

.intro-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 16px;
  padding: 0 18px;
  border: 1px solid rgba(226, 224, 219, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.012);
  color: rgba(226, 224, 219, 0.58);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
}

.company-intro h2 {
  max-width: 1040px;
  margin: 0;
  color: rgba(226, 224, 219, 0.84);
  font-size: clamp(1.72rem, 2.35vw, 2.9rem);
  font-weight: 620;
  line-height: 1.18;
  letter-spacing: 0;
}

.company-intro p:last-child {
  max-width: 1060px;
  margin: 18px 0 0;
  color: rgba(226, 224, 219, 0.74);
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
  line-height: 1.52;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

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

.section-heading.narrow {
  max-width: 580px;
}

.section-heading.light {
  color: #fff;
}

.section-heading h2,
.intro-copy h2,
.partner-copy h2 {
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);
}

.section-heading p:last-child {
  margin: 14px auto 0;
  max-width: 58ch;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 56px;
  align-items: center;
}

.partner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.showcase-copy p,
.partner-copy p,
.service-card p,
.listing-body p,
.expert-copy p,
.faq-list p,
.site-footer p,
.site-footer li {
  color: var(--muted);
}

.showcase-copy {
  position: relative;
  min-height: 310px;
}

.showcase-text {
  display: grid;
  align-content: center;
  min-height: 310px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.36s ease,
    transform 0.36s ease;
}

.showcase-text + .showcase-text {
  position: absolute;
  inset: 0;
}

.showcase-icon {
  margin-bottom: 16px;
  color: var(--brand);
  font-size: 2.2rem;
  line-height: 1;
}

.showcase-text h2 {
  margin: 0 0 20px;
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  font-weight: 620;
  line-height: 1.14;
}

.showcase-text p {
  max-width: 34ch;
  margin: 0;
  font-size: 1.02rem;
}

.showcase-mobile {
  display: none;
}

.showcase-mobile-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(32, 52, 73, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(24, 38, 53, 0.07);
}

.showcase-mobile-card img {
  width: 100%;
  aspect-ratio: 1.28 / 0.86;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.showcase-mobile-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.showcase-mobile-card h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.15;
}

.showcase-mobile-card p {
  margin: 0;
  color: var(--muted);
}

.showcase-text-1 {
  opacity: 1;
  transform: none;
}

.intro-grid[data-showcase="2"] .showcase-text,
.intro-grid[data-showcase="3"] .showcase-text {
  opacity: 0;
  transform: translateY(12px);
}

.intro-grid[data-showcase="2"] .showcase-text-2,
.intro-grid[data-showcase="3"] .showcase-text-3 {
  opacity: 1;
  transform: none;
}

.intro-grid:has(.showcase-tab:hover) .showcase-text,
.intro-grid:has(.showcase-tab:focus-visible) .showcase-text {
  opacity: 0;
  transform: translateY(12px);
}

.intro-grid:has(.showcase-tab-1:hover) .showcase-text-1,
.intro-grid:has(.showcase-tab-1:focus-visible) .showcase-text-1,
.intro-grid:has(.showcase-tab-2:hover) .showcase-text-2,
.intro-grid:has(.showcase-tab-2:focus-visible) .showcase-text-2,
.intro-grid:has(.showcase-tab-3:hover) .showcase-text-3,
.intro-grid:has(.showcase-tab-3:focus-visible) .showcase-text-3 {
  opacity: 1;
  transform: none;
}

.showcase-panel {
  position: relative;
  display: grid;
  gap: 16px;
  isolation: isolate;
}

.showcase-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.showcase-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 0.44s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-image-1 {
  opacity: 1;
  transform: scale(1);
}

.intro-grid[data-showcase="2"] .showcase-image,
.intro-grid[data-showcase="3"] .showcase-image {
  opacity: 0;
  transform: scale(1.025);
}

.intro-grid[data-showcase="2"] .showcase-image-2,
.intro-grid[data-showcase="3"] .showcase-image-3 {
  opacity: 1;
  transform: scale(1);
}

.intro-grid:has(.showcase-tab:hover) .showcase-image,
.intro-grid:has(.showcase-tab:focus-visible) .showcase-image {
  opacity: 0;
  transform: scale(1.025);
}

.intro-grid:has(.showcase-tab-1:hover) .showcase-image-1,
.intro-grid:has(.showcase-tab-1:focus-visible) .showcase-image-1,
.intro-grid:has(.showcase-tab-2:hover) .showcase-image-2,
.intro-grid:has(.showcase-tab-2:focus-visible) .showcase-image-2,
.intro-grid:has(.showcase-tab-3:hover) .showcase-image-3,
.intro-grid:has(.showcase-tab-3:focus-visible) .showcase-image-3 {
  opacity: 1;
  transform: scale(1);
}

.showcase-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(32, 52, 73, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 34px rgba(24, 38, 53, 0.08);
}

.showcase-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: rgba(32, 52, 73, 0.7);
  cursor: pointer;
  text-align: left;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.showcase-tab::before {
  content: "";
  position: absolute;
  inset: auto 16px 10px 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.showcase-tab span {
  flex: 0 0 auto;
  font-size: clamp(1.7rem, 2.3vw, 2.45rem);
  line-height: 1;
  font-weight: 360;
  letter-spacing: 0;
}

.showcase-tab strong {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.2;
  color: currentColor;
}

.showcase-tab:hover,
.showcase-tab:focus-visible {
  color: var(--brand);
  background: rgba(32, 52, 73, 0.06);
  border-color: rgba(32, 52, 73, 0.1);
  outline: none;
}

.intro-grid[data-showcase="1"] .showcase-tab-1,
.intro-grid[data-showcase="2"] .showcase-tab-2,
.intro-grid[data-showcase="3"] .showcase-tab-3 {
  color: var(--brand);
  background: var(--surface-strong);
  border-color: rgba(32, 52, 73, 0.14);
  box-shadow: 0 10px 22px rgba(24, 38, 53, 0.08);
}

.intro-grid:has(.showcase-tab:hover) .showcase-tab,
.intro-grid:has(.showcase-tab:focus-visible) .showcase-tab {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.intro-grid:has(.showcase-tab-1:hover) .showcase-tab-1,
.intro-grid:has(.showcase-tab-1:focus-visible) .showcase-tab-1,
.intro-grid:has(.showcase-tab-2:hover) .showcase-tab-2,
.intro-grid:has(.showcase-tab-2:focus-visible) .showcase-tab-2,
.intro-grid:has(.showcase-tab-3:hover) .showcase-tab-3,
.intro-grid:has(.showcase-tab-3:focus-visible) .showcase-tab-3 {
  color: var(--brand);
  background: var(--surface-strong);
  border-color: rgba(32, 52, 73, 0.14);
  box-shadow: 0 10px 22px rgba(24, 38, 53, 0.08);
}

.intro-grid[data-showcase="1"] .showcase-tab-1::before,
.intro-grid[data-showcase="2"] .showcase-tab-2::before,
.intro-grid[data-showcase="3"] .showcase-tab-3::before {
  opacity: 0.72;
  transform: scaleX(1);
}

.intro-grid:has(.showcase-tab:hover) .showcase-tab::before,
.intro-grid:has(.showcase-tab:focus-visible) .showcase-tab::before {
  opacity: 0;
  transform: scaleX(0.35);
}

.intro-grid:has(.showcase-tab-1:hover) .showcase-tab-1::before,
.intro-grid:has(.showcase-tab-1:focus-visible) .showcase-tab-1::before,
.intro-grid:has(.showcase-tab-2:hover) .showcase-tab-2::before,
.intro-grid:has(.showcase-tab-2:focus-visible) .showcase-tab-2::before,
.intro-grid:has(.showcase-tab-3:hover) .showcase-tab-3::before,
.intro-grid:has(.showcase-tab-3:focus-visible) .showcase-tab-3::before {
  opacity: 0.72;
  transform: scaleX(1);
}

.inquiry-cta-section {
  padding: 46px 0 88px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(239, 243, 247, 0.58)),
    rgba(250, 248, 244, 0.68);
  border-top: 1px solid rgba(32, 52, 73, 0.06);
}

.inquiry-cta-section-spaced {
  padding-top: 52px;
  background:
    linear-gradient(180deg, rgba(239, 243, 247, 0.62), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.64);
}

.inquiry-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(32, 52, 73, 0.98), rgba(77, 111, 144, 0.96)),
    var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
}

.inquiry-cta-light {
  border: 1px solid rgba(32, 52, 73, 0.08);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.inquiry-cta h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.65rem, 2.5vw, 2.55rem);
  font-weight: 640;
  line-height: 1.1;
  letter-spacing: 0;
}

.inquiry-cta p:not(.eyebrow) {
  max-width: 58ch;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.inquiry-cta-light p:not(.eyebrow) {
  color: var(--muted);
}

.inquiry-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

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

.service-card,
.listing-card,
.partner-boxes article,
.faq-list details,
.contact-form,
.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(32, 52, 73, 0.07);
}

.service-card,
.partner-boxes article {
  padding: 26px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(27, 39, 52, 0.05);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.service-card:hover,
.partner-boxes article:hover,
.listing-card:hover,
.expert-profile:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 52, 73, 0.14);
  box-shadow: 0 22px 52px rgba(24, 38, 53, 0.12);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(32, 52, 73, 0.08);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card h3,
.listing-body h3,
.partner-boxes h3,
.site-footer h3 {
  margin: 18px 0 10px;
  font-size: 1.1rem;
  font-weight: 620;
  line-height: 1.18;
  letter-spacing: 0;
}

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

.listing-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 45px rgba(24, 38, 53, 0.08);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.listing-card.featured {
  grid-column: span 1;
}

.listing-image {
  position: relative;
}

.listing-image img {
  width: 100%;
  aspect-ratio: 1.18 / 0.86;
  object-fit: cover;
}

.tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.listing-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 20px 22px;
}

.listing-body h3 {
  margin: 12px 0 12px;
  font-size: 1.18rem;
  line-height: 1.14;
}

.listing-body strong {
  display: inline-block;
  margin-top: 16px;
  color: var(--brand);
  font-size: 1.05rem;
}

.listing-location {
  position: relative;
  margin: 0;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.listing-location::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.08em;
  width: 16px;
  height: 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.listing-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.listing-specs span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding-left: 24px;
}

.listing-specs span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  background: currentColor;
  opacity: 0.7;
  transform: translateY(-50%);
}

.listing-specs .spec-bed::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.75'%3E%3Cpath d='M3 7v10M21 12v5M3 13h18M7 13V9h8a3 3 0 0 1 3 3v1M7 10H5a2 2 0 0 0-2 2v1'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.75'%3E%3Cpath d='M3 7v10M21 12v5M3 13h18M7 13V9h8a3 3 0 0 1 3 3v1M7 10H5a2 2 0 0 0-2 2v1'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.listing-specs .spec-bath::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.75'%3E%3Cpath d='M6 20v-2M18 20v-2M4 11h16v3a4 4 0 0 1-4 4H8a4 4 0 0 1-4-4v-3ZM6 11V6a2 2 0 0 1 2-2h1M8 7h4'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.75'%3E%3Cpath d='M6 20v-2M18 20v-2M4 11h16v3a4 4 0 0 1-4 4H8a4 4 0 0 1-4-4v-3ZM6 11V6a2 2 0 0 1 2-2h1M8 7h4'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.listing-specs .spec-area::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.75'%3E%3Cpath d='M8 8 4 12l4 4M16 8l4 4-4 4M4 12h16'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.75'%3E%3Cpath d='M8 8 4 12l4 4M16 8l4 4-4 4M4 12h16'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.listing-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.listing-link:hover,
.listing-link:focus-visible {
  transform: translateY(-1px);
  background: #16283a;
}

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

.partner-stats div {
  padding: 18px 0 0;
  border-top: 1px solid var(--line-strong);
}

.partner-stats span {
  color: var(--muted);
}

.partner-visual img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

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

.expert-heading {
  display: grid;
  justify-items: center;
  gap: 22px;
  margin-bottom: clamp(42px, 6vw, 74px);
  text-align: center;
}

.expert-pill {
  margin: 0;
  padding: 7px 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.expert-heading h2 {
  max-width: 22ch;
  margin: 0;
  font-size: clamp(2.05rem, 3.5vw, 3.45rem);
  font-weight: 640;
  line-height: 1.12;
  letter-spacing: 0;
}

.expert-grid {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: clamp(46px, 7vw, 88px);
  align-items: center;
}

.expert-profile {
  margin: 0;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.expert-profile img {
  width: 100%;
  aspect-ratio: 0.9 / 1;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.expert-profile figcaption {
  display: grid;
  justify-items: center;
  gap: 2px;
  margin-top: 20px;
  text-align: center;
}

.expert-profile strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
}

.expert-profile span {
  color: rgba(255, 255, 255, 0.68);
}

.expert-copy {
  max-width: 920px;
}

.expert-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

.expert-copy p + p {
  margin-top: 22px;
}

.expert-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.expert-trust-points span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 42px;
}

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

.faq-list details {
  border-radius: var(--radius-md);
  padding: 18px 22px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding-right: 30px;
  position: relative;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--accent);
  font-size: 1.2rem;
}

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

.faq-list p {
  margin: 14px 0 0;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 120px;
  background:
    linear-gradient(180deg, rgba(117, 166, 217, 0.84), rgba(89, 135, 184, 0.84)),
    url("img/footer.avif") center 58% / cover no-repeat;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 200px;
  background:
    linear-gradient(180deg, transparent, rgba(18, 29, 43, 0.16)),
    radial-gradient(circle at 22% 100%, rgba(255, 255, 255, 0.16), transparent 38%);
  pointer-events: none;
}

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

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
  margin: 34px auto 0;
  padding: 22px;
  border-radius: 28px;
  box-shadow: 0 26px 56px rgba(22, 42, 66, 0.2);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand);
}

.required-note {
  order: -1;
  margin: 0;
  color: rgba(31, 39, 49, 0.72);
  font-size: 0.9rem;
}

.required-marker {
  color: #9f3d2f;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(32, 52, 73, 0.08);
  padding: 14px 16px;
  color: var(--text);
}

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"],
.contact-form select[aria-invalid="true"] {
  border-color: rgba(159, 61, 47, 0.8);
  box-shadow: 0 0 0 3px rgba(159, 61, 47, 0.14);
}

.field-error {
  color: #9f3d2f;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form .privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 4px 2px 0;
}

.contact-form .privacy-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--brand);
}

.contact-form .privacy-consent span {
  color: rgba(31, 39, 49, 0.72);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.45;
}

.contact-form .cf-turnstile {
  min-height: 65px;
}

.contact-form .form-status {
  order: -2;
  margin: 0;
  padding: 13px 16px;
  border: 1px solid rgba(159, 61, 47, 0.22);
  border-radius: 14px;
  background: rgba(159, 61, 47, 0.08);
  color: #7f3026;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.4;
}

.contact-form .form-status[hidden] {
  display: none;
}

.contact-form .form-status[data-type="success"] {
  border-color: rgba(32, 52, 73, 0.18);
  background: rgba(32, 52, 73, 0.08);
  color: var(--brand);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-form .required-marker {
  color: #9f3d2f;
  font-weight: 800;
}

.site-footer {
  padding: 42px 0 56px;
  background: #203449;
  color: rgba(255, 255, 255, 0.82);
}

.confirmation-section {
  min-height: 62vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(239, 243, 247, 0.58)),
    rgba(250, 248, 244, 0.68);
}

.confirmation-card {
  max-width: 760px;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(32, 52, 73, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.confirmation-card h1 {
  margin: 0;
  color: var(--brand);
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 650;
  line-height: 1.05;
}

.confirmation-card p:not(.eyebrow) {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.legal-page {
  background:
    radial-gradient(circle at top left, rgba(135, 169, 205, 0.18), transparent 34%),
    linear-gradient(180deg, #faf8f4 0%, var(--bg) 48%, #eff3f7 100%);
}

.legal-section {
  min-height: 62vh;
  padding: clamp(58px, 7vw, 104px) 0;
}

.legal-content {
  max-width: 920px;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(32, 52, 73, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
  color: var(--brand);
  line-height: 1.16;
}

.legal-content h1 {
  margin: 0 0 10px;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
  font-weight: 650;
}

.legal-content h2 {
  margin: 44px 0 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(32, 52, 73, 0.1);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 640;
}

.legal-content h3 {
  margin: 30px 0 10px;
  font-size: 1.22rem;
  font-weight: 650;
}

.legal-content h4 {
  margin: 24px 0 8px;
  font-size: 1.03rem;
  font-weight: 700;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1rem;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul {
  margin: 0 0 20px;
  padding-left: 1.25rem;
}

.legal-content a {
  color: var(--brand);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(32, 52, 73, 0.24);
  text-underline-offset: 0.18em;
  overflow-wrap: anywhere;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr;
  gap: 34px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.object-page {
  background:
    radial-gradient(circle at 18% 0%, rgba(135, 169, 205, 0.16), transparent 30%),
    linear-gradient(180deg, #faf8f4 0%, var(--bg) 46%, #eff3f7 100%);
}

.object-hero {
  padding: clamp(20px, 3vw, 44px) 0 78px;
}

.object-hero-shell {
  position: relative;
  display: grid;
  min-height: clamp(660px, 50vw, 840px);
  overflow: hidden;
  border: 1px solid rgba(32, 52, 73, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.object-hero-media,
.object-hero-media img {
  width: 100%;
  height: 100%;
}

.object-hero-media {
  position: relative;
  min-height: inherit;
}

.object-hero-media img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.04);
  transform: scale(1.01);
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.object-hero-shell:hover .object-hero-media img {
  transform: scale(1.045);
}

.object-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 22, 34, 0.02) 0%, rgba(11, 22, 34, 0.04) 48%, rgba(11, 22, 34, 0.34) 100%),
    linear-gradient(90deg, rgba(11, 22, 34, 0.24), transparent 38%, rgba(11, 22, 34, 0.04));
}

.object-hero-content {
  position: absolute;
  left: clamp(24px, 4.5vw, 72px);
  right: clamp(24px, 4.5vw, 72px);
  bottom: clamp(24px, 4.5vw, 72px);
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.45fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: end;
  width: auto;
  min-height: 0;
  margin: 0;
  color: #fff;
}

.object-hero-content h1 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.9rem, 5.2vw, 5.9rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(7, 15, 24, 0.62);
}

.object-hero-panel {
  display: grid;
  grid-column: 2;
  gap: 20px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(15, 27, 40, 0.58), rgba(15, 27, 40, 0.42)),
    rgba(17, 31, 46, 0.42);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 55px rgba(10, 20, 31, 0.2);
}

.object-hero-panel p {
  max-width: 42ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.object-hero-price {
  display: grid;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.object-hero-price span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.object-hero-price strong {
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.object-hero-content .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.object-hero-panel .hero-actions {
  grid-column: auto;
  margin-top: 0;
  justify-content: flex-start;
}

.object-facts-section {
  padding: 0 0 86px;
}

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

.object-facts article {
  padding: 28px;
  border: 1px solid rgba(32, 52, 73, 0.07);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(24, 38, 53, 0.06);
}

.object-fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(32, 52, 73, 0.08);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
}

.object-facts h2 {
  margin: 18px 0 10px;
  font-size: 1.08rem;
  font-weight: 620;
  line-height: 1.18;
  letter-spacing: 0;
}

.object-facts p,
.object-detail-copy p,
.object-gallery-card p {
  color: var(--muted);
}

.object-location-line {
  margin-top: 18px;
  color: var(--brand);
  font-weight: 700;
}

.object-detail-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(252, 250, 247, 0.72)),
    rgba(255, 255, 255, 0.72);
}

.object-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.object-detail-image img {
  width: 100%;
  aspect-ratio: 1.05 / 0.9;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.object-detail-copy h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 640;
  line-height: 1.1;
  letter-spacing: 0;
}

.object-detail-copy p {
  max-width: 58ch;
  margin: 22px 0 0;
}

.object-checklist {
  display: grid;
  gap: 17px;
  padding: 0;
  margin: 27px 0 0;
  list-style: none;
}

.object-checklist li {
  position: relative;
  min-height: 20px;
  padding-left: 26px;
  color: rgba(8, 19, 32, 0.95);
  font-size: 1.02rem;
  line-height: 1.45;
}

.object-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.34em;
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 999px;
  background: #0780bd;
}

.object-checklist li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(0.34em + 4px);
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 4px solid #fff;
}

.object-highlights-section {
  background: #f4f5f6;
}

.object-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: start;
}

.object-highlights-section .eyebrow {
  display: none;
}

.object-info-grid h2 {
  max-width: none;
  margin: 0;
  color: #000;
  font-size: clamp(1.9rem, 2.6vw, 2.55rem);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.object-amenities {
  display: grid;
  gap: 17px;
  margin-top: 27px;
}

.object-amenities span {
  position: relative;
  display: block;
  min-height: 20px;
  padding: 0 0 0 26px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(8, 19, 32, 0.95);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
}

.object-amenities span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.34em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #0780bd;
}

.object-amenities span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(0.34em + 4px);
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 4px solid #fff;
}

.object-highlights-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(38px, 5vw, 58px);
}

.object-highlights-cta .button {
  min-height: 40px;
  padding-inline: 22px;
  border-radius: 999px;
  background: #ff9500;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 650;
}

.object-highlights-cta .button:hover,
.object-highlights-cta .button:focus-visible {
  background: #e18400;
  color: #fff;
}

.object-location-section {
  background:
    linear-gradient(180deg, rgba(32, 52, 73, 0.035), rgba(32, 52, 73, 0.065)),
    rgba(239, 243, 247, 0.5);
  border-block: 1px solid rgba(32, 52, 73, 0.07);
}

.object-gallery {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 18px;
}

.object-gallery-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #0d1d2d;
  box-shadow: 0 16px 38px rgba(24, 38, 53, 0.1);
}

.object-gallery-card-large {
  grid-row: span 2;
  min-height: 578px;
}

.object-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.object-gallery-card:hover img {
  transform: scale(1.07);
}

.object-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(8, 17, 26, 0.82));
}

.object-gallery-card div {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 1;
  color: #fff;
}

.object-gallery-card h3 {
  margin: 0 0 6px;
  font-size: clamp(1.18rem, 1.8vw, 1.62rem);
  font-weight: 620;
  line-height: 1.12;
  letter-spacing: 0;
}

.object-gallery-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.object-map-card {
  display: block;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid rgba(32, 52, 73, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 38px rgba(24, 38, 53, 0.08);
}

.object-map-card img {
  display: block;
  width: 100%;
  height: clamp(320px, 34vw, 430px);
  object-fit: cover;
  transition: transform 0.45s ease;
}

.object-map-card:hover img,
.object-map-card:focus-visible img {
  transform: scale(1.025);
}

.object-map-card:focus-visible {
  outline: 3px solid rgba(183, 139, 90, 0.48);
  outline-offset: 4px;
}

.object-contact-section {
  padding: 92px 0 112px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(239, 243, 247, 0.58)),
    rgba(250, 248, 244, 0.68);
}

.object-contact-card {
  max-width: 940px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(32, 52, 73, 0.07);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.object-contact-card .section-heading {
  margin-bottom: 0;
}

.object-contact-form {
  box-shadow: none;
  background: transparent;
  border: 0;
}

.landing-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(135, 169, 205, 0.16), transparent 28%),
    linear-gradient(180deg, #faf8f4 0%, var(--bg) 44%, #eff3f7 100%);
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 29, 43, 0.9);
  backdrop-filter: blur(18px);
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - var(--page-gutter) * 2), 1560px);
  padding: 18px 0;
}

.landing-hero {
  padding: clamp(18px, 3vw, 34px) 0 clamp(58px, 7vw, 92px);
}

.landing-hero-shell {
  position: relative;
  display: grid;
  min-height: clamp(640px, 48vw, 820px);
  overflow: hidden;
  border-radius: 36px;
  background: #0d1d2d;
  box-shadow: var(--shadow);
}

.landing-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.04);
}

.landing-hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 21, 33, 0.76), rgba(10, 21, 33, 0.3) 48%, rgba(10, 21, 33, 0.06)),
    linear-gradient(180deg, rgba(10, 21, 33, 0.04), rgba(10, 21, 33, 0.42));
}

.landing-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 760px);
  padding: clamp(34px, 6vw, 86px);
  color: #fff;
}

.landing-hero-content h1,
.landing-final-card h2 {
  margin: 0;
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: 0;
}

.landing-hero-content h1 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 5.4vw, 5.6rem);
}

.landing-hero-content p:not(.eyebrow) {
  max-width: 52ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.landing-hero-trust {
  position: absolute;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(24px, 4vw, 58px);
  z-index: 1;
  display: grid;
  gap: 10px;
  width: min(100% - 48px, 320px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(17, 31, 46, 0.34);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 24px 55px rgba(10, 20, 31, 0.18);
}

.landing-hero-trust span {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.landing-hero-trust span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(183, 139, 90, 0.2);
}

.landing-promise-section,
.landing-solution-section,
.landing-trust-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(252, 250, 247, 0.74)),
    rgba(255, 255, 255, 0.72);
}

.landing-card-grid,
.landing-steps,
.landing-process {
  display: grid;
  gap: 18px;
}

.landing-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-card-grid .service-card h2 {
  margin: 18px 0 10px;
  font-size: 1.08rem;
  font-weight: 620;
  line-height: 1.2;
  letter-spacing: 0;
}

.landing-pain-section,
.landing-listings-section,
.landing-process-section {
  background:
    linear-gradient(180deg, rgba(32, 52, 73, 0.035), rgba(32, 52, 73, 0.065)),
    rgba(239, 243, 247, 0.5);
  border-block: 1px solid rgba(32, 52, 73, 0.07);
}

.landing-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.landing-stack {
  display: grid;
  gap: 14px;
}

.landing-stack article,
.landing-steps article,
.landing-process article {
  border: 1px solid rgba(32, 52, 73, 0.07);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(24, 38, 53, 0.06);
}

.landing-stack article {
  padding: 24px;
}

.landing-stack h3,
.landing-steps h3,
.landing-process h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 620;
  line-height: 1.18;
  letter-spacing: 0;
}

.landing-stack p,
.landing-steps p,
.landing-process p {
  margin: 0;
  color: var(--muted);
}

.landing-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.landing-steps article,
.landing-process article {
  padding: 26px;
}

.landing-steps span,
.landing-process span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.landing-centered-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

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

.landing-listing-grid .listing-body h3 {
  min-height: 2.5em;
}

.landing-listing-grid .listing-body strong {
  margin-top: auto;
}

.object-teaser-list {
  display: grid;
  gap: 22px;
}

.object-teaser {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.15fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(32, 52, 73, 0.07);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 45px rgba(24, 38, 53, 0.08);
}

.object-teaser-no-media {
  grid-template-columns: 1fr;
}

.object-teaser-media {
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  gap: 10px;
  padding: 10px;
  background: rgba(32, 52, 73, 0.04);
}

.object-teaser-main-image,
.object-teaser-thumb {
  width: 100%;
  object-fit: cover;
}

.object-teaser-main-image {
  height: 100%;
  min-height: 310px;
  border-radius: 20px;
}

.object-teaser-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.object-teaser-thumb {
  aspect-ratio: 1.7 / 1;
  border-radius: 14px;
}

.object-teaser-content {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
}

.object-type {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(32, 52, 73, 0.08);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
}

.object-teaser-content h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  line-height: 1.05;
}

.object-teaser-content p {
  margin: 0;
  color: var(--muted);
}

.object-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.object-feature-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(31, 39, 49, 0.82);
  font-size: 0.94rem;
}

.object-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(183, 139, 90, 0.16);
}

.object-teaser-price {
  color: var(--brand);
  font-size: 1.08rem;
  font-weight: 800;
}

.object-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 4px;
}

.detail-link {
  color: var(--brand);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.object-section-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(32, 52, 73, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(24, 38, 53, 0.08);
}

.object-section-cta h3 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.object-section-cta p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
}

.landing-process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-form-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 116px;
  background:
    linear-gradient(90deg, rgba(18, 29, 43, 0.94), rgba(32, 52, 73, 0.76)),
    url("img/chalet-fassade-schnee.png") center / cover no-repeat;
}

.landing-form-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12));
  pointer-events: none;
}

.landing-form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.landing-lead-form {
  max-width: none;
  margin: 0;
}

.contact-form select {
  width: 100%;
  border: 1px solid rgba(32, 52, 73, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
}

.landing-form-note {
  margin: -4px 0 0;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.landing-final-cta {
  padding: 72px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(239, 243, 247, 0.58)),
    rgba(250, 248, 244, 0.68);
}

.landing-final-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #0d1d2d;
  box-shadow: var(--shadow);
}

.landing-final-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-final-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 21, 33, 0.82), rgba(10, 21, 33, 0.22));
}

.landing-final-card div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(100%, 640px);
  min-height: inherit;
  padding: clamp(30px, 5vw, 62px);
  color: #fff;
}

.landing-final-card h2 {
  margin-bottom: 26px;
  font-size: clamp(2rem, 3.7vw, 3.7rem);
}

.landing-footer {
  padding-bottom: 84px;
}

.landing-mobile-sticky {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

[data-reveal="left"] {
  transform: translate3d(-48px, 30px, 0) scale(0.985);
}

[data-reveal="right"] {
  transform: translate3d(48px, 30px, 0) scale(0.985);
}

[data-reveal="down"] {
  transform: translate3d(0, -18px, 0) scale(1);
}

[data-reveal="zoom"] {
  transform: translate3d(0, 34px, 0) scale(0.94);
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .hero-image,
  .hero-card:hover .hero-image,
  .service-card,
  .partner-boxes article,
  .listing-card,
  .expert-profile,
  .service-card:hover,
  .partner-boxes article:hover,
  .listing-card:hover,
  .expert-profile:hover {
    transform: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .hero-card,
  .intro-grid,
  .partner-grid,
  .faq-grid,
  .expert-grid,
  .object-detail-grid,
  .object-info-grid,
  .landing-split,
  .landing-form-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 760px;
    padding: clamp(24px, 5vw, 48px);
    align-items: flex-end;
  }

  .hero-image-wrap {
    min-height: 100%;
  }

  .hero-content {
    width: min(100%, 620px);
    margin: 0;
  }

  .intro-grid {
    gap: 34px;
  }

  .showcase-copy,
  .showcase-text {
    min-height: 250px;
  }

  .showcase-tab span {
    font-size: 1.95rem;
  }

  .service-grid,
  .listing-grid,
  .partner-boxes,
  .footer-grid,
  .object-facts,
  .landing-card-grid,
  .landing-steps,
  .landing-process,
  .landing-listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-hero-trust {
    right: 28px;
    bottom: 28px;
  }

  .object-detail-copy h2 {
    max-width: 16ch;
  }

  .object-info-grid h2 {
    max-width: none;
  }

  .object-teaser {
    grid-template-columns: 1fr;
  }

  .object-teaser-main-image {
    min-height: 280px;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
  }

  .nav-bar {
    display: grid;
    grid-template-columns: auto 44px;
    gap: 18px 14px;
    padding: 22px 0 18px;
  }

  .site-header.is-compact .nav-bar {
    padding: 8px 0;
  }

  .brand img {
    width: 158px;
  }

  .site-header.is-compact .brand img {
    width: 142px;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(18, 29, 43, 0.96);
    box-shadow: 0 20px 42px rgba(10, 20, 31, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .site-header.nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-active {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-bar > .button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 46px;
    padding-inline: 18px;
    font-size: 0.92rem;
  }

  .site-header.is-compact .nav-bar > .button {
    min-height: 38px;
  }

  .hero-content {
    padding: 56px 24px 36px;
  }

  .company-intro-section {
    padding: 58px 0 64px;
  }

  .company-intro h2 {
    max-width: none;
  }

  .hero-facts,
  .partner-stats,
  .contact-form,
  .inquiry-cta,
  .service-grid,
  .listing-grid,
  .partner-boxes,
  .footer-grid,
  .object-facts,
  .object-gallery,
  .object-info-grid,
  .landing-card-grid,
  .landing-steps,
  .landing-process,
  .landing-listing-grid {
    grid-template-columns: 1fr;
  }

  .landing-nav {
    padding: 12px 0;
  }

  .landing-nav .brand img {
    width: 148px;
  }

  .landing-nav .button {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 0.9rem;
  }

  .landing-hero-shell {
    min-height: 680px;
    border-radius: 28px;
  }

  .landing-hero-content {
    justify-content: flex-start;
    padding: 42px 24px 180px;
  }

  .landing-hero-trust {
    right: 24px;
    bottom: 24px;
    left: 24px;
    width: auto;
  }

  .landing-form-section {
    padding: 78px 0 92px;
  }

  .landing-final-card {
    min-height: 520px;
  }

  .object-feature-list,
  .object-section-cta {
    grid-template-columns: 1fr;
  }

  .object-section-cta .button {
    width: 100%;
  }

  .object-hero {
    padding-bottom: 58px;
  }

  .object-hero-shell {
    min-height: 680px;
    border-radius: 28px;
  }

  .object-hero-content {
    left: 24px;
    right: 24px;
    bottom: 24px;
    grid-template-columns: 1fr;
    gap: 18px;
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    border-radius: 0;
  }

  .object-hero-content .eyebrow,
  .object-hero-content .hero-actions,
  .object-hero-panel {
    grid-column: auto;
  }

  .object-hero-panel {
    max-width: 560px;
    padding: 24px;
    border-radius: 24px;
  }

  .object-hero-panel p {
    max-width: 56ch;
  }

  .object-gallery-card,
  .object-gallery-card-large {
    min-height: 360px;
  }

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

  .showcase-copy,
  .showcase-panel {
    display: none;
  }

  .showcase-mobile {
    display: grid;
    gap: 18px;
  }

  .expert-grid {
    gap: 34px;
  }

  .expert-profile {
    max-width: 320px;
  }
}

@media (max-width: 560px) {
  :root {
    --page-gutter: 20px;
  }

  .section {
    padding: 70px 0;
  }

  .hero-section {
    padding-top: 0;
  }

  .hero-card {
    min-height: 720px;
    padding: 18px;
    border-radius: 0;
  }

  .hero-content {
    padding: 26px 22px 28px;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(15, 27, 40, 0.82), rgba(15, 27, 40, 0.58)),
      rgba(17, 31, 46, 0.42);
  }

  .hero-content h1 {
    max-width: none;
  }

  .hero-copy {
    color: rgba(255, 255, 255, 0.86);
  }

  .hero-image {
    object-position: 66% 74%;
  }

  .hero-image-wrap::after {
    background:
      linear-gradient(180deg, rgba(9, 19, 30, 0.1) 0%, rgba(9, 19, 30, 0.06) 34%, rgba(9, 19, 30, 0.76) 100%),
      linear-gradient(90deg, rgba(9, 19, 30, 0.24), rgba(9, 19, 30, 0.08));
  }

  .company-intro-section {
    padding: 50px 0 56px;
  }

  .intro-pill {
    min-height: 30px;
    padding-inline: 16px;
    font-size: 0.8rem;
  }

  .company-intro h2 {
    max-width: none;
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .company-intro p:last-child {
    margin-top: 16px;
    font-size: 0.98rem;
  }

  .object-hero-shell {
    min-height: 620px;
    border-radius: 24px;
  }

  .object-hero-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
    min-height: 0;
    padding: 0;
    border-radius: 0;
  }

  .object-hero-content h1 {
    max-width: none;
  }

  .object-hero-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .object-facts-section {
    padding-bottom: 70px;
  }

  .object-facts article {
    padding: 22px;
  }

  .object-gallery-card,
  .object-gallery-card-large {
    min-height: 310px;
  }

  .object-contact-card {
    padding: 24px 16px;
  }

  .button {
    width: 100%;
  }

  .landing-header .button {
    width: auto;
  }

  .landing-nav {
    gap: 12px;
  }

  .landing-nav .brand img {
    width: 132px;
  }

  .landing-nav .button {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.82rem;
  }

  .landing-hero {
    padding-top: 16px;
  }

  .landing-hero-shell {
    min-height: 660px;
    border-radius: 24px;
  }

  .landing-hero-content {
    padding: 30px 20px 188px;
  }

  .landing-hero-content h1 {
    max-width: none;
    font-size: clamp(2.45rem, 14vw, 3.6rem);
  }

  .landing-hero-content p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .landing-hero-trust {
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 16px;
    border-radius: 20px;
  }

  .landing-stack article,
  .landing-steps article,
  .landing-process article {
    padding: 22px;
  }

  .landing-listing-grid .listing-body h3 {
    min-height: 0;
  }

  .landing-form-section {
    padding-bottom: 84px;
  }

  .landing-final-cta {
    padding: 58px 0;
  }

  .landing-final-card {
    min-height: 480px;
    border-radius: 24px;
  }

  .object-teaser-media {
    grid-template-rows: auto auto;
  }

  .object-teaser-main-image {
    min-height: 0;
    aspect-ratio: 1.2 / 0.82;
    border-radius: 18px;
  }

  .object-actions {
    display: grid;
  }

  .object-actions .button {
    width: 100%;
  }

  .landing-mobile-sticky {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(10, 20, 31, 0.24);
  }

  .hero-actions {
    flex-direction: column;
  }

  .expert-heading {
    justify-items: start;
    text-align: left;
  }

  .expert-profile {
    max-width: none;
  }

  .expert-profile figcaption {
    justify-items: start;
    text-align: left;
  }

  .expert-trust-points span {
    width: 100%;
    text-align: center;
  }

  .contact-form {
    padding: 16px;
  }
}
