/* ============================================================
   The Marvilla Collection — marvilla.pt rebuild
   Clean hand-written recreation of the Framer original
   ============================================================ */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Glitten';
  src: url('../assets/fonts/Glitten-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DIN Pro';
  src: url('../assets/fonts/DINPro-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DIN Pro';
  src: url('../assets/fonts/DINPro-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DIN Pro';
  src: url('../assets/fonts/DINPro-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../assets/fonts/Raleway-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../assets/fonts/Raleway-400-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../assets/fonts/Raleway-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../assets/fonts/Raleway-500-italic.woff2') format('woff2');
  font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../assets/fonts/Raleway-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../assets/fonts/Raleway-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../assets/fonts/Raleway-700-italic.woff2') format('woff2');
  font-weight: 700; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../assets/fonts/Raleway-900.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../assets/fonts/Raleway-900-italic.woff2') format('woff2');
  font-weight: 900; font-style: italic; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --cream: #F4F0ED;
  --cream-light: #FAF8F6;
  --white: #FFFFFF;
  --brown: #7C553D;          /* headings / statement bg */
  --brown-dark: #613F2B;     /* footer */
  --brown-deep: #422A1B;     /* body copy */
  --teal: #8FBCBC;           /* buttons */
  --teal-dark: #7AA9A9;
  --slate: #384A4B;          /* map toggle active */
  --slate-light: #EBF3F4;
  --pin-teal: #9DBFBF;
  --line: rgba(124, 85, 61, 0.35);
  --serif: 'Glitten', 'DIN Pro', serif;
  --sans: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  --nav-h: 86px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--sans);
  color: var(--brown-deep);
  background: var(--cream);
  font-size: 20px;
  line-height: 1.5;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; color: var(--brown); line-height: 1.1; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 56px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--cream);
  transition: background .4s ease, box-shadow .4s ease;
}
.nav.on-hero { background: transparent; }
.nav-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 34px;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--brown-deep);
}
.nav.on-hero .nav-links a { color: #fff; }
.nav-logo { display: block; text-align: center; }
.nav-logo img { height: 52px; width: auto; margin: 0 auto; }
.nav.on-hero .nav-logo img { filter: brightness(0) invert(1); }
.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.lang-select {
  display: flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 600;
  color: var(--brown);
  position: relative;
}
.nav.on-hero .lang-select { color: #fff; }
.lang-select select {
  appearance: none;
  background: transparent;
  border: none;
  font: inherit;
  color: inherit;
  padding-right: 16px;
  cursor: pointer;
}
.lang-select svg { width: 16px; height: 16px; }
.lang-select .chev { position: absolute; right: 0; pointer-events: none; width: 12px; height: 12px; }
.btn-contact {
  display: inline-block;
  border: 1px solid var(--teal);
  background: var(--cream-light);
  color: var(--brown);
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
}
.nav.on-hero .btn-contact { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.7); }
.btn-contact:hover { background: var(--teal); color: #fff; }

/* mobile nav */
.nav-burger { display: none; background: none; border: none; }
.nav-burger span { display: block; width: 26px; height: 2px; background: var(--brown-deep); margin: 6px 0; transition: .3s; }
.nav.on-hero .nav-burger span { background: #fff; }
.mobile-menu {
  display: none;
  position: fixed; inset: var(--nav-h) 0 0 0;
  background: var(--cream);
  z-index: 99;
  padding: 48px 34px;
  flex-direction: column;
  gap: 28px;
  font-size: 24px;
  font-family: var(--serif);
  color: var(--brown);
}
.mobile-menu.open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(60,55,50,.45), rgba(60,55,50,.55));
}
.hero-content { position: relative; z-index: 2; color: #fff; padding: 0 24px; max-width: 1060px; }
.hero-content h1 {
  font-size: clamp(48px, 6.5vw, 92px);
  color: #fff;
  letter-spacing: .01em;
  margin-bottom: 28px;
}
.hero-content h1 span { display: inline-block; }
.hero-content p { font-size: clamp(17px, 1.6vw, 22px); max-width: 980px; margin: 0 auto; }
.hero-arrow {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: heroArrow 2.2s ease-in-out infinite;
}
.hero-arrow svg { width: 22px; height: 60px; stroke: #fff; }
@keyframes heroArrow { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 12px); } }

/* ---------- Decorative contour line ---------- */
.line-deco {
  position: absolute;
  width: 6874px;
  height: auto;
  top: -440px;
  left: -2170px;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Intro (Welcome) ---------- */
.intro { padding: 140px 0; position: relative; overflow: hidden; }
.intro .container { position: relative; z-index: 1; }
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: center;
}
.intro-grid img { width: 100%; height: auto; }
.intro-copy h2 { font-size: clamp(38px, 4vw, 56px); margin-bottom: 34px; }
.intro-copy p { margin-bottom: 24px; }

/* ---------- Section video headers ---------- */
.section-header {
  position: relative;
  height: 92vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.section-header video,
.section-header > img.bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.section-header::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(52, 46, 42, .45);
}
.section-header .sh-content { position: relative; z-index: 2; color: #fff; padding: 0 24px; max-width: 900px; }
.section-header .sh-kicker {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header h2 { font-size: clamp(54px, 7vw, 96px); color: #fff; margin-bottom: 26px; }
.section-header p { font-size: clamp(16px, 1.5vw, 21px); }

/* ---------- Split rows (heading left, copy right) ---------- */
.split { padding: 120px 0; }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.split-grid h3 { font-size: clamp(38px, 4vw, 56px); }
.split-grid .copy p { margin-bottom: 22px; }
.split.center { text-align: center; }
.split.center h3 { margin-bottom: 26px; }
.split.center p { max-width: 760px; margin: 0 auto 20px; }

/* ---------- Image carousel (marquee) ---------- */
.carousel { position: relative; overflow: hidden; padding-bottom: 90px; }
.carousel-track {
  display: flex;
  gap: 22px;
  width: max-content;
  transition: transform .6s ease;
}
.carousel-track img {
  width: 380px;
  height: 380px;
  object-fit: cover;
  flex-shrink: 0;
}
.carousel-track img.wide { width: 676px; }
.carousel-nav {
  position: absolute;
  bottom: 24px; right: 56px;
  display: flex; gap: 14px;
}
.carousel-nav button {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--brown);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
}
.carousel-nav button:hover { background: var(--brown); }
.carousel-nav button:hover svg { stroke: #fff; }
.carousel-nav svg { width: 20px; height: 20px; stroke: var(--brown); }
.carousel-dots { position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%); display: flex; gap: 9px; }
.carousel-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(124,85,61,.3); }
.carousel-dots i.active { background: var(--brown); }

/* ---------- Map section ---------- */
.map-section { padding: 110px 0 60px; }
.map-section > .container > h3 { font-size: clamp(38px, 4vw, 56px); text-align: left; margin-bottom: 60px; }
.map-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 70px;
  align-items: start;
}
.map-frame { position: relative; }
.map-toggle { position: absolute; top: -26px; left: 54px; z-index: 5; display: flex; }
.map-toggle button {
  padding: 15px 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  background: var(--teal);
  color: var(--slate-light);
}
.map-toggle button.active { background: var(--slate); }
.map-imgs { position: relative; overflow: hidden; }
.map-imgs img { width: 100%; height: auto; display: none; }
.map-imgs img.active { display: block; }

.poi-group h4 { font-size: 34px; margin-bottom: 8px; }
.poi-group { margin-bottom: 34px; }
.poi-group table { width: 100%; border-collapse: collapse; border-top: 1px solid var(--brown); }
.poi-group td {
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
  font-size: 16px;
  color: var(--brown-deep);
  vertical-align: top;
}
.poi-group td.num {
  width: 72px;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 19px;
  color: var(--brown);
  padding-left: 12px;
}
.poi-group td.name { padding-left: 14px; }

/* ---------- Stats / counters ---------- */
.stats { padding: 90px 0 120px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.stat .figure {
  font-family: var(--serif);
  font-size: clamp(64px, 7vw, 110px);
  line-height: 1;
  color: var(--brown);
  margin-bottom: 20px;
}
.stat .figure .num { color: #C9C2BC; }
.stat .label { font-size: 17px; font-weight: 700; color: var(--brown-deep); }

/* ---------- Cultural hub ---------- */
.cultural { padding: 60px 0 140px; }
.cultural-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.cultural-grid h3 { font-size: clamp(38px, 4vw, 56px); margin-bottom: 34px; }
.cultural-grid .copy p { margin-bottom: 22px; }
.cultural-grid img { width: 100%; height: auto; }

/* ---------- Landmark / block selector ---------- */
.landmark { padding: 130px 0 60px; }
.landmark-head { max-width: 640px; margin-bottom: 40px; }
.landmark-head h3 { font-size: clamp(38px, 4vw, 56px); margin-bottom: 28px; }
.landmark-head p { margin-bottom: 26px; }
.link-download {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 700; color: var(--brown);
}
.link-download:hover { text-decoration: underline; }
.link-download svg { width: 18px; height: 18px; stroke: var(--brown); }

.blocks { position: relative; }
.block-tabs { display: flex; position: relative; z-index: 4; }
.block-tabs button {
  padding: 15px 20px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--teal);
  color: var(--slate-light);
}
.block-tabs button.active { background: var(--slate); }
.block-tabs button:nth-child(5) { background: #A9CBCB; }
.block-tabs button:nth-child(6) { background: #C2DADA; }
.block-tabs button:nth-child(5).active,
.block-tabs button:nth-child(6).active { background: var(--slate); }
.blocks-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}
.axo { position: relative; }
.axo img { width: 100%; height: auto; display: none; }
.axo img.active { display: block; }
.block-info h4 { font-size: 34px; margin-bottom: 8px; }
.block-info table { width: 100%; border-collapse: collapse; border-top: 1px solid var(--brown); margin-bottom: 40px; }
.block-info td { border-bottom: 1px solid var(--line); padding: 10px 0; font-size: 16px; }
.block-info td.num {
  width: 72px;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 19px;
  color: var(--brown);
  padding-left: 12px;
}
.block-info td.name { padding-left: 14px; }
.block-info ul { border-top: 1px solid var(--brown); }
.block-info ul li { border-bottom: 1px solid var(--line); padding: 10px 0 10px 14px; font-size: 16px; }

/* ---------- Feature rows ---------- */
.feature { padding: 110px 0; }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.feature-grid.rev { grid-template-columns: 1.2fr 1fr; }
.feature-grid h3 { font-size: clamp(38px, 4vw, 56px); margin-bottom: 30px; }
.feature-grid .copy p { margin-bottom: 22px; }
.feature-grid img { width: 100%; height: auto; }
.feature-grid .imgs { display: grid; gap: 26px; }
.feature h5 { font-family: var(--sans); font-size: 22px; font-weight: 700; color: var(--brown); margin-bottom: 18px; }

/* ---------- Statement ---------- */
.statement { background: var(--brown); color: var(--cream); padding: 150px 0; }
.statement p {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.35;
  max-width: 1100px;
}

/* ---------- Wellness ---------- */
.wellness { padding: 130px 0 60px; text-align: center; }
.wellness > .container > h3 { font-size: clamp(38px, 4vw, 56px); margin-bottom: 26px; }
.wellness > .container > p.lede { max-width: 640px; margin: 0 auto 80px; }
.wellness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px 140px;
  max-width: 1060px;
  margin: 0 auto;
}
.wellness-item img { height: 72px; width: auto; margin: 0 auto 30px; }
.wellness-item h4 { font-size: 30px; margin-bottom: 18px; }
.wellness-item p { font-size: 18px; }
.block-note { font-size: 15px; font-style: italic; color: var(--brown-deep); margin-top: 80px; }

/* ---------- Indulge ---------- */
.indulge { padding: 110px 0; }
.indulge-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: start;
}
.indulge h3 { font-size: clamp(38px, 4vw, 56px); margin-bottom: 60px; }
.indulge-item { display: grid; grid-template-columns: 80px 1fr; gap: 16px; margin-bottom: 52px; }
.indulge-item .n {
  font-family: var(--serif);
  font-size: 74px;
  line-height: .9;
  color: #C9C2BC;
}
.indulge-item h4 { font-size: 28px; margin-bottom: 12px; }
.indulge-item p { font-size: 18px; }
.indulge .imgs img { width: 100%; height: auto; }
.indulge .block-note { margin-top: 10px; text-align: left; }

/* ---------- Members club ---------- */
.club { padding: 130px 0 0; text-align: center; }
.club h3 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 18px; }
.club h4 { font-family: var(--sans); font-size: 21px; font-weight: 700; color: var(--brown-deep); margin-bottom: 40px; }
.club p { max-width: 900px; margin: 0 auto 24px; }
.club .club-img { margin-top: 70px; }
.club .club-img img { width: 100%; height: auto; }

/* ---------- Enquire ---------- */
.enquire {
  position: relative;
  padding: 130px 0;
  background-color: var(--cream-light);
  background-image: url('../assets/images/pattern-m.png');
  background-size: 463px auto;
  background-repeat: repeat;
}
.enquire-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.enquire h2 { font-size: clamp(42px, 5vw, 68px); margin-bottom: 34px; }
.enquire .copy p { margin-bottom: 26px; }
.enquire-links { margin-top: 40px; display: flex; flex-direction: column; gap: 22px; }
.enquire-links a {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 19px; font-weight: 700; color: var(--brown);
}
.enquire-links a:hover { text-decoration: underline; }
.enquire-links svg { width: 20px; height: 20px; stroke: var(--brown); }
.form-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 18px 44px rgba(66, 42, 27, .08);
}
.form-card iframe {
  display: block;
  width: 100%;
  border: none;
  min-height: 760px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--brown-dark);
  color: var(--cream);
  padding: 90px 0 36px;
  font-size: 16px;
}
.footer a:hover { text-decoration: underline; }
.footer-mark { display: block; width: 108px; margin: 0 auto 56px; }
.footer-contact {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 14px 42px;
  margin-bottom: 54px;
  font-size: 17px;
}
.footer-contact b { font-weight: 700; }
.footer-contact .dl { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.footer-contact .dl svg { width: 17px; height: 17px; stroke: var(--cream); }
.footer-contact a.mail { text-decoration: underline; }
.footer-sales { text-align: center; margin-bottom: 26px; letter-spacing: .12em; font-weight: 700; font-size: 15px; }
.footer-dils { display: block; margin: 0 auto 70px; height: 44px; width: auto; }
.footer-partners {
  display: flex; justify-content: center; align-items: center;
  gap: 64px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(244, 240, 237, .35);
  margin-bottom: 26px;
  opacity: .55;
}
.footer-partners img { height: 40px; width: auto; }
.footer-bottom {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 16px;
  font-size: 14px;
}
.footer-legal { display: flex; align-items: center; gap: 28px; }
.footer-legal a { text-decoration: underline; text-underline-offset: 3px; }
.cookie-reopen { background: none; border: none; }
.cookie-reopen svg { width: 26px; height: 26px; stroke: var(--cream); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 200;
  width: 302px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 34px rgba(0,0,0,.18);
  padding: 22px;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner h5 { font-family: var(--sans); font-size: 17px; font-weight: 700; color: #333; margin-bottom: 10px; }
.cookie-banner p { font-size: 13px; color: #555; line-height: 1.45; margin-bottom: 16px; }
.cookie-banner p a { color: var(--teal-dark); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions button {
  flex: 1;
  border: none;
  background: var(--teal);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 4px;
}
.cookie-actions button:hover { background: var(--teal-dark); }
.cookie-actions .reject { opacity: .75; }

/* ---------- Legal pages ---------- */
.legal-page { padding: calc(var(--nav-h) + 70px) 0 110px; min-height: 70vh; }
.legal-page h1 { font-size: clamp(44px, 5vw, 64px); margin-bottom: 50px; }
.legal-page h6, .legal-page h3.sub {
  font-family: var(--sans);
  font-size: 18px; font-weight: 700;
  color: var(--brown-deep);
  margin: 34px 0 12px;
}
.legal-page p, .legal-page li { font-size: 17px; margin-bottom: 14px; }
.legal-page ul { list-style: disc; padding-left: 26px; margin-bottom: 18px; }
.legal-page ol { padding-left: 26px; margin-bottom: 18px; }
.legal-page a { text-decoration: underline; color: var(--brown); }
.legal-page strong { font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .container { padding: 0 30px; }
  .intro-grid, .split-grid, .map-grid, .cultural-grid,
  .feature-grid, .feature-grid.rev, .indulge-grid, .enquire-grid, .blocks-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .stats-grid { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .wellness-grid { grid-template-columns: 1fr; gap: 64px; }
  .carousel-track img { width: 300px; height: 300px; }
  .carousel-track img.wide { width: 534px; }
}
@media (max-width: 820px) {
  :root { --nav-h: 72px; }
  body { font-size: 18px; }
  .nav-links, .nav-right .lang-select { display: none; }
  .nav-burger { display: block; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-logo { justify-self: center; }
  .nav-logo img { height: 42px; }
  .intro, .split, .feature, .wellness, .landmark, .club, .enquire { padding: 80px 0; }
  .map-toggle { left: 16px; }
  .footer-partners { flex-wrap: wrap; gap: 30px; }
  .form-card iframe { min-height: 900px; }
}

/* ---------- Studio Eight alignment pass ---------- */
.split.center h3 {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.02;
}

.map-section { padding-bottom: 90px; }
.map-section > .container > h3 { font-size: clamp(48px, 5vw, 72px); }
.map-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: clamp(34px, 4.5vw, 58px);
  align-items: stretch;
}
.map-frame,
.map-imgs { height: 100%; min-width: 0; }
.map-frame { display: grid; min-width: 0; min-height: 640px; }
.map-imgs {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  background: #f7f4f1;
  border: 1px solid rgba(124,85,61,.18);
}
.map-imgs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f7f4f1;
}
.map-poi {
  height: 100%;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 18px 0 2px;
}
.poi-group { margin-bottom: 0; }
.poi-group h4 { font-size: clamp(24px, 2vw, 30px); margin-bottom: 6px; }
.poi-group td { padding: 5px 0; font-size: 13.5px; line-height: 1.2; }
.poi-group td.num { width: 54px; font-size: 16px; padding-left: 8px; }
.poi-group td.name { padding-left: 10px; }

.landmark {
  background: #f8f5f2;
  padding-bottom: 90px;
}
.blocks {
  background: #f8f5f2;
  overflow: hidden;
}
.axo {
  min-height: 520px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 46%, rgba(255,255,255,.96), rgba(248,245,242,.76) 54%, rgba(248,245,242,1) 82%);
}
.axo img.active {
  display: block;
  mix-blend-mode: multiply;
  filter: saturate(.96) contrast(.98);
}

.amenities-carousel {
  padding-top: clamp(120px, 10vw, 170px) !important;
  padding-bottom: 120px;
}
.amenities-carousel .carousel-track img {
  width: clamp(420px, 38vw, 620px);
  height: clamp(420px, 38vw, 620px);
}
.amenities-carousel .carousel-track img.wide {
  width: clamp(680px, 62vw, 980px);
}
.amenities-carousel .carousel-nav { bottom: 38px; }
.amenities-carousel .carousel-dots { bottom: 58px; }

.indulge { padding: 120px 0 130px; }
.indulge-title {
  text-align: center;
  font-size: clamp(48px, 5vw, 72px);
  margin: 0 auto 70px;
  max-width: 980px;
}
.indulge-grid {
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(44px, 6vw, 90px);
  align-items: stretch;
}
.indulge-copy {
  height: 100%;
  display: grid;
  align-content: space-between;
  gap: 22px;
}
.indulge-item {
  margin-bottom: 0;
  grid-template-columns: 64px 1fr;
  gap: 18px;
}
.indulge-item .n { font-size: 58px; }
.indulge-item h4 { font-size: clamp(23px, 2vw, 28px); margin-bottom: 8px; }
.indulge-item p { font-size: 16px; line-height: 1.4; }
.indulge .imgs,
.indulge .imgs img { height: 100%; }
.indulge .imgs img {
  min-height: 620px;
  object-fit: cover;
}
.indulge .block-note { align-self: end; }

@media (max-width: 1080px) {
  .map-grid,
  .indulge-grid { grid-template-columns: 1fr; }
  .map-frame { min-height: 0; }
  .map-imgs { height: auto; }
  .map-poi { align-content: start; }
  .amenities-carousel .carousel-track img { width: 340px; height: 340px; }
  .amenities-carousel .carousel-track img.wide { width: 604px; }
  .indulge-title { text-align: left; margin-bottom: 46px; }
  .indulge-copy { align-content: start; }
  .indulge .imgs img { min-height: 420px; }
}

@media (max-width: 620px) {
  .split.center h3,
  .map-section > .container > h3,
  .indulge-title { font-size: clamp(40px, 13vw, 56px); }
  .map-toggle { position: static; margin-bottom: 10px; }
  .map-toggle button { padding: 12px 14px; font-size: 12px; }
  .map-imgs { aspect-ratio: 1 / 1.18; }
  .poi-group td { font-size: 13px; }
  .amenities-carousel .carousel-track img { width: 290px; height: 290px; }
  .amenities-carousel .carousel-track img.wide { width: 480px; }
  .indulge-item { grid-template-columns: 48px 1fr; }
  .indulge-item .n { font-size: 44px; }
}
