@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg:         #faf8f4;
  --bg-white:   #ffffff;
  --text:       #1c1917;
  --muted:      #78716c;
  --border:     #e8e2d6;
  --chip:       #f0ece4;
  --primary:    #2e5514;
  --primary-hv: #3a6b1c;
  --accent:     #9a7c3e;
  --shadow-sm:  0 2px 12px rgba(28,25,23,.06);
  --shadow:     0 4px 28px rgba(28,25,23,.09);
  --shadow-lg:  0 12px 48px rgba(28,25,23,.14);
  --radius:     18px;
  --radius-lg:  24px;
}

/* ── RESET & BASE ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img    { display: block; max-width: 100%; }
button { font: inherit; }
a      { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  line-height: 1.2;
}

.container  { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.noScroll   { overflow: hidden; }

.skip {
  position: absolute; left: -999px; top: 10px;
  background: #1c1917; color: #fff; padding: 8px 12px;
  border-radius: 12px; z-index: 999;
}
.skip:focus { left: 10px; }

/* ── TOPBAR ───────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 30;
  background: rgba(250,248,244,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner { display: flex; align-items: center; gap: 16px; padding: 12px 0; }
.brand         { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand__logo   {
  width: 48px; height: 48px; border-radius: 14px;
  object-fit: cover; border: 1px solid var(--border); flex-shrink: 0;
}
.brand__title  {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: 1.15rem; line-height: 1.15;
}
.brand__subtitle { color: var(--muted); font-size: .8rem; }
.back-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .85rem; color: var(--muted); font-weight: 500;
  padding: 5px 0; transition: color .15s;
}
.back-link:hover { color: var(--text); }

.topbar__nav { margin-left: auto; display: flex; gap: 2px; flex-wrap: wrap; align-items: center; }
.topbar__nav a {
  color: var(--text); font-size: .88rem; font-weight: 500;
  padding: 6px 12px; border-radius: 999px;
  transition: background .15s;
}
.topbar__nav a:hover { background: var(--chip); }
.topbar__actions { display: flex; gap: 10px; align-items: center; }

/* ── BUTTONS ──────────────────────────────── */
.btn {
  border: 1px solid var(--border); background: var(--bg-white);
  border-radius: 999px; padding: 10px 18px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: .9rem;
  transition: background .18s, border-color .18s, box-shadow .18s, transform .1s;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn--primary  { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 700; }
.btn--primary:hover { background: var(--primary-hv); border-color: var(--primary-hv); }
.btn--outline  { background: var(--bg-white); border-color: var(--border); }
.btn--outline:hover { background: var(--chip); }
.btn--ghost    { border-color: transparent; background: var(--bg-white); }
.btn--ghost:hover { background: var(--chip); }
.btn--full     { width: 100%; }
.btn--white    { background: rgba(255,255,255,.96); border-color: transparent; color: var(--text); font-weight: 700; }
.btn--white:hover { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.14); }
.btn--ghost-white {
  background: transparent; border: 1.5px solid rgba(255,255,255,.6);
  color: #fff; font-weight: 600;
}
.btn--ghost-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.9); }
.btn--chip  { background: rgba(28,25,23,.76); border-color: transparent; color: #fff; padding: 9px 14px; }
.btn--chip:hover { background: rgba(28,25,23,.9); }
.btn--chip2 { background: var(--chip); border-color: transparent; color: var(--text); font-weight: 700; padding: 8px 14px; }
.btn--chip2:hover { filter: brightness(.97); }
.btn--chip2.isActive { outline: 2px solid rgba(28,25,23,.18); }
.btn--facebook { background: #1877F2; border-color: #1877F2; color: #fff; }
.btn--facebook:hover { background: #166FE5; }
.btn--whatsapp { background: #25D366; border-color: #25D366; color: #fff; }
.btn--whatsapp:hover { background: #1ebe5a; }
.icon-facebook, .icon-whatsapp { width: 18px; height: 18px; flex-shrink: 0; }

/* ── HOMEPAGE DOMAINE ─────────────────────── */

/* Hero immersif */
.hero-domain {
  position: relative;
  height: 88vh; min-height: 480px; max-height: 960px;
  overflow: hidden;
}
.hero-domain__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 60%;
}
.hero-domain__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,25,23,.08) 0%,
    rgba(28,25,23,.1)  45%,
    rgba(28,25,23,.70) 100%
  );
}
.hero-domain__content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 56px 40px; color: #fff;
}
.hero-domain__eyebrow {
  display: block; font-size: .74rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: 14px;
}
.hero-domain__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700; line-height: 1.08;
  color: #fff; margin: 0 0 18px; max-width: 680px;
}
.hero-domain__sub {
  font-size: 1.05rem; color: rgba(255,255,255,.82);
  margin: 0 0 34px; max-width: 500px; line-height: 1.6;
}
.hero-domain__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Sections */
.section       { padding: 80px 0; }
.section--alt  { background: var(--bg-white); }
.section-head  { margin-bottom: 48px; max-width: 600px; }
.section-head--center { text-align: center; max-width: 600px; margin: 0 auto 48px; }

.eyebrow {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 700; color: var(--text);
  margin: 0 0 14px; line-height: 1.15;
}
.section-lead { color: var(--muted); font-size: 1.02rem; line-height: 1.65; margin: 0; }

/* Grille maisons */
.houses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.house-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-white); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .28s, transform .28s;
}
.house-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.house-card__media { position: relative; overflow: hidden; }
.house-card__img   { width: 100%; height: 300px; object-fit: cover; display: block; transition: transform .5s ease; }
.house-card:hover .house-card__img { transform: scale(1.03); }
.house-card__badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,.95); border-radius: 999px;
  padding: 5px 13px; font-weight: 700; font-size: .86rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.14);
}
.house-card__body     { padding: 28px 28px 32px; }
.house-card__location {
  font-size: .72rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 8px;
}
.house-card__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.65rem; font-weight: 700; color: var(--text); margin: 0 0 10px;
}
.house-card__specs  { font-size: .88rem; color: var(--muted); margin: 0 0 12px; }
.house-card__teaser { font-size: .94rem; color: var(--text); line-height: 1.55; margin: 0 0 26px; }

/* Grille éditoriale */
.editorial-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 16px; margin-top: 0; }
.editorial-item { border-radius: var(--radius); overflow: hidden; position: relative; }
.editorial-item__img {
  width: 100%; height: 220px; object-fit: cover; display: block;
  transition: transform .45s ease;
}
.editorial-item--tall .editorial-item__img { height: 460px; }
.editorial-item:hover .editorial-item__img { transform: scale(1.04); }
.editorial-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,25,23,.72) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
}
.editorial-item__label {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem; font-weight: 600; color: #fff; margin: 0 0 4px;
}
.editorial-item__caption { font-size: .8rem; color: rgba(255,255,255,.72); margin: 0; }
.editorial-col { display: flex; flex-direction: column; gap: 16px; }

/* Bande environs */
.environs-grid  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.environ-item   {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px; text-align: center;
}
.environ-item__dist {
  display: inline-block; background: var(--chip); border-radius: 999px;
  padding: 4px 12px; font-size: .78rem; font-weight: 700; color: var(--accent);
  margin-bottom: 12px;
}
.environ-item__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem; font-weight: 600; margin: 0 0 6px;
}
.environ-item__desc { font-size: .85rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* Contact homepage */
.contact-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-strip-item {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; text-align: center;
}
.contact-strip-item__icon  { font-size: 1.5rem; margin-bottom: 10px; }
.contact-strip-item__label {
  font-size: .7rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 7px;
}
.contact-strip-item a { font-weight: 600; font-size: .93rem; color: var(--text); display: block; transition: color .15s; }
.contact-strip-item a:hover { color: var(--primary); }

/* Bloc combiné réservation groupée */
.combined-cta {
  background: var(--primary); border-radius: var(--radius-lg);
  padding: 40px 40px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.combined-cta__text h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.85rem; color: #fff; margin: 0 0 8px;
}
.combined-cta__text p { color: rgba(255,255,255,.78); margin: 0; font-size: .95rem; line-height: 1.55; }

/* Liens SEO */
.seo-links { display: flex; gap: 8px; flex-wrap: wrap; }
.seo-links a {
  font-size: .8rem; color: var(--muted); border: 1px solid var(--border);
  border-radius: 999px; padding: 6px 14px; background: var(--bg-white);
  transition: border-color .15s, color .15s;
}
.seo-links a:hover { border-color: var(--primary); color: var(--primary); }

/* Footer domaine */
.domain-footer {
  background: #1c1917; color: rgba(255,255,255,.5);
  padding: 30px 0; text-align: center; font-size: .83rem;
}
.domain-footer a { color: rgba(255,255,255,.45); }
.domain-footer a:hover { color: rgba(255,255,255,.8); }

/* ── PAGE MAISON (structure Airbnb raffinée) ─ */

/* Hero grille photos */
.hero   { padding: 16px 0; }
.heroGrid {
  position: relative; display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px; max-height: 440px; overflow: hidden;
  border-radius: var(--radius-lg);
}
.heroGrid__big   { grid-column: 1/2; grid-row: 1/3; overflow: hidden; }
.heroGrid__big img, .heroGrid__small img {
  width: 100%; height: 100%; object-fit: cover;
}
.heroGrid__more { position: absolute; right: 14px; bottom: 14px; }

/* Hero simple (maison avec peu de photos) */
.hero-maison {
  position: relative; height: 480px; overflow: hidden;
  border-radius: var(--radius-lg); margin: 16px 0;
}
.hero-maison__bg {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-maison__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,25,23,.65) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 32px;
}

/* Layout (colonne principale + sidebar) */
.layout {
  display: grid; grid-template-columns: minmax(0,1fr) 360px;
  gap: 52px; padding: 16px 0 60px; align-items: start;
}
.left .block { padding: 0; }

/* Typographie utilitaire */
.h1  { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin: 0 0 10px; }
.h2  { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin: 0 0 12px; }
.meta { display: flex; gap: 12px; flex-wrap: wrap; color: #57534e; font-size: .93rem; }
.ratingRow { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.badge { background: var(--text); color: #fff; border-radius: 999px; padding: 4px 12px; font-weight: 700; font-size: .86rem; }
.muted  { color: var(--muted); }
.small  { font-size: .9rem; }
.tiny   { font-size: .8rem; }
.center { text-align: center; }
hr.sep  { border: 0; border-top: 1px solid var(--border); margin: 26px 0; }
.bullets { margin: 10px 0 0; padding-left: 20px; }
.bullets li { margin: 7px 0; }

/* Cartes chambres */
.cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.card  {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--bg-white);
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
.card img   { height: 150px; width: 100%; object-fit: cover; }
.card__body { padding: 12px 14px; }
.card__title { font-weight: 700; }
.card__text  { color: var(--muted); font-size: .87rem; }

/* Équipements */
.amenities { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.amenity   { border: 1px solid var(--border); border-radius: 14px; padding: 10px 14px; background: var(--bg-white); font-size: .91rem; }
.more      { margin-top: 14px; }
.more summary { cursor: pointer; font-weight: 700; }
.miniGallery  { margin-top: 14px; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; }
.mini         { border: 0; background: transparent; padding: 0; cursor: pointer; }
.mini img     { width: 100%; height: 80px; object-fit: cover; border-radius: 12px; border: 1px solid var(--border); }

/* Galerie photos */
.filters        { display: flex; gap: 10px; flex-wrap: wrap; margin: 12px 0 14px; }
.gallery        { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px,1fr)); gap: 10px; }
.gallery__item  { border: 0; background: transparent; padding: 0; cursor: pointer; }
.gallery__item img { width: 100%; height: 160px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); transition: transform .3s; }
.gallery__item:hover img { transform: scale(1.02); }

/* Carte réservation (sidebar) */
.right    { position: relative; }
.bookCard {
  position: sticky; top: 86px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 22px; background: var(--bg-white);
}
.bookCard__head    { display: grid; gap: 4px; }
.bookCard__title   { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; }
.bookCard__body    { display: grid; gap: 10px; margin-top: 16px; }
.bookCard__divider { height: 1px; background: var(--border); margin: 16px 0; }
.bookCard__note a  { display: block; }
.noteTitle         { font-weight: 700; margin-bottom: 6px; }

/* Pied de page maison */
.footer { margin: 32px 0 12px; border-top: 1px solid var(--border); padding-top: 20px; }

/* Boutons images / Lightbox */
.imgBtn { border: 0; background: transparent; padding: 0; cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; display: none; z-index: 100; }
.lightbox.isOpen { display: block; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(28,25,23,.82); }
.lightbox__dialog {
  position: relative; max-width: min(1000px,94vw); margin: 5vh auto 0;
  background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
}
.lightbox__dialog img { width: 100%; max-height: 74vh; object-fit: contain; background: #0d1117; }
.lightbox__caption    { padding: 10px 16px; color: #57534e; }
.lightbox__close {
  position: absolute; top: 10px; right: 10px;
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3); background: rgba(28,25,23,.55);
  color: #fff; cursor: pointer;
}

/* Modal réservation Beds24 */
.modal { position: fixed; inset: 0; display: none; z-index: 200; }
.modal.isOpen { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(28,25,23,.72); }
.modal__dialog {
  position: relative; width: min(1100px,96vw); height: min(920px,92vh);
  margin: 4vh auto 0; background: var(--bg-white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 30px 90px rgba(0,0,0,.35);
  display: grid; grid-template-rows: auto 1fr;
}
.modal__topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 16px; border-bottom: 1px solid var(--border); background: var(--bg-white);
}
.modal__title { font-weight: 700; font-size: 1rem; }
.modal__link  { font-weight: 700; color: var(--primary); }
.modal__link:hover { text-decoration: underline; }
.modal__close {
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--bg-white); cursor: pointer;
}
#beds24Frame { width: 100%; height: 100%; border: 0; }

/* Modal contenu "À propos" */
.modal__dialog--content { width: min(900px,96vw); height: min(860px,92vh); }
.modal__content           { padding: 16px; overflow: auto; }
.modal__content h3        { font-family: 'Playfair Display', serif; margin: 18px 0 8px; font-size: 1.1rem; }
.modal__content h4        { margin: 14px 0 6px; font-size: 1rem; font-weight: 700; }
.modal__content ul        { margin: 8px 0 0; padding-left: 20px; }
.modal__content li        { margin: 6px 0; }
.leadline { margin-top: 0; }
.callout  { margin: 12px 0; padding: 12px 14px; border-radius: 14px; background: var(--chip); }

/* Page réservation plein écran */
.page      { padding: 20px 0 50px; }
.pageCard  { border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); background: var(--bg-white); overflow: hidden; }
.pageCard__head { padding: 16px 16px 0; }
.iframeWrap { height: min(1100px,80vh); margin-top: 14px; }
.iframeWrap iframe { width: 100%; height: 100%; border: 0; }

/* Carte localisation */
.map-card  { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg-white); }
.map       { width: 100%; height: 420px; }
.map-legend { display: flex; gap: 16px; padding: 10px 14px; border-top: 1px solid var(--border); color: var(--muted); font-size: .86rem; }
.legend-item { display: flex; align-items: center; gap: 8px; }
.dot         { width: 10px; height: 10px; border-radius: 50%; }
.dot-home    { background: #1d4ed8; }
.pin         { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: #1c1917; border: 2px solid #fff; box-shadow: 0 4px 14px rgba(0,0,0,.22); font-size: 14px; }
.pin-home    { background: #1d4ed8; }
.pin-chateau { background: #7c3aed; }
.pin-zoo     { background: #15803d; }

/* Avis */
.reviews    { margin-top: 48px; }
.review     { border-bottom: 1px solid var(--border); padding: 18px 0; }
.reviewHead { font-size: .9rem; color: #57534e; }
.reviewStars { color: #d97706; font-size: .92rem; margin: 4px 0; }
.reviewSource { font-size: .8rem; color: var(--muted); margin-top: 8px; }

/* Contact */
.contactGrid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 14px; }
.contactCard  { border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; background: var(--bg-white); }
.contactTitle { font-weight: 700; margin-bottom: 8px; }
.contactLink  { display: inline-block; font-weight: 600; }
.contactLink:hover { text-decoration: underline; }
.contactText  { font-weight: 600; margin-bottom: 6px; }

/* Promo */
.promo       { margin-top: 14px; padding: 14px; border: 1px solid var(--border); border-radius: 16px; background: var(--bg-white); }
.promo__line { margin: 0; }

/* Barre CTA mobile */
.mobileCta { display: none; }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 980px) {
  .layout { grid-template-columns: 1fr; gap: 20px; }
  .bookCard { position: relative; top: auto; }
  .heroGrid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; max-height: 300px; }
  .heroGrid__big { grid-column: 1/3; grid-row: auto; }
  .houses-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .environs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 32px; }
  .hero-domain { height: 78vh; min-height: 440px; }
  .hero-domain__content { padding: 32px 20px; }
  .hero-domain__title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero-maison { height: 340px; margin: 10px 0; }
  .houses-grid { grid-template-columns: 1fr; }
  .house-card__img { height: 240px; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-item--tall .editorial-item__img { height: 260px; }
  .editorial-item__img { height: 200px; }
  .environs-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-strip { grid-template-columns: 1fr; gap: 12px; }
  .combined-cta { flex-direction: column; text-align: center; padding: 28px 24px; }
  .topbar__nav { display: none; }
  .topbar__actions { display: none; }
  .brand__logo { width: 40px; height: 40px; border-radius: 12px; }
  .brand__title { font-size: .95rem; }
  .layout { padding-bottom: 88px; }
  .right { order: -1; }
  aside.right { display: none; }
  .heroGrid { max-height: 260px; }
  .cards { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: 1fr; }
  .miniGallery { grid-template-columns: repeat(3,1fr); }
  .gallery { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery__item img { height: 140px; }
  .map { height: 300px; }
  .contactGrid { grid-template-columns: 1fr; }
  .modal__dialog, .modal__dialog--content { width: 100vw; height: 100vh; margin: 0; border-radius: 0; }
  .lightbox__dialog { max-width: 100vw; margin: 0; border-radius: 0; }
  .lightbox__dialog img { max-height: 82vh; }
  .mobileCta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0;
    padding: 10px 14px;
    background: rgba(250,248,244,.95); backdrop-filter: blur(8px);
    border-top: 1px solid var(--border); z-index: 60;
  }
}

@media (max-width: 560px) {
  .hero-domain { height: 70vh; }
  .environs-grid { grid-template-columns: 1fr; }
}
