﻿/*
Theme Name: Tocam Immo
Theme URI: https://tocamimmo.local
Author: Codex
Author URI: https://tocamimmo.local
Description: Theme custom WordPress pour Tocam Immo.
Version: 1.0.0
Text Domain: tocamimmo
*/

@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  --tocam-bg: #07111b;
  --tocam-bg-soft: #101a2a;
  --tocam-panel: rgba(8, 16, 28, 0.72);
  --tocam-panel-strong: rgba(8, 16, 28, 0.9);
  --tocam-text: #f6f1e8;
  --tocam-text-muted: rgba(246, 241, 232, 0.72);
  --tocam-text-soft: rgba(246, 241, 232, 0.54);
  --tocam-gold: #bc9e59;
  --tocam-gold-rgb: 188, 158, 89;
  --tocam-navy: #131f33;
  --tocam-gradient: linear-gradient(135deg, #8C6B1F, #D4AF37, #F5E27A, #D4AF37, #8C6B1F);
  --tocam-container: min(1280px, calc(100% - 48px));
  --tocam-header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: rgba(140, 107, 31, 0.55) #f3f0ea;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--tocam-text);
  font-family: "Montserrat", Arial, sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(188, 158, 89, 0.14), transparent 20%),
    radial-gradient(circle at bottom left, rgba(188, 158, 89, 0.08), transparent 22%),
    linear-gradient(180deg, #07111b 0%, #0b1526 52%, #07111b 100%);
}

body::-webkit-scrollbar {
  width: 14px;
}

body::-webkit-scrollbar-track {
  background: #f3f0ea;
}

body::-webkit-scrollbar-thumb {
  border: 3px solid #f3f0ea;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(140, 107, 31, 0.7), rgba(212, 175, 55, 0.8));
}

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

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(7, 17, 27, 0.94);
  color: #fff;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 27, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

body.home .site-header {
  position: absolute;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

body.home .site-header.is-scrolled {
  position: fixed;
  background: rgba(7, 17, 27, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

body.admin-bar.home .site-header.is-scrolled {
  top: 32px;
}

.site-header-inner,
.site-main,
.site-footer-inner {
  width: var(--tocam-container);
  margin: 0 auto;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: var(--tocam-header-height);
  padding: 12px 0 6px;
  width: min(100% - 32px, 1680px);
}

.site-logo {
  flex: 0 0 auto;
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transform: none;
}

.site-logo img {
  display: block;
  width: 280px;
  height: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1 1 auto;
  min-width: 0;
}

.site-menu-panel {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav a,
.site-contact-link,
.site-phone-link {
  position: relative;
  color: #f6f1e8;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav__blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-nav__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(188, 158, 89, 0.18);
  color: var(--tocam-gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a::after,
.site-contact-link::after,
.site-phone-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--tocam-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-contact-link:hover::after,
.site-phone-link:hover::after {
  transform: scaleX(1);
}

.site-phone-link,
.site-contact-link {
  flex: 0 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
}

.site-phone-link {
  margin-left: auto;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}

.site-contact-link {
  margin-left: 0;
}

.site-phone-link:hover,
.site-contact-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.site-menu-toggle {
  display: none;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 17, 27, 0.22);
  cursor: pointer;
}

.site-menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px auto;
  background: #f6f1e8;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero-section {
  position: relative;
  width: 100%;
}

.hero-section--search {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin-top: calc(var(--tocam-header-height) * -1);
  padding: calc(var(--tocam-header-height) + 40px) 24px 48px;
  overflow: hidden;
}

.hero-carousel,
.hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--tocam-header-height) * -1);
  bottom: 0;
}

.hero-carousel {
  z-index: 0;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 5s ease;
  background-color: #17120d;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-carousel__slide:nth-child(1) {
  background-image:
    linear-gradient(115deg, rgba(12, 8, 6, 0.2), rgba(12, 8, 6, 0.08)),
    url("assets/images/hero-slide-1.jpeg");
}

.hero-carousel__slide:nth-child(2) {
  background-image:
    linear-gradient(120deg, rgba(12, 8, 6, 0.18), rgba(12, 8, 6, 0.06)),
    url("assets/images/hero-slide-2.jpeg");
}

.hero-carousel__slide:nth-child(3) {
  background-image:
    linear-gradient(120deg, rgba(12, 8, 6, 0.18), rgba(12, 8, 6, 0.08)),
    url("assets/images/hero-slide-3.jpeg");
}

.hero-carousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 13, 8, 0.06) 0%, rgba(20, 13, 8, 0.14) 100%);
}

.hero-search-stage {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  align-self: center;
  padding: 10px 18px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 999px;
  background: rgba(7, 17, 27, 0.5);
  backdrop-filter: blur(8px);
  margin: 0 0 16px;
  color: var(--tocam-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  animation: hero-fade-up 0.8s ease forwards;
  animation-delay: 0.12s;
}

.hero-title {
  margin: 0 0 16px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-family: "Cinzel", Georgia, serif;
  line-height: 0.94;
  color: transparent;
  background: linear-gradient(120deg, #f6f1e8 0%, #f6f1e8 34%, #dbc387 50%, #f6f1e8 66%, #f6f1e8 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  animation:
    hero-fade-up 0.9s ease forwards,
    shimmer-gold 3.2s ease-in-out 0.65s 1 forwards;
}

.hero-intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 16px 22px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 18px;
  background: rgba(7, 17, 27, 0.44);
  backdrop-filter: blur(10px);
  color: var(--tocam-text-muted);
  font-size: 1.02rem;
  line-height: 1.9;
  opacity: 0;
  animation: hero-fade-up 0.85s ease forwards;
  animation-delay: 0.42s;
}

.hero-search-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
  margin-top: 34px;
  padding: 14px;
  border: 1px solid var(--tocam-gold);
  border-radius: 8px;
  background: rgba(8, 16, 28, 0.42);
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 0 1px rgba(188, 158, 89, 0.08),
    0 24px 52px rgba(0, 0, 0, 0.28);
  opacity: 0;
  animation: hero-fade-up 0.85s ease forwards;
  animation-delay: 0.58s;
}

.hero-search-bar--centered {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.search-pill {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-pill-label {
  color: var(--tocam-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.search-pill input,
.search-pill select {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  color: #fff;
  border: 1px solid rgba(188, 158, 89, 0.36);
  border-radius: 8px;
  background: rgba(10, 18, 30, 0.86);
  outline: none;
  font: inherit;
  color: rgba(255, 255, 255, 0.82);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.search-pill input::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

.search-pill input:focus,
.search-pill select:focus {
  border-color: var(--tocam-gold);
  box-shadow: 0 0 0 4px rgba(188, 158, 89, 0.12);
}

.search-pill input:hover,
.search-pill select:hover {
  border-color: rgba(188, 158, 89, 0.72);
  box-shadow: 0 0 18px rgba(188, 158, 89, 0.12);
}

.search-pill select {
  appearance: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 42px;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--tocam-gold) 50%), linear-gradient(135deg, var(--tocam-gold) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.search-pill select option {
  color: #fff;
  background: #1a2434;
}

.hero-search-button {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(260px, 100%);
  align-self: center;
  min-height: 56px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  color: #000;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  background: var(--tocam-gradient);
  background-image: var(--tocam-gradient);
  background-clip: padding-box;
  box-shadow: 0 20px 40px rgba(188, 158, 89, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.hero-search-button:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow:
    0 0 18px rgba(188, 158, 89, 0.34),
    0 20px 40px rgba(188, 158, 89, 0.28);
}

.selection-section {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0 40px;
  position: relative;
}

.selection-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #f5f4f1 0%, #efede8 100%);
  z-index: -1;
}

.selection-section__intro {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 30px;
}

.selection-section__heading-group {
  display: grid;
  gap: 10px;
}

.selection-section__intro-title {
  margin: 0;
  color: #0f1b2e;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.selection-section__eyebrow {
  margin: 0;
  color: #8C6B1F;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.selection-section__title {
  margin: 0;
  color: #bc9e59;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.8rem, 5.2vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.selection-section__subtitle {
  margin: 0;
  color: rgba(15, 27, 46, 0.68);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.selection-section__text {
  margin: 0;
  max-width: 620px;
  color: rgba(15, 27, 46, 0.72);
  font-size: 1rem;
  line-height: 1.8;
}

.selection-carousel {
  position: relative;
}

.selection-carousel__controls {
  position: absolute;
  top: -78px;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 12px;
}

.selection-carousel__arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(15, 27, 46, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #0f1b2e;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(15, 27, 46, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.selection-carousel__arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(140, 107, 31, 0.28);
  box-shadow: 0 18px 28px rgba(15, 27, 46, 0.12);
}

.selection-carousel__arrow:disabled {
  opacity: 0.38;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.selection-carousel__viewport {
  overflow: hidden;
}

.selection-carousel__track {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.selection-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, #10203a 0%, #132847 100%);
  box-shadow:
    0 20px 44px rgba(15, 27, 46, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.selection-card__media {
  position: relative;
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
}

.selection-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.selection-card:hover .selection-card__media img {
  transform: scale(1.04);
}

.selection-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 17, 27, 0.72);
  color: #f6f1e8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.selection-card__body {
  display: grid;
  gap: 14px;
  padding: 24px 24px 26px;
}

.selection-card__title {
  margin: 0;
  color: #f6f1e8;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.42rem;
  line-height: 1.22;
}

.selection-card__meta {
  margin: 0;
  color: rgba(246, 241, 232, 0.76);
  font-size: 0.98rem;
  line-height: 1.7;
}

.selection-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--tocam-gradient);
  color: #0a1320;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.selection-card__link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(212, 175, 55, 0.22);
}

.selection-carousel__pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.selection-carousel__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 27, 46, 0.16);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, width 0.2s ease;
}

.selection-carousel__dot.is-active {
  width: 28px;
  background: var(--tocam-gradient);
}

.coverage-section {
  width: min(1400px, calc(100% - 56px));
  margin: 0 auto;
  padding: 96px 0 84px;
}

.team-section {
  position: relative;
  padding: 28px 0 104px;
}

.team-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #f5f4f1 0%, #efede8 100%);
  z-index: -1;
}

.team-section__inner {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 0;
  border-top: 1px solid rgba(188, 158, 89, 0.14);
}

.team-section__intro {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 0 0 42px;
  text-align: left;
}

.team-section__eyebrow {
  margin: 0;
  color: #bc9e59;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.team-section__title {
  margin: 0;
  color: #0f213d;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.team-section__text {
  margin: 0;
  max-width: 720px;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.8;
}

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

.team-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 33, 61, 0.10);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 24px 52px rgba(3, 10, 20, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #bc9e59, #c9aa68);
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(188, 158, 89, 0.3);
  box-shadow: 0 30px 60px rgba(3, 10, 20, 0.12);
}

.team-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.team-card__media {
  position: relative;
  aspect-ratio: 0.95 / 1;
  overflow: hidden;
  background: #eef2f7;
}

.team-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-card__media img {
  transform: scale(1.05);
}

.team-card__specialty {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(188, 158, 89, 0.2);
  border-radius: 999px;
  background: rgba(15, 33, 61, 0.75);
  color: #bc9e59;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(8px);
}

.team-card:hover .team-card__specialty {
  opacity: 1;
  transform: translateY(0);
}

.team-card__body {
  display: grid;
  gap: 8px;
  padding: 24px 24px 28px;
}

.team-card__name {
  margin: 0;
  color: #0f213d;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.32rem;
  line-height: 1.2;
}

.team-card__role {
  margin: 0;
  color: #bc9e59;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.team-card__location {
  margin: 0;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.55;
}

.team-section__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding: 26px 28px;
  border: 1px solid rgba(15, 33, 61, 0.10);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(15, 27, 46, 0.08);
}

.team-section__cta-text {
  margin: 0;
  color: #0f213d;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.team-section__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8C6B1F, #D4AF37, #F5E27A, #D4AF37, #8C6B1F);
  color: #102445;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(188, 158, 89, 0.25);
  transition: transform 0.28s ease, filter 0.28s ease, box-shadow 0.28s ease;
}

.team-section__cta-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 14px 30px rgba(188, 158, 89, 0.28);
}

.partners-section {
  position: relative;
  padding: 0 0 96px;
}

.partners-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #efede8;
  z-index: -1;
}

.partners-section__inner {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0;
}

.partners-section__title {
  margin: 0 0 34px;
  color: #0f213d;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 600;
  text-align: center;
}

.partners-marquee {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(15, 33, 61, 0.08);
  border-bottom: 1px solid rgba(15, 33, 61, 0.08);
  background: transparent;
}

.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 88px;
  z-index: 2;
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f4f1eb 0%, rgba(244, 241, 235, 0) 100%);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #efede8 0%, rgba(239, 237, 232, 0) 100%);
}

.partners-marquee__track {
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;
  animation: partners-scroll 34s linear infinite;
}

.partners-marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 92px;
  padding: 10px 18px;
  border-radius: 20px;
  border: 1px solid rgba(15, 33, 61, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(15, 27, 46, 0.06);
}

.partners-marquee__item img {
  display: block;
  max-width: 170px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(0.96);
}

@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }

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

@media (prefers-reduced-motion: reduce) {
  .partners-marquee__track {
    animation: none;
  }
}

.coverage-section__intro {
  max-width: 860px;
  margin-bottom: 38px;
}

.coverage-section__eyebrow {
  margin: 0 0 12px;
  color: var(--tocam-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.coverage-section__title {
  margin: 0 0 16px;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.coverage-section__text {
  margin: 0;
  color: var(--tocam-text-muted);
  line-height: 1.8;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, 360px);
  gap: 22px;
  align-items: start;
}

.coverage-map-card,
.coverage-map-shell {
  position: relative;
  width: 100%;
  border: 1px solid rgba(188, 158, 89, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(188, 158, 89, 0.08), transparent 18%),
    rgba(8, 16, 28, 0.62);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.22);
}

.map-stage,
.coverage-map-card {
  position: relative;
  min-height: 760px;
  padding: 18px;
  overflow: hidden;
}

.regions__map {
  position: relative;
  width: 100%;
  height: 100%;
}

.regions__map svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 664px;
}

.regions__map .land {
  fill: #131f33;
  stroke: #bc9e59;
  stroke-width: 0.8;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 3px rgba(188, 158, 89, 0.4));
  cursor: pointer;
  transition: fill 0.3s ease, filter 0.3s ease, opacity 0.3s ease, stroke-width 0.3s ease;
  opacity: 0.18;
  animation: region-awaken 1.4s ease forwards;
}

.regions__map .land:hover {
  fill: rgba(188, 158, 89, 0.2);
  stroke-width: 1.2;
  filter:
    drop-shadow(0 0 4px rgba(188, 158, 89, 0.4))
    drop-shadow(0 0 12px rgba(188, 158, 89, 0.16));
}

.regions__map .land.active {
  fill: rgba(188, 158, 89, 0.2);
  stroke-width: 1.6;
  filter:
    drop-shadow(0 0 3px rgba(188, 158, 89, 0.45))
    drop-shadow(0 0 12px rgba(188, 158, 89, 0.5));
}

.regions__map .land:focus,
.regions__map .land:focus-visible {
  outline: none;
}

.regions__map .land:focus-visible {
  fill: rgba(188, 158, 89, 0.16);
}

.regions-map-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  min-width: 180px;
  padding: 12px 14px;
  border: 1px solid rgba(188, 158, 89, 0.42);
  border-radius: 14px;
  background: rgba(8, 16, 28, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(0.96);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.regions-map-tooltip.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.regions-map-tooltip__name {
  display: block;
  margin-bottom: 4px;
  color: var(--tocam-text);
  font-size: 0.95rem;
  font-weight: 700;
}

.regions-map-tooltip__count {
  color: var(--tocam-text-muted);
  font-size: 0.85rem;
}

.regions-map-tooltip__count:empty {
  display: none;
}

.region-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-self: start;
  position: sticky;
  top: calc(var(--tocam-header-height) + 28px);
  padding: 20px 22px;
  border: 1px solid rgba(188, 158, 89, 0.24);
  border-radius: 18px;
  background: rgba(8, 16, 28, 0.76);
  backdrop-filter: blur(10px);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.region-panel__eyebrow {
  margin: 0;
  color: var(--tocam-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.region-panel__title {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--tocam-text);
}

.region-panel__meta {
  margin: 0;
  color: var(--tocam-text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.region-panel__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 4px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(188, 158, 89, 0.14);
  color: var(--tocam-text);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.region-panel__link:hover {
  background: rgba(188, 158, 89, 0.22);
  box-shadow: 0 0 20px rgba(188, 158, 89, 0.16);
  transform: translateY(-1px);
}

@media (max-width: 1280px) {
  .coverage-section {
    width: min(100% - 40px, 1320px);
  }

  .coverage-layout {
    grid-template-columns: minmax(0, 1.28fr) minmax(260px, 320px);
    gap: 20px;
  }

  .map-stage,
  .coverage-map-card {
    min-height: 700px;
  }
}

.regions__map .land:nth-child(1) { animation-delay: 0.16s; }
.regions__map .land:nth-child(2) { animation-delay: 0.24s; }
.regions__map .land:nth-child(3) { animation-delay: 0.32s; }
.regions__map .land:nth-child(4) { animation-delay: 0.4s; }
.regions__map .land:nth-child(5) { animation-delay: 0.48s; }
.regions__map .land:nth-child(6) { animation-delay: 0.56s; }
.regions__map .land:nth-child(7) { animation-delay: 0.64s; }
.regions__map .land:nth-child(8) { animation-delay: 0.72s; }
.regions__map .land:nth-child(9) { animation-delay: 0.8s; }
.regions__map .land:nth-child(10) { animation-delay: 0.88s; }
.regions__map .land:nth-child(11) { animation-delay: 0.96s; }
.regions__map .land:nth-child(12) { animation-delay: 1.04s; }
.regions__map .land:nth-child(13) { animation-delay: 1.12s; }

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

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

@keyframes shimmer-gold {
  0% {
    background-position: 130% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes region-awaken {
  0% {
    opacity: 0.14;
    fill: #131f33;
    filter: drop-shadow(0 0 0 rgba(188, 158, 89, 0));
  }

  55% {
    opacity: 1;
    fill: rgba(188, 158, 89, 0.12);
    filter:
      drop-shadow(0 0 5px rgba(188, 158, 89, 0.45))
      drop-shadow(0 0 12px rgba(188, 158, 89, 0.22));
  }

  100% {
    opacity: 1;
    fill: #131f33;
    filter: drop-shadow(0 0 3px rgba(188, 158, 89, 0.4));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-kicker,
  .hero-title,
  .hero-intro,
  .hero-search-bar,
  .regions__map .land {
    opacity: 1;
    animation: none;
  }

  .hero-search-button,
  .search-pill input,
  .search-pill select {
    transition: none;
  }
}

.site-footer {
  position: relative;
  color: rgba(246, 241, 232, 0.76);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at top left, rgba(188, 158, 89, 0.08), transparent 18%),
    linear-gradient(180deg, #08121f 0%, #07111b 100%);
  z-index: -1;
}

.site-footer-inner {
  padding: 40px 0 32px;
}

.site-footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.8fr) minmax(180px, 0.7fr);
  gap: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(188, 158, 89, 0.14);
}

.site-footer-brand {
  display: grid;
  gap: 16px;
}

.site-footer-logo {
  display: inline-flex;
  width: fit-content;
}

.site-footer-logo img {
  display: block;
  width: 220px;
  height: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.site-footer-tagline {
  margin: 0;
  max-width: 480px;
  color: rgba(246, 241, 232, 0.72);
  line-height: 1.8;
}

.site-footer-title {
  margin: 0 0 14px;
  color: #bc9e59;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer-nav-group,
.site-footer-contact {
  display: grid;
  align-content: start;
}

.site-footer-nav {
  display: grid;
  gap: 12px;
}

.site-footer-nav a,
.site-footer-phone,
.site-footer-link {
  width: fit-content;
  color: rgba(246, 241, 232, 0.84);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer-nav a:hover,
.site-footer-phone:hover,
.site-footer-link:hover {
  color: #bc9e59;
  transform: translateX(2px);
}

.site-footer-phone {
  margin-bottom: 14px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(188, 158, 89, 0.14);
  border: 1px solid rgba(188, 158, 89, 0.18);
}

.site-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.site-footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(188, 158, 89, 0.18);
  color: var(--tocam-text);
  text-decoration: none;
}

.site-footer-social img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.site-footer-social--instagram img {
  width: 30px;
  height: 30px;
}

.site-footer-social--tiktok img {
  width: 28px;
  height: 28px;
}

.site-footer-social--facebook img {
  width: 24px;
  height: 24px;
}

.site-footer-social--placeholder {
  opacity: 0.7;
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 18px;
  color: rgba(246, 241, 232, 0.56);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 1280px) {
  .hero-section {
    min-height: auto;
  }

  .site-header-inner {
    position: relative;
    width: min(100% - 24px, 1680px);
    align-items: center;
    gap: 14px;
    min-height: 64px;
    padding: 6px 0;
  }

  .site-logo {
    margin-right: auto;
    padding-left: 6px;
    min-height: 42px;
    display: inline-flex;
    justify-content: flex-start;
  }

  .site-logo img {
    width: 220px;
    max-height: none;
  }

  .site-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    position: relative;
    transition: transform 0.22s ease;
  }

  .site-menu-toggle span {
    display: none;
  }

  .site-menu-toggle::before,
  .site-menu-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 11px;
    height: 1.5px;
    border-radius: 999px;
    background: rgba(246, 241, 232, 0.92);
    transform-origin: center;
    transition: transform 0.22s ease, background-color 0.22s ease, opacity 0.22s ease;
  }

  .site-menu-toggle::before {
    left: calc(50% - 9px);
    transform: translateY(-50%) rotate(38deg);
  }

  .site-menu-toggle::after {
    left: calc(50% - 2px);
    transform: translateY(-50%) rotate(-38deg);
  }

  .site-menu-panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 14px;
    right: 14px;
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(10, 20, 34, 0.94), rgba(7, 17, 27, 0.9));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px) scale(0.985);
    transform-origin: top center;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .site-header.menu-open .site-menu-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-header.menu-open .site-header-inner {
    padding-bottom: 6px;
  }

  .site-header.menu-open .site-menu-toggle {
    transform: rotate(180deg);
  }

  .site-footer-top {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .site-nav {
    display: grid;
    justify-items: stretch;
    gap: 8px;
    flex: none;
    width: 100%;
  }

  .site-nav a,
  .site-contact-link,
  .site-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 248px;
    max-width: 100%;
    min-height: 44px;
    margin: 0 auto;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.82rem;
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-align: center;
  }

  .site-nav a {
    background: rgba(255, 255, 255, 0.02);
  }

  .site-phone-link,
  .site-contact-link {
    background: rgba(255, 255, 255, 0.02);
    border: 0;
  }

  .site-footer-inner {
    padding: 32px 0 26px;
  }

  .site-footer-logo img {
    width: 132px;
  }

  .hero-search-stage {
    width: min(100%, 760px);
    padding-top: 16px;
    padding-bottom: 20px;
  }

  .hero-search-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    margin-top: 24px;
  }

  .hero-search-button {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    min-height: 52px;
  }

  .selection-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .selection-section__title {
    font-size: clamp(2.3rem, 5.5vw, 3.6rem);
  }

  .coverage-layout {
    grid-template-columns: 1fr;
  }

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

  .team-section__cta {
    justify-content: center;
    text-align: center;
  }

  .map-stage {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --tocam-container: min(100% - 32px, 1180px);
  }

  .site-header,
  body.home .site-header,
  body.home .site-header.is-scrolled,
  body.admin-bar .site-header,
  body.admin-bar.home .site-header,
  body.admin-bar.home .site-header.is-scrolled {
    position: fixed;
    top: 0;
    background: rgba(7, 17, 27, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  }

  .hero-section {
    padding: 24px 0 28px;
  }

  .site-header-inner {
    min-height: 62px;
    padding: 4px 0;
  }

  :root {
    --tocam-header-height: 62px;
  }

  .site-logo {
    padding-left: 6px;
    min-height: 40px;
  }

  .site-logo img {
    width: 200px;
    max-height: none;
  }

  .site-nav a,
  .site-contact-link,
  .site-phone-link {
    width: 236px;
    max-width: 100%;
    min-height: 42px;
    padding: 9px 11px;
    font-size: 0.74rem;
    letter-spacing: 0.05em;
  }

  .site-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .site-menu-panel {
    left: 12px;
    right: 12px;
    top: calc(100% + 3px);
    gap: 8px;
    padding: 10px;
    border-radius: 16px;
  }

  .site-nav {
    gap: 6px;
  }

  .hero-title {
    margin-bottom: 10px;
    font-size: clamp(2.15rem, 10.4vw, 3rem);
    line-height: 0.98;
  }

  .hero-kicker {
    margin-bottom: 10px;
    padding: 7px 12px;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .hero-intro {
    max-width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .hero-search-bar {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
    padding: 10px;
    border-radius: 14px;
  }

  .hero-search-stage {
    width: min(100%, 520px);
    padding-top: 18px;
    padding-bottom: 10px;
  }

  .hero-section--search {
    min-height: auto;
    padding: calc(var(--tocam-header-height) + 34px) 16px 24px;
  }

  .search-pill {
    gap: 4px;
  }

  .search-pill-label {
    font-size: 0.63rem;
    letter-spacing: 0.13em;
  }

  .search-pill input,
  .search-pill select,
  .hero-search-button {
    min-height: 50px;
  }

  .search-pill input,
  .search-pill select {
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .hero-search-button {
    padding: 0 18px;
    font-size: 0.82rem;
    box-shadow: 0 14px 24px rgba(188, 158, 89, 0.18);
  }
}

@media (max-width: 430px) {
  .site-header,
  body.home .site-header,
  body.home .site-header.is-scrolled,
  body.admin-bar .site-header,
  body.admin-bar.home .site-header,
  body.admin-bar.home .site-header.is-scrolled {
    top: 0;
  }

  .site-header-inner {
    min-height: 60px;
  }

  :root {
    --tocam-header-height: 60px;
  }

  .site-logo {
    padding-left: 5px;
    min-height: 38px;
  }

  .site-logo img {
    width: 180px;
    max-height: none;
  }

  .site-menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero-title {
    font-size: clamp(1.95rem, 9.8vw, 2.65rem);
  }

  .hero-intro {
    padding: 11px 12px;
    font-size: 0.88rem;
  }

  .hero-section--search {
    padding: calc(var(--tocam-header-height) + 30px) 14px 22px;
  }

  .hero-search-bar {
    padding: 9px;
  }

  .selection-section {
    width: min(100% - 32px, 1320px);
    padding: 72px 0 32px;
  }

  .selection-carousel__controls {
    position: static;
    justify-content: flex-end;
    margin-bottom: 18px;
  }

  .selection-carousel__track {
    gap: 18px;
  }

  .selection-card {
    flex-basis: 100%;
  }

  .selection-card__body {
    padding: 20px 20px 22px;
  }

  .selection-card__title {
    font-size: 1.24rem;
  }

  .selection-section__heading-group {
    gap: 8px;
  }

  .selection-section__intro-title {
    font-size: 1rem;
  }

  .selection-section__title {
    font-size: clamp(2rem, 8.2vw, 2.8rem);
  }

  .selection-section__subtitle {
    font-size: 0.86rem;
    letter-spacing: 0.05em;
  }

  .coverage-section {
    width: min(100% - 32px, 1320px);
    padding: 72px 0 56px;
  }

  .team-section {
    padding: 20px 0 72px;
  }

  .team-section__inner {
    width: min(100% - 32px, 1320px);
    padding-top: 36px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-card__body {
    padding: 22px 20px 26px;
  }

  .team-section__cta {
    margin-top: 30px;
    padding: 22px 18px;
  }

  .regions__map svg {
    min-height: 440px;
  }

  .regions-map-tooltip {
    display: none;
  }
}

.site-main--listing {
  padding-top: var(--tocam-header-height);
}

body.post-type-archive-bien .site-main--listing {
  padding-top: 0;
}

.listing-hero {
  position: relative;
  padding: 72px 0 34px;
}

body.post-type-archive-bien .listing-hero {
  padding-top: calc(var(--tocam-header-height) + 72px);
}

body.admin-bar.post-type-archive-bien .listing-hero {
  padding-top: calc(var(--tocam-header-height) + 104px);
}

.listing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(188, 158, 89, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(8, 16, 28, 0.96), rgba(7, 17, 27, 0.92));
  z-index: -1;
}

.listing-hero__inner,
.listing-shell,
.property-single__inner {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.listing-hero__inner {
  max-width: none;
}

.listing-hero__eyebrow,
.listing-results__eyebrow {
  margin: 0 0 12px;
  color: #bc9e59;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.listing-hero__title,
.listing-results__title,
.listing-filters__title {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  line-height: 1.06;
}

.listing-hero__title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.listing-hero__text {
  margin: 16px 0 0;
  max-width: 700px;
  color: rgba(246, 241, 232, 0.72);
  line-height: 1.8;
}

.listing-section {
  position: relative;
  padding: 40px 0 88px;
}

.listing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f5f4f1 0%, #efede8 100%);
  z-index: -1;
}

.listing-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.listing-filters {
  position: sticky;
  top: calc(var(--tocam-header-height) + 28px);
  padding: 24px;
  border: 1px solid rgba(15, 33, 61, 0.10);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(15, 27, 46, 0.08);
}

.listing-filters__eyebrow {
  margin: 0 0 10px;
  color: #bc9e59;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.listing-filters__title {
  margin-bottom: 18px;
  color: #0f213d;
  font-size: 1.28rem;
}

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

.listing-form__field {
  display: grid;
  gap: 6px;
}

.listing-form__field span {
  color: #0f213d;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listing-form__field input,
.listing-form__field select {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(15, 33, 61, 0.10);
  border-radius: 14px;
  background: #fff;
  color: #0f213d;
  font: inherit;
}

.listing-form__actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.listing-form__submit {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--tocam-gradient);
  color: #0a1320;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(188, 158, 89, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.listing-form__submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 0 18px rgba(188, 158, 89, 0.22),
    0 16px 30px rgba(188, 158, 89, 0.24);
}

.listing-form__reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(15, 33, 61, 0.14);
  border-radius: 999px;
  color: #102445;
  text-decoration: none;
  background: rgba(15, 33, 61, 0.06);
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.listing-form__reset:hover {
  background: rgba(188, 158, 89, 0.10);
  border-color: rgba(188, 158, 89, 0.32);
  color: #0f213d;
}

.listing-results__topbar {
  margin-bottom: 20px;
}

.listing-results__title {
  color: #0f213d;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

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

.property-card {
  overflow: hidden;
  border: 1px solid rgba(15, 33, 61, 0.10);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(15, 27, 46, 0.08);
}

.property-card__media {
  display: block;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background: #eceff4;
}

.property-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.property-card:hover .property-card__media img {
  transform: scale(1.04);
}

.property-card__body {
  display: grid;
  gap: 12px;
  padding: 22px 22px 24px;
}

.property-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.property-card__price {
  margin: 0;
  color: #bc9e59;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.property-card__goal {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 33, 61, 0.08);
  color: #0f213d;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-card__title,
.property-card__title a {
  margin: 0;
  color: #0f213d;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.24;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
  text-decoration: none;
}

.property-card__meta,
.property-card__details {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
}

.property-card__excerpt {
  margin: 0;
  color: #10203a;
  line-height: 1.7;
}

.property-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(188, 158, 89, 0.14);
  color: #0f213d;
  font-weight: 700;
  text-decoration: none;
}

.listing-empty {
  padding: 32px;
  border: 1px solid rgba(15, 33, 61, 0.10);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  color: #0f213d;
}

.listing-empty h3,
.listing-empty p {
  margin: 0;
}

.listing-empty p {
  margin-top: 10px;
  color: #6b7280;
  line-height: 1.7;
}

.navigation.pagination {
  margin-top: 28px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 33, 61, 0.10);
  background: rgba(255, 255, 255, 0.88);
  color: #0f213d;
  text-decoration: none;
}

.nav-links .page-numbers.current {
  background: var(--tocam-gradient);
  color: #0a1320;
  border-color: transparent;
}

.property-single {
  position: relative;
  padding: 72px 0 96px;
}

.property-single::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f5f4f1 0%, #efede8 100%);
  z-index: -1;
}

.property-single__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: start;
}

.property-single__media {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 52px rgba(15, 27, 46, 0.12);
}

.property-single__media img {
  display: block;
  width: 100%;
  height: auto;
}

.property-single__content {
  padding: 28px;
  border: 1px solid rgba(15, 33, 61, 0.10);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(15, 27, 46, 0.08);
}

.property-single__eyebrow,
.property-single__price {
  color: #bc9e59;
}

.property-single__eyebrow {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.property-single__title {
  margin: 0;
  color: #0f213d;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.55rem, 2.45vw, 2.35rem);
  line-height: 1.16;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}

.property-single__price {
  margin: 16px 0 10px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.property-single__details,
.property-single__highlight,
.property-single__text {
  color: #475569;
  line-height: 1.8;
}

.property-single__details,
.property-single__highlight {
  margin: 0 0 10px;
}

.property-single__text {
  margin-top: 18px;
}

.property-single__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 22px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(188, 158, 89, 0.14);
  color: #0f213d;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .listing-shell,
  .property-single__inner {
    grid-template-columns: 1fr;
  }

  .listing-filters {
    position: static;
  }

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

  .property-single__hero-media {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .listing-hero {
    padding: 56px 0 28px;
  }

  body.post-type-archive-bien .listing-hero {
    padding-top: calc(var(--tocam-header-height) + 56px);
  }

  body.admin-bar.post-type-archive-bien .listing-hero {
    padding-top: calc(var(--tocam-header-height) + 102px);
  }

  .listing-hero__inner,
  .listing-shell,
  .property-single__inner {
    width: min(100% - 32px, 1320px);
  }
}

@media (max-width: 430px) {
  .property-grid {
    grid-template-columns: 1fr;
  }

  .listing-filters,
  .property-single__content {
    padding: 22px 18px;
  }
}

.location-autocomplete {
  position: relative;
}

.location-autocomplete__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid rgba(15, 33, 61, 0.12);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 33, 61, 0.12);
}

.location-autocomplete__dropdown[hidden] {
  display: none !important;
}

.location-autocomplete__option {
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 12px;
  color: #0f213d;
  font: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.location-autocomplete__option:hover,
.location-autocomplete__option.is-active {
  color: #0f213d;
  background: rgba(188, 158, 89, 0.12);
}

.search-pill--autocomplete,
.listing-form__field--autocomplete {
  z-index: 3;
}

.property-card__condition {
  margin: 0 0 10px;
  color: #bc9e59;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.property-single--enhanced .property-single__inner {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 360px);
  gap: 28px;
}

.property-single__page-topbar {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  margin-bottom: -4px;
}

.property-single__main {
  display: grid;
  gap: 22px;
}

.property-single__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.property-single__hero-media,
.property-single__gallery-item {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 52px rgba(15, 27, 46, 0.12);
}

.property-single__hero-media img,
.property-single__gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-single__hero-media {
  min-height: 640px;
}

.property-single__hero-card,
.property-single__panel,
.property-single__contact-card {
  padding: 28px;
  border: 1px solid rgba(15, 33, 61, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(15, 27, 46, 0.08);
}

.property-single__hero-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.property-single__badges,
.property-single__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.property-single__badges {
  margin-bottom: 18px;
}

.property-single__badge,
.property-single__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #0f213d;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(15, 33, 61, 0.06);
}

.property-single__badge--gold {
  color: #bc9e59;
  background: rgba(188, 158, 89, 0.12);
}

.property-single__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.property-single__stat {
  padding: 16px;
  border-radius: 18px;
  background: #f8f6f1;
}

.property-single__stat span {
  display: block;
  margin-bottom: 6px;
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.property-single__stat strong {
  color: #0f213d;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.08rem;
}

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

.property-single__gallery-item {
  min-height: 200px;
}

.property-single__content-grid {
  display: grid;
  gap: 22px;
}

.property-single__section-title {
  margin: 0 0 18px;
  color: #0f213d;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.65rem;
}

.property-single__panel-text {
  margin: 18px 0 0;
  color: #6b7280;
  line-height: 1.8;
}

.property-single__location-text {
  margin: -4px 0 18px;
  color: #475569;
  line-height: 1.7;
}

.property-single__map-frame {
  overflow: hidden;
  border: 1px solid rgba(15, 33, 61, 0.1);
  border-radius: 24px;
  background: #f8f6f1;
}

.property-single__map-frame iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.property-single__specs {
  margin: 0;
}

.property-single__specs div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 33, 61, 0.1);
}

.property-single__specs dt {
  color: #6b7280;
  font-weight: 600;
}

.property-single__specs dd {
  margin: 0;
  color: #0f213d;
  font-weight: 700;
  text-align: right;
}

.property-single__sidebar {
  position: sticky;
  top: calc(var(--tocam-header-height) + 28px);
  align-self: start;
}

.property-single__contact-card {
  background:
    linear-gradient(180deg, rgba(15, 33, 61, 0.98), rgba(19, 31, 51, 0.98)),
    #0f213d;
  border-color: rgba(188, 158, 89, 0.18);
  color: #f6f1e8;
}

.property-single__contact-eyebrow {
  margin: 0 0 12px;
  color: #bc9e59;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.property-single__contact-title {
  margin: 0 0 14px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.85rem;
  line-height: 1.15;
}

.property-single__contact-text {
  margin: 0 0 20px;
  color: rgba(246, 241, 232, 0.78);
  line-height: 1.75;
}

.property-single__contact-phone,
.property-single__contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  width: 100%;
  border-radius: 999px;
  text-decoration: none;
}

.property-single__contact-phone {
  margin-bottom: 12px;
  border: 1px solid rgba(188, 158, 89, 0.22);
  color: #f6f1e8;
  background: rgba(255, 255, 255, 0.04);
}

.property-single__form {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.property-single__field {
  display: grid;
  gap: 6px;
}

.property-single__field span {
  color: rgba(246, 241, 232, 0.78);
  font-size: 0.82rem;
  font-weight: 600;
}

.property-single__field input,
.property-single__field select,
.property-single__field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(188, 158, 89, 0.18);
  border-radius: 12px;
  color: #f6f1e8;
  font: inherit;
  background: rgba(255, 255, 255, 0.06);
}

.property-single__field textarea {
  min-height: 120px;
  padding-top: 14px;
  resize: vertical;
}

.property-single__field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(246, 241, 232, 0.78) 50%),
    linear-gradient(135deg, rgba(246, 241, 232, 0.78) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.property-single__field input::placeholder,
.property-single__field textarea::placeholder {
  color: rgba(246, 241, 232, 0.5);
}

.property-single__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(246, 241, 232, 0.78);
  font-size: 0.82rem;
  line-height: 1.5;
}

.property-single__consent input {
  margin-top: 3px;
}

.property-single__contact-button {
  color: #111922;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--tocam-gradient);
  box-shadow: 0 10px 25px rgba(188, 158, 89, 0.25);
  border: 0;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.property-single__contact-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 0 18px rgba(188, 158, 89, 0.24),
    0 16px 30px rgba(188, 158, 89, 0.26);
}

.property-single__back--page {
  min-height: 42px;
  margin-top: 0;
  color: #0f213d;
  background: rgba(15, 33, 61, 0.08);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.property-single__back--page:hover {
  transform: translateY(-1px);
  background: rgba(188, 158, 89, 0.10);
  color: #102445;
}

.tocam-form-alert {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
}

.tocam-form-alert p {
  margin: 0;
  line-height: 1.6;
}

.tocam-form-alert__list {
  margin: 10px 0 0;
  padding-left: 18px;
}

.tocam-form-alert__list li + li {
  margin-top: 6px;
}

.tocam-form-alert--success {
  border-color: rgba(110, 231, 183, 0.32);
  color: #dcfce7;
  background: rgba(6, 78, 59, 0.55);
}

.tocam-form-alert--error {
  border-color: rgba(248, 113, 113, 0.32);
  color: #fee2e2;
  background: rgba(127, 29, 29, 0.55);
}

.tocam-contact-form__intro {
  margin: 0 0 16px;
  color: rgba(246, 241, 232, 0.78);
  line-height: 1.7;
}

.site-main--contact .tocam-contact-form__intro {
  color: #324763;
}

.tocam-contact-context {
  margin: 0 0 16px;
  padding: 14px 16px;
  border: 1px solid rgba(188, 158, 89, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.tocam-contact-context__label {
  margin: 0 0 6px;
  color: rgba(246, 241, 232, 0.6);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tocam-contact-context__value {
  margin: 0;
  color: #f6f1e8;
  font-weight: 700;
  line-height: 1.5;
}

.site-main--contact {
  padding-top: calc(var(--tocam-header-height) + 32px);
  background:
    radial-gradient(circle at top right, rgba(188, 158, 89, 0.12), transparent 26%),
    linear-gradient(180deg, #07111b 0%, #0b1526 48%, #07111b 100%);
}

.contact-page-hero {
  padding: 48px 24px 24px;
}

.contact-page-hero__inner,
.contact-page-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.contact-page-hero__eyebrow,
.contact-page-card__eyebrow {
  margin: 0 0 12px;
  color: var(--tocam-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-page-hero__title {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.08;
}

.contact-page-hero__text {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(246, 241, 232, 0.78);
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-page-section {
  padding: 24px 24px 72px;
}

.contact-page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 420px);
  gap: 28px;
  align-items: start;
}

.contact-page-content {
  display: grid;
  gap: 24px;
}

.contact-page-card {
  padding: 28px;
  border: 1px solid rgba(188, 158, 89, 0.14);
  border-radius: 28px;
  background: rgba(8, 16, 28, 0.68);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.contact-page-card--content {
  color: rgba(246, 241, 232, 0.82);
  line-height: 1.8;
}

.contact-page-card--content p:first-child {
  margin-top: 0;
}

.contact-page-card--content p:last-child {
  margin-bottom: 0;
}

.contact-page-card__title {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: 2rem;
  line-height: 1.2;
}

.contact-page-card__lead {
  margin: 18px 0 0;
  color: rgba(246, 241, 232, 0.78);
  line-height: 1.8;
}

.contact-page-info-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-page-info {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-page-info--dark {
  background: rgba(255, 255, 255, 0.05);
}

.contact-page-info__label {
  display: block;
  margin-bottom: 8px;
  color: rgba(246, 241, 232, 0.58);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-page-info a,
.contact-page-info p {
  margin: 0;
  color: #f6f1e8;
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
}

.contact-page-shell--single {
  grid-template-columns: minmax(0, 940px);
  justify-content: center;
}

.contact-page-card--form {
  background: rgba(8, 16, 28, 0.74);
}

.property-single__form--light .property-single__field span,
.property-single__form--light .property-single__consent {
  color: rgba(246, 241, 232, 0.82);
}

.property-single__form--light .property-single__field input,
.property-single__form--light .property-single__field select,
.property-single__form--light .property-single__field textarea {
  background: rgba(255, 255, 255, 0.05);
}

.property-single__consent--dark {
  color: rgba(246, 241, 232, 0.82);
}

.extended-form {
  display: grid;
  gap: 16px;
}

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

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

.extended-form__field {
  display: grid;
  gap: 8px;
}

.extended-form__field span {
  color: rgba(246, 241, 232, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
}

.extended-form__field input,
.extended-form__field select,
.extended-form__field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(188, 158, 89, 0.18);
  border-radius: 12px;
  color: #f6f1e8;
  font: inherit;
  background: rgba(255, 255, 255, 0.06);
}

.property-single__field select,
.extended-form__field select,
.vente-field select {
  color: #f6f1e8;
  color-scheme: dark;
}

.property-single__field select option,
.extended-form__field select option,
.vente-field select option,
.property-single__field select optgroup,
.extended-form__field select optgroup,
.vente-field select optgroup {
  color: #111922;
  background: #f6f1e8;
}

.extended-form__field textarea {
  min-height: 140px;
  padding-top: 14px;
  resize: vertical;
}

.extended-form__field input[type="file"] {
  padding: 12px 14px;
}

.contact-page-sidebar {
  position: sticky;
  top: calc(var(--tocam-header-height) + 28px);
}

.contact-page-form-card {
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.site-main--legal {
  padding-top: calc(var(--tocam-header-height) + 32px);
  background:
    radial-gradient(circle at top right, rgba(188, 158, 89, 0.12), transparent 24%),
    linear-gradient(180deg, #07111b 0%, #0b1526 46%, #07111b 100%);
}

.legal-shell {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.legal-hero {
  padding: 48px 24px 24px;
}

.legal-hero__eyebrow {
  margin: 0 0 12px;
  color: var(--tocam-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-hero__title {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
}

.legal-hero__text {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(246, 241, 232, 0.78);
  line-height: 1.8;
}

.legal-section {
  padding: 24px 24px 78px;
}

.legal-content {
  display: grid;
  gap: 22px;
}

.legal-card {
  padding: 28px;
  border: 1px solid rgba(188, 158, 89, 0.14);
  border-radius: 28px;
  background: rgba(8, 16, 28, 0.68);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.legal-card h2 {
  margin: 0 0 16px;
  color: #f6f1e8;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.2;
}

.legal-card p {
  margin: 0;
  color: rgba(246, 241, 232, 0.82);
  line-height: 1.8;
}

.legal-card p + p {
  margin-top: 12px;
}

.legal-card a {
  color: var(--tocam-gold);
}

.site-main--editorial {
  padding-top: calc(var(--tocam-header-height) + 32px);
  background:
    radial-gradient(circle at top right, rgba(188, 158, 89, 0.14), transparent 24%),
    linear-gradient(180deg, #07111b 0%, #0b1526 46%, #07111b 100%);
}

.editorial-hero {
  padding: 48px 24px 26px;
}

.editorial-hero__inner,
.editorial-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.editorial-hero__eyebrow,
.editorial-card__eyebrow {
  margin: 0 0 12px;
  color: var(--tocam-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-hero__title {
  max-width: 900px;
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.08;
}

.editorial-hero__text {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(246, 241, 232, 0.78);
  font-size: 1.05rem;
  line-height: 1.8;
}

.editorial-section {
  padding: 24px 24px 78px;
}

.editorial-shell {
  display: grid;
  gap: 28px;
}

.editorial-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
}

.editorial-card {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(188, 158, 89, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.editorial-card--light {
  background: rgba(245, 241, 232, 0.96);
}

.editorial-card--dark {
  background:
    linear-gradient(180deg, rgba(15, 33, 61, 0.98), rgba(19, 31, 51, 0.98)),
    #0f213d;
}

.editorial-card--outline,
.editorial-card--timeline {
  background: rgba(8, 16, 28, 0.68);
  backdrop-filter: blur(14px);
}

.editorial-card--light .editorial-card__title,
.editorial-card--light .editorial-card__text,
.editorial-card--light .editorial-list__item p,
.editorial-card--light .editorial-profile h3,
.editorial-card--light .editorial-profile p {
  color: #0f213d;
}

.editorial-card--dark .editorial-card__title,
.editorial-card--dark .editorial-card__text,
.editorial-card--dark .editorial-list__item p,
.editorial-card--dark .editorial-profile h3,
.editorial-card--dark .editorial-profile p,
.editorial-card--outline .editorial-card__title,
.editorial-card--outline .editorial-card__text,
.editorial-card--timeline .editorial-card__title,
.editorial-card--timeline .editorial-card__text,
.editorial-card--timeline .editorial-profile h3,
.editorial-card--timeline .editorial-profile p {
  color: #f6f1e8;
}

.editorial-card__title {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  line-height: 1.2;
}

.editorial-card--pillar .editorial-card__title {
  font-size: clamp(1.35rem, 1.9vw, 1.72rem);
}

.editorial-card__text {
  margin: 16px 0 0;
  line-height: 1.8;
}

.editorial-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 24px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--tocam-gradient);
  color: #111922;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(188, 158, 89, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.editorial-card__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 0 18px rgba(188, 158, 89, 0.24),
    0 16px 30px rgba(188, 158, 89, 0.26);
}

.editorial-card__cta--secondary {
  background: rgba(188, 158, 89, 0.12);
  color: #f6f1e8;
}

.editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.editorial-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.editorial-list__item {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.editorial-list__item span {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--tocam-gradient);
}

.editorial-list__item p {
  margin: 0;
  line-height: 1.75;
}

.editorial-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.editorial-timeline__item,
.editorial-profile {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.editorial-timeline__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(188, 158, 89, 0.16);
  color: var(--tocam-gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.editorial-timeline__item h3,
.editorial-profile h3 {
  margin: 18px 0 10px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.32rem;
  line-height: 1.2;
}

.editorial-timeline__item p,
.editorial-profile p {
  margin: 0;
  line-height: 1.75;
}

.editorial-grid--profiles {
  margin-top: 18px;
}

.editorial-profile__meta {
  margin: 0;
  color: rgba(246, 241, 232, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-post__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.editorial-profile--post h3 a {
  color: inherit;
  text-decoration: none;
}

.site-main--vente {
  padding-top: calc(var(--tocam-header-height) + 18px);
  background:
    radial-gradient(circle at top right, rgba(188, 158, 89, 0.12), transparent 26%),
    linear-gradient(180deg, #07111b 0%, #0c1526 42%, #07111b 100%);
}

.vente-hero,
.vente-section {
  padding: 24px 24px 20px;
}

.vente-section {
  padding-top: 28px;
  padding-bottom: 82px;
}

.vente-hero__inner,
.vente-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.vente-hero__inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.vente-shell {
  padding-top: 40px;
}

.vente-hero__eyebrow,
.vente-step__eyebrow {
  margin: 0 0 12px;
  color: var(--tocam-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vente-hero__title,
.vente-step__title {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  line-height: 1.08;
}

.vente-hero__title {
  max-width: none;
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  line-height: 0.98;
  white-space: nowrap;
}

.vente-hero__text {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(246, 241, 232, 0.82);
  font-size: 1rem;
  line-height: 1.75;
}

.vente-wizard {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.vente-wizard__layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 780px);
  gap: 48px;
  align-items: start;
  justify-content: start;
}

.vente-wizard__steps {
  display: grid;
  gap: 10px;
  position: sticky;
  top: calc(var(--tocam-header-height) + 28px);
  padding-top: 54px;
}

.vente-wizard__step {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  padding: 0;
  color: rgba(246, 241, 232, 0.58);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.vente-wizard__step span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.28);
  transition: transform 180ms ease, background 180ms ease;
}

.vente-wizard__step.is-active,
.vente-wizard__step.is-complete {
  color: #f6f1e8;
}

.vente-wizard__step.is-active span,
.vente-wizard__step.is-complete span {
  background: var(--tocam-gold);
  transform: scale(1.1);
}

.vente-wizard__panels {
  display: grid;
  gap: 18px;
  width: min(100%, 780px);
}

.vente-step {
  display: grid;
  gap: 16px;
  padding-top: 0;
}

.vente-step__title {
  font-size: clamp(2rem, 3.7vw, 3.5rem);
  max-width: 10ch;
  line-height: 1.02;
}

.vente-step__card {
  width: 100%;
  max-width: none;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(188, 158, 89, 0.14);
  background: rgba(8, 16, 28, 0.72);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.vente-step__card--split {
  max-width: none;
}

.vente-step__grid {
  display: grid;
  gap: 18px;
}

.vente-step__grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vente-field {
  display: grid;
  gap: 10px;
}

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

.vente-field span {
  color: rgba(246, 241, 232, 0.76);
  font-size: 0.86rem;
  font-weight: 600;
}

.vente-field input,
.vente-field select,
.vente-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(188, 158, 89, 0.16);
  border-radius: 16px;
  color: #f6f1e8;
  font: inherit;
  background: rgba(255, 255, 255, 0.05);
}

.vente-field textarea {
  min-height: 150px;
  padding-top: 14px;
  resize: vertical;
}

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

.vente-choice-list {
  display: grid;
  gap: 14px;
}

.vente-choice {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 136px;
  padding: 18px;
  border: 1px solid rgba(188, 158, 89, 0.14);
  border-radius: 22px;
  color: #f6f1e8;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.vente-choice:hover {
  transform: translateY(-2px);
  border-color: rgba(188, 158, 89, 0.32);
}

.vente-choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.vente-choice:has(input:checked) {
  border-color: rgba(188, 158, 89, 0.55);
  background: rgba(188, 158, 89, 0.12);
  box-shadow: 0 18px 32px rgba(188, 158, 89, 0.14);
}

.vente-choice--line {
  min-height: 0;
  place-items: start;
  justify-items: start;
  text-align: left;
}

.vente-wizard__actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  width: min(100%, 780px);
  margin-top: 0;
}

.vente-wizard__back,
.vente-wizard__next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(188, 158, 89, 0.2);
  border-radius: 999px;
  color: #f6f1e8;
  font: inherit;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  min-width: 150px;
}

.vente-wizard__next {
  margin-left: auto;
}

.vente-wizard__actions .property-single__contact-button {
  margin-left: auto;
  width: auto;
  min-width: 210px;
  padding: 0 28px;
}

.blog-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: min(360px, calc(100vw - 32px));
  padding: 18px 18px 20px;
  border: 1px solid rgba(188, 158, 89, 0.18);
  border-radius: 22px;
  background: rgba(8, 16, 28, 0.94);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.blog-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.blog-toast__close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  color: rgba(246, 241, 232, 0.76);
  font-size: 1.4rem;
  line-height: 1;
  background: transparent;
  cursor: pointer;
}

.blog-toast__eyebrow {
  margin: 0 28px 8px 0;
  color: var(--tocam-gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-toast__title {
  margin: 0;
  color: #f6f1e8;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.25;
}

.blog-toast__link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--tocam-gold);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .property-single--enhanced .property-single__inner,
  .property-single__hero {
    grid-template-columns: 1fr;
  }

  .property-single__sidebar,
  .contact-page-sidebar {
    position: static;
  }

  .contact-page-shell {
    grid-template-columns: 1fr;
  }

  .editorial-grid--pillars,
  .editorial-grid--profiles,
  .editorial-grid--blog,
  .editorial-split,
  .editorial-timeline {
    grid-template-columns: 1fr;
  }

  .vente-wizard__layout,
  .vente-step__grid--two,
  .vente-choice-grid {
    grid-template-columns: 1fr;
  }

  .vente-wizard__steps {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .extended-form__grid,
  .extended-form__grid--three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .property-single__gallery,
  .property-single__stats {
    grid-template-columns: 1fr;
  }

  .property-single__hero-media {
    min-height: 320px;
  }

  .contact-page-hero,
  .contact-page-section,
  .legal-hero,
  .legal-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-page-hero__inner,
  .contact-page-shell,
  .legal-shell {
    width: min(100% - 8px, 1280px);
  }

  .contact-page-card,
  .contact-page-form-card,
  .legal-card {
    padding: 22px;
    border-radius: 22px;
  }

  .contact-page-card__title {
    font-size: 1.7rem;
  }

  .editorial-hero,
  .editorial-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .editorial-hero__inner,
  .editorial-shell {
    width: min(100% - 8px, 1280px);
  }

  .vente-hero,
  .vente-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .vente-hero__inner,
  .vente-shell {
    width: min(100% - 8px, 1280px);
  }

  .vente-hero__title {
    white-space: normal;
  }

  .vente-shell {
    padding-top: 28px;
  }

  .vente-step__card {
    padding: 22px;
    border-radius: 22px;
  }

  .vente-wizard__steps {
    padding-top: 0;
    grid-template-columns: 1fr;
  }

  .vente-wizard__actions {
    flex-wrap: wrap;
  }

  .blog-toast {
    right: 12px;
    bottom: 12px;
    width: min(280px, calc(100vw - 24px));
    padding: 14px 14px 16px;
    border-radius: 18px;
  }

  .blog-toast__close {
    top: 10px;
    right: 10px;
    font-size: 1.15rem;
  }

  .blog-toast__eyebrow {
    margin: 0 24px 6px 0;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .blog-toast__title {
    font-size: 0.98rem;
    line-height: 1.28;
  }

  .blog-toast__link {
    margin-top: 12px;
    font-size: 0.92rem;
  }

  .editorial-card {
    padding: 22px;
    border-radius: 22px;
  }

  .partners-section {
    padding-bottom: 72px;
  }

  .partners-section__inner {
    width: min(100% - 32px, 1320px);
  }

  .partners-section__title {
    margin-bottom: 24px;
    font-size: 1.6rem;
  }

  .partners-marquee::before,
  .partners-marquee::after {
    width: 40px;
  }

  .partners-marquee__track {
    gap: 24px;
  }

  .partners-marquee__item {
    min-width: 160px;
    height: 74px;
    padding: 10px 14px;
  }

  .partners-marquee__item img {
    max-width: 132px;
    max-height: 44px;
  }
}

@media (max-width: 430px) {
  .blog-toast {
    width: min(248px, calc(100vw - 20px));
    padding: 12px 12px 14px;
    border-radius: 16px;
  }

  .blog-toast__title {
    font-size: 0.9rem;
  }

  .blog-toast__link {
    font-size: 0.88rem;
  }
}




/* Codex override: vente spacing */
.site-main--vente .vente-wizard {
  margin-top: 38px;
  gap: 32px;
}

.site-main--vente .vente-wizard__layout {
  margin-top: 10px;
}

.site-main--vente .vente-wizard__steps {
  padding-top: 12px;
}

.site-main--vente .vente-step__heading {
  display: grid;
  gap: 16px;
  margin-bottom: 10px;
}

.site-main--vente .vente-step__eyebrow {
  margin: 0;
}

/* Palette aligned with "Nos biens" for all non-home, non-archive pages */
.site-main--contact,
.site-main--legal,
.site-main--editorial,
.site-main--vente {
  background:
    radial-gradient(circle at top right, rgba(188, 158, 89, 0.10), transparent 22%),
    linear-gradient(180deg, rgba(8, 16, 28, 0.96) 0 320px, #f5f4f1 320px, #efede8 100%);
}

.contact-page-section,
.legal-section,
.editorial-section,
.vente-section {
  position: relative;
}

.contact-page-card,
.contact-page-card--form,
.legal-card,
.editorial-card,
.vente-step__card {
  border: 1px solid rgba(15, 33, 61, 0.10);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(15, 27, 46, 0.08);
  backdrop-filter: none;
}

.contact-page-card__title,
.legal-card h2,
.editorial-card__title,
.editorial-profile h3,
.editorial-profile h3 a,
.editorial-timeline__item h3,
.contact-page-card--content,
.contact-page-card__lead,
.contact-page-info a,
.contact-page-info p,
.legal-card p,
.editorial-card__text,
.editorial-list__item p,
.editorial-profile p,
.editorial-timeline__item p,
.editorial-profile__meta {
  color: #0f213d;
}

.contact-page-info {
  background: rgba(245, 244, 241, 0.92);
}

.contact-page-info__label {
  color: rgba(15, 33, 61, 0.55);
}

.extended-form__field input,
.extended-form__field select,
.extended-form__field textarea,
.vente-field input,
.vente-field select,
.vente-field textarea {
  border-color: rgba(15, 33, 61, 0.12);
  color: #0f213d;
  background: rgba(245, 244, 241, 0.96);
}

.extended-form__field input::placeholder,
.extended-form__field textarea::placeholder,
.vente-field input::placeholder,
.vente-field textarea::placeholder {
  color: rgba(15, 33, 61, 0.45);
}

.vente-choice {
  border-color: rgba(15, 33, 61, 0.10);
  background: rgba(245, 244, 241, 0.9);
  color: #0f213d;
}

.vente-choice:has(input:checked) {
  border-color: rgba(188, 158, 89, 0.55);
  background: rgba(188, 158, 89, 0.12);
  box-shadow: 0 18px 32px rgba(188, 158, 89, 0.10);
}

.vente-wizard__step {
  color: rgba(15, 33, 61, 0.42);
}

.vente-wizard__step.is-active,
.vente-wizard__step.is-complete {
  color: #0f213d;
}

.contact-page-hero__title,
.contact-page-hero__text,
.legal-hero__title,
.legal-hero__text,
.editorial-hero__title,
.editorial-hero__text,
.vente-hero__title,
.vente-step__title,
.vente-field span,
.extended-form__field span,
.property-single__consent--dark {
  color: #f6f1e8;
}

.vente-step__card .vente-step__title,
.vente-step__card .vente-field span,
.vente-step__card .property-single__consent--dark,
.contact-page-card .extended-form__field span {
  color: #0f213d;
}

.site-main--contact .contact-page-card__eyebrow,
.site-main--legal .legal-card h2 + p,
.site-main--editorial .editorial-card__eyebrow,
.site-main--vente .vente-step__eyebrow {
  color: inherit;
}

.editorial-card__cta--secondary {
  background: rgba(188, 158, 89, 0.12);
  color: #0f213d;
}

.site-main--editorial .editorial-card__eyebrow,
.site-main--contact .contact-page-card__eyebrow,
.site-main--legal .legal-hero__eyebrow,
.site-main--vente .vente-step__eyebrow {
  color: #bc9e59;
}

.site-main--expertise {
  background: linear-gradient(180deg, #f5f4f1 0%, #efede8 100%) !important;
}

.site-main--expertise .editorial-hero {
  background: transparent !important;
  padding-top: 44px;
  padding-bottom: 30px;
}

.site-main--expertise .editorial-hero__inner {
  max-width: 1180px;
}

.site-main--expertise .editorial-hero__eyebrow {
  color: #bc9e59;
}

.site-main--expertise .editorial-hero__title {
  max-width: 980px;
  color: #0f213d;
  font-size: clamp(2.35rem, 4.1vw, 4rem);
  line-height: 1.02;
}

.site-main--expertise .editorial-hero__text {
  max-width: 820px;
  color: #45556f;
}

.site-main--expertise .editorial-section {
  padding-top: 18px;
}

.site-main--expertise .editorial-card {
  border: 1px solid rgba(15, 33, 61, 0.10);
  box-shadow: 0 18px 40px rgba(15, 27, 46, 0.08);
}

.site-main--expertise .editorial-card--light {
  background: rgba(255, 255, 255, 0.92);
}

.site-main--expertise .editorial-card--light .editorial-card__eyebrow,
.site-main--expertise .editorial-card--light .editorial-card__title,
.site-main--expertise .editorial-card--light .editorial-card__text,
.site-main--expertise .editorial-card--light .editorial-list__item p {
  color: #0f213d;
}

.site-main--expertise .editorial-card--dark,
.site-main--expertise .editorial-card--outline {
  background: linear-gradient(180deg, rgba(15, 33, 61, 0.98), rgba(19, 31, 51, 0.98)), #0f213d;
  border-color: rgba(188, 158, 89, 0.18);
}

.site-main--expertise .editorial-card--dark .editorial-card__eyebrow,
.site-main--expertise .editorial-card--dark .editorial-card__title,
.site-main--expertise .editorial-card--dark .editorial-card__text,
.site-main--expertise .editorial-card--dark .editorial-list__item p,
.site-main--expertise .editorial-card--outline .editorial-card__eyebrow,
.site-main--expertise .editorial-card--outline .editorial-card__title,
.site-main--expertise .editorial-card--outline .editorial-card__text {
  color: #f6f1e8;
}

@media (max-width: 760px) {
  .site-main--expertise .editorial-hero {
    padding-top: 34px;
    padding-bottom: 20px;
  }
}

/* Final contrast alignment with the "Nos biens" structure */
.site-main--contact,
.site-main--legal,
.site-main--editorial,
.site-main--vente {
  background: linear-gradient(180deg, #07111b 0 340px, #f5f4f1 340px, #efede8 100%);
}

.contact-page-hero,
.legal-hero,
.editorial-hero,
.vente-hero {
  padding-top: 56px;
  padding-bottom: 86px;
}

.contact-page-section,
.legal-section,
.editorial-section,
.vente-section {
  padding-top: 0;
}

.contact-page-hero__title,
.contact-page-hero__text,
.legal-hero__title,
.legal-hero__text,
.editorial-hero__title,
.editorial-hero__text,
.vente-hero__title,
.vente-hero__text {
  color: #f6f1e8;
}

.contact-page-card,
.contact-page-card--form,
.legal-card,
.vente-step__card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 33, 61, 0.10);
  box-shadow: 0 18px 40px rgba(15, 27, 46, 0.08);
}

.contact-page-card,
.contact-page-card--form,
.legal-card,
.contact-page-info,
.vente-step__card,
.vente-choice,
.extended-form__field input,
.extended-form__field select,
.extended-form__field textarea,
.vente-field input,
.vente-field select,
.vente-field textarea {
  color: #0f213d;
}

.contact-page-card__title,
.contact-page-card__lead,
.contact-page-card--content,
.contact-page-card--content p,
.contact-page-info a,
.contact-page-info p,
.legal-card h2,
.legal-card p,
.vente-choice,
.vente-choice--line,
.vente-field span,
.extended-form__field span,
.property-single__consent--dark {
  color: #0f213d;
}

.extended-form__field input::placeholder,
.extended-form__field textarea::placeholder,
.vente-field input::placeholder,
.vente-field textarea::placeholder {
  color: rgba(15, 33, 61, 0.45);
}

.editorial-card {
  border: 1px solid rgba(15, 33, 61, 0.10);
  box-shadow: 0 18px 40px rgba(15, 27, 46, 0.08);
}

.editorial-card--light {
  background: rgba(255, 255, 255, 0.92);
}

.editorial-card--dark,
.editorial-card--outline,
.editorial-card--timeline {
  background: linear-gradient(180deg, rgba(15, 33, 61, 0.98), rgba(19, 31, 51, 0.98)), #0f213d;
  border-color: rgba(188, 158, 89, 0.18);
}

.editorial-card--light .editorial-card__title,
.editorial-card--light .editorial-card__text,
.editorial-card--light .editorial-list__item p,
.editorial-card--light .editorial-profile h3,
.editorial-card--light .editorial-profile p,
.editorial-card--light .editorial-card__eyebrow {
  color: #0f213d;
}

.editorial-card--dark .editorial-card__title,
.editorial-card--dark .editorial-card__text,
.editorial-card--dark .editorial-list__item p,
.editorial-card--dark .editorial-profile h3,
.editorial-card--dark .editorial-profile p,
.editorial-card--dark .editorial-card__eyebrow,
.editorial-card--outline .editorial-card__title,
.editorial-card--outline .editorial-card__text,
.editorial-card--outline .editorial-card__eyebrow,
.editorial-card--timeline .editorial-card__title,
.editorial-card--timeline .editorial-card__text,
.editorial-card--timeline .editorial-card__eyebrow,
.editorial-card--timeline .editorial-profile h3,
.editorial-card--timeline .editorial-profile p {
  color: #f6f1e8;
}

.editorial-profile {
  background: rgba(255, 255, 255, 0.05);
}

.editorial-card--light .editorial-profile {
  background: rgba(245, 244, 241, 0.92);
}

@media (max-width: 760px) {
  .contact-page-hero,
  .legal-hero,
  .editorial-hero,
  .vente-hero {
    padding-top: 42px;
    padding-bottom: 62px;
  }

  .site-main--contact,
  .site-main--legal,
  .site-main--editorial,
  .site-main--vente {
    background: linear-gradient(180deg, #07111b 0 280px, #f5f4f1 280px, #efede8 100%);
  }
}

/* Final expertise-inspired theme for all non-home / non-properties pages */
.site-main--editorial:not(.site-main--expertise),
.site-main--contact,
.site-main--legal,
.site-main--vente {
  background:
    radial-gradient(circle at top left, rgba(203, 167, 87, 0.10), transparent 36%),
    linear-gradient(180deg, #faf8f3 0%, #f5f4f1 55%, #efede8 100%);
  color: #0f213d;
}

.site-main--editorial:not(.site-main--expertise) .editorial-hero,
.site-main--contact .contact-page-hero,
.site-main--legal .legal-hero,
.site-main--vente .vente-hero {
  background: transparent;
  padding-top: 72px;
  padding-bottom: 34px;
}

.site-main--editorial:not(.site-main--expertise) .editorial-hero__inner,
.site-main--contact .contact-page-hero__inner,
.site-main--legal .legal-shell,
.site-main--vente .vente-hero__inner {
  max-width: 1120px;
}

.site-main--editorial:not(.site-main--expertise) .editorial-hero__eyebrow,
.site-main--contact .contact-page-hero__eyebrow,
.site-main--legal .legal-hero__eyebrow,
.site-main--vente .vente-hero__eyebrow {
  color: #bc9e59;
}

.site-main--editorial:not(.site-main--expertise) .editorial-hero__title,
.site-main--editorial:not(.site-main--expertise) .editorial-hero__text,
.site-main--contact .contact-page-hero__title,
.site-main--contact .contact-page-hero__text,
.site-main--legal .legal-hero__title,
.site-main--legal .legal-hero__text,
.site-main--vente .vente-hero__title,
.site-main--vente .vente-hero__text {
  color: #102445;
}

.site-main--editorial:not(.site-main--expertise) .editorial-section,
.site-main--contact .contact-page-section,
.site-main--legal .legal-section,
.site-main--vente .vente-section {
  padding-top: 8px;
}

.site-main--editorial:not(.site-main--expertise) .editorial-card--light,
.site-main--editorial:not(.site-main--expertise) .editorial-profile,
.site-main--contact .contact-page-card,
.site-main--contact .contact-page-card--form,
.site-main--contact .property-single__contact-card,
.site-main--legal .legal-card,
.site-main--vente .vente-step__card,
.site-main--vente .vente-wizard__steps {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 33, 61, 0.10);
  box-shadow: 0 18px 40px rgba(15, 27, 46, 0.08);
}

.site-main--editorial:not(.site-main--expertise) .editorial-card--light .editorial-card__title,
.site-main--editorial:not(.site-main--expertise) .editorial-card--light .editorial-card__text,
.site-main--editorial:not(.site-main--expertise) .editorial-card--light .editorial-card__eyebrow,
.site-main--editorial:not(.site-main--expertise) .editorial-profile h3,
.site-main--editorial:not(.site-main--expertise) .editorial-profile p,
.site-main--editorial:not(.site-main--expertise) .editorial-profile__meta,
.site-main--contact .contact-page-card__title,
.site-main--contact .contact-page-card__lead,
.site-main--contact .contact-page-card__eyebrow,
.site-main--contact .contact-page-card--content,
.site-main--contact .contact-page-card--content p,
.site-main--contact .contact-page-info,
.site-main--contact .contact-page-info a,
.site-main--contact .contact-page-info p,
.site-main--legal .legal-card,
.site-main--legal .legal-card h2,
.site-main--legal .legal-card p,
.site-main--legal .legal-card li,
.site-main--vente .vente-step__heading,
.site-main--vente .vente-step__eyebrow,
.site-main--vente .vente-choice,
.site-main--vente .vente-choice--line,
.site-main--vente .vente-field span {
  color: #102445;
}

.site-main--contact .extended-form__field input,
.site-main--contact .extended-form__field select,
.site-main--contact .extended-form__field textarea,
.site-main--vente .vente-field input,
.site-main--vente .vente-field select,
.site-main--vente .vente-field textarea {
  background: #ffffff;
  color: #102445;
  border: 1px solid rgba(15, 33, 61, 0.14);
}

.site-main--contact .extended-form__field input::placeholder,
.site-main--contact .extended-form__field textarea::placeholder,
.site-main--vente .vente-field input::placeholder,
.site-main--vente .vente-field textarea::placeholder {
  color: rgba(16, 36, 69, 0.45);
}

.site-main--vente .vente-choice:hover,
.site-main--vente .vente-choice.is-selected {
  background: rgba(188, 158, 89, 0.10);
  border-color: rgba(188, 158, 89, 0.50);
}

.site-main--editorial:not(.site-main--expertise) .editorial-card--dark,
.site-main--editorial:not(.site-main--expertise) .editorial-card--outline,
.site-main--editorial:not(.site-main--expertise) .editorial-card--timeline {
  background: linear-gradient(180deg, rgba(15, 33, 61, 0.98), rgba(19, 31, 51, 0.98)), #0f213d;
  border-color: rgba(188, 158, 89, 0.18);
}

.site-main--editorial:not(.site-main--expertise) .editorial-card--dark .editorial-card__title,
.site-main--editorial:not(.site-main--expertise) .editorial-card--dark .editorial-card__text,
.site-main--editorial:not(.site-main--expertise) .editorial-card--dark .editorial-card__eyebrow,
.site-main--editorial:not(.site-main--expertise) .editorial-card--dark .editorial-list__item p,
.site-main--editorial:not(.site-main--expertise) .editorial-card--dark .editorial-profile h3,
.site-main--editorial:not(.site-main--expertise) .editorial-card--dark .editorial-profile p,
.site-main--editorial:not(.site-main--expertise) .editorial-card--outline .editorial-card__title,
.site-main--editorial:not(.site-main--expertise) .editorial-card--outline .editorial-card__text,
.site-main--editorial:not(.site-main--expertise) .editorial-card--outline .editorial-card__eyebrow,
.site-main--editorial:not(.site-main--expertise) .editorial-card--timeline .editorial-card__title,
.site-main--editorial:not(.site-main--expertise) .editorial-card--timeline .editorial-card__text,
.site-main--editorial:not(.site-main--expertise) .editorial-card--timeline .editorial-card__eyebrow,
.site-main--editorial:not(.site-main--expertise) .editorial-card--timeline .editorial-profile h3,
.site-main--editorial:not(.site-main--expertise) .editorial-card--timeline .editorial-profile p {
  color: #f6f1e8;
}

.site-main--editorial:not(.site-main--expertise) .editorial-profile {
  background: rgba(255, 255, 255, 0.94);
}

@media (max-width: 760px) {
  .site-main--editorial:not(.site-main--expertise) .editorial-hero,
  .site-main--contact .contact-page-hero,
  .site-main--legal .legal-hero,
  .site-main--vente .vente-hero {
    padding-top: 52px;
    padding-bottom: 24px;
  }
}

/* Final dedicated layout for Vente */
.site-main--vente {
  background:
    radial-gradient(circle at top left, rgba(188, 158, 89, 0.10), transparent 34%),
    linear-gradient(180deg, #faf8f3 0%, #f5f4f1 58%, #efede8 100%);
}

.site-main--vente .vente-hero {
  padding-top: 84px;
  padding-bottom: 20px;
}

.site-main--vente .vente-hero__inner,
.site-main--vente .vente-shell {
  width: min(1180px, calc(100% - 48px));
}

.site-main--vente .vente-hero__inner {
  justify-items: start;
  text-align: left;
}

.site-main--vente .vente-hero__title {
  max-width: none;
  font-size: clamp(2.5rem, 5.2vw, 4.6rem);
  line-height: 0.98;
  white-space: normal;
}

.site-main--contact .property-single__contact-title,
.site-main--contact .property-single__contact-text,
.site-main--contact .property-single__contact-eyebrow {
  color: #102445;
}

.site-main--contact .property-single__form--light .property-single__field span,
.site-main--contact .property-single__form--light .property-single__consent,
.site-main--contact .extended-form__field span,
.site-main--contact .property-single__consent,
.site-main--contact .property-single__consent--dark {
  color: #52627b;
}

.site-main--contact .property-single__form--light .property-single__field input,
.site-main--contact .property-single__form--light .property-single__field select,
.site-main--contact .property-single__form--light .property-single__field textarea,
.site-main--contact .extended-form__field input,
.site-main--contact .extended-form__field select,
.site-main--contact .extended-form__field textarea {
  background: #ffffff;
  color: #102445;
  border: 1px solid rgba(15, 33, 61, 0.14);
}

.site-main--contact .property-single__form--light .property-single__field input::placeholder,
.site-main--contact .property-single__form--light .property-single__field textarea::placeholder,
.site-main--contact .extended-form__field input::placeholder,
.site-main--contact .extended-form__field textarea::placeholder {
  color: rgba(16, 36, 69, 0.42);
}

.site-main--contact .property-single__form--light .property-single__field select,
.site-main--contact .extended-form__field select {
  color: #102445;
  color-scheme: light;
}

.site-main--editorial:not(.site-main--expertise) .editorial-card__cta--secondary {
  background: rgba(255, 255, 255, 0.16);
  color: #f6f1e8;
  border: 1px solid rgba(188, 158, 89, 0.28);
}

.site-main--editorial:not(.site-main--expertise) .editorial-card__cta--secondary:hover {
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.site-main--editorial:not(.site-main--expertise) .editorial-profile--post .editorial-card__cta--secondary {
  background: rgba(188, 158, 89, 0.14);
  color: #102445;
  border: 1px solid rgba(188, 158, 89, 0.24);
}

.site-main--editorial:not(.site-main--expertise) .editorial-profile--post .editorial-card__cta--secondary:hover {
  background: rgba(188, 158, 89, 0.22);
  color: #102445;
}

.site-main--editorial:not(.site-main--expertise) .editorial-card--timeline .editorial-profile,
.site-main--editorial:not(.site-main--expertise) .editorial-card--timeline .editorial-profile h3,
.site-main--editorial:not(.site-main--expertise) .editorial-card--timeline .editorial-profile p,
.site-main--editorial:not(.site-main--expertise) .editorial-card--timeline .editorial-profile__meta {
  color: #102445;
}

.site-main--vente .vente-section {
  padding-top: 18px;
}

.site-main--vente .vente-shell {
  padding-top: 18px;
}

.site-main--vente .vente-wizard__layout {
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.site-main--vente .vente-wizard__steps {
  gap: 14px;
  padding: 22px 22px 24px;
  border-radius: 28px;
  position: sticky;
  top: calc(var(--tocam-header-height) + 24px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 33, 61, 0.10);
  box-shadow: 0 18px 40px rgba(15, 27, 46, 0.08);
}

.site-main--vente .vente-wizard__step {
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(16, 36, 69, 0.42);
}

.site-main--vente .vente-wizard__step span {
  width: 12px;
  height: 12px;
  background: rgba(16, 36, 69, 0.16);
}

.site-main--vente .vente-wizard__step.is-active,
.site-main--vente .vente-wizard__step.is-complete {
  color: #102445;
}

.site-main--vente .vente-wizard__panels {
  gap: 22px;
  width: 100%;
}

.site-main--vente .vente-step {
  gap: 14px;
}

.site-main--vente .vente-step__heading {
  display: grid;
  gap: 8px;
}

.site-main--vente .vente-step__title {
  max-width: none;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1;
  color: #bc9e59;
}

.site-main--vente .vente-step__card {
  padding: 28px 28px 26px;
  border-radius: 30px;
}

.site-main--vente .vente-field {
  gap: 8px;
}

.site-main--vente .vente-field span {
  font-size: 0.95rem;
  font-weight: 700;
}

.site-main--vente .vente-choice-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.site-main--vente .vente-choice {
  min-height: 112px;
  border-radius: 20px;
  font-size: 0.95rem;
}

.site-main--vente .vente-wizard__actions {
  width: 100%;
  margin-top: 6px;
}

.site-main--vente .vente-wizard__back,
.site-main--vente .vente-wizard__next,
.site-main--vente .vente-wizard__actions .property-single__contact-button {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
}

.site-main--vente .vente-wizard__back {
  color: #102445;
  background: rgba(255, 255, 255, 0.94);
}

.site-main--vente .vente-wizard__next,
.site-main--vente .vente-wizard__actions .property-single__contact-button {
  color: #102445;
  background: linear-gradient(135deg, #f2d560, #bc9e59);
  border-color: rgba(188, 158, 89, 0.35);
}

.site-main--vente .vente-wizard__next[disabled],
.site-main--vente .vente-wizard__actions .property-single__contact-button[disabled] {
  opacity: 0.55;
}

@media (max-width: 1100px) {
  body:not(.home) .site-main--contact,
  body:not(.home) .site-main--legal,
  body:not(.home) .site-main--editorial,
  body:not(.home) .site-main--vente {
    padding-top: calc(var(--tocam-header-height) + 8px) !important;
  }

  body:not(.home) .contact-page-hero,
  body:not(.home) .legal-hero,
  body:not(.home) .editorial-hero,
  body:not(.home) .vente-hero {
    padding-top: 20px !important;
  }

  body.post-type-archive-bien .listing-hero {
    padding-top: calc(var(--tocam-header-height) + 16px) !important;
  }

  .site-main--vente .vente-hero {
    padding-top: 0 !important;
    padding-bottom: 8px !important;
  }

  .site-main--vente .vente-section {
    padding-top: 0 !important;
  }

  .site-main--vente .vente-shell {
    padding-top: 0 !important;
  }

  .site-main--vente .vente-wizard__layout {
    grid-template-columns: 1fr;
    gap: 40px !important;
  }

  .site-main--vente .vente-wizard__steps {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -18px !important;
  }

  .site-main--vente .vente-wizard__panels {
    margin-top: 14px !important;
  }
}

@media (max-width: 760px) {
  body.home .hero-section--search {
    padding-top: calc(var(--tocam-header-height) + 56px) !important;
  }

  body.home .site-header {
    background: linear-gradient(180deg, rgba(7, 17, 27, 0.24), rgba(7, 17, 27, 0.08)) !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
  }

  body.home .site-header.is-scrolled,
  body.home .site-header.menu-open {
    background: rgba(7, 17, 27, 0.94) !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18) !important;
  }

  .site-main--vente .vente-hero {
    padding-top: 0 !important;
    padding-bottom: 4px !important;
  }

  .site-main--vente .vente-hero__inner,
  .site-main--vente .vente-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-main--vente .vente-hero__title {
    max-width: none;
    font-size: clamp(1.95rem, 9.8vw, 2.7rem);
    white-space: normal;
    line-height: 1.02;
  }

  .site-main--vente .vente-hero__title span {
    display: inline-block;
  }

  .site-main--vente .vente-hero__text {
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .site-main--vente .vente-section {
    padding-top: 0 !important;
  }

  .site-main--vente .vente-shell {
    padding-top: 0 !important;
  }

  .site-main--vente .vente-wizard__layout {
    gap: 46px !important;
  }

  .site-main--vente .vente-wizard__steps,
  .site-main--vente .vente-step__card {
    padding: 20px;
    border-radius: 24px;
  }

  .site-main--vente .vente-wizard__steps {
    grid-template-columns: 1fr !important;
    gap: 10px;
    margin-top: -28px !important;
  }

  .site-main--vente .vente-wizard__step {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .site-main--vente .vente-wizard__panels {
    gap: 30px !important;
    margin-top: 14px !important;
  }

  .site-main--vente .vente-step {
    gap: 12px;
  }

  .site-main--vente .vente-choice-grid,
  .site-main--vente .vente-step__grid--two {
    grid-template-columns: 1fr;
  }

  .site-main--vente .vente-wizard__actions {
    flex-wrap: wrap;
  }

  .site-main--vente .vente-wizard__back,
  .site-main--vente .vente-wizard__next,
  .site-main--vente .vente-wizard__actions .property-single__contact-button {
    width: 100%;
    min-width: 0;
  }
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header,
  body.admin-bar.home .site-header.is-scrolled {
    top: 0;
  }
}

/* Ajustements globaux demandés */
.hero-title {
  font-size: clamp(2.7rem, 5.4vw, 4.9rem);
}

.selection-section__title {
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
}

.selection-section__intro-title {
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
}

.coverage-section__title,
.team-section__title,
.partners-section__title,
.listing-hero__title,
.listing-results__title,
.listing-filters__title,
.property-single__title,
.property-single__section-title,
.property-single__contact-title,
.contact-page-hero__title,
.contact-page-card__title,
.legal-hero__title,
.legal-card h2,
.editorial-hero__title,
.editorial-card__title,
.editorial-profile h3,
.editorial-timeline__item h3,
.vente-hero__title,
.vente-step__title {
  letter-spacing: 0.01em;
}

.coverage-section__title,
.team-section__title,
.partners-section__title,
.listing-hero__title,
.listing-results__title,
.listing-filters__title,
.property-single__title,
.contact-page-hero__title,
.legal-hero__title,
.editorial-hero__title,
.vente-hero__title {
  font-size: clamp(1.85rem, 3.2vw, 2.8rem) !important;
  line-height: 1.04 !important;
}

.property-single__section-title,
.property-single__contact-title,
.contact-page-card__title,
.legal-card h2,
.editorial-card__title,
.editorial-profile h3,
.editorial-timeline__item h3,
.vente-step__title {
  font-size: clamp(1.55rem, 2.4vw, 2.45rem) !important;
  line-height: 1.1 !important;
}

@media (max-width: 760px) {
  .hero-title {
    margin-bottom: 8px;
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .selection-section__title,
  .coverage-section__title,
  .team-section__title,
  .partners-section__title,
  .listing-hero__title,
  .listing-results__title,
  .listing-filters__title,
  .property-single__title,
  .contact-page-hero__title,
  .legal-hero__title,
  .editorial-hero__title,
  .vente-hero__title {
    font-size: clamp(1.75rem, 6.5vw, 2.35rem) !important;
    line-height: 1.06 !important;
  }

  .selection-section__intro-title {
    font-size: 0.92rem;
  }

  .property-single__section-title,
  .property-single__contact-title,
  .contact-page-card__title,
  .legal-card h2,
  .editorial-card__title,
  .editorial-profile h3,
  .editorial-timeline__item h3,
  .vente-step__title {
    font-size: clamp(1.35rem, 5.8vw, 2rem) !important;
  }

  .coverage-section__intro {
    margin-bottom: 22px;
  }

  .coverage-layout {
    gap: 14px;
  }

  .coverage-map-card {
    min-height: auto !important;
    padding: 8px 8px 0 !important;
  }

  .regions__map svg {
    min-height: 320px;
  }

  .region-panel {
    gap: 8px;
    padding: 16px 18px;
  }
}

@media (max-width: 430px) {
  body:not(.home) .site-main--contact,
  body:not(.home) .site-main--legal,
  body:not(.home) .site-main--editorial,
  body:not(.home) .site-main--vente {
    padding-top: calc(var(--tocam-header-height) + 6px) !important;
  }

  body:not(.home) .contact-page-hero,
  body:not(.home) .legal-hero,
  body:not(.home) .editorial-hero,
  body:not(.home) .vente-hero {
    padding-top: 16px !important;
  }

  body.post-type-archive-bien .listing-hero {
    padding-top: calc(var(--tocam-header-height) + 12px) !important;
  }

  body.home .site-header {
    background: linear-gradient(180deg, rgba(7, 17, 27, 0.28), rgba(7, 17, 27, 0.1)) !important;
  }

  body.home .site-header.is-scrolled,
  body.home .site-header.menu-open {
    background: rgba(7, 17, 27, 0.96) !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2) !important;
  }

  .hero-section--search {
    padding: calc(var(--tocam-header-height) + 40px) 14px 26px;
  }

  body.home .hero-section--search {
    padding-top: calc(var(--tocam-header-height) + 52px) !important;
  }

  .hero-search-stage {
    padding-top: 18px;
  }

  .site-header-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-menu-panel {
    top: calc(100% + 8px);
    padding: 14px;
    border-radius: 18px;
  }

  .site-main--vente .vente-hero {
    padding-top: 0 !important;
    padding-bottom: 2px !important;
  }

  .site-main--vente .vente-hero__text {
    margin-top: 14px;
    line-height: 1.66;
  }

  .site-main--vente .vente-section {
    padding-top: 0 !important;
  }

  .site-main--vente .vente-wizard__layout {
    gap: 48px !important;
  }

  .site-main--vente .vente-wizard__steps {
    padding: 18px 18px 16px;
    margin-top: -30px !important;
  }

  .site-main--vente .vente-wizard__panels {
    gap: 30px !important;
    margin-top: 18px !important;
  }

  .hero-title,
  .selection-section__title,
  .coverage-section__title,
  .team-section__title,
  .partners-section__title,
  .listing-hero__title,
  .listing-results__title,
  .listing-filters__title,
  .property-single__title,
  .contact-page-hero__title,
  .legal-hero__title,
  .editorial-hero__title,
  .vente-hero__title {
    font-size: clamp(1.6rem, 7.6vw, 2rem) !important;
  }

  .listing-filters__title {
    font-size: 1.1rem;
  }

  .blog-toast {
    display: none !important;
  }

  .selection-section__intro-title {
    font-size: 0.86rem;
  }

  .regions__map svg {
    min-height: 320px;
  }

  .coverage-layout {
    gap: 10px;
  }

  .coverage-section {
    padding-top: 56px;
    padding-bottom: 44px;
  }

  .coverage-section__intro {
    margin-bottom: 12px !important;
  }

  .coverage-map-card {
    min-height: auto !important;
    padding: 4px 4px 0 !important;
    border-radius: 20px;
  }

  .regions__map {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .regions__map svg {
    display: block;
    width: 100% !important;
    min-height: 280px !important;
    height: auto !important;
    max-width: 100%;
    transform: translateY(-6px) scale(0.96);
    transform-origin: center center;
  }

  .region-panel {
    margin-top: -8px;
  }
}
