:root {
  --color-dark: #141711;
  --color-deep: #1d2a20;
  --color-ivory: #f0e6d4;
  --color-paper: #fffaf0;
  --color-gold: #b98b45;
  --color-muted: #766a5a;
  --color-line: rgba(52, 38, 20, 0.16);
  --container: min(1320px, calc(100% - 64px));
  --wide: min(1540px, calc(100% - 32px));
  --radius: 32px;
  --shadow: 0 28px 90px rgba(20, 23, 17, 0.16);
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-ivory);
  color: var(--color-dark);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 0%, rgba(185, 139, 69, 0.16), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(29, 42, 32, 0.13), transparent 34%);
}
a { color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
figure { margin: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  background: rgba(20, 23, 17, 0.18);
  border-bottom: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled {
  background: rgba(240, 230, 212, 0.94);
  border-color: var(--color-line);
  box-shadow: 0 16px 44px rgba(20, 23, 17, 0.1);
}
.nav-container {
  width: min(1500px, calc(100% - 56px));
  height: 88px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  color: white;
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 0.9;
  letter-spacing: -0.055em;
  white-space: nowrap;
}
.brand span { color: var(--color-gold); font-style: italic; }
.site-header.is-scrolled .brand,
.site-header.is-scrolled .site-nav a { color: var(--color-dark); }
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}
.site-nav a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 900;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); }
.nav-cta,
.button {
  min-height: 54px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.46);
  color: white;
  background: rgba(255,255,255,0.12);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.site-header.is-scrolled .nav-cta { background: var(--color-deep); border-color: var(--color-deep); }
.button:hover,
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(20, 23, 17, 0.18); }
.button-gold { border: 0; background: linear-gradient(135deg, var(--color-gold), #765228); color: white; }
.button-dark { border: 0; background: var(--color-dark); color: white; }
.button-ghost { background: rgba(255,255,255,0.15); }
.menu-toggle { display: none; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--color-dark);
  color: white;
}
.page-hero { min-height: 74svh; }
.abstract-hero {
  background:
    radial-gradient(circle at 20% 26%, rgba(185, 139, 69, 0.45), transparent 30%),
    radial-gradient(circle at 78% 58%, rgba(255, 250, 240, 0.14), transparent 34%),
    linear-gradient(135deg, #11160f, #263a2c);
}
.hero-media { position: absolute; inset: 0; }
.hero-media::after,
.hero-overlay {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,10,7,0.82), rgba(8,10,7,0.25) 58%, rgba(8,10,7,0.05)),
    linear-gradient(180deg, rgba(8,10,7,0.04), rgba(8,10,7,0.58));
}
.hero-media img { animation: heroZoom 22s ease-in-out infinite alternate; }
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 72px));
  margin: 0 auto;
  padding: 150px 0 84px;
}
.hero h1 {
  margin: 10px 0 24px;
  max-width: 1120px;
  font-family: var(--font-serif);
  font-size: clamp(72px, 12vw, 190px);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.07em;
  text-wrap: balance;
}
.hero-inner > p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255,255,255,0.84);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.23em;
  font-size: 12px;
  font-weight: 950;
}

.quick-facts {
  position: relative;
  z-index: 4;
  width: var(--container);
  margin: -54px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 28px;
  background: rgba(255,250,240,0.94);
  box-shadow: var(--shadow);
}
.quick-facts div { padding: 28px; border-right: 1px solid var(--color-line); }
.quick-facts div:last-child { border-right: 0; }
.quick-facts span { display: block; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.12em; font-size: 13px; font-weight: 900; }
.quick-facts strong { display: block; margin-top: 8px; color: var(--color-deep); font-family: var(--font-serif); font-size: 29px; font-weight: 500; }

.booking-bar {
  width: var(--container);
  margin: 34px auto 0;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 14px;
  align-items: end;
  border-radius: 24px;
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  box-shadow: 0 16px 48px rgba(20,23,17,0.08);
}
.booking-bar label,
.enquiry-form label { display: grid; gap: 8px; font-weight: 900; color: var(--color-dark); }
.booking-bar input,
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  background: #fffdf8;
  padding: 15px 16px;
  font: inherit;
  color: var(--color-dark);
}
.enquiry-form textarea { min-height: 190px; resize: vertical; }

h2 {
  margin: 0 0 22px;
  color: var(--color-deep);
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
h3 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.02;
}
p { color: var(--color-muted); }
.lead { font-size: clamp(20px, 2vw, 25px); line-height: 1.65; }

.editorial-intro {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: 120px 0 86px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: end;
}
.feature-bleed {
  width: var(--wide);
  margin: 40px auto 112px;
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  overflow: hidden;
  border-radius: 36px;
  background: var(--color-deep);
  color: white;
  box-shadow: var(--shadow);
}
.feature-bleed figure { min-height: 760px; }
.feature-card { align-self: end; padding: 70px; }
.feature-card h2,
.feature-card p { color: white; }
.section-heading {
  width: var(--container);
  margin: 0 auto 34px;
}
.section-heading.compact { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.lifestyle-grid {
  width: var(--container);
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.lifestyle-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 55px rgba(20,23,17,0.08);
}
.lifestyle-card figure { height: 430px; }
.lifestyle-card div { padding: 28px; }
.lifestyle-card span,
.service-row span,
.steps span { color: var(--color-gold); font-family: var(--font-serif); font-size: 54px; line-height: 1; }
.gallery-preview,
.gallery-page,
.service-panels,
.map-block { width: min(1460px, calc(100% - 56px)); margin: 0 auto 130px; }
.preview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.95fr;
  gap: 22px;
}
.preview-grid figure { min-height: 520px; overflow: hidden; border-radius: 28px; box-shadow: 0 22px 64px rgba(20,23,17,0.12); }
.preview-grid figure:first-child { min-height: 650px; }
.text-link { text-decoration: none; border-bottom: 1px solid var(--color-gold); padding-bottom: 6px; text-transform: uppercase; letter-spacing: 0.12em; font-size: 13px; font-weight: 950; }
.preview-panels { width: var(--container); margin: 0 auto 120px; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.preview-panel { min-height: 280px; padding: 32px; display: grid; align-content: end; border-radius: 28px; background: var(--color-deep); color: white; text-decoration: none; box-shadow: var(--shadow); }
.preview-panel span { color: var(--color-gold); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 950; }
.preview-panel h3 { color: white; }
.property-chapter,
.destination-feature {
  width: var(--container);
  margin: 110px auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
}
.property-chapter.reverse figure { order: 2; }
.property-chapter figure,
.destination-feature figure { min-height: 660px; overflow: hidden; border-radius: 32px; box-shadow: var(--shadow); }
.room-grid { width: var(--container); margin: 0 auto 110px; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.room-grid article { overflow: hidden; border-radius: 28px; background: var(--color-paper); border: 1px solid var(--color-line); }
.room-grid figure { height: 480px; }
.room-grid h3,
.room-grid p { padding-left: 28px; padding-right: 28px; }
.room-grid h3 { padding-top: 26px; }
.room-grid p { padding-bottom: 26px; }
.included-details { width: var(--container); margin: 0 auto 120px; display: grid; grid-template-columns: 0.9fr 0.9fr 1.1fr; gap: 28px; align-items: stretch; }
.included-details > div,
.included-details ul { border-radius: 28px; padding: 36px; background: var(--color-deep); color: white; }
.included-details h2,
.included-details p { color: white; }
.included-details li { margin: 0 0 12px; }
.included-details figure { min-height: 470px; overflow: hidden; border-radius: 28px; }
.gallery-filter { display: flex; gap: 12px; flex-wrap: wrap; margin: 100px 0 34px; }
.gallery-filter span { padding: 11px 16px; border-radius: 999px; background: var(--color-paper); border: 1px solid var(--color-line); font-weight: 900; }
.gallery-masonry { display: grid; grid-template-columns: repeat(12,1fr); gap: 22px; }
.gallery-tile { position: relative; grid-column: span 4; min-height: 440px; overflow: hidden; border-radius: 28px; box-shadow: 0 22px 64px rgba(20,23,17,0.12); cursor: zoom-in; }
.gallery-tile.wide { grid-column: span 8; min-height: 620px; }
.gallery-tile.tall { min-height: 620px; }
.gallery-tile img { transition: transform 260ms ease; }
.gallery-tile:hover img { transform: scale(1.035); }
figcaption { position: absolute; left: 18px; bottom: 18px; padding: 8px 14px; border-radius: 999px; background: rgba(20,23,17,0.78); color: white; font-size: 12px; font-weight: 900; }
.service-note { width: min(1180px, calc(100% - 64px)); margin: 110px auto 60px; }
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; margin-bottom: 38px; padding: 32px; border-radius: 34px; background: rgba(255,250,240,0.82); border: 1px solid var(--color-line); box-shadow: 0 18px 55px rgba(20,23,17,0.08); }
.service-row:nth-child(even) figure { order: 2; }
.service-row figure { height: 560px; overflow: hidden; border-radius: 28px; }
.guide-grid { width: var(--container); margin: 0 auto 110px; display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.guide-grid article { min-height: 260px; padding: 32px; border-radius: 28px; background: var(--color-paper); border: 1px solid var(--color-line); box-shadow: 0 16px 48px rgba(20,23,17,0.07); }
.map-frame { overflow: hidden; border-radius: 34px; border: 1px solid var(--color-line); box-shadow: var(--shadow); outline: 12px solid rgba(255,250,240,0.55); }
.map-frame iframe { width: 100%; height: 640px; display: block; border: 0; }
.contact-section { width: var(--container); margin: 110px auto 90px; display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 44px; align-items: start; }
.contact-aside { position: sticky; top: 112px; padding: 44px; border-radius: 34px; background: var(--color-deep); color: white; }
.contact-aside h2,
.contact-aside p { color: white; }
.contact-lines { margin: 34px 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.18); }
.next-box { padding: 24px; border-radius: 22px; background: rgba(255,255,255,0.08); }
.next-box h3 { color: white; }
.next-box ol { margin: 0; padding-left: 20px; color: rgba(255,255,255,0.78); }
.enquiry-form { display: grid; gap: 20px; padding: 44px; border-radius: 34px; background: var(--color-paper); border: 1px solid var(--color-line); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.form-note { margin: 0; font-size: 14px; }
.final-cta { width: var(--container); margin: 40px auto 120px; padding: 66px; border-radius: 36px; display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; background: radial-gradient(circle at 82% 18%, rgba(185,139,69,0.24), transparent 30%), linear-gradient(135deg, var(--color-dark), var(--color-deep)); color: white; box-shadow: var(--shadow); }
.final-cta h2,
.final-cta p { color: white; }
.site-footer { padding: 78px 0 38px; background: #10150f; color: white; }
.footer-grid { width: var(--container); margin: auto; display: grid; grid-template-columns: 1.35fr 0.65fr 0.9fr; gap: 52px; }
.footer-grid h2,
.footer-grid h3 { color: white; }
.footer-grid p,
.footer-grid a { display: block; color: rgba(255,255,255,0.68); text-decoration: none; margin: 8px 0; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 620ms ease, transform 620ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 28px; background: rgba(5,8,6,0.92); }
.lightbox.is-open { display: grid; }
.lightbox img { width: auto; height: auto; max-width: min(1380px,94vw); max-height: 84vh; border-radius: 22px; }
.lightbox button { position: absolute; top: 22px; right: 24px; width: 50px; height: 50px; border: 1px solid rgba(255,255,255,0.34); border-radius: 50%; background: rgba(255,255,255,0.12); color: white; font-size: 30px; cursor: pointer; }
.lightbox p { color: white; }
@keyframes heroZoom { to { transform: scale(1.06); } }
@media (max-width: 1000px) {
  .nav-container { height: 76px; }
  .brand { font-size: 29px; }
  .menu-toggle { margin-left: auto; display: grid; gap: 5px; padding: 12px; border: 1px solid rgba(255,255,255,0.35); border-radius: 999px; background: rgba(255,255,255,0.14); }
  .menu-toggle span { display: block; width: 24px; height: 2px; background: white; }
  .site-header.is-scrolled .menu-toggle span { background: var(--color-dark); }
  .site-nav { position: absolute; left: 0; right: 0; top: 76px; display: grid; gap: 0; max-height: 0; overflow: hidden; padding: 0 28px; background: rgba(240,230,212,0.98); transition: max-height 220ms ease; }
  .site-nav.is-open { max-height: 330px; padding-bottom: 18px; }
  .site-nav a { color: var(--color-dark); padding: 15px 0; }
  .nav-cta { display: none; }
  .booking-bar,
  .editorial-intro,
  .feature-bleed,
  .property-chapter,
  .destination-feature,
  .service-row,
  .contact-section,
  .final-cta,
  .footer-grid { grid-template-columns: 1fr; }
  .lifestyle-grid,
  .preview-panels,
  .room-grid,
  .guide-grid { grid-template-columns: repeat(2,1fr); }
  .service-row:nth-child(even) figure,
  .property-chapter.reverse figure { order: 0; }
  .contact-aside { position: relative; top: auto; }
  .gallery-tile,
  .gallery-tile.wide { grid-column: span 6; }
}
@media (max-width: 640px) {
  :root { --container: min(100% - 34px, 1320px); }
  body { font-size: 16px; }
  .nav-container,
  .hero-inner,
  .gallery-page,
  .service-panels,
  .map-block { width: min(100% - 34px, 1460px); }
  .hero,
  .page-hero { min-height: 680px; }
  .hero h1 { font-size: clamp(58px, 17vw, 88px); }
  .hero-inner > p:not(.eyebrow) { font-size: 18px; }
  .quick-facts,
  .booking-bar,
  .editorial-intro,
  .lifestyle-grid,
  .preview-grid,
  .preview-panels,
  .room-grid,
  .included-details,
  .guide-grid,
  .contact-section,
  .form-row,
  .final-cta { grid-template-columns: 1fr; }
  .quick-facts div { border-right: 0; border-bottom: 1px solid var(--color-line); padding: 22px; }
  .feature-bleed { width: min(100% - 24px, 1540px); margin-bottom: 78px; }
  .feature-bleed figure { min-height: 420px; }
  .feature-card,
  .final-cta,
  .enquiry-form,
  .contact-aside { padding: 30px; }
  .lifestyle-card figure,
  .room-grid figure,
  .service-row figure { height: 360px; }
  .property-chapter figure,
  .destination-feature figure,
  .preview-grid figure,
  .included-details figure { min-height: 360px; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-tile,
  .gallery-tile.wide { grid-column: auto; min-height: 360px; }
  .gallery-tile.tall { min-height: 420px; }
  .map-frame iframe { height: 420px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Premium refinement pass: fewer beige gaps, stronger editorial panels, real enquiry UI */
body { background: #e9dcc7; }
.hero-overlay { background: linear-gradient(90deg, rgba(7,9,6,.88), rgba(7,9,6,.32) 56%, rgba(7,9,6,.12)), linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.66)); }
.hero-inner { padding-bottom: 104px; }
.booking-bar { margin-top: 0; border-radius: 0 0 30px 30px; width: min(1180px, calc(100% - 64px)); transform: translateY(-28px); }
.booking-bar label span, .enquiry-form label span { color: #6d604f; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.booking-bar input, .booking-bar select, .enquiry-form input, .enquiry-form select, .enquiry-form textarea { border-color: rgba(52,38,20,.12); background: #fffaf1; box-shadow: inset 0 1px 0 rgba(255,255,255,.8); font-weight: 400; }
.booking-bar .button { width: 100%; border-radius: 16px; }
.editorial-intro { padding-top: 76px; }
.feature-bleed { margin-top: 10px; border-radius: 0; width: 100%; grid-template-columns: 1.4fr .6fr; }
.feature-bleed figure { min-height: 820px; }
.feature-card { padding-right: max(54px, calc((100vw - 1320px) / 2)); }
.stay-panels { width: 100%; margin: 0 auto 120px; }
.stay-panel { display: grid; grid-template-columns: 58% 42%; min-height: 720px; background: #11150f; color: white; }
.stay-panel.reverse { grid-template-columns: 42% 58%; }
.stay-panel.reverse figure { order: 2; }
.stay-panel figure { min-height: 720px; }
.stay-panel div { padding: 76px max(48px, calc((100vw - 1320px) / 2)) 76px 64px; align-self: end; }
.stay-panel.reverse div { padding-left: max(48px, calc((100vw - 1320px) / 2)); padding-right: 64px; }
.stay-panel h2, .stay-panel p { color: white; }
.stay-panel span, .destination-guide span { color: var(--color-gold); font-family: var(--font-serif); font-size: 70px; line-height: 1; }
.gallery-preview { margin-top: 120px; }
.preview-grid { grid-template-columns: 1.35fr .85fr .85fr; }
.preview-grid figure { border-radius: 0; }
.preview-grid figure:first-child { min-height: 760px; }
.preview-panels { grid-template-columns: 1fr; gap: 0; width: 100%; margin-bottom: 0; }
.preview-panel { min-height: 260px; border-radius: 0; padding-left: max(34px, calc((100vw - 1320px) / 2)); padding-right: max(34px, calc((100vw - 1320px) / 2)); border-bottom: 1px solid rgba(255,255,255,.12); }
.gallery-page { width: min(1600px, calc(100% - 28px)); }
.gallery-filter { margin-top: 48px; justify-content: center; }
.gallery-filter span { background: #171b13; color: #fff; border-color: rgba(255,255,255,.12); }
.gallery-masonry { gap: 14px; }
.gallery-tile { border-radius: 0; min-height: 520px; }
.gallery-tile.wide { min-height: 720px; }
.gallery-tile.tall { min-height: 720px; }
.service-note { margin-bottom: 40px; }
.concierge-panels { width: 100%; margin-bottom: 0; }
.concierge-panels .service-row { width: 100%; margin: 0; padding: 0; border: 0; border-radius: 0; box-shadow: none; background: #11150f; color: white; grid-template-columns: 56% 44%; }
.concierge-panels .service-row:nth-child(even) { background: #efe4d1; color: var(--color-dark); }
.concierge-panels .service-row:nth-child(even) figure { order: 2; }
.concierge-panels .service-row figure { height: 660px; border-radius: 0; }
.concierge-panels .service-row div { padding: 70px max(44px, calc((100vw - 1320px) / 2)) 70px 64px; align-self: center; }
.concierge-panels .service-row:nth-child(even) div { padding-left: max(44px, calc((100vw - 1320px) / 2)); padding-right: 64px; }
.concierge-panels .service-row h2, .concierge-panels .service-row p { color: inherit; }
.concierge-panels .text-link { display: inline-block; margin-top: 20px; }
.destination-feature { width: 100%; margin: 0; grid-template-columns: 58% 42%; background: #11150f; color: white; }
.destination-feature.reverse { grid-template-columns: 42% 58%; background: #efe4d1; color: var(--color-dark); }
.destination-feature.reverse figure { order: 2; }
.destination-feature figure { min-height: 720px; border-radius: 0; box-shadow: none; }
.destination-feature div { padding: 76px max(48px, calc((100vw - 1320px) / 2)) 76px 64px; }
.destination-feature.reverse div { padding-left: max(48px, calc((100vw - 1320px) / 2)); padding-right: 64px; }
.destination-feature h2, .destination-feature p { color: inherit; }
.destination-guide { margin-top: 100px; }
.destination-guide article { background: #151911; color: white; border: 0; border-radius: 0; min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; }
.destination-guide article p, .destination-guide article h3 { color: white; }
.map-block { margin-top: 80px; }
.map-frame { border-radius: 0; outline: 0; }
.map-frame iframe { height: 700px; }
.concierge-enquiry { align-items: stretch; }
.contact-aside { border-radius: 0; padding: 58px; background: #11150f; }
.next-box { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.enquiry-form { border-radius: 0; padding: 58px; box-shadow: 0 30px 90px rgba(20,23,17,.12); }
.enquiry-form label { gap: 10px; font-weight: 500; }
.enquiry-form .button { justify-self: start; min-width: 220px; }
.final-cta { border-radius: 0; width: 100%; margin-bottom: 0; padding-left: max(34px, calc((100vw - 1320px) / 2)); padding-right: max(34px, calc((100vw - 1320px) / 2)); }
@media (max-width: 1000px) {
  .stay-panel, .stay-panel.reverse, .concierge-panels .service-row, .destination-feature, .destination-feature.reverse { grid-template-columns: 1fr; }
  .stay-panel.reverse figure, .concierge-panels .service-row:nth-child(even) figure, .destination-feature.reverse figure { order: 0; }
  .stay-panel div, .stay-panel.reverse div, .concierge-panels .service-row div, .concierge-panels .service-row:nth-child(even) div, .destination-feature div, .destination-feature.reverse div { padding: 44px var(--container); }
}
@media (max-width: 640px) {
  .booking-bar { transform: none; width: var(--container); border-radius: 24px; }
  .feature-bleed { grid-template-columns: 1fr; }
  .feature-bleed figure, .stay-panel figure, .concierge-panels .service-row figure, .destination-feature figure { min-height: 420px; height: 420px; }
  .gallery-tile, .gallery-tile.wide, .gallery-tile.tall { min-height: 430px; }
  .map-frame iframe { height: 480px; }
  .contact-aside, .enquiry-form { padding: 32px; }
}
