:root {
  --ink: #1f2a24;
  --muted: #65736b;
  --paper: #f7f3ea;
  --surface: #ffffff;
  --line: #ded8cc;
  --forest: #203b30;
  --leaf: #78996f;
  --coral: #bf6349;
  --gold: #d7b768;
  --champagne: #fff8e7;
  --shadow: 0 28px 80px rgba(31, 42, 36, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(180deg, rgba(15, 24, 19, 0.82), rgba(15, 24, 19, 0));
}

.brand,
.site-header nav,
.header-call,
.language-control {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  min-width: max-content;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(215, 183, 104, 0.85);
  border-radius: 50%;
  background: rgba(255, 248, 231, 0.12);
  color: var(--champagne);
}

.site-header nav a,
.header-call {
  font-size: 0.88rem;
  font-weight: 700;
}

.site-header nav a {
  opacity: 0.86;
}

.site-header nav a:hover,
.header-call:hover {
  opacity: 1;
}

.header-call {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.language-control {
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.language-control select {
  max-width: 132px;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  outline: 0;
  cursor: pointer;
}

.language-control option {
  color: var(--ink);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 128px clamp(18px, 5vw, 72px) 42px;
  overflow: hidden;
  color: #fff;
}

.hero-carousel,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-carousel {
  overflow: hidden;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 900ms ease, transform 5200ms ease;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide.is-leaving {
  opacity: 0;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 76% 24%, rgba(215, 183, 104, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(10, 17, 14, 0.82), rgba(10, 17, 14, 0.38) 54%, rgba(10, 17, 14, 0.18)),
    linear-gradient(0deg, rgba(10, 17, 14, 0.7), rgba(10, 17, 14, 0.1) 48%);
}

.hero-content,
.booking-card {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(4.2rem, 10vw, 9.2rem);
  font-weight: 700;
  text-transform: none;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
}

h3 {
  font-size: 1.35rem;
}

.metric {
  white-space: nowrap;
  font-variant-numeric: lining-nums tabular-nums;
}

.hero-copy {
  max-width: 700px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.hero-badges span {
  padding: 8px 12px;
  border: 1px solid rgba(215, 183, 104, 0.55);
  border-radius: 999px;
  background: rgba(255, 248, 231, 0.1);
  color: var(--champagne);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-actions,
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 7px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.button-primary {
  background: linear-gradient(135deg, #d7b768, #b98d37);
  color: #fff;
  box-shadow: 0 16px 34px rgba(120, 82, 21, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

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

.button-google {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: #fff;
  color: var(--forest);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.booking-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 920px);
  margin-top: 70px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
}

.booking-card div {
  padding: 20px;
  background: rgba(255, 248, 231, 0.92);
  color: var(--muted);
}

.booking-card .stat {
  display: block;
  color: var(--ink);
  font-family: "Quicksand", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 700;
}

.luxury-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(215, 183, 104, 0.46);
  border-bottom: 1px solid rgba(215, 183, 104, 0.46);
  background: rgba(215, 183, 104, 0.5);
}

.luxury-strip span {
  display: grid;
  min-height: 82px;
  place-items: center;
  padding: 18px;
  background: #fbf5e8;
  color: var(--forest);
  font-family: "Quicksand", Arial, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.intro,
.gallery-section,
.contact {
  padding: 96px clamp(18px, 5vw, 72px);
}

.intro {
  background:
    linear-gradient(90deg, rgba(255, 248, 231, 0.72), rgba(255, 248, 231, 0)),
    var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.04rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.features article {
  position: relative;
  isolation: isolate;
  min-height: 260px;
  padding: 42px clamp(18px, 4vw, 54px);
  border-right: 1px solid var(--line);
  overflow: hidden;
  color: #fff;
  background-position: center;
  background-size: cover;
}

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

.features article::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(18, 28, 22, 0.18), rgba(18, 28, 22, 0.72)),
    linear-gradient(90deg, rgba(18, 28, 22, 0.62), rgba(18, 28, 22, 0.2));
}

.features .feature-groups {
  background-image: url("assets/bonneville-chalet.webp");
}

.features .feature-outdoor {
  background-image: url("assets/bonneville-terrasse.webp");
}

.features .feature-nature {
  background-image: url("assets/bonneville-vue-ciel.webp");
}

.features span {
  display: inline-block;
  margin-bottom: 42px;
  color: #f0c86c;
  font-weight: 700;
}

.features h3 {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
}

.features p,
.section-heading p,
.reviews p,
.contact p {
  color: var(--muted);
}

.features p {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.88);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 780px;
}

.section-heading p {
  max-width: 360px;
  margin: 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 12px;
}

.gallery-item {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #d8d2c5;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(240px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  padding: 78px clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 82% 18%, rgba(215, 183, 104, 0.24), transparent 30%),
    linear-gradient(135deg, #16251e, var(--forest));
  color: #fff;
}

.reviews img {
  width: 100%;
  max-width: 360px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.reviews p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 6vw, 88px);
  background:
    linear-gradient(90deg, rgba(255, 248, 231, 0.68), rgba(255, 255, 255, 0.92)),
    var(--surface);
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-panel a,
.contact-panel address {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: #25d366;
}

.contact-panel address {
  border-bottom: 0;
  color: var(--muted);
  font-weight: 600;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: #17231c;
  font-size: 0.92rem;
}

.lightbox {
  width: min(92vw, 1100px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(9, 14, 11, 0.84);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-header nav {
    display: none;
  }

  .header-call {
    font-size: 0.78rem;
  }

  .language-control span {
    display: none;
  }

  .booking-card,
  .intro-grid,
  .features,
  .reviews,
  .contact,
  .luxury-strip {
    grid-template-columns: 1fr;
  }

  .features article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .features article:last-child {
    border-bottom: 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 14px;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }

  .gallery-item.featured,
  .gallery-item.wide {
    grid-column: span 2;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    display: none;
  }

  .site-header {
    gap: 10px;
  }

  .language-control select {
    max-width: 92px;
  }

  .hero {
    min-height: 96vh;
    padding-top: 108px;
  }

  h1 {
    font-size: clamp(3.15rem, 18vw, 4.2rem);
  }

  .hero-actions .button,
  .review-actions .button {
    width: 100%;
  }

  .booking-card div {
    padding: 16px;
  }

  .intro,
  .gallery-section,
  .contact {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .gallery {
    display: block;
  }

  .gallery-item {
    height: 230px;
    margin-bottom: 12px;
  }

  footer {
    display: grid;
  }
}
