:root {
  --gold: #b8903c;
  --cream: #f3efe7;
  --soft-cream: #ebe6dd;
  --charcoal: #1b1b1b;
  --soft-text: #6f6a61;
  --line: rgba(0,0,0,.08);
  --shadow: 0 20px 60px rgba(0,0,0,.08);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
}

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

.container {
  width: min(var(--max), calc(100% - 60px));
  margin: auto;
}

/* ================= HEADER ================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

.logo img {
  height: 115px;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.btn {
  background: var(--gold);
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: .25s ease;
}

.btn:hover {
  background: #a67d2f;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__slide.is-active { opacity: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.6), rgba(0,0,0,.3));
}

.hero__content {
  position: relative;
  padding: 260px 0 140px;
  color: white;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(3rem, 4vw, 4.5rem);
  margin-bottom: 20px;
}

.kicker {
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 20px;
}

/* ================= SECTIONS ================= */

.section {
  padding: 120px 0;
}

.section--soft {
  background: var(--soft-cream);
}

h2 {
  font-family: Georgia, serif;
  margin-top: 10px;
}

/* ================= REVIEWS ================= */

.reviews-block {
  text-align: center;
}

.reviews-content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-rating h2 {
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
}

.stars {
  color: var(--gold);
  letter-spacing: 6px;
  font-size: 1.6rem;
}

.reviews-meta {
  text-align: left;
  color: var(--soft-text);
  line-height: 1.8;
}

.reviews-meta p {
  font-size: 1.05rem;
  margin-bottom: 25px;
}

/* ================= HOME GALLERY ================= */

.home-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.gallery-large {
  min-height: 520px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.gallery-column {
  display: grid;
  gap: 30px;
}

.gallery-small {
  min-height: 245px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.gallery-wide {
  grid-column: span 2;
  min-height: 420px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  margin-top: 40px;
  box-shadow: var(--shadow);
}

/* ================= CHALET LINK ================= */

.chalet-link {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.chalet-image {
  min-height: 320px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

/* ================= VIDEO ================= */

.video-wrap {
  position: relative;
  padding-top: 56.25%;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
}

/* ================= GALLERY PAGE ================= */

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

.gallery-item {
  min-height: 340px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: .3s ease;
}

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

/* ================= CONTACT ================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

/* ================= FOOTER ================= */

.footer {
  background: var(--charcoal);
  color: white;
  padding: 80px 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

  .logo img {
    height: 85px;
  }

  .reviews-content,
  .home-gallery,
  .gallery-grid,
  .contact-grid,
  .chalet-link {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reviews-meta {
    text-align: center;
  }

  .hero__content {
    padding: 200px 0 120px;
  }

}