:root {
  --ink: #202620;
  --muted: #68706a;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: rgba(32, 38, 32, 0.14);
  --sea: #276d67;
  --sea-dark: #164d49;
  --terracotta: #b66143;
  --mist: #e8f0ed;
  --shadow: 0 22px 60px rgba(26, 42, 36, 0.12);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Satoshi", "Outfit", "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.08em;
  height: 1.08em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--surface);
  background: var(--sea-dark);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-shell {
  min-height: var(--header-height);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--surface);
  background: var(--sea-dark);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0;
}

.brand-emblem {
  width: 40px;
  height: 40px;
  display: block;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #3d463f;
  font-size: 0.92rem;
}

.desktop-nav a {
  padding: 9px 2px;
  border-bottom: 1px solid transparent;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--sea-dark);
  border-color: currentColor;
}

.quick-contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-contact {
  justify-self: end;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 180px;
  color: #38423b;
  font-size: 0.86rem;
  white-space: nowrap;
}

.text-link span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 760;
  font-size: 0.92rem;
  letter-spacing: 0;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button-primary {
  color: var(--surface);
  background: var(--sea-dark);
  border-color: var(--sea-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--sea);
  border-color: var(--sea);
}

.button-ghost {
  color: var(--sea-dark);
  background: var(--mist);
  border-color: rgba(39, 109, 103, 0.18);
}

.button-outline {
  color: var(--sea-dark);
  background: transparent;
  border-color: rgba(22, 77, 73, 0.28);
}

.button-light {
  color: var(--sea-dark);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.45);
}

.button-whatsapp {
  color: #123e35;
  background: #dff1e8;
  border-color: rgba(18, 62, 53, 0.18);
}

.button-large {
  min-height: 50px;
  padding-inline: 18px;
}

.button-wide {
  width: 100%;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.close-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .close-icon {
  display: block;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(86dvh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #1e302d;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/maison-thau-terrasse.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(22, 35, 31, 0.85) 0%, rgba(22, 35, 31, 0.58) 40%, rgba(22, 35, 31, 0.16) 74%),
    linear-gradient(0deg, rgba(22, 35, 31, 0.28), rgba(22, 35, 31, 0.08));
}

.hero-content {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(66px, 8vw, 118px) 24px clamp(52px, 7vw, 90px);
  color: var(--surface);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--terracotta);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero .eyebrow {
  color: #f1c2a5;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 7vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 760;
}

.hero-contact-line span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.trust-strip {
  max-width: 1440px;
  margin: -28px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 24px;
}

.trust-strip div {
  min-height: 112px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 4px;
  color: var(--sea-dark);
  font-size: 1.05rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 126px) 24px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
}

.section-copy p,
.feature-panel p,
.reservation-copy p,
.reviews-head p,
.site-footer p {
  color: var(--muted);
  font-size: 1.02rem;
}

.cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-auto-rows: minmax(240px, auto);
  gap: 16px;
}

.gallery-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d8ddd7;
  box-shadow: var(--shadow);
}

.gallery-card-large {
  grid-row: span 2;
  min-height: 540px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 9px 12px;
  color: var(--surface);
  background: rgba(22, 35, 31, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  font-weight: 760;
  font-size: 0.9rem;
}

.cta-band {
  max-width: 1392px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
  color: var(--surface);
  background: var(--sea-dark);
  border-radius: var(--radius);
}

.cta-band span,
.cta-band strong {
  display: block;
}

.cta-band span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.cta-band strong {
  font-size: clamp(1.35rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}

.feature-panel {
  padding: clamp(28px, 5vw, 58px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-list,
.assurance-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
}

.feature-list li,
.assurance-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  color: #3f4a43;
  border-top: 1px solid var(--line);
}

.feature-list li:first-child,
.assurance-list li:first-child {
  border-top: 0;
}

.feature-list .icon,
.assurance-list .icon {
  margin-top: 3px;
  color: var(--sea);
}

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

.value-grid article {
  min-height: 224px;
  padding: 24px;
  background: var(--mist);
  border: 1px solid rgba(39, 109, 103, 0.13);
  border-radius: var(--radius);
}

.value-grid article:nth-child(2),
.value-grid article:nth-child(3) {
  background: #f5ede6;
  border-color: rgba(182, 97, 67, 0.14);
}

.value-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--terracotta);
  font-weight: 900;
}

.value-grid p {
  color: var(--muted);
}

.reviews-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) 24px;
  border-top: 1px solid var(--line);
}

.reviews-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.reviews-head h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.social-proof {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
  margin-bottom: 16px;
}

.rating-block,
.badge-block,
.testimonial-row blockquote,
.google-business {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(34, 48, 42, 0.07);
}

.rating-block,
.badge-block {
  padding: clamp(22px, 4vw, 34px);
}

.rating-number {
  display: block;
  margin-bottom: 8px;
  color: var(--sea-dark);
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  font-weight: 900;
  line-height: 0.9;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
  color: var(--terracotta);
}

.stars .icon {
  fill: currentColor;
  stroke-width: 1.1;
}

.rating-block p,
.badge-block p {
  margin-bottom: 0;
  color: var(--muted);
}

.badge-block span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-block strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1;
}

.testimonial-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 16px;
}

.testimonial-row blockquote {
  margin: 0;
  padding: 24px;
}

.testimonial-row p {
  color: #3b453f;
}

.testimonial-row cite {
  color: var(--sea-dark);
  font-style: normal;
  font-weight: 800;
}

.google-business {
  margin-top: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.google-business[hidden],
[hidden] {
  display: none !important;
}

.google-reviews {
  display: grid;
  gap: 10px;
}

.google-reviews p {
  margin: 0;
  color: #3b453f;
}

.google-reviews cite {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-weight: 760;
}

.reservation-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 126px) 24px;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
}

.reservation-contact {
  flex-wrap: wrap;
  align-items: stretch;
  margin: 28px 0;
}

.contact-tile {
  flex: 1 1 230px;
  min-width: 0;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-tile .icon {
  color: var(--terracotta);
}

.contact-tile span,
.contact-tile strong {
  display: block;
}

.contact-tile span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-tile strong {
  color: var(--sea-dark);
  overflow-wrap: anywhere;
}

.booking-form {
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.form-wide {
  grid-column: 1 / -1;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: #344039;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(32, 38, 32, 0.18);
  border-radius: var(--radius);
  background: #fbfbf8;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
textarea:focus {
  border-color: var(--sea);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(39, 109, 103, 0.12);
}

textarea {
  resize: vertical;
}

label small {
  min-height: 18px;
  display: block;
  margin-top: 5px;
  color: #a9412c;
  font-size: 0.82rem;
}

.button-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 20px;
  font-size: 1rem;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--sea-dark);
  font-weight: 760;
}

.site-footer {
  padding: 54px 24px 110px;
  color: rgba(255, 255, 255, 0.86);
  background: #182621;
}

.footer-main,
.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 32px;
  align-items: start;
}

.footer-brand .brand-mark {
  background: var(--surface);
  color: var(--sea-dark);
}

.footer-brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.62);
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.footer-contact > a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-contact > a span {
  overflow-wrap: anywhere;
}

.footer-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
}

.floating-call {
  display: none;
}

.mobile-booking-bar {
  display: none;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.07) translate3d(1.4%, -0.8%, 0);
  }
}

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

@media (max-width: 1250px) {
  .desktop-nav,
  .desktop-contact .text-link {
    display: none;
  }

  .header-shell {
    grid-template-columns: auto 1fr auto;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .header-shell {
    padding-inline: 16px;
  }

  .desktop-contact {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    inset: var(--header-height) 0 auto;
    max-height: calc(100dvh - var(--header-height));
    overflow: auto;
    padding: 18px 16px 26px;
    background: rgba(251, 250, 246, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 30px 70px rgba(26, 42, 36, 0.16);
  }

  .mobile-menu.is-open {
    display: block;
  }

  .mobile-menu nav {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
  }

  .mobile-menu nav a {
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 820;
  }

  .mobile-contact {
    display: grid;
    gap: 10px;
  }

  .mobile-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: var(--mist);
    border-radius: var(--radius);
    color: var(--sea-dark);
    font-weight: 800;
    overflow-wrap: anywhere;
  }

  .mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero {
    min-height: 78dvh;
  }

  .hero-media {
    background-position: 57% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(22, 35, 31, 0.86) 0%, rgba(22, 35, 31, 0.58) 76%, rgba(22, 35, 31, 0.34)),
      linear-gradient(0deg, rgba(22, 35, 31, 0.3), rgba(22, 35, 31, 0.08));
  }

  .hero-actions {
    display: grid;
    max-width: 410px;
  }

  .trust-strip,
  .section-intro,
  .split-section,
  .social-proof,
  .testimonial-row,
  .reservation-section,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
    padding-inline: 16px;
  }

  .section,
  .reviews-section,
  .reservation-section {
    padding-inline: 16px;
  }

  .section-copy {
    position: static;
  }

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

  .gallery-card,
  .gallery-card-large {
    min-height: 320px;
    grid-row: auto;
  }

  .cta-band {
    margin-inline: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band-actions {
    justify-content: stretch;
  }

  .cta-band-actions .button {
    flex: 1 1 150px;
  }

  .reviews-head {
    align-items: stretch;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  body {
    padding-bottom: 82px;
  }

  .brand small {
    white-space: normal;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-content {
    padding: 54px 16px 42px;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(1.95rem, 9vw, 3rem);
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .trust-strip div {
    min-height: 118px;
    padding: 16px;
  }

  .value-grid,
  .form-grid,
  .footer-contact {
    grid-template-columns: 1fr;
  }

  .form-wide {
    grid-column: auto;
  }

  .reservation-contact .button {
    flex: 1 1 100%;
  }

  .footer-actions .button {
    width: 100%;
  }

  .floating-call {
    position: fixed;
    right: 14px;
    bottom: 82px;
    z-index: 18;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 13px;
    color: var(--surface);
    background: var(--sea-dark);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(12, 28, 25, 0.2);
    font-weight: 840;
    font-size: 0.9rem;
  }

  .mobile-booking-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 19;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 8px;
    min-height: 68px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    color: var(--surface);
    background: rgba(24, 38, 33, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
  }

  .mobile-booking-bar span {
    font-weight: 860;
    font-size: 0.92rem;
  }

  .mobile-booking-bar a {
    min-height: 42px;
    padding: 10px 13px;
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--sea-dark);
    font-weight: 860;
    white-space: nowrap;
  }

  .mobile-booking-bar a:last-child {
    color: var(--surface);
    background: var(--terracotta);
  }
}

@media (max-width: 390px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .mobile-booking-bar {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-booking-bar span {
    grid-column: 1 / -1;
  }
}

/* Direction luxe photo : fonds image, typo fine, surfaces presque invisibles. */
:root {
  --ink: #27231f;
  --muted: rgba(39, 35, 31, 0.7);
  --paper: #f7f1e9;
  --surface: rgba(255, 252, 246, 0.88);
  --line: rgba(255, 252, 246, 0.36);
  --sea: #ede6dc;
  --sea-dark: #262f2b;
  --terracotta: #d8c7ae;
  --mist: rgba(255, 252, 246, 0.16);
  --shadow: none;
  --radius: 0;
}

body {
  font-family: "Didot", "Bodoni 72", "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  background: #181f1c;
}

.site-header {
  background: rgba(250, 246, 238, 0.84);
  border-bottom: 1px solid rgba(38, 47, 43, 0.14);
}

.brand-mark {
  color: #f9f3ea;
  background: #252c29;
  font-family: "Avenir Next", system-ui, sans-serif;
  font-weight: 300;
}

.brand strong,
.desktop-nav,
.text-link,
.button,
.mobile-menu,
input,
textarea,
label span,
.form-status {
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

.brand strong,
.desktop-nav,
.text-link,
.button {
  font-weight: 400;
}

.brand small,
.desktop-nav,
.text-link {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.button {
  min-height: 40px;
  padding: 10px 18px;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-primary {
  color: #f9f3ea;
  background: rgba(31, 39, 36, 0.92);
  border-color: rgba(31, 39, 36, 0.92);
}

.button-ghost,
.button-outline,
.button-light,
.button-whatsapp {
  color: currentColor;
  background: rgba(255, 252, 246, 0.08);
  border-color: rgba(255, 252, 246, 0.48);
}

.hero {
  min-height: calc(92dvh - var(--header-height));
  background: #1e302d;
}

.hero-media {
  background-image: url("assets/maison-thau-terrasse.png");
  background-position: center;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(16, 22, 20, 0.36), rgba(16, 22, 20, 0.54)),
    radial-gradient(circle at center, rgba(16, 22, 20, 0.08), rgba(16, 22, 20, 0.5));
}

.hero-content {
  max-width: 980px;
  display: grid;
  justify-items: center;
  text-align: center;
  padding-inline: 24px;
  color: #fffaf2;
}

.hero-image {
  display: none;
}

.eyebrow {
  justify-content: center;
  color: rgba(255, 250, 242, 0.76);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.22em;
}

h1,
h2,
h3 {
  font-weight: 300;
  letter-spacing: 0.01em;
}

h1 {
  max-width: 980px;
  font-size: clamp(4.7rem, 11vw, 9.2rem);
  line-height: 0.98;
}

h2 {
  max-width: 850px;
  margin-inline: auto;
  font-size: clamp(2.6rem, 6vw, 6.2rem);
  line-height: 0.92;
  text-align: center;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 2.3rem);
  font-weight: 300;
  text-align: center;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  font-weight: 300;
}

.hero-actions,
.hero-contact-line,
.cta-inline,
.cta-band-actions {
  justify-content: center;
}

.hero-contact-line {
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-strip {
  max-width: none;
  margin: 0;
  padding: 0;
  gap: 0;
  background: rgba(247, 241, 233, 0.98);
}

.trust-strip div {
  min-height: 104px;
  text-align: center;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(39, 35, 31, 0.13);
}

.trust-strip strong {
  color: #27231f;
  font-weight: 300;
  font-size: 1.45rem;
}

.trust-strip span {
  color: rgba(39, 35, 31, 0.58);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section,
.reviews-section,
.reservation-section,
.cta-band {
  max-width: none;
  margin: 0;
  padding: clamp(92px, 12vw, 164px) max(24px, calc((100vw - 1220px) / 2));
}

.section-intro,
.split-section,
.reviews-section,
.reservation-section,
.cta-band {
  position: relative;
  isolation: isolate;
  color: #fffaf2;
  background-size: cover;
  background-position: center;
}

.section-intro::before,
.split-section::before,
.reviews-section::before,
.reservation-section::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(18, 25, 23, 0.58);
}

.section-intro {
  min-height: 100dvh;
  grid-template-columns: 1fr;
  align-items: center;
  background-image: url("assets/maison-thau-interieur.png");
}

.section-copy,
.feature-panel,
.reviews-head,
.reservation-copy {
  position: relative;
  max-width: 830px;
  margin: 0 auto;
  text-align: center;
}

.section-copy p,
.feature-panel p,
.reservation-copy p,
.reviews-head p,
.site-footer p {
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(1.04rem, 1.8vw, 1.34rem);
  font-weight: 300;
}

.gallery-grid {
  display: none;
}

.cta-band {
  min-height: 62dvh;
  justify-content: center;
  text-align: center;
  background-image: url("assets/maison-thau-nature.png");
  border-radius: 0;
}

.cta-band strong {
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
}

.cta-band span {
  color: rgba(255, 250, 242, 0.72);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.split-section {
  min-height: 100dvh;
  grid-template-columns: 1fr;
  background-image: url("assets/maison-thau-nature.png");
}

.feature-panel,
.rating-block,
.badge-block,
.testimonial-row blockquote,
.google-business,
.booking-form,
.contact-tile,
.value-grid article {
  background: transparent;
  border: 1px solid rgba(255, 250, 242, 0.35);
  border-width: 1px 0;
  border-radius: 0;
  box-shadow: none;
}

.feature-panel {
  padding: 0 0 34px;
}

.feature-list,
.assurance-list {
  max-width: 680px;
  margin-inline: auto;
}

.feature-list li,
.assurance-list li {
  justify-content: center;
  color: rgba(255, 250, 242, 0.84);
  border-color: rgba(255, 250, 242, 0.24);
  font-weight: 300;
}

.value-grid {
  max-width: 960px;
  margin: 54px auto 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.value-grid article {
  min-height: 190px;
  padding: 24px 18px;
  text-align: center;
}

.value-grid article:nth-child(2),
.value-grid article:nth-child(3) {
  background: transparent;
  border-color: rgba(255, 250, 242, 0.35);
}

.value-grid span {
  margin-bottom: 24px;
  color: rgba(255, 250, 242, 0.58);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.value-grid p {
  color: rgba(255, 250, 242, 0.72);
}

.reviews-section {
  min-height: 100dvh;
  background-image: url("assets/maison-thau-terrasse.png");
  border-top: 0;
}

.reviews-head {
  display: block;
  margin-bottom: 54px;
}

.reviews-head .button {
  margin-top: 20px;
}

.social-proof,
.testimonial-row {
  max-width: 1040px;
  margin-inline: auto;
}

.rating-block,
.badge-block,
.testimonial-row blockquote {
  text-align: center;
  color: #fffaf2;
}

.rating-number {
  color: #fffaf2;
  font-weight: 300;
}

.rating-block p,
.badge-block p,
.testimonial-row p,
.testimonial-row cite {
  color: rgba(255, 250, 242, 0.78);
}

.badge-block span {
  color: rgba(255, 250, 242, 0.58);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

.badge-block strong {
  font-weight: 300;
}

.reservation-section {
  min-height: 100dvh;
  grid-template-columns: 0.85fr 1.15fr;
  background-image: url("assets/maison-thau-interieur.png");
}

.reservation-copy {
  align-self: center;
}

.reservation-contact {
  justify-content: center;
}

.contact-tile {
  text-align: center;
  color: #fffaf2;
}

.contact-tile span {
  color: rgba(255, 250, 242, 0.56);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-tile strong {
  color: #fffaf2;
  font-weight: 300;
}

.booking-form {
  color: #fffaf2;
  background: rgba(17, 24, 22, 0.34);
  backdrop-filter: blur(8px);
  padding: clamp(22px, 4vw, 38px);
}

label span {
  color: rgba(255, 250, 242, 0.9);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

input,
textarea {
  color: #fffaf2;
  background: rgba(255, 250, 242, 0.08);
  border: 0;
  border-bottom: 1px solid rgba(255, 250, 242, 0.48);
  border-radius: 0;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 250, 242, 0.52);
}

input:focus,
textarea:focus {
  background: rgba(255, 250, 242, 0.13);
  border-color: #fffaf2;
  box-shadow: none;
}

.site-footer {
  background: #171d1b;
  text-align: center;
}

.footer-main,
.footer-contact,
.footer-actions,
.footer-bottom {
  justify-content: center;
}

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

.footer-contact {
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .mobile-menu {
    background: rgba(250, 246, 238, 0.96);
    box-shadow: none;
  }

  .mobile-menu nav a,
  .mobile-contact-row {
    border-radius: 0;
    background: transparent;
    border: 1px solid rgba(38, 47, 43, 0.18);
  }

  .hero-actions {
    max-width: none;
    justify-items: stretch;
  }

  .section-intro,
  .split-section,
  .social-proof,
  .testimonial-row,
  .reservation-section,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .reservation-section {
    gap: 44px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(4rem, 19vw, 5.6rem);
  }

  h2 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .hero-content {
    padding: 74px 18px 54px;
  }

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

  .trust-strip div {
    min-height: 104px;
  }

  .section,
  .reviews-section,
  .reservation-section,
  .cta-band {
    padding: 90px 18px;
  }

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

  .floating-call,
  .mobile-booking-bar a {
    border-radius: 0;
    box-shadow: none;
    font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
}

/* Palette inspirée des photos réelles : jardin, pierre claire, bois, canapé rouge et touches bleues. */
:root {
  --photo-stone: #efe5d6;
  --photo-linen: #f8f1e7;
  --photo-sand: #d6c2a3;
  --photo-lagoon: #7ea6aa;
  --photo-lagoon-deep: #2f5758;
  --photo-shutter: #9eb3b0;
  --photo-terracotta: #b97958;
  --photo-ink: #232825;
  --paper: var(--photo-stone);
  --sea-dark: var(--photo-lagoon-deep);
  --terracotta: var(--photo-sand);
}

.site-header {
  background: rgba(239, 229, 214, 0.9);
  border-bottom-color: rgba(47, 87, 88, 0.18);
}

.brand-mark,
.button-primary,
.mobile-booking-bar {
  background: rgba(47, 87, 88, 0.94);
}

.desktop-nav,
.text-link,
.brand strong {
  color: #263532;
}

.brand small {
  color: rgba(38, 53, 50, 0.64);
}

.button-primary {
  border-color: rgba(47, 87, 88, 0.94);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #3f6868;
  border-color: #3f6868;
}

.button-ghost,
.button-outline,
.button-light,
.button-whatsapp {
  background: rgba(248, 241, 231, 0.12);
  border-color: rgba(248, 241, 231, 0.58);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(41, 63, 61, 0.18), rgba(33, 48, 44, 0.48)),
    linear-gradient(90deg, rgba(47, 87, 88, 0.24), rgba(185, 121, 88, 0.1));
}

.section-intro::before,
.split-section::before,
.reviews-section::before,
.reservation-section::before,
.cta-band::before {
  background:
    linear-gradient(180deg, rgba(35, 40, 37, 0.38), rgba(35, 40, 37, 0.56)),
    linear-gradient(90deg, rgba(47, 87, 88, 0.18), rgba(214, 194, 163, 0.14));
}

.hero .eyebrow,
.eyebrow {
  color: #ead9c1;
}

.trust-strip {
  background: var(--photo-linen);
}

.trust-strip div {
  border-right-color: rgba(47, 87, 88, 0.14);
}

.trust-strip strong {
  color: var(--photo-lagoon-deep);
}

.trust-strip span {
  color: rgba(47, 87, 88, 0.58);
}

.cta-band::before {
  background:
    linear-gradient(180deg, rgba(47, 87, 88, 0.36), rgba(35, 40, 37, 0.56)),
    linear-gradient(90deg, rgba(214, 194, 163, 0.2), rgba(126, 166, 170, 0.18));
}

.stars,
.value-grid span,
.contact-tile .icon,
.feature-list .icon,
.assurance-list .icon {
  color: #e7c7a4;
}

.booking-form {
  background: rgba(47, 87, 88, 0.28);
  border-color: rgba(239, 229, 214, 0.5);
}

input,
textarea {
  background: rgba(248, 241, 231, 0.1);
  border-bottom-color: rgba(239, 229, 214, 0.56);
}

input:focus,
textarea:focus {
  background: rgba(248, 241, 231, 0.16);
  border-color: var(--photo-linen);
}

.site-footer {
  background: #22312f;
}

.site-footer .footer-brand .brand-mark {
  color: #22312f;
  background: #f8f1e7;
}

.site-footer .footer-brand strong {
  color: #fff8ec;
}

.site-footer .footer-brand small {
  color: rgba(255, 248, 236, 0.72);
}

.floating-call {
  background: rgba(47, 87, 88, 0.96);
}

.mobile-booking-bar a:last-child {
  background: var(--photo-sand);
  color: #25312f;
}

.mobile-booking-bar a:first-of-type {
  background: var(--photo-linen);
  color: var(--photo-lagoon-deep);
}

.desktop-contact {
  gap: 8px;
}

.desktop-contact .button {
  white-space: nowrap;
}

.button-facebook {
  color: #f9f3ea;
  background: #2f5758;
  border-color: #2f5758;
}

.button-facebook .icon {
  fill: currentColor;
  stroke: none;
}

.button-facebook:hover,
.button-facebook:focus-visible {
  background: #3f6868;
  border-color: #3f6868;
}

.mobile-actions {
  grid-template-columns: repeat(3, 1fr);
}

.hero-copy a,
.section-copy a,
.feature-list a,
.value-grid a,
.footer-bottom a {
  color: inherit;
  border-bottom: 1px solid currentColor;
}

.trust-strip .trust-link {
  display: inline-block;
  color: rgba(47, 87, 88, 0.72);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

@media (min-width: 901px) {
  .header-shell {
    grid-template-columns: auto minmax(420px, 1fr) auto;
    gap: 18px;
  }
}

@media (min-width: 1251px) {
  .desktop-nav {
    display: flex;
    gap: 15px;
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }

  .desktop-contact .button {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.66rem;
    letter-spacing: 0.07em;
  }

  .desktop-contact .button .icon {
    width: 0.94em;
    height: 0.94em;
  }
}

body.modal-open {
  overflow: hidden;
}

body.cookies-visible {
  padding-bottom: 118px;
}

select {
  width: 100%;
  color: #fffaf2;
  background: rgba(248, 241, 231, 0.1);
  border: 0;
  border-bottom: 1px solid rgba(239, 229, 214, 0.56);
  border-radius: 0;
  padding: 13px 14px;
  outline: none;
}

select:focus {
  background: rgba(248, 241, 231, 0.16);
  border-color: var(--photo-linen);
}

select option {
  color: #232825;
  background: #f8f1e7;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.checkbox-field span {
  margin: 0;
  color: rgba(255, 250, 242, 0.84);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.form-legal {
  margin: 16px 0 0;
  color: rgba(255, 250, 242, 0.72);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.76rem;
  line-height: 1.55;
}

.form-legal button,
.legal-links button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font: inherit;
}

.legal-links {
  max-width: 900px;
  margin: 34px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  color: rgba(255, 255, 255, 0.66);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  color: #263532;
  background: rgba(248, 241, 231, 0.96);
  border: 1px solid rgba(47, 87, 88, 0.22);
  box-shadow: 0 18px 50px rgba(20, 28, 25, 0.18);
}

.cookie-banner p {
  margin: 0;
  color: #263532;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.86rem;
  line-height: 1.45;
}

.cookie-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(18, 24, 22, 0.68);
}

.legal-modal {
  position: relative;
  width: min(820px, 100%);
  max-height: min(760px, calc(100dvh - 44px));
  color: #263532;
  background: #f8f1e7;
  border: 1px solid rgba(47, 87, 88, 0.24);
  box-shadow: 0 28px 80px rgba(10, 16, 14, 0.34);
  outline: none;
}

.modal-scroll {
  max-height: min(760px, calc(100dvh - 44px));
  overflow: auto;
  padding: clamp(28px, 5vw, 58px);
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 1;
  margin: 14px 14px 0 0;
  padding: 9px 12px;
  color: #f8f1e7;
  background: #2f5758;
  border: 0;
  cursor: pointer;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-modal h2 {
  margin-bottom: 24px;
  color: #263532;
  text-align: left;
}

.legal-modal p,
.legal-modal li {
  color: rgba(38, 53, 50, 0.78);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.98rem;
}

.legal-modal a {
  color: #2f5758;
  border-bottom: 1px solid currentColor;
}

.legal-modal code {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.88em;
}

.cookie-modal .checkbox-field span {
  color: rgba(38, 53, 50, 0.78);
}

@media (max-width: 700px) {
  body.cookies-visible {
    padding-bottom: 190px;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 78px;
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 11px;
  }

  .cookie-actions,
  .modal-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .cookie-banner p {
    font-size: 0.72rem;
    line-height: 1.34;
  }

  .cookie-actions .button {
    min-height: 36px;
    padding: 8px 6px;
    font-size: 0.54rem;
    letter-spacing: 0.05em;
    white-space: normal;
  }

  .modal-backdrop {
    padding: 12px;
  }

  .legal-modal {
    max-height: calc(100dvh - 24px);
  }

  .modal-scroll {
    max-height: calc(100dvh - 24px);
    padding: 26px 18px;
  }

  .legal-modal h2 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }
}

@media (max-width: 440px) {
  .modal-actions {
    grid-template-columns: 1fr;
  }
}

/* Header raffiné : moins de graisse, plus d'air, typographie discrète. */
.site-header .desktop-nav,
.site-header .desktop-contact .button {
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header .desktop-nav a {
  color: rgba(35, 40, 37, 0.78);
  font-size: 0.62rem;
}

.site-header .desktop-nav a:hover,
.site-header .desktop-nav a:focus-visible {
  color: #2f5758;
}

.site-header .desktop-contact .button {
  min-height: 38px;
  padding: 9px 13px;
  font-size: 0.62rem;
  border-color: rgba(35, 40, 37, 0.2);
}

.site-header .desktop-nav {
  gap: 14px;
}

.site-header .desktop-contact .button-primary,
.site-header .desktop-contact .button-facebook {
  font-weight: 300;
  letter-spacing: 0.14em;
}

.site-header .desktop-contact .button .icon {
  opacity: 0.78;
}

.site-header .brand strong {
  font-weight: 300;
  letter-spacing: 0.02em;
}

.site-header .brand small {
  font-weight: 300;
  letter-spacing: 0.16em;
}

.site-header .brand-mark {
  color: #f8f1e7;
  background: #2f5758;
  border: 1px solid rgba(47, 87, 88, 0.28);
}

.site-footer .footer-brand .brand-mark {
  color: #f8f1e7;
  background: transparent;
  border: 1px solid rgba(248, 241, 231, 0.72);
}

.site-footer .footer-brand .brand-emblem {
  width: 42px;
  height: 42px;
}

/* Entrée de page : reveal court, luxueux, sans dépendance ni layout shift. */
.page-intro {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  pointer-events: none;
  color: #f8f1e7;
  background:
    radial-gradient(circle at 50% 50%, rgba(126, 166, 170, 0.13), transparent 30%),
    linear-gradient(145deg, #1b2927 0%, #2f5758 52%, #201f1c 100%);
  animation: pageIntroExit 720ms cubic-bezier(0.16, 1, 0.3, 1) 1.72s forwards;
}

.page-intro::before,
.page-intro::after {
  display: none;
}

.page-intro::before {
  top: calc(50% - 82px);
}

.page-intro::after {
  top: calc(50% + 82px);
  animation-delay: 560ms;
}

.page-intro-inner {
  position: relative;
  display: grid;
  justify-items: center;
  transform: translateY(10px) scale(0.96);
  opacity: 0;
  animation: introMarkReveal 980ms cubic-bezier(0.16, 1, 0.3, 1) 120ms forwards;
}

.page-intro-emblem {
  width: clamp(96px, 11vw, 132px);
  height: clamp(96px, 11vw, 132px);
  filter: drop-shadow(0 18px 36px rgba(9, 15, 13, 0.22));
}

.page-intro-inner span {
  display: none;
}

.page-intro-inner p {
  display: none;
}

.site-header {
  animation: headerReveal 780ms cubic-bezier(0.16, 1, 0.3, 1) 1.95s both;
}

.hero .eyebrow,
.hero h1,
.hero-copy,
.hero-actions,
.hero-contact-line {
  opacity: 0;
  animation: heroElementReveal 840ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero .eyebrow {
  animation-delay: 2.08s;
}

.hero h1 {
  animation-delay: 2.18s;
}

.hero-copy {
  animation-delay: 2.3s;
}

.hero-actions {
  animation-delay: 2.42s;
}

.hero-contact-line {
  animation-delay: 2.52s;
}

@keyframes pageIntroExit {
  to {
    visibility: hidden;
    opacity: 0;
    transform: scale(1.015);
  }
}

@keyframes introMarkReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes introLineReveal {
  to {
    transform: translateX(-50%) scaleX(1);
  }
}

@keyframes introSmallLine {
  to {
    transform: scaleX(1);
  }
}

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

@keyframes headerReveal {
  from {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroElementReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-intro {
    display: none;
  }

  .site-header,
  .hero .eyebrow,
  .hero h1,
  .hero-copy,
  .hero-actions,
  .hero-contact-line {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  body.mobile-paged main > [hidden] {
    display: none !important;
  }

  body.mobile-paged main > :not([hidden]) {
    animation: mobilePageReveal 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  body.mobile-paged.mobile-page-home .site-footer {
    padding-top: 28px;
  }

  body.mobile-paged.mobile-page-home .footer-main {
    display: none;
  }

  body.mobile-paged.mobile-page-home .legal-links {
    margin-top: 0;
    padding-inline: 18px;
  }

  body.mobile-paged.mobile-page-home .footer-bottom {
    justify-content: center;
    margin-top: 22px;
    text-align: center;
  }

  .mobile-menu nav a.is-active {
    color: #f8f1e7;
    background: #2f5758;
    border-color: #2f5758;
  }

  .desktop-nav a.is-active {
    color: #2f5758;
    border-color: currentColor;
  }
}

@keyframes mobilePageReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Détails premium : filets fins, texture photo subtile et boutons plus travaillés. */
:root {
  --gmn-gold-line: rgba(214, 194, 163, 0.64);
  --gmn-white-line: rgba(248, 241, 231, 0.46);
}

.hero {
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.16;
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(248, 241, 231, 0.16) 9.05%, transparent 9.1% 90.9%, rgba(248, 241, 231, 0.12) 90.95%, transparent 91%),
    repeating-linear-gradient(0deg, rgba(248, 241, 231, 0.08) 0 1px, transparent 1px 9px);
  mix-blend-mode: soft-light;
}

.hero-content {
  z-index: 2;
}

.hero h1 {
  position: relative;
  padding-bottom: 0.08em;
}

.hero h1::after {
  content: "";
  display: block;
  width: min(180px, 34vw);
  height: 1px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, transparent, var(--gmn-white-line), transparent);
}

.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  inset: 4px;
  pointer-events: none;
  border: 1px solid currentColor;
  opacity: 0.16;
  transition: opacity 220ms ease, transform 220ms ease;
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 0.36;
  transform: scale(0.985);
}

.site-header .brand-mark,
.page-intro-emblem,
.site-footer .footer-brand .brand-mark {
  filter: drop-shadow(0 10px 18px rgba(15, 24, 21, 0.12));
}

.trust-strip div,
.value-grid article,
.contact-tile,
.booking-form,
.feature-panel {
  position: relative;
}

.trust-strip div::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 87, 88, 0.22), transparent);
}

.section-copy::before,
.feature-panel::before,
.reservation-copy::before {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin: 0 auto 22px;
  background: linear-gradient(90deg, transparent, var(--gmn-gold-line), transparent);
}

.section-intro::after,
.split-section::after,
.reservation-section::after,
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    radial-gradient(circle at 50% 50%, transparent 0 42%, rgba(248, 241, 231, 0.2) 42.2%, transparent 42.6%),
    repeating-linear-gradient(90deg, rgba(248, 241, 231, 0.09) 0 1px, transparent 1px 72px);
  mix-blend-mode: screen;
}

.value-grid article::before,
.contact-tile::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  width: 34px;
  height: 1px;
  background: var(--gmn-white-line);
  transform: translateX(-50%);
}

.booking-form {
  box-shadow:
    inset 0 1px 0 rgba(248, 241, 231, 0.18),
    0 28px 70px rgba(8, 14, 12, 0.16);
}

.footer-contact a {
  position: relative;
}

.footer-contact a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 34px;
  height: 1px;
  background: rgba(248, 241, 231, 0.18);
  transform: translateX(-50%);
}

@media (max-width: 700px) {
  .hero::before,
  .section-intro::after,
  .split-section::after,
  .reservation-section::after,
  .cta-band::after {
    opacity: 0.08;
  }

  .hero h1::after {
    margin-top: 16px;
  }

  .section-copy::before,
  .feature-panel::before,
  .reservation-copy::before {
    width: 54px;
    margin-bottom: 16px;
  }
}

/* Photos réelles de l'annonce, importées localement pour éviter toute redirection externe. */
.hero-media {
  background-image: url("assets/gmn-photo-1.jpg");
}

.section-intro {
  background-image: url("assets/gmn-photo-3.jpg");
}

.cta-band {
  background-image: url("assets/gmn-photo-5.jpg");
}

.split-section {
  background-image: url("assets/gmn-photo-4.jpg");
}

.reservation-section {
  background-image: url("assets/gmn-photo-2.jpg");
}

.pricing-section {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  color: #fffaf2;
  background: url("assets/gmn-photo-8.jpg") center 48% / cover;
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(26, 35, 31, 0.34), rgba(26, 35, 31, 0.66)),
    linear-gradient(90deg, rgba(36, 72, 68, 0.22), rgba(169, 94, 76, 0.14));
}

.pricing-copy {
  max-width: 860px;
  margin: 0 auto clamp(34px, 5vw, 64px);
  text-align: center;
}

.pricing-copy p {
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(1.04rem, 1.8vw, 1.34rem);
  font-weight: 300;
}

.pricing-layout {
  max-width: 1120px;
  margin: 0 auto;
}

.pricing-main {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: clamp(28px, 5vw, 52px) 0;
  text-align: center;
  border-top: 1px solid rgba(255, 250, 242, 0.34);
  border-bottom: 1px solid rgba(255, 250, 242, 0.34);
}

.pricing-main > span,
.pricing-lines span {
  color: rgba(255, 250, 242, 0.66);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pricing-main strong {
  color: #fffaf2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.86;
}

.pricing-main p {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300;
  line-height: 1.55;
}

.pricing-lines {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(28px, 4vw, 46px);
  border-top: 1px solid rgba(255, 250, 242, 0.26);
  border-bottom: 1px solid rgba(255, 250, 242, 0.26);
}

.pricing-lines article {
  min-width: 0;
  padding: 24px 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 250, 242, 0.18);
}

.pricing-lines article:last-child {
  border-right: 0;
}

.pricing-lines strong {
  display: block;
  margin: 12px 0 10px;
  color: #fffaf2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  font-weight: 300;
  line-height: 1;
}

.pricing-lines p,
.pricing-note p {
  margin: 0;
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.55;
}

.pricing-note {
  max-width: 760px;
  margin: clamp(26px, 4vw, 42px) auto 0;
  padding-top: 18px;
  text-align: center;
  border-top: 1px solid rgba(255, 250, 242, 0.22);
}

.details-section {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  color: #fffaf2;
  background: url("assets/gmn-photo-7.jpg") center 52% / cover;
}

.details-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(26, 35, 31, 0.34), rgba(26, 35, 31, 0.64)),
    linear-gradient(90deg, rgba(36, 72, 68, 0.2), rgba(169, 94, 76, 0.12));
}

.details-copy {
  max-width: 860px;
  margin: 0 auto clamp(34px, 5vw, 64px);
  text-align: center;
}

.details-copy p {
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(1.04rem, 1.8vw, 1.34rem);
  font-weight: 300;
}

.details-layout {
  max-width: 1120px;
  margin: 0 auto;
}

.details-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 250, 242, 0.34);
  border-bottom: 1px solid rgba(255, 250, 242, 0.34);
}

.details-facts article {
  min-width: 0;
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 250, 242, 0.22);
}

.details-facts article:last-child {
  border-right: 0;
}

.details-facts span,
.details-groups h3 {
  color: rgba(255, 250, 242, 0.68);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.details-facts strong {
  display: block;
  margin-top: 8px;
  color: #fffaf2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 300;
  line-height: 1;
}

.details-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
  margin-top: clamp(34px, 5vw, 58px);
}

.details-groups article {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 250, 242, 0.24);
}

.details-groups h3 {
  margin: 0 0 16px;
}

.details-groups ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.details-groups li {
  color: rgba(255, 250, 242, 0.82);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.55;
}

.nearby-activities {
  margin-top: clamp(34px, 5vw, 60px);
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid rgba(255, 250, 242, 0.3);
}

.nearby-intro {
  max-width: 760px;
  margin: 0 auto clamp(24px, 4vw, 40px);
  text-align: center;
}

.nearby-intro h3 {
  margin: 8px 0 12px;
  color: #fffaf2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.15rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: 0.96;
}

.nearby-intro p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  font-weight: 300;
  line-height: 1.55;
}

.activity-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 250, 242, 0.26);
  border-bottom: 1px solid rgba(255, 250, 242, 0.26);
}

.activity-list article {
  min-width: 0;
  padding: 24px 18px;
  border-right: 1px solid rgba(255, 250, 242, 0.18);
}

.activity-list article:last-child {
  border-right: 0;
}

.activity-list span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 250, 242, 0.62);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.activity-list strong {
  display: block;
  color: #fffaf2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.32rem, 2vw, 1.85rem);
  font-weight: 300;
  line-height: 1.05;
}

.activity-list p {
  margin: 14px 0 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.55;
}

.location-orientation {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  margin-top: clamp(34px, 5vw, 60px);
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid rgba(255, 250, 242, 0.3);
}

.orientation-copy {
  text-align: left;
}

.orientation-copy h3 {
  margin: 8px 0 14px;
  color: #fffaf2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.05rem, 4.3vw, 4rem);
  font-weight: 300;
  line-height: 0.98;
}

.orientation-copy p:not(.eyebrow) {
  margin: 0 0 22px;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 300;
  line-height: 1.58;
}

.orientation-map {
  position: relative;
  min-height: clamp(340px, 42vw, 460px);
  overflow: hidden;
  border-top: 1px solid rgba(255, 250, 242, 0.28);
  border-bottom: 1px solid rgba(255, 250, 242, 0.28);
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 250, 242, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 52%, rgba(255, 250, 242, 0.13), transparent 34%);
  background-size: 22% 100%, 100% 24%, 100% 100%;
}

.orientation-map::before,
.orientation-map::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.orientation-map::before {
  left: 9%;
  right: 9%;
  bottom: 18%;
  height: 22%;
  border-top: 1px solid rgba(202, 174, 131, 0.66);
  border-radius: 50% 50% 0 0;
  transform: rotate(-2deg);
}

.orientation-map::after {
  left: 50%;
  top: 18%;
  width: 1px;
  height: 62%;
  background: linear-gradient(180deg, transparent, rgba(255, 250, 242, 0.46), transparent);
  transform: rotate(42deg);
  transform-origin: center;
}

.map-label {
  position: absolute;
  color: rgba(255, 250, 242, 0.48);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.map-label-top {
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.map-point {
  position: absolute;
  display: grid;
  gap: 4px;
  max-width: 190px;
  padding-left: 17px;
  color: rgba(255, 250, 242, 0.82);
}

.map-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 8px;
  height: 8px;
  background: #fffaf2;
  border: 1px solid rgba(255, 250, 242, 0.82);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 250, 242, 0.1);
}

.map-point-home::before {
  background: #caae83;
  border-color: #caae83;
  box-shadow: 0 0 0 7px rgba(202, 174, 131, 0.18);
}

.map-point b {
  color: #fffaf2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.28rem, 2vw, 1.78rem);
  font-weight: 300;
  line-height: 1;
}

.map-point small {
  color: rgba(255, 250, 242, 0.62);
  font-size: 0.74rem;
  font-weight: 300;
  line-height: 1.25;
}

.map-point-home {
  left: 45%;
  top: 42%;
}

.map-point-halles {
  left: 24%;
  top: 30%;
}

.map-point-park {
  right: 14%;
  top: 27%;
}

.map-point-water {
  left: 14%;
  bottom: 15%;
}

.map-point-road {
  right: 8%;
  bottom: 13%;
}

.google-map-panel {
  position: relative;
  min-height: clamp(360px, 42vw, 500px);
  overflow: hidden;
  border-top: 1px solid rgba(255, 250, 242, 0.28);
  border-bottom: 1px solid rgba(255, 250, 242, 0.28);
  background:
    linear-gradient(180deg, rgba(23, 33, 31, 0.54), rgba(23, 33, 31, 0.82)),
    url("assets/gmn-photo-10.jpg") center / cover;
}

.map-consent {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  padding: clamp(24px, 5vw, 46px);
  text-align: center;
}

.map-consent strong {
  max-width: 540px;
  color: #fffaf2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 0.98;
}

.map-consent p:not(.eyebrow) {
  max-width: 46ch;
  margin: 0;
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.55;
}

.google-map-panel iframe {
  display: block;
  width: 100%;
  height: clamp(360px, 42vw, 500px);
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.google-map-panel.is-loaded {
  background: #17211f;
}

.details-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(28px, 4vw, 46px);
}

/* Cohérence finale avec les photos Holidu importées localement. */
:root {
  --photo-stone: #ead8bf;
  --photo-linen: #fbf3e8;
  --photo-sand: #caae83;
  --photo-lagoon: #6f9692;
  --photo-lagoon-deep: #244844;
  --photo-shutter: #466f84;
  --photo-terracotta: #a95e4c;
  --paper: #ead8bf;
  --sea-dark: var(--photo-lagoon-deep);
  --terracotta: var(--photo-sand);
}

.site-header {
  background: rgba(234, 216, 191, 0.92);
}

.hero-media {
  background-position: center 48%;
  filter: saturate(1.04) contrast(1.03) brightness(0.96);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(20, 30, 27, 0.18), rgba(20, 30, 27, 0.52)),
    linear-gradient(90deg, rgba(36, 72, 68, 0.24), rgba(169, 94, 76, 0.13));
}

.section-intro {
  background-position: center 52%;
}

.split-section {
  background-position: center 54%;
}

.cta-band {
  background-position: center 47%;
}

.reservation-section {
  background-position: center 48%;
}

.section-intro::before,
.split-section::before,
.reservation-section::before,
.cta-band::before {
  background:
    linear-gradient(180deg, rgba(26, 35, 31, 0.32), rgba(26, 35, 31, 0.56)),
    linear-gradient(90deg, rgba(36, 72, 68, 0.18), rgba(169, 94, 76, 0.13));
}

.button-primary,
.button-facebook,
.mobile-booking-bar {
  background: rgba(36, 72, 68, 0.96);
  border-color: rgba(36, 72, 68, 0.96);
}

.button-primary:hover,
.button-primary:focus-visible,
.button-facebook:hover,
.button-facebook:focus-visible {
  background: #315c57;
  border-color: #315c57;
}

.button-light,
.mobile-booking-bar a:first-of-type {
  color: #244844;
  background: rgba(251, 243, 232, 0.92);
}

.mobile-booking-bar a:last-child {
  color: #24322f;
  background: #caae83;
}

.hero-contact-line,
.trust-strip span,
.photo-modal-heading p,
.luxury-photo figcaption {
  text-shadow: 0 1px 18px rgba(8, 13, 11, 0.14);
}

.photo-modal {
  background:
    linear-gradient(180deg, rgba(22, 32, 29, 0.98), rgba(18, 27, 24, 0.98)),
    #17211f;
}

.luxury-gallery-grid {
  grid-template-columns: 1.28fr 0.92fr 0.92fr;
  grid-auto-rows: minmax(230px, 29vh);
  background: rgba(251, 243, 232, 0.2);
  border-color: rgba(251, 243, 232, 0.24);
}

.luxury-photo img {
  filter: saturate(1.02) contrast(1.035) brightness(0.98);
}

.luxury-photo:hover img,
.luxury-photo:focus-within img {
  filter: saturate(1.08) contrast(1.05) brightness(1);
}

.luxury-photo:nth-child(1) img {
  object-position: 45% 50%;
}

.luxury-photo:nth-child(2) img {
  object-position: 46% 48%;
}

.luxury-photo:nth-child(3) img {
  object-position: 54% 50%;
}

.luxury-photo:nth-child(4) img {
  object-position: 43% 50%;
}

.luxury-photo:nth-child(5) img {
  object-position: 52% 46%;
}

.rate-panel,
.booking-form {
  border-color: rgba(251, 243, 232, 0.48);
}

.booking-form {
  background:
    linear-gradient(180deg, rgba(36, 72, 68, 0.33), rgba(74, 47, 42, 0.26)),
    rgba(18, 27, 24, 0.22);
}

/* Galerie photo premium : une seule ouverture, toutes les vues importantes. */
.gallery-backdrop {
  z-index: 70;
  padding: clamp(12px, 2vw, 26px);
  background:
    radial-gradient(circle at 50% 0%, rgba(126, 166, 170, 0.18), transparent 42%),
    rgba(12, 18, 16, 0.82);
  backdrop-filter: blur(16px);
}

.photo-modal {
  width: min(1180px, 100%);
  max-height: calc(100dvh - 44px);
  color: #f8f1e7;
  background: #17211f;
  border: 1px solid rgba(248, 241, 231, 0.2);
  box-shadow: 0 30px 90px rgba(6, 10, 9, 0.46);
}

.photo-modal .gallery-close {
  position: absolute;
  top: 18px;
  right: 18px;
  float: none;
  margin: 0;
  color: #24322f;
  background: #f8f1e7;
  border: 1px solid rgba(248, 241, 231, 0.2);
}

.photo-modal-scroll {
  max-height: calc(100dvh - 44px);
  padding: clamp(26px, 4vw, 54px);
}

.photo-modal-heading {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto clamp(22px, 4vw, 38px);
  text-align: center;
}

.photo-modal-heading .eyebrow {
  margin-bottom: 12px;
  color: rgba(248, 241, 231, 0.7);
}

.photo-modal-heading h2 {
  margin-bottom: 16px;
  color: #f8f1e7;
  font-size: clamp(2.8rem, 7vw, 6.6rem);
  text-align: center;
}

.photo-modal-heading p {
  margin: 0;
  color: rgba(248, 241, 231, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.24rem);
  font-weight: 300;
}

.luxury-gallery-grid {
  display: grid;
  grid-template-columns: 1.24fr 0.88fr 0.88fr;
  grid-auto-rows: minmax(210px, 28vh);
  gap: 1px;
  background: rgba(248, 241, 231, 0.22);
  border: 1px solid rgba(248, 241, 231, 0.22);
}

.luxury-photo {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  background: #22312f;
}

.luxury-photo-feature {
  grid-row: span 2;
}

.luxury-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 850ms cubic-bezier(0.16, 1, 0.3, 1), filter 850ms cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-photo:hover img,
.luxury-photo:focus-within img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.04);
}

.luxury-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 42px 18px 16px;
  color: #fffaf2;
  background: linear-gradient(180deg, transparent, rgba(13, 19, 17, 0.78));
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.photo-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(22px, 4vw, 38px);
}

.photo-modal-actions .button-primary {
  color: #fffaf2;
  background: #315c57;
  border-color: #315c57;
}

.photo-modal-actions .button-primary:hover,
.photo-modal-actions .button-primary:focus-visible {
  color: #17211f;
  background: #f8f1e7;
  border-color: #f8f1e7;
}

.rate-panel {
  padding: 20px 0 18px;
  color: #fffaf2;
  border-top: 1px solid rgba(248, 241, 231, 0.32);
  border-bottom: 1px solid rgba(248, 241, 231, 0.32);
}

.rate-panel > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 250, 242, 0.62);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rate-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #fffaf2;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 300;
  line-height: 1;
}

.rate-panel p {
  margin: 0;
  color: rgba(255, 250, 242, 0.76);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  line-height: 1.55;
}

.rate-status {
  margin-top: 6px !important;
  color: rgba(255, 250, 242, 0.9) !important;
}

.rate-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px 22px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.rate-lines li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  color: rgba(255, 250, 242, 0.78);
  border-top: 1px solid rgba(248, 241, 231, 0.18);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rate-lines b {
  font-weight: 300;
}

.rate-lines span {
  color: #fffaf2;
  text-align: right;
}

.availability-picker,
.booking-options {
  color: #fffaf2;
}

.availability-heading,
.booking-options-heading {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.availability-heading span,
.booking-options-heading span {
  color: rgba(255, 250, 242, 0.68);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.availability-heading p,
.booking-options-heading p {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.55;
}

.availability-duration-note {
  display: inline-flex;
  width: fit-content;
  margin: 12px 0 18px;
  padding-bottom: 5px;
  color: #fffaf2;
  border-bottom: 1px solid rgba(248, 241, 231, 0.52);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.availability-summary {
  margin: 0 0 16px;
  padding: 12px 0;
  color: #fffaf2;
  border-top: 1px solid rgba(248, 241, 231, 0.2);
  border-bottom: 1px solid rgba(248, 241, 231, 0.2);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 300;
  line-height: 1.1;
}

.availability-calendar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 26px;
}

.availability-month {
  min-width: 0;
}

.availability-month h3 {
  margin: 0 0 10px;
  color: rgba(255, 250, 242, 0.84);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.availability-week-list {
  display: grid;
  border-top: 1px solid rgba(248, 241, 231, 0.2);
}

.availability-week {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid rgba(248, 241, 231, 0.16);
}

.availability-week strong {
  color: #fffaf2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.1rem, 1.8vw, 1.48rem);
  font-weight: 300;
  line-height: 1;
}

.availability-week span,
.availability-week small {
  color: rgba(255, 250, 242, 0.66);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.availability-week small {
  color: #fffaf2;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(248, 241, 231, 0.48);
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 3px;
}

.calendar-weekdays {
  margin-bottom: 5px;
  color: rgba(255, 250, 242, 0.44);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  display: grid;
  place-items: center;
  min-width: 0;
  aspect-ratio: 1;
  color: rgba(255, 250, 242, 0.34);
  border: 1px solid transparent;
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1;
}

.calendar-day.is-available {
  color: rgba(255, 250, 242, 0.64);
  border-color: rgba(248, 241, 231, 0.12);
}

.calendar-day.is-start {
  color: #fffaf2;
  border-color: rgba(248, 241, 231, 0.42);
  background: rgba(248, 241, 231, 0.08);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.calendar-day.is-start:hover,
.calendar-day.is-start:focus-visible {
  color: #17211f;
  background: #fffaf2;
  border-color: #fffaf2;
  outline: none;
  transform: translateY(-1px);
}

.calendar-day.is-selected,
.calendar-day.is-selected-range {
  color: #17211f;
  background: #fffaf2;
  border-color: #fffaf2;
}

.calendar-day.is-selected-range {
  opacity: 0.72;
}

.availability-picker > small,
.booking-options > small {
  min-height: 18px;
  display: block;
  margin-top: 8px;
  color: rgba(255, 250, 242, 0.62);
  font-size: 0.82rem;
}

.availability-picker > small[data-error-for],
.booking-options > small[data-error-for] {
  color: #f0b39f;
}

.booking-options {
  padding-top: 4px;
}

.option-toggle-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(248, 241, 231, 0.22);
  border-bottom: 1px solid rgba(248, 241, 231, 0.22);
}

.option-toggle {
  display: grid;
  gap: 8px;
  min-height: 86px;
  padding: 16px 14px;
  color: rgba(255, 250, 242, 0.78);
  text-align: left;
  background: rgba(248, 241, 231, 0.04);
  border: 0;
  border-right: 1px solid rgba(248, 241, 231, 0.18);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.option-toggle:last-child {
  border-right: 0;
}

.option-toggle span {
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.option-toggle strong {
  color: #fffaf2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
}

.option-toggle em {
  justify-self: start;
  color: #fffaf2;
  border-bottom: 1px solid currentColor;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.option-toggle:hover,
.option-toggle:focus-visible {
  color: #fffaf2;
  background: rgba(248, 241, 231, 0.12);
  outline: 1px solid rgba(248, 241, 231, 0.64);
  outline-offset: -1px;
  transform: translateY(-1px);
}

.option-toggle[aria-pressed="true"] {
  color: #fffaf2;
  background: rgba(248, 241, 231, 0.16);
  outline: 1px solid rgba(248, 241, 231, 0.56);
  outline-offset: -1px;
}

.option-toggle[aria-pressed="true"] em {
  color: #f7dfb6;
}

label small.field-helper {
  min-height: auto;
  margin-top: 6px;
  color: rgba(255, 250, 242, 0.62);
}

@media (max-width: 900px) {
  .luxury-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(220px, 34vh);
  }

  .luxury-photo-feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .photo-modal-scroll {
    padding: 62px 14px 22px;
  }

  .photo-modal .gallery-close {
    top: 12px;
    right: 12px;
  }

  .luxury-gallery-grid,
  .availability-calendar,
  .option-toggle-group,
  .rate-lines {
    grid-template-columns: 1fr;
  }

  .availability-week {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .option-toggle {
    border-right: 0;
    border-bottom: 1px solid rgba(248, 241, 231, 0.18);
  }

  .option-toggle:last-child {
    border-bottom: 0;
  }

  .luxury-gallery-grid {
    grid-auto-rows: minmax(230px, 44vh);
  }

  .luxury-photo figcaption {
    font-size: 0.62rem;
  }

  .details-facts,
  .details-groups,
  .activity-list,
  .pricing-lines,
  .location-orientation {
    grid-template-columns: 1fr;
  }

  .details-facts article,
  .activity-list article,
  .pricing-lines article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 242, 0.18);
  }

  .details-facts article:last-child,
  .activity-list article:last-child,
  .pricing-lines article:last-child {
    border-bottom: 0;
  }

  .pricing-main .button {
    display: none;
  }

  .orientation-copy {
    text-align: center;
  }

  .orientation-map,
  .google-map-panel,
  .google-map-panel iframe {
    min-height: 520px;
  }

  .map-point {
    max-width: 145px;
  }

  .map-point-home {
    left: 38%;
    top: 42%;
  }

  .map-point-halles {
    left: 8%;
    top: 28%;
  }

  .map-point-park {
    right: 6%;
    top: 22%;
  }

  .map-point-water {
    left: 8%;
    bottom: 16%;
  }

  .map-point-road {
    right: 6%;
    bottom: 12%;
  }
}

/* Dernière passe photo : galerie complète, dense et lisible sur desktop. */
.photo-modal {
  width: min(1420px, 100%);
  background:
    linear-gradient(180deg, rgba(22, 32, 29, 0.98), rgba(18, 27, 24, 0.98)),
    #17211f;
}

.photo-modal-scroll {
  padding: clamp(24px, 3vw, 42px);
}

.photo-modal-heading {
  margin-bottom: clamp(18px, 2.5vw, 28px);
}

.photo-modal-heading h2 {
  font-size: clamp(2.35rem, 4.8vw, 5.15rem);
}

.gallery-group {
  margin-top: clamp(16px, 2vw, 24px);
}

.gallery-divider {
  margin: 0 0 10px;
  color: rgba(248, 241, 231, 0.92);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 12px 32px rgba(5, 9, 8, 0.42);
}

.luxury-gallery-grid {
  grid-auto-flow: dense;
  grid-template-columns: 1.18fr repeat(3, 0.94fr);
  grid-auto-rows: minmax(118px, 13.4vh);
  background: rgba(251, 243, 232, 0.2);
  border-color: rgba(251, 243, 232, 0.24);
}

.luxury-gallery-grid-main {
  grid-auto-rows: minmax(108px, 12.15vh);
}

.luxury-gallery-grid-surroundings {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(108px, 12.15vh);
}

.luxury-photo {
  min-height: 118px;
}

.luxury-photo-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.luxury-photo img {
  filter: saturate(1.02) contrast(1.035) brightness(0.98);
}

.luxury-photo:hover img,
.luxury-photo:focus-within img {
  filter: saturate(1.08) contrast(1.05) brightness(1);
}

.luxury-photo:nth-child(1) img {
  object-position: 45% 50%;
}

.luxury-photo:nth-child(2) img {
  object-position: 46% 48%;
}

.luxury-photo:nth-child(3) img {
  object-position: 54% 50%;
}

.luxury-photo:nth-child(4) img {
  object-position: 43% 50%;
}

.luxury-photo:nth-child(5) img {
  object-position: 52% 46%;
}

.luxury-photo:nth-child(6) img {
  object-position: 48% 50%;
}

.luxury-photo:nth-child(7) img {
  object-position: 48% 48%;
}

.luxury-photo:nth-child(8) img {
  object-position: 47% 50%;
}

.luxury-photo:nth-child(9) img {
  object-position: 42% 50%;
}

.luxury-photo:nth-child(10) img {
  object-position: 53% 50%;
}

.luxury-photo:nth-child(10) {
  grid-column: span 2;
}

.luxury-gallery-grid-surroundings .luxury-photo:nth-child(1) img {
  object-position: 53% 50%;
}

.luxury-gallery-grid-surroundings .luxury-photo:nth-child(2) img {
  object-position: 50% 47%;
}

.luxury-gallery-grid-surroundings .luxury-photo:nth-child(3) img {
  object-position: 49% 50%;
}

.luxury-photo:nth-child(11) img {
  object-position: 50% 47%;
}

.luxury-photo:nth-child(12) img {
  object-position: 49% 50%;
}

@media (max-width: 900px) {
  .luxury-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(220px, 34vh);
  }

  .luxury-gallery-grid-surroundings {
    grid-template-columns: 1fr 1fr;
  }

  .luxury-photo-feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .luxury-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(230px, 44vh);
  }

  .luxury-gallery-grid-surroundings {
    grid-template-columns: 1fr;
  }
}

/* Sélection photo réelle : logement + autour de Mèze. */
.hero-media {
  background-image: url("assets/gmn-photo-1.jpg");
  background-position: center 54%;
}

.nearby-photo-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.78fr 0.78fr;
  grid-auto-rows: minmax(168px, 18vw);
  gap: 1px;
  margin-top: clamp(28px, 4vw, 46px);
  background: rgba(255, 250, 242, 0.22);
  border: 1px solid rgba(255, 250, 242, 0.22);
}

.nearby-photo-tile {
  position: relative;
  min-height: 168px;
  padding: 0;
  overflow: hidden;
  color: #fffaf2;
  background: #17211f;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.nearby-photo-tile-large {
  grid-row: span 2;
}

.nearby-photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.03) brightness(0.9);
  transition: transform 850ms cubic-bezier(0.16, 1, 0.3, 1), filter 850ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nearby-photo-tile:hover img,
.nearby-photo-tile:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04) brightness(1);
}

.nearby-photo-tile span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: #fffaf2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  font-weight: 300;
  line-height: 0.96;
  text-shadow: 0 18px 42px rgba(5, 9, 8, 0.58);
}

.nearby-photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(13, 19, 17, 0.86));
  pointer-events: none;
}

.nearby-photo-action {
  display: grid;
  grid-column: span 2;
  align-content: end;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  color: #fffaf2;
  background:
    linear-gradient(180deg, rgba(49, 92, 87, 0.92), rgba(29, 45, 41, 0.96)),
    #244844;
}

.nearby-photo-action p {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 250, 242, 0.82);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.55;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto clamp(18px, 2.4vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(248, 241, 231, 0.26);
}

.gallery-tabs button {
  min-height: 40px;
  padding: 10px 16px;
  color: rgba(248, 241, 231, 0.78);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(248, 241, 231, 0.18);
  cursor: pointer;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.gallery-tabs button:last-child {
  border-right: 0;
}

.gallery-tabs button[aria-pressed="true"] {
  color: #17211f;
  background: #f8f1e7;
}

.gallery-tabs button:hover,
.gallery-tabs button:focus-visible {
  color: #fffaf2;
  background: rgba(248, 241, 231, 0.12);
  outline: none;
}

.gallery-tabs button[aria-pressed="true"]:hover,
.gallery-tabs button[aria-pressed="true"]:focus-visible {
  color: #17211f;
  background: #fffaf2;
}

.luxury-gallery-grid-surroundings {
  grid-template-columns: 1.18fr repeat(3, 0.94fr);
}

.luxury-gallery-grid-surroundings .luxury-photo:nth-child(5),
.luxury-gallery-grid-surroundings .luxury-photo:nth-child(6) {
  grid-row: span 2;
}

.luxury-gallery-grid-main .luxury-photo:nth-child(10) img {
  object-position: 50% 44%;
}

.luxury-gallery-grid-surroundings .luxury-photo:nth-child(1) img {
  object-position: 50% 52%;
}

.luxury-gallery-grid-surroundings .luxury-photo:nth-child(2) img {
  object-position: 50% 46%;
}

.luxury-gallery-grid-surroundings .luxury-photo:nth-child(3) img {
  object-position: 48% 52%;
}

.luxury-gallery-grid-surroundings .luxury-photo:nth-child(4) img {
  object-position: 50% 50%;
}

.luxury-gallery-grid-surroundings .luxury-photo:nth-child(5) img {
  object-position: 52% 50%;
}

.luxury-gallery-grid-surroundings .luxury-photo:nth-child(6) img {
  object-position: 50% 48%;
}

@media (max-width: 900px) {
  .nearby-photo-showcase {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(210px, 32vh);
  }

  .nearby-photo-tile-large,
  .nearby-photo-action {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .luxury-gallery-grid-surroundings {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nearby-photo-showcase {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(230px, 38vh);
  }

  .nearby-photo-action {
    min-height: 210px;
  }

  .gallery-tabs {
    width: 100%;
  }

  .gallery-tabs button {
    flex: 1 1 0;
    padding-inline: 10px;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .luxury-gallery-grid-surroundings .luxury-photo:nth-child(5),
  .luxury-gallery-grid-surroundings .luxury-photo:nth-child(6) {
    grid-row: auto;
  }
}

/* Galerie finale : grille régulière, sans cases vides visibles, avec zoom photo. */
.photo-modal {
  position: relative;
  width: min(1360px, 100%);
}

.luxury-gallery-grid,
.luxury-gallery-grid-main,
.luxury-gallery-grid-surroundings {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  grid-auto-rows: auto !important;
  grid-auto-flow: row !important;
  gap: 12px;
  background: transparent;
  border: 0;
}

.luxury-photo,
.luxury-photo-feature,
.luxury-photo:nth-child(10),
.luxury-gallery-grid-surroundings .luxury-photo:nth-child(5),
.luxury-gallery-grid-surroundings .luxury-photo:nth-child(6) {
  grid-column: auto !important;
  grid-row: auto !important;
}

.luxury-photo {
  min-height: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(248, 241, 231, 0.22);
  cursor: zoom-in;
}

.luxury-photo:focus-visible {
  outline: 2px solid #f8f1e7;
  outline-offset: 3px;
}

.luxury-photo img {
  filter: saturate(1.03) contrast(1.02) brightness(1);
}

.luxury-photo figcaption {
  padding: 36px 14px 13px;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 19, 17, 0.72) 100%);
}

.photo-viewer {
  position: absolute;
  inset: clamp(12px, 2vw, 28px);
  z-index: 6;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2vw, 28px);
  background: rgba(12, 18, 16, 0.94);
  border: 1px solid rgba(248, 241, 231, 0.24);
  backdrop-filter: blur(18px);
}

.photo-viewer[hidden] {
  display: none !important;
}

.photo-viewer figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  margin: 0;
}

.photo-viewer img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100dvh - 180px);
  object-fit: contain;
  background: transparent;
}

.gallery-backdrop.is-photo-open .gallery-close {
  opacity: 0;
  pointer-events: none;
}

.photo-viewer figcaption {
  display: grid;
  gap: 5px;
  color: #fffaf2;
  text-align: center;
}

.photo-viewer strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  font-weight: 300;
  line-height: 1;
}

.photo-viewer span {
  color: rgba(255, 250, 242, 0.74);
  font-size: 0.9rem;
  font-weight: 300;
}

.photo-viewer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  min-height: 38px;
  padding: 9px 13px;
  color: #17211f;
  background: #f8f1e7;
  border: 1px solid rgba(248, 241, 231, 0.22);
  cursor: pointer;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .luxury-gallery-grid,
  .luxury-gallery-grid-main,
  .luxury-gallery-grid-surroundings {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .luxury-gallery-grid,
  .luxury-gallery-grid-main,
  .luxury-gallery-grid-surroundings {
    grid-template-columns: 1fr !important;
  }

  .luxury-photo {
    aspect-ratio: 1 / 1;
  }

  .photo-viewer {
    inset: 8px;
    padding: 54px 10px 14px;
  }

  .photo-viewer figure {
    justify-content: flex-start;
    padding-top: 74px;
  }

  .photo-viewer img {
    max-height: calc(100dvh - 300px);
  }
}

/* Finition galerie : dernières lignes équilibrées, sans trou visuel. */
.luxury-gallery-grid-main .luxury-photo:nth-last-child(-n + 2) {
  grid-column: span 2 !important;
  aspect-ratio: 16 / 9;
}

.luxury-gallery-grid-surroundings .luxury-photo:nth-last-child(3) {
  grid-column: span 2 !important;
}

@media (max-width: 900px) {
  .luxury-gallery-grid-main .luxury-photo:nth-last-child(-n + 2),
  .luxury-gallery-grid-surroundings .luxury-photo:nth-last-child(3) {
    grid-column: auto !important;
    aspect-ratio: 4 / 3;
  }

  .luxury-gallery-grid-surroundings .luxury-photo:last-child {
    grid-column: span 2 !important;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .luxury-gallery-grid-main .luxury-photo:nth-last-child(-n + 2),
  .luxury-gallery-grid-surroundings .luxury-photo:nth-last-child(3),
.luxury-gallery-grid-surroundings .luxury-photo:last-child {
    grid-column: auto !important;
    aspect-ratio: 1 / 1;
  }
}

/* Section photos : fond différent de l'accueil pour éviter le doublon visuel. */
.section-intro {
  background-image: url("assets/gmn-gallery/logement-jardin-principal.jpg") !important;
  background-position: center 50%;
}

/* Disponibilités : présentation plus respirante pour les semaines indicatives. */
.availability-calendar {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.availability-month {
  display: grid;
  gap: 11px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(248, 241, 231, 0.18);
  background: rgba(255, 250, 242, 0.045);
}

.availability-month h3 {
  margin: 0;
  text-align: center;
}

.availability-week-list {
  border-top: 0;
}

.availability-week {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 9px;
  padding: 4px 0 0;
  border-bottom: 0;
  text-align: center;
}

.availability-week strong {
  white-space: nowrap;
  font-size: clamp(1.34rem, 2vw, 1.85rem);
  letter-spacing: 0;
}

.availability-week span,
.availability-week small {
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .availability-calendar {
    grid-template-columns: 1fr;
  }

  .availability-month {
    padding: 16px;
  }
}

@media (max-width: 420px) {
  .availability-week strong {
    font-size: 1.26rem;
  }
}

/* Disponibilités finales : une ligne claire par créneau, lisible dans le panneau. */
.availability-calendar {
  grid-template-columns: 1fr;
  gap: 10px;
}

.availability-month {
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 15px 18px;
}

.availability-month h3 {
  text-align: left;
}

.availability-week {
  grid-template-columns: minmax(0, 1fr) auto auto;
  justify-items: stretch;
  align-items: baseline;
  gap: 14px;
  padding: 0;
  text-align: left;
}

.availability-week strong {
  font-size: clamp(1.28rem, 1.65vw, 1.65rem);
}

@media (max-width: 640px) {
  .availability-month {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .availability-month h3,
  .availability-week {
    text-align: center;
  }

  .availability-week {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

/* Accueil final : photo intérieure demandée, conservée aussi dans la galerie. */
.hero-media {
  background-image: url("assets/gmn-gallery/logement-sejour-mezzanine.jpg") !important;
  background-position: center 48%;
}

/* Header final : écritures en noir pour une lecture plus nette. */
.site-header .brand strong,
.site-header .brand small,
.site-header .desktop-nav a,
.site-header .desktop-contact .button,
.site-header .menu-toggle,
.mobile-menu nav a,
.mobile-contact .button {
  color: #111111;
}

.site-header .desktop-contact .button,
.mobile-contact .button {
  background: rgba(255, 252, 246, 0.44);
  border-color: rgba(17, 17, 17, 0.2);
}

.site-header .desktop-contact .button-facebook,
.mobile-contact .button-facebook {
  color: #111111;
  background: rgba(255, 252, 246, 0.7);
  border-color: rgba(17, 17, 17, 0.24);
}

.site-header .desktop-nav a:hover,
.site-header .desktop-nav a:focus-visible,
.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible {
  color: #111111;
  border-color: currentColor;
}

/* Header visibilité renforcée. */
.site-header {
  background: rgba(235, 216, 190, 0.98) !important;
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
}

.site-header .brand strong,
.site-header .brand small,
.site-header .desktop-nav a,
.site-header .desktop-contact .button,
.site-header .menu-toggle,
.mobile-menu nav a,
.mobile-contact .button {
  color: #0f1110 !important;
  opacity: 1;
}

.site-header .desktop-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

.site-header .desktop-contact .button,
.mobile-contact .button {
  background: rgba(255, 250, 242, 0.92);
  border-color: rgba(17, 17, 17, 0.34);
}

.site-header .desktop-contact .button:hover,
.site-header .desktop-contact .button:focus-visible,
.mobile-contact .button:hover,
.mobile-contact .button:focus-visible {
  background: #fffaf2;
  border-color: rgba(17, 17, 17, 0.54);
}

/* Galerie alentours : photos plage et bassin, dernière ligne équilibrée. */
.luxury-gallery-grid-surroundings .luxury-photo:last-child {
  grid-column: span 4 !important;
  aspect-ratio: 16 / 7;
}

@media (max-width: 900px) {
  .luxury-gallery-grid-surroundings .luxury-photo:last-child {
    grid-column: span 2 !important;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .luxury-gallery-grid-surroundings .luxury-photo:last-child {
    grid-column: auto !important;
    aspect-ratio: 1 / 1;
  }
}

/* Disponibilités : date et durée séparées pour éviter tout chevauchement desktop. */
.availability-week {
  grid-template-columns: 1fr;
  justify-items: start;
  gap: 8px;
}

.availability-week strong {
  max-width: 100%;
  white-space: normal;
  line-height: 1.08;
}

.availability-week span,
.availability-week small {
  display: inline-flex;
  width: fit-content;
}

@media (min-width: 641px) {
  .availability-week {
    grid-template-columns: auto auto;
    justify-content: start;
    align-items: center;
    column-gap: 18px;
    row-gap: 8px;
  }

  .availability-week strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .availability-week {
    justify-items: center;
  }
}

/* Réservation : onglets saison lisibles, prix uniquement à la semaine. */
.season-rate-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 12px;
}

.season-rate-tab {
  display: grid;
  gap: 7px;
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(248, 241, 231, 0.2);
  border-radius: 8px;
  color: var(--cream);
  background: rgba(255, 250, 242, 0.045);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.season-rate-tab:hover,
.season-rate-tab:focus-visible,
.season-rate-tab[aria-pressed="true"] {
  border-color: rgba(232, 215, 181, 0.72);
  background: rgba(232, 215, 181, 0.12);
}

.season-rate-tab:active {
  transform: translateY(1px);
}

.season-rate-tab span,
.season-rate-tab small {
  font-family: var(--sans);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.season-rate-tab span {
  font-size: 0.72rem;
  color: rgba(248, 241, 231, 0.72);
}

.season-rate-tab strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.08;
}

.season-rate-tab small {
  max-width: 24ch;
  color: rgba(248, 241, 231, 0.66);
  font-size: 0.68rem;
  line-height: 1.45;
}

.availability-season-overview {
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 1fr);
}

.availability-season-window span {
  font-family: var(--serif);
  font-size: clamp(1.04rem, 1.35vw, 1.28rem);
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 720px) {
  .season-rate-tabs {
    grid-template-columns: 1fr;
  }

  .season-rate-tab {
    min-height: auto;
  }

  .availability-season-overview {
    grid-template-columns: 1fr;
  }
}
