:root {
  --gold: #c8a456;
  --gold-light: #e3c87a;
  --dark: #1b1b1b;
  --header-h: 92px;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--dark);
}

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

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: transparent;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background-color: rgba(27, 27, 27, 0.96);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.logo-text strong,
.logo-text {
  font-weight: 700;
}

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

.main-nav a {
  color: #fff;
  font-size: 14.5px;
  font-weight: 400;
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}

.main-nav a.active,
.main-nav a:hover {
  border-bottom-color: var(--gold-light);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-switches {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 2px;
}

.switch-option {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1;
  min-width: 34px;
  padding: 7px 6px;
  text-transform: uppercase;
}

.switch-option.is-active,
.switch-option:hover {
  background: var(--gold-light);
  color: #2a2110;
}

.switch-option.is-active {
  box-shadow: inset 0 0 0 1px rgba(42,33,16,0.18);
}

.season-section.is-hidden {
  display: none;
}

.currency {
  color: #fff;
  font-size: 14.5px;
  letter-spacing: 1px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #2a2110;
  font-weight: 500;
  font-size: 14.5px;
  padding: 14px 26px;
  border-radius: 2px;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-image.hero-image--summer {
  object-position: center 68%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 22%, rgba(0,0,0,0.05) 60%, rgba(0,0,0,0.65) 100%);
}

/* ---------- Booking bar ---------- */
.booking-bar {
  position: absolute;
  left: 50%;
  bottom: 64px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  overflow: visible;
}

.booking-field {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 24px;
  min-width: 150px;
  border-right: 1px solid #e7e2d8;
}

.booking-field label {
  font-size: 12px;
  color: #8a8378;
  margin-bottom: 2px;
}

.booking-field input {
  border: none;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  background: transparent;
  padding: 0;
  width: 100%;
}

.booking-field input::placeholder {
  color: #b9b2a4;
}

.guests-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 15px;
  color: var(--dark);
  cursor: pointer;
  padding: 0;
}

.guests-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  padding: 16px 18px;
  width: 220px;
}

.guests-dropdown.open {
  display: block;
}

.guests-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stepper button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #d8d2c4;
  background: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  color: var(--dark);
}

.stepper button:hover {
  background: #f4f0e6;
}

.btn-search {
  margin: 10px;
  padding: 0 28px;
  border-radius: 2px;
}

/* ---------- Dots ---------- */
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.dot {
  width: 18px;
  height: 3px;
  background: rgba(255,255,255,0.4);
}

.dot.active {
  background: #fff;
}

/* ---------- Shared section utilities ---------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 16px;
}

.section-intro {
  font-size: 15.5px;
  color: #4a463e;
  line-height: 1.75;
}

.gallery-placeholder {
  background: #e8e3d8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a9488;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* ---------- Gallery ---------- */
.gallery-section {
  background: #fff;
  padding: 100px 48px 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 8px;
  max-width: 1400px;
  margin: 0 auto 80px;
}

.gallery-item {
  overflow: hidden;
}

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

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

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

.amenities-section {
  max-width: 1100px;
  margin: 0 auto;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid #e3ddcf;
  padding-top: 48px;
}

.amenity-group h4 {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.amenity-group ul {
  list-style: none;
}

.amenity-group li {
  font-size: 14px;
  color: #4a463e;
  padding: 6px 0;
  border-bottom: 1px solid #f0ece4;
}

/* ---------- Rooms ---------- */
.rooms-section {
  background: #f8f6f1;
  padding: 100px 48px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.room-card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.room-img-wrap {
  height: 220px;
}

.room-body {
  padding: 28px;
}

.room-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.room-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.room-body p {
  font-size: 14px;
  line-height: 1.75;
  color: #4a463e;
  margin-bottom: 20px;
}

.room-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.room-features li {
  font-size: 13px;
  color: #6a6560;
  padding-left: 16px;
  position: relative;
}

.room-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Season sections ---------- */
.season-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.season-winter {
  background-image: url('../images/hero-valley.jpg');
}

.season-summer {
  background-image: url('../images/uitzicht%20zomer.png');
  background-position: center top;
}

.season-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.62);
}

.season-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 48px;
  text-align: center;
  color: #fff;
}

.season-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

.season-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 24px;
}

.season-content p {
  font-size: 15.5px;
  line-height: 1.8;
  opacity: 0.88;
  margin-bottom: 48px;
}

.eyebrow--light {
  color: var(--gold-light);
}

.season-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 36px;
}

.sfact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sfact strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
}

.sfact span {
  font-size: 12.5px;
  opacity: 0.7;
  line-height: 1.4;
}

/* ---------- Food & drink ---------- */
.food-section {
  background: #fff;
  padding: 100px 48px;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.food-card {
  padding: 36px 28px;
  border: 1px solid #e8e2d4;
  border-radius: 2px;
  text-align: center;
}

.food-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f5f1e8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
}

.food-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  margin-bottom: 12px;
}

.food-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #4a463e;
}

/* ---------- Restaurant list ---------- */
.restaurant-list {
  max-width: 820px;
  margin: 72px auto 0;
}

.restaurant-list-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e3ddcf;
}

.restaurant-card {
  padding: 28px 0;
  border-bottom: 1px solid #f0ece4;
}

.restaurant-card--featured {
  background: #faf8f2;
  border: 1px solid #e3ddcf;
  border-radius: 2px;
  padding: 28px 32px;
  margin-top: 8px;
}

.restaurant-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.restaurant-header h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cuisine-tag {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #8a8378;
  font-family: 'Poppins', sans-serif;
}

.season-badge {
  display: inline-block;
  font-size: 11.5px;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.season-badge--all {
  background: #eef5ee;
  color: #3a6e3a;
}

.season-badge--winter {
  background: #e8f0fa;
  color: #2a4e7a;
}

.michelin-badge {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #c8a456;
  border: 1px solid #c8a456;
  padding: 2px 8px;
  border-radius: 2px;
  vertical-align: middle;
}

.restaurant-card p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #4a463e;
}

/* ---------- Getting here ---------- */
.getting-here-section {
  background: #f8f6f1;
  padding: 100px 48px;
}

.getting-here-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.gh-text .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
}

.gh-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 18px;
}

.gh-text > p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a463e;
  margin-bottom: 40px;
}

.travel-options {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.travel-option {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.travel-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 40px;
  padding-top: 2px;
}

.travel-option h4 {
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}

.travel-option p,
.travel-option li {
  font-size: 14px;
  line-height: 1.7;
  color: #4a463e;
}

.travel-option ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gh-map {
  position: sticky;
  top: 120px;
}

.map-placeholder {
  height: 340px;
  background: #e8e3d8;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #6a6560;
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
}

.location-card {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  border: 1px solid #ddd8cc;
}

.location-mountain-svg {
  display: block;
  line-height: 0;
}

.location-mountain-svg svg {
  width: 100%;
  height: auto;
  display: block;
}

.location-card-body {
  background: #fff;
  padding: 20px 24px 22px;
}

.location-coords {
  font-size: 11.5px;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.location-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.location-address {
  font-size: 13.5px;
  color: #6a6560;
  line-height: 1.6;
  margin-bottom: 12px;
}

.location-links {
  font-size: 12.5px;
  color: #8a8378;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.loc-sep {
  opacity: 0.4;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 60px 48px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 1px;
}

.footer-location {
  font-size: 13.5px;
  opacity: 0.55;
}

.site-disclaimer {
  font-size: 12px;
  opacity: 0.45;
}

/* ---------- About ---------- */
.about {
  background: #f8f6f1;
  padding: 100px 24px 110px;
}

.about-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.about h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 38px;
  line-height: 1.25;
  margin-bottom: 22px;
}

.about p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a463e;
  margin-bottom: 48px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid #e3ddcf;
  border-bottom: 1px solid #e3ddcf;
  margin-bottom: 40px;
}

.fact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fact strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--dark);
}

.fact span {
  font-size: 13px;
  color: #8a8378;
}

.amenities-list {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.amenities-list li {
  font-size: 14.5px;
  color: #4a463e;
  padding-left: 24px;
  position: relative;
}

.amenities-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width: 640px) {
  .about {
    padding: 70px 20px 80px;
  }
  .about h1 {
    font-size: 28px;
  }
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .main-nav {
    gap: 20px;
  }
  .main-nav a {
    font-size: 13.5px;
  }
}

@media (max-width: 920px) {
  .site-header {
    padding: 0 24px;
  }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(20,18,14,0.97);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 24px 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .header-right .btn-primary {
    display: none;
  }
  .header-switches {
    gap: 6px;
  }
  .currency {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  .booking-bar {
    flex-wrap: wrap;
    width: calc(100% - 32px);
    bottom: 32px;
    border-radius: 6px;
  }
  .booking-field {
    flex: 1 1 50%;
    min-width: 0;
  }
  .btn-search {
    flex: 1 1 100%;
    margin: 10px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 16px;
  }
  .logo-icon {
    display: none;
  }
  .logo-text {
    font-size: 14px;
    letter-spacing: 1.8px;
  }
  .header-right {
    gap: 8px;
  }
  .header-switches {
    gap: 4px;
  }
  .header-switch {
    padding: 2px;
  }
  .switch-option {
    font-size: 11px;
    letter-spacing: 1.4px;
    min-width: 28px;
    padding: 6px 4px;
  }
  .booking-field {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid #e7e2d8;
  }
}

@media (max-width: 1100px) {
  .gallery-section,
  .rooms-section,
  .food-section,
  .getting-here-section,
  .season-content {
    padding-left: 32px;
    padding-right: 32px;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-rows: 220px 220px;
  }
}

@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item--tall {
    grid-row: span 1;
  }
  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .season-facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .food-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .getting-here-inner {
    grid-template-columns: 1fr;
  }
  .gh-map {
    position: static;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .gallery-section,
  .rooms-section,
  .food-section,
  .getting-here-section {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .season-content {
    padding: 60px 20px;
  }
  .season-content h2 {
    font-size: 30px;
  }
  .season-facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-footer {
    padding: 48px 20px;
  }
}
