:root {
  --sand: #faf6ec;
  --paper: #ffffff;
  --ink: #241f1a;
  --muted: #5b5346;
  --line: #ded3c2;
  --teal: #1f95c9;
  --blue: #1f95c9;
  --coral: #f0762d;
  --orange: #f0762d;
  --pink: #cf5f85;
  --sun: #f3c22f;
  --yellow: #f3c22f;
  --green: #8dc63f;
  --lime: #8dc63f;
  --purple: #b79bdb;
  --shadow: 0 18px 50px rgba(36, 32, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: "Karla", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

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

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

button {
  font: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(36px, 5.5vw, 64px);
}

h2 {
  font-size: clamp(26px, 4vw, 42px);
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 3px solid var(--line);
  background: rgba(251, 247, 239, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 27px;
  font-weight: 700;
}

.brand span {
  color: var(--coral);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--paper) !important;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
}

.menu-button svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
}

.hero {
  display: grid;
  min-height: calc(100vh - 74px);
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  grid-template-rows: none;
  background: var(--paper);
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 74px);
  order: 2;
}

.hero-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0));
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  width: min(560px, calc(100% - 64px));
  margin: auto;
  padding: 72px 0;
  order: 1;
}

.hero-copy p {
  max-width: 650px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 21px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: var(--orange);
  color: #fff;
}

.button-primary:hover {
  background: var(--pink);
}

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

.button-info {
  margin-top: 24px;
  border-color: rgba(36, 32, 28, 0.14);
  background: var(--ink);
  color: var(--paper);
}

.button-disabled {
  border-color: var(--line);
  background: #eee6db;
  color: #8c8174;
  cursor: not-allowed;
}

.full {
  width: 100%;
}

.facts {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: -34px;
  position: relative;
  z-index: 10;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.facts article {
  min-height: 106px;
  padding: 22px 16px;
  background: var(--paper);
}

.facts article:nth-child(1) strong { color: var(--blue); }
.facts article:nth-child(2) strong { color: var(--orange); }
.facts article:nth-child(3) strong { color: var(--pink); }
.facts article:nth-child(4) strong { color: var(--purple); }
.facts article:nth-child(5) strong { color: var(--green); }
.facts article:nth-child(6) strong { color: var(--teal); }

.facts strong {
  display: block;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.1;
}

.facts span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 92px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 20px;
}

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

.amenities article,
.distance-card,
.notice,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(36, 32, 28, 0.06);
}

.amenities article {
  padding: 24px;
}

.amenities article:nth-child(1) { border-top: 5px solid var(--yellow); }
.amenities article:nth-child(2) { border-top: 5px solid var(--lime); }
.amenities article:nth-child(3) { border-top: 5px solid var(--blue); }
.amenities article:nth-child(4) { border-top: 5px solid var(--pink); }

.amenities p {
  margin-top: 10px;
  color: var(--muted);
}

.gallery-section {
  background: var(--sand);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 650px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 19px;
}

.gallery-stage {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #ddd;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.gallery-arrow:hover {
  background: var(--paper);
}

.prev {
  left: 16px;
}

.next {
  right: 16px;
}

.gallery-label {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(36, 32, 28, 0.82);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.thumb {
  overflow: hidden;
  padding: 0;
  border: 3px solid transparent;
  border-radius: 12px;
  background: transparent;
  aspect-ratio: 1.45;
  cursor: pointer;
}

.thumb.active {
  border-color: var(--coral);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
}

.curacao-section {
  background: var(--paper);
}

.travel-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.travel-mini-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(36, 32, 28, 0.06);
}

.travel-mini-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.travel-mini-card div {
  padding: 14px;
}

.travel-mini-card strong {
  display: block;
}

.travel-mini-card span {
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.distance-card {
  padding: 26px;
}

.distance-card ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.distance-card li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.distance-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.distance-card span {
  color: var(--teal);
  font-weight: 800;
  white-space: nowrap;
}

.details-section {
  background: var(--ink);
  color: var(--paper);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.notice {
  padding: 30px;
  border: 3px solid var(--line);
  border-radius: 14px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.notice.quiet {
  background: var(--purple);
  color: #fff;
}

.notice p {
  margin-top: 16px;
  color: var(--muted);
}

.notice.quiet p, .notice.quiet h2, .notice.quiet .eyebrow {
  color: #fff;
}

.contact-section {
  padding: 92px 0;
  background: var(--pink);
  color: #fff;
}

.contact-section .eyebrow {
  color: #dff2f4;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 54px;
  align-items: center;
}

.contact-grid p {
  max-width: 580px;
  margin-top: 16px;
  color: #e7fbfd;
  font-size: 20px;
}

.contact-panel {
  padding: 24px;
}

.contact-panel .button + .button {
  margin-top: 10px;
}

.contact-email {
  margin-top: 18px !important;
  color: var(--muted) !important;
  font-size: 16px !important;
  font-weight: 800;
  text-align: center;
}

.footer {
  padding: 28px 0;
  background: #171411;
  color: #fff;
}

.page-hero {
  padding: 72px 0 44px;
  background: var(--sand);
}

.page-hero p {
  max-width: 760px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 20px;
}

.page-nav-link {
  color: var(--teal);
}

.color-strip {
  height: 8px;
  background: var(--orange);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.info-card,
.place-card,
.policy-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(36, 32, 28, 0.06);
}

.info-card {
  padding: 22px;
}

.info-card:nth-child(6n + 1) { border-top: 5px solid var(--yellow); }
.info-card:nth-child(6n + 2) { border-top: 5px solid var(--lime); }
.info-card:nth-child(6n + 3) { border-top: 5px solid var(--blue); }
.info-card:nth-child(6n + 4) { border-top: 5px solid var(--pink); }
.info-card:nth-child(6n + 5) { border-top: 5px solid var(--orange); }
.info-card:nth-child(6n) { border-top: 5px solid var(--purple); }

.info-card p,
.place-card p,
.policy-card p {
  margin-top: 9px;
  color: var(--muted);
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.section-block + .section-block {
  margin-top: 44px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.policy-card {
  padding: 28px;
  border: 3px solid var(--line);
}

.policy-card.utility {
  background: var(--yellow);
  color: var(--ink);
}

.policy-card.rules {
  background: var(--purple);
  color: #fff;
}

.policy-card.rules p, .policy-card.rules h2, .policy-card.rules .eyebrow {
  color: #fff;
}

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

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #ddd;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 24px rgba(36, 32, 28, 0.08);
}

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(36, 32, 28, 0.82);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.place-card {
  overflow: hidden;
}

.place-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.place-card-body {
  padding: 22px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tag {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tag.alt { background: var(--lime); }
.tag.pink { background: var(--pink); color: #fff; }
.tag.blue { background: var(--blue); color: #fff; }

.meta-line {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--teal);
  font-weight: 800;
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.contact-page-card {
  max-width: 620px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(31, 149, 201, 0.12), rgba(207, 95, 133, 0.10)), var(--paper);
  box-shadow: var(--shadow);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #d6cdbf;
}

.footer strong {
  color: #fff;
}

@media (max-width: 860px) {
  .wrap {
    width: min(100% - 32px, 1120px);
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
    border-radius: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 360px auto;
  }

  .hero-media {
    min-height: 0;
    order: 1;
  }

  .hero-copy {
    width: min(100% - 32px, 1120px);
    padding: 42px 0 58px;
    order: 2;
  }

  .hero-copy p,
  .lead,
  .section-heading p,
  .contact-grid p {
    font-size: 18px;
  }

  .facts {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -20px;
  }

  .split,
  .location-grid,
  .details-grid,
  .contact-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

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

  .places-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .amenities {
    grid-template-columns: 1fr;
  }

  .thumb-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-panel {
    max-width: 440px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 31px;
  }

  .brand {
    font-size: 24px;
  }

  .hero {
    grid-template-rows: 290px auto;
  }

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

  .facts article {
    min-height: 96px;
  }

  .travel-mini-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .gallery-stage {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
  }

  .gallery-label {
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 14px;
  }

  .distance-card li,
  .footer-inner {
    flex-direction: column;
    gap: 4px;
  }
}
