:root {
  --ink: #18312e;
  --ink-soft: #51635f;
  --forest: #193f3a;
  --forest-2: #28544e;
  --sage: #8fa59d;
  --sand: #c9a66b;
  --sand-light: #e9d9b9;
  --cream: #f6f2ea;
  --paper: #fffdf9;
  --line: #dfe4df;
  --white: #fff;
  --danger: #a13d36;
  --shadow-sm: 0 10px 30px rgba(21, 48, 44, .08);
  --shadow-lg: 0 28px 80px rgba(15, 35, 32, .16);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --container: 1240px;
  --font-sans: Inter, Avenir, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-is-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button, select { cursor: pointer; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.9rem); }
h2 { font-size: clamp(2.15rem, 4vw, 4rem); }
h3 { font-size: 1.55rem; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container--narrow { max-width: 840px; }
.section { padding: 112px 0; }
.section--cream { background: var(--cream); }
.section--dark { color: var(--white); background: var(--forest); }
.screen-reader-text,
.skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link:focus { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 12px 18px; background: var(--white); color: var(--ink); border-radius: 8px; }
.eyebrow { display: inline-block; margin-bottom: 18px; color: var(--sand); font-size: .74rem; font-weight: 800; letter-spacing: .16em; line-height: 1.3; text-transform: uppercase; }
.eyebrow--light { color: var(--sand-light); }
.icon { width: 21px; height: 21px; flex: 0 0 auto; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border: 1px solid var(--sand);
  border-radius: 999px;
  background: var(--sand);
  color: #102724;
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .035em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: #d6b77d; border-color: #d6b77d; }
.button .icon { width: 18px; }
.button--small { min-height: 44px; padding: 10px 20px; font-size: .75rem; }
.button--ghost { background: transparent; border-color: var(--forest); color: var(--forest); }
.button--light { background: var(--white); border-color: var(--white); color: var(--forest); }
.button--outline-light { background: transparent; border-color: rgba(255,255,255,.6); color: var(--white); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--forest); font-size: .82rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.text-link .icon { width: 18px; transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(4px); }

/* En-tête */
.site-header { position: absolute; z-index: 100; top: 0; left: 0; width: 100%; color: var(--white); transition: background .2s ease, box-shadow .2s ease; }
.site-header.is-scrolled { position: fixed; background: rgba(255,253,249,.96); color: var(--ink); box-shadow: 0 7px 30px rgba(19,47,43,.09); backdrop-filter: blur(16px); }
.site-header__inner { display: flex; min-height: 96px; align-items: center; justify-content: space-between; gap: 36px; }
.site-wordmark { display: inline-flex; align-items: center; gap: 12px; color: inherit; line-height: 1; }
.site-wordmark__mark { display: grid; width: 43px; height: 43px; place-items: center; border: 1px solid currentColor; border-radius: 50%; color: var(--sand); font-family: var(--font-serif); font-size: 1.65rem; font-style: italic; }
.site-wordmark strong { display: block; font-size: 1.05rem; letter-spacing: .14em; text-transform: uppercase; }
.site-wordmark small { display: block; margin-top: 5px; opacity: .72; font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.custom-logo-link { display: block; }
.custom-logo { max-width: 220px; max-height: 64px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav .menu { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
.site-nav .menu > .menu-item { position: relative; }
.site-nav .menu a { position: relative; padding: 10px 0; font-size: .8rem; font-weight: 700; letter-spacing: .04em; }
.site-nav .menu a::after { position: absolute; right: 0; bottom: 3px; left: 0; height: 1px; background: var(--sand); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.site-nav .menu a:hover::after,
.site-nav .current-menu-item > a::after,
.site-nav .current-menu-parent > a::after { transform: scaleX(1); }
.site-nav .menu-item-has-children > a { padding-right: 17px; }
.site-nav .menu-item-has-children > a::before {
  position: absolute;
  top: 50%;
  right: 1px;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-70%) rotate(45deg);
}
.site-nav .sub-menu {
  position: absolute;
  z-index: 30;
  top: 100%;
  left: 50%;
  display: grid;
  width: min(340px, calc(100vw - 40px));
  max-height: min(520px, calc(100vh - 150px));
  gap: 2px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(24,49,46,.1);
  border-radius: 15px;
  background: rgba(255,253,249,.98);
  box-shadow: 0 24px 64px rgba(11,30,27,.2);
  list-style: none;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  visibility: hidden;
}
.site-nav .menu-item-has-children:hover > .sub-menu,
.site-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}
.site-nav .sub-menu a {
  display: block;
  padding: 11px 13px;
  border-radius: 9px;
  color: var(--ink);
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.35;
}
.site-nav .sub-menu a::after { display: none; }
.site-nav .sub-menu a:hover,
.site-nav .sub-menu a:focus-visible,
.site-nav .sub-menu .current-menu-item > a {
  background: var(--cream);
  color: var(--forest);
  outline: none;
}
.site-nav .sub-menu .sanctalia-menu-all {
  margin-top: 5px;
  padding-top: 7px;
  border-top: 1px solid var(--line);
}
.site-nav .sub-menu .sanctalia-menu-all a { color: var(--sand); }
.submenu-toggle { display: none; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 9px; border: 0; background: transparent; color: currentColor; }
.menu-toggle .icon { width: 26px; height: 26px; }
.menu-toggle__close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__close { display: block; }
body:not(.home) .site-header:not(.is-scrolled) { position: relative; background: var(--paper); color: var(--ink); border-bottom: 1px solid var(--line); }

/* Accueil */
.home-hero { position: relative; min-height: min(880px, 100svh); color: var(--white); background: var(--forest); overflow: hidden; }
.home-hero__visual { position: absolute; inset: 0; background-image: url('../images/property-placeholder.svg'); background-position: center; background-size: cover; transform: scale(1.01); }
.home-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,30,27,.86) 0%, rgba(9,30,27,.55) 48%, rgba(9,30,27,.14) 78%), linear-gradient(0deg, rgba(8,26,23,.44), transparent 45%); }
.home-hero__inner { position: relative; display: flex; min-height: min(880px, 100svh); flex-direction: column; justify-content: center; padding-top: 145px; padding-bottom: 164px; }
.home-hero__content { max-width: 760px; }
.home-hero h1 { max-width: 900px; margin-bottom: 25px; color: var(--white); font-size: clamp(3rem, 6.4vw, 6rem); }
.home-hero__content > p { max-width: 660px; margin-bottom: 0; color: rgba(255,255,255,.82); font-size: clamp(1.03rem, 1.5vw, 1.25rem); }
.property-search { position: absolute; right: 20px; bottom: 54px; left: 20px; display: grid; grid-template-columns: 1.35fr 1fr 1fr .8fr auto; align-items: stretch; max-width: var(--container); margin-inline: auto; border-radius: 16px; background: var(--white); color: var(--ink); box-shadow: var(--shadow-lg); overflow: hidden; }
.property-search__field { position: relative; min-width: 0; padding: 17px 22px; border-right: 1px solid var(--line); }
.property-search__field label { display: block; margin-bottom: 2px; color: var(--ink); font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.property-search__field select, .property-search__field input { width: 100%; padding: 2px 0; border: 0; outline: 0; background: transparent; color: var(--ink-soft); font-size: .92rem; }
.property-search__submit { min-width: 155px; border-radius: 0; }
.trust-bar { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-bar__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-bar__grid > div { display: flex; align-items: center; gap: 18px; padding: 26px 36px; border-right: 1px solid var(--line); }
.trust-bar__grid > div:first-child { padding-left: 0; }
.trust-bar__grid > div:last-child { border-right: 0; }
.trust-bar strong { color: var(--forest); font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; white-space: nowrap; }
.trust-bar span { color: var(--ink-soft); font-size: .78rem; line-height: 1.45; }
.section-heading { max-width: 730px; margin-bottom: 50px; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading p { color: var(--ink-soft); }
.section-heading--split { display: flex; max-width: none; align-items: end; justify-content: space-between; gap: 40px; }
.section-heading--split > div { max-width: 720px; }
.section-heading--split h2 { margin-bottom: 0; }
.section-heading--light h2 { color: var(--white); }
.property-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.property-card { border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.property-card__image { position: relative; display: block; aspect-ratio: 1.38; background: #dfe6e1; overflow: hidden; }
.property-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.property-card:hover .property-card__image img { transform: scale(1.045); }
.property-card__badge { position: absolute; top: 16px; left: 16px; padding: 7px 11px; border-radius: 999px; background: rgba(255,253,249,.92); color: var(--forest); font-size: .66rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; backdrop-filter: blur(10px); }
.property-card__body { padding: 24px; }
.property-card__location { display: flex; align-items: center; gap: 6px; margin-bottom: 9px; color: var(--sand); font-size: .74rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.property-card__location .icon { width: 15px; height: 15px; }
.property-card h3 { margin-bottom: 17px; font-size: 1.55rem; }
.property-card h3 a:hover { color: var(--forest-2); }
.property-card__meta { display: flex; flex-wrap: wrap; gap: 12px 17px; padding-bottom: 21px; color: var(--ink-soft); font-size: .77rem; border-bottom: 1px solid var(--line); }
.property-card__meta span { display: flex; align-items: center; gap: 6px; }
.property-card__meta .icon { width: 17px; height: 17px; color: var(--sage); }
.property-card__footer { display: flex; align-items: end; justify-content: space-between; gap: 12px; padding-top: 18px; }
.property-card__footer p { margin: 0; line-height: 1.2; }
.property-card__footer small { display: block; margin-bottom: 4px; color: var(--ink-soft); font-size: .69rem; }
.property-card__footer strong { color: var(--forest); font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; }
.property-card__footer p > span { color: var(--ink-soft); font-size: .72rem; }
.round-link { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--forest); transition: background .2s ease, color .2s ease; }
.round-link .icon { width: 18px; }
.round-link:hover { background: var(--forest); color: var(--white); }
.editor-note, .empty-catalog { padding: 60px; border: 1px dashed var(--sage); border-radius: var(--radius); background: rgba(255,255,255,.62); text-align: center; }
.editor-note h3, .empty-catalog h2 { margin-bottom: 12px; }
.editor-note p, .empty-catalog p { color: var(--ink-soft); }
.experience-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); align-items: center; gap: clamp(60px, 8vw, 120px); }
.experience-collage { position: relative; min-height: 620px; }
.experience-collage__main, .experience-collage__small { position: absolute; background-image: url('../images/property-placeholder.svg'); background-position: center; background-size: cover; box-shadow: var(--shadow-lg); }
.experience-collage__main { inset: 0 15% 9% 0; border-radius: 160px 18px 18px 18px; }
.experience-collage__small { right: 0; bottom: 0; width: 44%; aspect-ratio: 1; border: 9px solid var(--paper); border-radius: 18px 18px 90px 18px; filter: saturate(.75) brightness(.88); }
.experience-collage__badge { position: absolute; top: 55px; right: 3%; display: flex; width: 140px; height: 140px; flex-direction: column; align-items: center; justify-content: center; padding: 14px; border-radius: 50%; background: var(--sand); color: var(--ink); font-size: .67rem; font-weight: 800; line-height: 1.25; text-align: center; text-transform: uppercase; box-shadow: var(--shadow-sm); }
.experience-collage__badge span { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 600; }
.experience-copy h2 { margin-bottom: 24px; }
.experience-copy > p { margin-bottom: 34px; color: var(--ink-soft); font-size: 1.03rem; }
.feature-list { display: grid; gap: 24px; margin: 0; padding: 0; list-style: none; }
.feature-list li { display: flex; align-items: flex-start; gap: 17px; }
.feature-list li > .icon { width: 25px; height: 25px; margin-top: 3px; color: var(--sand); }
.feature-list strong { display: block; margin-bottom: 3px; color: var(--ink); }
.feature-list span { color: var(--ink-soft); font-size: .92rem; }
.destinations-section { overflow: hidden; }
.destination-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.destination-card { position: relative; display: flex; min-height: 230px; flex-direction: column; justify-content: end; padding: 27px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.01)); overflow: hidden; }
.destination-card::before { position: absolute; width: 240px; height: 240px; border-radius: 50%; background: var(--sand); content: ""; filter: blur(0); opacity: .09; transition: transform .35s ease; }
.destination-card--1::before { top: -130px; right: -60px; }
.destination-card--2::before { bottom: -150px; left: -50px; }
.destination-card--3::before { top: -140px; left: 30%; }
.destination-card:hover::before { transform: scale(1.25); }
.destination-card > span { position: relative; margin-bottom: 7px; color: rgba(255,255,255,.6); font-size: .69rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.destination-card strong { position: relative; color: var(--white); font-family: var(--font-serif); font-size: 1.9rem; font-weight: 500; }
.destination-card > .icon { position: absolute; right: 25px; bottom: 27px; color: var(--sand-light); }
.owners-section { background: linear-gradient(180deg, var(--paper) 50%, var(--cream) 50%); }
.owners-card { display: grid; grid-template-columns: 1.15fr .85fr; border-radius: var(--radius-lg); background: var(--forest); color: var(--white); box-shadow: var(--shadow-lg); overflow: hidden; }
.owners-card__content { padding: clamp(46px, 7vw, 86px); }
.owners-card__content h2 { margin-bottom: 22px; color: var(--white); }
.owners-card__content p { max-width: 680px; margin-bottom: 34px; color: rgba(255,255,255,.74); }
.owners-card__numbers { display: grid; grid-template-columns: 1fr 1fr; border-left: 1px solid rgba(255,255,255,.13); }
.owners-card__numbers > div { display: flex; min-height: 190px; flex-direction: column; justify-content: end; padding: 30px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); background: linear-gradient(135deg, transparent, rgba(255,255,255,.04)); }
.owners-card__numbers strong { display: block; margin-bottom: 8px; color: var(--sand-light); font-family: var(--font-serif); font-size: 1.45rem; font-weight: 500; }
.owners-card__numbers span { color: rgba(255,255,255,.63); font-size: .8rem; line-height: 1.5; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 130px); }
.faq-grid .section-heading { margin-bottom: 0; }
.faq-list { border-top: 1px solid #d7ddd8; }
.faq-item { border-bottom: 1px solid #d7ddd8; }
.faq-item button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 24px; padding: 25px 0; border: 0; background: transparent; font-family: var(--font-serif); font-size: 1.22rem; text-align: left; }
.faq-item__plus { color: var(--sand); font-family: var(--font-sans); font-size: 1.6rem; font-weight: 300; transition: transform .25s ease; }
.faq-item__answer { display: grid; grid-template-rows: 0fr; color: var(--ink-soft); transition: grid-template-rows .25s ease; }
.faq-item__answer > p { min-height: 0; margin: 0; overflow: hidden; }
.faq-item.is-open .faq-item__answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-item__answer > p { padding-bottom: 25px; }
.faq-item.is-open .faq-item__plus { transform: rotate(45deg); }
.final-cta { padding: 72px 0; background: var(--forest-2); }
.final-cta__inner { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.final-cta h2 { max-width: 760px; margin: 0; color: var(--white); }

/* Catalogue */
.catalog-hero, .page-hero { padding: 105px 0; background: var(--forest); color: var(--white); }
.catalog-hero h1, .page-hero h1 { max-width: 820px; margin-bottom: 18px; color: var(--white); font-size: clamp(2.8rem, 5vw, 5rem); }
.catalog-hero p, .page-hero p { max-width: 690px; margin-bottom: 0; color: rgba(255,255,255,.72); font-size: 1.05rem; }
.page-hero--compact { padding: 90px 0; }
.catalog-filters { display: grid; grid-template-columns: 1.15fr .7fr .85fr .85fr auto; align-items: end; gap: 15px; margin-top: -150px; margin-bottom: 52px; padding: 24px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-lg); }
.catalog-filters label { display: block; margin: 0 0 6px 3px; color: var(--ink); font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.catalog-filters input, .catalog-filters select { width: 100%; height: 48px; padding: 0 13px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); font-size: .86rem; }
.catalog-summary { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; }
.catalog-summary p { margin: 0; color: var(--ink-soft); font-size: .87rem; }
.catalog-summary p strong { color: var(--ink); }
.catalog-summary a { color: var(--forest); font-size: .75rem; font-weight: 800; text-decoration: underline; }
.property-grid--catalog { grid-template-columns: repeat(3, 1fr); }
.navigation.pagination { margin-top: 50px; }
.nav-links { display: flex; justify-content: center; gap: 7px; }
.nav-links .page-numbers { display: grid; min-width: 42px; height: 42px; place-items: center; padding: 0 9px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); }
.nav-links .current { background: var(--forest); color: var(--white); border-color: var(--forest); }

/* Fiche logement */
.property-single__heading { padding: 52px 0 34px; background: var(--paper); }
.back-link { display: inline-block; margin-bottom: 28px; color: var(--ink-soft); font-size: .78rem; font-weight: 700; }
.property-single__title-row { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.property-single__location { display: flex; align-items: center; gap: 7px; margin-bottom: 7px; color: var(--sand); font-size: .74rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.property-single__location .icon { width: 16px; }
.property-single h1 { margin: 0; font-size: clamp(2.6rem, 5vw, 4.9rem); }
.property-single__price { margin: 0 0 7px; white-space: nowrap; }
.property-single__price small { display: block; color: var(--ink-soft); font-size: .67rem; }
.property-single__price strong { font-family: var(--font-serif); font-size: 2rem; font-weight: 500; }
.property-single__price span { color: var(--ink-soft); font-size: .78rem; }
.property-gallery { display: grid; height: min(610px, 54vw); grid-template-columns: 1.45fr .75fr .75fr; grid-template-rows: 1fr 1fr; gap: 8px; border-radius: var(--radius); overflow: hidden; }
.property-gallery__item { position: relative; display: block; background: #dce6e1; overflow: hidden; }
.property-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.property-gallery__item:hover img { transform: scale(1.025); }
.property-gallery__item--1 { grid-row: 1 / 3; }
.property-gallery--single { grid-template-columns: 1fr; }
.property-gallery__item > span { position: absolute; right: 14px; bottom: 14px; padding: 8px 12px; border-radius: 999px; background: rgba(18,45,41,.84); color: var(--white); font-size: .72rem; font-weight: 800; backdrop-filter: blur(8px); }
.property-content-section { padding-top: 80px; }
.property-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; align-items: start; gap: clamp(60px, 8vw, 110px); }
.property-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-bottom: 55px; padding: 23px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.property-facts > div { display: flex; align-items: center; gap: 11px; padding: 0 18px; border-right: 1px solid var(--line); }
.property-facts > div:first-child { padding-left: 0; }
.property-facts > div:last-child { border-right: 0; }
.property-facts .icon, .property-facts__surface { width: 25px; height: 25px; color: var(--sand); }
.property-facts__surface { display: grid; place-items: center; font-size: .65rem; font-weight: 900; }
.property-facts strong { display: block; font-family: var(--font-serif); font-size: 1.22rem; font-weight: 600; line-height: 1; }
.property-facts span span, .property-facts > div > span:last-child { color: var(--ink-soft); font-size: .7rem; }
.property-description, .property-features { padding-bottom: 50px; margin-bottom: 50px; border-bottom: 1px solid var(--line); }
.property-description h2, .property-features h2, .property-assurance h2 { font-size: 2rem; }
.prose { color: var(--ink-soft); }
.prose h2, .prose h3 { margin-top: 1.65em; color: var(--ink); }
.prose a { color: var(--forest); text-decoration: underline; }
.prose ul, .prose ol { padding-left: 1.25em; }
.property-features ul { display: grid; grid-template-columns: 1fr 1fr; gap: 17px 30px; margin: 28px 0 0; padding: 0; list-style: none; }
.property-features li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-soft); font-size: .9rem; }
.property-features li .icon { width: 18px; color: var(--sand); }
.property-assurance { display: flex; gap: 20px; padding: 28px; border-radius: var(--radius); background: var(--cream); }
.property-assurance > div:first-child { display: grid; width: 50px; height: 50px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--forest); color: var(--sand-light); }
.property-assurance h2 { margin-bottom: 7px; }
.property-assurance p { margin: 0; color: var(--ink-soft); }
.property-booking { position: sticky; top: 125px; }
.booking-placeholder { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.booking-placeholder h2 { font-size: 1.7rem; }

/* Pages et articles */
.article-list { display: grid; gap: 22px; }
.article-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.article-card__meta { margin-bottom: 8px; color: var(--sand); font-size: .73rem; font-weight: 800; text-transform: uppercase; }
.article-card h2 { margin-bottom: 12px; font-size: 2rem; }
.article-card p:last-child { margin-bottom: 0; color: var(--ink-soft); }
.empty-state { display: grid; min-height: 65vh; place-items: center; padding: 100px 0; text-align: center; }
.empty-state__code { display: block; color: var(--sand); font-family: var(--font-serif); font-size: 5rem; }
.empty-state h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.empty-state .button-row { justify-content: center; margin-top: 30px; }

/* Pied de page */
.site-footer { padding-top: 80px; background: #102d29; color: rgba(255,255,255,.68); }
.site-footer__grid { display: grid; grid-template-columns: 1.3fr .65fr .85fr; gap: 80px; padding-bottom: 70px; }
.site-footer .site-wordmark { color: var(--white); }
.site-footer__brand > p { max-width: 420px; margin: 24px 0 0; font-size: .87rem; }
.site-footer h2 { margin-bottom: 22px; color: var(--white); font-family: var(--font-sans); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.site-footer .menu { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.site-footer .menu a, .contact-list a { transition: color .2s ease; }
.site-footer .menu a:hover, .contact-list a:hover { color: var(--white); }
.contact-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.contact-list li { display: flex; align-items: flex-start; gap: 11px; }
.contact-list .icon { width: 18px; height: 18px; margin-top: 3px; color: var(--sand); }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }
.site-footer__bottom p { margin: 0; }
.site-footer__bottom div { display: flex; gap: 22px; }

@media (max-width: 1100px) {
  .site-nav { gap: 16px; }
  .site-nav .menu { gap: 19px; }
  .property-search { grid-template-columns: 1.1fr 1fr 1fr .8fr; }
  .property-search__submit { grid-column: 1 / -1; min-height: 50px; }
  .trust-bar__grid > div { flex-direction: column; align-items: flex-start; gap: 2px; padding-inline: 25px; }
  .property-grid--catalog { grid-template-columns: repeat(2, 1fr); }
  .catalog-filters { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .catalog-filters .button { grid-column: 1 / -1; }
  .property-layout { grid-template-columns: minmax(0, 1fr) 350px; gap: 50px; }
  .property-facts { grid-template-columns: 1fr 1fr; row-gap: 20px; }
  .property-facts > div:nth-child(2) { border-right: 0; }
}

@media (max-width: 959px) {
  .section { padding: 84px 0; }
  .menu-toggle { display: block; }
  .site-header__inner { min-height: 82px; }
  .site-nav { position: fixed; inset: 82px 0 0; display: none; flex-direction: column; align-items: stretch; padding: 36px 20px; background: var(--paper); color: var(--ink); }
  .site-nav.is-open { display: flex; }
  .site-nav .menu { flex-direction: column; align-items: stretch; gap: 5px; }
  .site-nav .menu > .menu-item { width: 100%; }
  .site-nav .menu a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; }
  .site-nav .menu-item-has-children > a { padding-right: 54px; }
  .site-nav .menu-item-has-children > a::before { display: none; }
  .submenu-toggle {
    position: absolute;
    z-index: 2;
    top: 8px;
    right: 0;
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: currentColor;
  }
  .submenu-toggle__icon { font-size: 1.15rem; line-height: 1; transition: transform .18s ease; }
  .is-submenu-open > .submenu-toggle .submenu-toggle__icon { transform: rotate(180deg); }
  .site-nav .sub-menu,
  .site-nav .menu-item-has-children:hover > .sub-menu,
  .site-nav .menu-item-has-children:focus-within > .sub-menu {
    position: static;
    display: none;
    width: 100%;
    max-height: none;
    gap: 2px;
    padding: 7px 0 10px 17px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }
  .site-nav .menu-item-has-children.is-submenu-open > .sub-menu { display: grid; }
  .site-nav .menu .sub-menu a {
    padding: 9px 12px;
    border: 0;
    border-radius: 8px;
    color: var(--ink-soft);
    font-family: var(--font-sans);
    font-size: .88rem;
    font-weight: 700;
  }
  .site-nav .sub-menu .sanctalia-menu-all { border-color: var(--line); }
  .site-nav .button { margin-top: 15px; }
  .home-hero__inner { padding-top: 122px; padding-bottom: 270px; }
  .property-search { grid-template-columns: 1fr 1fr; }
  .property-search__field:nth-child(2) { border-right: 0; }
  .property-search__field:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .property-search__submit { grid-column: 1 / -1; }
  .property-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-collage { min-height: 570px; }
  .owners-card { grid-template-columns: 1fr; }
  .owners-card__numbers { border-top: 1px solid rgba(255,255,255,.13); border-left: 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .property-layout { grid-template-columns: 1fr; }
  .property-booking { position: static; }
  .property-gallery { height: 62vw; grid-template-columns: 1.3fr .7fr; }
  .property-gallery__item--4, .property-gallery__item--5 { display: none; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .site-wordmark strong { font-size: .9rem; }
  .site-wordmark__mark { width: 38px; height: 38px; }
  .custom-logo { max-width: 175px; max-height: 52px; }
  .home-hero { min-height: 890px; }
  .home-hero__inner { min-height: 890px; padding-bottom: 390px; }
  .home-hero h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .property-search { right: 14px; bottom: 25px; left: 14px; grid-template-columns: 1fr 1fr; }
  .property-search__field { padding: 14px; }
  .property-search__field:first-child { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid var(--line); }
  .property-search__field:nth-child(2) { border-right: 1px solid var(--line); }
  .property-search__field:nth-child(3) { border-right: 0; }
  .property-search__field:nth-child(4) { grid-column: 1 / -1; border-top: 1px solid var(--line); border-right: 0; }
  .trust-bar__grid { grid-template-columns: 1fr; padding-block: 15px; }
  .trust-bar__grid > div, .trust-bar__grid > div:first-child { padding: 15px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-bar__grid > div:last-child { border-bottom: 0; }
  .section-heading--split { align-items: flex-start; flex-direction: column; }
  .property-grid, .property-grid--catalog { grid-template-columns: 1fr; }
  .experience-collage { min-height: 440px; }
  .experience-collage__main { right: 9%; border-radius: 100px 15px 15px 15px; }
  .experience-collage__badge { top: 25px; width: 105px; height: 105px; }
  .experience-collage__badge span { font-size: 1.8rem; }
  .destination-grid { grid-template-columns: 1fr; }
  .destination-card { min-height: 180px; }
  .owners-section { padding-inline: 0; }
  .owners-card { width: calc(100% - 28px); }
  .owners-card__content { padding: 40px 25px; }
  .owners-card__numbers { grid-template-columns: 1fr; }
  .owners-card__numbers > div { min-height: 140px; }
  .owners-card__numbers > div:last-child { border-bottom: 0; }
  .final-cta__inner { align-items: flex-start; flex-direction: column; }
  .catalog-hero { padding: 72px 0 145px; }
  .catalog-filters { grid-template-columns: 1fr 1fr; margin-top: -180px; padding: 18px; }
  .catalog-filters > div:first-child, .catalog-filters .button { grid-column: 1 / -1; }
  .property-single__heading { padding-top: 36px; }
  .property-single__title-row { align-items: flex-start; flex-direction: column; gap: 20px; }
  .property-gallery { width: 100%; height: 88vw; grid-template-columns: 1fr; grid-template-rows: 1fr; border-radius: 0; }
  .property-gallery__item:not(:first-child) { display: none; }
  .property-facts { grid-template-columns: 1fr 1fr; }
  .property-facts > div { padding: 0 12px; }
  .property-features ul { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__brand { grid-column: auto; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ==========================================================================
   Sanctalia 2.0 — identité premium issue de la plaquette deux offres
   ========================================================================== */
:root {
  --v2-night: #080d15;
  --v2-navy: #111c2d;
  --v2-navy-soft: #17263b;
  --v2-ivory: #f4efe5;
  --v2-ivory-light: #fbf8f1;
  --v2-gold: #e1b561;
  --v2-gold-light: #f1d494;
  --v2-text: #10151c;
  --v2-muted: #666b72;
  --v2-line: rgba(12, 20, 31, .16);
  --v2-serif: Georgia, "Times New Roman", serif;
}

html { scroll-padding-top: 110px; }

.site-wordmark__symbol {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  object-fit: contain;
}
.site-wordmark strong {
  color: currentColor;
  font-family: var(--v2-serif);
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.035em;
  text-transform: none;
}
.site-wordmark small {
  margin-top: 7px;
  color: var(--v2-gold);
  opacity: 1;
  font-size: .48rem;
  letter-spacing: .23em;
}

.home .site-header {
  padding: 24px clamp(20px, 4vw, 62px);
}
.home .site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: transparent;
  color: #fff;
  box-shadow: none;
}
.home .site-header__inner {
  width: min(100%, 1440px);
  min-height: 84px;
  padding: 12px 15px 12px 22px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 25px;
  background: rgba(8,13,21,.92);
  box-shadow: 0 20px 70px rgba(0,0,0,.2);
  backdrop-filter: blur(18px);
}
.home .site-nav .menu a {
  color: rgba(255,255,255,.82);
  font-size: .76rem;
  letter-spacing: .01em;
}
.home .site-nav .menu a:hover { color: var(--v2-gold-light); }
.home .site-nav .menu .sub-menu a { color: var(--ink); }
.home .site-nav .menu .sub-menu a:hover,
.home .site-nav .menu .sub-menu a:focus-visible,
.home .site-nav .menu .sub-menu .current-menu-item > a { color: var(--forest); }
.home .site-nav .button {
  min-height: 50px;
  padding: 12px 20px;
  border: 0;
  border-radius: 16px;
  background: var(--v2-gold);
  color: var(--v2-night);
  font-size: .7rem;
  letter-spacing: .01em;
  text-transform: none;
}

.sanctalia-home-v2 {
  overflow: hidden;
  background: var(--v2-ivory);
  color: var(--v2-text);
}
.sanctalia-home-v2 h1,
.sanctalia-home-v2 h2,
.sanctalia-home-v2 h3 {
  font-family: var(--v2-serif);
  font-weight: 500;
  letter-spacing: -.045em;
}
.v2-section {
  position: relative;
  padding: 120px clamp(24px, 5vw, 76px);
}
.v2-eyebrow {
  margin: 0 0 22px;
  color: var(--v2-gold-light);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
}
.v2-eyebrow--dark { color: #8e6a28; }
.v2-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.v2-button:hover { transform: translateY(-2px); }
.v2-button--gold { background: var(--v2-gold); color: var(--v2-night); }
.v2-button--gold:hover { background: var(--v2-gold-light); }
.v2-button--ghost { border-color: rgba(255,255,255,.28); color: #fff; }
.v2-button--ghost:hover { border-color: var(--v2-gold); color: var(--v2-gold-light); }
.v2-button--dark { background: var(--v2-night); color: #fff; }
.v2-button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.v2-text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--v2-text);
  font-size: .78rem;
  font-weight: 800;
}
.v2-text-link--light { color: var(--v2-gold-light); }
.v2-section-number {
  position: absolute;
  top: 50px;
  right: clamp(24px,5vw,76px);
  color: rgba(16,21,28,.12);
  font-family: var(--v2-serif);
  font-size: 5rem;
}
.v2-section-number--light { color: rgba(255,255,255,.1); }

.v2-hero {
  position: relative;
  display: grid;
  min-height: 920px;
  grid-template-columns: minmax(0,.92fr) minmax(500px,1.08fr);
  gap: clamp(30px,4vw,70px);
  padding: 160px clamp(24px,5vw,76px) 42px;
  background: var(--v2-night);
  color: #fff;
}
.v2-hero__rings {
  position: absolute;
  top: 55px;
  left: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(225,181,97,.14);
  border-radius: 50%;
}
.v2-hero__rings::after {
  position: absolute;
  inset: 64px;
  border: 1px solid rgba(225,181,97,.13);
  border-radius: 50%;
  content: "";
}
.v2-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 720px;
  flex-direction: column;
  justify-content: center;
  padding: 90px 0 48px;
}
.v2-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(4rem,6.6vw,7.4rem);
  line-height: .85;
}
.v2-hero h1 em {
  color: var(--v2-gold-light);
  font-weight: 400;
}
.v2-hero__lead {
  max-width: 650px;
  margin: 38px 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(1rem,1.45vw,1.3rem);
  line-height: 1.7;
}
.v2-hero__proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 62px;
}
.v2-hero__proof > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(225,181,97,.5);
  border-radius: 50%;
  color: var(--v2-gold-light);
  font-family: var(--v2-serif);
  font-size: 1.25rem;
  font-style: italic;
}
.v2-hero__proof p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: .72rem;
  line-height: 1.6;
}
.v2-hero__proof strong { color: #fff; font-size: .84rem; }
.v2-hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  border-radius: 38px;
  background: var(--v2-navy);
}
.v2-hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(5,8,13,.04),rgba(5,8,13,.42));
  content: "";
}
.v2-hero__visual > img { width: 100%; height: 100%; object-fit: cover; }
.v2-hero__visual-label {
  position: absolute;
  z-index: 2;
  top: 26px;
  left: 28px;
  margin: 0;
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.v2-hero__visual-label span { margin: 0 8px; color: var(--v2-gold); }
.v2-hero__visual-card {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(8,13,21,.78);
  backdrop-filter: blur(14px);
}
.v2-hero__visual-card span {
  color: var(--v2-gold-light);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.v2-hero__visual-card strong {
  max-width: 330px;
  color: #fff;
  font-family: var(--v2-serif);
  font-size: clamp(1.15rem,1.7vw,1.65rem);
  font-weight: 500;
  text-align: right;
}

.v2-marquee {
  overflow: hidden;
  padding: 23px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: var(--v2-navy);
  color: #fff;
}
.v2-marquee__track {
  display: flex;
  width: max-content;
  animation: v2-marquee 38s linear infinite;
}
.v2-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
  color: rgba(255,255,255,.72);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
}
.v2-marquee i { color: var(--v2-gold); font-style: normal; }
@keyframes v2-marquee { to { transform: translateX(-50%); } }

.v2-intro {
  display: grid;
  grid-template-columns: minmax(0,1.45fr) minmax(290px,.55fr);
  gap: clamp(50px,8vw,150px);
  padding-top: 150px;
  padding-bottom: 100px;
}
.v2-intro h2,
.v2-offers h2,
.v2-method h2,
.v2-properties h2,
.v2-faq h2,
.v2-estimate h2 {
  margin: 0;
  line-height: .98;
}
.v2-intro h2 {
  max-width: 940px;
  font-size: clamp(3rem,6vw,5.9rem);
}
.v2-intro h2 em { color: #9a702f; font-weight: 400; }
.v2-intro__copy { align-self: end; max-width: 460px; }
.v2-intro__copy p {
  margin: 0;
  color: #565b62;
  font-size: 1.04rem;
  line-height: 1.8;
}

.v2-benefits {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  padding-top: 0;
}
.v2-benefit {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  border: 1px solid var(--v2-line);
  border-radius: 30px;
  background: rgba(255,253,248,.5);
}
.v2-benefit--wide {
  grid-row: span 2;
  min-height: 718px;
  background: radial-gradient(circle at 100% 0%,rgba(225,181,97,.22),transparent 35%),var(--v2-night);
  color: #fff;
}
.v2-benefit > span { color: var(--v2-gold); font-family: var(--v2-serif); }
.v2-benefit h3 {
  max-width: 530px;
  margin: 0 0 20px;
  color: inherit;
  font-size: clamp(2.1rem,4.2vw,4.25rem);
  line-height: .98;
}
.v2-benefit p {
  max-width: 520px;
  margin: 0;
  color: #656a71;
  line-height: 1.75;
}
.v2-benefit--wide p { color: rgba(255,255,255,.58); font-size: 1.1rem; }
.v2-benefit--image { position: relative; overflow: hidden; padding: 0; border: 0; color: #fff; }
.v2-benefit--image > img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.v2-benefit--image::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg,transparent 30%,rgba(6,10,16,.78));
  content: "";
}
.v2-benefit--image > div {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
}
.v2-benefit--image div > span {
  margin-bottom: 9px;
  color: var(--v2-gold-light);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.v2-benefit--image strong {
  max-width: 470px;
  font-family: var(--v2-serif);
  font-size: clamp(1.8rem,3.1vw,2.9rem);
  font-weight: 500;
  line-height: 1;
}

.v2-offers { background: var(--v2-night); color: #fff; }
.v2-offers__heading,
.v2-properties__heading {
  display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(260px,.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 70px;
}
.v2-offers h2,
.v2-properties h2 { color: inherit; font-size: clamp(3.1rem,6vw,5.75rem); }
.v2-offers__heading > p {
  margin: 0;
  color: rgba(255,255,255,.56);
  line-height: 1.75;
}
.v2-offers__grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 20px;
}
.v2-offer-card {
  position: relative;
  display: flex;
  min-height: 780px;
  flex-direction: column;
  padding: clamp(30px,4vw,58px);
  border-radius: 34px;
  background: var(--v2-ivory-light);
  color: var(--v2-text);
}
.v2-offer-card--prestige {
  border: 1px solid rgba(225,181,97,.75);
  background: var(--v2-navy);
  color: #fff;
}
.v2-offer-card__badge {
  position: absolute;
  top: 26px;
  right: 26px;
  padding: 10px 15px;
  border: 1px solid rgba(225,181,97,.42);
  border-radius: 999px;
  color: var(--v2-gold-light);
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.v2-offer-card__top > span {
  color: #8e6a28;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.v2-offer-card--prestige .v2-offer-card__top > span { color: var(--v2-gold-light); }
.v2-offer-card__top h3 {
  margin: 24px 0 8px;
  color: inherit;
  font-size: clamp(2.4rem,4vw,3.75rem);
}
.v2-offer-card__top > strong {
  display: block;
  color: #a57b33;
  font-size: clamp(4rem,7vw,6.25rem);
  letter-spacing: -.055em;
  line-height: .9;
}
.v2-offer-card--prestige .v2-offer-card__top > strong { color: var(--v2-gold-light); }
.v2-offer-card__top > strong small { font-size: 1.3rem; letter-spacing: 0; }
.v2-offer-card__top > em {
  display: block;
  margin-top: 24px;
  color: #676b71;
  font-family: var(--v2-serif);
  font-size: 1.1rem;
}
.v2-offer-card--prestige .v2-offer-card__top > em { color: rgba(255,255,255,.64); }
.v2-offer-card ul {
  display: grid;
  gap: 15px;
  margin: 38px 0;
  padding: 30px 0;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  list-style: none;
}
.v2-offer-card--prestige ul { border-color: rgba(255,255,255,.12); }
.v2-offer-card li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: #4f555d;
  font-size: .86rem;
}
.v2-offer-card--prestige li { color: rgba(255,255,255,.72); }
.v2-offer-card li span {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(225,181,97,.2);
  color: #8d641f;
  font-size: .65rem;
}
.v2-launch-pack {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding: 22px 24px;
  border-radius: 22px;
  background: var(--v2-gold);
  color: var(--v2-night);
}
.v2-launch-pack--dark {
  border: 1px solid rgba(225,181,97,.5);
  background: rgba(225,181,97,.09);
  color: #fff;
}
.v2-launch-pack span { font-size: .56rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.v2-launch-pack strong { margin: 6px 0; font-size: 1.65rem; }
.v2-launch-pack small { opacity: .72; font-size: .62rem; }
.v2-offer-card > .v2-button { width: 100%; margin-top: 14px; }
.v2-offers__legal {
  max-width: 870px;
  margin: 28px auto 0;
  color: rgba(255,255,255,.36);
  font-size: .62rem;
  line-height: 1.7;
  text-align: center;
}

.v2-method {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(440px,1.1fr);
  gap: clamp(50px,7vw,120px);
  background: var(--v2-navy);
  color: #fff;
}
.v2-method__visual {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  border-radius: 34px;
}
.v2-method__visual > img { width: 100%; height: 100%; object-fit: cover; }
.v2-method__seal {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border: 1px solid rgba(225,181,97,.5);
  border-radius: 50%;
  background: rgba(8,13,21,.82);
  backdrop-filter: blur(14px);
}
.v2-method__seal img { width: 50px; height: 50px; }
.v2-method__seal span {
  margin-top: -24px;
  color: var(--v2-gold-light);
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.v2-method__content { align-self: center; }
.v2-method h2 { max-width: 740px; color: #fff; font-size: clamp(3.1rem,5.5vw,5.25rem); }
.v2-steps { display: grid; margin-top: 50px; }
.v2-steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.v2-steps article:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.v2-steps article > span { color: var(--v2-gold); font-family: var(--v2-serif); }
.v2-steps h3 { margin: 0 0 8px; color: #fff; font-size: 1.7rem; }
.v2-steps p { margin: 0; color: rgba(255,255,255,.55); font-size: .86rem; line-height: 1.7; }
.v2-method__signature {
  margin: 28px 0 0;
  color: var(--v2-gold-light);
  font-family: var(--v2-serif);
  font-size: 1.18rem;
  font-style: italic;
}

.v2-properties { background: var(--v2-ivory-light); }
.v2-properties__heading .v2-text-link { justify-self: end; }
.v2-property-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.v2-property-grid .property-card { border: 1px solid var(--v2-line); border-radius: 28px; box-shadow: none; }
.v2-property-grid .property-card__image { aspect-ratio: 1.55; }
.v2-property-grid .property-card__body { padding: 28px; }
.v2-property-grid .property-card h3 { font-size: 2rem; }
.v2-property-grid .property-card__location { color: #9a702f; }
.v2-property-grid .round-link:hover { background: var(--v2-night); }
.v2-empty-properties {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 32px;
}
.v2-empty-properties::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(8,13,21,.92),rgba(8,13,21,.24));
  content: "";
}
.v2-empty-properties > img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.v2-empty-properties > div {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%,660px);
  min-height: 620px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px,6vw,80px);
  color: #fff;
}
.v2-empty-properties h3 { margin: 0 0 18px; color: #fff; font-size: clamp(2.5rem,5vw,4.5rem); line-height: .96; }
.v2-empty-properties p:not(.v2-eyebrow) { color: rgba(255,255,255,.62); }
.v2-empty-properties .v2-button { align-self: flex-start; margin-top: 22px; }

.v2-faq {
  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(480px,1.18fr);
  gap: clamp(60px,9vw,170px);
  background: var(--v2-night);
  color: #fff;
}
.v2-faq h2 { color: #fff; font-size: clamp(3rem,5.5vw,5.1rem); }
.v2-faq__list { border-top: 1px solid rgba(255,255,255,.14); }
.v2-faq-item { border-bottom: 1px solid rgba(255,255,255,.14); }
.v2-faq-item > button {
  display: flex;
  width: 100%;
  min-height: 105px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: var(--v2-serif);
  font-size: clamp(1.25rem,2vw,1.8rem);
  text-align: left;
}
.v2-faq-item > button i {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--v2-gold);
  font-family: var(--font-sans);
  font-style: normal;
}
.v2-faq-item .faq-item__answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.v2-faq-item .faq-item__answer p { margin: 0; padding: 0 70px 30px 0; color: rgba(255,255,255,.58); }
.v2-faq-item.is-open .faq-item__answer { max-height: 260px; }

.v2-estimate {
  display: grid;
  grid-template-columns: minmax(320px,.75fr) minmax(540px,1.25fr);
  gap: clamp(60px,10vw,180px);
  background: var(--v2-gold);
}
.v2-estimate h2 { font-size: clamp(3.4rem,6.5vw,6rem); }
.v2-estimate__intro > p:not(.v2-eyebrow) {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(8,13,21,.66);
}
.v2-estimate__promise { display: flex; align-items: center; gap: 18px; margin-top: 45px; }
.v2-estimate__promise > span {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(8,13,21,.35);
  border-radius: 50%;
  font-family: var(--v2-serif);
  font-size: 1.3rem;
}
.v2-estimate__promise p { display: flex; flex-direction: column; margin: 0; color: rgba(8,13,21,.56); font-size: .74rem; }
.v2-estimate__promise strong { color: var(--v2-night); font-size: .86rem; }
.v2-estimate__form {
  padding: clamp(28px,4vw,50px);
  border-radius: 30px;
  background: var(--v2-ivory-light);
}
.v2-estimate__form .sanctalia-contact-wrap { max-width: none; }
.v2-estimate__form .sanctalia-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.v2-estimate__form .sanctalia-submit { background: var(--v2-night); }

.site-footer {
  background: var(--v2-night);
  color: rgba(255,255,255,.62);
}
.site-footer .site-wordmark strong { color: #fff; }
.site-footer .site-wordmark__symbol { width: 58px; height: 58px; }
.site-footer h2 { color: var(--v2-gold-light); }
.site-footer .contact-list .icon { color: var(--v2-gold); }

@media (max-width: 1120px) {
  .home .site-nav .menu { gap: 17px; }
  .home .site-nav .menu a { font-size: .66rem; }
  .v2-hero { grid-template-columns: 1fr .92fr; }
}

@media (max-width: 959px) {
  .v2-section { padding: 88px 24px; }
  .home .site-header { padding: 14px; }
  .home .site-header__inner { min-height: 74px; padding: 9px 12px 9px 16px; border-radius: 20px; }
  .home .site-nav {
    position: fixed;
    inset: 96px 14px auto;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    background: rgba(8,13,21,.98);
    color: #fff;
    box-shadow: 0 28px 70px rgba(0,0,0,.35);
  }
  .home .site-nav .menu a { color: #fff; border-color: rgba(255,255,255,.1); font-family: var(--font-sans); font-size: .9rem; }
  .home .site-nav .submenu-toggle { border-color: rgba(255,255,255,.18); }
  .home .site-nav .sub-menu,
  .home .site-nav .menu-item-has-children:hover > .sub-menu,
  .home .site-nav .menu-item-has-children:focus-within > .sub-menu { border-color: rgba(255,255,255,.1); }
  .home .site-nav .menu .sub-menu a { color: rgba(255,255,255,.72); }
  .home .site-nav .menu .sub-menu a:hover,
  .home .site-nav .menu .sub-menu a:focus-visible,
  .home .site-nav .menu .sub-menu .current-menu-item > a { background: rgba(255,255,255,.08); color: #fff; }
  .home .menu-toggle { color: #fff; }
  .v2-hero { min-height: auto; grid-template-columns: 1fr; padding: 140px 20px 20px; }
  .v2-hero__content { max-width: none; padding: 52px 5px 35px; }
  .v2-hero__visual { min-height: 650px; }
  .v2-intro,
  .v2-offers__heading,
  .v2-properties__heading,
  .v2-method,
  .v2-faq,
  .v2-estimate { grid-template-columns: 1fr; }
  .v2-section-number { top: 25px; font-size: 3.6rem; }
  .v2-intro { gap: 38px; padding-top: 105px; }
  .v2-benefits { grid-template-columns: 1fr; }
  .v2-benefit--wide { grid-row: auto; min-height: 520px; }
  .v2-offers__heading,
  .v2-properties__heading { gap: 28px; margin-bottom: 46px; }
  .v2-offers__grid,
  .v2-property-grid { grid-template-columns: 1fr; }
  .v2-method { gap: 48px; }
  .v2-method__visual { min-height: 670px; }
  .v2-faq { gap: 48px; }
  .v2-estimate { gap: 50px; }
}

@media (max-width: 680px) {
  .site-wordmark__symbol { width: 41px; height: 41px; }
  .site-wordmark strong { font-size: 1.3rem; }
  .site-wordmark small { font-size: .38rem; }
  .v2-hero h1 { font-size: clamp(3.1rem,16vw,4.6rem); line-height: .9; }
  .v2-hero__lead { font-size: .95rem; }
  .v2-button-row { align-items: stretch; flex-direction: column; }
  .v2-hero__visual { min-height: 520px; border-radius: 26px; }
  .v2-hero__visual-card { align-items: flex-start; flex-direction: column; }
  .v2-hero__visual-card strong { text-align: left; }
  .v2-intro h2,
  .v2-offers h2,
  .v2-method h2,
  .v2-properties h2,
  .v2-faq h2,
  .v2-estimate h2 { font-size: 2.75rem; }
  .v2-benefit { min-height: 330px; padding: 28px; }
  .v2-benefit--wide { min-height: 440px; }
  .v2-benefit h3 { font-size: 2.6rem; }
  .v2-offer-card { min-height: 0; padding: 30px 24px; }
  .v2-offer-card__badge { position: static; width: fit-content; margin-bottom: 26px; }
  .v2-offer-card__top > strong { font-size: 4.6rem; }
  .v2-method__visual { min-height: 510px; }
  .v2-method__seal { width: 120px; height: 120px; }
  .v2-properties__heading .v2-text-link { justify-self: start; }
  .v2-property-grid .property-card__image { aspect-ratio: 1.1; }
  .v2-empty-properties,
  .v2-empty-properties > div { min-height: 520px; }
  .v2-faq-item > button { min-height: 86px; font-size: 1.2rem; }
  .v2-faq-item .faq-item__answer p { padding-right: 15px; }
}
