:root {
  --paper: #fbfaf7;
  --paper-strong: #f3f1ec;
  --ink: #202322;
  --muted: #666b66;
  --line: #dedbd3;
  --basin: #315e63;
  --pine: #213f35;
  --clay: #9b6653;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(18, 22, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.header-solid {
  background: rgba(251, 250, 247, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 13px;
  color: currentColor;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--white);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.58)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent 58%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 76px) 9vh;
  color: var(--white);
}

.eyebrow,
.kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.04;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 8vw, 96px);
}

.hero-copy p:not(.eyebrow) {
  max-width: 580px;
  margin: 18px 0 0;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.microcopy {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 4vw, 54px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-inner.narrow {
  width: min(820px, 100%);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 7vw, 98px);
  align-items: start;
}

.intro {
  padding-top: clamp(58px, 8vw, 96px);
}

.intro h2,
.section h2 {
  font-size: clamp(31px, 4.2vw, 58px);
}

.section p,
.intro p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.photo-story {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 4vw, 54px);
  background: var(--paper);
}

.photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  grid-template-areas:
    "view salon"
    "view chambre"
    "cuisine cuisine";
  gap: 14px;
}

.photo-card {
  margin: 0;
}

.photo-card img,
.quartier-photo img {
  height: 100%;
  object-fit: cover;
}

.photo-card img {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
}

.photo-card-view {
  grid-area: view;
}

.photo-card-view img {
  aspect-ratio: 3 / 4;
}

.photo-card-salon {
  grid-area: salon;
}

.photo-card-salon img {
  object-position: center bottom;
}

.photo-card-chambre {
  grid-area: chambre;
}

.photo-card-cuisine {
  grid-area: cuisine;
}

.photo-card-cuisine img {
  aspect-ratio: 16 / 7;
}

.photo-card figcaption,
.quartier-photo figcaption {
  padding-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.guide-download {
  margin-top: 22px;
}

.guide-download .button {
  min-height: 46px;
  max-width: 100%;
  line-height: 1.2;
  text-align: center;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.facts div {
  min-height: 132px;
  padding: 22px;
  background: var(--white);
}

.facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.facts dd {
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.12;
}

.section-muted {
  background: var(--paper-strong);
}

.sleep-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sleep-grid article,
.price-grid article {
  min-height: 184px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.sleep-grid h3,
.price-grid span {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.sleep-grid p,
.price-grid p {
  margin: 12px 0 20px;
}

.sleep-grid strong,
.price-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
}

.amenities,
.conditions {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.amenities li,
.conditions li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.amenities li::before,
.conditions li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  background: var(--clay);
}

.section-dark {
  background: var(--pine);
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.quartier-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
}

.quartier-layout h2 {
  margin-bottom: 22px;
}

.quartier-photo {
  margin: 0;
}

.quartier-photo img {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
}

.quartier-photo figcaption {
  color: rgba(255, 255, 255, 0.72);
}

.quartier-link {
  justify-self: start;
}

.gallery-hero {
  padding: clamp(116px, 12vw, 156px) clamp(18px, 4vw, 54px) clamp(56px, 8vw, 92px);
  background: var(--paper-strong);
}

.gallery-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: end;
}

.gallery-intro h1 {
  max-width: 640px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1.04;
  text-wrap: balance;
}

.gallery-intro p:not(.kicker) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.gallery-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gallery-choice {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 6px;
  color: var(--white);
}

.gallery-choice img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-choice::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.54));
}

.gallery-choice span {
  position: relative;
  z-index: 1;
  padding: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1.08;
}

.gallery-choice:hover img {
  transform: scale(1.03);
}

.gallery-section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 4vw, 54px);
}

.gallery-section-dark {
  background: var(--pine);
  color: var(--white);
}

.gallery-section-dark p,
.gallery-section-dark figcaption {
  color: rgba(255, 255, 255, 0.74);
}

.gallery-video {
  margin: 0 0 clamp(30px, 5vw, 58px);
}

.video-drive-link {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: #101418;
  box-shadow: var(--shadow);
  color: var(--white);
}

.video-drive-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-drive-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 20, 24, 0.08), rgba(16, 20, 24, 0.74));
}

.video-drive-link:hover img {
  transform: scale(1.025);
}

.video-drive-link img,
.video-link-overlay {
  transition: transform 180ms ease, background-color 180ms ease;
}

.video-drive-link-portrait {
  max-width: 340px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
}

.video-drive-link-landscape {
  aspect-ratio: 16 / 9;
}

.video-link-overlay {
  position: absolute;
  left: clamp(16px, 4vw, 26px);
  right: clamp(16px, 4vw, 26px);
  bottom: clamp(16px, 4vw, 26px);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #101418;
  font-weight: 700;
  text-align: center;
}

.video-drive-link:hover .video-link-overlay {
  background: var(--white);
  transform: translateY(-2px);
}

.video-link-icon {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
  flex: 0 0 auto;
}

.gallery-video video {
  display: block;
  width: 100%;
  border-radius: 10px;
  background: #000;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.gallery-video-portrait video {
  max-width: 340px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
}

.gallery-video-landscape video {
  aspect-ratio: 16 / 9;
}

.gallery-video figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.gallery-video-portrait figcaption {
  text-align: center;
}

.room-section {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  padding: clamp(30px, 5vw, 58px) 0;
  border-top: 1px solid var(--line);
}

.gallery-section-dark .room-section {
  border-color: rgba(255, 255, 255, 0.18);
}

.room-heading {
  position: sticky;
  top: 92px;
  align-self: start;
}

.room-heading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.08;
}

.room-heading p {
  margin: 12px 0 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid-feature {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
  height: 100%;
  min-height: 0;
  border-radius: 6px;
  object-fit: cover;
}

.gallery-grid-feature figure:first-child img {
  aspect-ratio: 16 / 10;
}

.gallery-grid figcaption {
  padding-top: 9px;
  color: var(--muted);
  font-size: 13px;
}

.price-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--basin);
  font-size: 42px;
}

.conditions {
  margin-top: 28px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

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

summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 800;
}

details p {
  width: min(740px, 100%);
  margin: 0 0 22px;
}

.reservation {
  background: var(--white);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-note {
  margin-top: 18px;
}

.contact-lines a,
.contact-lines span {
  color: var(--basin);
  font-weight: 800;
}

.request-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--basin);
  font-weight: 700;
}

.footer {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer > span {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
}

.footer-button {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
}

.footer a:hover,
.footer-button:hover {
  color: var(--ink);
}

.legal-dialog {
  width: min(680px, calc(100% - 32px));
  max-height: min(720px, calc(100vh - 44px));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.legal-dialog::backdrop {
  background: rgba(16, 18, 18, 0.42);
}

.legal-dialog-inner {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 40px);
}

.legal-dialog h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.08;
}

.legal-dialog p {
  margin: 0;
  color: var(--muted);
}

.legal-dialog a {
  color: var(--basin);
  font-weight: 800;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 1100px) {
  .gallery-intro-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gallery-intro h1 {
    max-width: 780px;
  }

  .gallery-switch {
    max-width: 780px;
  }
}

@media (max-width: 900px) {
  .nav {
    justify-content: flex-start;
    gap: 12px;
    font-size: 11px;
  }

  .split,
  .quartier-layout,
  .gallery-intro-grid,
  .room-section,
  .sleep-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 88vh;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy {
    margin-bottom: 86px;
  }

  .section {
    padding: 64px 18px;
  }

  .photo-story {
    padding: 64px 18px;
  }

  .gallery-hero {
    padding: 102px 18px 58px;
  }

  .gallery-intro h1 {
    font-size: 42px;
  }

  .gallery-intro p:not(.kicker) {
    font-size: 17px;
  }

  .gallery-section {
    padding: 64px 18px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "view"
      "salon"
      "chambre"
      "cuisine";
  }

  .gallery-switch,
  .gallery-grid,
  .gallery-grid-feature,
  .gallery-grid-two {
    grid-template-columns: 1fr;
  }

  .gallery-choice {
    min-height: 250px;
  }

  .gallery-grid img,
  .gallery-grid-feature figure:first-child img {
    aspect-ratio: 4 / 3;
  }

  .room-heading {
    position: static;
  }

  .photo-card-view img,
  .photo-card-cuisine img,
  .quartier-photo img {
    aspect-ratio: 4 / 3;
  }

  .request-form {
    padding: 18px;
  }

  .footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand {
    font-size: 14px;
  }

  .nav {
    gap: 8px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .gallery-intro h1 {
    font-size: 36px;
  }

  .gallery-choice {
    min-height: 220px;
  }

  .gallery-choice span {
    padding: 18px;
    font-size: 27px;
  }

  .room-heading h3 {
    font-size: 31px;
  }
}


/* Language selector */
.language-switcher{display:flex;align-items:center;gap:.35rem;margin-left:.5rem;white-space:nowrap}.language-flag{display:inline-flex;align-items:center;justify-content:center;width:2rem;height:2rem;border-radius:999px;text-decoration:none;font-size:1.15rem;line-height:1;border:1px solid rgba(18,42,54,.18);background:rgba(255,255,255,.78);transition:transform .2s ease,background .2s ease}.language-flag:hover,.language-flag:focus{transform:translateY(-2px);background:#fff}@media(max-width:900px){.language-flag{width:1.6rem;height:1.6rem;font-size:.9rem}}

/* Navigation mobile compacte : aucun changement sur ordinateur */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: currentColor;
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand {
    font-size: 18px;
    white-space: nowrap;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    overflow: visible;
    white-space: normal;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: rgba(25, 27, 29, 0.96);
    color: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
  }

  .site-header.is-scrolled .nav,
  .site-header.header-solid .nav {
    border-color: rgba(0, 0, 0, 0.10);
    background: rgba(251, 250, 247, 0.98);
    color: var(--ink);
  }

  .nav.is-open {
    display: grid;
  }

  .nav > a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border: 1px solid currentColor;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
  }

  .language-switcher {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-top: 4px;
  }

  .language-flag {
    font-size: 22px;
  }
}
