/* Beauty by Precious — main stylesheet */
:root {
  --plum-900: #2e1428;
  --plum-800: #4a2340;
  --plum-700: #6b3160;
  --orchid: #b5588f;
  --orchid-600: #9d4579;
  --orchid-100: #f6e6ef;
  --blush: #fbf3f6;
  --cream: #fdfaf7;
  --gold: #c9a36b;
  --ink: #2b2128;
  --muted: #74656f;
  --line: #eadde4;
  --white: #fff;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(74, 35, 64, .06);
  --shadow: 0 18px 50px -18px rgba(74, 35, 64, .28);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
html, body { overflow-x: clip; }
body { margin: 0; font-family: var(--sans); font-weight: 400; font-size: 16.5px; line-height: 1.7; color: var(--ink); background: var(--cream); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12; margin: 0 0 .5em; color: var(--plum-900); letter-spacing: -.01em; }
h1 em, h2 em { font-style: italic; color: var(--orchid); }
p { margin: 0 0 1em; }
button, input, select, textarea { font: inherit; }
.container { width: min(1240px, 100% - 40px); margin-inline: auto; }
.ic { width: 1.15em; height: 1.15em; flex: none; }
.center { text-align: center; margin-top: 40px; }
.hide-sm, .hide-md { }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55em; padding: 14px 26px; border-radius: 999px; font-weight: 500; font-size: 15px; letter-spacing: .02em; border: 1.5px solid transparent; cursor: pointer; transition: all .35s var(--ease); white-space: nowrap; }
.btn .ic { width: 18px; height: 18px; }
.btn--primary { background: linear-gradient(135deg, var(--orchid), var(--plum-700)); color: #fff; box-shadow: 0 10px 24px -10px rgba(157, 69, 121, .7); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(157, 69, 121, .8); }
.btn--ghost { background: rgba(255,255,255,.6); color: var(--plum-800); border-color: rgba(74,35,64,.2); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: #fff; }
.btn--outline { border-color: var(--orchid); color: var(--orchid-600); }
.btn--outline:hover { background: var(--orchid); color: #fff; }
.btn--light { background: #fff; color: var(--plum-800); }
.btn--light:hover { transform: translateY(-2px); }
.btn--ghost-light { color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); }
.btn--block { width: 100%; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--orchid-600); margin-bottom: 14px; }
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.eyebrow--light { color: #f3c9de; }

/* ---------- Topbar & header ---------- */
.topbar { background: var(--plum-900); color: #e9d6e1; font-size: 13.5px; }
.topbar__in { display: flex; justify-content: space-between; align-items: center; height: 42px; }
.topbar__contact { display: flex; gap: 26px; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar .ic { width: 14px; height: 14px; color: var(--gold); }
.topbar__social { display: flex; gap: 14px; }
.topbar__social .ic { width: 16px; height: 16px; color: inherit; }

.header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
/* Blur lives on a pseudo-element so it doesn't become the containing block of the fixed mobile nav */
.header::before { content: ''; position: absolute; inset: 0; z-index: -1; background: rgba(253, 250, 247, .88); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); }
.header.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header__in { display: flex; align-items: center; justify-content: space-between; height: 92px; transition: height .3s; }
.header.is-scrolled .header__in { height: 76px; }
.logo img { height: 72px; width: auto; transition: height .3s; }
.header.is-scrolled .logo img { height: 58px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.nav li { position: relative; }
.nav ul > li > a { display: flex; align-items: center; gap: 6px; padding: 10px 14px; font-size: 15px; font-weight: 500; color: var(--plum-800); border-radius: 999px; transition: all .25s; }
.nav ul > li > a:hover, .nav a.is-active { color: var(--orchid-600); background: var(--orchid-100); }
.caret { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.drop { position: absolute; top: calc(100% + 12px); left: 50%; transform: translate(-50%, 8px); display: grid; grid-template-columns: repeat(3, 190px); gap: 10px 28px; padding: 26px 30px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); opacity: 0; visibility: hidden; transition: all .3s var(--ease); }
.drop::before { content: ''; position: absolute; inset: -14px 0 auto; height: 14px; }
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.drop__col { display: flex; flex-direction: column; }
.drop__title { font-family: var(--serif); font-size: 20px; font-style: italic; color: var(--orchid); margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.drop a { font-size: 14.5px; padding: 5px 0; color: var(--ink); transition: color .2s, padding .2s; }
.drop a:hover { color: var(--orchid-600); padding-left: 4px; }
.burger { display: none; background: none; border: 0; padding: 8px; color: var(--plum-800); cursor: pointer; }
.burger .ic { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 70px 0 110px; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 30%; }
.hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(95deg, rgba(253,250,247,.97) 0%, rgba(251,243,246,.92) 42%, rgba(251,243,246,.55) 70%, rgba(251,243,246,.25) 100%); }
.hero__in { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(44px, 6vw, 82px); font-weight: 400; margin-bottom: 22px; }
.hero h1 em { display: block; }
.lead { font-size: 18.5px; color: var(--muted); max-width: 540px; font-weight: 300; }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0 44px; }
.hero__trust { list-style: none; padding: 0; margin: 0; display: flex; gap: 40px; }
.hero__trust li { display: flex; flex-direction: column; padding-left: 18px; border-left: 1px solid rgba(181, 88, 143, .35); }
.hero__trust strong { font-family: var(--serif); font-size: 34px; font-weight: 500; color: var(--plum-800); line-height: 1; }
.hero__trust span { font-size: 13.5px; color: var(--muted); margin-top: 6px; }

/* ---------- Enquiry form ---------- */
.enquiry { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--line); position: relative; }
.enquiry__head { margin-bottom: 18px; }
.enquiry__badge { position: absolute; top: -16px; right: 26px; background: linear-gradient(135deg, var(--gold), #b08448); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 8px 16px; border-radius: 999px; box-shadow: 0 8px 18px -8px rgba(176,132,72,.8); }
.enquiry h3 { font-size: 30px; margin-bottom: 4px; }
.enquiry__head p { color: var(--muted); font-size: 14.5px; margin: 0; }
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; flex: 1; min-width: 0; }
.field label { font-size: 12.5px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--plum-700); }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--cream); color: var(--ink); font-size: 15px; outline: none; transition: border-color .2s, background .2s, box-shadow .2s; }
.field textarea { resize: vertical; min-height: 80px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orchid); background: #fff; box-shadow: 0 0 0 4px rgba(181, 88, 143, .12); }
.field-row { display: flex; gap: 12px; }
.field--code { flex: 0 0 38%; }
.enquiry__note { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 13px; color: var(--muted); margin: 12px 0 0; }
.enquiry__note .ic { color: var(--orchid); }
.hp { position: absolute; left: -9999px; }
.alert { display: flex; gap: 10px; align-items: flex-start; padding: 12px 14px; border-radius: 12px; font-size: 14.5px; margin-bottom: 14px; }
.alert--ok { background: #eaf7ef; color: #1f6b3a; }
.alert--err { background: #fdecec; color: #9b2c2c; }

/* ---------- Features strip ---------- */
.features { margin-top: -56px; position: relative; z-index: 2; }
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--line); }
.feature { display: flex; gap: 16px; align-items: center; padding: 30px 28px; }
.feature + .feature { border-left: 1px solid var(--line); }
.feature > .ic { width: 50px; height: 50px; padding: 12px; border-radius: 50%; background: var(--orchid-100); color: var(--orchid-600); }
.feature h3 { font-size: 22px; margin: 0; }
.feature p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.4; }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section--tint { background: var(--blush); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section__head .eyebrow::after { content: ''; width: 28px; height: 1px; background: currentColor; }
.section__head h2 { font-size: clamp(36px, 4.4vw, 56px); }
.section__head p { color: var(--muted); font-size: 17px; }

.filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.chip { padding: 10px 22px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; color: var(--plum-800); font-weight: 500; font-size: 14.5px; cursor: pointer; transition: all .25s; }
.chip:hover { border-color: var(--orchid); }
.chip.is-active { background: var(--plum-800); border-color: var(--plum-800); color: #fff; }

/* Treatment cards */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.t-grid--4 { grid-template-columns: repeat(4, 1fr); }
.t-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: transform .45s var(--ease), box-shadow .45s var(--ease); display: flex; flex-direction: column; }
.t-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.t-card__img { aspect-ratio: 4 / 3; overflow: hidden; }
.t-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.t-card:hover .t-card__img img { transform: scale(1.06); }
.t-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.t-card__cat { font-size: 12px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.t-card h3 { font-size: 26px; margin: 6px 0 14px; }
.t-grid--4 .t-card h3 { font-size: 23px; margin: 6px 0 14px; }
.t-card__more { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--orchid-600); }
.t-card__more .ic { transition: transform .3s; }
.t-card:hover .t-card__more .ic, .t-row:hover .t-card__more .ic { transform: translateX(5px); }
.is-hidden { display: none !important; }

.t-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.t-row { display: grid; grid-template-columns: 220px 1fr; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: all .4s var(--ease); }
.t-row:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.t-row__img img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.t-row__body { padding: 24px 26px; display: flex; flex-direction: column; }
.t-row h3 { font-size: 27px; margin: 4px 0 8px; }
.t-row p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* Split */
.split__in { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split__in--rev .split__media { order: 0; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 5 / 5.2; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split__media::before { content: ''; position: absolute; inset: 28px -28px -28px 28px; border: 1.5px solid rgba(181, 88, 143, .35); border-radius: var(--radius-lg); z-index: -1; }
.split__badge { position: absolute; left: -28px; bottom: 40px; display: flex; gap: 12px; align-items: center; background: #fff; padding: 16px 22px; border-radius: 16px; box-shadow: var(--shadow); font-family: var(--serif); font-size: 19px; line-height: 1.2; color: var(--plum-800); }
.split__badge .ic { width: 38px; height: 38px; padding: 8px; background: var(--orchid-100); color: var(--orchid-600); border-radius: 50%; }
.split__copy h2 { font-size: clamp(34px, 4vw, 52px); }
.split__copy p { color: var(--muted); font-size: 17px; }
.ticks { list-style: none; padding: 0; margin: 26px 0 34px; display: grid; gap: 14px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--muted); }
.ticks strong { color: var(--plum-800); font-weight: 500; }
.ticks .ic { width: 24px; height: 24px; padding: 4px; margin-top: 2px; border-radius: 50%; background: var(--orchid); color: #fff; stroke-width: 2.4; }
.h-sub { font-size: 26px; margin-top: 26px; }

/* Awaits */
.awaits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.await { position: relative; padding: 36px 32px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; transition: all .4s var(--ease); }
.await:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.await::after { content: ''; position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--orchid), var(--gold)); transition: width .5s var(--ease); }
.await:hover::after { width: 100%; }
.await__num { position: absolute; top: 18px; right: 24px; font-family: var(--serif); font-size: 54px; line-height: 1; color: var(--orchid-100); font-style: italic; }
.await > .ic { width: 56px; height: 56px; padding: 14px; border-radius: 16px; background: linear-gradient(135deg, var(--orchid-100), #fff); color: var(--orchid-600); margin-bottom: 20px; border: 1px solid var(--line); }
.await h3 { font-size: 25px; }
.await p { color: var(--muted); font-size: 15px; margin: 0; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery__item { border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(46,20,40,.35), transparent 50%); opacity: 0; transition: opacity .4s; }
.gallery__item:hover::after { opacity: 1; }
.g0 { grid-column: span 2; grid-row: span 2; }
.g3 { grid-row: span 2; }
.g6 { grid-column: span 2; }
.gallery--6 { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; }

/* Reviews */
.reviews-sec { overflow: hidden; }
.tp-link img { height: 36px; width: auto; margin: 10px auto 0; opacity: .85; }
.slider { position: relative; }
.slider__track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 10px 2px 20px; }
.slider__track::-webkit-scrollbar { display: none; }
.slider__track .review { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; }
.slider__nav { display: flex; justify-content: center; gap: 12px; margin-top: 14px; }
.slider__btn { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; color: var(--plum-800); cursor: pointer; display: grid; place-items: center; transition: all .25s; }
.slider__btn:hover { background: var(--plum-800); color: #fff; border-color: var(--plum-800); }
.slider__btn[data-prev] .ic { transform: rotate(180deg); }
.review { position: relative; margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px 28px; display: flex; flex-direction: column; }
.review__q { position: absolute; top: 24px; right: 26px; width: 40px; height: 40px; color: var(--orchid-100); }
.stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 16px; }
.stars .ic { width: 17px; height: 17px; stroke: none; }
.stars--lg .ic { width: 26px; height: 26px; }
.review blockquote { margin: 0 0 22px; font-size: 15.5px; color: var(--ink); line-height: 1.75; flex: 1; }
.review figcaption { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--plum-800); text-transform: capitalize; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--orchid), var(--plum-700)); color: #fff; font-family: var(--serif); font-size: 20px; }
.masonry { columns: 3; column-gap: 24px; }
.masonry .review { break-inside: avoid; margin-bottom: 24px; }
.tp-banner { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; margin-bottom: 50px; display: flex; flex-direction: column; align-items: center; }
.tp-banner p { color: var(--muted); margin: 8px 0 14px; }
.tp-banner img { height: 34px; width: auto; }

/* Page hero */
.page-hero { position: relative; padding: 110px 0 100px; color: #fff; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: -1; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(46,20,40,.9), rgba(74,35,64,.72) 50%, rgba(107,49,96,.45)); }
.page-hero h1 { color: #fff; font-size: clamp(42px, 6vw, 76px); font-weight: 400; margin: 12px 0 10px; }
.page-hero p { font-size: 18.5px; color: #f0dde8; max-width: 640px; font-weight: 300; margin: 0; }
.crumbs { display: flex; gap: 10px; font-size: 14px; color: #e3c8d8; }
.crumbs a:hover { color: #fff; }

/* About */
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.mv__item { background: var(--blush); padding: 24px; border-radius: var(--radius); border-left: 3px solid var(--orchid); }
.mv__item h3 { font-size: 24px; }
.mv__item p { font-size: 15px; margin: 0; }
.services { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.service { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 18px; text-align: center; transition: all .35s var(--ease); }
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service .ic { width: 54px; height: 54px; padding: 13px; border-radius: 50%; background: var(--orchid-100); color: var(--orchid-600); margin: 0 auto 14px; }
.service h3 { font-size: 21px; margin: 0; }
.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why__item { padding: 32px 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.why__n { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--orchid); color: var(--orchid); font-family: var(--serif); font-size: 22px; margin-bottom: 18px; }
.why__item h3 { font-size: 24px; }
.why__item p { color: var(--muted); font-size: 15px; margin: 0; }

/* Health tourism */
.attractions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.attr { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.attr img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.attr > div { padding: 26px 28px 30px; }
.attr h3 { font-size: 25px; }
.attr p { color: var(--muted); font-size: 15px; margin: 0; }

/* Treatment detail */
.detail { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: start; }
.detail__img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-lg); }
.toc { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 10px; }
.toc a { font-size: 13.5px; padding: 7px 14px; border-radius: 999px; background: var(--orchid-100); color: var(--orchid-600); font-weight: 500; transition: all .2s; }
.toc a:hover { background: var(--orchid); color: #fff; }
.prose { font-size: 17px; color: #4a3d46; }
.prose h3 { font-size: 32px; margin: 40px 0 14px; padding-top: 6px; }
.prose ul, .prose ol { padding: 0; margin: 0 0 1.2em; list-style: none; counter-reset: s; }
.prose li { position: relative; padding-left: 36px; margin-bottom: 10px; }
.prose ul li::before { content: ''; position: absolute; left: 8px; top: .7em; width: 8px; height: 8px; border-radius: 50%; background: var(--orchid); box-shadow: 0 0 0 4px var(--orchid-100); }
.prose ol li { counter-increment: s; }
.prose ol li::before { content: counter(s); position: absolute; left: 0; top: .1em; width: 26px; height: 26px; border-radius: 50%; background: var(--plum-800); color: #fff; font-size: 13px; display: grid; place-items: center; font-weight: 500; }
.prose .note { font-size: 14px; color: var(--muted); background: var(--blush); padding: 16px 20px; border-radius: 12px; border-left: 3px solid var(--gold); margin-top: 24px; }
.detail__cta { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 40px; padding: 30px 34px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--plum-800), var(--plum-700)); color: #fff; }
.detail__cta h3 { color: #fff; font-size: 28px; margin-bottom: 4px; }
.detail__cta p { margin: 0; color: #eed7e4; }
.sticky { position: sticky; top: 110px; }

/* Contact */
.contact { display: grid; grid-template-columns: 1fr 460px; gap: 70px; align-items: start; }
.contact__info h2 { font-size: clamp(34px, 4vw, 50px); }
.contact__info > p { color: var(--muted); font-size: 17px; }
.c-cards { list-style: none; padding: 0; margin: 30px 0; display: grid; gap: 16px; }
.c-card { display: flex; gap: 18px; align-items: flex-start; padding: 22px 24px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); }
.c-card > .ic { width: 50px; height: 50px; padding: 13px; border-radius: 14px; background: var(--orchid-100); color: var(--orchid-600); }
.c-card h3 { font-size: 22px; margin: 0 0 2px; }
.c-card p { margin: 0; color: var(--muted); }
.c-card a:hover { color: var(--orchid-600); }
.social-row { display: flex; gap: 12px; flex-wrap: wrap; }
.social-row a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-weight: 500; font-size: 14.5px; color: var(--plum-800); transition: all .25s; }
.social-row a:hover { border-color: var(--orchid); color: var(--orchid-600); }
.map { margin-top: 70px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); height: 380px; }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.35) contrast(1.05); }

/* CTA band & footer */
.cta-band { background: linear-gradient(120deg, var(--orchid-600), var(--plum-700) 55%, var(--plum-800)); color: #fff; padding: 64px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); right: -120px; top: -220px; }
.cta-band__in { display: flex; justify-content: space-between; align-items: center; gap: 30px; position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(32px, 3.8vw, 48px); margin: 0; }
.cta-band h2 em { color: #f7cfe2; }
.cta-band__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.footer { background: var(--plum-900); color: #cdb7c4; padding: 80px 0 0; font-size: 15px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr; gap: 50px; padding-bottom: 60px; }
.footer__brand img { height: 84px; width: auto; margin-bottom: 20px; }
.footer__brand p { max-width: 340px; font-size: 14.5px; }
.footer h4 { color: #fff; font-size: 23px; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { transition: color .2s; }
.footer a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact .ic { color: var(--gold); margin-top: 4px; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); transition: all .25s; }
.footer__social a:hover { background: var(--orchid); border-color: var(--orchid); }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 13.5px; color: #9f8797; }

/* Floating WhatsApp */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: flex; align-items: center; gap: 10px; background: #25d366; color: #fff; padding: 14px; border-radius: 999px; box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .6); transition: all .35s var(--ease); }
.wa-float .ic { width: 28px; height: 28px; }
.wa-float span { max-width: 0; overflow: hidden; white-space: nowrap; font-weight: 500; transition: max-width .4s var(--ease), padding .4s; }
.wa-float:hover span { max-width: 140px; padding-right: 6px; }
.wa-float::before { content: ''; position: absolute; inset: 0; border-radius: inherit; border: 2px solid #25d366; animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }

/* Lightbox */
.lb { position: fixed; inset: 0; z-index: 100; background: rgba(30, 12, 26, .92); display: grid; place-items: center; padding: 30px; opacity: 0; visibility: hidden; transition: all .3s; cursor: zoom-out; }
.lb.is-open { opacity: 1; visibility: visible; }
.lb img { max-width: 100%; max-height: 88vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav { gap: 16px; }
  .nav ul > li > a { padding: 10px 10px; font-size: 14.5px; }
  .services { grid-template-columns: repeat(3, 1fr); }
  .why { grid-template-columns: repeat(2, 1fr); }
  .detail { grid-template-columns: 1fr 360px; gap: 40px; }
}
@media (max-width: 1024px) {
  .hide-md { display: none !important; }
  .burger { display: block; }
  .nav { position: fixed; inset: 0 0 0 auto; width: min(380px, 88vw); background: #fff; flex-direction: column; align-items: stretch; padding: 100px 28px 30px; gap: 20px; transform: translateX(100%); visibility: hidden; transition: transform .45s var(--ease), visibility .45s; box-shadow: var(--shadow); overflow-y: auto; z-index: 70; }
  .nav.is-open { transform: none; visibility: visible; }
  .nav ul { flex-direction: column; gap: 2px; }
  .nav ul > li > a { font-size: 18px; padding: 12px 14px; justify-content: space-between; }
  .drop { position: static; transform: none; opacity: 1; visibility: visible; display: none; grid-template-columns: 1fr; box-shadow: none; border: 0; padding: 6px 14px 12px; }
  .has-drop.is-open .drop { display: grid; }
  .has-drop:hover .drop { transform: none; }
  .burger { position: relative; z-index: 80; }
  body.menu-open { overflow: hidden; }
  body.menu-open::after { content: ''; position: fixed; inset: 0; background: rgba(46,20,40,.4); z-index: 45; }
  .hero__in { grid-template-columns: 1fr; gap: 50px; }
  .hero__bg::after { background: linear-gradient(180deg, rgba(253,250,247,.95), rgba(251,243,246,.88)); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(3) { border-left: 0; }
  .feature:nth-child(n+3) { border-top: 1px solid var(--line); }
  .t-grid, .t-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .t-list { grid-template-columns: 1fr; }
  .split__in { grid-template-columns: 1fr; gap: 60px; }
  .split__in .split__media { order: -1; }
  .awaits, .attractions { grid-template-columns: repeat(2, 1fr); }
  .slider__track .review { flex-basis: calc((100% - 24px) / 2); }
  .masonry { columns: 2; }
  .detail, .contact { grid-template-columns: 1fr; }
  .sticky { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-band__in { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 32px); }
  .hide-sm { display: none !important; }
  .topbar__contact { gap: 14px; }
  .header__in { height: 76px; }
  .logo img { height: 56px; }
  .hero { padding: 44px 0 90px; }
  .hero__trust { gap: 18px; }
  .hero__trust strong { font-size: 26px; }
  .enquiry { padding: 26px 20px; }
  .field-row { flex-direction: column; gap: 0; }
  .features__grid { grid-template-columns: 1fr; }
  .feature + .feature { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 76px 0; }
  .t-grid, .t-grid--4, .awaits, .attractions, .services, .why, .mv { grid-template-columns: 1fr; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .t-row { grid-template-columns: 1fr; }
  .t-row__img img { min-height: 0; aspect-ratio: 16 / 10; }
  .gallery, .gallery--6 { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g0 { grid-column: span 2; }
  .g6 { grid-column: span 2; }
  .slider__track .review { flex-basis: 88%; }
  .masonry { columns: 1; }
  .split__media::before { inset: 16px -12px -16px 16px; }
  .split__badge { left: 12px; bottom: 16px; font-size: 16px; }
  .detail__cta { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .page-hero { padding: 80px 0 70px; }
}

/* WhatsApp button inside contact card */
.btn--wa { background: #25d366; color: #fff; padding: 9px 18px; font-size: 14px; margin-top: 10px; }
.btn--wa:hover { background: #1ebe5a; transform: translateY(-2px); }
