:root {
  --bg: #ffffff;
  --bg-soft: #f7f4ef;
  --text: #222222;
  --muted: #6f6f6f;
  --border: #dedede;
  --brand: #24422f;
  --brand-dark: #16291e;
  --accent: #d99048;
  --shadow: 0 18px 50px rgba(0, 0, 0, .10);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--brand);
  color: #fff;
  border-radius: 10px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(222, 222, 222, .8);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  margin-top: -2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #333;
  font-weight: 600;
  font-size: .95rem;
}

.main-nav a:hover {
  background: var(--bg-soft);
}

.main-nav .nav-cta {
  background: var(--text);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 3px;
}

.hero {
  padding: 54px 0 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  font-size: .78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 7vw, 5.3rem);
  line-height: .95;
  letter-spacing: -.07em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 4vw, 3.05rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero-text {
  max-width: 680px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #4b4b4b;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 30px rgba(36, 66, 47, .22);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}

.trust-row {
  margin-top: 24px;
}

.trust-row span {
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
  font-size: .92rem;
}

.booking-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.booking-card-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.booking-card-header strong {
  font-size: 1.25rem;
}

.booking-card-header span {
  align-self: start;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--brand);
  font-weight: 800;
  font-size: .8rem;
}

.booking-card p {
  color: var(--muted);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.booking-form label {
  display: grid;
  gap: 6px;
  color: #3a3a3a;
  font-weight: 700;
  font-size: .9rem;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 12px;
  background: #fff;
  color: var(--text);
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: 3px solid rgba(36, 66, 47, .14);
  border-color: var(--brand);
}

.full {
  grid-column: 1 / -1;
}

.section {
  padding: 68px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head p:last-child {
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 10px;
  border-radius: 26px;
  overflow: hidden;
}

.gallery button {
  position: relative;
  border: 0;
  padding: 0;
  background: #eee;
  cursor: pointer;
  overflow: hidden;
}

.gallery-main {
  grid-row: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery button:hover img {
  transform: scale(1.04);
}

.image-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: .92rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 40px;
  align-items: start;
}

.split.reverse {
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
}

.highlights-card,
.map-card,
.rooms-grid article,
.amenities-grid article,
.stats-grid article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.highlights-card {
  padding: 26px;
}

.check-list,
.location-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.location-list li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
}

.check-list li::before,
.location-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 999px;
  background: rgba(36, 66, 47, .12);
  color: var(--brand);
  font-size: .78rem;
  font-weight: 900;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stats-grid article {
  padding: 26px;
}

.stats-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -.05em;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 700;
}

.amenities-grid,
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.amenities-grid article,
.rooms-grid article {
  padding: 22px;
}

.amenities-grid article span {
  display: block;
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.amenities-grid p,
.rooms-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.map-card {
  overflow: hidden;
}

.map-card img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.cta-section {
  padding-top: 34px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: 30px;
  background: var(--brand);
  color: #fff;
}

.cta-box .eyebrow,
.cta-box p {
  color: rgba(255, 255, 255, .82);
}

.cta-box h2 {
  margin-bottom: 8px;
}

.cta-box .btn-primary {
  background: #fff;
  color: var(--brand);
  white-space: nowrap;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 34px 0 90px;
  background: #1f1f1f;
  color: #fff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .68);
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-grid a {
  color: rgba(255, 255, 255, .78);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .84);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 980px) {
  .bathroom-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .interior-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .outdoor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rooms-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .hero-intro-grid,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .booking-card {
    order: 2;
  }

  .stats-grid,
  .amenities-grid,
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-main {
    grid-column: 1 / -1;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .bathroom-grid {
    grid-template-columns: 1fr;
  }

  .bathroom-photo {
    height: 250px;
  }

  .interior-grid {
    grid-template-columns: 1fr;
  }

  .interior-photo {
    height: 250px;
  }

  .outdoor-grid {
    grid-template-columns: 1fr;
  }

  .outdoor-photo {
    height: 250px;
  }

  .rooms-photo-grid {
    grid-template-columns: 1fr;
  }

  .room-main-photo {
    height: 250px;
  }

  .header-inner {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 66px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    border-radius: 12px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-cover img {
    height: 320px;
    object-position: center;
  }

  .hero-intro {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.3rem, 13vw, 4rem);
  }

  .booking-form,
  .stats-grid,
  .amenities-grid,
  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-auto-rows: 180px;
  }

  .section {
    padding: 48px 0;
  }

  .footer-grid {
    flex-direction: column;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 80;
    display: grid;
    place-items: center;
    min-height: 52px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .22);
  }

  .site-footer {
    padding-bottom: 110px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .brand small {
    display: none;
  }

  .trust-row span {
    width: 100%;
  }

  .gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    border-radius: 20px;
  }

  .gallery button {
    flex: 0 0 86%;
    height: 260px;
    scroll-snap-align: start;
  }

  .cta-box {
    padding: 24px;
  }
}


.rooms-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.room-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.room-main-photo {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
  padding: 0;
  background: #eee;
  cursor: pointer;
  overflow: hidden;
}

.room-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.room-main-photo:hover img {
  transform: scale(1.04);
}

.room-content {
  padding: 18px;
}

.room-content p {
  color: var(--muted);
  margin-bottom: 14px;
}

.room-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.room-thumb {
  flex: 0 0 76px;
  width: 76px;
  height: 58px;
  border: 0;
  padding: 0;
  border-radius: 12px;
  background: #eee;
  overflow: hidden;
  cursor: pointer;
}

.room-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-no-thumb {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: .85rem;
  font-weight: 700;
}


.outdoor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.outdoor-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.outdoor-photo {
  display: block;
  width: 100%;
  height: 235px;
  border: 0;
  padding: 0;
  background: #eee;
  cursor: pointer;
  overflow: hidden;
}

.outdoor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.outdoor-photo:hover img {
  transform: scale(1.04);
}

.outdoor-content {
  padding: 18px;
}

.outdoor-content p {
  margin-bottom: 0;
  color: var(--muted);
}


.interior-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.interior-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.interior-photo {
  display: block;
  width: 100%;
  height: 235px;
  border: 0;
  padding: 0;
  background: #eee;
  cursor: pointer;
  overflow: hidden;
}

.interior-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.interior-photo:hover img {
  transform: scale(1.04);
}

.interior-content {
  padding: 18px;
}

.interior-content p {
  margin-bottom: 0;
  color: var(--muted);
}


.bathroom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.bathroom-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.bathroom-photo {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
  padding: 0;
  background: #eee;
  cursor: pointer;
  overflow: hidden;
}

.bathroom-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.bathroom-photo:hover img {
  transform: scale(1.04);
}

.bathroom-content {
  padding: 18px;
}

.bathroom-content p {
  margin-bottom: 0;
  color: var(--muted);
}


.hero-cover {
  position: relative;
  width: 100%;
  min-height: 320px;
  background: #0d1b16;
  overflow: hidden;
}

.hero-cover img {
  width: 100%;
  /* height: clamp(360px, 44vw, 620px); */
  object-fit: cover;
  display: block;
}

.hero-seo-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hero-intro {
  padding: 46px 0 30px;
}

.hero-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 36px;
  align-items: start;
}


/* Effet de chargement au scrolling */
.sr-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .75s ease,
    transform .75s ease;
  transition-delay: var(--sr-delay, 0ms);
  will-change: opacity, transform;
}

.sr-reveal.sr-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Effet doux au chargement des images */
.sr-img-loading {
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.015);
  transition:
    opacity .55s ease,
    filter .55s ease,
    transform .55s ease;
}

.sr-img-loaded {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .sr-reveal,
  .sr-img-loading {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
