/* ─── Global reset & smoothing ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: rgba(200, 169, 106, 0.25);
}

/* ─── Remove WP default block gaps between top-level sections only ─── */
:where(.wp-site-blocks) > *,
:where(.wp-site-blocks) > main > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

.wp-site-blocks > * + *,
.wp-site-blocks > main > * + * {
  margin-block-start: 0;
}

/* ─── Focus accessible (RGAA/AA) ─── */
:focus-visible {
  outline: 2px solid var(--wp--preset--color--gold);
  outline-offset: 1px;
}

/* ─── Scroll offset for fixed header ─── */
section[id] {
  scroll-margin-top: 130px;
}

/* ─── Gold decorative line (separator) ─── */
.gold-line,
.wp-block-separator.gold-line {
  width: 48px;
  height: 1.5px;
  border: none;
  background: var(--wp--preset--color--gold);
  opacity: 1;
}

/* ─── Header ─── */
header.wp-block-template-part {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.logged-in.admin-bar header.wp-block-template-part {
  top: 32px;
}

@media (max-width: 782px) {
  .logged-in.admin-bar header.wp-block-template-part {
    top: 0;
  }
}

.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(41, 62, 84, 0.10);
  transition: box-shadow 0.4s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 18px rgba(41, 62, 84, 0.07);
}

/* Utility bar */
.header-utility {
  border-bottom: 1px solid rgba(41, 62, 84, 0.07);
  background: #FBF9F5;
}

.header-utility-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 38px;
  padding: 0 clamp(24px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--wp--preset--color--blue);
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.header-divider {
  width: 1px;
  height: 14px;
  background: rgba(41, 62, 84, 0.18);
}

.header-lang-switch {
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--wp--preset--color--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-inactive {
  opacity: 0.45;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.lang-inactive:hover {
  opacity: 1;
}

.lang-sep {
  opacity: 0.3;
}

/* Main header row */
.header-main {
  background: #fff;
  padding: 0 clamp(20px, 4vw, 60px);
}

.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  max-width: 1400px;
  margin: 0 auto;
  gap: clamp(16px, 3vw, 32px);
}

.header-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 60px;
  text-decoration: none;
}

.header-logo img {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* Navigation */
.main-navigation {
  display: flex;
  gap: clamp(4px, 0.6vw, 10px);
  flex: 1;
  justify-content: center;
  align-items: center;
}

.nav-link {
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--wp--preset--color--blue);
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 12px;
  position: relative;
  letter-spacing: 0.005em;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 2px;
  height: 1.5px;
  background: var(--wp--preset--color--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover {
  color: #1a2d40;
  background: rgba(200, 169, 106, 0.12);
  border-radius: 4px;
}

/* Header CTA */
.header-cta-group {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.header-cta-btn {
  font-family: var(--wp--preset--font-family--lexend-zetta);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--wp--preset--color--blue);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s ease;
  white-space: nowrap;
}

.header-cta-btn:hover {
  background: var(--wp--preset--color--gold);
  color: #fff;
}

.header-cta-contact {
  background: var(--wp--preset--color--gold);
}

.header-cta-contact:hover {
  background: var(--wp--preset--color--blue);
}

/* Burger menu */
.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-right: -10px;
  flex-direction: column;
  gap: 6px;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--wp--preset--color--blue);
  transition: all 0.3s;
}

.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Mobile menu */
.mobile-menu {
  background: #fff;
  border-top: 1px solid rgba(41, 62, 84, 0.08);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-inner {
  padding: 28px clamp(24px, 6vw, 40px) 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--wp--preset--color--blue);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(41, 62, 84, 0.06);
}

.mobile-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--wp--preset--color--blue);
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
}

.mobile-cta-btn {
  font-family: var(--wp--preset--font-family--lexend-zetta);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--wp--preset--color--blue);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  margin-top: 20px;
  transition: all 0.35s ease;
  display: block;
}

.mobile-cta-btn:hover {
  background: var(--wp--preset--color--gold);
  color: #fff;
}

.mobile-cta-contact {
  background: var(--wp--preset--color--gold);
  margin-top: 24px;
}

.mobile-cta-contact:hover {
  background: var(--wp--preset--color--blue);
}

/* ─── Hero (wp:cover block) ─── */
.hero-section .wp-block-cover__inner-container {
  animation: heroFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: clamp(24px, 4vw, 48px);
  right: clamp(24px, 4vw, 56px);
  width: clamp(120px, 16vw, 200px);
  aspect-ratio: 2.47;
  z-index: 1;
  opacity: 0.8;
  pointer-events: none;
  background: url('../images/logo-ohs-blanc.png') no-repeat center / contain;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-btn-primary .wp-block-button__link:hover {
  background: var(--wp--preset--color--blue) !important;
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
  transform: translateY(-1px);
}

.hero-btn-secondary .wp-block-button__link:hover {
  background: #fff !important;
  color: var(--wp--preset--color--blue) !important;
  border-color: #fff !important;
}

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Amenity icons ─── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(28px, 4vw, 48px);
  max-width: 880px;
  margin: 0 auto;
}

.amenities-grid > * + * {
  margin-block-start: 0;
}

.amenity-icon {
  text-align: center;
  cursor: default;
  transition: transform 0.3s ease;
}

.amenity-icon:hover {
  transform: translateY(-4px);
}

.amenity-icon-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1.5px solid var(--wp--preset--color--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: background 0.3s ease;
}

.amenity-icon:hover .amenity-icon-circle {
  background: rgba(200, 169, 106, 0.10);
}

/* ─── Concept images sticky column ─── */
.concept-images {
  position: sticky;
  top: 140px;
}

/* ─── Concept section details ─── */
.concept-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.concept-list li {
  padding-left: 18px;
  position: relative;
  opacity: 0.75;
}

.concept-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--wp--preset--color--gold);
}

/* ─── Timeline ─── */
.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: clamp(28px, 6vw, 56px);
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--wp--preset--color--gold) 10%, var(--wp--preset--color--gold) 90%, transparent);
}

.timeline-item {
  padding: 20px 0;
  gap: clamp(20px, 4vw, 40px);
}

.timeline-hour {
  flex: 0 0 auto;
  width: clamp(56px, 12vw, 112px);
}

.timeline-dot {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  border: 1.5px solid var(--wp--preset--color--gold);
  background: var(--wp--preset--color--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  font-size: 18px;
  margin: 0;
}

/* ─── Chambres carousel ─── */
.chambres-carousel {
  position: relative;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  z-index: 3;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.92);
  color: var(--wp--preset--color--blue);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(41, 62, 84, 0.22);
  transition: background 0.3s, color 0.3s;
}

.carousel-prev {
  left: clamp(12px, 2vw, 22px);
}

.carousel-next {
  right: clamp(12px, 2vw, 22px);
}

.carousel-arrow:hover {
  background: var(--wp--preset--color--gold);
  color: #fff;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  padding: 0;
  background: rgba(41, 62, 84, 0.22);
  transition: all 0.4s ease;
}

.carousel-dot.active {
  width: 26px;
  background: var(--wp--preset--color--gold);
}

/* ─── Access / Map ─── */

.acces-map-wrap {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  isolation: isolate;
  box-shadow: 0 4px 24px rgba(41, 62, 84, 0.08);
  background: var(--wp--preset--color--cream);
}

#parenthese-map {
  filter: saturate(0.75) brightness(1.02);
}

.leaflet-container {
  background: var(--wp--preset--color--cream) !important;
}

#parenthese-map .leaflet-popup-content-wrapper {
  border-radius: 6px;
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--wp--preset--color--blue);
  box-shadow: 0 3px 14px rgba(41, 62, 84, 0.15);
}

#parenthese-map .leaflet-popup-tip {
  box-shadow: none;
}

#parenthese-map .leaflet-control-zoom a {
  color: var(--wp--preset--color--blue);
  border-color: rgba(41, 62, 84, 0.15);
}

.map-itinerary-btn:hover {
  background: var(--wp--preset--color--gold) !important;
}

/* ─── Footer ─── */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-heading {
  font-family: var(--wp--preset--font-family--lexend-zetta);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wp--preset--color--gold);
  margin-bottom: 16px;
}

.footer-link {
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 1;
  color: #fff;
}

.footer-link-gold:hover {
  opacity: 1;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--wp--preset--color--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wp--preset--color--gold);
  background: transparent;
  transition: background 0.25s, color 0.25s;
  text-decoration: none;
}

.footer-social-icon:hover {
  background: var(--wp--preset--color--gold);
  border-color: var(--wp--preset--color--gold);
  color: var(--wp--preset--color--blue);
}

.footer-partners-bar {
  border-top: 1px solid rgba(200, 169, 106, 0.2);
  padding: 32px 0;
  margin-bottom: 8px;
}

.partner-logo-card {
  background: #fff;
  border-radius: 6px;
  padding: 12px 18px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  border-top: 1px solid rgba(200, 169, 106, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  text-decoration: none;
}

/* ─── Buttons ─── */
.wp-block-button__link {
  transition: all 0.35s ease;
}

.wp-block-button__link:hover {
  transform: translateY(-1px);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }

  .carousel-track {
    transition: none !important;
  }
}

/* ─── Page hero (contact, reservation) ─── */
/* header = utility bar (38px) + main nav (84px) = 122px; design spacing added on top */
.page-hero {
  padding-top: calc(122px + clamp(48px, 8vw, 96px));
  text-align: center;
}

.page-hero > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

.page-hero > * + * {
  margin-block-start: 0;
}

@media (max-width: 1100px) {
  .page-hero {
    padding-top: calc(84px + clamp(48px, 8vw, 96px));
  }
}

.logged-in.admin-bar .page-hero {
  padding-top: calc(154px + clamp(48px, 8vw, 96px));
}

@media (max-width: 1100px) {
  .logged-in.admin-bar .page-hero {
    padding-top: calc(116px + clamp(48px, 8vw, 96px));
  }
}

@media (max-width: 782px) {
  .logged-in.admin-bar .page-hero {
    padding-top: calc(84px + clamp(48px, 8vw, 96px));
  }
}

/* ─── Contact Form 7 ─── */
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wpcf7-form p,
.wpcf7-form .form-field p {
  margin: 0;
}

.wpcf7-form .form-field p > br {
  display: none;
}

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

.wpcf7 .form-field {
  margin-bottom: 0;
}

.wpcf7 .form-label {
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--wp--preset--color--blue);
  display: block;
  margin-bottom: 8px;
  white-space: nowrap;
}

.wpcf7 input:not([type="checkbox"]):not([type="submit"]),
.wpcf7 textarea,
.wpcf7 select {
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: 15px;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(41, 62, 84, 0.15);
  border-radius: 6px;
  background: #fff;
  color: var(--wp--preset--color--blue);
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.wpcf7 input:not([type="checkbox"]):not([type="submit"]):focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: var(--wp--preset--color--gold);
  outline: none;
}

.wpcf7 .wpcf7-not-valid {
  border-color: var(--wp--preset--color--terracotta);
}

.wpcf7 .wpcf7-not-valid-tip {
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: 12px;
  color: var(--wp--preset--color--terracotta);
  margin-top: 4px;
}

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

.wpcf7 select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23293E54' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.wpcf7 .form-acceptance {
  margin-top: 4px;
}

.wpcf7 .form-acceptance .wpcf7-list-item {
  margin: 0;
}

.wpcf7 .form-acceptance label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: 13px;
  color: var(--wp--preset--color--blue);
  opacity: 0.7;
  line-height: 1.6;
}

.wpcf7 .form-acceptance input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--wp--preset--color--gold);
}

.wpcf7 .form-acceptance + p:not(.form-note) {
  display: none;
}

.wpcf7 .wpcf7-turnstile + p:empty {
  display: none;
}

.wpcf7 .wpcf7-turnstile {
  margin: 0.75rem 0;
}

.wpcf7 input[type="submit"] {
  font-family: var(--wp--preset--font-family--lexend-zetta);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--wp--preset--color--blue);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 14px 36px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.wpcf7 input[type="submit"]:hover {
  background: var(--wp--preset--color--gold);
  transform: translateY(-1px);
}

.wpcf7 input[type="submit"]:focus-visible {
  outline: 2px solid var(--wp--preset--color--gold);
  outline-offset: 2px;
}

.wpcf7 .form-note {
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: 12px;
  color: var(--wp--preset--color--blue);
  opacity: 0.55;
  line-height: 1.6;
  margin-top: 16px;
}

.wpcf7 .wpcf7-response-output {
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: 14px;
  padding: 16px;
  border-radius: 6px;
  margin-top: 20px;
}

.wpcf7 .wpcf7-mail-sent-ok {
  border-color: var(--wp--preset--color--green);
  color: var(--wp--preset--color--green);
}

/* ─── Reservation steps ─── */
.reservation-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.reservation-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}

.reservation-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 16px;
  top: 32px;
  bottom: -22px;
  width: 1px;
  background: rgba(200, 169, 106, 0.35);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--wp--preset--color--gold);
  background: var(--wp--preset--color--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wp--preset--font-family--playfair);
  font-size: 15px;
  font-weight: 500;
  color: var(--wp--preset--color--blue);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.step-content {
  padding-top: 4px;
}

.step-content strong {
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--wp--preset--color--blue);
  display: block;
  margin-bottom: 6px;
  line-height: 1.4;
}

.step-content p {
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: 14px;
  color: var(--wp--preset--color--blue);
  opacity: 0.72;
  line-height: 1.7;
  margin: 0;
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .header-utility {
    display: none;
  }

  .nav-link {
    font-size: 13.5px;
  }
}

@media (max-width: 900px) {
  .main-navigation {
    display: none;
  }

  .header-cta-group {
    display: none;
  }

  .burger-btn {
    display: flex;
  }
}

@media (max-width: 782px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .timeline::before {
    display: none;
  }

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

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  /* LPDF-21: reverse Pour qui columns so text comes before image */
  #pour-qui > .wp-block-columns.are-vertically-aligned-center {
    flex-direction: column-reverse;
  }

  /* LPDF-21: horizontal scroll-snap slider for concept images */
  .concept-images {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .concept-images::-webkit-scrollbar {
    display: none;
  }

  .concept-images > .wp-block-image {
    flex: 0 0 88%;
    scroll-snap-align: start;
  }

  /* LPDF-20: hide secondary hero CTA on mobile */
  .hero-btn-secondary {
    display: none !important;
  }

  /* LPDF-23: larger content text on mobile */
  .hero-section .wp-block-cover__inner-container > p.has-dm-sans-font-family {
    font-size: 16px !important;
  }

  .hero-section .wp-block-cover__inner-container > h1 {
    font-size: clamp(40px, 8vw, 64px) !important;
  }

  .hero-section .wp-block-cover__inner-container > p.has-playfair-font-family {
    font-size: clamp(24px, 5vw, 32px) !important;
  }

  .wp-site-blocks section p:not(.has-lexend-zetta-font-family),
  .wp-site-blocks .wp-block-group p:not(.has-lexend-zetta-font-family) {
    font-size: 17.5px !important;
  }

  .wp-site-blocks section .wp-block-heading,
  .wp-site-blocks .wp-block-group .wp-block-heading {
    font-size: 110% !important;
  }
}

@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ─── 404 page ─── */
/* padding-top is handled by .page-hero (shared with contact/reservation) */

.error-404-number {
  font-family: var(--wp--preset--font-family--playfair);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.12);
  text-align: center;
  margin: 0 0 12px;
  user-select: none;
  pointer-events: none;
}

.error-404-picto-inline {
  height: 0.55em;
  width: auto;
  vertical-align: middle;
  filter: brightness(0) invert(1);
  opacity: 0.12;
  margin: 0 -0.05em;
}

.error-404-contact {
  opacity: 0.65;
}

.error-404-contact a {
  color: var(--wp--preset--color--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.error-404-contact a:hover {
  color: var(--wp--preset--color--blue-hover);
}

/* ─── Form submission recap ─── */
.form-recap {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(200, 169, 106, 0.3);
  border-radius: 12px;
  background: var(--wp--preset--color--cream, #F8F5F1);
}

.form-recap__icon {
  margin-bottom: 1.25rem;
}

.form-recap__title {
  font-family: var(--wp--preset--font-family--playfair, 'Playfair Display', serif);
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--wp--preset--color--blue, #293E54);
  margin: 0 0 0.5rem;
}

.form-recap__text {
  color: var(--wp--preset--color--blue, #293E54);
  opacity: 0.7;
  margin: 0 0 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(200, 169, 106, 0.25);
  font-size: 1rem;
}

.form-recap__data {
  text-align: left;
  max-width: 500px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem 1.5rem;
  font-size: 0.9rem;
}

.form-recap__data dt {
  font-family: var(--wp--preset--font-family--lexend-zetta, 'Lexend Zetta', sans-serif);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wp--preset--color--gold, #C8A96A);
  padding-top: 0.15rem;
}

.form-recap__data dd {
  margin: 0;
  color: var(--wp--preset--color--blue, #293E54);
  word-break: break-word;
}
