:root {
  --sand: #f5efe6;
  --warm-white: #fffaf3;
  --terracotta: #a95738;
  --terracotta-dark: #753923;
  --clay: #c6845f;
  --brown: #38251c;
  --olive: #6f6f4f;
  --gold: #c9a35b;
  --line: rgba(56, 37, 28, .16);
  --shadow: 0 24px 70px rgba(56, 37, 28, .16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--brown);
  background: var(--warm-white);
  line-height: 1.6;
}

/* Google Translate widget hidden */
#google_translate_element,
.google-translate-hidden,
body > .skiptranslate,
.goog-te-banner-frame,
.goog-te-gadget,
.goog-te-combo {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}

html,
body {
  top: 0 !important;
}

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

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background .28s ease, backdrop-filter .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.topbar.is-scrolled {
  background: rgba(255, 250, 243, .78);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(56, 37, 28, .10);
  box-shadow: 0 14px 40px rgba(56, 37, 28, .10);
}

.topbar.is-scrolled .menu a,
.topbar.is-scrolled .lang-switch a,
.topbar.is-scrolled .burger {
  color: var(--brown);
}

.topbar.is-scrolled .menu a:hover,
.topbar.is-scrolled .lang-switch a:hover {
  color: var(--terracotta-dark);
}

.topbar.is-scrolled .lang-switch a.active {
  border-color: rgba(56, 37, 28, .22);
  background: rgba(56, 37, 28, .07);
  color: var(--brown);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-mark {
  width: 190px;
  height: 64px;
  border-radius: 0;
  display: block;
  background: url('../img/logo-banner-t.png') left center/contain no-repeat;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.brand span:not(.brand-mark) {
  display: none;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: .94rem;
  font-weight: 600;
}

.menu a {
  color: #fff;
  opacity: .88;
}

.menu a:hover {
  opacity: 1;
  color: #fffaf3;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 700;
}

.mobile-lang-switch {
  display: none;
}

.lang-switch a {
  color: #fff;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.lang-switch a.active {
  border-color: rgba(255, 250, 243, .46);
  background: rgba(255, 250, 243, .16);
  color: #fff;
}

.burger {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
}

.btn {
  display: inline-flex;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  padding: 14px 22px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0f766e;
  color: #fff;
  border-color: rgba(255, 250, 243, .46);
  box-shadow: 0 16px 38px rgba(15, 118, 110, .28);
  letter-spacing: .01em;
  text-transform: none;
}

.btn-primary::before {
  content: none;
}

.btn-primary::after {
  content: none;
}

.btn-primary:hover {
  background: #0b5f59;
  color: #fff;
  border-color: rgba(255, 250, 243, .60);
  box-shadow: 0 20px 46px rgba(15, 118, 110, .34);
}

.btn-primary:hover::after {
  content: none;
}


.btn-secondary {
  background: rgba(255, 250, 243, .9);
  color: var(--brown);
  border-color: rgba(255, 255, 255, .7);
}

.btn-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  box-shadow: 0 14px 30px rgba(131, 58, 180, .24), 0 10px 26px rgba(253, 29, 29, .14);
}

.btn-instagram svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-instagram:hover {
  filter: saturate(1.08) brightness(.98);
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--brown);
}

.hero {

  min-height: 100vh;

  display: grid;

  align-items: center;

  padding: 128px 0 72px;

  position: relative;

  overflow: hidden;

  background: var(--brown);

  color: #fff;

}

.hero-video {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center center;

  transform: scale(1.12);

  transform-origin: center center;

  z-index: 0;

}

.hero-overlay {

  position: absolute;

  inset: 0;

  z-index: 1;

  background:

    linear-gradient(90deg, rgba(56, 37, 28, .78), rgba(56, 37, 28, .34)),

    linear-gradient(180deg, rgba(56, 37, 28, .10), rgba(56, 37, 28, .45));

}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.eyebrow {
  display: inline-flex;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .86);
}

.eyebrow::before {
  content: '';
  width: 38px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: .98;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 5.6vw, 5.1rem);
  max-width: 850px;
  letter-spacing: -.025em;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: -.03em;
}

h3 {
  font-size: 2rem;
}

.hero p {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(.95rem, 1.8vw, 1.19rem);
  color: rgba(255, 255, 255, .9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions .btn {
  width: 290px;
  min-height: 58px;
  padding: 16px 28px;
  font-size: 1rem;
  letter-spacing: .01em;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: none;
  backdrop-filter: blur(6px);
  white-space: nowrap;
  text-align: center;
}

.hero-actions .btn:hover {
  background: rgba(255, 255, 255, .18);
  color: #fff;
  border-color: rgba(255, 255, 255, .95);
  box-shadow: none;
}

.hero-actions .btn-book-now {
  gap: 12px;
}

.hero-actions .btn-instagram {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .72);
  box-shadow: none;
  filter: none;
}

.hero-actions .btn-instagram:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .95);
  filter: none;
}

.hero-actions .btn-book-now svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  min-width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-actions .btn-book-now span,
.hero-actions .btn-instagram span {
  position: relative;
  z-index: 1;
  display: inline-block;
  white-space: nowrap;
}

.hero-actions .btn-primary::before {
  content: none;
}

.hero-actions .btn-primary:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .95);
  box-shadow: none;
}

.small-actions {
  margin-top: 18px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: .92rem;
  font-weight: 700;
}

.badge[href] {
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.badge[href]:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .20);
  border-color: rgba(255, 255, 255, .34);
}

.badge-airbnb {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
}

.badge-airbnb svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge-airbnb:hover {
  background: rgba(255, 255, 255, .20);
  border-color: rgba(255, 255, 255, .34);
}

section {
  padding: 96px 0;
}

.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.reveal-on-scroll.reveal-from-left {
  transform: none;
}

.reveal-on-scroll.reveal-from-right {
  transform: none;
}

.reveal-on-scroll.reveal-zoom {
  transform: none;
}

.reveal-on-scroll.reveal-soft {
  transform: none;
}

.reveal-on-scroll.is-visible,
.reveal-on-scroll.reveal-from-left.is-visible,
.reveal-on-scroll.reveal-from-right.is-visible,
.reveal-on-scroll.reveal-zoom.is-visible,
.reveal-on-scroll.reveal-soft.is-visible {
  opacity: 1;
  transform: none;
}

.parallax-patio.reveal-on-scroll,
.parallax-rooftop.reveal-on-scroll,
.parallax-patio.reveal-on-scroll.is-visible,
.parallax-rooftop.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-on-scroll.reveal-delay-1 {
  transition-delay: 0s;
}

.reveal-on-scroll.reveal-delay-2 {
  transition-delay: 0s;
}

.reveal-on-scroll.reveal-delay-3 {
  transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


.section-kicker {
  display: inline-flex;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--terracotta-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: '';
  width: 36px;
  height: 1px;
  background: currentColor;
}


.section-head {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.features .section-head {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 46px;
  align-items: center;
  margin-bottom: 46px;
  padding: 42px 46px;
  min-height: 260px;
  border-radius: 34px;
  background: rgba(255, 250, 243, .92);
  border: 1px solid rgba(169, 87, 56, .12);
  box-shadow: 0 24px 66px rgba(56, 37, 28, .11);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.features .section-head > div {
  min-width: 0;
}

.features .section-head::after {
  content: none;
  display: none;
}


.services-section .section-head {
  grid-template-columns: 1fr;
  width: min(900px, 100%);
  margin-left: auto;
  margin-right: auto;
  min-height: 0;
  padding: 42px 46px;
}

.services-section .section-head h2 {
  max-width: 690px;
  margin: 0;
}

.features .section-head h2 {
  max-width: 560px;
  align-self: center;
  font-size: clamp(2.45rem, 4.4vw, 4.65rem);
  line-height: .96;
  letter-spacing: -.042em;
}

.features .section-head p {
  align-self: center;
  justify-self: start;
  max-width: 520px;
  margin: 0;
  padding: 22px 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(169, 87, 56, .10);
  box-shadow: 0 18px 48px rgba(56, 37, 28, .08);
  font-size: 1.08rem;
  line-height: 1.72;
  color: rgba(56, 37, 28, .76);
}

.features .section-head > div:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100%;
  padding-top: 26px;
}

.booking .section-head {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 46px;
  align-items: center;
  margin-bottom: 46px;
  padding: 42px 46px;
  min-height: 260px;
  border-radius: 34px;
  background: rgba(255, 250, 243, .92);
  border: 1px solid rgba(169, 87, 56, .12);
  box-shadow: 0 24px 66px rgba(56, 37, 28, .11);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.booking .section-head::after {
  content: '♡ Réservation directe';
  position: absolute;
  top: 28px;
  right: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: calc(100% - 68px);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(169, 87, 56, .10);
  color: var(--terracotta-dark);
  font-size: .70rem;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
  border: 1px solid rgba(169, 87, 56, .16);
  box-shadow: none;
}

.booking .section-head h2 {
  max-width: 560px;
  align-self: center;
  font-size: clamp(2.45rem, 4.4vw, 4.65rem);
  line-height: .96;
  letter-spacing: -.042em;
}


.booking-head-content {
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 16px;
  min-width: 0;
  padding-top: 30px;
}

.booking-head-text {
  max-width: 520px;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 1.08rem;
  line-height: 1.72;
  color: rgba(56, 37, 28, .76);
}

.booking-rare-box {
  position: relative;
  display: inline-grid !important;
  grid-template-columns: auto 1fr;
  align-items: center !important;
  gap: 9px;
  width: fit-content;
  max-width: min(100%, 430px);
  margin: 0 !important;
  padding: 10px 16px 10px 14px !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, .98) !important;
  border: 1px solid rgba(56, 37, 28, .06);
  box-shadow:
    0 14px 34px rgba(56, 37, 28, .10),
    inset 0 1px 0 rgba(255, 255, 255, .92);
  color: #202020 !important;
  overflow: hidden;
}


.booking-rare-icon {
  position: relative;
  z-index: 1;
  width: 30px;
  min-width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 56, 92, .10), rgba(224, 97, 47, .07));
  color: #ff385c;
  font-size: 1.15rem;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.booking-rare-box strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 360px;
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(.82rem, 1.08vw, .98rem);
  font-weight: 850;
  line-height: 1.24;
  letter-spacing: -.012em;
  color: #202020;
}


.story-head {
  align-items: center;
}

.story-title span {
  display: inline-block;
  white-space: nowrap;
}

.story-intro {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px 32px;
  border: 1px solid rgba(163, 92, 81, .18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(245, 239, 230, .86), rgba(255, 250, 243, .94));
  box-shadow: 0 22px 62px rgba(56, 37, 28, .10);
}

.story-logo {
  width: 240px;
  height: auto;
  padding: 22px 26px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(163, 92, 81, .94), rgba(117, 57, 35, .98));
  box-shadow: 0 24px 56px rgba(56, 37, 28, .22), inset 0 1px 0 rgba(255, 250, 243, .22);
}

.story-intro p {
  font-size: 1.08rem;
  line-height: 1.7;
}

.section-head p,
.muted {
  margin: 0;
  font-size: 1.06rem;
  color: rgba(56, 37, 28, .76);
}

.booking-panel .muted {
  font-size: .74rem;
  line-height: 1.45;
}

.story-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.story-text {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sand), rgba(255, 250, 243, .96));
  border: 1px solid rgba(163, 92, 81, .12);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow);
}

.story-text::before {
  content: none;
  display: none;
}

.story-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(163, 92, 81, .10);
  color: var(--terracotta-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.story-text h3,
.story-text p {
  position: relative;
  z-index: 1;
}

.story-text p {
  margin: 18px 0 0;
  color: rgba(56, 37, 28, .78);
}

.story-image {
  min-height: 520px;
  border-radius: var(--radius);
  background: url('../img/patio-dar27.jpg') center/cover no-repeat;
  box-shadow: var(--shadow);
}

.story-card-enhanced .story-image {
  background-image: url('../img/entree-01.jpg');
  background-position: center;
}


.features {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(201, 163, 91, .16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(169, 87, 56, .11), transparent 30%),
    linear-gradient(135deg, #f5efe6 0%, #fffaf3 48%, #ead8c6 100%);
}

.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(117, 57, 35, .07) 1px, transparent 1.4px),
    linear-gradient(135deg, rgba(201, 163, 91, .045) 25%, transparent 25%);
  background-size: 22px 22px, 44px 44px;
  opacity: .48;
  pointer-events: none;
}

.features > .container {
  position: relative;
  z-index: 1;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}


.card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 250, 243, .92);
  border: 1px solid rgba(169, 87, 56, .14);
  border-radius: 28px;
  padding: 30px;
  min-height: 230px;
  box-shadow: 0 18px 52px rgba(56, 37, 28, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.card::before {
  content: none;
  display: none;
}

.card:hover {
  transform: translateY(-4px);
  background: rgba(255, 250, 243, .98);
  border-color: rgba(169, 87, 56, .22);
  box-shadow: 0 26px 68px rgba(56, 37, 28, .13);
}


.card .icon {
  display: none;
}


.card h3,
.card p {
  position: relative;
  z-index: 1;
}

.card h3 {
  font-size: 1.75rem;
  line-height: 1.05;
}

.card p {
  color: rgba(56, 37, 28, .70);
  margin: 14px 0 0;
  line-height: 1.62;
}

.spaces-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
}

.space-large,
.space-small {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  min-height: 420px;
  background: #ddd center/cover no-repeat;
  box-shadow: var(--shadow);
}

.space-small {
  min-height: 280px;
}

.space-stack {
  display: grid;
  gap: 22px;
}

.space-large {
  background-image: url('../img/riad-photos/riad-photo-07.jpg');
}

.space-small.one {
  background-image: url('../img/riad-photos/riad-photo-02.jpeg');
  background-position: center bottom;
}

.space-link {
  display: block;
  color: inherit;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.space-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(56, 37, 28, .22);
  filter: saturate(1.04);
}

.space-link:hover .space-caption {
  background: linear-gradient(135deg, rgba(56, 37, 28, .80), rgba(56, 37, 28, .34));
}

.space-small.two {
  background-image: url('../img/riad-photos/riad-photo-05.jpeg');
  background-position: center 62%;
}

.space-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 20px;
  padding: 14px 16px;
  color: #fff;
  background: linear-gradient(135deg, rgba(56, 37, 28, .72), rgba(56, 37, 28, .28));
  backdrop-filter: blur(7px);
}

.space-caption h3 {
  font-size: 1.55rem;
}

.space-caption p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: .92rem;
  line-height: 1.45;
}

.reviews {
  background: var(--brown);
  color: #fff;
  overflow: hidden;
}

.reviews .section-head {
  align-items: center;
}
.reviews .section-head p {
  color: rgba(255, 255, 255, .72);
}

.airbnb-award {
  display: grid;
  grid-template-columns: 1.4fr .55fr .55fr;
  align-items: center;
  gap: 24px;
  width: 100%;
  margin: 0 0 28px;
  padding: 28px 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .96);
  color: #222;
  border: 1px solid rgba(255, 255, 255, .20);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .18);
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.airbnb-award-trigger {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.airbnb-award-trigger::after {
  content: 'Voir tous les avis';
  position: absolute;
  right: 22px;
  bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 90, 95, .12);
  color: #b85232;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: .88;
}

.airbnb-award-trigger:hover,
.airbnb-award-trigger:focus-visible {
  transform: translateY(-4px);
  background: #fff;
  border-color: rgba(255, 255, 255, .42);
  box-shadow: 0 30px 86px rgba(0, 0, 0, .24);
  outline: none;
}

.airbnb-award-trigger:focus-visible {
  box-shadow:
    0 30px 86px rgba(0, 0, 0, .24),
    0 0 0 4px rgba(245, 210, 122, .35);
}

.airbnb-award-main {
  display: flex;
  align-items: center;
  gap: 18px;
}

.airbnb-award-main strong,
.airbnb-award-score strong,
.airbnb-award-comments strong {
  display: block;
  color: #202020;
  font-weight: 850;
  line-height: 1;
}

.airbnb-award-main strong {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  letter-spacing: -.04em;
}

.airbnb-award-main span:not(.airbnb-laurel) {
  display: block;
  margin-top: 6px;
  color: rgba(32, 32, 32, .72);
  font-weight: 650;
  font-size: 1.02rem;
  line-height: 1.35;
}

.airbnb-laurel {
  color: #d7a536;
  font-size: 2.45rem;
  line-height: 1;
  text-shadow: 0 5px 14px rgba(215, 165, 54, .24);
  transform: rotate(-18deg);
}

.airbnb-laurel-right {
  transform: scaleX(-1) rotate(-18deg);
}

.airbnb-award-score,
.airbnb-award-comments {
  text-align: center;
  padding-left: 24px;
  border-left: 1px solid rgba(32, 32, 32, .12);
}

.airbnb-award-score strong,
.airbnb-award-comments strong {
  font-size: clamp(2rem, 3.6vw, 2.65rem);
}

.airbnb-award-score span {
  display: block;
  margin-top: 8px;
  color: #202020;
  letter-spacing: .08em;
  font-size: .96rem;
}

.airbnb-award-comments span {
  display: block;
  margin-top: 8px;
  color: rgba(32, 32, 32, .72);
  font-weight: 750;
}

.airbnb-award-note {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
  color: rgba(255, 255, 255, .78);
  font-size: 1.05rem;
  line-height: 1.55;
}

.airbnb-award-note strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.28rem;
}

.airbnb-award-note span {
  display: block;
}

.review-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 420px);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.review-strip::-webkit-scrollbar {
  height: 10px;
}

.review-strip::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
}

.review-strip::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .25);
  border-radius: 999px;
}

.review-card {
  scroll-snap-align: start;
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  min-height: 300px;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.review-card:hover,
.review-card:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .26);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
  outline: none;
}

.stars {
  color: #f5d27a;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.review-card p {
  color: rgba(255, 255, 255, .86);
  margin: 0;
}

.review-author {
  margin-top: 22px;
  color: #fff;
  font-weight: 800;
}

.review-meta {
  margin-top: 8px;
  color: rgba(255, 255, 255, .52);
  font-size: .86rem;
  line-height: 1.4;
}

.reviews-all-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.amenities-all-actions {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.amenities-open-btn {
  background: rgba(255, 250, 243, .96);
  color: var(--brown);
  border-color: rgba(169, 87, 56, .18);
  box-shadow: 0 18px 48px rgba(56, 37, 28, .12);
}

.amenities-open-btn:hover {
  background: var(--brown);
  color: #fff;
  border-color: var(--brown);
}

.amenities-open-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews-open-btn {
  background: rgba(255, 255, 255, .96);
  color: var(--brown);
  border-color: rgba(255, 255, 255, .24);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
  padding: 10px 15px;
  font-size: .70rem;
  gap: 7px;
}

.reviews-open-btn:hover {
  background: #fff;
  color: var(--brown);
}

.reviews-open-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.reviews-modal.open {
  display: flex;
}

.reviews-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 13, 10, .68);
  backdrop-filter: blur(10px);
}

.reviews-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  height: min(88vh, 920px);
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  color: var(--brown);
  box-shadow: 0 34px 110px rgba(0, 0, 0, .34);
  padding: 0;
}

.reviews-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(56, 37, 28, .14);
  border-radius: 50%;
  background: var(--brown);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(56, 37, 28, .18);
  transition: background .2s ease, transform .2s ease;
}

.reviews-modal-close:hover {
  background: var(--terracotta-dark);
  transform: rotate(4deg);
}

.reviews-modal-header {
  padding: 22px 42px 14px;
  border-bottom: 1px solid rgba(56, 37, 28, .08);
}

.reviews-modal-kicker {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
  font-weight: 850;
  color: var(--terracotta-dark);
}

.reviews-modal-header h2 {
  max-width: 660px;
  padding-right: 58px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.02;
  color: var(--brown);
}

.reviews-modal-subtitle {
  max-width: 660px;
  margin: 6px 0 0;
  color: rgba(56, 37, 28, .68);
  font-size: .84rem;
  line-height: 1.45;
}

.reviews-modal-filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 8px 42px;
  border-bottom: 1px solid rgba(56, 37, 28, .08);
  scrollbar-width: thin;
}

.reviews-modal-filters::-webkit-scrollbar {
  height: 8px;
}

.reviews-modal-filters::-webkit-scrollbar-track {
  background: rgba(56, 37, 28, .06);
  border-radius: 999px;
}

.reviews-modal-filters::-webkit-scrollbar-thumb {
  background: rgba(56, 37, 28, .18);
  border-radius: 999px;
}

.reviews-filter {
  flex: 0 0 auto;
  border: 1px solid rgba(56, 37, 28, .12);
  background: #fff;
  color: var(--brown);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .76rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.reviews-filter:hover {
  transform: translateY(-1px);
  border-color: rgba(163, 92, 81, .34);
  background: rgba(163, 92, 81, .08);
}

.reviews-filter.active {
  background: var(--brown);
  border-color: var(--brown);
  color: #fff;
}

.reviews-modal-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 8px 42px;
  border-bottom: 1px solid rgba(56, 37, 28, .08);
}

.reviews-search {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(56, 37, 28, .12);
  border-radius: 999px;
  background: var(--warm-white);
}

.reviews-search svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: rgba(56, 37, 28, .58);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews-search input {
  height: 42px;
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: .82rem;
}

.reviews-count {
  white-space: nowrap;
  color: rgba(56, 37, 28, .58);
  font-size: .80rem;
  font-weight: 750;
}

.reviews-modal-list {
  overflow-y: auto;
  padding: 6px 42px 34px;
}

.reviews-modal-item {
  display: grid;
  gap: 7px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(56, 37, 28, .10);
}

.reviews-modal-item:last-child {
  border-bottom: 0;
}

.reviews-modal-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.reviews-modal-author {
  color: var(--brown);
  font-weight: 850;
  font-size: .90rem;
}

.reviews-modal-meta {
  color: rgba(56, 37, 28, .55);
  font-size: .78rem;
  line-height: 1.4;
}

.reviews-modal-stars {
  color: #d7a536;
  letter-spacing: .08em;
  font-size: .9rem;
}

.reviews-modal-text {
  margin: 0;
  color: rgba(56, 37, 28, .78);
  font-size: .86rem;
  line-height: 1.65;
}

.reviews-empty {
  padding: 34px 0;
  color: rgba(56, 37, 28, .62);
  text-align: center;
}

.amenities-modal {
  position: fixed;
  inset: 0;
  z-index: 170;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.amenities-modal.open {
  display: flex;
}

.amenities-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 13, 10, .62);
  backdrop-filter: blur(12px);
}

.amenities-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  height: min(88vh, 920px);
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  color: #222;
  box-shadow: 0 34px 110px rgba(0, 0, 0, .34);
  padding: 0;
}

.amenities-modal-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  background: #fff;
}

.amenities-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(34, 34, 34, .14);
  border-radius: 50%;
  background: #fff;
  color: #222;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.amenities-modal-close:hover {
  background: #f7f7f7;
  border-color: rgba(34, 34, 34, .22);
  transform: scale(1.03);
}

.amenities-modal-header {
  padding: 30px 48px 22px;
  border-bottom: 1px solid rgba(34, 34, 34, .10);
  background: #fff;
}

.amenities-modal-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 800;
  color: #717171;
}

.amenities-modal-header h2 {
  max-width: 720px;
  padding-right: 58px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.05rem);
  line-height: 1.15;
  letter-spacing: -.035em;
  color: #222;
}

.amenities-modal-subtitle {
  max-width: 720px;
  margin: 10px 0 0;
  color: #717171;
  font-size: .98rem;
  line-height: 1.5;
}

.amenities-modal-list {
  overflow-y: auto;
  padding: 36px 48px 52px;
  background: #fff;
  scroll-padding-top: 36px;
}

.amenities-modal-list::before {
  content: 'Services et équipements';
  display: block;
  max-width: 760px;
  margin: 0 0 34px;
  padding: 2px 58px 2px 18px;
  white-space: pre-line;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 1.95rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 400;
  color: var(--brown);
  border-left: 4px solid var(--terracotta);
}

.amenities-modal-list::before::first-line {
  color: #222;
}

.amenities-group,
.amenities-category {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 34px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(34, 34, 34, .12);
}

.amenities-group:last-child,
.amenities-category:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.amenities-group h3,
.amenities-category h3 {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: .98rem;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #222;
}

.amenities-group ul,
.amenities-category ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 0;
  padding: 0;
}

.amenities-group li,
.amenities-category li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  color: #222;
  font-size: .86rem;
  line-height: 1.45;
}

.amenities-group li::before,
.amenities-category li::before {
  content: '';
  width: 22px;
  min-width: 22px;
  height: 22px;
  margin-top: 1px;
  background-color: #222;
  opacity: .88;
  -webkit-mask: var(--amenity-icon, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")) center / contain no-repeat;
  mask: var(--amenity-icon, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")) center / contain no-repeat;
}

.amenities-group-muted li,
.amenities-group-muted li::before {
  color: #717171;
  opacity: .72;
}

.amenities-group h3,
.amenities-category h3 {
  margin: 0;
}

.amenities-group h3::before,
.amenities-category h3::before {
  content: '';
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  background-color: #222;
  opacity: .92;
  -webkit-mask: var(--amenity-title-icon, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")) center / contain no-repeat;
  mask: var(--amenity-title-icon, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")) center / contain no-repeat;
}

.amenities-group:nth-of-type(1),
.amenities-category:nth-of-type(1) {
  --amenity-title-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h16'/%3E%3Cpath d='M5 12v5a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3v-5'/%3E%3Cpath d='M7 12V7a3 3 0 0 1 6 0v1'/%3E%3C/svg%3E");
}

.amenities-group:nth-of-type(2),
.amenities-category:nth-of-type(2) {
  --amenity-title-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M5 12V7a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v5'/%3E%3Cpath d='M5 12v7'/%3E%3Cpath d='M19 12v7'/%3E%3Cpath d='M3 19h18'/%3E%3C/svg%3E");
}

.amenities-group:nth-of-type(3),
.amenities-category:nth-of-type(3) {
  --amenity-title-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='6' width='16' height='11' rx='2'/%3E%3Cpath d='M8 21h8'/%3E%3Cpath d='M12 17v4'/%3E%3C/svg%3E");
}

.amenities-group:nth-of-type(4),
.amenities-category:nth-of-type(4) {
  --amenity-title-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z'/%3E%3Cpath d='M17 10a3 3 0 1 0 0-6'/%3E%3Cpath d='M3 21a6 6 0 0 1 12 0'/%3E%3Cpath d='M15 18a5 5 0 0 1 6 3'/%3E%3C/svg%3E");
}

.amenities-group:nth-of-type(5),
.amenities-category:nth-of-type(5) {
  --amenity-title-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v20'/%3E%3Cpath d='M17 5H9.5a3.5 3.5 0 0 0 0 7H14a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E");
}

.amenities-group:nth-of-type(6),
.amenities-category:nth-of-type(6) {
  --amenity-title-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3C/svg%3E");
}

.amenities-group:nth-of-type(7),
.amenities-category:nth-of-type(7) {
  --amenity-title-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13a10 10 0 0 1 14 0'/%3E%3Cpath d='M8.5 16.5a5 5 0 0 1 7 0'/%3E%3Cpath d='M12 20h.01'/%3E%3C/svg%3E");
}

.amenities-group:nth-of-type(8),
.amenities-category:nth-of-type(8) {
  --amenity-title-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 3h16'/%3E%3Cpath d='M7 3v18'/%3E%3Cpath d='M17 3v18'/%3E%3Cpath d='M7 8h10'/%3E%3Cpath d='M7 14h10'/%3E%3C/svg%3E");
}

.amenities-group:nth-of-type(9),
.amenities-category:nth-of-type(9) {
  --amenity-title-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v20'/%3E%3Cpath d='M4.9 4.9 19.1 19.1'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M4.9 19.1 19.1 4.9'/%3E%3C/svg%3E");
}

.amenities-group:nth-of-type(10),
.amenities-category:nth-of-type(10) {
  --amenity-title-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12c3-5 15-5 18 0'/%3E%3Cpath d='M5 12v5a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-5'/%3E%3C/svg%3E");
}

.amenities-group:nth-of-type(11),
.amenities-category:nth-of-type(11) {
  --amenity-title-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 8v8'/%3E%3Cpath d='M8 12h8'/%3E%3Cpath d='M20 12a8 8 0 1 1-16 0 8 8 0 0 1 16 0Z'/%3E%3C/svg%3E");
}

.amenities-group-muted,
.amenities-category.amenities-group-muted {
  background: #f7f7f7;
  margin-top: 10px;
  padding: 24px;
  border-radius: 18px;
  border-bottom: 0;
}

.section-actions {
  margin-top: 32px;
}

.booking {
  background:
    linear-gradient(rgba(245, 239, 230, .92), rgba(245, 239, 230, .92)),
    url('../img/pattern-marrakech.jpg') center/cover no-repeat;
}

.booking-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: start;
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.calendar-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  min-height: 320px;
}

.calendar-box h3 {
  font-size: 1.6rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  margin-bottom: 12px;
}

.calendar-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--warm-white);
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--brown);
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  column-gap: 8px;
  row-gap: 8px;
}

.calendar-weekdays {
  margin-bottom: 8px;
  color: rgba(56, 37, 28, .54);
  font-size: .78rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.day {
  aspect-ratio: 1;
  border: 1px solid rgba(117, 57, 35, .18);
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #eadbc7;
  font-size: .85rem;
  font-weight: 800;
  color: var(--brown);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}

.day:hover {
  transform: translateY(-1px);
}

.day.empty {
  background: transparent;
  border-color: transparent;
  cursor: default;
  pointer-events: none;
}

.day.busy { 
  background: #f4ecde;
  border-color: rgba(117, 57, 35, .18);
  color: #bfb3a7;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  opacity: 1;
  cursor: not-allowed;
}

.day.past {
  background: #eadbc7;
  border-color: rgba(117, 57, 35, .18);
  color: rgba(56, 37, 28, .38);
  text-decoration: none;
  cursor: not-allowed;
  opacity: .72;
}

.day.busy:hover,
.day.past:hover {
  transform: none;
}

.day.today {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.day.selected {
  background: var(--brown);
  border-color: var(--brown);
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.day.in-range {
  background: rgba(56, 37, 28, .14);
  border-color: rgba(56, 37, 28, .14);
  color: var(--brown);
  text-decoration: none;
  border-radius: 0;
  box-shadow:
    -4px 0 0 rgba(56, 37, 28, .14),
    4px 0 0 rgba(56, 37, 28, .14);
  position: relative;
  z-index: 1;
}

.day.selected-start {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 4px 0 0 rgba(56, 37, 28, .14);
}

.day.selected-end {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: -4px 0 0 rgba(56, 37, 28, .14);
}

.day.selected-start.selected-end {
  border-radius: 12px;
  box-shadow: none;
}

.day.selected:hover {
  background: #241712;
  border-color: #241712;
  color: #fff;
}

.day.in-range:hover {
  background: rgba(56, 37, 28, .20);
  border-color: rgba(56, 37, 28, .20);
  color: var(--brown);
}

.day:not(.busy):not(.past):not(.empty):not(.selected):not(.in-range):hover {
  background: #dfcbb0;
  border-color: rgba(117, 57, 35, .30);
}

.day:disabled {
  cursor: not-allowed;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  color: rgba(56, 37, 28, .68);
  font-size: .9rem;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.calendar-legend i {
  width: 14px;
  height: 14px;
  border-radius: 5px;
  display: inline-block;
}

.legend-free {
  background: #eadbc7;
  border: 1px solid rgba(117, 57, 35, .18);
}

.legend-busy {
  position: relative;
  background: #eadbc7;
  border: 1px solid rgba(117, 57, 35, .18);
}

.legend-busy::after {
  content: '';
  position: absolute;
  left: 2px;
  right: 2px;
  top: 50%;
  height: 1.5px;
  background: rgba(56, 37, 28, .62);
  transform: rotate(-35deg);
  transform-origin: center;
}

.form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
textarea,
select {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 15px 16px;
  color: var(--brown);
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  padding: 0 14px;
  color: var(--brown);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-field:focus-within {
  border-color: rgba(169, 87, 56, .42);
  box-shadow: 0 0 0 4px rgba(169, 87, 56, .10);
  background: #fff;
}

.form-field input,
.form-field select {
  height: 56px;
  min-height: 56px;
  padding: 0;
  line-height: 56px;
}

.form-field textarea {
  padding-left: 0;
  padding-right: 0;
}

.form-field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--brown) 50%), linear-gradient(135deg, var(--brown) 50%, transparent 50%);
  background-position: calc(100% - 12px) 50%, calc(100% - 6px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 24px;
}

.form-icon {
  width: 24px;
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: rgba(117, 57, 35, .72);
}

.form-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-field-textarea {
  align-items: flex-start;
  padding-top: 12px;
}

.form-field-textarea .form-icon {
  margin-top: 4px;
}

.form-field-date {
  min-height: 66px;
}

.date-field-content {
  display: grid;
  gap: 2px;
  width: 100%;
  min-width: 0;
}

.date-field-label {
  display: block;
  font-size: .72rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(117, 57, 35, .72);
}

.form-field-date input {
  height: auto;
  min-height: 0;
  line-height: 1.25;
  padding: 0;
  font-weight: 700;
}

.form-field-date input::placeholder {
  font-weight: 500;
  color: rgba(56, 37, 28, .42);
}


.form-options {
  display: grid;
  gap: 10px;
}

.phone-field {
  display: grid;
  grid-template-columns: 22px 78px minmax(0, 1fr);
  align-items: center;
  column-gap: 6px;
  padding: 0 10px;
  overflow: hidden;
}

.phone-field .form-icon {
  width: 22px;
  min-width: 22px;
  height: 22px;
}

.phone-country {
  position: relative;
  display: flex;
  align-items: center;
  width: 78px;
  min-width: 78px;
  height: 56px;
  padding-right: 6px;
  border-right: 1px solid var(--line);
}

.phone-country select {
  display: block;
  width: 100%;
  min-width: 0;
  height: 56px;
  min-height: 56px;
  padding: 0 18px 0 0 !important;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-position: calc(100% - 7px) 50%, calc(100% - 3px) 50%;
  color: #757575;
  font-size: .78rem;
  font-weight: 500;
  line-height: 56px;
  cursor: pointer;
  white-space: nowrap;
}

.phone-field input[type="tel"] {
  width: 100%;
  min-width: 0;
  height: 56px;
  min-height: 56px;
  padding: 0 !important;
  border: 0;
  background: transparent;
  line-height: 56px;
}

.phone-field:focus-within {
  border-color: rgba(169, 87, 56, .42);
  box-shadow: 0 0 0 4px rgba(169, 87, 56, .10);
  background: #fff;
}

@media (max-width: 640px) {
  .phone-field {
    grid-template-columns: 20px 74px minmax(0, 1fr);
    column-gap: 5px;
    padding: 0 9px;
  }

  .phone-field .form-icon {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  .phone-country {
    width: 74px;
    min-width: 74px;
    height: 54px;
    padding-right: 5px;
  }

  .phone-country select,
  .phone-field input[type="tel"] {
    height: 54px;
    min-height: 54px;
    line-height: 54px;
    font-size: .76rem;
  }

  .phone-country select {
    padding-right: 17px !important;
    background-position: calc(100% - 6px) 50%, calc(100% - 2px) 50%;
  }
}

.booking .form .btn-primary,
.booking-panel .form .btn-primary {
  justify-self: center;
  width: fit-content;
  min-width: 340px;
  min-height: 58px;
  margin-top: 10px;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gold);
  color: #fff;
  border: 1px solid rgba(201, 163, 91, .42);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(201, 163, 91, .28), 0 8px 18px rgba(56, 37, 28, .10);
  letter-spacing: .01em;
}

.booking .form .btn-primary svg,
.booking-panel .form .btn-primary svg {
  position: relative;
  z-index: 1;
  width: 21px;
  height: 21px;
  min-width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking .form .btn-primary span,
.booking-panel .form .btn-primary span {
  position: relative;
  z-index: 1;
}

.booking .form .btn-primary::before,
.booking-panel .form .btn-primary::before {
  content: none;
}

.booking .form .btn-primary:hover,
.booking-panel .form .btn-primary:hover {
  background: #b88d3f;
  border-color: rgba(184, 141, 63, .50);
  box-shadow: 0 22px 52px rgba(201, 163, 91, .36), 0 10px 22px rgba(56, 37, 28, .14);
}


.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(56, 37, 28, .72);
  font-size: .95rem;
  line-height: 1.45;
  cursor: pointer;
  padding: 4px 0;
}

.privacy-check input {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 22px;
  min-width: 22px;
  height: 22px;
  margin: 1px 0 0;
  border: 2px solid rgba(56, 37, 28, .38);
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
  display: block;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.privacy-check input::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 45%;
  width: 11px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform .16s ease;
}

.privacy-check input:checked {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 163, 91, .16);
}

.privacy-check input:checked::before {
  transform: translate(-50%, -50%) rotate(-45deg) scale(1);
}

.privacy-check input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(169, 87, 56, .14);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}




.location {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(201, 163, 91, .18), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(169, 87, 56, .14), transparent 30%),
    linear-gradient(135deg, #f2e5d4 0%, #fffaf3 46%, #ead6c1 100%);
  border-top: 1px solid rgba(169, 87, 56, .16);
  border-bottom: 1px solid rgba(169, 87, 56, .12);
}

.location::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(117, 57, 35, .105) 1.1px, transparent 1.4px),
    linear-gradient(135deg, rgba(201, 163, 91, .07) 25%, transparent 25%),
    linear-gradient(225deg, rgba(169, 87, 56, .055) 25%, transparent 25%);
  background-size: 22px 22px, 44px 44px, 44px 44px;
  background-position: 0 0, 0 0, 22px 22px;
  opacity: .62;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.location::after {
  content: '';
  position: absolute;
  inset: 34px clamp(18px, 4vw, 54px);
  border: 1px solid rgba(169, 87, 56, .10);
  border-radius: 42px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 250, 243, .42), transparent 34%),
    radial-gradient(circle at 86% 78%, rgba(201, 163, 91, .14), transparent 34%),
    rgba(255, 250, 243, .18);
  box-shadow: inset 0 1px 0 rgba(255, 250, 243, .55);
  pointer-events: none;
}

.location > .container {
  position: relative;
  z-index: 1;
}

.location .section-head {
  padding: 40px 44px;
  border-radius: 36px;
  background: rgba(255, 250, 243, .78);
  border: 1px solid rgba(169, 87, 56, .14);
  box-shadow: 0 26px 74px rgba(56, 37, 28, .12);
  backdrop-filter: blur(12px);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.location .section-head::after {
  content: none;
  display: none;
}

.location .section-head p {
  align-self: center;
  max-width: 620px;
}

.location-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 30px;
  align-items: stretch;
}

.location-grid > .card {
  height: 100%;
  min-height: 0;
}

.map-column {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 18px;
  min-width: 0;
  height: 100%;
}

.map-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: auto;
  min-height: 0;
  background: #fff;
  border: 1px solid rgba(169, 87, 56, .18);
  box-shadow: 0 30px 86px rgba(56, 37, 28, .18);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  filter: saturate(.82) contrast(.98);
}

.location .story-text {
  background: rgba(255, 250, 243, .86);
  border-color: rgba(169, 87, 56, .16);
  box-shadow: 0 26px 74px rgba(56, 37, 28, .12);
  backdrop-filter: blur(10px);
}

.location .section-kicker {
  color: var(--terracotta-dark);
}
.nearby-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.nearby-list div,
.nearby-accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.nearby-accordion details {
  padding: 0;
  border-bottom: 0;
}

.nearby-accordion summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  font-weight: 500;
}

.nearby-accordion summary::-webkit-details-marker {
  display: none;
}

.nearby-accordion summary::after {
  content: '+';
  width: 24px;
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  margin-left: 2px;
  border-radius: 50%;
  background: rgba(163, 92, 81, .10);
  color: var(--terracotta-dark);
  font-size: 1rem;
  line-height: 1;
  transition: transform .22s ease, background .22s ease;
}

.nearby-accordion details[open] summary::after {
  content: '–';
  background: rgba(163, 92, 81, .18);
  transform: rotate(180deg);
}

.nearby-accordion summary span:first-child {
  min-width: 0;
}

.nearby-list span:last-child,
.nearby-accordion summary span:last-child {
  margin-left: auto;
  white-space: nowrap;
  font-weight: 800;
  color: var(--terracotta-dark);
}

.nearby-accordion details p {
  margin: 0;
  padding: 12px 34px 16px 0;
  color: rgba(56, 37, 28, .70);
  font-size: .96rem;
  line-height: 1.55;
}

.nearby-accordion details[open] summary {
  border-bottom-color: rgba(163, 92, 81, .26);
}

.location-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}

.location-actions .btn-location {
  min-width: 280px;
}

.btn-location {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 250, 243, .96), rgba(245, 239, 230, .92));
  color: var(--terracotta-dark);
  border: 1px solid rgba(169, 87, 56, .24);
  box-shadow:
    0 18px 42px rgba(56, 37, 28, .12),
    inset 0 1px 0 rgba(255, 255, 255, .72);
  padding: 15px 28px;
  font-weight: 850;
}

.btn-location:hover {
  background: linear-gradient(135deg, #fffaf3, #f5efe6);
  color: var(--terracotta-dark);
  border-color: rgba(169, 87, 56, .46);
  box-shadow:
    0 22px 54px rgba(56, 37, 28, .16),
    inset 0 1px 0 rgba(255, 255, 255, .82);
}

.btn-location svg {
  position: relative;
  z-index: 1;
  width: 21px;
  height: 21px;
  min-width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.btn-location span {
  position: relative;
  z-index: 1;
}

.location-address-card,
.map-address {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  width: min(100%, 620px);
  margin: 0 auto;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255, 250, 243, .94);
  border: 1px solid rgba(169, 87, 56, .16);
  box-shadow: 0 18px 44px rgba(56, 37, 28, .10);
  color: var(--brown);
  text-align: left;
}

.location-address-icon,
.map-address-icon {
  width: 38px;
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(169, 87, 56, .10);
  color: var(--terracotta-dark);
}

.location-address-icon svg,
.map-address-icon svg,
.location-address-card > svg,
.map-address > svg {
  display: block;
  width: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  max-height: 20px !important;
  color: var(--terracotta-dark);
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-address-card > *,
.map-address > * {
  min-width: 0;
}

.location-address-card strong,
.map-address strong {
  display: inline;
  margin-right: 5px;
  color: var(--brown);
  font-weight: 850;
}

.location-address-card span:not(.location-address-icon),
.location-address-card small,
.map-address span:not(.map-address-icon),
.map-address small {
  display: block;
  color: rgba(56, 37, 28, .78);
  font-size: .96rem;
  line-height: 1.45;
}

.map-column > svg:not(.location-address-icon):not(.map-address-icon) {
  display: none !important;
}


.gallery-section {
  background: rgb(56 37 27);
  position: relative;
  z-index: 1;
}

.gallery-section .section-head h2,
.gallery-section .section-kicker,
.gallery-section .section-head p {
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--sand);
  box-shadow: 0 18px 50px rgba(56, 37, 28, .10);
}

.gallery-featured {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.gallery-featured img {
  object-position: center bottom;
}

.gallery-item img[src*="chambre-dar27"],
.gallery-item img[src*="riad-photo-02"] {
  object-position: center bottom;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(56, 37, 28, .72));
  opacity: .9;
}

.gallery-item span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  text-align: left;
}


.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.gallery-all-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.gallery-all-btn {
  background: #fff;
  border-color: rgba(56, 37, 28, .14);
  color: var(--brown);
  box-shadow: 0 16px 46px rgba(56, 37, 28, .10);
}

.gallery-all-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-all-btn:hover {
  background: var(--brown);
  color: #fff;
  border-color: var(--brown);
  box-shadow: 0 20px 54px rgba(56, 37, 28, .18);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 52px 4vw 34px;
  background: rgba(30, 20, 15, .88);
  backdrop-filter: blur(12px);
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  z-index: 110;
  width: min(1500px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  text-align: center;
}

.lightbox-content img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
}

.lightbox-content p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .88);
  font-weight: 700;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(255, 250, 243, .92);
  color: var(--brown);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 45px rgba(0, 0, 0, .20);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  z-index: 160;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  background: rgba(255, 250, 243, .96);
}

.lightbox-nav {
  top: 0;
  bottom: 0;
  z-index: 120;
  width: 5vw;
  min-width: 52px;
  max-width: 80px;
  height: auto;
  border-radius: 0;
  font-size: 2.8rem;
  background: linear-gradient(90deg, rgba(255, 250, 243, .12), rgba(255, 250, 243, .025));
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(2px);
  transition: background .2s ease, color .2s ease;
}

.lightbox-nav:hover {
  background: linear-gradient(90deg, rgba(255, 250, 243, .32), rgba(255, 250, 243, .08));
  color: var(--warm-white);
}

.lightbox-prev {
  left: 0;
}

.lightbox-next {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 250, 243, .12), rgba(255, 250, 243, .025));
}

.lightbox-next:hover {
  background: linear-gradient(270deg, rgba(255, 250, 243, .32), rgba(255, 250, 243, .08));
}

.faq {
  background: var(--sand);
}

details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.08rem;
}

details p {
  margin: 12px 0 0;
  color: rgba(56, 37, 28, .74);
}

/* Contact section */
.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 250, 243, .16), transparent 30%),
    radial-gradient(circle at 86% 72%, rgba(201, 163, 91, .18), transparent 34%),
    linear-gradient(135deg, var(--terracotta-dark) 0%, var(--terracotta) 48%, #8f452d 100%);
  color: #fff;
  padding: 104px 0;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 250, 243, .16) 1px, transparent 1.4px),
    linear-gradient(135deg, rgba(255, 250, 243, .055) 25%, transparent 25%);
  background-size: 24px 24px, 48px 48px;
  opacity: .46;
  pointer-events: none;
}

.contact-section::after {
  content: '';
  position: absolute;
  inset: 30px clamp(18px, 4vw, 54px);
  border: 1px solid rgba(255, 250, 243, .14);
  border-radius: 42px;
  background: rgba(255, 250, 243, .035);
  box-shadow: inset 0 1px 0 rgba(255, 250, 243, .18);
  pointer-events: none;
}

.contact-section > .container {
  position: relative;
  z-index: 1;
}

.contact-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 52px;
  align-items: start;
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 36px;
  background: rgba(255, 250, 243, .08);
  border: 1px solid rgba(255, 250, 243, .14);
  box-shadow: 0 30px 90px rgba(56, 37, 28, .20);
  backdrop-filter: blur(12px);
}

.contact-heading h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 0 0 18px;
}

.contact-heading p {
  margin: 0;
  max-width: 500px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.08rem;
}

.contact-heading h2::after {
  content: '';
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(255, 250, 243, .72);
}

.contact-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 243, .12);
  border: 1px solid rgba(255, 250, 243, .18);
  color: rgba(255, 255, 255, .86);
  font-size: .92rem;
  font-weight: 750;
}

.contact-eyebrow {
  color: rgba(255, 255, 255, .78);
  margin-bottom: 16px;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
  font-weight: 400;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 250, 243, .11);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 14px 36px rgba(56, 37, 28, .10);
  transition: background .2s ease, transform .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-item:hover {
  color: #fff;
  background: rgba(255, 250, 243, .18);
  border-color: rgba(255, 250, 243, .30);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(56, 37, 28, .16);
}

.contact-icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 17px;
  background: rgba(255, 250, 243, .16);
  border: 1px solid rgba(255, 250, 243, .14);
  box-shadow: inset 0 1px 0 rgba(255, 250, 243, .20);
}

.contact-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 640px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-section::after {
    inset: 18px 10px;
    border-radius: 28px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 22px;
    border-radius: 28px;
    align-items: stretch;
  }

  .contact-heading,
  .contact-list {
    width: 100%;
    min-width: 0;
  }

  .contact-note {
    width: 100%;
    justify-content: center;
    text-align: center;
    border-radius: 18px;
  }

  .contact-item {
    width: 100%;
    gap: 14px;
    font-size: .98rem;
    padding: 15px 14px;
    border-radius: 18px;
  }

  .contact-icon {
    width: 38px;
    min-width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .contact-icon svg {
    width: 21px;
    height: 21px;
  }
}

.footer {
  padding: 58px 0 28px;
  background: var(--brown);
  color: rgba(255, 255, 255, .82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .75fr .75fr .9fr;
  gap: 34px;
  align-items: start;
}

.footer-brand p {
  max-width: 420px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .70);
}

.footer-logo {
  color: #fff;
}

.footer h3 {
  color: #fff;
  margin: 0 0 16px;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer a {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, .70);
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 34px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .56);
  font-size: .92rem;
}

.sticky-reserve {
  display: flex;
  justify-content: center;
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 22px;
  z-index: 60;
  transform: translateX(-50%);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  pointer-events: none;
}

.sticky-reserve.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(18px);
  pointer-events: none;
}

.sticky-reserve .btn {
  width: auto;
  min-width: 0;
  white-space: nowrap;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 17px 9px 11px;
  background: #9D5E53;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .92);
  font-size: .76rem;
  box-shadow: 0 18px 48px rgba(157, 94, 83, .34), 0 10px 26px rgba(56, 37, 28, .22);
}

.sticky-reserve .btn::before {
  content: '↓';
  position: static;
  inset: auto;
  z-index: auto;
  display: inline-grid;
  place-items: center;
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  color: #9D5E53;
  font-size: .72rem;
  line-height: 1;
  transform: none;
  transition: none;
  pointer-events: none;
}

.sticky-reserve.is-after-calendar .btn::before {
  content: '↑';
}

.sticky-reserve .btn::after {
  display: none;
}

.sticky-reserve .btn:hover {
  background: #864f46;
  color: #fff;
  box-shadow: 0 22px 54px rgba(157, 94, 83, .42), 0 12px 30px rgba(56, 37, 28, .26);
}

.sticky-reserve .btn:hover::before {
  background: rgba(255, 255, 255, .92);
  color: #864f46;
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(56, 37, 28, .14);
  background: rgba(255, 250, 243, .92);
  color: var(--brown);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 48px rgba(56, 37, 28, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .2s ease;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: #fff;
}


/* Ajustements demandés par la propriétaire */
.hero-title-main,
.hero-title-sub {
  display: block;
}

.hero-title-sub {
  margin-top: 8px;
  font-size: 70%;
  line-height: 1.04;
}

.hero p {
  font-size: 1.08rem;
  line-height: 1.75;
}

.topbar:not(.is-scrolled) .brand-mark {
  filter: brightness(0) invert(1);
}

.topbar.is-scrolled .brand-mark {
  filter: none;
}

.story-text {
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.features .section-head p {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.services-section .section-head {
  display: block;
  width: 100%;
  min-height: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  text-align: center;
  overflow: visible;
}

.services-section .section-head h2,
.services-section .features .section-head h2 {
  max-width: none;
  margin: 0 auto;
  font-size: clamp(1.95rem, 3.5vw, 3.72rem);
  text-align: center;
}

.services-section .card {
  text-align: center;
}

.services-section .card h3 {
  font-size: 1.4rem;
  text-align: center;
}

.services-section .card p {
  font-size: .8rem;
  line-height: 1.55;
  text-align: center;
}

.reviews .section-head {
  display: block;
  margin-bottom: 34px;
  text-align: center;
}

.reviews .section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 3.22rem);
  text-align: center;
  white-space: nowrap;
}

.airbnb-award-note {
  font-size: .84rem;
}

.airbnb-award-note strong {
  font-size: 1.02rem;
}

.calendar-box h3 {
  text-align: center;
}

.booking .form .btn-primary,
.booking-panel .form .btn-primary {
  background: #38251bdb;
  border-color: rgba(169, 87, 56, .48);
  box-shadow: 0 18px 42px rgba(169, 87, 56, .28), 0 8px 18px rgba(56, 37, 28, .10);
}

.booking .form .btn-primary:hover,
.booking-panel .form .btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: rgba(117, 57, 35, .54);
  box-shadow: 0 22px 52px rgba(117, 57, 35, .32), 0 10px 22px rgba(56, 37, 28, .14);
}

.privacy-check input:checked {
  background: #524238;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(169, 87, 56, .16);
}

.location .section-head {
  display: block;
  text-align: center;
}

.location .section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 3.22rem);
  text-align: center;
  white-space: nowrap;
}

.contact-heading {
  text-align: center;
}

.contact-heading h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  text-align: center;
}

.contact-heading h2::after {
  margin-left: auto;
  margin-right: auto;
}

.contact-heading p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-item {
  font-weight: 400;
}


.footer-brand {
  display: grid;
  justify-items: center;
  text-align: center;
}

.footer-brand .footer-logo {
  justify-content: center;
  min-width: 0;
}

.footer-brand .brand-mark {
  background-position: center;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 420px;
  margin: 18px auto 0;
  font-size: .8rem;
  text-align: center;
}

@media (max-width: 640px) {
  .hero-title-sub {
    font-size: 70%;
  }

  .hero p {
    font-size: 1rem;
  }

  .services-section .section-head {
    padding: 0;
  }

  .services-section .section-head h2,
  .services-section .features .section-head h2 {
    font-size: clamp(1.8rem, 8.8vw, 3rem);
  }

  .services-section .card h3 {
    font-size: 1.24rem;
  }

  .services-section .card p {
    font-size: .78rem;
  }

  .reviews .section-head h2,
  .location .section-head h2 {
    white-space: normal;
    font-size: clamp(1.65rem, 8vw, 2.45rem);
  }

  .airbnb-award-note {
    text-align: center;
    font-size: .78rem;
  }

  .airbnb-award-note strong {
    font-size: .96rem;
  }

  .location .section-head {
    text-align: center;
  }

  .contact-heading h2 {
    font-size: clamp(1.55rem, 7.5vw, 2.2rem);
  }

  .footer-brand p {
    font-size: .78rem;
  }
}
@media (max-width: 940px) {
  .map-column {
    height: auto;
  }

  .map-card {
    height: 460px;
  }

  .map-card iframe {
    height: 100%;
  }
  .menu,
  .lang-switch {
    display: none;
  }

  .burger {
    display: block;
  }

  .menu.open {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    background: rgba(163, 92, 81, .92);
    border-bottom: 1px solid rgba(255, 250, 243, .18);
    padding: 12px 20px 20px;
    box-shadow: 0 22px 48px rgba(56, 37, 28, .18);
  }

  .menu.open a {
    color: #fff;
    opacity: 1;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 250, 243, .16);
  }

  .menu.open a:hover {
    color: #fffaf3;
  }

  .menu.open .mobile-lang-switch {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 18px 0 2px;
  }

  .menu.open .mobile-lang-switch a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 250, 243, .34);
    border-radius: 50%;
    color: #fff;
  }

  .menu.open .mobile-lang-switch a.active {
    background: rgba(255, 250, 243, .94);
    border-color: rgba(255, 250, 243, .94);
    color: var(--terracotta-dark);
  }

  .section-head,
  .story-card,
  .spaces-grid,
  .booking-panel,
  .location-grid,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .features .section-head {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
    min-height: 0;
    padding: 34px 34px;
  }


  .features .section-head p {
    margin: 0;
    max-width: 680px;
    padding: 20px 22px;
  }
  .features .section-head > div:last-child {
    display: block;
    padding-top: 0;
  }

  .features .section-head > div:last-child {
    display: block;
    padding-top: 0;
  }

  .booking .section-head {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
    min-height: 0;
    padding: 34px 34px;
  }

  .booking .section-head::after {
    position: static;
    justify-self: start;
    order: -1;
    max-width: 100%;
    margin-bottom: 2px;
  }

  .booking-head-content {
    padding-top: 0;
  }

  .booking-head-text {
    max-width: 680px;
    padding: 0;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .story-image {
    min-height: 360px;
  }

  .story-intro {
    grid-template-columns: 190px 1fr;
  }

  .story-logo {
    width: 190px;
  }
  
  .airbnb-award {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .airbnb-award-main {
    justify-content: center;
  }

  .airbnb-award-score,
  .airbnb-award-comments {
    border-left: 0;
    border-top: 1px solid rgba(32, 32, 32, .12);
    padding-left: 0;
    padding-top: 20px;
  }
}

@media (max-width: 640px) {
  .location::after {
    inset: 18px 10px;
    border-radius: 28px;
  }

  .location .section-head {
    padding: 24px 22px;
    border-radius: 26px;
    background: rgba(255, 250, 243, .88);
    gap: 18px;
    align-items: start;
  }
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    height: 86px;
  }

  .menu.open {
    top: 86px;
  }

  .brand {
    min-width: 150px;
  }

  .brand-mark {
    width: 150px;
    height: 78px;
    background-size: contain;
    background-position: left center;
  }

  .hero {
    min-height: 100svh;
    padding-top: 112px;
    padding-bottom: 96px;
  }

  .hero-video {
    transform: scale(1.12);
  }

  .hero-actions .btn {
    width: min(100%, 290px);
    min-width: 0;
    max-width: 100%;
    min-height: 54px;
    padding: 14px 20px;
    font-size: .96rem;
  }

  .hero-actions .btn-book-now svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .booking .form .btn-primary,
  .booking-panel .form .btn-primary {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
    padding: 15px 20px;
  }

  .booking-rare-box {
    grid-template-columns: auto 1fr;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    margin: 0 !important;
    padding: 9px 13px !important;
    border-radius: 999px;
  }

  .booking-rare-icon {
    width: 28px;
    min-width: 28px;
    height: 28px;
    border-radius: 999px;
    font-size: 1.05rem;
  }

  .booking-rare-box strong {
    font-size: .84rem;
    line-height: 1.24;
    letter-spacing: -.01em;
  }


  section {
    padding: 70px 0;
  }

  .features .section-head {
    padding: 24px 22px;
    border-radius: 26px;
    gap: 18px;
    min-height: 0;
  }


  .features .section-head h2 {
    font-size: clamp(2.25rem, 11.5vw, 3.75rem);
    line-height: .98;
  }

  .features .section-head p {
    max-width: none;
    margin: 0;
    padding: 18px 18px;
    border-radius: 20px;
    font-size: .98rem;
    line-height: 1.58;
  }

  .services-section .section-head {
    width: 100%;
    padding: 24px 22px;
  }


  .features .section-head p {
    max-width: none;
    margin: 0;
    padding: 18px 18px;
    border-radius: 20px;
    font-size: .98rem;
    line-height: 1.58;
  }

  .booking .section-head {
    padding: 24px 22px;
    border-radius: 26px;
    gap: 18px;
    min-height: 0;
  }

  .booking .section-head::after {
    padding: 7px 11px;
    font-size: .62rem;
    letter-spacing: .04em;
  }

  .booking .section-head h2 {
    font-size: clamp(2.25rem, 11.5vw, 3.75rem);
    line-height: .98;
  }

  .booking-head-text {
    max-width: none;
    padding: 0;
    border-radius: 0;
    font-size: .98rem;
    line-height: 1.58;
  }

  .card {
    min-height: 0;
    padding: 24px;
    border-radius: 24px;
  }

  .card h3 {
    font-size: 1.55rem;
  }

  h1 {
    font-size: clamp(2.3rem, 10.8vw, 3.3rem);
  }

  .story-head {
    gap: 26px;
  }

  .story-intro {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    justify-items: center;
    text-align: left;
  }

  .story-logo {
    width: 230px;
    max-width: 100%;
    padding: 20px 22px;
    margin: 0 auto;
  }

  .story-intro p {
    justify-self: stretch;
  }

  .story-title span {
    white-space: normal;
  }

  .grid,
  .services-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .map-card {
    height: 360px;
    border-radius: 24px;
  }

  .location-address-card,
  .map-address {
    grid-template-columns: auto 1fr;
    width: 100%;
    margin: 0;
    padding: 13px 14px;
    border-radius: 18px;
  }

  .location-address-icon,
  .map-address-icon {
    width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .location-address-icon svg,
  .map-address-icon svg,
  .location-address-card > svg,
  .map-address > svg {
    width: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    height: 18px !important;
    min-height: 18px !important;
    max-height: 18px !important;
  }

  .location-actions {
    display: grid;
    gap: 12px;
    margin-top: 18px;
  }

  .location-actions .btn,
  .location-actions .btn-location {
    width: 100%;
    min-width: 0;
  }

  .nearby-accordion summary {
    gap: 12px;
  }

  .nearby-accordion summary::after {
    width: 22px;
    min-width: 22px;
    height: 22px;
  }

  .nearby-accordion details p {
    padding-right: 0;
    font-size: .93rem;
  }

  .review-strip {
    grid-auto-columns: 86%;
  }

  .reviews-all-actions {
    margin-top: 26px;
  }

  .reviews-open-btn {
    width: auto;
    padding: 10px 15px;
    font-size: .70rem;
  }

  .amenities-all-actions {
    margin-top: 28px;
  }

  .amenities-open-btn {
    width: 100%;
  }

  .amenities-modal {
    padding: 0;
    align-items: stretch;
  }

  .amenities-modal-dialog {
    width: 100%;
    height: 100svh;
    max-height: 100svh;
    border-radius: 0;
    grid-template-rows: minmax(0, 1fr);
  }

  .amenities-modal-header {
    padding: 20px 20px 14px;
  }

  .amenities-modal-header h2 {
    padding-right: 48px;
    font-size: clamp(1.85rem, 10vw, 2.45rem);
  }

  .amenities-modal-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .amenities-modal-list {
    padding: 30px 20px 44px;
    scroll-padding-top: 30px;
  }

  .amenities-modal-list::before {
    margin-bottom: 30px;
    padding-right: 54px;
    font-size: clamp(1.25rem, 6.4vw, 1.65rem);
    line-height: 1.14;
  }

  .amenities-group,
  .amenities-category {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 0;
  }

  .amenities-group ul,
  .amenities-category ul {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .amenities-group h3,
  .amenities-category h3 {
    font-size: .92rem;
  }

  .amenities-group li,
  .amenities-category li {
    font-size: .84rem;
  }

  .amenities-group-muted,
  .amenities-category.amenities-group-muted {
    padding: 20px;
  }

  .reviews-modal {
    padding: 0;
    align-items: stretch;
  }

  .reviews-modal-dialog {
    width: 100%;
    height: 100svh;
    max-height: 100svh;
    border-radius: 0;
  }

  .reviews-modal-header {
    padding: 20px 20px 12px;
  }

  .reviews-modal-header h2 {
    padding-right: 48px;
    font-size: clamp(1.45rem, 8vw, 1.95rem);
  }

  .reviews-modal-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .reviews-modal-filters {
    padding: 12px 20px;
  }

  .reviews-modal-toolbar {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 20px;
  }

  .reviews-count {
    white-space: normal;
  }

  .reviews-modal-list {
    padding: 4px 20px 28px;
  }

  .reviews-modal-item-head {
    display: grid;
    gap: 4px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-featured {
    grid-column: span 1;
  }

  .gallery-featured img {
    object-position: center bottom;
  }

  .gallery-all-actions {
    margin-top: 26px;
  }

  .gallery-all-btn {
    width: 100%;
    padding: 14px 18px;
  }

  .space-small {
    min-height: 300px;
  }

  .space-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 13px 14px;
    border-radius: 18px;
  }

  .space-caption h3 {
    font-size: 1.45rem;
  }

  .space-caption p {
    font-size: .9rem;
  }

  .lightbox {
    padding: 54px 14px 22px;
  }

  .lightbox-nav {
    top: 0;
    bottom: 0;
    transform: none;
    z-index: 125;
    width: 10vw;
    min-width: 42px;
    max-width: 70px;
    height: 100%;
    border-radius: 0;
    font-size: 2.35rem;
    background: rgba(255, 250, 243, .14);
    color: #fff;
    box-shadow: none;
    backdrop-filter: blur(8px);
  }

  .lightbox-prev {
    left: 0;
    border-radius: 0;
    background: linear-gradient(90deg, rgba(255, 250, 243, .24), rgba(255, 250, 243, .04));
  }

  .lightbox-next {
    right: 0;
    border-radius: 0;
    background: linear-gradient(270deg, rgba(255, 250, 243, .24), rgba(255, 250, 243, .04));
  }

  .lightbox-nav:hover {
    background: rgba(255, 250, 243, .28);
  }

  .lightbox-content {
    width: 100%;
    max-width: none;
    height: 100%;
  }

  .lightbox-content img {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 18px;
    object-fit: contain;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
    z-index: 160;
  }

  .calendar-box {
    padding: 18px;
  }

  .calendar-box h3 {
    font-size: 1.4rem;
  }

  .calendar-weekdays,
  .calendar-grid {
    column-gap: 5px;
    row-gap: 5px;
  }

  .day {
    border-radius: 9px;
    font-size: .76rem;
  }

  .day.in-range {

  box-shadow:

    -3px 0 0 rgba(56, 37, 28, .14),

    3px 0 0 rgba(56, 37, 28, .14);

}

.day.selected-start {

  box-shadow: 3px 0 0 rgba(56, 37, 28, .14);

}

.day.selected-end {

  box-shadow: -3px 0 0 rgba(56, 37, 28, .14);

}

  .day.selected-start.selected-end {
    border-radius: 9px;
    box-shadow: none;
  }

  .sticky-reserve {
    bottom: 14px;
    max-width: calc(100% - 28px);
  }

  .sticky-reserve .btn {
    padding: 9px 13px;
    font-size: .72rem;
  }
  
  .form-field {
    min-height: 56px;
    border-radius: 16px;
    padding: 0 12px;
  }

  .form-icon {
    width: 22px;
    min-width: 22px;
    height: 22px;
  }

  .form-icon svg {
    width: 20px;
    height: 20px;
  }

  .form-field-textarea {
    padding-top: 10px;
  }

  .form-field-date {
    min-height: 64px;
  }

  .date-field-label {
    font-size: .68rem;
  }

  .privacy-check {
    font-size: .98rem;
    gap: 13px;
  }

  .privacy-check input {
    width: 24px;
    min-width: 24px;
    height: 24px;
    border-radius: 8px;
  }
  
  .airbnb-award {
    padding: 24px 20px;
    border-radius: 24px;
  }
  .airbnb-award-trigger::after {
    position: static;
    display: inline-flex;
    justify-content: center;
    width: fit-content;
    margin: 4px auto 0;
    font-size: .68rem;
  }

  .airbnb-award-main {
    gap: 12px;
  }

  .airbnb-laurel {
    font-size: 2rem;
  }

  .airbnb-award-main strong {
    font-size: 1.65rem;
  }
}


/* Révision finale — demandes de la propriétaire */
.hero-badges,
.story-label {
  display: none !important;
}

/* Section contact restaurée depuis la version précédente */
.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 250, 243, .16), transparent 30%),
    radial-gradient(circle at 86% 72%, rgba(201, 163, 91, .18), transparent 34%),
    linear-gradient(135deg, var(--terracotta-dark) 0%, var(--terracotta) 48%, #8f452d 100%);
  color: #fff;
  padding: 104px 0;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  display: block;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 250, 243, .16) 1px, transparent 1.4px),
    linear-gradient(135deg, rgba(255, 250, 243, .055) 25%, transparent 25%);
  background-size: 24px 24px, 48px 48px;
  opacity: .46;
  pointer-events: none;
}

.contact-section::after {
  content: '';
  position: absolute;
  inset: 30px clamp(18px, 4vw, 54px);
  border: 1px solid rgba(255, 250, 243, .14);
  border-radius: 42px;
  background: rgba(255, 250, 243, .035);
  box-shadow: inset 0 1px 0 rgba(255, 250, 243, .18);
  pointer-events: none;
}

.contact-section > .container {
  position: relative;
  z-index: 1;
}

.contact-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 52px;
  align-items: start;
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 36px;
  background: rgba(255, 250, 243, .08);
  border: 1px solid rgba(255, 250, 243, .14);
  box-shadow: 0 30px 90px rgba(56, 37, 28, .20);
  backdrop-filter: blur(12px);
}

.contact-heading {
  text-align: center;
}

.contact-heading h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 0 0 18px;
  text-align: center;
}

.contact-heading h2::after {
  content: '';
  display: block;
  width: 72px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: rgba(255, 250, 243, .72);
}

.contact-heading p {
  margin: 0 auto;
  max-width: 500px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.08rem;
  text-align: center;
}

.contact-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 243, .12);
  border: 1px solid rgba(255, 250, 243, .18);
  color: rgba(255, 255, 255, .86);
  font-size: .92rem;
  font-weight: 750;
}

.contact-eyebrow {
  color: rgba(255, 255, 255, .78);
  margin-bottom: 16px;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
  font-weight: 400;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 250, 243, .11);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 14px 36px rgba(56, 37, 28, .10);
  transition: background .2s ease, transform .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-item:hover {
  color: #fff;
  background: rgba(255, 250, 243, .18);
  border-color: rgba(255, 250, 243, .30);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(56, 37, 28, .16);
}

.contact-icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 17px;
  background: rgba(255, 250, 243, .16);
  border: 1px solid rgba(255, 250, 243, .14);
  box-shadow: inset 0 1px 0 rgba(255, 250, 243, .20);
}

.contact-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Rooftop parallax section */
.parallax-rooftop {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('../img/Rooftop-vue-02.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
}

.parallax-rooftop-overlay {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(90deg, rgba(43, 29, 22, .72), rgba(43, 29, 22, .32), rgba(43, 29, 22, .18));
  pointer-events: none;
}

.parallax-rooftop-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.parallax-rooftop .eyebrow {
  color: rgba(255, 255, 255, .82);
}

.parallax-rooftop h2 {
  max-width: 620px;
  color: #fff;
  text-shadow: 0 16px 34px rgba(0, 0, 0, .26);
}

.parallax-rooftop p {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .88);
  font-size: 1.08rem;
  line-height: 1.75;
}

/* Patio parallax section */
.parallax-patio {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('../img/gallery-071.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
}

.parallax-patio-overlay {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(90deg, rgba(43, 29, 22, .74), rgba(43, 29, 22, .38), rgba(43, 29, 22, .18));
  pointer-events: none;
}

.parallax-patio-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.parallax-patio .eyebrow {
  color: rgba(255, 255, 255, .84);
}

.parallax-patio h2 {
  max-width: 620px;
  color: #fff;
  text-shadow: 0 16px 34px rgba(0, 0, 0, .28);
}

.parallax-patio p {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .88);
  font-size: 1.08rem;
  line-height: 1.75;
}

@media (max-width: 940px) {
  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .parallax-patio,
  .parallax-rooftop {
    background-attachment: scroll;
  }

  .parallax-patio {
    min-height: 520px;
    background-position: center;
  }

  .parallax-rooftop {
    min-height: 480px;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-section::after {
    inset: 18px 10px;
    border-radius: 28px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 22px;
    border-radius: 28px;
    align-items: stretch;
  }

  .contact-heading,
  .contact-list {
    width: 100%;
    min-width: 0;
  }

  .contact-heading h2 {
    font-size: clamp(1.55rem, 7.5vw, 2.2rem);
  }

  .contact-note {
    width: 100%;
    justify-content: center;
    text-align: center;
    border-radius: 18px;
  }

  .contact-item {
    width: 100%;
    gap: 14px;
    font-size: .98rem;
    padding: 15px 14px;
    border-radius: 18px;
  }

  .contact-icon {
    width: 38px;
    min-width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .contact-icon svg {
    width: 21px;
    height: 21px;
  }

  .parallax-patio {
    min-height: 520px;
    background-position: 50% 42%;
  }

  .parallax-rooftop {
    min-height: 430px;
    background-position: center;
  }

  .parallax-patio-overlay {
    background: linear-gradient(90deg, rgba(43, 29, 22, .70), rgba(43, 29, 22, .42), rgba(43, 29, 22, .24));
  }

  .parallax-patio-content {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .parallax-rooftop-content {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .parallax-patio p,
  .parallax-rooftop p {
    font-size: 1rem;
  }
}

/* Logo et navigation : blanc plus doux et cohérent */
.topbar:not(.is-scrolled) .menu a,
.topbar:not(.is-scrolled) .lang-switch a,
.topbar:not(.is-scrolled) .burger {
  color: rgba(245, 239, 230, .82);
}

.topbar:not(.is-scrolled) .brand-mark {
  opacity: .82;
  filter: brightness(0) saturate(100%) invert(94%) sepia(13%) saturate(493%) hue-rotate(328deg) brightness(103%) contrast(101%);
}

.topbar.is-scrolled .brand-mark {
  opacity: .82;
}

/* Histoire du riad */
.story-main-title {
  text-align: center;
  margin-bottom: 30px;
}

.story-main-title + p {
  margin-top: 0;
}

/* Titres harmonisés avec “Les voyageurs parlent de Dar 27” */
.section-title-unified,
.section-title-reference,
#espaces .section-head h2,
.gallery-section .section-head h2,
.location .section-head h2,
.faq .section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 3.22rem);
  line-height: 1.02;
  letter-spacing: -.03em;
}

/* Suppression du cadre autour du titre “Un riad privatisé…” */
#espaces .section-head {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: end;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

#espaces .section-head p {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

/* Boutons des sections photo réduits d’environ 20 % */
.parallax-gallery-btn {
  padding: 11px 18px;
  min-height: 0;
  font-size: .82rem;
  border-radius: 10px;
}

/* Cartes de services plus compactes */
.services-section .grid {
  gap: 18px;
  align-items: start;
}

.services-section .card {
  min-height: 0;
  padding: 21px 22px;
  border-radius: 22px;
}

.services-section .card h3 {
  font-size: 1.22rem;
  line-height: 1.08;
}

.services-section .card p {
  margin-top: 10px;
  font-size: .77rem;
  line-height: 1.48;
}

/* Bouton des équipements réduit d’environ 20 % */
.amenities-all-actions {
  margin-top: 26px;
}

.amenities-open-btn {
  width: auto;
  padding: 10px 16px;
  gap: 7px;
  font-size: .78rem;
  border-radius: 10px;
}

.amenities-open-btn svg {
  width: 15px;
  height: 15px;
}

/* Distinction Airbnb réduite */
.airbnb-award-note {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: .70rem;
  line-height: 1.45;
}

.airbnb-award-note strong {
  margin-bottom: 5px;
  font-size: .86rem;
}

/* Commentaires plus compacts */
.review-strip {
  grid-auto-columns: minmax(275px, 350px);
  gap: 16px;
}

.review-card {
  min-height: 0;
  height: 300px;
  padding: 20px;
  border-radius: 20px;
}

.review-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  line-clamp: 8;
  overflow: hidden;
  font-size: .88rem;
  line-height: 1.55;
}

.review-author {
  margin-top: 16px;
  font-size: .88rem;
}

.review-meta {
  margin-top: 5px;
  font-size: .74rem;
}

.stars {
  margin-bottom: 12px;
  font-size: .84rem;
}

/* Titre de la demande de réservation centré */
.booking-request-title {
  text-align: center;
  margin-bottom: 12px;
}

/* Localisation : suppression des motifs, cadres et transparences */
.location {
  background: var(--warm-white);
  border-top: 0;
  border-bottom: 0;
}

.location::before,
.location::after {
  content: none;
  display: none;
}

.location .section-head {
  display: block;
  margin-bottom: 42px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
  text-align: center;
}

.location-grid > .card {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.location-grid > .card h3 {
  margin-bottom: 18px;
  text-align: center;
}

.nearby-list {
  margin-top: 0;
}

.map-card {
  background: transparent;
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}

.location-address-card,
.map-address {
  padding: 8px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.location-address-icon,
.map-address-icon {
  background: rgba(169, 87, 56, .08);
}

/* Bouton Google Maps réduit d’environ 30 % */
.location-actions .btn-location,
.btn-location {
  min-width: 0;
  padding: 9px 16px;
  gap: 7px;
  font-size: .72rem;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(56, 37, 28, .09);
}

.btn-location svg {
  width: 15px;
  min-width: 15px;
  height: 15px;
}

/* Contact : bloc plus petit, centré et sans motifs ni cadres translucides */
.contact-section {
  padding: 72px 0;
  background: #95764b;
}

.contact-section::before,
.contact-section::after {
  content: none;
  display: none;
}

.contact-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.contact-heading {
  text-align: center;
}

.contact-main-title,
.contact-heading h2 {
  font-size: clamp(1.45rem, 2.7vw, 2.05rem);
  text-align: center;
}

.contact-heading h2::after {
  width: 48px;
  height: 2px;
  margin: 12px auto 0;
  background: rgba(245, 239, 230, .58);
}

.contact-heading p {
  max-width: 430px;
  margin: 14px auto 0;
  font-size: .82rem;
  line-height: 1.55;
  text-align: center;
}

.contact-list {
  gap: 8px;
}

.contact-item {
  gap: 10px;
  padding: 7px 4px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: .82rem;
}

.contact-item:hover {
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: translateX(3px);
}

.contact-icon {
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 250, 243, .10);
  border: 1px solid rgba(255, 250, 243, .12);
  box-shadow: none;
}

.contact-icon svg {
  width: 17px;
  height: 17px;
}

.contact-item small {
  font-size: .78rem;
}

/* Bouton flottant transparent, dans le style de la première section */
.sticky-reserve .btn {
  padding: 11px 18px 11px 13px;
  background: rgba(56, 37, 28, .60);
  color: rgba(255, 250, 243, .92);
  border: 1px solid rgba(255, 250, 243, .62);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(56, 37, 28, .18);
  backdrop-filter: blur(8px);
  font-size: .76rem;
}

.sticky-reserve .btn:hover {
  background: rgba(56, 37, 28, .76);
  border-color: rgba(255, 250, 243, .86);
  box-shadow: 0 18px 40px rgba(56, 37, 28, .24);
}

.sticky-reserve .btn::before {
  background: rgba(255, 250, 243, .92);
  color: var(--brown);
}

@media (max-width: 940px) {
  #espaces .section-head,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  #espaces .section-head {
    gap: 18px;
  }

  .contact-panel {
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .story-main-title {
    margin-bottom: 24px;
  }

  .section-title-unified,
  .section-title-reference,
  #espaces .section-head h2,
  .gallery-section .section-head h2,
  .location .section-head h2,
  .faq .section-head h2 {
    font-size: clamp(1.65rem, 8vw, 2.45rem);
  }

  #espaces .section-head {
    padding: 0;
  }

  #espaces .section-head p {
    padding: 0;
  }

  .parallax-gallery-btn {
    padding: 10px 15px;
    font-size: .76rem;
  }

  .services-section .card {
    padding: 18px;
  }

  .amenities-open-btn {
    width: auto;
    padding: 9px 14px;
    font-size: .74rem;
  }

  .review-strip {
    grid-auto-columns: 82%;
  }

  .review-card {
    height: 280px;
    padding: 18px;
  }

  .location .section-head {
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .location-grid > .card {
    padding: 0;
  }

  .location-actions {
    display: flex;
    justify-content: center;
    margin-top: 12px;
  }

  .location-actions .btn-location {
    width: auto;
    padding: 9px 14px;
    font-size: .70rem;
  }

  .contact-section {
    padding: 54px 0;
  }

  .contact-panel {
    gap: 24px;
    padding: 0;
  }

  .contact-main-title,
  .contact-heading h2 {
    font-size: clamp(1.4rem, 7vw, 1.9rem);
  }

  .contact-heading p {
    font-size: .78rem;
  }

  .contact-item {
    padding: 6px 0;
    font-size: .78rem;
  }

  .contact-icon {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }

  .contact-icon svg {
    width: 16px;
    height: 16px;
  }
}
 
/* Logo harmonisé avec la couleur du menu */
.topbar:not(.is-scrolled) .brand-mark {
  opacity: .82;
  filter: brightness(0) saturate(100%) invert(94%) sepia(10%) saturate(380%) hue-rotate(328deg) brightness(102%) contrast(96%);
}

.topbar:not(.is-scrolled) .brand-mark:hover {
  opacity: 1;
}

.topbar.is-scrolled .brand-mark {
  opacity: .88;
  filter: brightness(0) saturate(100%) invert(17%) sepia(24%) saturate(917%) hue-rotate(338deg) brightness(94%) contrast(91%);
}
/* =========================================================
   Ajustements finaux demandés par la propriétaire — 28/06/2026
   ========================================================= */

/* 1. Centrer « Un riad privatisé pour votre séjour » */
#espaces .section-head,
.features:not(.services-section) .section-head {
  display: block !important;
  width: min(820px, 100%) !important;
  min-height: 0 !important;
  margin: 0 auto 38px !important;
  padding: 0 !important;
  text-align: center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  overflow: visible !important;
}

#espaces .section-head h2,
.features:not(.services-section) .section-head h2 {
  max-width: 760px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

#espaces .section-head > div:last-child,
.features:not(.services-section) .section-head > div:last-child {
  display: block !important;
  min-height: 0 !important;
  padding-top: 20px !important;
}

#espaces .section-head p,
.features:not(.services-section) .section-head p {
  max-width: 680px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  text-align: center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* 2. Tarjetas de servicios del mismo tamaño */
.services-section .grid {
  align-items: stretch !important;
  grid-auto-rows: 1fr !important;
}

.services-section .card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  min-height: 150px !important;
  padding: 22px 24px !important;
  text-align: center !important;
}

.services-section .card h3 {
  min-height: 1.35em !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.services-section .card p {
  margin: 10px 0 0 !important;
}

/* 3. Réduire « Voir tous les équipements » et « Voir toutes les photos du riad » */
.amenities-open-btn,
.gallery-all-btn {
  padding: 9px 15px !important;
  min-height: 0 !important;
  font-size: .78rem !important;
  gap: 7px !important;
  border-radius: 11px !important;
}

.amenities-open-btn svg,
.gallery-all-btn svg {
  width: 15px !important;
  height: 15px !important;
}

/* 4. Centrer toute la rubrique Contact */
.contact-section {
  padding: 76px 0 !important;
}

.contact-section::before,
.contact-section::after {
  content: none !important;
  display: none !important;
}

.contact-panel {
  width: min(920px, 100%) !important;
  margin: 0 auto !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 42px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.contact-heading,
.contact-list {
  width: 100% !important;
  max-width: 430px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.contact-list {
  justify-items: center !important;
  gap: 12px !important;
}

.contact-item {
  width: fit-content !important;
  max-width: 100% !important;
  justify-content: center !important;
  padding: 7px 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.contact-item:hover {
  transform: none !important;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.contact-icon {
  width: 34px !important;
  min-width: 34px !important;
  height: 34px !important;
  border-radius: 11px !important;
}

.contact-icon svg {
  width: 17px !important;
  height: 17px !important;
}

/* 5. Réduire le bouton « Envoyer la demande » d’environ 15 % */
.booking .form .booking-submit-btn,
.booking-panel .form .booking-submit-btn {
  min-width: 289px !important;
  min-height: 49px !important;
  padding: 12px 25px !important;
  font-size: .88rem !important;
  gap: 10px !important;
}

.booking .form .booking-submit-btn svg,
.booking-panel .form .booking-submit-btn svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
}

/* 6. Fond de réservation avec une photo réelle de Dar 27 */
.booking.booking-dar27-bg {
  position: relative !important;
  background:
    linear-gradient(rgba(245, 239, 230, .88), rgba(245, 239, 230, .88)),
    url('../img/full-gallery/chambre-01.jpg') center 46% / cover no-repeat !important;
}

.booking.booking-dar27-bg .booking-panel {
  background: rgba(255, 250, 243, .86) !important;
  backdrop-filter: blur(6px) !important;
}

/* 7. Localisation : beige uni, carte centrée, sans encadrés */
.location {
  background: #efe3d3 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.location::before,
.location::after {
  content: none !important;
  display: none !important;
}

.location .section-head {
  padding: 0 !important;
  margin-bottom: 34px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.location-grid {
  grid-template-columns: .92fr 1.08fr !important;
  align-items: center !important;
  gap: 38px !important;
}

.location-list-card {
  align-self: center !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.location-map-column,
.map-column {
  align-self: center !important;
  height: auto !important;
  grid-template-rows: auto auto !important;
  gap: 14px !important;
}

.map-card {
  height: 360px !important;
  min-height: 360px !important;
  border: 0 !important;
  border-radius: 22px !important;
  box-shadow: 0 18px 48px rgba(56, 37, 28, .12) !important;
}

.location-actions {
  justify-content: center !important;
  margin-top: 0 !important;
}

.location-actions .btn-location {
  min-width: 0 !important;
  padding: 10px 17px !important;
  font-size: .78rem !important;
  gap: 8px !important;
  border-radius: 11px !important;
}

.location-actions .btn-location svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
}

/* 8. Questions fréquentes 20 % plus compactes */
.faq {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

.faq details {
  padding: 17px 0 !important;
}

.faq summary {
  font-size: .86rem !important;
  line-height: 1.35 !important;
}

.faq details p {
  margin-top: 9px !important;
  font-size: .84rem !important;
  line-height: 1.5 !important;
}

/* Responsive */
@media (max-width: 940px) {
  .contact-panel {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .location-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .map-card {
    height: 420px !important;
    min-height: 420px !important;
  }
}

@media (max-width: 640px) {
  #espaces .section-head,
  .features:not(.services-section) .section-head {
    margin-bottom: 28px !important;
  }

  .services-section .card {
    min-height: 0 !important;
    padding: 20px 18px !important;
  }

  .contact-section {
    padding: 62px 0 !important;
  }

  .contact-panel {
    width: 100% !important;
  }

  .contact-item {
    width: 100% !important;
  }

  .booking .form .booking-submit-btn,
  .booking-panel .form .booking-submit-btn {
    width: auto !important;
    min-width: 0 !important;
    justify-self: center !important;
    padding: 11px 20px !important;
  }

  .map-card {
    height: 330px !important;
    min-height: 330px !important;
  }

  .faq {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
}
.contact-panel {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: clamp(48px, 7vw, 96px) !important;
  align-items: center !important;
}

.contact-heading {
  align-self: center !important;
}

.contact-list {
  width: min(100%, 390px) !important;
  max-width: 390px !important;
  margin: 0 auto !important;
  justify-self: center !important;
  align-self: center !important;
  justify-items: stretch !important;
}

.contact-item {
  width: 100% !important;
  justify-content: flex-start !important;
  text-align: left !important;
}

@media (max-width: 940px) {
  .contact-panel {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .contact-heading,
  .contact-list {
    width: min(100%, 520px) !important;
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* Ajustements demandés par la propriétaire — index */
#espaces .spaces-head {
  row-gap: 16px !important;
}

#espaces .spaces-head .section-title-unified {
  margin-bottom: 14px !important;
}

#espaces .spaces-intro-text {
  max-width: 680px !important;
  margin: 0 auto !important;
  font-size: 85% !important;
  line-height: 1.62 !important;
}

#espaces .space-small.one {
  background-image: url('../img/photo_riad_2026/5.jpg') !important;
  background-position: center center !important;
  background-size: cover !important;
}

#espaces .space-caption,
#espaces .space-link:hover .space-caption {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

#espaces .space-caption h3,
#espaces .space-caption p {
  text-shadow: 0 2px 14px rgba(0, 0, 0, .58) !important;
}

.gallery-salon-image {
  object-position: 50% 58% !important;
}

.location .section-head {
  margin-bottom: 46px !important;
}

.location .nearby-accordion summary {
  font-size: 85% !important;
}

.location .nearby-accordion details p {
  font-size: 82% !important;
  line-height: 1.5 !important;
}

.booking.booking-dar27-bg {
  background:
    linear-gradient(rgba(245, 239, 230, .84), rgba(245, 239, 230, .84)),
    url('../img/photo_riad_2026/24.jpg') center center / cover no-repeat !important;
}

.booking.booking-dar27-bg .booking-panel {
  background: rgba(255, 250, 243, .88) !important;
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(5px) !important;
}

@media (max-width: 640px) {
  #espaces .spaces-intro-text {
    font-size: 90% !important;
  }

  .location .section-head {
    margin-bottom: 32px !important;
  }

  .location .nearby-accordion summary {
    font-size: 90% !important;
  }

  .location .nearby-accordion details p {
    font-size: 88% !important;
  }
}

/* =========================================================
   Ajustements propriétaire — juillet 2026
   ========================================================= */

.hero-actions {
  margin-top: 44px;
}

.hero-actions .btn {
  width: 261px;
  min-height: 52px;
  padding: 14px 25px;
  font-size: .9rem;
}

.hero-actions .btn-book-now svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
}

.story-main-title {
  margin-bottom: 58px;
  font-size: 2.2rem;
}

.story-text strong {
  font-weight: 800;
  color: var(--brown);
}

#espaces .space-large {
  background-image: url('../img/photo_riad_2026/1.jpg') !important;
  background-position: center center !important;
}

#espaces .space-small.one {
  background-image: url('../img/photo_riad_2026/5.jpg') !important;
}

#espaces .space-small.two {
  background-image: url('../img/riad-photos/riad-photo-05.jpeg') !important;
}

.parallax-rooftop {
  background-image: url('../img/Rooftop-vue-02.jpg');
  background-position: center center;
}

#espaces .space-link::before {
  content: none;
}

#espaces .space-caption,
#espaces .space-link:hover .space-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 18px 16px;
  border-radius: 0 0 10px 10px;
  background: rgba(56, 37, 28, .45) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.gallery-section {
  background: var(--brown);
}

.gallery-item,
.gallery-item img {
  border-radius: 10px !important;
}

.gallery-item {
  overflow: hidden !important;
}

.location-grid {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr) !important;
  gap: clamp(58px, 7vw, 92px) !important;
}

.map-card {
  height: 330px !important;
  min-height: 330px !important;
}

.booking-panel .form input,
.booking-panel .form textarea,
.booking-panel .form select {
  font-size: .86rem;
}

.phone-field {
  grid-template-columns: 21px 92px minmax(0, 1fr);
}

.phone-country {
  width: 92px;
  min-width: 92px;
}

.phone-country select {
  font-size: .7rem;
}

.footer {
  position: relative;
  background: #95764b;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: max(20px, calc((100% - 1160px) / 2));
  right: max(20px, calc((100% - 1160px) / 2));
  height: 1px;
  background: rgba(255, 250, 243, .28);
}

@media (max-width: 940px) {
  .location-grid {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  .map-card {
    height: 390px !important;
    min-height: 390px !important;
  }
}

@media (max-width: 640px) {
  .parallax-patio p,
  .parallax-rooftop p {
    display: none;
  }

  .parallax-patio h2,
  .parallax-rooftop h2 {
    max-width: 100%;
    margin-bottom: 42px;
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    position: relative;
    top: clamp(28px, 4vh, 45px);
    width: 100%;
    margin-top: 58px;
    align-items: center;
    justify-content: center;
  }

  .hero-actions .btn {
    width: min(90%, 261px);
    min-height: 49px;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 18px;
    font-size: .86rem;
  }

  .story-main-title {
    margin-bottom: 44px;
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .phone-field {
    grid-template-columns: 20px 86px minmax(0, 1fr);
  }

  .phone-country {
    width: 86px;
    min-width: 86px;
  }

  .map-card {
    height: 310px !important;
    min-height: 310px !important;
  }
}

@media (max-width: 940px) {
  .menu.open {
    background: var(--brown);
    border-bottom-color: rgba(255, 250, 243, .16);
  }

  .topbar .menu.open > a,
  .topbar.is-scrolled .menu.open > a,
  .topbar .menu.open > a:hover,
  .topbar.is-scrolled .menu.open > a:hover,
  .topbar .menu.open > a:focus-visible,
  .topbar.is-scrolled .menu.open > a:focus-visible {
    color: #fff !important;
    background: transparent !important;
    opacity: 1;
  }
}
