:root {
  color-scheme: light;
  --ink: #14211d;
  --muted: #6d746f;
  --paper: #f7f3eb;
  --surface: #fffaf1;
  --line: rgba(20, 33, 29, 0.14);
  --gold: #b98942;
  --gold-2: #e0bd78;
  --green: #1f3f35;
  --ink-soft: rgba(20, 33, 29, 0.78);
  --wine: #7c2f3f;
  --clay: #b75f42;
  --sky: #dce8ec;
  --nav-dark: #101915;
  --nav-deep: #182821;
  --ok: #1c7c54;
  --warn: #b7791f;
  --bad: #b42318;
  --shadow: 0 24px 70px rgba(20, 33, 29, 0.16);
  --lift-shadow: 0 30px 90px rgba(13, 22, 19, 0.2);
  --radius: 8px;
  --nav-w: 232px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.32) 0 1px, transparent 1px 100%) 0 0 / 42px 42px,
    linear-gradient(115deg, rgba(247, 243, 235, 0.96), rgba(220, 232, 236, 0.62)),
    var(--paper);
  color: var(--ink);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
::selection {
  background: rgba(224, 189, 120, 0.38);
  color: var(--ink);
}
button, input, textarea, select {
  font: inherit;
}
button {
  border: 0;
  cursor: pointer;
}
button:disabled { cursor: not-allowed; opacity: 0.58; }
:focus-visible {
  outline: 3px solid rgba(224, 189, 120, 0.74);
  outline-offset: 3px;
}

.right-nav {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--nav-w);
  padding: 28px 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.06), transparent 32%),
    linear-gradient(135deg, rgba(185, 137, 66, 0.12), transparent 34%),
    linear-gradient(180deg, var(--nav-deep), var(--nav-dark));
  color: #fffaf1;
  border-right: 1px solid rgba(224, 189, 120, 0.32);
  box-shadow: 24px 0 70px rgba(13, 22, 19, 0.24);
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 20;
  isolation: isolate;
}
.right-nav::before,
.right-nav::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.right-nav::before {
  inset: 16px 10px;
  border: 1px solid rgba(224, 189, 120, 0.16);
  border-radius: 12px;
}
.right-nav::after {
  inset: 0 0 0 auto;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold-2), transparent);
  opacity: 0.7;
}
.brand {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  letter-spacing: 0;
  min-height: 52px;
  padding: 4px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 241, 0.34);
  background:
    linear-gradient(145deg, var(--gold-2), var(--gold) 48%, #5f4322);
  color: white;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(185, 137, 66, 0.28);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}
.right-nav nav {
  display: grid;
  gap: 7px;
  position: relative;
}
.right-nav nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 13px 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(255, 250, 241, 0.72);
  position: relative;
  overflow: hidden;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.right-nav nav a::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.54;
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.right-nav nav a::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.2;
  transition: width 0.2s ease, opacity 0.2s ease;
}
.right-nav nav a.active,
.right-nav nav a[aria-current="page"],
.right-nav nav a:hover {
  color: #fff;
  background: linear-gradient(90deg, rgba(224, 189, 120, 0.2), rgba(255, 250, 241, 0.06));
  border-color: rgba(224, 189, 120, 0.28);
  transform: translateX(3px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}
.right-nav nav a.active::before,
.right-nav nav a[aria-current="page"]::before,
.right-nav nav a:hover::before {
  background: var(--gold-2);
  border-color: var(--gold-2);
  opacity: 1;
}
.right-nav nav a.active::after,
.right-nav nav a[aria-current="page"]::after,
.right-nav nav a:hover::after {
  width: 34px;
  opacity: 0.62;
}
.nav-foot {
  margin-top: auto;
  font-size: 0.86rem;
  color: rgba(255, 250, 241, 0.68);
  border-top: 1px solid rgba(224, 189, 120, 0.18);
  padding-top: 18px;
}
.nav-foot span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(224, 189, 120, 0.24);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 250, 241, 0.06);
}
.language-switch {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(224, 189, 120, 0.28);
  border-radius: 999px;
  padding: 3px;
  margin-bottom: 12px;
  background: rgba(255, 250, 241, 0.06);
}
.language-switch button {
  min-width: 38px;
  min-height: 28px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 250, 241, 0.7);
  font-size: 0.78rem;
  font-weight: 760;
}
.language-switch button.active {
  color: #fffaf1;
  background: linear-gradient(135deg, var(--gold), #6f4f28);
  box-shadow: 0 10px 24px rgba(185, 137, 66, 0.24);
}
.mobile-language-switch { display: none; }
.menu-toggle,
.nav-scrim { display: none; }
.hero-language,
.content-language {
  display: inline-flex;
  background: rgba(16, 25, 21, 0.9);
  box-shadow: 0 14px 34px rgba(13, 22, 19, 0.28);
}
.hero-language {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
}
.content-language {
  margin: 0 0 20px auto;
}

@media (min-width: 921px) {
  .hero-language,
  .content-language { display: none; }
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto var(--nav-w);
  height: 3px;
  z-index: 50;
  background: rgba(20, 33, 29, 0.08);
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--wine), var(--green));
  box-shadow: 0 0 18px rgba(185, 137, 66, 0.42);
}

#app {
  min-height: 100vh;
  padding-left: var(--nav-w);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
#app.route-out {
  opacity: 0;
  transform: translateY(10px);
}
.page {
  width: min(1180px, calc(100vw - var(--nav-w) - 48px));
  margin: 0 auto;
  padding: 44px 0 84px;
}
.hero {
  min-height: 86vh;
  width: calc(100vw - var(--nav-w));
  padding: 72px min(8vw, 104px);
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 18, 16, 0.78), rgba(11, 18, 16, 0.22) 54%, rgba(11, 18, 16, 0.08)),
    var(--hero-image) center / cover;
  color: white;
  transform: translateY(calc(var(--hero-shift, 0) * 1px));
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(transparent, rgba(247, 243, 235, 0.98));
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: min(740px, 100%);
  padding-bottom: 36px;
  transform: translateY(calc(var(--hero-shift, 0) * -0.18px));
}
.eyebrow {
  color: var(--gold-2);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 760;
}
h1, h2, h3 { letter-spacing: 0; margin: 0; }
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 7.4rem);
  line-height: 0.92;
  margin: 16px 0 22px;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  margin-bottom: 18px;
}
h3 { font-size: 1.1rem; }
p {
  color: var(--muted);
  line-height: 1.68;
}
.hero p {
  color: rgba(255, 250, 241, 0.86);
  font-size: 1.15rem;
  max-width: 660px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 24px rgba(20, 33, 29, 0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(20, 33, 29, 0.2);
}
.btn:active {
  transform: translateY(0) scale(0.99);
}
.btn.busy {
  color: transparent;
  pointer-events: none;
  position: relative;
}
.btn.busy::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  color: white;
  animation: spin 0.7s linear infinite;
}
.btn.light.busy::after { color: var(--ink); }
.btn.gold {
  background: linear-gradient(135deg, var(--gold), #6f4f28);
}
.btn.ghost {
  background: rgba(255, 250, 241, 0.12);
  color: white;
  border: 1px solid rgba(255, 250, 241, 0.38);
}
.btn.light {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn.danger { background: var(--bad); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-head p { max-width: 560px; margin: 0; }
.grid {
  display: grid;
  gap: 18px;
}
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.panel, .card {
  background: rgba(255, 250, 241, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.panel { padding: 26px; }
.card {
  padding: 22px;
  display: grid;
  gap: 12px;
}
.card p { margin: 0; }
.account-auth {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1fr);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.86);
  box-shadow: var(--shadow);
}
.account-auth-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--green);
}
.account-auth-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transform: scale(1.02);
}
.account-auth-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 36%, rgba(13, 22, 19, 0.72)),
    linear-gradient(90deg, rgba(13, 22, 19, 0.42), transparent 54%);
}
.account-auth-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 12px;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.5;
}
.account-auth-photo figcaption {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 3;
  color: white;
}
.account-auth-photo span,
.account-role {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 250, 241, 0.14);
  color: rgba(255, 250, 241, 0.88);
  font-size: 0.76rem;
  font-weight: 780;
  text-transform: uppercase;
}
.account-auth-photo strong {
  display: block;
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.05;
}
.account-auth-photo p {
  max-width: 360px;
  margin: 10px 0 0;
  color: rgba(255, 250, 241, 0.84);
}
.account-auth-panel {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 54px);
}
.auth-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(20, 33, 29, 0.05);
}
.auth-switch button {
  min-height: 42px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 780;
}
.auth-switch button.active {
  background: var(--ink);
  color: white;
  box-shadow: 0 12px 28px rgba(20, 33, 29, 0.16);
}
.auth-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.05;
}
.auth-copy p,
.auth-footnote {
  margin: 10px 0 0;
}
.auth-form input {
  min-height: 50px;
  background: rgba(255, 255, 255, 0.92);
}
.auth-form .btn {
  margin-top: 6px;
  min-height: 52px;
}
.auth-footnote {
  padding-top: 2px;
  font-size: 0.92rem;
}
.account-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}
.account-profile-panel,
.account-stay-panel {
  min-height: 284px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  position: relative;
  overflow: hidden;
}
.account-profile-panel {
  color: white;
  background:
    linear-gradient(145deg, rgba(20, 33, 29, 0.72), rgba(20, 33, 29, 0.28)),
    url("/images/airbnb/suite-suspendue-02.png") center / cover;
  box-shadow: var(--shadow);
}
.account-profile-panel h3 {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: white;
  font-size: 1.35rem;
}
.account-profile-panel p {
  color: rgba(255, 250, 241, 0.82);
}
.account-profile-panel .btn.light {
  background: rgba(255, 250, 241, 0.92);
}
.account-stay-panel {
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.96), rgba(255, 250, 241, 0.78)),
    radial-gradient(circle at 100% 0%, rgba(220, 232, 236, 0.9), transparent 38%);
}
.account-quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.metric {
  display: grid;
  gap: 4px;
}
.metric strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  color: var(--green);
}
.gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 18px;
  margin: 46px 0;
}
.photo {
  min-height: 340px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateZ(0);
}
.photo.featured { min-height: 520px; }
.photo.small { min-height: 250px; box-shadow: none; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.photo-01 { background-image: url("/images/airbnb/suite-suspendue-01.jpeg"); }
.photo-02 { background-image: url("/images/airbnb/suite-suspendue-02.png"); }
.photo-03 { background-image: url("/images/airbnb/suite-suspendue-03.jpeg"); }
.photo-04 { background-image: url("/images/airbnb/suite-suspendue-04.jpeg"); }
.photo-05 { background-image: url("/images/airbnb/suite-suspendue-05.jpeg"); }
.photo-06 { background-image: url("/images/airbnb/suite-suspendue-06.jpeg"); }
.photo-07 { background-image: url("/images/airbnb/suite-suspendue-07.jpeg"); }
.photo-08 { background-image: url("/images/airbnb/suite-suspendue-08.png"); }
.photo-09 { background-image: url("/images/airbnb/suite-suspendue-09.png"); }

.provence-section {
  padding-top: 10px;
}
.provence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.provence-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  background: rgba(20, 33, 29, 0.08);
  box-shadow: 0 20px 60px rgba(20, 33, 29, 0.16);
  transform: translateZ(0);
}
.provence-card.wide {
  grid-column: span 2;
}
.provence-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.01);
}
.provence-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 46px rgba(20, 33, 29, 0.38);
}
.provence-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 33, 29, 0.02), rgba(20, 33, 29, 0.74)),
    linear-gradient(90deg, rgba(20, 33, 29, 0.28), transparent 52%);
}
.provence-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: grid;
  gap: 9px;
  padding: 18px;
  color: white;
}
.provence-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}
.provence-card p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 250, 241, 0.88);
}
.provence-card a {
  width: fit-content;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.75rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.provence-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}
.provence-meta strong {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.18);
  color: white;
}

.photo-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.photo-toolbar span {
  color: var(--green);
  font-weight: 760;
}
.photo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}
.photo-thumb {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  background: rgba(20, 33, 29, 0.08);
  border: 1px solid rgba(20, 33, 29, 0.1);
  box-shadow: 0 18px 50px rgba(20, 33, 29, 0.12);
  transform: translateZ(0);
  cursor: zoom-in;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.photo-thumb.wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}
.photo-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.32s ease, filter 0.32s ease;
}
.photo-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 10px;
  pointer-events: none;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.54;
}
.photo-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(13, 22, 19, 0.72));
  pointer-events: none;
  z-index: 1;
}
.photo-thumb figcaption {
  position: absolute;
  inset: auto 12px 12px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  color: white;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
}
.photo-thumb figcaption span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  color: var(--gold-2);
}
.photo-thumb figcaption strong {
  max-width: 72%;
  font-size: 0.9rem;
  line-height: 1.25;
  text-align: right;
}
.photo-thumb:hover img {
  transform: scale(1.045);
  filter: saturate(1.04);
}
.photo-thumb:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 137, 66, 0.38);
  box-shadow: 0 24px 70px rgba(20, 33, 29, 0.2);
}
body.lightbox-open { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 14px;
  padding: 28px;
  background: rgba(9, 14, 13, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lightbox figure {
  margin: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
}
.lightbox img {
  max-width: min(1120px, 100%);
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}
.lightbox figcaption {
  color: rgba(255, 250, 241, 0.86);
  text-align: center;
  font-size: 0.92rem;
}
.lightbox-close,
.lightbox-nav {
  width: 46px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.12);
  border: 1px solid rgba(255, 250, 241, 0.28);
  color: white;
  display: grid;
  place-items: center;
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.6rem;
}
.lightbox-nav.prev { justify-self: end; }
.lightbox-nav.next { justify-self: start; }
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 250, 241, 0.22);
}

.pack-card {
  min-height: 360px;
  align-content: space-between;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.96), rgba(255, 250, 241, 0.8)),
    radial-gradient(circle at 10% 0%, rgba(224, 189, 120, 0.28), transparent 34%);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.pack-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 112px;
  background: linear-gradient(135deg, rgba(31, 63, 53, 0.96), rgba(124, 47, 63, 0.78));
  z-index: -1;
}
.pack-card::after {
  content: "";
  position: absolute;
  inset: auto -34px -34px auto;
  width: 128px;
  aspect-ratio: 1;
  border: 1px solid rgba(185, 137, 66, 0.24);
  border-radius: 50%;
  pointer-events: none;
}
.pack-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 137, 66, 0.42);
  box-shadow: var(--lift-shadow);
}
.pack-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fffaf1;
  min-height: 74px;
  gap: 14px;
}
.pack-topline span {
  border: 1px solid rgba(224, 189, 120, 0.5);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.8rem;
}
.pack-topline strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  color: var(--gold-2);
}
.pack-copy {
  padding-top: 18px;
}
.pack-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}
.pack-details span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}
.pack-details {
  display: grid;
  gap: 8px;
}
.pack-details ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
}
.pack-details li::marker { color: var(--gold); }
.pack-footer {
  display: grid;
  gap: 12px;
}
.pack-footer span {
  color: var(--green);
  font-weight: 720;
  font-size: 0.9rem;
}
.pack-band {
  margin-top: 20px;
  padding: 26px;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(20, 33, 29, 0.94), rgba(31, 63, 53, 0.88)),
    var(--green);
  color: white;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}
.pack-band .eyebrow { color: var(--gold-2); }
.pack-band h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.05;
}
.pack-band p {
  color: rgba(255, 250, 241, 0.78);
  margin: 0;
}
.price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  color: var(--green);
}
.muted { color: var(--muted); }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.44);
  color: var(--green);
  font-size: 0.86rem;
}

.calendar-shell {
  display: grid;
  gap: 16px;
}
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.calendar-title {
  display: grid;
  justify-items: center;
  gap: 4px;
  text-align: center;
}
.calendar-title h3 {
  text-transform: capitalize;
}
.calendar-title p,
.calendar-note {
  margin: 0;
  font-size: 0.9rem;
}
.calendar-nav {
  display: flex;
  gap: 8px;
}
.calendar-summary {
  width: fit-content;
  border: 1px solid rgba(31, 63, 53, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--green);
  font-weight: 720;
}
.calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}
.day-name, .day {
  min-height: 74px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 9px;
}
.day-name {
  min-height: 34px;
  display: grid;
  place-items: center;
  font-weight: 760;
  color: var(--green);
}
.day {
  background: rgba(255, 250, 241, 0.78);
  display: grid;
  align-content: space-between;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.day:not(.out):hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(20, 33, 29, 0.12);
}
.day.out { opacity: 0.35; }
.day.available { border-color: rgba(28, 124, 84, 0.32); }
.day.booked { background: rgba(124, 47, 63, 0.09); border-color: rgba(124, 47, 63, 0.25); }
.day.blocked { background: rgba(183, 95, 66, 0.12); border-color: rgba(183, 95, 66, 0.25); }
.day.unknown { background: rgba(109, 116, 111, 0.1); border-color: rgba(109, 116, 111, 0.22); }
.day.today {
  outline: 2px solid rgba(185, 137, 66, 0.62);
  outline-offset: 2px;
}
.status {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.75rem;
  color: white;
}
.status.available { background: var(--ok); }
.status.booked { background: var(--wine); }
.status.blocked { background: var(--clay); }
.status.unknown { background: var(--muted); }

form {
  display: grid;
  gap: 14px;
}
label {
  display: grid;
  gap: 7px;
  font-weight: 680;
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(185, 137, 66, 0.68);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 4px rgba(224, 189, 120, 0.18);
  outline: none;
}
textarea { min-height: 128px; resize: vertical; }
.inline {
  display: flex;
  align-items: center;
  gap: 10px;
}
.inline input { width: auto; min-height: auto; }
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}
th { color: var(--green); font-size: 0.85rem; }

.legal-onepage {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.82);
  box-shadow: var(--shadow);
}
.legal-toc a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 2px 10px;
  align-items: start;
  min-height: 58px;
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.legal-toc a:hover {
  background: rgba(31, 63, 53, 0.07);
  border-color: rgba(31, 63, 53, 0.14);
  transform: translateX(2px);
}
.legal-toc span {
  grid-row: span 2;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: 1.2rem;
}
.legal-toc strong {
  color: var(--ink);
  line-height: 1.2;
}
.legal-toc small {
  color: var(--muted);
  line-height: 1.35;
}
.legal-toc p {
  margin: 8px 0 0;
  font-size: 0.82rem;
}
.legal-stack {
  display: grid;
  gap: 18px;
}
.legal-section {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.92), rgba(255, 250, 241, 0.76)),
    var(--surface);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
  scroll-margin-top: 24px;
}
.legal-section-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 14px;
}
.legal-section-head span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  color: var(--gold);
}
.legal-section-head h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1;
}
.legal-text {
  max-width: 880px;
}
.legal-text h2 {
  margin: 24px 0 8px;
  font-size: 1.05rem;
  color: var(--green);
}
.legal-text h2:first-child { margin-top: 0; }
.legal-text p { color: #3f4843; }
.legal-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.legal-highlight {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(31, 63, 53, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
}
.legal-highlight strong {
  color: var(--green);
  font-size: 1.05rem;
}
.legal-highlight p { margin: 0; }

#toast {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 40;
  max-width: min(420px, calc(100vw - 48px));
  background: var(--ink);
  color: white;
  padding: 13px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 48px));
  transition: transform 0.22s ease, opacity 0.22s ease;
}
#toast.show {
  opacity: 1;
  transform: translateY(0);
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.62s ease, transform 0.62s ease, filter 0.62s ease;
  filter: blur(8px);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.reveal.reveal-soft {
  transform: translateY(16px);
}
.photo.reveal {
  transform: translateY(28px) scale(1.025);
}
.photo.reveal.in-view {
  transform: translateY(0) scale(1);
}

@media (max-width: 920px) {
  :root { --nav-w: 0px; }
  body.nav-open { overflow: hidden; }
  #app { padding-left: 0; padding-bottom: 0; }
  .menu-toggle {
    position: fixed;
    left: 14px;
    top: 14px;
    z-index: 80;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(224, 189, 120, 0.42);
    border-radius: 999px;
    background: rgba(16, 25, 21, 0.92);
    box-shadow: 0 16px 42px rgba(13, 22, 19, 0.28);
  }
  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fffaf1;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  body.nav-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  body.nav-open .menu-toggle {
    left: calc(min(82vw, 304px) - 58px);
  }
  .nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 55;
    display: block;
    background: rgba(9, 15, 13, 0.52);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }
  body.nav-open .nav-scrim {
    opacity: 1;
    pointer-events: auto;
  }
  .right-nav {
    inset: 0 auto 0 0;
    width: min(82vw, 304px);
    height: 100vh;
    padding: 24px 18px;
    display: flex;
    gap: 28px;
    border-right: 1px solid rgba(224, 189, 120, 0.32);
    border-top: 0;
    box-shadow: 22px 0 70px rgba(13, 22, 19, 0.32);
    transform: translateX(-105%);
    transition: transform 0.24s ease;
    z-index: 70;
  }
  body.nav-open .right-nav { transform: translateX(0); }
  .right-nav::before,
  .right-nav::after { display: block; }
  .brand { grid-template-columns: 42px 1fr; width: auto; overflow: visible; }
  .brand-mark { width: 42px; height: 42px; }
  .right-nav nav {
    display: grid;
    gap: 7px;
    overflow: visible;
    align-items: stretch;
    min-width: 0;
  }
  .right-nav nav a {
    white-space: nowrap;
    min-height: 44px;
    padding: 0 13px 0 16px;
    flex: 0 0 auto;
  }
  .right-nav nav a::before,
  .right-nav nav a::after { display: block; }
  .right-nav nav a.active,
  .right-nav nav a[aria-current="page"],
  .right-nav nav a:hover { transform: translateX(3px); }
  .nav-foot {
    display: block;
    margin-top: auto;
    border-top: 1px solid rgba(224, 189, 120, 0.18);
    padding-top: 18px;
  }
  .mobile-language-switch { display: none; }
  .hero-language,
  .content-language {
    display: inline-flex;
    margin-bottom: 0;
    padding: 2px;
    background: rgba(16, 25, 21, 0.9);
    box-shadow: 0 14px 34px rgba(13, 22, 19, 0.28);
  }
  .hero-language {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 2;
  }
  .content-language {
    display: flex;
    width: fit-content;
    margin: 0 0 20px auto;
  }
  .language-switch button {
    min-width: 34px;
    min-height: 30px;
  }
  .scroll-progress { inset: 0 0 auto 0; }
  .hero { width: 100vw; min-height: 78vh; padding: 48px 22px; }
  .hero-content { width: 100%; overflow: hidden; }
  .hero .eyebrow {
    max-width: 100%;
    font-size: 0.72rem;
    line-height: 1.45;
    letter-spacing: 0.1em;
    overflow-wrap: break-word;
  }
  h1 { font-size: 2.65rem; line-height: 0.96; }
  h2 {
    font-size: 1.75rem;
    line-height: 1.08;
  }
  .hero p {
    max-width: 21rem;
    font-size: 0.95rem;
    line-height: 1.55;
  }
  .hero .actions { gap: 10px; }
  .hero .btn {
    width: 100%;
    min-width: 0;
    flex: 1 1 100%;
    padding: 0 14px;
  }
  .page { width: min(calc(100% - 28px), 760px); padding: 32px 0 96px; }
  .section-head { display: grid; }
  .grid.two, .grid.three, .grid.four, .gallery, .gallery-grid { grid-template-columns: 1fr; }
  .account-auth,
  .account-dashboard {
    grid-template-columns: 1fr;
  }
  .account-auth { min-height: auto; }
  .account-auth-photo img {
    min-height: 270px;
    max-height: 340px;
  }
  .account-auth-photo figcaption {
    inset: auto 18px 18px;
  }
  .account-auth-photo strong,
  .auth-copy h3 {
    font-size: 1.55rem;
  }
  .account-auth-panel {
    padding: 22px;
  }
  .auth-switch {
    border-radius: var(--radius);
  }
  .auth-switch button {
    min-height: 40px;
    border-radius: 6px;
    padding: 0 8px;
  }
  .account-profile-panel,
  .account-stay-panel {
    min-height: 250px;
  }
  .account-quick-links {
    grid-template-columns: 1fr;
  }
  .provence-grid { grid-template-columns: 1fr; }
  .provence-card,
  .provence-card.wide {
    grid-column: auto;
    min-height: 360px;
  }
  .provence-card figcaption { padding: 16px; }
  .provence-card h3 { font-size: 1.28rem; }
  .photo-toolbar { align-items: stretch; flex-direction: column; }
  .photo-wall { grid-template-columns: 1fr; }
  .photo-thumb,
  .photo-thumb.wide {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }
  .photo-thumb figcaption strong { max-width: 68%; }
  .lightbox {
    grid-template-columns: 1fr 1fr;
    align-content: center;
    padding: 18px;
  }
  .lightbox figure {
    grid-column: 1 / -1;
    order: -1;
  }
  .lightbox img { max-height: calc(100vh - 150px); }
  .lightbox-nav.prev,
  .lightbox-nav.next {
    justify-self: center;
  }
  .legal-onepage,
  .legal-highlight-grid {
    grid-template-columns: 1fr;
  }
  .legal-toc {
    position: static;
    box-shadow: none;
  }
  .legal-section { padding: 20px; }
  .legal-section-head span { font-size: 1.55rem; }
  .pack-band { grid-template-columns: 1fr; }
  .photo, .photo.small, .photo.featured { min-height: 230px; }
  .calendar-shell {
    margin-inline: 0;
    padding: 14px 8px;
  }
  .calendar-head {
    display: grid;
    grid-template-columns: 1fr;
  }
  .calendar-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .calendar-title { order: -1; }
  .calendar-title h3 { font-size: 1rem; }
  .calendar-head .btn,
  .calendar-nav .btn {
    min-height: 42px;
    padding: 0 12px;
  }
  .calendar-summary {
    width: 100%;
    text-align: center;
    border-radius: var(--radius);
  }
  .calendar { gap: 4px; }
  .day-name {
    min-height: 30px;
    padding: 4px 2px;
    font-size: 0.74rem;
  }
  .day {
    min-height: 52px;
    padding: 6px 4px;
    justify-items: center;
  }
  .day strong { font-size: 0.92rem; }
  .day .status {
    width: 9px;
    height: 9px;
    min-width: 9px;
    padding: 0;
    border-radius: 50%;
    color: transparent;
    font-size: 0;
  }
  .reveal,
  .reveal.reveal-soft,
  .photo.reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
  table { display: block; overflow-x: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .photo.reveal,
  #app,
  .hero,
  .hero-content {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
