/* Villa Lily Bay - opgeschoonde stylesheet */

:root {
  --taupe: #9B816E;
  --taupe-dark: #57483F;
  --taupe-soft: #C6B5A7;
  --sand: #EFE8E0;
  --cream: #FAF8F5;
  --blue: #5E93A1;
  --blue-dark: #416E79;
  --peach: #EFAF98;
  --white: #fff;
  --muted: #81766E;
  --radius: 26px;
  --shadow: 0 20px 60px rgba(87,72,63,.11);
  --logo-bg: #fefefe;
  --header-height: 142px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding-top: var(--header-height);
  background: var(--cream);
  color: var(--taupe-dark);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.68;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
section[id] { scroll-margin-top: 80px; }

h1, h2, h3 {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-weight: 400;
  line-height: 1.06;
}

h1 { font-size: clamp(54px, 7.7vw, 106px); letter-spacing: -.025em; }
h2 { font-size: clamp(42px, 5vw, 72px); letter-spacing: -.025em; }
h3 { font-size: 31px; }
h1 em, h2 em { font-weight: 400; }

.eyebrow, .section-kicker {
  margin: 0 0 18px;
  color: var(--taupe);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.light { color: rgba(255,255,255,.8); }
.muted { color: var(--muted); }
.center { text-align: center; }

/* HEADER */
.site-header,
.site-header.scrolled {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  padding: 0 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  background: var(--logo-bg);
  border-bottom: 1px solid rgba(155,129,110,.13);
  box-shadow: 0 5px 20px rgba(87,72,63,.055);
}

.brand,
.site-header.scrolled .brand {
  flex: 0 0 190px;
  width: 190px;
  height: 128px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--logo-bg);
}

.brand-logo,
.site-header.scrolled .brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--logo-bg);
}

.nav-links,
.site-header.scrolled .nav-links {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px,1.9vw,34px);
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav-links a,
.site-header.scrolled .nav-links a {
  color: var(--taupe-dark);
  opacity: 1;
  transition: .2s ease;
}

.nav-links a:not(.nav-cta),
.site-header.scrolled .nav-links a:not(.nav-cta) {
  color: #725f52;
  font-size: 10px;
  letter-spacing: .13em;
}

.nav-links a:hover,
.site-header.scrolled .nav-links a:hover { color: var(--blue-dark); }

.nav-cta,
.site-header.scrolled .nav-cta {
  padding: 14px 22px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: #fff !important;
}

.nav-cta:hover,
.site-header.scrolled .nav-cta:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--taupe-dark);
  font-size: 26px;
}

/* HERO */
.hero {
  position: relative;
  height: calc(100vh - var(--header-height));
  min-height: 730px;
  max-height: 900px;
  overflow: hidden;
  background: #3f4c44;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,rgba(24,35,31,.68) 0%,rgba(28,38,33,.45) 34%,rgba(25,35,31,.12) 68%,rgba(20,28,25,.06) 100%),
    linear-gradient(0deg,rgba(35,29,25,.42) 0%,rgba(35,29,25,.04) 48%,rgba(35,29,25,.16) 100%);
}

.hero-content {
  position: absolute;
  z-index: 3;
  left: 5vw;
  bottom: 210px;
  max-width: 700px;
  padding: 0;
  color: #fff;
}

.hero-content .eyebrow {
  margin-bottom: 3px;
  font-size: 15px;
  letter-spacing: .35em;
}

/* Iets zwaarder zodat de dunne V/Y niet wegvallen */
.hero-content h1 {
  font-size: clamp(62px,7vw,105px);
  font-weight: 500;
  line-height: .98;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.hero-tagline {
  margin: 13px 0 17px;
  color: #fff;
  font-size: 13px;
  letter-spacing: .29em;
  text-transform: uppercase;
}

.hero-sub {
  max-width: 590px;
  margin: 0 0 25px;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-blue { padding: 15px 28px; border-color: rgba(255,255,255,.3); background: rgba(94,147,161,.95); color: #fff; }
.button-blue:hover { background: var(--blue-dark); }
.button-blue span { margin-left: 18px; font-size: 18px; line-height: 0; }
.button-light { background: #fff; color: var(--taupe-dark); }
.button-light:hover { background: var(--sand); }
.button-dark { background: var(--taupe-dark); color: #fff; }
.wide { width: 100%; }

.quick-book {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 34px;
  width: min(1050px,90%);
  min-height: 90px;
  padding: 12px 14px 12px 18px;
  display: grid;
  grid-template-columns: 1fr 1fr .9fr 1.25fr;
  align-items: stretch;
  transform: translateX(-50%) translateY(18px);
  border-radius: 22px;
  background: rgba(250,248,245,.97);
  box-shadow: 0 20px 48px rgba(33,38,34,.22);
  color: var(--taupe-dark);
}

.quick-book.visible { transform: translateX(-50%) translateY(0); }

.quick-book label {
  justify-content: center;
  gap: 1px;
  padding: 0 22px;
  border-right: 1px solid rgba(155,129,110,.2);
}

.quick-book label span {
  color: var(--taupe);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
}

.quick-book input,
.quick-book select {
  padding: 5px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  font-size: 13px;
}

.quick-book-button {
  margin: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 999px;
  background: var(--taupe);
  color: #fff;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quick-book-button:hover { background: var(--blue-dark); }

/* KENMERKEN */
.villa-highlights {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  padding: 42px 7vw;
  background: var(--cream);
  border-bottom: 1px solid rgba(155,129,110,.18);
}

.villa-highlight {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(155,129,110,.22);
  text-align: center;
}

.villa-highlight:last-child { border-right: 0; }

.villa-highlight strong {
  color: var(--taupe-dark);
  font-family: "Bodoni Moda",serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}

.villa-highlight span {
  margin-top: 9px;
  color: var(--taupe);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* ALGEMEEN */
.section { padding: 120px 7vw; }
.compact { padding-top: 82px; padding-bottom: 82px; }
.intro { padding-top: 65px; }
.intro.section { padding-bottom: 40px; }

.split-title {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 9vw;
  align-items: start;
}

.split-title p { margin-top: 8px; font-size: 16px; }
.split-title .muted { color: var(--taupe-dark); }

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  gap: 10vw;
  align-items: end;
  margin-bottom: 52px;
}
.section-heading p:last-child { color: var(--muted); }

/* FEATURE CARDS */
.feature-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  align-items: start;
}

.feature-grid.section.compact { padding-top: 20px; }

.feature-card {
  align-self: start;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-card.large {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: stretch;
}

.feature-card:nth-of-type(2) { grid-column: 2; grid-row: 1; }
.feature-card:nth-of-type(3) { grid-column: 2; grid-row: 2; }

.feature-image {
  display: block;
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: center;
}

.feature-card.large .feature-image { height: 570px; }

.feature-copy { padding: 34px; }
.feature-copy h3 { margin-bottom: 15px; color: var(--taupe-dark); }
.feature-copy p:last-child { color: var(--muted); }

/* VOORZIENINGEN */
.amenities { background: var(--cream); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(155,129,110,.22);
  border-left: 1px solid rgba(155,129,110,.22);
}

.amenity {
  min-height: 150px;
  padding: 28px 25px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(155,129,110,.22);
  border-bottom: 1px solid rgba(155,129,110,.22);
  background: rgba(255,255,255,.45);
}

.amenity-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-family: "Bodoni Moda",serif;
  font-size: 25px;
}

.amenity div { display: flex; flex-direction: column; }

.amenity strong {
  color: var(--taupe-dark);
  font-family: "Bodoni Moda",serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.amenity small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.amenities-note {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.amenities-note span::first-letter { color: var(--blue); }

/* GALLERY */
.gallery-section { overflow: hidden; background: #f4efe6; }

.gallery-heading {
  display: grid;
  grid-template-columns: 1.1fr .8fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 34px;
}

.gallery-heading h2 { font-size: clamp(44px,5vw,72px); }
.gallery-heading p { max-width: 520px; margin: 0 0 8px; color: var(--muted); }

.villa-gallery { width: 100%; }
.gallery-stage { position: relative; width: 100%; height: clamp(430px,58vw,690px); overflow: hidden; background: #ded6cc; }
.gallery-stage-button { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.gallery-main-image { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: opacity .2s ease; }

.gallery-arrow,
.lightbox-arrow,
.lightbox-close {
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(37,34,31,.55);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease,transform .2s ease;
}

.gallery-arrow:hover,
.lightbox-arrow:hover,
.lightbox-close:hover { background: rgba(37,34,31,.82); }

.gallery-arrow { position: absolute; z-index: 3; top: 50%; width: 50px; height: 50px; transform: translateY(-50%); font-size: 22px; }
.gallery-arrow:hover { transform: translateY(-50%) scale(1.04); }
.gallery-arrow-prev { left: 18px; }
.gallery-arrow-next { right: 18px; }

.gallery-thumbs { display: grid; grid-template-columns: repeat(5,minmax(90px,1fr)) minmax(170px,1.45fr); gap: 12px; margin-top: 14px; }
.gallery-thumb, .lightbox-thumb { border: 1px solid transparent; padding: 0; background: none; cursor: pointer; overflow: hidden; }
.gallery-thumb { height: 88px; }
.gallery-thumb img, .lightbox-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb.active { border-color: var(--taupe); box-shadow: inset 0 0 0 2px #f4efe6; }

.gallery-all-button {
  min-height: 88px;
  border: 1px solid rgba(155,129,110,.65);
  background: rgba(255,255,255,.34);
  color: var(--taupe-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 9px;
  cursor: pointer;
}

.gallery-all-button strong { font-family: "Bodoni Moda",serif; font-size: 25px; font-weight: 400; color: var(--taupe); line-height: 1.1; }

body.lightbox-open { overflow: hidden; }
.gallery-lightbox { position: fixed; z-index: 5000; inset: 0; display: none; align-items: center; justify-content: center; padding: 18px 74px 16px; background: rgba(21,20,18,.96); }
.gallery-lightbox.open { display: flex; }
.lightbox-content { width: min(1500px,calc(100vw - 150px)); height: calc(100vh - 34px); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.lightbox-image { display: block; max-width: 100%; width: auto; height: auto; max-height: calc(100vh - 145px); object-fit: contain; box-shadow: 0 18px 70px rgba(0,0,0,.36); }
.lightbox-close { position: absolute; z-index: 3; top: 18px; right: 20px; width: 48px; height: 48px; font-size: 28px; font-weight: 300; }
.lightbox-arrow { position: absolute; z-index: 3; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 21px; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-footer { width: min(1050px,90vw); min-height: 92px; margin-top: 12px; display: grid; grid-template-columns: 70px 1fr; align-items: center; gap: 18px; }
.lightbox-counter { color: rgba(255,255,255,.85); font-size: 11px; letter-spacing: .13em; }
.lightbox-thumbs { display: flex; justify-content: center; gap: 8px; min-width: 0; }
.lightbox-thumb { width: 112px; height: 68px; opacity: .58; transition: opacity .2s ease,border-color .2s ease; }
.lightbox-thumb.active { opacity: 1; border-color: #fff; }

/* ONS VERHAAL */
.our-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 6vw;
  align-items: start;
  background: var(--cream);
}

.story-photo {
  position: relative;
}

.story-photo img {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-content h2 {
  margin-bottom: 30px;
  font-size: clamp(44px, 4.5vw, 72px);
  max-width: 100%;
}

.story-content h2 {
  margin-bottom: 30px;
}

.story-content > p:not(.section-kicker) {
  max-width: 590px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

/* Uitgebreide tekst Ons verhaal */
.story-content h3 {
  margin: 42px 0 14px;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--taupe-dark);
}

.story-link {
  display: inline-block;
  margin: 4px 0 12px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 4px;
}

.story-signoff {
  margin-top: 46px !important;
  font-family: "Bodoni Moda", serif;
  font-size: 30px;
  font-style: italic;
  color: var(--taupe-dark);
}

.story-signoff span {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-style: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.story-more {
  margin-top: 26px;
}

.story-more summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  list-style: none;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 5px;
}

.story-more summary::-webkit-details-marker {
  display: none;
}

.story-more summary::after {
  content: "↓";
  font-size: 16px;
  transition: transform .2s ease;
}

.story-more[open] summary::after {
  transform: rotate(180deg);
}

.story-more[open] summary {
  margin-bottom: 28px;
}

.story-more-content {
  animation: storyOpen .3s ease;
}

@keyframes storyOpen {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.story-close-text {
  display: none;
}

.story-more[open] .story-open-text {
  display: none;
}

.story-more[open] .story-close-text {
  display: inline;
}

/* CURACAO */
.curacao { min-height: 72vh; position: relative; display: flex; align-items: flex-end; overflow: hidden; color: #fff; background: var(--taupe-dark); }
.curacao-bg { position: absolute; inset: 0; background: radial-gradient(circle at 76% 28%,rgba(239,175,152,.9),transparent 20%),linear-gradient(135deg,#4f7c87 0%,#7eabb4 45%,#d9b5a0 75%,#66544a 100%); }
.curacao-bg::after { content: "CURAÇAO"; position: absolute; right: -1vw; top: 8%; font-family: "Bodoni Moda",serif; font-size: 16vw; line-height: 1; color: rgba(255,255,255,.08); }
.curacao::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(69,56,49,.72),transparent 65%); }
.curacao-content { z-index: 2; max-width: 720px; }
.curacao-content p { max-width: 600px; font-size: 17px; font-weight: 300; color: rgba(255,255,255,.84); }
.text-link { display: inline-block; margin-top: 18px; border-bottom: 1px solid currentColor; }

/* LOCATIE */
.location { display: grid; grid-template-columns: 1fr .8fr; gap: 9vw; align-items: center; }
.location-copy > p { max-width: 660px; }

.drive-times { display: grid; grid-template-columns: 1fr 1fr; margin-top: 40px; border-top: 1px solid rgba(155,129,110,.22); }
.drive-times > div { padding: 20px 0; border-bottom: 1px solid rgba(155,129,110,.22); display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 18px; }
.drive-times strong { color: var(--blue-dark); font-size: 16px; text-align: left; }
.drive-times span { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; text-align: left; }

.drive-icon { width: 22px; height: 22px; flex: 0 0 22px; fill: none; stroke: var(--blue); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.airport-icon { width: 28px; flex: 0 0 28px; display: inline-flex; align-items: center; justify-content: center; color: var(--blue); font-family: Arial,sans-serif; font-size: 28px; font-weight: 400; line-height: 1; }

.map-card { min-height: 520px; overflow: hidden; border-radius: var(--radius); background: linear-gradient(145deg,#efe7df,#d0dde0); box-shadow: var(--shadow); }
.map-card iframe { width: 100%; height: 520px; border: 0; display: block; }

/* REVIEWS */
.review-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 46px; }
.review-cards blockquote { margin: 0; padding: 34px; background: #fff; border-radius: 22px; font-family: "Bodoni Moda",serif; font-size: 23px; box-shadow: var(--shadow); border-top: 2px solid var(--peach); }
.review-cards cite { display: block; margin-top: 24px; font-family: "Montserrat",sans-serif; font-style: normal; font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: .16em; }
.review-note { text-align: center; color: var(--muted); font-size: 11px; margin-top: 22px; }

/* BOEKEN */
.booking { background: var(--taupe-dark); }
.booking-panel { display: grid; grid-template-columns: 1fr .75fr; gap: 8vw; color: #fff; align-items: center; }
.booking-panel > div:first-child p { color: rgba(255,255,255,.72); max-width: 610px; }
.booking-demo { background: rgba(255,255,255,.08); padding: 34px; border-radius: 24px; border: 1px solid rgba(255,255,255,.14); }

label { display: flex; flex-direction: column; gap: 7px; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.booking-demo label { margin-bottom: 14px; color: rgba(255,255,255,.72); }
input, select, textarea { width: 100%; border: 1px solid rgba(155,129,110,.25); border-radius: 13px; padding: 14px 15px; font: inherit; background: #fff; color: var(--taupe-dark); outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); }
.booking-demo small { display: block; color: rgba(255,255,255,.55); margin-top: 12px; }

/* CONTACT */
.contact { display: grid; grid-template-columns: .8fr 1fr; gap: 10vw; }
.contact-copy p { max-width: 460px; }
.contact-details { font-weight: 500; margin-top: 30px; color: var(--blue-dark); }
.contact-form { background: #fff; padding: 36px; border-radius: 24px; box-shadow: var(--shadow); }
.contact-form label { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* FOOTER */
footer { padding: 46px 7vw 30px; background: #493d36; color: #fff; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: end; }
.footer-brand { display: flex; gap: 18px; align-items: center; }
.footer-logo { height: 92px; width: auto; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { font-family: "Bodoni Moda",serif; font-size: 22px; font-weight: 400; }
.footer-brand small { color: rgba(255,255,255,.58); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: flex; gap: 24px; font-size: 10px; letter-spacing: .11em; text-transform: uppercase; color: rgba(255,255,255,.75); }
footer > p { grid-column: 1 / -1; color: rgba(255,255,255,.4); font-size: 10px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; }

/* ANIMATIES */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .75s ease,transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1180px) {
  :root { --header-height: 126px; }
  .site-header,.site-header.scrolled { padding: 0 3.5vw; gap: 20px; }
  .brand,.site-header.scrolled .brand { flex-basis: 160px; width: 160px; height: 112px; }
  .nav-links,.site-header.scrolled .nav-links { gap: 13px; }
  .nav-links a:not(.nav-cta),.site-header.scrolled .nav-links a:not(.nav-cta) { font-size: 9px; letter-spacing: .1em; }
  .nav-cta,.site-header.scrolled .nav-cta { padding: 11px 15px; }
}

@media (max-width: 1100px) {
  .hero-content { bottom: 225px; }
  .quick-book { grid-template-columns: 1fr 1fr 1fr; bottom: 25px; }
  .quick-book-button { grid-column: 1 / -1; min-height: 52px; margin-top: 9px; }
  .hero { min-height: 900px; }
}

@media (max-width: 980px) {
  :root { --header-height: 104px; }

  .site-header,.site-header.scrolled { height: var(--header-height); padding: 0 5vw; background: var(--logo-bg); }
  .brand,.site-header.scrolled .brand { flex-basis: 132px; width: 132px; height: 92px; }
  .menu-toggle,.site-header.scrolled .menu-toggle { display: block; color: var(--taupe-dark); }

  .nav-links,.site-header.scrolled .nav-links {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 4vw;
    right: 4vw;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 22px;
    background: var(--logo-bg);
    border: 1px solid rgba(155,129,110,.15);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 16px 30px rgba(87,72,63,.12);
} 
    .our-story {
  grid-template-columns: 1fr;
  gap: 40px;
}
.story-photo img {
  height: 500px;
}

.story-content {
  max-width: none;
}

  .nav-links.open,.site-header.scrolled .nav-links.open { display: flex; }

  .split-title,.section-heading,.location,.booking-panel,.contact { grid-template-columns: 1fr; gap: 40px; }

  .feature-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .feature-card.large,.feature-card:nth-of-type(2),.feature-card:nth-of-type(3) { grid-column: 1; grid-row: auto; align-self: start; }
  .feature-card.large .feature-image,.feature-card:not(.large) .feature-image { height: 360px; }

  .amenities-grid { grid-template-columns: repeat(2,1fr); }

  .gallery-heading { grid-template-columns: 1fr; gap: 18px; }
  .gallery-stage { height: 520px; }
  .gallery-thumbs { grid-template-columns: repeat(3,1fr); }
  .gallery-thumb { height: 105px; }
  .gallery-all-button { min-height: 105px; }
  .gallery-lightbox { padding: 18px 58px 14px; }
  .lightbox-content { width: calc(100vw - 116px); }
  .lightbox-thumb { width: 88px; height: 58px; }

  .review-cards { grid-template-columns: 1fr; }
  .map-card { min-height: 380px; }
}

@media (max-width: 680px) {
  :root { --header-height: 90px; }

  .brand,.site-header.scrolled .brand { flex-basis: 115px; width: 115px; height: 80px; }

.hero {
  height: auto;
  min-height: 0;
  padding: 330px 6vw 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-photo {
  object-position: 58% center;
}

.hero-content {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  max-width: none;
  padding: 0;
}

.hero-content .eyebrow {
  font-size: 11px;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1;
}

.hero-tagline {
  font-size: 9px;
  letter-spacing: .2em;
  line-height: 1.6;
}

.hero-sub {
  font-size: 13px;
}

.quick-book,
.quick-book.reveal,
.quick-book.reveal.visible {
  position: relative;
  left: auto;
  bottom: auto;
  width: 100%;
  margin-top: 24px;
  padding: 12px 15px;
  display: grid;
  grid-template-columns: 1fr;
  transform: none;
  border-radius: 18px;
}

.quick-book label {
  padding: 10px 4px;
  border-right: 0;
  border-bottom: 1px solid rgba(155,129,110,.15);
}

.quick-book-button {
  grid-column: auto;
  min-height: 47px;
  margin: 10px 0 0;
}

  .villa-highlights { grid-template-columns: repeat(2,1fr); padding: 25px 6vw; }
  .villa-highlight { min-height: 100px; border-bottom: 1px solid rgba(155,129,110,.18); }

  .section { padding: 82px 6vw; }
  .compact { padding-top: 62px; padding-bottom: 62px; }

  .feature-card.large .feature-image,.feature-card:not(.large) .feature-image { height: 280px; }

  .amenities-grid { grid-template-columns: 1fr; }
  .amenity { min-height: 105px; padding: 20px; }
  .amenities-note { justify-content: flex-start; }

  .gallery-stage { height: 390px; }
  .gallery-arrow { width: 42px; height: 42px; }
  .gallery-arrow-prev { left: 10px; }
  .gallery-arrow-next { right: 10px; }
  .gallery-thumbs { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .gallery-thumb { height: 92px; }
  .gallery-all-button { min-height: 92px; }

  .gallery-lightbox { padding: 10px 0 8px; }
  .lightbox-content { width: 100vw; height: 100vh; padding: 60px 8px 82px; }
  .lightbox-image { max-height: calc(100vh - 170px); max-width: calc(100vw - 16px); }
  .lightbox-close { top: 10px; right: 10px; width: 42px; height: 42px; }
  .lightbox-arrow { width: 42px; height: 42px; top: 48%; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-footer { position: absolute; left: 8px; right: 8px; bottom: 8px; width: auto; min-height: 68px; grid-template-columns: 48px 1fr; gap: 8px; }
  .lightbox-thumbs { justify-content: flex-start; overflow-x: auto; padding-bottom: 3px; }
  .lightbox-thumb { flex: 0 0 74px; width: 74px; height: 50px; }

  .drive-times { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { display: none; }
  footer { grid-template-columns: 1fr; }
  .footer-logo { height: 75px; }
}

/* Fix centrering boekingsbalk - alleen desktop */
@media (min-width: 681px) {
  .quick-book.reveal {
    transform: translateX(-50%) translateY(18px);
  }

  .quick-book.reveal.visible {
    transform: translateX(-50%) translateY(0);
  }
}
.hero-content h1 {
  font-weight: 500;
  -webkit-text-stroke: 0.5px rgba(255,255,255,.95);
}

/* Contactformulier meldingen */
.form-message {
  display: none;
  margin-top: 24px;
  padding: 22px 26px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.6;
}

.form-message strong,
.form-message span {
  display: block;
}

.form-message strong {
  font-family: "Bodoni Moda", serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 4px;
}

.form-message-success {
  background: rgba(94, 147, 161, 0.12);
  color: var(--taupe-dark);
}

.form-message-error {
  background: rgba(239, 175, 152, 0.18);
  color: var(--taupe-dark);
}

/* Toon juiste melding op basis van PHP-resultaat */
body.form-success #form-success {
  display: block;
}

body.form-error #form-error {
  display: block;
}
/* --- Coming Soon versie --- */
.construction-hero{min-height:760px;background:linear-gradient(135deg,#574941 0%,#8f796b 48%,#c8b7a8 100%);overflow:hidden;position:relative}
.construction-hero::after{content:"COMING SOON";position:absolute;right:-2vw;bottom:1vw;font-family:"Bodoni Moda",serif;font-size:11vw;line-height:.8;color:rgba(255,255,255,.055);white-space:nowrap;pointer-events:none}
.construction-pattern{position:absolute;inset:0;background:radial-gradient(circle at 75% 25%,rgba(255,255,255,.14),transparent 23%),radial-gradient(circle at 20% 80%,rgba(94,158,177,.25),transparent 26%)}
.construction-content{bottom:auto;top:50%;transform:translateY(-50%);max-width:720px}
.construction-content.visible{transform:translateY(-50%)}
.construction-badge{position:absolute;right:7vw;top:50%;transform:translateY(-50%) rotate(-4deg);width:250px;height:250px;border:1px solid rgba(255,255,255,.5);border-radius:50%;display:flex;flex-direction:column;align-items:center;justify-content:center;color:#fff;text-align:center;letter-spacing:.12em;background:rgba(255,255,255,.06);backdrop-filter:blur(4px)}
.construction-badge span{font-size:12px}.construction-badge strong{font-family:"Bodoni Moda",serif;font-size:25px;letter-spacing:.04em;margin:6px 0}.construction-badge small{font-size:10px}
.coming-strip{display:flex;justify-content:center;gap:5vw;align-items:center;padding:20px 5vw;background:#fff;text-transform:uppercase;letter-spacing:.12em;font-size:11px;color:var(--taupe-dark)}.coming-strip strong{font-family:"Bodoni Moda",serif;font-size:17px;font-weight:500;text-transform:none;letter-spacing:.03em}
@media(max-width:900px){.construction-badge{width:165px;height:165px;right:5vw;top:auto;bottom:55px;transform:rotate(-4deg)}.construction-badge strong{font-size:18px}.construction-content{top:34%;max-width:88%}.coming-strip{gap:15px;flex-wrap:wrap;text-align:center}.construction-hero{min-height:780px}}
@media(max-width:600px){.construction-badge{width:135px;height:135px;bottom:35px}.construction-badge strong{font-size:15px}.construction-badge small{font-size:8px}.construction-content{top:27%}.construction-hero::after{font-size:18vw}.coming-strip span:last-child{display:none}}

.hero-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0px;
  margin-bottom: 22px;
  color: #fff;
  font-size: 14px;
  letter-spacing: .03em;
  text-decoration: none;
  transition: opacity .2s ease;
}

.instagram-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-instagram strong {
  font-weight: 600;
}

.instagram-arrow {
  margin-left: 4px;
  font-size: 18px;
  transition: transform .2s ease;
}

.hero-instagram:hover {
  opacity: .75;
}

.hero-instagram:hover .instagram-arrow {
  transform: translateX(4px);
}

@media (max-width: 700px) {

  .hero-instagram {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 12px;
    row-gap: 3px;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 28px;
  }

  .instagram-icon {
    grid-row: 1 / 3;
    width: 28px;
    height: 28px;
  }

  .hero-instagram > span:not(.instagram-arrow) {
    grid-column: 2;
    font-size: 15px;
    line-height: 1.4;
  }

  .hero-instagram strong {
    grid-column: 2;
    font-size: 16px;
    line-height: 1.4;
  }

  .instagram-arrow {
    display: none;
  }
}