/* ==========================================================================
   Bucket List Escapades — theme tokens
   ========================================================================== */
:root {
  --dark: #15130e;
  --dark-2: #1c1912;
  --dark-3: #211d16;
  --gold: #c9a563;
  --gold-deep: #a9843f;
  --mustard: #c39a3c;
  --mustard-deep: #b48b30;
  --cream: #f3efe3;
  --cream-dim: #d9d2bf;
  --muted: #a89d84;
  --line: rgba(243, 239, 227, 0.14);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  --container: 1240px;
}

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

body {
  margin: 0;
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
.editable-image-passthrough { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  color: var(--cream);
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 22px;
  font-family: var(--font-body);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  color: var(--dark);
  border: none;
  border-radius: 999px;
  padding: 15px 30px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  color: var(--dark);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
}

.section-tag {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 26px 0;
}

.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.nav__inner .brand { justify-self: start; }
.nav__inner .nav__links { justify-self: center; }
.nav__inner .nav__toggle { justify-self: end; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff9ec, #e8d9b3 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dark);
  font-size: 15px;
  text-align: center;
  line-height: 1.1;
}
.brand__logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.footer__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
  background: rgba(20, 18, 13, 0.35);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  padding: 12px 10px 12px 28px;
  backdrop-filter: blur(6px);
}

.nav__links a {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
}
.nav__links a.is-active {
  opacity: 1;
  background: rgba(255,255,255,0.12);
  padding: 10px 18px;
  border-radius: 999px;
}
.nav__links a:not(.is-active):hover { opacity: 1; }

.nav__cta {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--dark);
  border-radius: 999px;
  padding: 12px 22px;
}

.nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__item-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: inherit;
  color: var(--cream);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  padding: 0;
}
.nav__item-toggle:hover,
.nav__item-toggle.is-active { opacity: 1; }
.nav__item-toggle svg {
  width: 10px;
  height: 10px;
  transition: transform .2s ease;
}
.nav__item.is-open .nav__item-toggle svg { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 210px;
  background: rgba(15, 13, 9, 0.98);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 60;
}
.nav__item.is-open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  text-transform: none;
  border-radius: 8px;
  opacity: 0.85;
}
.nav__dropdown a:hover { opacity: 1; background: rgba(255,255,255,0.08); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(20, 18, 13, 0.35);
  backdrop-filter: blur(6px);
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--cream);
  transition: transform .25s ease, opacity .25s ease;
}
.nav--open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav--open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav--open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

body.no-scroll { overflow: hidden; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,8,0.55) 0%, rgba(10,10,8,0.15) 35%, rgba(8,8,6,0.65) 100%);
}
.hero__content { position: relative; z-index: 2; }

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
}

.hero__eyebrow { margin-bottom: 22px; }

.hero h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.08;
  margin-bottom: 30px;
}

.hero__icon {
  position: absolute;
  z-index: 2;
  opacity: 0.85;
  color: var(--cream);
}
.hero__icon svg { width: 30px; height: 30px; }
.icon--plane   { top: 16%; left: 9%; }
.icon--badge   { top: 12%; right: 9%; }
.icon--map     { bottom: 20%; left: 6%; }
.icon--weather { bottom: 21%; right: 8%; }
.icon--cloud   { bottom: 6%; left: 50%; transform: translateX(-50%); }
.icon--frame   { bottom: 6%; right: 4%; }

.hero__caption {
  position: absolute;
  left: 24px;
  bottom: 18px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(243,239,227,0.7);
}

/* ==========================================================================
   About / "One Experience at a Time"
   ========================================================================== */
.about {
  background: var(--dark-2);
  padding: 110px 0 100px;
  position: relative;
}

.about__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 26px;
}

.about p {
  color: var(--cream-dim);
  font-size: 15px;
  margin: 0 0 18px;
}
.about strong { color: var(--cream); font-weight: 500; }

.about .btn { margin-top: 20px; }

.about__ornament {
  position: absolute;
  z-index: 5;
  right: 7%;
  bottom: -46px;
  width: 132px;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.55));
}
.about__ornament img { display: block; width: 100%; height: auto; }

/* ==========================================================================
   Gallery grid
   ========================================================================== */
.gallery {
  background: var(--dark-3);
  padding: 90px 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 22px;
}

.gallery__card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 240px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.gallery__card--tall { grid-row: 1 / span 2; min-height: 100%; }
.gallery__card--wide { grid-column: 2 / span 2; }

.gallery__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,9,6,0) 40%, rgba(8,7,5,0.88) 100%);
}

.gallery__card-body {
  position: relative;
  z-index: 2;
  padding: 26px;
}

.gallery__card h3 {
  font-size: 21px;
  margin-bottom: 8px;
}
.gallery__card p {
  font-size: 13px;
  color: var(--cream-dim);
  margin: 0;
  max-width: 260px;
}

.gallery__card--light {
  background-color: var(--dark-2);
}
.gallery__card--light::after { content: none; }
.gallery__card--light .gallery__card-body { padding-top: 40px; }

/* ==========================================================================
   Journey section
   ========================================================================== */
.journey {
  background: var(--dark-2);
  padding: 100px 0;
}

.journey__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.journey h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  margin-bottom: 22px;
}

.journey__intro {
  color: var(--cream-dim);
  font-size: 15px;
  margin-bottom: 34px;
}

.journey__points { display: flex; flex-direction: column; gap: 26px; }

.journey__point { display: flex; gap: 18px; align-items: flex-start; }

.journey__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dark);
}
.journey__icon svg { width: 20px; height: 20px; }

.journey__point h4 { font-size: 17px; margin-bottom: 6px; font-family: var(--font-body); font-weight: 500; }
.journey__point p { margin: 0; color: var(--cream-dim); font-size: 13.5px; }

.journey__media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.journey__media img { width: 100%; height: 460px; object-fit: cover; }

.journey__thumbs {
  position: absolute;
  bottom: 22px;
  left: 22px;
  display: flex;
  gap: 14px;
}
.journey__thumb {
  position: relative;
  width: 130px;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.5);
}
.journey__thumb img { width: 100%; height: 100%; object-fit: cover; }
.journey__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey__play span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}
.journey__play svg { width: 13px; height: 13px; margin-left: 2px; }

/* ==========================================================================
   Legacy section
   ========================================================================== */
.legacy { background: var(--dark); padding: 100px 0; }

.legacy__head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 46px;
  align-items: start;
}
.legacy__head h2 { font-size: clamp(24px, 2.8vw, 32px); }
.legacy__head p { color: var(--cream-dim); font-size: 15px; margin: 0; }
.legacy__head strong { color: var(--cream); font-weight: 500; }

.legacy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.legacy__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.legacy__col--left img { height: 100%; min-height: 520px; }

.legacy__col--right { display: grid; grid-template-rows: auto auto; gap: 22px; }
.legacy__col--right img { height: 240px; }

.legacy__row2 { display: grid; grid-template-columns: 1fr 1.15fr; gap: 22px; }
.legacy__row2 img { height: 240px; }

.legacy__card {
  background: var(--dark-3);
  border-radius: 6px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.legacy__card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.legacy__card-icon svg { width: 18px; height: 18px; }
.legacy__card h3 { font-size: 19px; }
.legacy__card p { margin: 0; font-size: 13px; color: var(--cream-dim); }

/* ==========================================================================
   Page hero (interior pages — About Us, etc.)
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 56vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,9,7,0.5) 0%, rgba(9,8,6,0.15) 45%, rgba(8,7,5,0.8) 100%);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(30px, 5vw, 58px);
}

/* ==========================================================================
   About page — content section
   ========================================================================== */
.about-page {
  background: var(--dark-2);
  padding: 100px 0;
}
.about-page__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.about-page h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 30px;
}
.about-page p {
  color: var(--cream-dim);
  font-size: 15px;
  margin: 0 0 20px;
}
.about-page strong { color: var(--cream); font-weight: 500; }

/* ==========================================================================
   Properties section
   ========================================================================== */
.properties {
  background: linear-gradient(180deg, var(--mustard), var(--mustard-deep));
  padding: 100px 0;
  color: var(--dark);
}
.properties__head {
  max-width: 620px;
  margin: 0 auto 46px;
  text-align: center;
}
.properties__head h2 {
  color: #fbf6e9;
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 18px;
}
.properties__head p {
  margin: 0;
  font-size: 14.5px;
  color: #3a2e14;
}
.properties__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.properties__card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 300px;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.properties__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,9,6,0) 45%, rgba(8,7,5,0.85) 100%);
  transition: opacity .25s ease;
}
.properties__card:hover::after { opacity: 0.75; }
.properties__card-title {
  position: relative;
  z-index: 2;
  padding: 26px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
}

/* ==========================================================================
   Stats section
   ========================================================================== */
.stats {
  background: #fbfaf6;
  padding: 100px 0;
  text-align: center;
}
.stats__heading {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.25;
  color: var(--mustard-deep);
  margin-bottom: 20px;
}
.stats__intro {
  max-width: 560px;
  margin: 0 auto;
  font-size: 14px;
  color: #7d735d;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 50px auto 0;
}
.stats__card {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  border: 1px solid rgba(20, 17, 10, 0.12);
  border-radius: 10px;
  padding: 26px 28px;
  background: #fff;
}
.stats__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #241c0d;
}
.stats__icon svg { width: 22px; height: 22px; }
.stats__value {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: #362b14;
  line-height: 1.1;
}
.stats__label {
  display: block;
  font-size: 12.5px;
  color: #8a8069;
  margin-top: 4px;
}

/* ==========================================================================
   Booking page
   ========================================================================== */
.booking-intro {
  background: var(--dark);
  padding: 90px 0 50px;
}
.booking-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.booking-intro h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  color: var(--gold);
}
.booking-intro p {
  margin: 0;
  color: var(--cream-dim);
  font-size: 15px;
}
.booking-intro strong { color: var(--cream); font-weight: 500; }

.booking-form-section {
  background: var(--dark);
  padding: 0 0 110px;
}

.booking-box {
  background: linear-gradient(180deg, var(--mustard), var(--mustard-deep));
  border-radius: 14px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
}

.booking-box__steps {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-right: 40px;
  border-right: 1px solid rgba(20,17,10,0.2);
}
.booking-step__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(20,17,10,0.65);
  margin-bottom: 8px;
}
.booking-step p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  color: #241c0d;
  line-height: 1.35;
}

.booking-box__form { min-width: 0; }

.booking-alert {
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13.5px;
  margin-bottom: 18px;
}
.booking-alert--success { background: rgba(24, 60, 32, 0.15); color: #163a1e; border: 1px solid rgba(24,60,32,0.3); }
.booking-alert--error { background: rgba(120, 20, 20, 0.12); color: #5c1414; border: 1px solid rgba(120,20,20,0.3); }

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.booking-row--single { grid-template-columns: 1fr; }

.booking-field { position: relative; }
.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(20,17,10,0.18);
  border-radius: 8px;
  padding: 15px 16px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #241c0d;
}
.booking-field input::placeholder,
.booking-field textarea::placeholder { color: rgba(36,28,13,0.55); }
.booking-field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23241c0d' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; background-size: 14px; }
.booking-field textarea { resize: vertical; min-height: 110px; }
.booking-field__error { display: block; margin-top: 6px; font-size: 12px; color: #5c1414; }

.booking-submit {
  width: 100%;
  background: var(--cream);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform .2s ease;
}
.booking-submit:hover { transform: translateY(-1px); }

/* ==========================================================================
   Property detail page (Java Rain Resorts, Shambhala Heritage, ...)
   ========================================================================== */
.property-intro {
  background: linear-gradient(180deg, #17251a, #101a13);
  padding: 100px 0;
  text-align: center;
}
.property-intro__inner { max-width: 780px; margin: 0 auto; }
.property-intro__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--cream);
}
.property-intro__logo svg { width: 34px; height: 34px; opacity: 0.9; }
.property-intro__logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.property-intro__logo-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.property-intro h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  margin-bottom: 26px;
}
.property-intro p {
  color: var(--cream-dim);
  font-size: 14.5px;
  margin: 0 0 18px;
}
.property-intro strong { color: var(--cream); font-weight: 500; }

.property-villas {
  position: relative;
  display: flex;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.property-villas__item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.property-villas__item:last-child { border-right: none; }
.property-villas__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,6,0.35) 0%, rgba(8,8,6,0.05) 40%, rgba(8,8,6,0.05) 100%);
  z-index: 0;
}
.property-villas__label {
  position: relative;
  z-index: 1;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 6px;
}
.property-villas__name {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--cream);
}

.property-tour {
  background: #fbfaf6;
  padding: 90px 0 0;
}
.property-tour__inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 60px;
}
.property-tour h2 {
  font-size: clamp(26px, 3vw, 36px);
  color: var(--mustard-deep);
  margin-bottom: 20px;
}
.property-tour p { margin: 0; font-size: 14.5px; color: #6b6252; }
.property-tour strong { color: #362b14; font-weight: 500; }
.property-tour__embed {
  min-height: 260px;
  background: #16140f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Experiences page — story section
   ========================================================================== */
.story {
  background: linear-gradient(180deg, #c7b28c, #a68f66);
  padding: 100px 0;
  color: var(--cream);
}
.story__head {
  max-width: 640px;
  margin: 0 auto 50px;
  text-align: center;
}
.story__head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 22px;
}
.story__head p { margin: 0; font-size: 14.5px; color: rgba(243,239,227,0.9); }
.story strong { color: #fff; font-weight: 500; }

.story__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.story__image { border-radius: 6px; overflow: hidden; }
.story__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story__image--wide img { height: 340px; }
.story__image--narrow img { height: 340px; }

/* ==========================================================================
   Experiences page — curated experiences section
   ========================================================================== */
.curated {
  background: var(--dark);
  padding: 100px 0;
}
.curated__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.curated h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  color: var(--gold);
  margin-bottom: 20px;
}
.curated__intro {
  color: var(--cream-dim);
  font-size: 14.5px;
  margin: 0 0 30px;
  max-width: 480px;
}
.curated strong { color: var(--cream); font-weight: 500; }

.curated__list { display: flex; flex-direction: column; gap: 16px; }
.curated__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--cream);
}
.curated__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.curated__icon svg { width: 16px; height: 16px; }

.curated__media { position: relative; border-radius: 8px; overflow: hidden; }
.curated__media img { width: 100%; height: 520px; object-fit: cover; }
.curated__thumbs {
  position: absolute;
  bottom: 22px;
  right: 22px;
  display: flex;
  gap: 14px;
}
.curated__thumb {
  position: relative;
  width: 120px;
  height: 86px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.5);
}
.curated__thumb img { width: 100%; height: 100%; object-fit: cover; }
.curated__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.curated__play span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}
.curated__play svg { width: 12px; height: 12px; margin-left: 2px; }

/* ==========================================================================
   FAQ section
   ========================================================================== */
.faq {
  background: linear-gradient(180deg, var(--mustard), var(--mustard-deep));
  padding: 100px 0 90px;
  color: var(--dark);
}
.faq h2 {
  color: #fbf6e9;
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 46px;
  max-width: 640px;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  margin-bottom: 56px;
}

.faq__item {
  border-bottom: 1px solid rgba(20,17,10,0.25);
}
.faq__item:last-child { border-bottom: none; }

.faq__question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  color: #241c0d;
  font-size: 15px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 400;
}
.faq__question svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq__item.is-open .faq__question svg { transform: rotate(180deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq__answer p {
  margin: 0 0 18px;
  font-size: 13.5px;
  color: #362b14;
  max-width: 560px;
}
.faq__item.is-open .faq__answer { max-height: 200px; }

.faq__image { border-radius: 6px; overflow: hidden; }
.faq__image img { width: 100%; height: 420px; object-fit: cover; }

/* ==========================================================================
   CTA section
   ========================================================================== */
.cta {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,9,7,0.72), rgba(10,9,7,0.72));
}
.cta__inner { position: relative; z-index: 2; max-width: 620px; padding: 0 24px; }
.cta h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 18px;
}
.cta p {
  color: var(--cream-dim);
  font-size: 14.5px;
  margin: 0 0 30px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--dark-2); padding: 80px 0 24px; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}

.footer h5 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 18px;
  color: var(--cream);
}

.footer p { color: var(--cream-dim); font-size: 13.5px; margin: 0 0 20px; }
.footer strong { color: var(--cream); font-weight: 500; }

.footer__links li { margin-bottom: 10px; }
.footer__links a { color: var(--cream-dim); font-size: 13.5px; }
.footer__links a:hover { color: var(--gold); }

.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__social svg { width: 15px; height: 15px; }

.footer__form {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.footer__form input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
}
.footer__form input::placeholder { color: var(--muted); }
.footer__form button {
  background: var(--cream);
  color: var(--dark);
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer__bottom {
  padding-top: 22px;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* ---- Large tablet / small laptop (≤1080px): tighten spacing, keep layout ---- */
@media (max-width: 1080px) {
  .container { padding: 0 26px; }

  .about { padding: 90px 0 80px; }
  .gallery, .journey, .legacy { padding: 80px 0; }
  .faq { padding: 80px 0 70px; }

  .journey__grid { gap: 44px; }
  .legacy__head { gap: 40px; }
  .legacy__col--left img { min-height: 440px; }

  .page-hero { min-height: 50vh; }
  .about-page, .properties, .stats { padding: 80px 0; }
  .about-page__inner { max-width: 700px; }
  .stats__grid { gap: 18px; }

  .story, .curated, .property-intro { padding: 80px 0; }
  .curated__grid { gap: 44px; }
  .curated__media img { height: 440px; }
  .property-villas { min-height: 420px; }

  .booking-intro { padding: 80px 0 44px; }
  .booking-intro__grid { gap: 44px; }
  .booking-form-section { padding-bottom: 90px; }
  .booking-box { padding: 44px; gap: 40px; }
}

/* ---- Nav switches to hamburger earlier than the general tablet breakpoint,
        so the 5-item desktop pill never gets cramped on mid-size tablets /
        large phones in landscape ---- */
@media (max-width: 1100px) {
  .nav { padding: 20px 0; }

  /* Explicit flex + space-between guarantees brand-left / toggle-right —
     no dependency on the desktop grid collapsing the (now off-canvas) middle column. */
  .nav__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    background: rgba(12, 11, 8, 0.98);
    border: none;
    border-radius: 0;
    padding: 100px 40px 60px;
    backdrop-filter: none;
    transform: translateX(100%);
    transition: transform .35s ease;
  }
  .nav--open .nav__links { transform: translateX(0); }

  .nav__links a {
    font-size: 22px;
    opacity: 1;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav__links a.is-active { background: none; padding: 14px 0; }
  .nav__links a.nav__cta {
    margin-top: 18px;
    border-bottom: none;
    display: inline-flex;
    width: auto;
    padding: 14px 28px;
  }

  /* Dropdown items become an inline expandable list instead of a floating panel */
  .nav__item {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
  }
  .nav__item-toggle {
    width: 100%;
    justify-content: space-between;
    font-size: 22px;
    padding: 14px 0;
  }
  .nav__item-toggle svg { width: 14px; height: 14px; }
  .nav__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: none;
    border: none;
    padding: 0;
    min-width: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
  }
  .nav__item.is-open .nav__dropdown { max-height: 200px; padding: 0 0 14px 14px; }
  .nav__dropdown a { font-size: 16px; padding: 8px 0; }
}

/* ---- Tablet (≤980px): grids collapse to 2/1 col ---- */
@media (max-width: 980px) {
  .hero__icon.icon--badge,
  .hero__icon.icon--weather { display: none; }

  .about__ornament { width: 64px; bottom: -22px; opacity: 0.6; }

  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__card--tall { grid-row: auto; min-height: 320px; }
  .gallery__card--wide { grid-column: 1 / span 2; min-height: 260px; }

  .journey__grid { grid-template-columns: 1fr; gap: 50px; }
  .journey__media img { height: 380px; }

  .legacy__head { grid-template-columns: 1fr; gap: 20px; }
  .legacy__grid { grid-template-columns: 1fr; }
  .legacy__col--left img { min-height: 320px; }
  .legacy__row2 { grid-template-columns: 1fr 1fr; }

  .faq__grid { grid-template-columns: 1fr; gap: 0; }
  .faq__image img { height: 320px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; }

  .page-hero { min-height: 42vh; padding-bottom: 50px; }
  .about-page__inner { max-width: 90%; }
  .properties__grid { grid-template-columns: 1fr; gap: 18px; }
  .properties__card { min-height: 260px; }
  .stats__grid { grid-template-columns: 1fr; max-width: 480px; }

  .story__grid { grid-template-columns: 1fr; }
  .story__image--wide img, .story__image--narrow img { height: 300px; }

  .curated__grid { grid-template-columns: 1fr; gap: 40px; }
  .curated__media img { height: 400px; }

  .property-villas { flex-wrap: wrap; min-height: 0; }
  .property-villas__item {
    flex: 1 1 50%;
    min-height: 220px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.18);
  }

  .booking-intro__grid { grid-template-columns: 1fr; gap: 20px; }
  .booking-box { grid-template-columns: 1fr; }
  .booking-box__steps {
    border-right: none;
    border-bottom: 1px solid rgba(20,17,10,0.2);
    padding-right: 0;
    padding-bottom: 30px;
  }
}

/* ---- Mobile (≤640px): single column throughout ---- */
@media (max-width: 640px) {
  .container { padding: 0 20px; }

  .brand__mark, .brand__logo { width: 46px; height: 46px; font-size: 13px; }

  .hero { min-height: 92vh; }
  .hero__icon { display: none; }
  .hero__caption { display: none; }
  .hero h1 { margin-bottom: 24px; }
  .hero__eyebrow { margin-bottom: 18px; }

  .about { padding: 70px 0 64px; }
  .about__ornament { display: none; }
  .about p { font-size: 14px; }

  .gallery { padding: 64px 0; }
  .gallery__grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery__card--tall { min-height: 260px; }
  .gallery__card--wide { grid-column: 1; min-height: 220px; }

  .journey { padding: 64px 0; }
  .journey__media img { height: 300px; }
  .journey__thumbs { position: static; margin-top: 14px; }
  .journey__thumb { width: 100px; height: 72px; }

  .legacy { padding: 64px 0; }
  .legacy__row2 { grid-template-columns: 1fr; }
  .legacy__row2 img { height: 220px; }
  .legacy__col--right img { height: 220px; }
  .legacy__card { padding: 22px; }

  .faq { padding: 64px 0 56px; }
  .faq__question { font-size: 14px; padding: 16px 0; }
  .faq__question span { padding-right: 10px; }
  .faq__image img { height: 220px; }

  .cta { min-height: 380px; }
  .cta p { font-size: 13.5px; }

  .footer { padding: 60px 0 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__form { flex-direction: column; }
  .footer__form button { width: 100%; }

  .page-hero { min-height: 38vh; padding-bottom: 36px; }

  .about-page { padding: 64px 0; }
  .about-page__inner { max-width: 100%; }
  .about-page p { font-size: 13.5px; }

  .properties { padding: 64px 0; }
  .properties__head p { font-size: 13.5px; }
  .properties__card { min-height: 220px; }
  .properties__card-title { font-size: 19px; padding: 20px; }

  .stats { padding: 64px 0; }
  .stats__intro { font-size: 13px; }
  .stats__grid { margin-top: 34px; gap: 14px; }
  .stats__card { padding: 20px; gap: 14px; }
  .stats__icon { width: 46px; height: 46px; }
  .stats__value { font-size: 24px; }

  .story { padding: 64px 0; }
  .story__head p { font-size: 13.5px; }
  .story__image--wide img, .story__image--narrow img { height: 220px; }

  .curated { padding: 64px 0; }
  .curated__intro { font-size: 13.5px; }
  .curated__list li { font-size: 14px; }
  .curated__media img { height: 300px; }
  .curated__thumbs { position: static; margin-top: 14px; justify-content: flex-end; }
  .curated__thumb { width: 96px; height: 70px; }

  .property-intro { padding: 64px 0; }
  .property-intro p { font-size: 13.5px; }
  .property-villas__item { flex: 1 1 100%; min-height: 160px; padding-top: 26px; }
  .property-tour { padding-top: 64px; }
  .property-tour__inner { padding-bottom: 40px; }
  .property-tour__embed { min-height: 200px; }

  .booking-intro { padding: 64px 0 30px; }
  .booking-intro p { font-size: 13.5px; }
  .booking-form-section { padding-bottom: 64px; }
  .booking-box { padding: 26px; border-radius: 10px; }
  .booking-row { grid-template-columns: 1fr; gap: 12px; }
}

/* ---- Small phones (≤400px) ---- */
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 32px; }
  .btn { padding: 13px 24px; font-size: 12px; width: 100%; justify-content: center; }
  .journey__thumbs { flex-direction: column; }
  .journey__thumb { width: 100%; height: 90px; }

  .page-hero h1 { font-size: 28px; }
  .stats__card { flex-direction: column; text-align: center; }

  .curated__thumbs { flex-direction: column; align-items: flex-end; }
  .curated__thumb { width: 100%; height: 90px; }
  .property-villas__name { font-size: 20px; }
}
