:root {
  color-scheme: dark;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  background: #090b0d;
  color: #f7f1e6;
  --ink: #f7f1e6;
  --muted: #b8afa1;
  --subtle: #8f877b;
  --line: rgba(218, 182, 111, 0.22);
  --panel: #11171b;
  --panel-soft: #171f24;
  --black: #090b0d;
  --gold: #c89b52;
  --gold-soft: #e3c98e;
  --gold-dark: #8f642a;
  --stone: #d8d0c2;
  --green: #203b34;
  --blue: #20384a;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(200, 155, 82, 0.14), transparent 34rem),
    linear-gradient(180deg, #090b0d, #101417 42%, #090b0d);
  color: var(--ink);
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(12px, 1.7vw, 24px);
  border-bottom: 1px solid rgba(227, 201, 142, 0.2);
  background:
    linear-gradient(180deg, rgba(13, 15, 16, 0.94), rgba(8, 10, 11, 0.86)),
    rgba(9, 11, 13, 0.9);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
  padding: 12px clamp(16px, 4vw, 56px);
  backdrop-filter: blur(22px) saturate(1.18);
}

.header-network-brand {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: max-content;
}

.header-network-brand img {
  width: 58px;
  height: 76px;
  border: 1px solid rgba(227, 201, 142, 0.26);
  object-fit: contain;
}

.header-network-brand span,
.header-network-brand strong,
.header-network-brand small {
  display: block;
}

.header-network-brand strong {
  color: #fff7e8;
  font-size: 18px;
}

.header-network-brand small {
  margin-top: 3px;
  color: var(--gold-soft);
  font-size: 11px;
  text-transform: uppercase;
}

.header-local {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: max-content;
}

.header-local > img {
  width: 46px;
  height: 58px;
  border: 1px solid rgba(227, 201, 142, 0.38);
  border-radius: 6px;
  background: #0a1618;
  object-fit: contain;
  object-position: center;
}

.header-local span,
.header-local strong,
.header-local small {
  display: block;
}

.header-local strong {
  color: #d8d0c2;
  font-size: 13px;
}

.header-local small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.header-estimate {
  min-width: max-content;
}

.whatsapp-header-link,
.whatsapp-floating-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: #168c4a;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.whatsapp-header-link {
  padding: 10px 13px;
  font-size: 13px;
  white-space: nowrap;
}

.whatsapp-header-link:hover,
.whatsapp-floating-link:hover {
  background: #20a95e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
}

.whatsapp-header-link svg,
.whatsapp-floating-link svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.whatsapp-header-link svg path,
.whatsapp-floating-link svg path {
  fill: #fff;
}

.whatsapp-floating-link {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 22px;
  padding: 13px 17px;
  font-size: 15px;
}

.whatsapp-header-link-fixed {
  position: fixed;
  z-index: 50;
  top: 16px;
  right: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(227, 201, 142, 0.8);
  border-radius: 2px;
  background:
    linear-gradient(145deg, rgba(227, 201, 142, 0.12), rgba(255, 255, 255, 0.02)),
    #080a0b;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.3);
  color: var(--gold-soft);
  font-weight: 850;
  overflow: hidden;
}

.brand-mark img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: #fff7e8;
  letter-spacing: 0;
  font-size: 16px;
}

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

.network-logos {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
}

.estimmo-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border: 1px solid rgba(227, 201, 142, 0.32);
  border-radius: 2px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
  background: #000000;
}

.estimmo-badge {
  border-color: rgba(227, 201, 142, 0.26);
  padding: 4px 9px;
}

.estimmo-badge img {
  width: clamp(122px, 10vw, 150px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 4px;
  border: 1px solid rgba(227, 201, 142, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  padding: 7px;
  color: #d4cabb;
  font-size: 16px;
  font-weight: 780;
}

.site-nav a {
  position: relative;
  border-radius: 999px;
  padding: 14px 18px;
  white-space: nowrap;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.site-nav a:hover,
.contact-box a:hover {
  color: var(--gold-soft);
}

.site-nav a:hover {
  background: rgba(227, 201, 142, 0.1);
  box-shadow: inset 0 0 0 1px rgba(227, 201, 142, 0.16);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.header-contact img {
  width: 62px;
  height: 72px;
  border: 1px solid rgba(227, 201, 142, 0.42);
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.header-phone {
  min-width: max-content;
  border: 1px solid rgba(227, 201, 142, 0.34);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(227, 201, 142, 0.12), rgba(227, 201, 142, 0.04));
  color: #f4dfaa;
  font-size: 18px;
  font-weight: 850;
  padding: 13px 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.header-phone:hover {
  border-color: rgba(227, 201, 142, 0.68);
  background: rgba(227, 201, 142, 0.14);
  color: #fff7e8;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.76fr);
  gap: clamp(28px, 5vw, 64px);
  min-height: calc(100vh - 75px);
  align-items: center;
  padding: clamp(24px, 4vw, 48px) clamp(20px, 5vw, 64px) clamp(48px, 7vw, 92px);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(105deg, rgba(9, 11, 13, 0.68), rgba(9, 11, 13, 0.5) 42%, rgba(9, 11, 13, 0.22)),
    url("assets/hero-fuchs-immobilier.webp") center / cover;
  filter: saturate(0.82) contrast(1.05);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 45%;
  content: "";
  background: linear-gradient(0deg, #090b0d, transparent);
}

.hero-copy {
  max-width: 820px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.68);
}

.hero-network-logo {
  display: inline-flex;
  margin-top: clamp(-12px, -1vw, -6px);
  margin-bottom: 18px;
  border: 1px solid rgba(227, 201, 142, 0.34);
  border-radius: 4px;
  background: #000000;
  padding: 8px 12px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

.hero-network-logo img {
  width: clamp(118px, 12vw, 170px);
  height: auto;
}

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

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

h1 {
  margin-bottom: 24px;
  max-width: 860px;
  color: #fffaf0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.99;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: #fffaf0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: #fff7e8;
  font-size: 21px;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-lead {
  max-width: 730px;
  color: #ddd3c2;
  font-size: clamp(19px, 2vw, 24px);
}

.hero-intro {
  max-width: 700px;
  margin-top: -4px;
  color: #c7bdad;
  font-size: 17px;
}

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

.cta-note {
  max-width: 760px;
  margin: 12px 0 0;
  color: #d8cfbd;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 850;
  padding: 13px 20px;
  text-align: center;
}

.button.primary {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 48%, var(--gold-dark));
  color: #111111;
  box-shadow: 0 18px 38px rgba(200, 155, 82, 0.26);
}

.button.primary:hover {
  filter: brightness(1.07);
}

.button.secondary {
  border-color: rgba(227, 201, 142, 0.42);
  background: rgba(255, 255, 255, 0.04);
  color: #f7f1e6;
}

.button.secondary:hover {
  border-color: var(--gold-soft);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
  gap: 14px;
  margin: 42px 0 0;
}

.trust-strip div {
  min-height: 92px;
  border: 1px solid rgba(218, 182, 111, 0.2);
  background: rgba(255, 255, 255, 0.045);
  padding: 17px;
}

.trust-strip dt {
  color: #fff7e8;
  font-size: 20px;
  font-weight: 850;
  white-space: nowrap;
}

.trust-strip dd {
  margin: 7px 0 0;
  color: var(--muted);
}

.estimate-card,
.service-card,
.contact-box {
  border: 1px solid rgba(218, 182, 111, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.estimate-card {
  align-self: center;
  padding: clamp(24px, 3vw, 34px);
  color: var(--ink);
}

.card-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.form-intro {
  color: var(--muted);
  font-size: 15px;
}

.card-logo {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  padding: 9px 14px;
}

.expertimo-card-logo img {
  width: 134px;
}

.estimmo-card-logo {
  width: 100%;
  justify-content: center;
  border: 1px solid rgba(227, 201, 142, 0.22);
  border-radius: 6px;
  background: #000000;
  padding: 14px 20px;
}

.estimmo-card-logo img {
  width: min(100%, 420px);
}

.estimate-card h2 {
  margin-bottom: 12px;
  font-size: clamp(27px, 3vw, 36px);
}

.form-offer {
  margin: 0 0 14px;
  border-left: 3px solid var(--gold);
  color: var(--gold-soft);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 850;
  line-height: 1.25;
  padding: 6px 0 6px 12px;
  text-transform: uppercase;
}

.hero-copy > .eyebrow {
  font-size: 16px;
}

.estimate-card p {
  margin-bottom: 18px;
}

.form-kicker {
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-weight: 850;
  text-transform: uppercase;
}

.form-step {
  margin: 2px 0 -4px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.form-progress {
  display: none;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 2px;
}

.form-progress span {
  display: grid;
  min-height: 30px;
  place-items: center;
  border: 1px solid rgba(218, 182, 111, 0.22);
  border-radius: 999px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 850;
}

.form-progress span.active {
  border-color: rgba(227, 201, 142, 0.72);
  background: rgba(227, 201, 142, 0.12);
  color: var(--gold-soft);
}

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

.form-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  border-top: 1px solid rgba(218, 182, 111, 0.2);
  padding-top: 14px;
}

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

[data-property-group][hidden] {
  display: none;
}

.form-actions {
  display: flex;
  gap: 12px;
}

.form-actions .button {
  flex: 1;
}

label {
  display: grid;
  gap: 6px;
  color: #f3eadb;
  font-size: 14px;
  font-weight: 760;
}

.checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--subtle);
  font-size: 14px;
  line-height: 1.45;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.annex-options {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.annex-options legend {
  margin-bottom: 6px;
  color: #f3eadb;
  font-size: 14px;
  font-weight: 760;
}

.annex-options > p {
  margin: 0 0 8px;
  color: var(--subtle);
  font-size: 13px;
}

.annex-checklist {
  display: grid;
  gap: 7px;
}

.annex-checklist label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(218, 182, 111, 0.22);
  border-radius: 4px;
  background: rgba(11, 15, 18, 0.72);
  padding: 9px 11px;
  color: var(--subtle);
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
}

.annex-checklist input {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--gold);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(218, 182, 111, 0.28);
  border-radius: 4px;
  background: #0b0f12;
  color: var(--ink);
  padding: 11px 13px;
}

select option {
  background: #11171b;
  color: #f7f1e6;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-soft);
  outline: 3px solid rgba(200, 155, 82, 0.18);
}

.wide {
  grid-column: 1 / -1;
}

.estimate-result {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px solid rgba(227, 201, 142, 0.28);
  background: rgba(227, 201, 142, 0.06);
}

.result-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.estimate-result h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.05;
}

.estimate-result [data-result-range] {
  margin: 0 0 14px;
  color: #fff6df;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.18;
}

.result-disclaimer,
.result-quality,
.result-warning {
  margin: 10px 0 0;
  color: var(--subtle);
  font-size: 14px;
}

.result-quality {
  color: #d8cfbd;
}

.result-quality p {
  margin: 0;
  line-height: 1.55;
}

.result-quality p + p {
  margin-top: 10px;
}

.result-warning {
  color: #f0d28c;
}

.result-premium {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: clamp(18px, 2.4vw, 26px);
  overflow: hidden;
  border: 1px solid rgba(227, 201, 142, 0.34);
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(227, 201, 142, 0.17), transparent 42%),
    linear-gradient(145deg, rgba(27, 31, 31, 0.98), rgba(13, 17, 18, 0.98));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.result-premium::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
}

.result-premium .result-premium-kicker {
  margin: 0;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-premium h4 {
  margin: 0;
  color: #fff7e8;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.15;
}

.result-premium > p:not(.result-premium-kicker) {
  margin: 0;
  color: #d8cfbd;
  font-size: 14px;
  line-height: 1.55;
}

.result-premium .button {
  width: 100%;
  margin-top: 4px;
}

.result-reassurance {
  margin: -2px 0 0;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--subtle);
  font-size: 14px;
}

.form-note a {
  color: var(--gold-soft);
}

.form-privacy,
.form-contact-note {
  margin: 0 0 14px;
  color: var(--subtle);
  font-size: 13px;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--gold-soft);
}

.resume-estimation {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
  padding: 14px;
  border: 1px solid rgba(227, 201, 142, 0.22);
  background: rgba(227, 201, 142, 0.06);
}

.resume-estimation[hidden] {
  display: none;
}

.resume-estimation p {
  margin: 0;
  color: var(--subtle);
  font-size: 14px;
}

.legal-page {
  max-width: 880px;
  margin: 0 auto;
  color: var(--text);
}

.legal-page h2 {
  margin-top: 30px;
  font-size: 26px;
}

.legal-page p {
  color: var(--subtle);
  font-size: 18px;
  line-height: 1.7;
}

.legal-page h3 {
  margin: 24px 0 8px;
  color: var(--gold-soft);
  font-size: 19px;
}

.legal-page li {
  margin-bottom: 8px;
  color: var(--subtle);
  font-size: 17px;
  line-height: 1.6;
}

.legal-page a:not(.button),
.site-footer a {
  color: var(--gold-soft);
}

.legal-summary {
  display: grid;
  gap: 8px;
  margin: 32px 0 48px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.legal-section {
  scroll-margin-top: 32px;
  padding-top: 8px;
}

.legal-update {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.section {
  scroll-margin-top: 96px;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 64px);
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
  background: #f0ece4;
  color: #1b2022;
}

.lead-section h2 {
  color: #171b1d;
}

.lead-section > div:first-child p {
  color: #55544f;
}

.lead-section .eyebrow {
  color: var(--gold-dark);
}

.local-expertise {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 640px) 1fr;
  gap: clamp(24px, 4.5vw, 56px);
  align-items: center;
  min-height: clamp(480px, 42vw, 620px);
  overflow: hidden;
  border-top: 1px solid rgba(218, 182, 111, 0.18);
  border-bottom: 1px solid rgba(218, 182, 111, 0.12);
  background: #0d1114;
}

.local-copy > p,
.lead-section p {
  font-size: 19px;
}

.local-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.local-copy h2 {
  max-width: 760px;
}

.territory-line {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.map-artwork-card {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(62vw, 860px);
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.map-artwork-card::after {
  position: absolute;
  inset: -1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, #0d1114 0%, rgba(13, 17, 20, 0.82) 16%, rgba(13, 17, 20, 0.2) 42%, rgba(13, 17, 20, 0) 74%);
}

.map-artwork {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.96;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
  color: var(--gold-soft);
  font-weight: 850;
}

.territory-map {
  min-width: 0;
  border: 1px solid rgba(227, 201, 142, 0.22);
  background:
    linear-gradient(rgba(227, 201, 142, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227, 201, 142, 0.055) 1px, transparent 1px),
    linear-gradient(145deg, #172126, #0b0f12);
  background-size: 42px 42px, 42px 42px, auto;
  overflow: hidden;
  padding: clamp(16px, 2vw, 26px);
}

.geo-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 7 / 5;
}

.geo-canvas svg {
  width: 100%;
  height: 100%;
}

.territory-shape {
  fill: rgba(227, 201, 142, 0.035);
  stroke: rgba(216, 208, 194, 0.32);
  stroke-width: 1.5;
}

.territory-relief,
.territory-river {
  fill: none;
  stroke: rgba(216, 208, 194, 0.13);
  stroke-width: 1.5;
  stroke-dasharray: 4 7;
}

.geo-axis {
  fill: none;
  stroke: rgba(227, 201, 142, 0.5);
  stroke-width: 1.6;
}

.piedmont-map-axis {
  stroke: rgba(227, 201, 142, 0.7);
}

.geo-point circle {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 160ms ease, filter 160ms ease;
}

.primary-point circle {
  fill: var(--gold-soft);
  stroke: #11181c;
  stroke-width: 3;
}

.secondary-point circle {
  fill: #a89f91;
  stroke: #11181c;
  stroke-width: 2;
}

.geo-canvas:has(.geo-label:hover) .geo-point circle,
.geo-point:hover circle {
  filter: drop-shadow(0 0 5px rgba(227, 201, 142, 0.65));
}

.geo-point:hover circle {
  transform: scale(1.35);
}

.geo-label {
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 1;
  border-left: 2px solid var(--gold);
  background: rgba(8, 10, 11, 0.86);
  color: #fff7e8;
  font-size: clamp(10px, 1vw, 14px);
  font-weight: 800;
  line-height: 1.2;
  padding: 5px 7px;
  white-space: nowrap;
  transform: translate(8px, -50%);
  transition: border-color 160ms ease, background-color 160ms ease;
}

.geo-label.left-label {
  transform: translate(calc(-100% - 8px), -50%);
}

.geo-label.secondary {
  border-left-color: rgba(168, 159, 145, 0.6);
  color: #bdb5a9;
  font-size: clamp(8px, 0.78vw, 11px);
  font-weight: 650;
}

.geo-label:hover {
  border-left-color: var(--gold-soft);
  background: #090b0d;
}

.map-caption {
  margin: 15px 0 0;
  border-top: 1px solid rgba(227, 201, 142, 0.16);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  padding-top: 15px;
}

.map-caption span {
  margin: 0 8px;
  color: var(--gold);
}

.valuation-factors {
  background: #090b0d;
}

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

.factor-grid article {
  border-top: 3px solid var(--gold);
  background: #10161a;
  padding: 26px;
}

.factor-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 850;
}

.section-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  border: 1px solid rgba(227, 201, 142, 0.2);
  background: rgba(227, 201, 142, 0.055);
  padding: 22px 24px;
}

.section-cta p {
  max-width: 760px;
  margin: 0;
  color: #ddd3c2;
  font-size: 18px;
}

.section-cta .button {
  flex: 0 0 auto;
}

.cta-action {
  display: grid;
  justify-items: end;
  gap: 8px;
  max-width: 360px;
}

.cta-action span {
  color: var(--subtle);
  font-size: 13px;
  line-height: 1.4;
  text-align: right;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 32px;
}

.property-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 34px;
  border: 1px solid rgba(227, 201, 142, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    #10161a;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 34px);
}

.showcase-copy h3 {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: clamp(28px, 2.5vw, 36px);
  line-height: 1.16;
}

.showcase-copy p:not(.eyebrow) {
  color: #d7cdbd;
}

.showcase-actions {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.carousel-button {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(227, 201, 142, 0.42);
  border-radius: 999px;
  background: rgba(227, 201, 142, 0.1);
  color: #f4dfaa;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.carousel-button:hover {
  border-color: rgba(227, 201, 142, 0.72);
  background: rgba(227, 201, 142, 0.18);
  color: #fff7e8;
}

.carousel-viewport {
  min-width: 0;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 420ms ease;
  will-change: transform;
}

.property-slide {
  position: relative;
  display: grid;
  min-width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  min-height: 430px;
  background: #080a0b;
}

.property-slide img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.95);
}

.property-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(227, 201, 142, 0.18);
  background:
    linear-gradient(180deg, rgba(14, 19, 21, 0.96), rgba(8, 10, 11, 0.98)),
    #0c1113;
  padding: clamp(24px, 3vw, 38px);
}

.property-label {
  align-self: flex-start;
  margin-bottom: 18px;
  border: 1px solid rgba(227, 201, 142, 0.34);
  border-radius: 999px;
  background: rgba(227, 201, 142, 0.1);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  padding: 7px 11px;
  text-transform: uppercase;
}

.property-panel h4 {
  margin-bottom: 18px;
  color: #fff8ec;
  font-size: clamp(25px, 2.4vw, 36px);
}

.property-panel dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0 0 20px;
}

.property-panel dl div {
  border-top: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.045);
  padding: 13px 12px;
}

.property-panel dt {
  margin-bottom: 6px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.property-panel dd {
  margin: 0;
  color: #f4dfaa;
  font-size: 15px;
  font-weight: 850;
}

.property-panel p {
  margin: 0;
  color: #ddd3c2;
  font-size: 17px;
}

.carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 9px;
  border-top: 1px solid rgba(227, 201, 142, 0.12);
  padding: 14px;
}

.carousel-dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(227, 201, 142, 0.28);
  cursor: pointer;
  padding: 0;
}

.carousel-dot.active {
  background: var(--gold);
}

.sold-showcase {
  margin: 34px 0 0;
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid rgba(227, 201, 142, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #0c1113;
}

.sold-showcase-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 20px;
}

.sold-showcase-heading .eyebrow {
  margin-bottom: 10px;
}

.sold-showcase-heading h3 {
  max-width: 620px;
  margin: 0;
  color: #fff8ec;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.18;
}

.sold-carousel-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.sold-showcase-secondary {
  margin-top: 16px;
}

.sold-showcase-secondary > .sold-carousel-actions {
  justify-content: flex-end;
  margin-bottom: 14px;
}

.sold-carousel-viewport {
  overflow: hidden;
}

.sold-listings {
  display: flex;
  gap: 14px;
  transition: transform 420ms ease;
  will-change: transform;
}

.sold-listing-card {
  flex: 0 0 calc((100% - 42px) / 4);
  position: relative;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(227, 201, 142, 0.16);
  background: #090b0d;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
}

.sold-listing-card img {
  display: block;
  width: 100%;
  aspect-ratio: 7 / 5;
  object-fit: contain;
  object-position: center;
  background: #050607;
  filter: saturate(0.9) contrast(1.02) brightness(0.86);
  transition: filter 180ms ease;
}

.sold-listing-card:hover img {
  filter: saturate(1) contrast(1.04) brightness(0.94);
}

.sold-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 11px;
  border: 1px solid rgba(255, 247, 232, 0.62);
  background: linear-gradient(135deg, #d7b56a, #f0d692);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  color: #17120a;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

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

.service-card {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    #10161a;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #1a252b;
  filter: saturate(0.92) contrast(1.04) brightness(0.94);
  transition: filter 180ms ease, transform 180ms ease;
}

.service-card:hover img {
  filter: saturate(1) contrast(1.06) brightness(1);
  transform: scale(1.025);
}

.service-card h3,
.service-card p {
  margin-right: 20px;
  margin-left: 20px;
}

.service-card h3 {
  margin-top: 22px;
}

.service-card p {
  margin-bottom: 24px;
}

.process {
  background: #090b0d;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  border-top: 3px solid var(--gold);
  background: #10161a;
  padding: 26px;
}

.steps span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 850;
}

.diffusion-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  margin-top: 22px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(227, 201, 142, 0.24);
  background:
    linear-gradient(135deg, rgba(227, 201, 142, 0.1), rgba(255, 255, 255, 0.025) 42%),
    #101518;
}

.diffusion-proof h3 {
  max-width: 720px;
  margin: 0;
  color: var(--text);
  font-size: clamp(24px, 2.4vw, 34px);
}

.diffusion-copy > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.diffusion-copy .diffusion-note {
  margin: 14px 0 0;
  color: #cfc4b2;
  font-size: 13px;
  line-height: 1.5;
}

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

.portal-logo,
.portal-total {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid rgba(227, 201, 142, 0.16);
  background: rgba(255, 255, 255, 0.055);
  padding: 14px;
}

.portal-logo img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 7px;
  object-fit: contain;
}

.portal-logo span {
  color: #fff8ec;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.portal-logo.leboncoin span { font-weight: 900; }
.portal-logo.seloger span { color: #f2f5ff; }
.portal-logo.bienici span { color: #f8f1ff; }
.portal-logo.bellesdemeures span { font-family: Georgia, serif; font-size: 16px; font-weight: 700; }

.portal-total {
  grid-column: 1 / -1;
  flex-direction: column;
  gap: 2px;
  border-color: rgba(227, 201, 142, 0.32);
  background: linear-gradient(135deg, rgba(227, 201, 142, 0.18), rgba(227, 201, 142, 0.05));
  text-align: center;
}

.portal-total strong {
  color: var(--gold-soft);
  font-size: 25px;
}

.portal-total span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.network-reassurance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  border-top: 1px solid rgba(218, 182, 111, 0.14);
  border-bottom: 1px solid rgba(218, 182, 111, 0.14);
  background: #0d1114;
  padding: clamp(42px, 5vw, 66px) clamp(20px, 8vw, 120px);
}

.network-reassurance div {
  max-width: 900px;
}

.network-reassurance h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.network-reassurance p:last-child {
  max-width: 850px;
  margin-bottom: 0;
  font-size: 18px;
}

.network-reassurance img {
  width: 130px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border: 1px solid rgba(227, 201, 142, 0.22);
}

.pro-band {
  scroll-margin-top: 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid rgba(218, 182, 111, 0.22);
  border-bottom: 1px solid rgba(218, 182, 111, 0.22);
  background:
    linear-gradient(135deg, rgba(32, 59, 52, 0.96), rgba(11, 16, 17, 0.96)),
    #203b34;
  padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 64px);
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(227, 201, 142, 0.28);
  border-bottom: 1px solid rgba(227, 201, 142, 0.28);
  background:
    linear-gradient(100deg, rgba(9, 11, 13, 0.98), rgba(17, 23, 27, 0.9)),
    url("assets/transaction-maison.webp") center 58% / cover;
  padding: clamp(64px, 9vw, 118px) clamp(20px, 10vw, 150px);
}

.final-cta h2 {
  max-width: 850px;
  font-size: clamp(38px, 5vw, 66px);
}

.final-cta > p:not(.eyebrow) {
  max-width: 800px;
  color: #ddd3c2;
  font-size: clamp(18px, 2vw, 22px);
}

.final-cta > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.pro-band div {
  max-width: 900px;
}

.pro-band h2 {
  max-width: 820px;
}

.contact-box {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 28px;
}

.contact-profile {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 8px;
}

.contact-profile img {
  width: 112px;
  aspect-ratio: 1;
  border: 1px solid rgba(227, 201, 142, 0.36);
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
}

.contact-profile strong,
.contact-profile span {
  display: block;
}

.contact-profile strong {
  color: #fff7e8;
  font-size: 26px;
  line-height: 1.1;
}

.contact-profile span {
  margin-top: 6px;
  color: var(--gold-soft);
  font-weight: 850;
}

.contact-box a:not(.button) {
  color: #fff7e8;
  font-size: 24px;
  font-weight: 850;
}

.callback-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
  border-top: 1px solid rgba(218, 182, 111, 0.18);
  background: radial-gradient(circle at 12% 20%, rgba(196, 151, 66, 0.12), transparent 34%), #0b0e10;
}

.callback-intro h2 {
  max-width: 620px;
  margin: 8px 0 18px;
  font-size: clamp(34px, 4vw, 58px);
}

.callback-intro > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--subtle);
  font-size: 18px;
  line-height: 1.7;
}

.callback-contact {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.callback-contact strong { color: #fff7e8; font-size: 21px; }
.callback-contact span { max-width: 600px; color: var(--subtle); line-height: 1.5; }
.callback-contact a { width: fit-content; color: var(--gold-soft); font-size: 18px; font-weight: 800; }

.callback-points {
  display: grid;
  gap: 6px;
  margin: 8px 0;
  padding: 0;
  list-style: none;
}

.callback-points li {
  position: relative;
  padding-left: 18px;
  color: #d8cfbd;
  line-height: 1.45;
}

.callback-points li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  content: "•";
}

.callback-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(218, 182, 111, 0.22);
  background: rgba(18, 23, 25, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.callback-form label { display: grid; gap: 8px; color: #fff7e8; font-size: 14px; font-weight: 800; }
.callback-form label span { color: var(--subtle); font-weight: 500; }
.callback-form .wide { grid-column: 1 / -1; }

.contact-preference {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(227, 201, 142, 0.22);
}

.contact-preference legend {
  padding: 0 7px;
  color: #fff7e8;
  font-size: 14px;
  font-weight: 800;
}

.callback-form .contact-preference label {
  display: flex;
  grid-template-columns: none;
  flex: 1 1 150px;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border: 1px solid rgba(227, 201, 142, 0.16);
  background: rgba(227, 201, 142, 0.04);
  cursor: pointer;
}

.contact-preference input {
  width: auto;
  margin: 0;
  accent-color: var(--gold);
}
.callback-form .form-privacy,
.callback-status { margin: 0; color: var(--subtle); font-size: 13px; line-height: 1.5; }

.callback-status:not(:empty) {
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: rgba(218, 182, 111, 0.08);
  color: #fff7e8;
}

.callback-trap {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(218, 182, 111, 0.16);
  background: #070809;
  padding: 24px clamp(20px, 5vw, 64px);
}

.site-footer p {
  margin: 0;
  color: var(--subtle);
  font-size: 14px;
}

@media (max-width: 1600px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }
}

@media (max-width: 980px) {
  .hero,
  .local-expertise,
  .lead-section,
  .callback-section,
  .diffusion-proof,
  .pro-band {
    grid-template-columns: 1fr;
  }

  .local-expertise {
    min-height: 0;
  }

  .map-artwork-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(300px, 62vw, 420px);
    margin-top: 12px;
  }

  .map-artwork-card::after {
    background: linear-gradient(180deg, #0d1114 0%, rgba(13, 17, 20, 0) 18%, rgba(13, 17, 20, 0) 82%, #0d1114 100%);
  }

  .network-reassurance {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .factor-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sold-showcase-heading {
    align-items: start;
  }

  .sold-listing-card {
    flex-basis: calc((100% - 14px) / 2);
  }

  .property-showcase,
  .property-slide {
    grid-template-columns: 1fr;
  }

  .property-slide {
    min-height: 0;
  }

  .property-slide img {
    min-height: 300px;
    aspect-ratio: 16 / 10;
  }

  .property-panel {
    border-top: 1px solid rgba(227, 201, 142, 0.18);
    border-left: 0;
  }

  .pro-band .button {
    justify-self: start;
  }

  .steps li:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .portal-logos {
    grid-template-columns: 1fr;
  }

  .portal-total {
    grid-column: 1;
  }

  .callback-form {
    grid-template-columns: 1fr;
  }

  .callback-form label,
  .callback-form .wide {
    grid-column: 1;
  }

  .site-header {
    position: static;
    grid-template-columns: auto 1fr;
  }

  .header-network-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .header-estimate {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: auto;
  }

  .header-local {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 3;
    grid-template-columns: auto minmax(0, 1fr);
    justify-content: stretch;
    width: 100%;
    min-width: 0;
  }

  .header-phone,
  .header-local .whatsapp-header-link {
    grid-column: 1 / -1;
    width: 100%;
  }

  .whatsapp-header-link {
    padding: 9px 11px;
  }

  .whatsapp-header-link span {
    white-space: normal;
  }

  .whatsapp-floating-link {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    padding: 0;
  }

  .whatsapp-floating-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .whatsapp-floating-link svg {
    width: 31px;
    height: 31px;
  }

  .header-local small {
    max-width: 170px;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: flex-start;
    gap: 2px;
    font-size: 15px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    padding: 11px 14px;
  }

  .site-nav a[data-track="viager_menu_click"] {
    order: -1;
    background: rgba(227, 201, 142, 0.16);
    color: #fff7e8;
  }

  .header-phone {
    font-size: 15px;
    padding: 10px 13px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero::before {
    background:
      linear-gradient(105deg, rgba(9, 11, 13, 0.78), rgba(9, 11, 13, 0.66) 52%, rgba(9, 11, 13, 0.46)),
      url("assets/hero-fuchs-immobilier.webp") 38% center / cover;
  }

  .trust-strip,
  .lead-form,
  .form-panel,
  .service-grid,
  .factor-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .sold-showcase {
    padding: 18px;
  }

  .sold-showcase-heading {
    display: block;
  }

  .sold-carousel-actions {
    margin-top: 14px;
  }

  .sold-carousel-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .sold-carousel-viewport::-webkit-scrollbar {
    display: none;
  }

  .sold-listings {
    transition: none;
  }

  .sold-listing-card {
    flex-basis: min(78vw, 280px);
    scroll-snap-align: start;
  }

  .sold-listing-card img {
    aspect-ratio: 7 / 5;
  }

  .sold-ribbon {
    top: 10px;
    left: 10px;
    padding: 6px 9px;
    font-size: 11px;
  }

  .property-showcase {
    margin-right: -4px;
    margin-left: -4px;
  }

  .showcase-copy h3 {
    font-size: 28px;
  }

  .property-slide img {
    min-height: 230px;
  }

  .property-panel dl {
    grid-template-columns: 1fr;
  }

  .property-panel p {
    font-size: 16px;
  }

  .hero-actions,
  .final-cta > div,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .cta-action {
    justify-items: stretch;
    max-width: none;
    width: 100%;
  }

  .cta-action span {
    text-align: left;
  }

  .territory-map {
    padding: 10px;
  }

  .geo-canvas {
    aspect-ratio: 7 / 5;
  }

  .geo-label {
    font-size: 9px;
    padding: 4px 5px;
  }

  .geo-label.secondary {
    font-size: 7px;
  }

  .map-caption {
    font-size: 11px;
  }

  .steps li:last-child {
    grid-column: auto;
  }

  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-box a:not(.button) {
    font-size: 20px;
  }

  .contact-profile {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .contact-profile img {
    width: 88px;
  }

  .contact-profile strong {
    font-size: 22px;
  }
}
.cookie-consent[hidden] {
  display: none;
}

.cookie-consent {
  position: fixed;
  z-index: 1000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(227, 201, 142, 0.55);
  border-radius: 8px;
  background: #12191d;
  color: #f7f1e6;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
}

.cookie-consent h2 {
  margin: 0 0 8px;
  color: #e3c98e;
  font-size: 1.15rem;
}

.cookie-consent p {
  margin: 5px 0;
}

.cookie-consent a,
.cookie-settings,
.audience-settings {
  color: #e3c98e;
}

.cookie-consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-settings,
.audience-settings {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 680px) {
  .cookie-consent {
    align-items: stretch;
    flex-direction: column;
  }

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