:root {
  --forest-950: #171a18;
  --forest-900: #232724;
  --forest-800: #343b37;
  --forest-700: #a00716;
  --sand-50: #fffaf2;
  --sand-100: #f4efe5;
  --sand-200: #eadfc9;
  --sand-400: #d2c09d;
  --gold: #f0a51e;
  --gold-deep: #bd7010;
  --brand-red: #b5081b;
  --brand-red-deep: #870413;
  --brand-blue: #058cb4;
  --brand-blue-deep: #046b89;
  --white: #fff;
  --ink: #202622;
  --muted: #646d68;
  --line: rgba(43, 46, 43, 0.16);
  --shadow: 0 24px 80px rgba(23, 26, 24, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1200px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  background: var(--sand-50);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
svg { display: block; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 120px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999; padding: 12px 18px;
  background: var(--white); color: var(--forest-900); border-radius: 4px; font-weight: 800;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; color: var(--white); }
.notice-bar { background: var(--forest-950); border-bottom: 1px solid rgba(255,255,255,.09); }
.notice-inner {
  min-height: 36px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; font-size: .72rem; letter-spacing: .09em; text-transform: uppercase;
}
.notice-inner p { margin: 0; color: rgba(255,255,255,.67); }
.notice-inner a { display: flex; align-items: center; gap: 14px; }
.notice-inner a span { color: rgba(255,255,255,.58); }
.notice-inner a strong { color: var(--gold); font-size: .73rem; }
.nav-shell { transition: background .3s ease, box-shadow .3s ease, color .3s ease; }
.nav-inner { height: 84px; display: flex; align-items: center; justify-content: space-between; }
.site-header.is-scrolled .nav-shell {
  background: rgba(35,39,36,.96); color: var(--white);
  box-shadow: 0 12px 32px rgba(0,0,0,.2); backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo {
  width: 160px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 7px 16px rgba(0,0,0,.24));
}
.brand-mark {
  width: 45px; height: 45px; display: grid; place-items: center; position: relative;
  border: 1px solid rgba(240,165,30,.8); border-radius: 50% 50% 46% 54%; transform: rotate(-7deg);
}
.brand-mark::after {
  content: ""; position: absolute; inset: 5px; border: 1px solid rgba(240,165,30,.35);
  border-radius: 50%;
}
.brand-mark span { color: var(--gold); font-family: var(--serif); font-size: 1.7rem; line-height: 1; transform: rotate(7deg); }
.brand-type { display: flex; flex-direction: column; line-height: 1; }
.brand-type strong { font-family: var(--serif); font-size: 1.28rem; letter-spacing: .02em; font-weight: 500; }
.brand-type small { margin-top: 6px; font-size: .57rem; letter-spacing: .32em; text-transform: uppercase; opacity: .72; }
.primary-nav { display: flex; align-items: center; gap: 29px; }
.primary-nav > a:not(.nav-cta) {
  font-size: .77rem; font-weight: 650; letter-spacing: .055em; position: relative;
}
.primary-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px;
  background: var(--brand-red); transform: scaleX(0); transform-origin: right; transition: transform .25s ease;
}
.primary-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.primary-nav > a[aria-current="page"] { color: var(--gold); }
.primary-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.site-header.is-scrolled .primary-nav > a[aria-current="page"] { color: var(--gold); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 18px;
  border: 1px solid var(--brand-red); background: var(--brand-red); color: var(--white); font-size: .75rem; font-weight: 750; letter-spacing: .03em;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.nav-cta svg, .button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--forest-950); }
.site-header.is-scrolled .nav-cta { border-color: var(--brand-red); }
.menu-toggle { display: none; border: 0; background: transparent; color: currentColor; padding: 8px; }
.menu-toggle > span:not(.sr-only) { width: 25px; height: 1px; background: currentColor; display: block; margin: 6px 0; transition: .25s; }

.hero {
  min-height: 900px; height: 100svh; max-height: 1080px; position: relative; color: var(--white);
  display: flex; align-items: center; overflow: hidden;
}
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; }
.hero-media img, .page-hero-media img {
  transform: scale(1.045) translate3d(var(--depth-x, 0px), var(--depth-y, 0px), 0);
  transition: transform .9s cubic-bezier(.2,.75,.25,1);
  will-change: transform;
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(23,26,24,.92) 0%, rgba(23,26,24,.69) 42%, rgba(23,26,24,.14) 74%, rgba(23,26,24,.1) 100%),
    linear-gradient(0deg, rgba(23,26,24,.74) 0%, transparent 38%);
}
.hero-grid {
  position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .55fr);
  gap: 72px; align-items: end; padding-top: 88px; padding-bottom: 150px;
}
.hero-copy { max-width: 720px; }
.eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px; color: var(--forest-700);
  font-size: .7rem; line-height: 1.2; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
}
.eyebrow > span { width: 34px; height: 1px; background: var(--gold-deep); }
.eyebrow-light { color: rgba(255,255,255,.72); }
.eyebrow-light > span { background: var(--gold); }
.hero h1 {
  margin-bottom: 28px; font-family: var(--serif); font-weight: 400; font-size: clamp(3.4rem, 6.3vw, 6.9rem);
  line-height: .91; letter-spacing: -.055em;
}
.hero h1 em, h2 em { color: var(--gold); font-weight: 400; }
.hero-lede { max-width: 600px; margin-bottom: 35px; color: rgba(255,255,255,.78); font-size: 1.1rem; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; }
.button {
  display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 12px;
  padding: 0 24px; border: 1px solid transparent; font-size: .77rem; font-weight: 800; letter-spacing: .04em;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--brand-red); color: var(--white); }
.button-primary:hover { background: var(--gold); color: var(--forest-950); }
.button-quiet { color: var(--white); border-color: rgba(255,255,255,.42); background: rgba(23,26,24,.12); backdrop-filter: blur(8px); }
.button-quiet:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.72); }
.hero-note { display: flex; align-items: center; gap: 10px; margin: 25px 0 0; color: rgba(255,255,255,.57); font-size: .72rem; letter-spacing: .02em; }
.seal { width: 23px; height: 23px; display: grid; place-items: center; border: 1px solid rgba(240,165,30,.55); border-radius: 50%; color: var(--gold); font-size: .65rem; }
.hero-card {
  padding: 30px; border: 1px solid rgba(255,255,255,.22); background: rgba(23,26,24,.48);
  box-shadow: 0 28px 70px rgba(0,0,0,.2); backdrop-filter: blur(17px);
}
.card-kicker { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 34px; color: rgba(255,255,255,.55); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.availability { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.78); }
.availability i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(240,165,30,.12); }
.hero-card h2 { max-width: 310px; margin-bottom: 14px; font-family: var(--serif); font-size: 2rem; line-height: 1.08; font-weight: 400; }
.hero-card > p { color: rgba(255,255,255,.68); font-size: .86rem; line-height: 1.65; }
.hero-card dl { margin: 25px 0; border-top: 1px solid rgba(255,255,255,.14); }
.hero-card dl div { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.hero-card dt { color: rgba(255,255,255,.49); font-size: .69rem; text-transform: uppercase; letter-spacing: .08em; }
.hero-card dd { margin: 0; font-size: .78rem; font-weight: 700; }
.hero-card > a { display: flex; justify-content: space-between; align-items: center; color: var(--gold); font-size: .77rem; font-weight: 750; }
.hero-facts { position: absolute; inset: auto 0 0; z-index: 2; border-top: 1px solid rgba(255,255,255,.16); background: rgba(23,26,24,.36); backdrop-filter: blur(12px); }
.facts-grid { min-height: 96px; display: grid; grid-template-columns: repeat(3, 1fr); }
.facts-grid > div { display: flex; align-items: center; gap: 18px; padding: 0 36px; border-left: 1px solid rgba(255,255,255,.13); }
.facts-grid > div:first-child { padding-left: 0; border-left: 0; }
.facts-grid strong { color: var(--gold); font-family: var(--serif); font-size: 1.3rem; font-weight: 400; }
.facts-grid span { color: rgba(255,255,255,.72); font-size: .72rem; line-height: 1.4; letter-spacing: .04em; }

.intro { background: var(--sand-50); }
.intro-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 100px; align-items: start; }
.section-heading h2, .section-top h2, .package-heading h2, .process h2, .clarity h2, .faq h2, .closing h2 {
  margin: 0; font-family: var(--serif); font-size: clamp(2.8rem, 4.6vw, 5.1rem); line-height: .98; letter-spacing: -.045em; font-weight: 400;
}
.section-heading h2 em, .package-heading h2 em, .clarity h2 em, .faq h2 em { color: var(--gold-deep); }
.intro-copy { padding-top: 56px; }
.intro-copy .lead { color: var(--forest-900); font-family: var(--serif); font-size: 1.6rem; line-height: 1.35; }
.intro-copy > p:not(.lead) { color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 18px; margin-top: 18px; padding-bottom: 5px; border-bottom: 1px solid var(--forest-800); font-size: .76rem; font-weight: 800; letter-spacing: .045em; }
.text-link span { font-size: 1rem; color: var(--gold-deep); }
.value-grid { margin-top: 90px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.value-card { min-height: 340px; position: relative; padding: 38px; border-left: 1px solid var(--line); background: rgba(255,255,255,.35); }
.value-card:first-child { border-left: 0; }
.value-number { position: absolute; right: 28px; top: 27px; color: rgba(43,46,43,.28); font-family: var(--serif); font-size: .88rem; }
.icon-wrap { width: 55px; height: 55px; display: grid; place-items: center; margin: 36px 0 57px; border: 1px solid var(--sand-400); border-radius: 50%; color: var(--forest-800); }
.icon-wrap svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { margin-bottom: 9px; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.value-card p { margin: 0; color: var(--muted); font-size: .88rem; }

.destinations { background: var(--forest-900); color: var(--white); overflow: hidden; }
.section-top { display: flex; justify-content: space-between; gap: 80px; align-items: end; margin-bottom: 60px; }
.section-top h2 em, .process h2 em, .closing h2 em { color: var(--gold); }
.section-top > p { max-width: 440px; margin-bottom: 5px; color: rgba(255,255,255,.61); }
.destination-grid { display: grid; grid-template-columns: 1.22fr 1fr 1fr; gap: 18px; }
.destination-card { min-height: 470px; position: relative; overflow: hidden; padding: 34px; display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate; }
.destination-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(23,26,24,.72), transparent 68%); }
.destination-card.coast { background: #365e66; }
.destination-card.mountain { background: #8c5b2e; }
.destination-card.exchange { background: #252a27; }
.destination-art { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.destination-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.75,.25,1); }
.destination-wide img { object-position: 58% center; }
.destination-card:hover .destination-art img { transform: scale(1.035); }
.destination-copy p { margin-bottom: 6px; color: rgba(255,255,255,.62); font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.destination-copy h3 { margin-bottom: 6px; color: var(--white); font-family: var(--serif); font-size: 3rem; line-height: 1; font-weight: 400; }
.destination-copy > span { color: rgba(255,255,255,.66); font-size: .75rem; }
.card-arrow { position: absolute; right: 29px; bottom: 34px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.36); border-radius: 50%; color: var(--gold); }

.packages { background: var(--sand-100); }
.package-heading { display: grid; grid-template-columns: 1fr .8fr; gap: 100px; align-items: end; margin-bottom: 70px; }
.package-heading > p { max-width: 500px; margin: 0 0 8px; color: var(--muted); }
.package-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
.package-card { min-height: 640px; position: relative; padding: 44px; display: flex; flex-direction: column; }
.package-classic { border: 1px solid rgba(43,46,43,.19); background: var(--white); }
.package-peak { padding-top: 58px; background: var(--forest-900); color: var(--white); box-shadow: var(--shadow); }
.popular-tag { position: absolute; right: 0; top: 0; padding: 9px 17px; background: var(--gold); color: var(--forest-950); font-size: .61rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.package-topline { display: flex; align-items: center; justify-content: space-between; padding-bottom: 21px; border-bottom: 1px solid rgba(43,46,43,.15); font-size: .66rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.package-peak .package-topline { border-color: rgba(255,255,255,.17); color: rgba(255,255,255,.67); }
.package-topline span:last-child { color: var(--gold-deep); font-family: var(--serif); font-size: 1rem; }
.package-price { min-height: 170px; display: flex; flex-direction: column; justify-content: center; padding: 25px 0 18px; }
.package-price small { color: var(--muted); font-size: .68rem; font-weight: 750; text-transform: uppercase; letter-spacing: .13em; }
.package-price strong { display: block; margin: 4px 0 2px; font-family: var(--serif); font-size: clamp(2.8rem, 4vw, 4.3rem); line-height: 1; font-weight: 400; letter-spacing: -.04em; }
.package-price sup { margin-right: 3px; font-size: .45em; vertical-align: super; }
.package-price > span { color: var(--muted); font-size: .71rem; }
.package-peak .package-price small, .package-peak .package-price > span { color: rgba(255,255,255,.5); }
.package-summary { min-height: 76px; color: var(--muted); font-size: .88rem; }
.package-peak .package-summary { color: rgba(255,255,255,.65); }
.package-list { padding: 24px 0; margin: 0 0 35px; border-top: 1px solid rgba(43,46,43,.13); list-style: none; }
.package-peak .package-list { border-color: rgba(255,255,255,.14); }
.package-list li { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; font-size: .81rem; }
.package-list li span { color: var(--gold-deep); }
.package-peak .package-list li { color: rgba(255,255,255,.74); }
.package-card .button { margin-top: auto; align-self: flex-start; }
.button-dark { background: var(--forest-900); color: var(--white); }
.button-dark:hover { background: var(--forest-700); }
.button-light { background: var(--gold); color: var(--forest-950); }
.button-light:hover { background: #e7cd91; }
.pricing-note { margin-top: 18px; color: var(--muted); font-size: .69rem; }

.process { background: var(--forest-950); color: var(--white); }
.process-grid { display: grid; grid-template-columns: .82fr 1fr; gap: 120px; }
.process-intro { position: sticky; top: 160px; align-self: start; }
.process-intro > p:not(.eyebrow) { max-width: 420px; margin: 28px 0 34px; color: rgba(255,255,255,.59); }
.button-outline { border-color: rgba(255,255,255,.34); color: var(--white); }
.button-outline:hover { background: var(--white); color: var(--forest-950); }
.process-list { margin: 0; padding: 0; list-style: none; counter-reset: process; }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 31px 0 37px; border-top: 1px solid rgba(255,255,255,.15); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.process-list > li > span { color: var(--gold); font-family: var(--serif); font-size: 1.25rem; }
.process-list h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.process-list p { margin: 0; color: rgba(255,255,255,.57); font-size: .86rem; }

.clarity { background: var(--sand-50); }
.clarity-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 90px; align-items: center; }
.clarity-visual { min-height: 620px; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.clarity-visual picture, .clarity-visual img { position: absolute; inset: 0; width: 100%; height: 100%; }
.clarity-visual img { object-fit: cover; object-position: 72% center; transform: scale(1.01); }
.clarity-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(23,26,24,.4), transparent 60%); }
.clarity-badge { position: absolute; z-index: 2; left: 0; bottom: 0; min-width: 210px; padding: 25px 29px; background: var(--forest-900); color: var(--white); }
.clarity-badge strong, .clarity-badge span { display: block; }
.clarity-badge strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.clarity-badge span { margin-top: 3px; color: rgba(255,255,255,.56); font-size: .68rem; letter-spacing: .07em; }
.clarity-copy > p:not(.eyebrow) { margin: 28px 0 33px; color: var(--muted); }
.clarity-points { border-top: 1px solid var(--line); }
.clarity-points > div { display: grid; grid-template-columns: 45px 1fr; gap: 15px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.clarity-points > div > span { color: var(--gold-deep); font-family: var(--serif); }
.clarity-points p { margin: 0; color: var(--muted); font-size: .81rem; }
.clarity-points strong { display: block; margin-bottom: 2px; color: var(--ink); font-size: .88rem; }

.faq { background: var(--sand-100); }
.faq-grid { display: grid; grid-template-columns: .72fr 1fr; gap: 120px; align-items: start; }
.faq-intro { position: sticky; top: 160px; }
.faq-intro > p:not(.eyebrow) { max-width: 390px; margin: 28px 0 23px; color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 26px 50px 26px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.24rem; line-height: 1.4; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; right: 4px; top: 50%; width: 18px; height: 1px; background: var(--forest-800); transition: transform .25s ease; }
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details p { max-width: 690px; padding: 0 42px 26px 0; margin: 0; color: var(--muted); font-size: .87rem; }

.closing { min-height: 590px; position: relative; display: flex; align-items: center; padding: 110px 0; overflow: hidden; background: var(--forest-800); color: var(--white); }
.closing-pattern { position: absolute; inset: 0; overflow: hidden; opacity: .24; }
.closing-pattern span { position: absolute; border: 1px solid var(--gold); border-radius: 50%; }
.closing-pattern span:nth-child(1) { width: 760px; height: 760px; right: -240px; top: -370px; }
.closing-pattern span:nth-child(2) { width: 520px; height: 520px; right: -130px; top: -210px; }
.closing-pattern span:nth-child(3) { width: 350px; height: 350px; left: -210px; bottom: -230px; }
.closing-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .6fr; gap: 110px; align-items: center; }
.closing-action > p { margin-bottom: 28px; color: rgba(255,255,255,.64); }
.contact-options { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.contact-options a { padding-top: 14px; border-top: 1px solid rgba(255,255,255,.22); }
.contact-options small, .contact-options strong { display: block; }
.contact-options small { color: rgba(255,255,255,.48); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-options strong { margin-top: 4px; font-family: var(--serif); font-size: 1.05rem; font-weight: 400; }

.site-footer { padding: 74px 0 27px; background: var(--forest-950); color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1fr 1.25fr .75fr .75fr; gap: 65px; align-items: start; padding-bottom: 60px; }
.footer-brand .brand-type small { color: rgba(255,255,255,.58); }
.footer-main > p { max-width: 320px; color: rgba(255,255,255,.52); font-size: .78rem; }
.footer-main nav, .social-links { display: flex; flex-direction: column; gap: 11px; }
.footer-main nav a, .social-links a { color: rgba(255,255,255,.64); font-size: .75rem; transition: color .2s ease; }
.footer-main nav a:hover, .social-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.38); font-size: .63rem; }
.whatsapp-float { position: fixed; z-index: 900; right: 22px; bottom: 22px; height: 50px; display: inline-flex; align-items: center; gap: 9px; padding: 0 17px; border-radius: 30px; background: #1f7a56; color: var(--white); box-shadow: 0 15px 36px rgba(23,26,24,.27); font-size: .7rem; font-weight: 800; }
.whatsapp-float svg { width: 21px; fill: currentColor; }

/* Multi-page layouts */
.page-hero {
  min-height: 660px; position: relative; display: flex; align-items: flex-end; overflow: hidden;
  padding: 210px 0 95px; background: var(--forest-900); color: var(--white);
}
.page-hero-media, .page-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero-media img { object-fit: cover; }
.page-hero--about .page-hero-media img { object-position: center 52%; }
.page-hero--destinations .page-hero-media img { object-position: center 60%; }
.page-hero--packages .page-hero-media img { object-position: center 54%; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(23,26,24,.94) 0%, rgba(23,26,24,.73) 45%, rgba(23,26,24,.2) 82%), linear-gradient(0deg, rgba(23,26,24,.58), transparent 55%);
}
.page-hero-copy { position: relative; z-index: 2; max-width: 880px; }
.breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 46px; color: rgba(255,255,255,.54); font-size: .76rem; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span:last-child { color: rgba(255,255,255,.85); }
.page-hero h1 {
  margin: 0 0 27px; font-family: var(--serif); font-size: clamp(3.5rem, 6vw, 6.4rem);
  line-height: .92; letter-spacing: -.055em; font-weight: 400;
}
.page-hero h1 em { color: var(--gold); font-weight: 400; }
.page-hero-copy > p:last-child { max-width: 650px; margin: 0; color: rgba(255,255,255,.72); font-size: 1.05rem; }
.page-hero--guide, .page-hero--contact { min-height: 620px; background: radial-gradient(circle at 82% 24%, #34464b 0, var(--forest-900) 35%, var(--forest-950) 85%); }
.guide-hero-lines { position: absolute; inset: 0; overflow: hidden; opacity: .35; }
.guide-hero-lines span { position: absolute; border: 1px solid rgba(240,165,30,.42); border-radius: 50%; }
.guide-hero-lines span:nth-child(1) { width: 680px; height: 680px; right: -230px; top: -270px; }
.guide-hero-lines span:nth-child(2) { width: 450px; height: 450px; right: -80px; top: -120px; }
.guide-hero-lines span:nth-child(3) { width: 220px; height: 220px; left: -130px; bottom: -140px; }

.story-section, .destination-intro, .package-page-intro { background: var(--sand-50); }
.story-grid { display: grid; grid-template-columns: .95fr .78fr; gap: 115px; align-items: start; }
.story-grid .section-heading h2 { font-size: clamp(2.9rem, 4.5vw, 4.8rem); }
.story-copy { padding-top: 50px; }
.story-copy .lead { color: var(--forest-900); font-family: var(--serif); font-size: 1.55rem; line-height: 1.4; }
.story-copy > p:not(.lead) { color: var(--muted); }
.experience-band { padding: 70px 0; background: var(--forest-900); color: var(--white); }
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.experience-statement { display: flex; align-items: center; gap: 27px; }
.experience-statement strong { color: var(--gold); font-family: var(--serif); font-size: clamp(4rem, 8vw, 7.2rem); line-height: .8; font-weight: 400; }
.experience-statement span { max-width: 180px; color: rgba(255,255,255,.7); font-size: .78rem; line-height: 1.45; letter-spacing: .055em; text-transform: uppercase; }
.experience-copy { padding-left: 60px; border-left: 1px solid rgba(255,255,255,.17); }
.experience-copy p { margin: 0; color: rgba(255,255,255,.67); }
.compact-heading { max-width: 760px; margin-bottom: 60px; }
.compact-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.8rem, 4.5vw, 4.8rem); line-height: .98; letter-spacing: -.045em; font-weight: 400; }
.compact-heading h2 em { color: var(--gold-deep); }
.principles-section { background: var(--sand-100); }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle-card { min-height: 310px; padding: 38px 34px; border-left: 1px solid var(--line); }
.principle-card:first-child { border-left: 0; }
.principle-card > span { color: var(--gold-deep); font-family: var(--serif); }
.principle-card h3 { margin: 70px 0 12px; font-family: var(--serif); font-size: 1.7rem; line-height: 1.15; font-weight: 400; }
.principle-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.process-inner { padding: 120px 0; }
.closing-compact { min-height: 500px; }

.location-section { padding: 30px 0 120px; background: var(--sand-50); }
.location-section-alt { padding: 120px 0; background: var(--sand-100); }
.location-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 95px; align-items: center; }
.location-grid-reverse .location-image { order: 2; }
.location-grid-reverse .location-copy { order: 1; }
.location-image { min-height: 660px; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.location-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.location-image > span { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 13px 19px; background: var(--forest-900); color: var(--gold); font-size: .71rem; letter-spacing: .1em; text-transform: uppercase; }
.location-copy h2 { margin: 0 0 25px; font-family: var(--serif); font-size: clamp(3rem, 4.6vw, 5rem); line-height: .95; letter-spacing: -.045em; font-weight: 400; }
.location-copy h2 em { color: var(--gold-deep); font-weight: 400; }
.location-copy > p:not(.eyebrow) { color: var(--muted); }
.location-features { margin: 30px 0; border-top: 1px solid var(--line); }
.location-features > div { display: grid; grid-template-columns: 125px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.location-features strong { font-size: .78rem; }
.location-features span { color: var(--muted); font-size: .8rem; }
.exchange-section { background: var(--forest-950); color: var(--white); }
.exchange-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 100px; align-items: center; }
.exchange-copy h2 { margin: 0 0 26px; font-family: var(--serif); font-size: clamp(3rem, 4.7vw, 5rem); line-height: .96; letter-spacing: -.045em; font-weight: 400; }
.exchange-copy h2 em { color: var(--gold); font-weight: 400; }
.exchange-copy > p:not(.eyebrow) { max-width: 590px; color: rgba(255,255,255,.62); }
.exchange-copy .button { margin-top: 18px; }
.exchange-card { padding: 40px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.04); }
.exchange-label { color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.exchange-card ul { margin: 28px 0 0; padding: 0; list-style: none; }
.exchange-card li { padding: 13px 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.68); font-size: .84rem; }

.section-tight { padding: 0 0 120px; background: var(--sand-50); }
.comparison-section { background: var(--sand-100); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); background: rgba(255,255,255,.5); }
.comparison-table { width: 100%; min-width: 720px; border-collapse: collapse; text-align: left; }
.comparison-table th, .comparison-table td { padding: 19px 24px; border-bottom: 1px solid var(--line); vertical-align: top; }
.comparison-table thead th { background: var(--forest-900); color: var(--white); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.comparison-table thead th:first-child { color: var(--gold); }
.comparison-table tbody th { width: 26%; color: var(--forest-800); font-size: .78rem; }
.comparison-table tbody td { color: var(--muted); font-size: .82rem; }
.comparison-table tbody tr:last-child th, .comparison-table tbody tr:last-child td { border-bottom: 0; }
.ownership-check { background: var(--forest-900); color: var(--white); }
.check-grid { display: grid; grid-template-columns: .9fr 1fr; gap: 100px; }
.ownership-check .section-heading h2 em { color: var(--gold); }
.ownership-check .section-heading > p:last-child { margin-top: 28px; color: rgba(255,255,255,.6); }
.check-list { border-top: 1px solid rgba(255,255,255,.16); }
.check-list > div { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.check-list > div > span { color: var(--gold); font-family: var(--serif); }
.check-list p { margin: 0; color: rgba(255,255,255,.6); font-size: .83rem; }
.check-list strong { display: block; margin-bottom: 3px; color: var(--white); font-size: .9rem; }

.guide-section { background: var(--sand-50); }
.guide-layout { display: grid; grid-template-columns: 250px minmax(0, 760px); justify-content: space-between; gap: 90px; align-items: start; }
.guide-nav { position: sticky; top: 150px; display: flex; flex-direction: column; padding: 25px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.guide-nav strong { margin-bottom: 14px; color: var(--forest-900); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.guide-nav a { padding: 7px 0; color: var(--muted); font-size: .78rem; }
.guide-nav a:hover { color: var(--gold-deep); }
.guide-chapter { position: relative; padding: 0 0 90px; margin-bottom: 90px; border-bottom: 1px solid var(--line); scroll-margin-top: 150px; }
.guide-chapter:last-child { border-bottom: 0; }
.chapter-number { position: absolute; right: 0; top: 0; color: rgba(43,46,43,.25); font-family: var(--serif); font-size: 1.2rem; }
.guide-chapter h2 { margin: 0 0 25px; font-family: var(--serif); font-size: clamp(2.45rem, 4.1vw, 4rem); line-height: 1; letter-spacing: -.04em; font-weight: 400; }
.guide-chapter h3 { font-family: var(--serif); font-weight: 400; }
.guide-chapter > p { color: var(--muted); }
.guide-chapter .chapter-lead { color: var(--forest-900); font-family: var(--serif); font-size: 1.42rem; line-height: 1.4; }
.guide-callout, .guide-disclaimer { margin-top: 30px; padding: 26px 30px; border-left: 3px solid var(--gold); background: var(--sand-100); }
.guide-callout strong, .guide-disclaimer strong { color: var(--forest-800); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.guide-callout p, .guide-disclaimer p { margin: 6px 0 0; color: var(--muted); font-size: .85rem; }
.definition-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 32px 0; border: 1px solid var(--line); }
.definition-grid > div { padding: 25px 20px; border-left: 1px solid var(--line); }
.definition-grid > div:first-child { border-left: 0; }
.definition-grid h3 { margin: 0 0 9px; font-size: 1.28rem; }
.definition-grid p { margin: 0; color: var(--muted); font-size: .78rem; }
.guide-check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 24px; margin: 30px 0 0; padding: 0; list-style: none; }
.guide-check-list li { display: flex; gap: 10px; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .8rem; }
.guide-check-list span { color: var(--gold-deep); }
.question-card { margin-top: 31px; padding: 33px; background: var(--forest-900); color: var(--white); }
.question-card h3 { margin: 0 0 18px; color: var(--gold); font-size: 1.4rem; }
.question-card ul { margin: 0; padding-left: 19px; }
.question-card li { margin: 8px 0; color: rgba(255,255,255,.7); font-size: .83rem; }
.numbered-checklist { margin-top: 35px; border-top: 1px solid var(--line); }
.numbered-checklist > div { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.numbered-checklist span { color: var(--gold-deep); font-family: var(--serif); }
.numbered-checklist p { margin: 0; color: var(--muted); font-size: .83rem; }
.numbered-checklist strong { display: block; color: var(--ink); }
.guide-faq .accordion { margin-top: 28px; }

.contact-section { background: var(--sand-50); }
.contact-grid { display: grid; grid-template-columns: .78fr 1.1fr; gap: 100px; align-items: start; }
.contact-details h2 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(2.8rem, 4.6vw, 4.8rem); line-height: .98; letter-spacing: -.045em; font-weight: 400; }
.contact-details h2 em { color: var(--gold-deep); }
.contact-details > p:not(.eyebrow) { color: var(--muted); }
.contact-methods { margin: 34px 0; border-top: 1px solid var(--line); }
.contact-methods > a { display: grid; grid-template-columns: 1fr auto; gap: 3px 16px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.contact-methods small { grid-column: 1 / -1; color: var(--muted); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-methods strong { font-family: var(--serif); font-size: 1.22rem; font-weight: 400; }
.contact-methods span { color: var(--gold-deep); font-size: .71rem; font-weight: 750; }
.contact-social { display: flex; flex-wrap: wrap; gap: 16px 26px; color: var(--muted); font-size: .75rem; }
.contact-social > span { color: var(--forest-800); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.contact-social a:hover { color: var(--gold-deep); }
.enquiry-panel { padding: 46px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-heading > span { color: var(--gold-deep); font-size: .72rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.form-heading h2 { margin: 12px 0 9px; font-family: var(--serif); font-size: 2.2rem; line-height: 1.08; font-weight: 400; }
.form-heading p { color: var(--muted); font-size: .83rem; }
.enquiry-panel form { margin-top: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 19px; }
.field label { display: block; margin-bottom: 7px; color: var(--forest-800); font-size: .78rem; font-weight: 750; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 51px; padding: 12px 14px; border: 1px solid rgba(43,46,43,.2); border-radius: 0;
  background: var(--sand-50); color: var(--ink); font: inherit; font-size: .9rem;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold-deep); }
.form-submit { border: 0; cursor: pointer; }
.form-note { margin: 15px 0 0; color: var(--muted); font-size: .71rem; }
.contact-reassurance { padding: 55px 0; background: var(--forest-900); color: var(--white); }
.reassurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.reassurance-grid > div { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 0 34px; border-left: 1px solid rgba(255,255,255,.15); }
.reassurance-grid > div:first-child { padding-left: 0; border-left: 0; }
.reassurance-grid span { color: var(--gold); font-family: var(--serif); }
.reassurance-grid p { margin: 0; color: rgba(255,255,255,.57); font-size: .76rem; }
.reassurance-grid strong { display: block; margin-bottom: 3px; color: var(--white); font-size: .83rem; }

.globe-section { position: relative; overflow: hidden; background: var(--forest-950); color: var(--white); }
.globe-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 75% 45%, rgba(5,140,180,.19), transparent 38%), linear-gradient(90deg, transparent 49.94%, rgba(255,255,255,.035) 50%, transparent 50.06%);
}
.globe-grid { position: relative; display: grid; grid-template-columns: .72fr 1.1fr; gap: 85px; align-items: center; }
.globe-copy h2 { margin: 0 0 27px; font-family: var(--serif); font-size: clamp(3rem, 4.8vw, 5.2rem); line-height: .95; letter-spacing: -.05em; font-weight: 400; }
.globe-copy h2 em { color: var(--gold); font-weight: 400; }
.globe-copy > p:not(.eyebrow):not(.globe-disclaimer) { color: rgba(255,255,255,.62); }
.globe-stat { display: grid; grid-template-columns: auto 1fr; gap: 17px; align-items: center; margin: 34px 0; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.globe-stat strong { color: var(--gold); font-family: var(--serif); font-size: 3.1rem; line-height: .85; font-weight: 400; }
.globe-stat span { max-width: 230px; color: rgba(255,255,255,.58); font-size: .76rem; line-height: 1.45; }
.globe-disclaimer { margin: 18px 0 0; color: rgba(255,255,255,.38); font-size: .75rem; }
.globe-stage {
  min-height: 650px; position: relative; overflow: hidden; isolation: isolate; cursor: crosshair;
  border: 1px solid rgba(240,165,30,.22); background: radial-gradient(circle at 50% 48%, rgba(5,140,180,.21), rgba(23,26,24,.68) 58%, rgba(18,20,19,.9));
  box-shadow: inset 0 0 80px rgba(0,0,0,.24), 0 38px 100px rgba(0,0,0,.22);
}
.globe-stage::before, .globe-stage::after { content: ""; position: absolute; z-index: 2; pointer-events: none; }
.globe-stage::before { inset: 68px; border: 1px solid rgba(255,255,255,.045); }
.globe-stage::after { width: 7px; height: 7px; top: 61px; right: 60px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 8px rgba(240,165,30,.08); }
.globe-stage canvas { position: absolute; inset: 0; z-index: 1; display: block; width: 100%; height: 100%; touch-action: pan-y; }
.globe-stage-top, .globe-stage-bottom { position: absolute; z-index: 3; left: 30px; right: 30px; display: flex; align-items: center; justify-content: space-between; pointer-events: none; color: rgba(255,255,255,.48); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.globe-stage-top { top: 25px; }
.globe-stage-top i { width: 38%; height: 1px; background: linear-gradient(90deg, rgba(240,165,30,.5), transparent); }
.globe-stage-bottom { bottom: 24px; }
.globe-stage-bottom span:nth-child(2) { color: var(--gold); }

@media (pointer: fine) {
  .hero-card, .package-card, .destination-card, .exchange-card { transform-style: preserve-3d; will-change: transform; }
}

.notice-inner,
.notice-inner a strong,
.brand-type small,
.eyebrow,
.hero-note,
.card-kicker,
.hero-card dt,
.facts-grid span,
.destination-copy p,
.package-topline,
.package-price small,
.package-price > span,
.pricing-note,
.popular-tag,
.exchange-label,
.breadcrumb,
.guide-nav strong,
.form-heading > span,
.form-note,
.contact-methods small { font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1); }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .23s; }
.reveal-delay-3 { transition-delay: .34s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  :root { --container: min(100% - 36px, 900px); }
  .primary-nav { gap: 12px; }
  .primary-nav > a:not(.nav-cta) { display: block; font-size: .75rem; }
  .nav-cta { padding-inline: 13px; }
  .hero-grid { grid-template-columns: 1fr .48fr; gap: 30px; }
  .hero-card { padding: 24px; }
  .intro-grid, .package-heading { gap: 55px; }
  .destination-grid { grid-template-columns: 1.15fr 1fr; }
  .destination-card.exchange { grid-column: 1 / -1; min-height: 330px; }
  .process-grid, .faq-grid { gap: 70px; }
  .clarity-grid { gap: 50px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .story-grid, .location-grid, .exchange-grid, .check-grid, .contact-grid { gap: 55px; }
  .guide-layout { grid-template-columns: 210px minmax(0, 1fr); gap: 55px; }
  .globe-grid { gap: 45px; }
  .globe-stage { min-height: 560px; }
}

@media (max-width: 760px) {
  :root { --container: calc(100vw - 32px); }
  html { scroll-padding-top: 86px; }
  .section { padding: 84px 0; }
  .notice-inner { min-height: 32px; justify-content: center; }
  .notice-inner > p, .notice-inner a span { display: none; }
  .notice-inner a { gap: 0; }
  .nav-inner { height: 70px; }
  .brand-mark { width: 39px; height: 39px; }
  .brand-mark span { font-size: 1.45rem; }
  .brand-type strong { font-size: 1.12rem; }
  .brand-type small { font-size: .75rem; letter-spacing: .2em; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav {
    position: fixed; inset: 32px 0 0; display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    padding: 112px 24px 35px; background: var(--forest-950); color: var(--white); transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.75,.25,1);
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav > a:not(.nav-cta) { display: block; width: 100%; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
  .primary-nav .nav-cta { margin-top: 30px; border-color: rgba(255,255,255,.4) !important; }
  .site-header.is-scrolled .menu-toggle[aria-expanded="true"] { color: var(--white); }

  .hero { min-height: 820px; height: auto; max-height: none; align-items: end; }
  .hero-media img { object-position: 60% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(23,26,24,.97) 0%, rgba(23,26,24,.78) 53%, rgba(23,26,24,.3) 100%); }
  .hero-grid { display: block; padding-top: 210px; padding-bottom: 118px; }
  .hero h1 { font-size: clamp(3.15rem, 15vw, 4.5rem); }
  .hero-lede { font-size: .98rem; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 360px; }
  .button { width: 100%; }
  .hero-card { display: none; }
  .hero-facts { position: relative; z-index: 2; }
  .facts-grid { min-height: 0; grid-template-columns: 1fr; padding: 13px 0; }
  .facts-grid > div { padding: 10px 0; border: 0; }
  .facts-grid span { font-size: .68rem; }
  .hero-note { align-items: flex-start; line-height: 1.5; }

  .intro-grid, .package-heading, .process-grid, .clarity-grid, .faq-grid, .closing-grid { grid-template-columns: 1fr; gap: 45px; }
  .intro-copy { padding-top: 0; }
  .section-heading h2, .section-top h2, .package-heading h2, .process h2, .clarity h2, .faq h2, .closing h2 { font-size: clamp(2.65rem, 12.6vw, 4rem); }
  .value-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .value-card, .value-card:first-child { min-height: 300px; border-left: 0; border-top: 1px solid var(--line); }
  .value-card:first-child { border-top: 0; }
  .icon-wrap { margin-bottom: 42px; }

  .section-top { display: block; margin-bottom: 40px; }
  .section-top > p { margin-top: 25px; }
  .destination-grid { grid-template-columns: 1fr; }
  .destination-card, .destination-card.exchange { grid-column: auto; min-height: 390px; }
  .destination-copy h3 { font-size: 2.55rem; }

  .package-heading { margin-bottom: 45px; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card { min-height: 600px; padding: 32px 25px; }
  .package-peak { padding-top: 52px; }
  .package-summary { min-height: 0; }
  .package-card .button { align-self: stretch; }

  .process-intro, .faq-intro { position: static; }
  .process-list li { grid-template-columns: 45px 1fr; gap: 12px; }
  .clarity-visual { min-height: 500px; }
  .clarity-copy { order: -1; }
  .faq-grid { gap: 55px; }
  .accordion summary { font-size: 1.15rem; }
  .closing { min-height: 650px; padding: 90px 0; }
  .contact-options { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .whatsapp-float { width: 50px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
  .globe-grid { grid-template-columns: 1fr; gap: 48px; }
  .globe-stage { min-height: 480px; cursor: default; }
  .globe-stage::before { inset: 52px 22px; }
  .globe-stage-top, .globe-stage-bottom { left: 18px; right: 18px; }
  .globe-stage-bottom span:nth-child(2) { display: none; }
  .globe-stat { grid-template-columns: 1fr; }
  .globe-stat span { max-width: none; }
  .page-hero { min-height: 610px; padding: 180px 0 70px; }
  .page-hero h1 { font-size: clamp(3.1rem, 14vw, 4.5rem); }
  .page-hero-copy > p:last-child { font-size: .95rem; }
  .breadcrumb { margin-bottom: 35px; }
  .story-grid, .experience-grid, .location-grid, .exchange-grid, .check-grid, .guide-layout, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .story-copy { padding-top: 0; }
  .experience-copy { padding: 28px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.17); }
  .principles-grid { grid-template-columns: 1fr; }
  .principle-card, .principle-card:first-child { min-height: 260px; border-left: 0; border-top: 1px solid var(--line); }
  .principle-card:first-child { border-top: 0; }
  .principle-card h3 { margin-top: 45px; }
  .location-section, .location-section-alt { padding: 80px 0; }
  .location-grid-reverse .location-image, .location-grid-reverse .location-copy { order: initial; }
  .location-image { min-height: 530px; }
  .location-copy h2 { font-size: 3.2rem; }
  .exchange-card { padding: 28px 23px; }
  .section-tight { padding-bottom: 84px; }
  .table-wrap { margin-right: -16px; width: calc(100% + 16px); }
  .guide-nav { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
  .guide-nav strong { grid-column: 1 / -1; }
  .guide-chapter { padding-bottom: 65px; margin-bottom: 65px; }
  .definition-grid { grid-template-columns: 1fr; }
  .definition-grid > div, .definition-grid > div:first-child { border-left: 0; border-top: 1px solid var(--line); }
  .definition-grid > div:first-child { border-top: 0; }
  .guide-check-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .enquiry-panel { padding: 34px 22px; }
  .reassurance-grid { grid-template-columns: 1fr; gap: 25px; }
  .reassurance-grid > div, .reassurance-grid > div:first-child { padding: 0 0 25px; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
}

@media (max-width: 380px) {
  :root { --container: calc(100vw - 24px); }
  .brand-type { display: none; }
  .hero h1 { font-size: 3.05rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-media img, .page-hero-media img { transform: scale(1.01); }
}

/* Resort portfolio styling */
.notice-inner > p > strong {
  margin-right: 10px;
  color: var(--gold);
  font-size: .66rem;
  letter-spacing: .16em;
}
.primary-nav { gap: 22px; }

.cinematic-hero {
  min-height: 760px;
  height: 100svh;
  max-height: 1080px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--forest-950);
  color: var(--white);
}
.hero-video-wrap,
.hero-video,
.hero-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-video-wrap {
  z-index: 0;
  overflow: hidden;
  background: var(--forest-950);
}
.hero-video,
.hero-video-poster {
  object-fit: cover;
  object-position: 54% center;
}
.hero-video {
  opacity: 0;
  transform: scale(1.012);
  transition: opacity .9s ease;
}
.hero-video-poster {
  opacity: 1;
  transform: scale(1.025);
  transition: opacity 1s ease;
}
.hero-video-wrap.is-ready .hero-video { opacity: 1; }
.hero-video-wrap.is-ready .hero-video-poster { opacity: 0; }
.hero-motion-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .78;
}
.hero-light-sweep {
  position: absolute;
  z-index: 2;
  top: -18%;
  bottom: -18%;
  left: -28%;
  width: 34%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-35vw,0,0) skewX(-13deg);
  background: linear-gradient(90deg, transparent, rgba(255,239,196,.18), rgba(255,255,255,.32), rgba(240,165,30,.12), transparent);
  filter: blur(20px);
  mix-blend-mode: screen;
  animation: hero-light-pass 8.5s cubic-bezier(.5,0,.25,1) 1.2s infinite;
}
@keyframes hero-light-pass {
  0%, 12% { opacity: 0; transform: translate3d(-35vw,0,0) skewX(-13deg); }
  24% { opacity: .72; }
  58% { opacity: .22; }
  70%, 100% { opacity: 0; transform: translate3d(165vw,0,0) skewX(-13deg); }
}
.cinematic-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23,26,24,.94) 0%, rgba(23,26,24,.74) 38%, rgba(23,26,24,.19) 73%, rgba(23,26,24,.12) 100%),
    linear-gradient(0deg, rgba(23,26,24,.93) 0%, transparent 38%),
    linear-gradient(180deg, rgba(23,26,24,.35), transparent 26%);
}
.cinematic-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  pointer-events: none;
  opacity: .45;
}
.cinematic-lines span { border-left: 1px solid rgba(255,255,255,.055); }
.cinematic-lines span:last-child { border-right: 1px solid rgba(255,255,255,.055); }
.route-motion {
  --motion-x: 0px;
  --motion-y: 0px;
  position: absolute;
  z-index: 3;
  top: 23%;
  right: max(24px, calc((100vw - 1280px) / 2));
  width: min(43vw, 630px);
  pointer-events: none;
  color: var(--white);
  opacity: .76;
  transform: translate3d(var(--motion-x), var(--motion-y), 0);
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.route-motion > p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 -14px 7%;
  color: rgba(255,255,255,.58);
  font-size: .57rem;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.route-motion > p span {
  width: 24px;
  height: 1px;
  overflow: hidden;
  background: rgba(240,165,30,.32);
}
.route-motion > p span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: route-signal 1.6s ease-in-out infinite;
}
.route-motion svg { width: 100%; overflow: visible; }
.route-track,
.route-live { fill: none; stroke-linecap: round; }
.route-track { stroke: rgba(255,255,255,.2); stroke-width: 1.25; }
.route-live {
  stroke: var(--gold);
  stroke-width: 2.2;
  stroke-dasharray: 8 13;
  filter: drop-shadow(0 0 6px rgba(240,165,30,.8));
  animation: route-dash 1.15s linear infinite;
}
.route-nodes circle {
  fill: rgba(23,26,24,.8);
  stroke: var(--gold);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  animation: route-node-pulse 2.2s ease-in-out infinite;
}
.route-nodes circle:nth-child(2) { animation-delay: -.45s; }
.route-nodes circle:nth-child(3) { animation-delay: -.9s; }
.route-nodes circle:nth-child(4) { animation-delay: -1.35s; }
.route-nodes circle:nth-child(5) { animation-delay: -1.8s; }
.route-marker {
  fill: #fff5d6;
  stroke: var(--gold);
  stroke-width: 4;
  filter: drop-shadow(0 0 10px rgba(255,238,181,1));
}
.route-readout {
  position: absolute;
  right: 1%;
  bottom: 11%;
  display: grid;
  justify-items: end;
  gap: 3px;
}
.route-readout span { color: var(--gold); font-size: .52rem; font-weight: 800; letter-spacing: .18em; }
.route-readout strong { font-size: .61rem; letter-spacing: .13em; font-weight: 700; }
.route-readout.is-swapping strong { animation: route-copy-swap .52s ease both; }
@keyframes route-dash { to { stroke-dashoffset: -21; } }
@keyframes route-signal { 0%,100% { transform: translateX(-105%); } 50% { transform: translateX(105%); } }
@keyframes route-node-pulse { 0%,100% { opacity: .46; transform: scale(.72); } 50% { opacity: 1; transform: scale(1.38); } }
@keyframes route-copy-swap { 0% { opacity: 0; transform: translateY(8px); } 100% { opacity: 1; transform: translateY(0); } }
.cinematic-copy {
  position: relative;
  z-index: 4;
  padding-top: 88px;
  padding-bottom: 150px;
}
.cinematic-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.76);
  font-size: 1.06rem;
}
.cinematic-copy h1 {
  max-width: 980px;
  margin: 0 0 29px;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7.75rem);
  line-height: .88;
  letter-spacing: -.057em;
  font-weight: 400;
}
.cinematic-copy h1 em { color: var(--gold); font-weight: 400; }
.cinematic-copy .eyebrow { animation: hero-copy-rise .8s cubic-bezier(.2,.75,.2,1) .12s both; }
.cinematic-copy h1 { animation: hero-copy-rise 1s cubic-bezier(.2,.75,.2,1) .24s both; }
.cinematic-copy > p:not(.eyebrow) { animation: hero-copy-rise .9s cubic-bezier(.2,.75,.2,1) .38s both; }
.cinematic-copy .hero-actions { animation: hero-copy-rise .9s cubic-bezier(.2,.75,.2,1) .5s both; }
@keyframes hero-copy-rise {
  from { opacity: 0; transform: translate3d(0,30px,0); }
  to { opacity: 1; transform: translate3d(0,0,0); }
}
.cinematic-toolbar {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  min-height: 112px;
  display: grid;
  grid-template-columns: minmax(230px,1fr) minmax(330px,.9fr) auto;
  align-items: center;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.scene-now { display: grid; grid-template-columns: auto 1fr; gap: 2px 20px; align-items: baseline; }
.scene-now small { grid-column: 1 / -1; color: var(--gold); font-size: .59rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.scene-now strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; }
.scene-now > span { color: rgba(255,255,255,.52); font-size: .7rem; letter-spacing: .05em; }
.scene-now.is-swapping strong,
.scene-now.is-swapping > span { animation: scene-copy-swap .52s cubic-bezier(.2,.72,.2,1) both; }
.scene-now.is-swapping > span { animation-delay: .05s; }
@keyframes scene-copy-swap {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}
.scene-tabs { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.scene-tabs button {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: center;
  padding: 15px 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.52);
  cursor: pointer;
}
.scene-tabs button > span { font-family: var(--serif); font-size: .78rem; }
.scene-tabs button i { height: 1px; position: relative; overflow: hidden; background: rgba(255,255,255,.23); }
.scene-tabs button i::after { content: ""; position: absolute; inset: 0; background: var(--gold); transform: scaleX(var(--scene-progress, 0)); transform-origin: left; }
.scene-tabs button.is-active { color: var(--white); }
.scene-pause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 94px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(23,26,24,.22);
  color: rgba(255,255,255,.76);
  cursor: pointer;
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pause-icon { width: 9px; height: 10px; border-left: 2px solid currentColor; border-right: 2px solid currentColor; }
.scene-pause[aria-pressed="true"] .pause-icon { width: 0; height: 0; border: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid currentColor; }
.visual-note { position: absolute; right: 0; top: -26px; margin: 0; color: rgba(255,255,255,.38); font-size: .57rem; letter-spacing: .08em; text-transform: uppercase; }
.motion-status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(240,165,30,.7);
  animation: motion-status 1.8s ease-out infinite;
}
@keyframes motion-status { 70% { box-shadow: 0 0 0 7px rgba(240,165,30,0); } 100% { box-shadow: 0 0 0 0 rgba(240,165,30,0); } }
.cinematic-hero.is-paused .hero-light-sweep,
.cinematic-hero.is-paused .route-live,
.cinematic-hero.is-paused .route-nodes circle,
.cinematic-hero.is-paused .route-motion > p span::after,
.cinematic-hero.is-paused .motion-status-dot { animation-play-state: paused; }

.service-handover { padding: 76px 0; background: var(--gold); color: var(--forest-950); }
.handover-grid { display: grid; grid-template-columns: .32fr 1fr .78fr; gap: 50px; align-items: start; }
.service-handover .eyebrow { margin: 10px 0 0; color: var(--forest-950); }
.service-handover .eyebrow > span { background: var(--forest-950); }
.service-handover h2,
.exchange-feature h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem,4.4vw,4.8rem);
  line-height: .95;
  letter-spacing: -.045em;
  font-weight: 400;
}
.service-handover h2 em { color: rgba(23,26,24,.62); font-weight: 400; }
.service-handover .handover-grid > div > p { margin-bottom: 16px; font-size: .89rem; }
.service-handover .text-link { border-color: var(--forest-950); }

.ownership-overview { background: var(--sand-50); }
.ownership-cards { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); }
.ownership-card {
  min-height: 540px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 42px 36px;
  border-left: 1px solid var(--line);
  background: var(--white);
}
.ownership-card:first-child { border-left: 0; }
.ownership-card--dark { background: var(--forest-900); color: var(--white); }
.ownership-index { position: absolute; right: 30px; top: 33px; color: rgba(43,46,43,.25); font-family: var(--serif); }
.ownership-card--dark .ownership-index { color: rgba(255,255,255,.3); }
.ownership-kicker { margin: 58px 0 10px; color: var(--gold-deep); font-size: .66rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.ownership-card--dark .ownership-kicker { color: var(--gold); }
.ownership-card h3 { margin: 0 0 22px; font-family: var(--serif); font-size: 2.45rem; line-height: 1; font-weight: 400; }
.ownership-card > p:not(.ownership-kicker) { color: var(--muted); font-size: .87rem; }
.ownership-card--dark > p:not(.ownership-kicker) { color: rgba(255,255,255,.64); }
.ownership-card ul { margin: 24px 0 38px; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.ownership-card--dark ul { border-color: rgba(255,255,255,.15); }
.ownership-card li { padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .75rem; }
.ownership-card--dark li { border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.65); }
.ownership-card > a { display: flex; justify-content: space-between; margin-top: auto; padding-top: 16px; color: var(--forest-800); border-top: 1px solid var(--line); font-size: .75rem; font-weight: 800; }
.ownership-card--dark > a { color: var(--gold); border-color: rgba(255,255,255,.15); }

.portfolio-preview { background: var(--forest-900); color: var(--white); }
.portfolio-preview .destination-grid { grid-template-columns: repeat(3,1fr); }
.portfolio-preview .destination-card { min-height: 540px; }
.portfolio-preview .destination-copy h3 { max-width: 85%; font-size: clamp(2rem,3vw,3rem); }
.portfolio-preview .centered-action { display: flex; justify-content: center; margin-top: 45px; }

.exchange-feature { position: relative; overflow: hidden; background: var(--forest-950); color: var(--white); }
.exchange-feature::before { content: ""; position: absolute; width: 650px; height: 650px; left: -280px; top: -260px; border: 1px solid rgba(240,165,30,.18); border-radius: 50%; box-shadow: 0 0 0 90px rgba(240,165,30,.025), 0 0 0 180px rgba(240,165,30,.018); }
.exchange-feature-grid { position: relative; display: grid; grid-template-columns: .75fr 1fr; gap: 120px; align-items: center; }
.exchange-number { display: flex; flex-direction: column; padding-left: 55px; }
.exchange-number span { color: var(--gold); font-family: var(--serif); font-size: clamp(5rem,10vw,9rem); line-height: .8; letter-spacing: -.06em; }
.exchange-number small { margin-top: 22px; color: rgba(255,255,255,.5); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }
.exchange-feature h2 { margin-bottom: 26px; }
.exchange-feature p:not(.eyebrow):not(.microcopy) { color: rgba(255,255,255,.61); }
.exchange-feature .button { margin-top: 17px; }
.microcopy { margin: 20px 0 0; color: rgba(255,255,255,.34); font-size: .63rem; }

.journey { background: var(--sand-100); }
.journey .process-intro { position: sticky; top: 160px; }
.journey .process-intro h2 { color: var(--ink); }
.journey .process-intro h2 em { color: var(--gold-deep); }
.journey .process-intro > p:not(.eyebrow) { color: var(--muted); }
.process-list--light li { border-color: var(--line); }
.process-list--light li:last-child { border-color: var(--line); }
.process-list--light h3 { color: var(--ink); }
.process-list--light p { color: var(--muted); }
.faq-home { background: var(--sand-50); }

.closing-cinematic { min-height: 680px; isolation: isolate; background: var(--forest-950); }
.closing-media,
.closing-media::after,
.closing-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.closing-media { z-index: -2; }
.closing-media img { object-fit: cover; object-position: center; }
.closing-media::after { content: ""; background: linear-gradient(90deg, rgba(23,26,24,.94), rgba(23,26,24,.7) 47%, rgba(23,26,24,.28)); }

@media (max-width: 1160px) {
  .primary-nav { gap: 13px; }
  .primary-nav > a:not(.nav-cta) { font-size: .69rem; }
  .nav-cta { padding-inline: 13px; }
  .cinematic-toolbar { grid-template-columns: 1fr .8fr auto; gap: 28px; }
  .route-motion { right: -2vw; width: 48vw; opacity: .58; }
  .handover-grid { grid-template-columns: .3fr 1fr .8fr; gap: 32px; }
}

@media (max-width: 760px) {
  .notice-inner { justify-content: space-between; gap: 12px; }
  .notice-inner > p { display: block; max-width: 72%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-size: .56rem; }
  .notice-inner > p > strong { display: none; }
  .notice-inner a span { display: none; }
  .cinematic-hero { min-height: 780px; height: 100svh; max-height: none; align-items: end; }
  .hero-video,
  .hero-video-poster { object-position: 66% center; }
  .cinematic-shade { background: linear-gradient(0deg, rgba(23,26,24,.98) 0%, rgba(23,26,24,.82) 49%, rgba(23,26,24,.3) 100%); }
  .cinematic-lines { grid-template-columns: repeat(2,1fr); }
  .cinematic-lines span:last-child { display: none; }
  .route-motion { top: 17%; right: -37%; width: 112vw; opacity: .4; }
  .route-motion > p,
  .route-readout { display: none; }
  .cinematic-copy { padding-top: 185px; padding-bottom: 162px; }
  .cinematic-copy h1 { font-size: clamp(3.35rem,14.6vw,5rem); line-height: .91; }
  .cinematic-copy > p:not(.eyebrow) { max-width: 520px; font-size: .92rem; }
  .cinematic-toolbar { min-height: 118px; grid-template-columns: 1fr auto; gap: 18px; }
  .scene-now { display: block; }
  .scene-now small, .scene-now strong, .scene-now > span { display: block; }
  .scene-now strong { margin: 3px 0; font-size: 1.06rem; }
  .scene-tabs { grid-column: 1 / -1; grid-row: 2; }
  .scene-tabs button { padding: 3px 0 12px; }
  .scene-pause { grid-column: 2; grid-row: 1; min-width: 50px; }
  .scene-pause [data-pause-label] { display: none; }
  .visual-note { display: none; }
  .handover-grid,
  .ownership-cards,
  .portfolio-preview .destination-grid,
  .exchange-feature-grid { grid-template-columns: 1fr; }
  .handover-grid { gap: 24px; }
  .service-handover { padding: 65px 0; }
  .service-handover .eyebrow { margin: 0; }
  .ownership-card,
  .ownership-card:first-child { min-height: 500px; border-left: 0; border-top: 1px solid var(--line); }
  .ownership-card:first-child { border-top: 0; }
  .portfolio-preview .destination-card { min-height: 460px; }
  .exchange-feature-grid { gap: 70px; }
  .exchange-number { padding-left: 0; }
  .journey .process-intro { position: static; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .cinematic-hero.is-video-visible .hero-video { display: block; }
  .cinematic-hero:not(.is-video-visible) .hero-video-poster,
  .cinematic-hero:not(.is-video-visible) .hero-video-wrap.is-ready .hero-video-poster { opacity: 1; transform: scale(1.01); }
  .hero-light-sweep,
  .route-marker { display: none; }
  .route-motion { transform: none; }
  .route-live { stroke-dashoffset: 0; }
  .scene-tabs button.is-active i::after { transform: scaleX(1); }
}

/* Resort directory */
.page-hero--resorts .page-hero-media img { object-position: center 55%; }
.page-hero .page-hero-copy .button { margin-top: 30px; }
.page-hero > .visual-note { z-index: 3; top: auto; right: max(24px, calc((100vw - 1200px) / 2)); bottom: 24px; }
.resort-intro { background: var(--sand-50); }
.resort-directory { background: var(--sand-50); }
.resort-listing { padding: 120px 0; scroll-margin-top: 110px; }
.resort-listing--alternate { background: var(--sand-100); }
.resort-listing--feature { background: var(--forest-900); color: var(--white); }
.resort-listing-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 90px; align-items: center; }
.resort-listing-grid--reverse .resort-listing-media { order: 2; }
.resort-listing-grid--reverse .resort-listing-copy { order: 1; }
.resort-listing-media { min-height: 610px; position: relative; margin: 0; overflow: hidden; box-shadow: var(--shadow); }
.resort-listing-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.75,.25,1); }
.resort-listing-media:hover img { transform: scale(1.025); }
.resort-listing-media figcaption { position: absolute; z-index: 2; left: 0; bottom: 0; padding: 11px 17px; background: rgba(23,26,24,.82); color: rgba(255,255,255,.68); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(9px); }
.resort-number { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: var(--gold-deep); font-family: var(--serif); font-size: .82rem; letter-spacing: .05em; }
.resort-type { display: inline-flex; padding: 7px 10px; margin: 0 0 17px; background: rgba(240,165,30,.16); color: var(--forest-800); font-size: .61rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.resort-listing--feature .resort-type { color: var(--gold); }
.resort-listing-copy h2 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(3rem,4.8vw,5.1rem); line-height: .91; letter-spacing: -.05em; font-weight: 400; }
.resort-listing-copy h2.resort-logo-heading { display: grid; place-items: center; width: min(100%, 340px); height: 190px; padding: 12px 20px; background: var(--forest-950); }
.resort-logo-heading img { display: block; width: auto; max-width: 100%; height: auto; max-height: 166px; object-fit: contain; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.resort-listing-copy .lead { color: var(--forest-800); font-family: var(--serif); font-size: 1.36rem; line-height: 1.42; }
.resort-listing--feature .resort-listing-copy .lead { color: rgba(255,255,255,.77); }
.resort-facts { margin: 30px 0; border-top: 1px solid var(--line); }
.resort-listing--feature .resort-facts { border-color: rgba(255,255,255,.16); }
.resort-facts > div { display: grid; grid-template-columns: 105px 1fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.resort-listing--feature .resort-facts > div { border-color: rgba(255,255,255,.16); }
.resort-facts strong { color: var(--ink); font-size: .73rem; text-transform: uppercase; letter-spacing: .06em; }
.resort-listing--feature .resort-facts strong { color: var(--gold); }
.resort-facts span { color: var(--muted); font-size: .79rem; }
.resort-listing--feature .resort-facts span { color: rgba(255,255,255,.6); }
.resort-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.resort-listing--feature .button-dark { background: var(--gold); color: var(--forest-950); }
.resort-listing--feature .text-link { border-color: rgba(255,255,255,.5); }
.resort-ownership-guide { background: var(--sand-50); }
.ownership-cards--compact .ownership-card { min-height: 390px; }
.ownership-cards--compact .ownership-card h3 { margin-top: 64px; }
.resort-disclaimer { margin-top: 27px; padding-top: 20px; border-top: 1px solid var(--line); }
.resort-disclaimer p { max-width: 900px; margin: 0; color: var(--muted); font-size: .69rem; }

@media (max-width: 1040px) {
  .resort-listing-grid { gap: 48px; }
  .resort-listing-media { min-height: 520px; }
}

@media (max-width: 760px) {
  .page-hero > .visual-note { display: none; }
  .resort-listing { padding: 80px 0; }
  .resort-listing-grid { grid-template-columns: 1fr; gap: 42px; }
  .resort-listing-grid--reverse .resort-listing-media,
  .resort-listing-grid--reverse .resort-listing-copy { order: initial; }
  .resort-listing-media { min-height: 400px; }
  .resort-listing-copy h2 { font-size: 3.1rem; }
  .resort-facts > div { grid-template-columns: 88px 1fr; }
  .resort-actions { align-items: stretch; flex-direction: column; }
  .resort-actions .button { width: 100%; }
}

/* Ownership, guide and support pages */
.page-hero-copy > p.visual-note {
  position: absolute;
  top: auto;
  right: 0;
  bottom: -72px;
  max-width: none;
  margin: 0;
  color: rgba(255,255,255,.42);
  font-size: .57rem;
  line-height: 1.2;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ownership-hero .page-hero-media img,
.page-hero--cinematic .page-hero-media img { object-position: center 55%; }
.ownership-definition,
.ownership-mechanics,
.use-models,
.featured-property,
.ownership-pricing-note { background: var(--sand-50); }
.ownership-paths { background: var(--sand-50); }
.ownership-cards--detail .ownership-card { min-height: 590px; }
.ownership-fact-grid .principle-card { min-height: 310px; }
.ownership-fact-grid .principle-card h3 { margin-top: 58px; }

.resort-collection { background: var(--forest-900); color: var(--white); }
.resort-list { border-top: 1px solid rgba(255,255,255,.17); }
.resort-list-item {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.17);
}
.resort-list-item p { margin: 0 0 3px; color: rgba(255,255,255,.48); font-size: .63rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.resort-list-item h3 { margin: 0; font-family: var(--serif); font-size: 1.85rem; font-weight: 400; }
.resort-list-item > a { display: inline-flex; align-items: center; gap: 20px; color: var(--gold); font-size: .74rem; font-weight: 750; }

.levy-feature,
.rental-feature,
.use-calendar { position: relative; overflow: hidden; background: var(--forest-950); color: var(--white); }
.levy-feature::before,
.rental-feature::before { content: ""; position: absolute; width: 580px; height: 580px; left: -260px; top: -250px; border: 1px solid rgba(240,165,30,.16); border-radius: 50%; box-shadow: 0 0 0 90px rgba(240,165,30,.025); }
.levy-feature .exchange-feature-grid,
.rental-feature .exchange-feature-grid { position: relative; }
.levy-feature h2,
.rental-feature h2,
.use-calendar h2 { margin: 0 0 25px; font-family: var(--serif); font-size: clamp(2.8rem,4.5vw,4.8rem); line-height: .95; letter-spacing: -.045em; font-weight: 400; }
.levy-feature p:not(.eyebrow),
.rental-feature p:not(.eyebrow) { color: rgba(255,255,255,.61); }
.levy-feature .exchange-number span,
.rental-feature .exchange-number span { font-size: clamp(4.5rem,8vw,7.3rem); }

.exchange-section { background: var(--sand-100); }
.exchange-section .section-heading h2 em { color: var(--gold-deep); }
.exchange-steps { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 68px; border: 1px solid var(--line); }
.exchange-steps .principle-card { min-height: 320px; border: 0; border-left: 1px solid var(--line); }
.exchange-steps .principle-card:first-child { border-left: 0; }
.exchange-steps .principle-card h3 { margin-top: 52px; }

.featured-property { padding-top: 35px; }
.featured-property-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 90px; align-items: center; }
.featured-property-grid--reverse .featured-property-media { order: 2; }
.featured-property-grid--reverse .featured-property-copy { order: 1; }
.featured-property-media { min-height: 620px; position: relative; margin: 0; overflow: hidden; box-shadow: var(--shadow); }
.featured-property-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.featured-property-media figcaption { position: absolute; z-index: 2; left: 0; bottom: 0; padding: 11px 17px; background: rgba(23,26,24,.82); color: rgba(255,255,255,.67); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.featured-property-copy h2 { margin: 0 0 23px; font-family: var(--serif); font-size: clamp(3.3rem,5.2vw,5.6rem); line-height: .9; letter-spacing: -.052em; font-weight: 400; }
.featured-property-copy .lead { color: var(--forest-800); font-family: var(--serif); font-size: 1.35rem; line-height: 1.42; }
.featured-property-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.featured-property-copy .button { margin-top: 17px; }

.use-calendar .process-intro { position: sticky; top: 160px; }
.use-calendar .process-intro h2 em { color: var(--gold); }
.ownership-responsibilities { background: var(--sand-100); }
.ownership-pricing-note { padding-top: 75px; padding-bottom: 75px; }
.legal-callout { padding: 44px 48px; border: 1px solid var(--line); border-left: 4px solid var(--gold-deep); background: var(--white); box-shadow: 0 18px 55px rgba(23,26,24,.07); }
.legal-callout .eyebrow { margin-bottom: 17px; }
.legal-callout h2 { margin: 0 0 13px; font-family: var(--serif); font-size: clamp(2rem,3vw,3.25rem); line-height: 1; font-weight: 400; }
.legal-callout > p:last-child { max-width: 930px; margin: 0; color: var(--muted); font-size: .82rem; }

.faq-library { background: var(--sand-50); }
.faq-content .guide-chapter { padding-bottom: 78px; margin-bottom: 78px; }
.faq-category .accordion { margin-top: 31px; }
.faq-category .accordion p { max-width: 760px; }
.continuity-band .experience-statement strong { font-size: clamp(3.7rem,7vw,6.4rem); }

@media (max-width: 1040px) {
  .featured-property-grid { gap: 50px; }
  .featured-property-media { min-height: 520px; }
  .exchange-steps { grid-template-columns: 1fr 1fr; }
  .exchange-steps .principle-card:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .exchange-steps .principle-card:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .page-hero-copy > p.visual-note { display: none; }
  .ownership-cards--detail .ownership-card { min-height: 530px; }
  .resort-list-item { min-height: 105px; grid-template-columns: 1fr; gap: 12px; }
  .resort-list-item h3 { font-size: 1.45rem; }
  .resort-list-item > a { padding-bottom: 20px; }
  .exchange-steps { grid-template-columns: 1fr; }
  .exchange-steps .principle-card,
  .exchange-steps .principle-card:first-child,
  .exchange-steps .principle-card:nth-child(3),
  .exchange-steps .principle-card:nth-child(4) { min-height: 270px; border-left: 0; border-top: 1px solid var(--line); }
  .exchange-steps .principle-card:first-child { border-top: 0; }
  .featured-property-grid { grid-template-columns: 1fr; gap: 42px; }
  .featured-property-grid--reverse .featured-property-media,
  .featured-property-grid--reverse .featured-property-copy { order: initial; }
  .featured-property-media { min-height: 410px; }
  .use-calendar .process-intro { position: static; }
  .legal-callout { padding: 34px 24px; }
  .ownership-pricing-note { padding-top: 55px; padding-bottom: 55px; }
}

/* Paradise Consulting brand alignment */
.notice-bar { border-bottom-color: rgba(240,165,30,.28); }
.notice-inner > p > strong { color: var(--gold); }
.eyebrow { color: var(--brand-red); }
.eyebrow > span { background: var(--brand-blue); }
.eyebrow-light { color: rgba(255,255,255,.74); }
.eyebrow-light > span { background: var(--gold); }
.cinematic-shade {
  background:
    linear-gradient(90deg, rgba(23,26,24,.95) 0%, rgba(23,26,24,.76) 38%, rgba(23,26,24,.2) 73%, rgba(23,26,24,.12) 100%),
    linear-gradient(0deg, rgba(23,26,24,.94) 0%, transparent 38%),
    linear-gradient(180deg, rgba(23,26,24,.38), transparent 26%);
}
.route-live { stroke: var(--brand-blue); filter: drop-shadow(0 0 7px rgba(5,140,180,.9)); }
.route-marker { fill: #fff4c9; stroke: var(--brand-red); }
.scene-tabs button i::after { background: linear-gradient(90deg, var(--brand-red), var(--gold)); }
.motion-status-dot { background: var(--brand-blue); box-shadow: 0 0 0 0 rgba(5,140,180,.7); }
@keyframes motion-status { 70% { box-shadow: 0 0 0 7px rgba(5,140,180,0); } 100% { box-shadow: 0 0 0 0 rgba(5,140,180,0); } }
.service-handover { background: var(--brand-red); color: var(--white); }
.service-handover .eyebrow { color: var(--white); }
.service-handover .eyebrow > span { background: var(--gold); }
.service-handover h2 em { color: var(--gold); }
.service-handover .text-link { border-color: rgba(255,255,255,.7); }
.card-arrow { color: var(--gold); border-color: rgba(5,140,180,.75); }
.destination-card:hover .card-arrow { background: var(--brand-blue); color: var(--white); }
.ownership-card--dark { box-shadow: inset 0 4px 0 var(--brand-red); }
.button-dark:hover { background: var(--brand-red); }
.legal-callout { border-left-color: var(--brand-red); }
.site-footer { border-top: 4px solid var(--brand-red); }
.footer-brand .brand-logo { width: 178px; }
.footer-main nav a:hover,
.social-links a:hover { color: var(--gold); }

/* Individual resort pages */
.resort-detail-hero {
  min-height: 830px;
  height: 100svh;
  max-height: 1040px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--forest-950);
}
.resort-detail-media,
.resort-detail-media img,
.resort-detail-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.resort-detail-media { z-index: -3; margin: 0; }
.resort-detail-media img { object-fit: cover; object-position: 55% center; transform: scale(1.035); animation: resort-camera 16s ease-out both; }
.resort-castleburn .resort-detail-media img { object-position: 55% 58%; }
.resort-wilderness-dunes .resort-detail-media img { object-position: 60% center; }
.resort-detail-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(23,26,24,.96) 0%, rgba(23,26,24,.79) 42%, rgba(23,26,24,.22) 78%),
    linear-gradient(0deg, rgba(23,26,24,.97) 0%, transparent 36%);
}
@keyframes resort-camera {
  from { transform: scale(1.035) translate3d(0,0,0); }
  to { transform: scale(1.085) translate3d(-.6%,-.25%,0); }
}
.resort-hero-orbit { position: absolute; z-index: -1; right: -170px; top: 7%; width: 650px; height: 650px; opacity: .45; }
.resort-hero-orbit span { position: absolute; inset: 0; border: 1px solid rgba(240,165,30,.28); border-radius: 50%; animation: resort-orbit 13s linear infinite; }
.resort-hero-orbit span:nth-child(2) { inset: 80px; border-color: rgba(5,140,180,.42); animation-direction: reverse; animation-duration: 9s; }
.resort-hero-orbit span:nth-child(3) { inset: 175px; border-color: rgba(181,8,27,.5); animation-duration: 6s; }
.resort-hero-orbit span::after { content: ""; position: absolute; width: 8px; height: 8px; left: 50%; top: -4px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 18px rgba(240,165,30,.9); }
.resort-hero-orbit span:nth-child(2)::after { background: var(--brand-blue); box-shadow: 0 0 18px rgba(5,140,180,.9); }
.resort-hero-orbit span:nth-child(3)::after { background: var(--brand-red); box-shadow: 0 0 18px rgba(181,8,27,.9); }
@keyframes resort-orbit { to { transform: rotate(360deg); } }
.resort-detail-copy { position: relative; z-index: 2; padding: 150px 0 170px; }
.resort-detail-copy .breadcrumb { margin-bottom: 36px; }
.resort-detail-index { display: flex; align-items: center; gap: 13px; margin: 0 0 17px; color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.resort-detail-index span { width: 40px; height: 1px; background: var(--brand-blue); }
.resort-detail-type { display: inline-flex; margin: 0 0 20px; padding: 8px 12px; background: var(--brand-red); color: var(--white); font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.resort-detail-copy h1 { max-width: 900px; margin: 0 0 20px; font-family: var(--serif); font-size: clamp(4.2rem,8vw,8.3rem); line-height: .84; letter-spacing: -.065em; font-weight: 400; }
.resort-detail-lede { max-width: 650px; margin: 0 0 32px; color: rgba(255,255,255,.78); font-family: var(--serif); font-size: clamp(1.25rem,2vw,1.75rem); line-height: 1.38; }
.resort-hero-facts {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(255,255,255,.2);
  background: rgba(23,26,24,.78);
  backdrop-filter: blur(14px);
}
.resort-hero-facts > div { min-height: 108px; padding: 24px 28px; border-left: 1px solid rgba(255,255,255,.15); }
.resort-hero-facts > div:first-child { border-left: 4px solid var(--brand-red); }
.resort-hero-facts small,
.resort-hero-facts strong { display: block; }
.resort-hero-facts small { margin-bottom: 5px; color: var(--gold); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.resort-hero-facts strong { font-family: var(--serif); font-size: 1.08rem; line-height: 1.3; font-weight: 400; }
.resort-detail-hero > .visual-note { position: absolute; z-index: 4; right: max(24px,calc((100vw - 1200px)/2)); top: auto; bottom: 120px; }

.resort-story { background: var(--sand-50); }
.resort-story-grid { display: grid; grid-template-columns: .8fr 1.05fr; gap: 110px; align-items: start; }
.resort-story .section-heading { position: sticky; top: 160px; }
.resort-story .section-heading h2 { max-width: 540px; font-size: clamp(3.1rem,5.3vw,5.8rem); }
.resort-story .story-copy { padding-top: 62px; }
.resort-story .story-copy .lead { color: var(--ink); font-family: var(--serif); font-size: 1.55rem; line-height: 1.45; }
.resort-story .story-copy > p:not(.lead) { color: var(--muted); font-size: 1rem; }

.resort-experience { background: var(--forest-900); color: var(--white); }
.resort-experience .compact-heading { margin-bottom: 62px; }
.resort-experience .compact-heading h2 { color: var(--white); }
.resort-experience-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid rgba(255,255,255,.15); }
.resort-experience-card { min-height: 400px; display: flex; flex-direction: column; padding: 38px 34px; border-left: 1px solid rgba(255,255,255,.15); }
.resort-experience-card:first-child { border-left: 0; box-shadow: inset 0 4px 0 var(--brand-red); }
.resort-experience-card:nth-child(2) { box-shadow: inset 0 4px 0 var(--gold); }
.resort-experience-card:nth-child(3) { box-shadow: inset 0 4px 0 var(--brand-blue); }
.resort-experience-card > span { color: rgba(255,255,255,.34); font-family: var(--serif); font-size: 1rem; }
.resort-experience-card h3 { margin: auto 0 17px; font-family: var(--serif); font-size: 2.25rem; line-height: 1.04; font-weight: 400; }
.resort-experience-card p { margin: 0; color: rgba(255,255,255,.64); font-size: 1rem; }

.resort-ownership-panel { background: var(--sand-100); }
.resort-ownership-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: center; }
.resort-ownership-media { min-height: 620px; position: relative; margin: 0; overflow: hidden; box-shadow: var(--shadow); }
.resort-ownership-media::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.22); pointer-events: none; }
.resort-ownership-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.75,.25,1); }
.resort-ownership-media:hover img { transform: scale(1.035); }
.resort-ownership-media figcaption { position: absolute; z-index: 2; left: 0; bottom: 0; padding: 11px 17px; background: rgba(23,26,24,.84); color: rgba(255,255,255,.7); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.resort-ownership-copy h2 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(3rem,4.8vw,5.1rem); line-height: .92; letter-spacing: -.05em; font-weight: 400; }
.resort-ownership-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1rem; }

.resort-planning { background: var(--sand-50); }
.planning-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); }
.planning-card { min-height: 330px; display: flex; flex-direction: column; padding: 32px 28px; border-left: 1px solid var(--line); background: var(--white); }
.planning-card:first-child { border-left: 0; }
.planning-card > span { color: var(--brand-red); font-family: var(--serif); }
.planning-card h3 { margin: auto 0 14px; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.planning-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.resort-next { display: grid; grid-template-columns: 1fr 1fr; background: var(--forest-950); color: var(--white); }
.resort-next a { min-height: 180px; display: flex; flex-direction: column; justify-content: center; padding: 36px max(24px,calc((100vw - 1200px)/2)); transition: background .25s ease; }
.resort-next a:first-child { align-items: flex-end; padding-right: 54px; text-align: right; background: var(--forest-800); }
.resort-next a:last-child { padding-left: 54px; background: var(--brand-red); }
.resort-next a:hover { background: var(--gold); color: var(--forest-950); }
.resort-next small { margin-bottom: 5px; color: rgba(255,255,255,.58); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.resort-next a:hover small { color: rgba(23,26,24,.62); }
.resort-next strong { font-family: var(--serif); font-size: clamp(1.4rem,2.5vw,2.3rem); font-weight: 400; }

@media (max-width: 1040px) {
  .brand-logo { width: 142px; }
  .resort-story-grid,
  .resort-ownership-grid { gap: 55px; }
  .resort-ownership-media { min-height: 520px; }
  .planning-grid { grid-template-columns: 1fr 1fr; }
  .planning-card:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .planning-card:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .brand-logo { width: 126px; }
  .footer-brand .brand-logo { width: 160px; }
  .cinematic-shade { background: linear-gradient(0deg, rgba(23,26,24,.98) 0%, rgba(23,26,24,.84) 49%, rgba(23,26,24,.3) 100%); }
  .resort-detail-hero { min-height: 980px; height: auto; max-height: none; align-items: flex-end; }
  .resort-detail-media img { object-position: 64% center; }
  .resort-detail-overlay { background: linear-gradient(0deg, rgba(23,26,24,.99) 0%, rgba(23,26,24,.9) 50%, rgba(23,26,24,.28) 100%); }
  .resort-hero-orbit { width: 470px; height: 470px; right: -255px; top: 15%; opacity: .33; }
  .resort-detail-copy { padding: 205px 0 300px; }
  .resort-detail-copy .breadcrumb { margin-bottom: 28px; }
  .resort-detail-copy h1 { font-size: clamp(3.55rem,16vw,5rem); line-height: .88; }
  .resort-detail-lede { font-size: 1.17rem; }
  .resort-detail-copy .hero-actions { max-width: none; }
  .resort-hero-facts { grid-template-columns: 1fr; }
  .resort-hero-facts > div { min-height: 0; padding: 13px 16px; border-left: 4px solid transparent; border-top: 1px solid rgba(255,255,255,.12); }
  .resort-hero-facts > div:first-child { border-top: 0; border-left-color: var(--brand-red); }
  .resort-hero-facts strong { font-size: .98rem; }
  .resort-detail-hero > .visual-note { display: none; }
  .resort-story-grid,
  .resort-ownership-grid,
  .resort-experience-grid { grid-template-columns: 1fr; }
  .resort-story-grid { gap: 24px; }
  .resort-story .section-heading { position: static; }
  .resort-story .story-copy { padding-top: 0; }
  .resort-story .story-copy .lead { font-size: 1.28rem; }
  .resort-experience-card,
  .resort-experience-card:first-child { min-height: 315px; border-left: 0; border-top: 1px solid rgba(255,255,255,.15); }
  .resort-experience-card:first-child { border-top: 0; }
  .resort-ownership-media { min-height: 410px; }
  .planning-grid { grid-template-columns: 1fr; }
  .planning-card,
  .planning-card:first-child,
  .planning-card:nth-child(3),
  .planning-card:nth-child(4) { min-height: 275px; border-left: 0; border-top: 1px solid var(--line); }
  .planning-card:first-child { border-top: 0; }
  .resort-next { grid-template-columns: 1fr; }
  .resort-next a { min-height: 135px; padding: 26px 22px !important; }
  .resort-next a:first-child { align-items: flex-start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .resort-detail-media img { animation: none; transform: scale(1.01); }
  .resort-hero-orbit span { animation: none; }
}

/* Blue-forward brand refinement and readability pass */
:root {
  --brand-blue: #0798c7;
  --brand-blue-deep: #035f7c;
  --brand-blue-soft: #e8f7fb;
  --blue-night: #102d36;
  --muted: #58645f;
}

:focus-visible { outline-color: var(--brand-blue); }
.brand-logo { filter: drop-shadow(0 6px 14px rgba(0,0,0,.28)); }
.notice-bar { border-bottom-color: rgba(7,152,199,.42); }
.notice-inner a strong { color: #7fd9f3; }
.primary-nav > a:not(.nav-cta) { font-size: .875rem; }
.primary-nav > a:not(.nav-cta)::after { height: 2px; background: var(--brand-blue); }
.primary-nav > a[aria-current="page"],
.site-header.is-scrolled .primary-nav > a[aria-current="page"] { color: #7fd9f3; }
.nav-cta { border-color: var(--brand-blue); background: var(--brand-blue); font-size: .875rem; }
.nav-cta:hover { border-color: var(--brand-red); background: var(--brand-red); color: var(--white); }
.site-header.is-scrolled .nav-cta { border-color: var(--brand-blue); }

.button { font-size: .875rem; }
.button-primary { background: var(--brand-blue); }
.button-primary:hover { background: var(--brand-red); color: var(--white); }
.button-dark { background: var(--blue-night); }
.button-dark:hover { background: var(--brand-blue-deep); }
.text-link { border-bottom-color: var(--brand-blue); color: var(--brand-blue-deep); font-size: .875rem; }
.text-link span { color: var(--brand-blue); }
.eyebrow { color: var(--brand-blue-deep); font-size: .78rem; }
.eyebrow > span { width: 42px; height: 2px; background: var(--brand-blue); }
.eyebrow-light { color: rgba(255,255,255,.82); }
.eyebrow-light > span { background: #63c9e8; }

.service-handover {
  background: linear-gradient(125deg, var(--brand-blue-deep), var(--brand-blue) 72%, #16a8d2);
  color: var(--white);
}
.service-handover .eyebrow { color: var(--white); }
.service-handover .eyebrow > span { background: var(--gold); }
.service-handover .text-link { color: var(--white); border-color: rgba(255,255,255,.76); }
.service-handover h2 em { color: #ffe19a; }
.ownership-card--dark { background: linear-gradient(155deg, var(--blue-night), #183b45); box-shadow: inset 0 4px 0 var(--brand-blue); }
.portfolio-preview,
.resort-collection,
.resort-experience { background: linear-gradient(145deg, #172522, var(--blue-night)); }
.icon-wrap { border-color: rgba(7,152,199,.42); background: var(--brand-blue-soft); color: var(--brand-blue-deep); }
.card-arrow { color: #8edff4; border-color: rgba(7,152,199,.85); }
.destination-card:hover .card-arrow { background: var(--brand-blue); }
.clarity-badge,
.location-image > span { background: var(--brand-blue-deep); }
.guide-callout,
.guide-disclaimer,
.legal-callout { border-left-color: var(--brand-blue); }
.contact-methods span,
.form-heading > span,
.guide-nav a:hover,
.chapter-number { color: var(--brand-blue-deep); }
.comparison-table thead th:first-child { color: #8edff4; }
.resort-number { color: var(--brand-blue-deep); }
.resort-detail-type { background: var(--brand-blue); }
.resort-hero-facts > div:first-child { border-left-color: var(--brand-blue); }
.resort-experience-card:first-child { box-shadow: inset 0 4px 0 var(--brand-blue); }
.planning-card > span { color: var(--brand-blue-deep); }
.resort-next a:last-child { background: var(--brand-blue-deep); }
.site-footer { border-top-color: var(--brand-blue); }
.footer-main nav a:hover,
.social-links a:hover { color: #7fd9f3; }

.hero-lede,
.cinematic-copy > p:not(.eyebrow),
.intro-copy > p:not(.lead),
.section-top > p,
.package-heading > p,
.process-intro > p:not(.eyebrow),
.clarity-copy > p:not(.eyebrow),
.story-copy > p:not(.lead),
.location-copy > p:not(.eyebrow),
.exchange-copy > p:not(.eyebrow),
.featured-property-copy > p:not(.eyebrow):not(.lead),
.contact-details > p:not(.eyebrow),
.closing-action > p { font-size: 1rem; line-height: 1.72; }

.hero-card > p,
.value-card p,
.package-summary,
.process-list p,
.principle-card p,
.accordion details p,
.exchange-card li,
.guide-callout p,
.guide-disclaimer p,
.numbered-checklist p,
.legal-callout > p:last-child,
.planning-card p { font-size: .95rem; line-height: 1.65; }

.destination-copy p,
.card-kicker,
.resort-type,
.resort-list-item p,
.resort-detail-type,
.resort-hero-facts small { font-size: .75rem; }
.destination-copy > span,
.resort-facts strong,
.resort-facts span,
.resort-list-item > a,
.contact-social,
.field label { font-size: .875rem; }
.footer-main > p { font-size: .92rem; line-height: 1.65; }
.footer-main nav a,
.social-links a { font-size: .875rem; }
.footer-bottom p { font-size: .75rem; line-height: 1.55; }

@media (max-width: 1040px) {
  .primary-nav > a:not(.nav-cta),
  .nav-cta { font-size: .8rem; }
}

@media (max-width: 760px) {
  .brand-logo { width: 132px; }
  .footer-brand .brand-logo { width: 172px; }
  .button { width: auto; min-height: 52px; font-size: .84rem; }
  .section { padding: 88px 0; }
}

/* Accredited-agency and appointment additions */
.text-link-light { color: var(--white); border-bottom-color: rgba(255,255,255,.7); }
.text-link-light span { color: #bfeefa; }

.resort-media-showcase { background: linear-gradient(180deg, #f4fbfd 0%, #ffffff 100%); }
.resort-media-showcase .package-heading { margin-bottom: 42px; }
.resort-media-layout { display: grid; grid-template-columns: minmax(0,1.55fr) minmax(310px,.65fr); gap: 18px; align-items: stretch; }
.resort-film,
.resort-gallery figure { position: relative; margin: 0; overflow: hidden; background: var(--blue-night); box-shadow: 0 20px 55px rgba(8,61,78,.13); }
.resort-film { min-height: 660px; }
.resort-film::after,
.resort-gallery figure::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); }
.resort-film video,
.resort-gallery img { width: 100%; height: 100%; object-fit: cover; }
.resort-film video { position: absolute; inset: 0; }
.resort-film figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  padding: 15px 18px;
  background: rgba(4,49,65,.82);
  color: var(--white);
  backdrop-filter: blur(10px);
}
.resort-film figcaption span,
.resort-gallery figcaption { font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.resort-film figcaption span { color: #91e2f5; }
.resort-film figcaption strong { margin-top: 3px; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.resort-gallery { display: grid; grid-template-rows: repeat(3,1fr); gap: 18px; }
.resort-gallery figure { min-height: 196px; }
.resort-gallery img { position: absolute; inset: 0; transition: transform .7s ease; }
.resort-gallery figure:hover img { transform: scale(1.045); }
.resort-gallery figcaption { position: absolute; z-index: 2; left: 14px; bottom: 14px; padding: 9px 11px; background: rgba(4,49,65,.82); color: var(--white); }

.page-hero--appointment .page-hero-media img { object-position: center 54%; }
.appointment-section { background: linear-gradient(180deg, #f5fbfd 0%, var(--sand-50) 100%); }
.appointment-grid { display: grid; grid-template-columns: minmax(300px,.72fr) minmax(540px,1.28fr); gap: 72px; align-items: start; }
.appointment-intro { position: sticky; top: 145px; }
.appointment-intro h2 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(3rem,4.8vw,5.1rem); line-height: .94; letter-spacing: -.05em; font-weight: 400; }
.appointment-intro > p:not(.eyebrow) { color: var(--muted); font-size: 1rem; line-height: 1.75; }
.appointment-context { margin: 26px 0; padding: 17px 18px; border-left: 4px solid var(--brand-blue); background: var(--brand-blue-soft); color: var(--brand-blue-deep); font-weight: 700; line-height: 1.55; }
.appointment-points { margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.appointment-points li { display: grid; grid-template-columns: 38px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.appointment-points li > span { color: var(--brand-blue-deep); font-family: var(--serif); }
.appointment-points strong { display: block; margin-bottom: 5px; font-family: var(--serif); font-size: 1.3rem; font-weight: 400; }
.appointment-points p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.6; }
.appointment-direct { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 28px; }
.appointment-direct p { width: 100%; margin: 0 0 3px; color: var(--muted); }
.appointment-direct a { color: var(--brand-blue-deep); font-size: .875rem; font-weight: 800; border-bottom: 1px solid rgba(3,95,124,.35); }
.appointment-calendar { overflow: hidden; border: 1px solid rgba(7,152,199,.18); background: var(--white); box-shadow: 0 30px 85px rgba(8,61,78,.15); }
.appointment-calendar-heading { display: flex; justify-content: space-between; gap: 18px; padding: 22px 25px; border-bottom: 1px solid var(--line); background: #f7fcfe; }
.appointment-calendar-heading span { color: var(--brand-blue-deep); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.appointment-calendar-heading strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.appointment-calendar iframe { display: block; width: 100%; min-height: 760px; border: 0; background: var(--white); }
.appointment-fallback { display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 22px 25px; border-top: 1px solid var(--line); }
.appointment-fallback p { max-width: 390px; margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.appointment-fallback .button { flex: 0 0 auto; }

@media (max-width: 1040px) {
  .appointment-grid { grid-template-columns: 1fr; gap: 48px; }
  .appointment-intro { position: static; }
  .resort-media-layout { grid-template-columns: 1fr; }
  .resort-film { min-height: 560px; }
  .resort-gallery { grid-template-columns: repeat(3,1fr); grid-template-rows: none; }
  .resort-gallery figure { min-height: 220px; }
}

@media (max-width: 760px) {
  .resort-media-showcase .package-heading { margin-bottom: 30px; }
  .resort-film { min-height: 420px; }
  .resort-film figcaption { left: 14px; bottom: 14px; }
  .resort-gallery { grid-template-columns: 1fr; }
  .resort-gallery figure { min-height: 250px; }
  .appointment-grid { gap: 34px; }
  .appointment-calendar-heading,
  .appointment-fallback { align-items: flex-start; flex-direction: column; }
  .appointment-calendar iframe { min-height: 700px; }
}

@media (prefers-reduced-motion: reduce) {
  .resort-film video { animation: none; }
}

/* Atlas Software attribution */
.footer-bottom { flex-wrap: wrap; }
.footer-bottom .atlas-credit { font-size: .875rem; line-height: 1.6; color: #b9cbd5; }
.atlas-credit a { color: #b9cbd5; text-decoration: underline; text-underline-offset: 3px; }
.atlas-credit a:hover, .atlas-credit a:focus-visible { color: #fff; }

/* Let mobile hero content determine its height instead of overflowing behind navigation. */
@media (max-width: 760px) {
  .notice-inner { gap: 8px; }
  .notice-inner > p { flex: 1 1 0; min-width: 0; max-width: none; }
  .notice-inner > a { flex: 0 0 auto; white-space: nowrap; }
  .notice-inner a strong { white-space: nowrap; }
  .cinematic-hero { height: auto; min-height: 100svh; max-height: none; display: block; }
  .cinematic-copy { padding-top: 150px; padding-bottom: 36px; }
  .cinematic-copy h1 { line-height: 1.02; }
  .cinematic-copy .eyebrow { line-height: 1.6; }
  .cinematic-toolbar { position: relative; left: auto; bottom: auto; transform: none; padding-top: 18px; padding-bottom: 24px; }
}

/* Original-publisher photo galleries and resort videos */
#resort-media-title { scroll-margin-top: 180px; }
.resort-source-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.resort-source-card { padding: clamp(26px,4vw,48px); border: 1px solid var(--line); background: var(--white); display: flex; flex-direction: column; align-items: flex-start; }
.resort-source-card h3 { margin: 0 0 20px; font-family: var(--serif); font-weight: 400; font-size: clamp(2rem,3.5vw,3rem); line-height: 1.1; }
.resort-source-card > p:not(.eyebrow) { font-size: 1rem; line-height: 1.7; margin: 0 0 28px; }
.resort-source-card .button { margin-top: auto; max-width: 100%; white-space: normal; }
.resort-source-card--video { background: var(--brand-blue-deep); color: var(--white); }
.resort-source-card > .resort-source-note { font-size: .875rem; margin: 20px 0 0; opacity: .85; }
@media (max-width: 760px) {
  .resort-source-grid { grid-template-columns: 1fr; }
  #resort-media-title { scroll-margin-top: 150px; }
}

.resort-live-player { width: 100%; aspect-ratio: 16 / 9; min-height: 200px; border: 0; margin: 0 0 24px; background: #000; }

/* Resort photographs and accommodation */
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease; }
.hero-photo.is-active { opacity: 1; }
.room-section { background: #f4fafc; }
.room-section .package-heading > p { max-width: 530px; }
.room-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 30px; }
.room-card { min-width: 0; background: #fff; border: 1px solid var(--line); overflow: hidden; }
.room-gallery { position: relative; background: #e4eef0; }
.room-photo { display: block; }
.room-photo[hidden] { display: none; }
.room-photo img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.room-gallery-controls { display: none; align-items: center; justify-content: space-between; position: absolute; bottom: 16px; left: 16px; right: 16px; pointer-events: none; }
.is-enhanced .room-gallery-controls { display: flex; }
.room-gallery-controls button { pointer-events: auto; width: 44px; height: 44px; border: 1px solid #fff8; background: #053b4de8; color: #fff; cursor: pointer; font-size: 1.5rem; }
.room-gallery-controls span { padding: 7px 14px; background: #053b4de8; color: #fff; font-size: .875rem; }
.room-copy { padding: clamp(24px,3vw,36px); }
.room-copy h3 { font-family: var(--serif); font-size: clamp(1.75rem,2.5vw,2.4rem); font-weight: 400; line-height: 1.15; margin: 0 0 20px; }
.room-facts { display: flex; flex-wrap: wrap; gap: 12px 28px; margin: 0 0 24px; color: var(--brand-blue-deep); }
.room-facts span { display: block; font-size: 1rem; line-height: 1.6; }
.room-copy > p { color: var(--muted); line-height: 1.65; font-size: 1rem; }
.room-copy .button { margin-top: 12px; max-width: 100%; white-space: normal; }
.room-section-note { margin-top: 28px; font-size: .875rem; line-height: 1.7; color: var(--muted); }
.resort-photo-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; margin-bottom: 36px; }
.resort-photo-grid figure { margin: 0; min-width: 0; }
.resort-photo-grid a { display: block; overflow: hidden; }
.resort-photo-grid img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .3s ease; }
.resort-photo-grid a:hover img { transform: scale(1.03); }
.resort-photo-grid figcaption { font-size: .875rem; line-height: 1.5; padding-top: 10px; color: var(--muted); }
.photo-dialog { width: min(1100px,94vw); max-height: 94svh; padding: 20px; background: #071f2a; color: #fff; border: 1px solid #fff3; }
.photo-dialog::backdrop { background: #000c; }
.photo-dialog img { display: block; margin: 16px auto; max-width: 100%; max-height: 73svh; object-fit: contain; }
.photo-dialog p { font-size: 1rem; line-height: 1.5; margin: 12px 0 0; }
.photo-close { display: block; margin-left: auto; padding: 10px 16px; background: #fff; color: #071f2a; border: 0; cursor: pointer; font-size: 1rem; }
#rooms { scroll-margin-top: 170px; }
@media (max-width: 760px) {
  .room-grid { grid-template-columns: 1fr; gap: 24px; }
  .resort-photo-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
  .room-copy { padding: 24px; }
  .photo-dialog { padding: 14px; }
}
@media (max-width: 540px) {
  .resort-media-showcase .package-heading { gap: 24px; }
  .resort-photo-grid { grid-template-columns: minmax(0,1fr); gap: 24px; }
}

/* Full-screen opening hero and on-page resort video players */
.cinematic-hero { min-height: 100svh; height: 100svh; max-height: none; }
.cinematic-copy { padding-bottom: 72px; }
.resort-video-player { display: block; width: 100%; aspect-ratio: 16 / 9; min-height: 240px; margin: 0 0 22px; border: 0; background: #000; }
@media (max-width: 760px) {
  .cinematic-hero { min-height: 100svh; height: 100svh; max-height: none; display: flex; align-items: center; }
  .cinematic-copy { padding-top: 150px; padding-bottom: 42px; }
  .cinematic-copy h1 { font-size: clamp(2.75rem,12.5vw,4.2rem); line-height: .92; }
  .cinematic-copy > p:not(.eyebrow) { margin-bottom: 25px; line-height: 1.62; }
  .resort-video-player { min-height: 0; }
}
@media (max-height: 720px) and (max-width: 760px) {
  .cinematic-copy { padding-top: 122px; padding-bottom: 24px; }
  .cinematic-copy .eyebrow { margin-bottom: 14px; }
  .cinematic-copy h1 { margin-bottom: 17px; font-size: clamp(2.35rem,10.5vw,3.35rem); }
  .cinematic-copy > p:not(.eyebrow) { margin-bottom: 19px; font-size: .86rem; }
  .cinematic-copy .button { min-height: 48px; }
}
@media (prefers-reduced-motion: reduce) { .hero-photo, .resort-photo-grid img { transition: none; } }

/* Locally hosted Cape Town beach hero; retain the poster if autoplay is unavailable. */
.cinematic-hero:has([data-hero-video]) { height: auto; min-height: 100svh; }
.cinematic-hero:has([data-hero-video]) .hero-video,
.cinematic-hero:has([data-hero-video]) .hero-video-poster { object-position: center; transform: none; }
.cinematic-hero:has([data-hero-video]) .cinematic-shade { background: linear-gradient(90deg, rgba(11,28,34,.78) 0%, rgba(11,28,34,.55) 40%, rgba(11,28,34,.12) 78%), linear-gradient(0deg, rgba(11,28,34,.60), transparent 37%); }
.cinematic-hero:has([data-hero-video]) .route-motion,
.cinematic-hero:has([data-hero-video]) .hero-light-sweep { display: none; }
.hero-video-toggle { position: absolute; z-index: 5; bottom: 20px; right: 24px; min-height: 44px; padding: 8px 16px; border: 1px solid rgba(255,255,255,.6); border-radius: 4px; color: #fff; background: rgba(0,0,0,.55); font: inherit; font-size: .875rem; cursor: pointer; }
.hero-video-toggle[hidden] { display: none; }
.hero-video-toggle:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
@media (max-width: 760px) {
  .cinematic-hero:has([data-hero-video]) .cinematic-copy { padding-bottom: 88px; }
  .hero-video-toggle { right: 20px; }
}

/* Distinctive resort identity and facilities */
.resort-brand-lockup { width: fit-content; max-width: min(650px,100%); display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 0 18px; margin: 0 0 24px; padding: 18px 24px; border: 1px solid rgba(255,255,255,.35); background: rgba(8,24,27,.6); backdrop-filter: blur(12px); }
.resort-brand-lockup--official { display: flex; align-items: center; width: fit-content; max-width: min(420px,78vw); min-height: 0; padding: 0; background: transparent; border-color: transparent; backdrop-filter: none; }
.resort-brand-logo { display: block; width: auto; max-width: 100%; height: clamp(88px,12vw,132px); object-fit: contain; object-position: left center; filter: drop-shadow(0 4px 16px rgba(0,0,0,.38)); }
.resort-brand-monogram { grid-row: 1 / 3; display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid currentColor; border-radius: 50%; color: var(--gold); font-family: var(--serif); font-size: 1.25rem; letter-spacing: -.04em; }
.resort-brand-wordmark { color: #fff; font-family: var(--serif); font-size: clamp(1.65rem,3vw,2.7rem); line-height: 1; letter-spacing: -.035em; }
.resort-brand-tag { margin-top: 7px; color: rgba(255,255,255,.72); font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.resort-detail-copy > h1 { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.resort-brand-lockup--savanna .resort-brand-wordmark { font-style: italic; }
.resort-brand-lockup--savanna .resort-brand-monogram { border-radius: 35% 65% 50% 50%; }
.resort-brand-lockup--rock { border-left: 5px solid #d0a760; }
.resort-brand-lockup--rock .resort-brand-wordmark { letter-spacing: .015em; font-weight: 700; text-transform: uppercase; }
.resort-brand-lockup--mountain { clip-path: polygon(0 12%,7% 12%,10% 0,14% 12%,100% 12%,100% 100%,0 100%); padding-top: 28px; }
.resort-brand-lockup--mountain .resort-brand-wordmark { font-style: italic; }
.resort-brand-lockup--coast { border-radius: 48px 8px 48px 8px; border-color: rgba(104,216,240,.65); }
.resort-brand-lockup--coast .resort-brand-monogram { color: #8fe6f5; border-radius: 50% 50% 42% 58%; }
.resort-brand-lockup--elephant { border-color: rgba(220,190,132,.62); box-shadow: inset 0 0 0 4px rgba(255,255,255,.04); }
.resort-brand-lockup--elephant .resort-brand-wordmark { letter-spacing: .08em; text-transform: uppercase; }
.resort-amenities { position: relative; overflow: hidden; background: #fff; }
.resort-amenities::before { content: ""; position: absolute; width: 430px; height: 430px; right: -180px; top: -170px; border: 1px solid rgba(5,140,180,.18); border-radius: 50%; box-shadow: 0 0 0 55px rgba(5,140,180,.035),0 0 0 110px rgba(5,140,180,.025); }
.amenity-grid { position: relative; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.amenity-card { min-width: 0; min-height: 245px; display: flex; flex-direction: column; padding: 30px; background: var(--sand-50); transition: background .25s ease,transform .25s ease; }
.amenity-card:hover { position: relative; z-index: 1; background: #fff; transform: translateY(-4px); }
.amenity-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.amenity-icon { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid rgba(5,140,180,.3); border-radius: 50%; background: rgba(5,140,180,.07); color: var(--brand-blue-deep); }
.amenity-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.amenity-number { color: var(--brand-blue-deep); font-family: var(--serif); font-size: .9rem; }
.amenity-card h3 { margin: auto 0 12px; font-family: var(--serif); font-weight: 400; font-size: 1.65rem; line-height: 1.1; }
.amenity-card p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.65; }
.resort-amenities--savanna .amenity-card:nth-child(3n+1),.resort-amenities--elephant .amenity-card:nth-child(3n+1) { box-shadow: inset 0 4px 0 #b78945; }
.resort-amenities--rock .amenity-card:nth-child(3n+1) { box-shadow: inset 0 4px 0 #7a6953; }
.resort-amenities--mountain .amenity-card:nth-child(3n+1) { box-shadow: inset 0 4px 0 #55705f; }
.resort-amenities--coast .amenity-card:nth-child(3n+1) { box-shadow: inset 0 4px 0 #2ea8ca; }
@media (max-width: 900px) { .amenity-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 540px) {
  .resort-brand-lockup { padding: 15px 17px; gap: 0 13px; }
  .resort-brand-lockup--official { min-height: 0; max-width: 76vw; padding: 0; }
  .resort-brand-logo { height: 82px; }
  .resort-brand-monogram { width: 48px; height: 48px; font-size: 1rem; }
  .resort-brand-wordmark { font-size: clamp(1.35rem,7vw,1.85rem); }
  .resort-brand-tag { letter-spacing: .11em; }
  .amenity-grid { grid-template-columns: 1fr; }
  .amenity-card { min-height: 210px; }
  .amenity-icon { width: 50px; height: 50px; }
}

/* Keep the desktop accreditation and contact details on separate, readable tracks. */
@media (min-width: 761px) {
  .notice-inner { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 12px 24px; min-height: 40px; padding-block: 8px; text-transform: none; letter-spacing: 0; font-size: .875rem; line-height: 1.4; }
  .notice-inner > p { min-width: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 4px 12px; margin: 0; color: #dce3df; }
  .notice-inner > p > strong { margin: 0; color: var(--gold); font-size: .875rem; letter-spacing: 0; white-space: nowrap; }
  .notice-inner > a { display: flex; flex: none; align-items: center; gap: 12px; white-space: nowrap; }
  .notice-inner a span { font-size: .875rem; color: #dce3df; }
  .notice-inner a strong { font-size: 1rem; letter-spacing: .02em; line-height: 1.4; }
}
@media (min-width: 761px) and (max-width: 1040px) {
  .notice-inner a span { display: none; }
}

/* Keep the mobile navigation fully opaque over page content. */
@media (max-width: 760px) {
  body.menu-open .nav-shell { background: #171a18; color: #fff; box-shadow: none; }
  .primary-nav,
  .primary-nav.is-open {
    background-color: #171a18;
    background-image: none;
    opacity: 1;
    backdrop-filter: none;
  }
}
