/* Compléments au style existant : tunnel de réservation, confirmation, liste des maisons. */

/* Logo dans l'en-tête : on agrandit la barre pour lui donner de la présence, et on
   ajuste la hauteur du hero en conséquence pour ne rien décaler. */
.site-header {
    height: 132px;
}

.hero {
    height: calc(100vh - 132px);
}

/* Hero : bouton principal + lien secondaire « Découvrir la maison » empilés (utile surtout
   sur mobile, où le menu est replié). Le lien reste discret pour garder la réservation en avant. */
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font: 600 13px var(--sans);
    letter-spacing: .03em;
    border-bottom: 1px solid rgba(255, 255, 255, .55);
    padding-bottom: 3px;
}

.hero-link:hover {
    border-bottom-color: #fff;
}

.hero-link span {
    transition: transform .2s ease;
}

.hero-link:hover span {
    transform: translateX(3px);
}

/* Pied de page : même présentation qu'avant (signature sur une ligne, puis les trois liens
   côte à côte), simplement un peu agrandie. La signature reste garantie sur UNE seule ligne
   sur smartphone (taille responsive à la largeur de l'écran). */
footer {
    font-size: 12px;
}

@media (max-width: 900px) {
    footer {
        font-size: 13px;
    }

    footer > p {
        font-size: clamp(13px, 3.6vw, 15px);
        white-space: nowrap;
    }

    /* Les trois liens restent en ligne, un peu plus grands ; ils ne se replient (par bloc
       entier) que si l'écran est vraiment trop étroit pour les tenir tous. */
    footer > div {
        flex-wrap: wrap;
        gap: 10px 22px;
        font-size: 13px;
    }
}

.brand-logo {
    width: auto;
    height: 108px;
    object-fit: contain;
    flex: 0 0 auto;
}

/* Nom de la maison et sous-titre à côté du logo : nettement plus lisibles. */
.site-header .brand span {
    font-size: 27px;
    line-height: 1.1;
}

.site-header .brand small {
    font-size: 12px;
}

/* Sur mobile aussi le logo doit avoir de la présence (c'est là qu'on le voit le plus). */
@media (max-width: 900px) {
    .site-header {
        height: 108px;
    }

    .hero {
        height: calc(100vh - 108px);
    }

    .brand-logo {
        width: auto;
        height: 84px;
    }

    .site-header .brand span {
        font-size: 22px;
    }

    .site-header .brand small {
        font-size: 11px;
    }
}

/* Les deux liens carte / itinéraire sous l'adresse, espacés proprement. */
.map-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-top: 6px;
}

/* Bouton « Écrire sur WhatsApp » sur la page Contact : vert de la marque WhatsApp,
   reconnaissable, identique dans les deux thèmes. */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    background: #25d366;
    color: #fff;
    padding: 10px 18px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    transition: background .15s ease;
}

.whatsapp-link:hover {
    background: #1da851;
    color: #fff;
}

.whatsapp-link svg {
    flex-shrink: 0;
}

/* Fond neutre du hero tant qu'aucune image n'a été choisie pour la maison. */
.hero-media-empty {
    background: linear-gradient(135deg, #2b4b3a, #17251f);
}

/* Galerie de photos alimentée depuis le back-office. */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 0;
}

.photo-gallery figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 4px;
}

.photo-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
    display: block;
}

/* La première photo occupe toute la largeur, en bandeau. */
.photo-gallery-lead {
    grid-column: 1 / -1;
}

.photo-gallery-lead img {
    aspect-ratio: 16 / 7;
}

.photo-gallery figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 18px 12px;
    color: #fff;
    font-size: 13px;
    background: linear-gradient(transparent, rgba(15, 26, 20, .72));
}

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

/* --- Le carnet (articles) --- */
.articles-page,
.article-single {
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(48px, 7vw, 100px) clamp(20px, 6vw, 60px);
}

.articles-empty {
    text-align: center;
    color: #6a736d;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 46px;
}

.article-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(28, 43, 35, .1);
}

.article-card img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.article-card-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.article-card h3 {
    font-family: var(--serif);
    font-size: 22px;
    margin: 0;
}

.article-card p {
    margin: 0;
    color: #6a736d;
    font-size: 14px;
    flex: 1;
}

.article-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--terra);
}

.article-pagination {
    margin-top: 46px;
    display: flex;
    justify-content: center;
}

/* Page d'un article */
.article-back {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--terra);
}

.article-header h1 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -.03em;
    margin: 0 0 12px;
}

.article-header time {
    color: #8a918c;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.article-cover {
    margin: 34px 0;
}

.article-cover img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 6px;
}

.article-body {
    font-size: 17px;
    line-height: 1.75;
    color: #2c3831;
}

.article-body h2 {
    font-family: var(--serif);
    font-size: 30px;
    margin: 42px 0 14px;
}

.article-body h3 {
    font-family: var(--serif);
    font-size: 23px;
    margin: 32px 0 10px;
}

.article-body p {
    margin: 0 0 20px;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 22px 0;
}

.article-body blockquote {
    margin: 26px 0;
    padding-left: 20px;
    border-left: 3px solid var(--terra);
    font-style: italic;
    color: #55605a;
}

.article-body a {
    color: var(--terra);
    text-decoration: underline;
}

.article-cta {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
    text-align: center;
}

/* Le pot de miel doit rester invisible à l'œil mais atteignable par un robot :
   display:none le rendrait suspect et certains robots l'ignoreraient. */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.quote-error {
    margin: 0 0 18px;
    padding: 12px 14px;
    background: #fae8e4;
    color: #8a3428;
    font-size: 13px;
}

.quote-error[hidden] {
    display: none;
}

/* Un bouton désactivé (ex. consentement caution non coché) doit se voir comme tel. */
.button:disabled,
.button[disabled] {
    opacity: .45;
    cursor: not-allowed;
    box-shadow: none;
}

/* --- Fenêtre modale de réservation --- */
.booking-open {
    margin-top: 24px;
}

.booking-modal {
    width: min(560px, 100%);
    max-height: 92vh;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: #fff;
    color: inherit;
    box-shadow: 0 30px 80px rgba(20, 33, 26, .28);
    overflow: visible;
}

.booking-modal::backdrop {
    background: rgba(17, 26, 20, .55);
    backdrop-filter: blur(2px);
}

/* Le formulaire porte le défilement quand le contenu dépasse la hauteur d'écran. */
.booking-modal .booking-form {
    display: block;
    max-height: 92vh;
    overflow-y: auto;
    padding: clamp(24px, 4vw, 40px);
    margin: 0;
}

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

.booking-modal-head h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(24px, 3.4vw, 32px);
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 4px 0 0;
}

.booking-close {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    font-size: 22px;
    line-height: 1;
    color: #55605a;
    cursor: pointer;
    transition: background .15s, color .15s;
}

.booking-close:hover {
    background: var(--cream, #f3ede3);
    color: #1c2b23;
}

.booking-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

/* Les deux boutons partagent exactement la même forme et la même largeur : on neutralise
   le min-width et le justify-content « space-between » du bouton générique du site. */
.booking-modal-actions .button {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    gap: 0;
    justify-content: center;
    text-align: center;
    padding: 15px 18px;
}

/* Bouton secondaire « Annuler » : discret, sans fond. */
.button.ghost {
    background: transparent;
    color: #55605a;
    border: 1px solid var(--line);
}

.button.ghost:hover {
    background: var(--cream, #f3ede3);
    color: #1c2b23;
}

@media (max-width: 480px) {
    .booking-modal-actions {
        flex-direction: column-reverse;
    }
}

/* Calendrier flatpickr : détaché de la fiche par un en-tête coloré (mocha) + une ombre
   douce. Corps blanc, bandeau du mois en couleur pour bien le distinguer du formulaire. */
.booking-form .flatpickr-calendar.static {
    margin: 8px auto 6px;
    border: 1px solid #e2dccf;
    border-radius: 9px;
    box-shadow: 0 7px 20px rgba(30, 40, 30, .13);
    overflow: hidden;
}

/* En-tête (mois + flèches de navigation) : bandeau mocha, texte et flèches en blanc. */
.booking-form .flatpickr-months {
    background: #916f54;
    border-radius: 9px 9px 0 0;
}

.booking-form .flatpickr-current-month,
.booking-form .flatpickr-current-month .cur-month,
.booking-form .flatpickr-current-month input.cur-year,
.booking-form .flatpickr-monthDropdown-months {
    color: #fff;
    background: transparent;
}

/* Le menu déroulant du mois s'ouvre sur fond blanc natif : texte foncé pour rester lisible. */
.booking-form .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
    color: #333;
    background: #fff;
}

.booking-form .flatpickr-prev-month svg,
.booking-form .flatpickr-next-month svg {
    fill: #fff;
}

.booking-form .flatpickr-prev-month:hover svg,
.booking-form .flatpickr-next-month:hover svg {
    fill: rgba(255, 255, 255, .65);
}

/* Petites flèches de l'année en blanc translucide (sinon invisibles sur le mocha). */
.booking-form .numInputWrapper span.arrowUp::after {
    border-bottom-color: rgba(255, 255, 255, .7);
}
.booking-form .numInputWrapper span.arrowDown::after {
    border-top-color: rgba(255, 255, 255, .7);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: var(--terra);
    border-color: var(--terra);
}

.flatpickr-day.inRange {
    background: #f3ede3;
    border-color: #f3ede3;
    box-shadow: -5px 0 0 #f3ede3, 5px 0 0 #f3ede3;
}

/* Dates déjà réservées : clairement grisées et barrées. */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: #c9cdc7;
    text-decoration: line-through;
}

/* Champ en erreur : on signale précisément où corriger. */
.booking-form label.has-error,
.consent.has-error {
    color: #a5281c;
}

.booking-form label.has-error input,
.booking-form label.has-error select,
.booking-form label.has-error textarea,
.booking-form .date-range.has-error {
    border-color: #c0392b;
}

.field-error {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.4;
    color: #c0392b;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

/* Conditions d'annulation (barème détaillé) affichées avant le paiement. */
.cancellation-terms {
    margin: 4px 0 16px;
    padding: 12px 14px;
    background: #f3ede3;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.5;
    color: #6a5a44;
}

.cancellation-terms strong {
    display: block;
    color: #4a3b28;
    margin-bottom: 6px;
}

.cancellation-terms ul {
    margin: 0;
    padding-left: 18px;
}

.cancellation-terms li {
    margin-bottom: 3px;
}

.cancellation-terms .modif-note {
    display: block;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e3dccb;
    font-style: italic;
}

/* Case de consentement pour la caution (paiement en ligne). */
.consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 6px 0 18px;
    font-size: 12px;
    line-height: 1.5;
    color: #55605a;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

/* L'attribut `hidden` doit l'emporter sur `display:flex` (ex. caution masquée en virement). */
.consent[hidden] {
    display: none;
}

.consent input {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.consent a {
    color: #b5651d;
    font-weight: 600;
}

/* Choix du mode de règlement (carte ou virement) quand les deux sont proposés. */
.payment-method {
    border: 1px solid var(--line);
    padding: 12px 16px;
    margin: 6px 0 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
}

.payment-method legend {
    padding: 0 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #7b827e;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #43431f;
    cursor: pointer;
}

.payment-option input {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

/* Menu multi-pages : écriture olive dorée, plus grande et en gras ; page active et
   survol soulignés (le bouton « Réserver » .nav-cta garde son propre style). */
.site-header nav a:not(.nav-cta) {
    font-size: 15px;
    font-weight: 600;
    color: #43431f;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color .15s ease, border-color .15s ease;
}

/* Au survol : on colore juste le texte — le petit soulignement animé d'origine (::after)
   suffit. On NE colore PAS notre trait de 2px ici, pour ne pas avoir deux traits. */
.site-header nav a:not(.nav-cta):hover {
    color: #8f7a0a;
}

/* Page active : trait fixe de 2px (notre bordure), et on masque le petit soulignement
   animé dessus pour ne jamais doubler le trait, même quand on la survole. */
.site-header nav a:not(.nav-cta).active {
    color: #8f7a0a;
    border-bottom-color: #8f7a0a;
}

.site-header nav a:not(.nav-cta).active::after {
    display: none;
}

/* Sélecteur de langue (FR/DE/IT/EN) dans le menu : petits liens neutres, langue active mise en avant. */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-left: 10px;
}

.site-header nav .lang-switch a {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    color: #9a917c;
    padding: 3px 6px;
    border-radius: 6px;
    border-bottom: none !important;
}

.site-header nav .lang-switch a:hover {
    color: #43431f;
    background: rgba(0, 0, 0, .05);
}

.site-header nav .lang-switch a.active {
    color: #8f7a0a;
    background: rgba(143, 122, 10, .12);
}

/* Bouton « Réserver » : même famille de couleurs (olive doré), se remplit au survol. */
.site-header nav a.nav-cta {
    font-size: 15px;
    font-weight: 600;
    color: #8f7a0a;
    border-color: #8f7a0a;
    transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.site-header nav a.nav-cta:hover {
    background-color: #8f7a0a;
    border-color: #8f7a0a;
    color: #fbf9f4;
}

/* Champ dates de la réservation : pleine largeur (sinon la période sélectionnée,
   ex. « 10 sept. 2026 au 17 sept. 2026 », est tronquée dans un champ trop étroit). */
.booking-form .flatpickr-wrapper {
    display: block;
    width: 100%;
}

.date-range {
    width: 100%;
    box-sizing: border-box;
}

/* Nombre de nuits affiché dès la sélection des dates. */
.nights-hint {
    margin: 6px 0 0;
    font-size: 14px;
    font-weight: 600;
    color: #8f7a0a;
}

/* Galerie de la page « La maison » : toutes les photos, chacune avec sa légende. */
.gallery-quote {
    max-width: 720px;
    margin: 0 auto 34px;
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(20px, 2.6vw, 26px);
    font-style: italic;
    line-height: 1.5;
    color: #4a5a50;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 26px 22px;
}

.gallery-grid figure {
    margin: 0;
}

.gallery-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.gallery-grid figcaption {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.45;
    color: #5b6a62;
    text-align: center;
}

@media (max-width: 600px) {
    .gallery-grid img {
        height: 200px;
    }
}

/* Pages de contenu multi-pages : moins d'espace vertical (les sections héritaient de
   128px de l'ancienne page unique) et petits textes agrandis. */
.section {
    padding-top: 52px;
    padding-bottom: 52px;
}

.intro.section {
    gap: 56px;
    padding-bottom: 28px;
}

/* La galerie suit l'intro sur « La maison » : on colle la citation à l'intro
   (le double padding de deux sections faisait un vide de ~104px). */
.gallery-section {
    padding-top: 0;
}

.eyebrow {
    font-size: 13px;
}

.text-link {
    font-size: 15px;
}

/* Page « Aux alentours » : même langage que La maison (fond crème, texte foncé). */
/* Titre de page au même gabarit que le grand titre de « La maison ». */
.page-lead {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    font-size: clamp(34px, 5.2vw, 60px);
    line-height: 1.06;
    color: #17251f;
    margin: 8px 0 0;
    max-width: 16ch;
}

.alentours-image {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    margin: 30px 0 6px;
}

.alentours-list {
    list-style: none;
    margin: 26px 0 22px;
    padding: 0;
}

.alentours-list li {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 18px 2px;
    border-top: 1px solid #e6e0d4;
}

.alentours-list li:last-child {
    border-bottom: 1px solid #e6e0d4;
}

.alentours-list li > span {
    flex: 0 0 auto;
    min-width: 30px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    color: #b5651d;
}

.alentours-list li > div {
    flex: 1;
}

.alentours-list strong {
    display: block;
    font-size: 18px;
    color: #17251f;
}

.alentours-list small {
    color: #6a736d;
    font-size: 15px;
}

.alentours-list li > b {
    flex: 0 0 auto;
    white-space: nowrap;
    font-weight: 600;
    font-size: 15px;
    color: #17251f;
}

/* Page publique « Conditions générales » (récap auto + clauses libres). */
.legal-page {
    max-width: 780px;
    margin: 0 auto;
    padding: 48px 20px 80px;
}

.legal-card {
    background: #fff;
    border: 1px solid #ece7dd;
    border-radius: 10px;
    padding: 40px 44px;
    box-shadow: 0 8px 30px rgba(30, 40, 30, .06);
}

.legal-card h1 {
    margin: 6px 0 8px;
    font-size: 30px;
}

.legal-intro {
    color: #6a736d;
    margin-bottom: 22px;
}

.legal-section {
    padding: 20px 0;
    border-top: 1px solid #efeadf;
}

.legal-section h2 {
    font-size: 18px;
    margin: 0 0 10px;
}

.legal-section ul {
    margin: 0;
    padding-left: 20px;
    line-height: 1.6;
}

.legal-section li {
    margin-bottom: 5px;
}

.legal-section p {
    margin: 0;
    line-height: 1.6;
}

.legal-note {
    margin-top: 8px;
    font-style: italic;
    color: #6a736d;
    font-size: 13px;
}

.legal-freetext {
    line-height: 1.7;
}

.legal-back {
    margin-top: 26px;
}

.legal-back a {
    color: #b5651d;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 600px) {
    .legal-page {
        padding: 28px 14px 60px;
    }

    .legal-card {
        padding: 24px 20px;
    }
}

.price-box .detail {
    font-style: normal;
    color: #8b918c;
}

/* Page de confirmation après l'envoi d'une demande. */
.confirmation {
    min-height: calc(100vh - 92px);
    display: grid;
    place-items: center;
    padding: clamp(60px, 8vw, 120px) 24px;
    background: var(--cream);
}

.confirmation-card {
    width: min(640px, 100%);
    background: white;
    padding: clamp(32px, 5vw, 60px);
    box-shadow: 0 18px 60px rgba(28, 43, 35, .09);
}

.confirmation-card h1 {
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -.03em;
    margin-bottom: 18px;
}

.confirmation-card > p {
    color: #5b655e;
}

.confirmation-summary {
    margin: 32px 0;
    border-top: 1px solid var(--line);
}

.confirmation-summary div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

.confirmation-summary dt {
    color: #7b827e;
}

.confirmation-summary dd {
    margin: 0;
    font-weight: 600;
    text-align: right;
}

.confirmation-summary .total dd {
    font: 500 24px var(--serif);
}

.confirmation-note {
    padding: 16px 18px;
    background: #f3ede3;
    color: #6a4a34;
    font-size: 13px;
}

.confirmation-reference {
    margin-top: 26px;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9aa19c;
}

/* Page « gérer ma réservation » (annulation / modification côté client). */
.manage-block {
    margin-top: 32px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    text-align: left;
}

.manage-block h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.manage-block p {
    color: #5b655e;
    font-size: 14px;
    margin-bottom: 16px;
}

.manage-block .button {
    margin-top: 12px;
}

/* Liste des maisons : n'apparaît que lorsqu'un deuxième bien est mis en ligne. */
.properties {
    padding: clamp(60px, 8vw, 120px) clamp(24px, 9vw, 150px);
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.property-card {
    display: block;
    background: white;
    border: 1px solid var(--line);
    transition: .25s;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(28, 43, 35, .1);
}

.property-card img {
    height: 240px;
}

.property-card-body {
    padding: 26px 28px 30px;
}

.property-card h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.property-card p {
    margin: 0 0 18px;
    color: #6a736d;
    font-size: 14px;
}

.property-card .from {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--terra);
    font-weight: 600;
}
