/* Raas International Spa — styles
   Palette: deep black + gold. Mobile-first. */

:root {
  --bg: #0B0B0B;
  --bg-2: #121110;
  --surface: #171512;
  --surface-2: #1E1B16;
  --line: rgba(201, 162, 77, .22);
  --line-strong: rgba(201, 162, 77, .5);
  --gold: #C9A24D;
  --gold-light: #E6C77A;
  --gold-dark: #A67C2E;
  --gold-grad: linear-gradient(135deg, #E6C77A 0%, #C9A24D 50%, #A67C2E 100%);
  --text: #EDE6D6;
  --text-dim: #B9B0A0;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 14px;
  --header-h: 64px;
  --glow: 0 0 0 1px var(--line-strong), 0 12px 40px -12px rgba(201, 162, 77, .35);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 68px; /* room for mobile bar */
}
img { max-width: 100%; display: block; }
svg { width: 1em; height: 1em; flex: none; }
a { color: var(--gold-light); text-decoration: none; }
a:hover { color: #fff; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0; color: var(--text); }
p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
address { font-style: normal; }
strong { font-weight: 600; }
.gold { color: var(--gold-light); }
.muted { color: var(--text-dim); }
.center { text-align: center; }

:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--gold); color: #111; padding: 10px 16px; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  font: 600 15px/1 var(--sans); letter-spacing: .02em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background-color .25s ease, color .2s ease;
}
.btn svg { font-size: 18px; }
.btn-gold { background: var(--gold-grad); color: #15110A; box-shadow: 0 6px 24px -8px rgba(201, 162, 77, .6); }
.btn-gold:hover { color: #15110A; transform: translateY(-1px); box-shadow: 0 10px 32px -8px rgba(230, 199, 122, .75); }
.btn-outline { border-color: var(--line-strong); color: var(--gold-light); background: rgba(11, 11, 11, .35); }
.btn-outline:hover { color: var(--text); border-color: var(--gold); background: rgba(201, 162, 77, .1); }
.btn-sm { min-height: 40px; padding: 0 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; height: var(--header-h);
  background: rgba(11, 11, 11, .78);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background-color .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(11, 11, 11, .92); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); }
.brand:hover { color: var(--text); }
.brand-mark { font-size: 34px; color: var(--gold); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--gold-light); letter-spacing: .02em; }
.brand-sub { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--text-dim); margin-top: 3px; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 10px;
  background: transparent; border: 1px solid var(--line); color: var(--gold-light); cursor: pointer;
}
.nav-toggle svg { font-size: 22px; }

.nav {
  position: fixed; inset: var(--header-h) 0 auto 0;
  background: rgba(11, 11, 11, .98); border-bottom: 1px solid var(--line);
  padding: 8px 16px 20px;
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
}
.nav.open { transform: none; opacity: 1; visibility: visible; transition: opacity .25s ease, transform .25s ease; }
.nav ul { display: flex; flex-direction: column; }
.nav li a { display: block; padding: 14px 4px; color: var(--text); border-bottom: 1px solid rgba(255, 255, 255, .06); font-size: 16px; }
.nav li a:hover, .nav li a.active { color: var(--gold-light); }
.nav-cta { margin-top: 16px; width: 100%; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav {
    position: static; display: flex; align-items: center; gap: 28px;
    background: none; border: 0; padding: 0; transform: none; opacity: 1; visibility: visible;
  }
  .nav ul { flex-direction: row; gap: 26px; }
  .nav li a { padding: 6px 0; border: 0; font-size: 14.5px; letter-spacing: .03em; color: var(--text-dim); position: relative; }
  .nav li a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
    background: var(--gold); transform: scaleX(0); transition: transform .25s ease;
  }
  .nav li a:hover::after, .nav li a.active::after { transform: scaleX(1); }
  .nav-cta { margin: 0; width: auto; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: calc(100svh - var(--header-h));
  display: flex; align-items: center;
  padding: 72px 0 88px; text-align: center; overflow: hidden;
}
.hero-bg, .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg { z-index: -2; }
.hero-bg img { object-fit: cover; object-position: 62% 40%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(11, 11, 11, .45) 0%, rgba(11, 11, 11, .82) 70%),
    linear-gradient(180deg, rgba(11, 11, 11, .35) 0%, rgba(11, 11, 11, .2) 40%, var(--bg) 100%);
}
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.hero-lotus { font-size: 64px; color: var(--gold); margin-bottom: 14px; filter: drop-shadow(0 0 18px rgba(230, 199, 122, .35)); }
.hero-title { display: flex; flex-direction: column; align-items: center; }
.hero-name {
  font-size: clamp(72px, 22vw, 144px); line-height: .9; font-weight: 500; letter-spacing: .02em;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-family: var(--sans); font-size: clamp(12px, 3.4vw, 16px); font-weight: 500;
  letter-spacing: .42em; text-transform: uppercase; color: var(--text); margin-top: 10px; padding-left: .42em;
}
.hero-tagline {
  font-family: var(--serif); font-style: italic; font-size: clamp(22px, 6vw, 30px); color: var(--gold-light);
  margin-top: 22px; position: relative; padding: 0 44px;
}
.hero-tagline::before, .hero-tagline::after {
  content: ""; position: absolute; top: 50%; width: 32px; height: 1px; background: var(--gold);
}
.hero-tagline::before { left: 0; } .hero-tagline::after { right: 0; }
.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 12px;
  margin-top: 18px; font-size: 14px; letter-spacing: .06em; color: var(--text);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta svg { color: var(--gold); font-size: 16px; }
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.hero-ctas { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 340px; margin-top: 32px; }
.hero-note { margin-top: 22px; font-size: 13px; color: var(--text-dim); }
@media (min-width: 560px) {
  .hero-ctas { flex-direction: row; max-width: none; width: auto; }
}

/* ---------- Sections ---------- */
.section { padding: 72px 0; position: relative; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.eyebrow {
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.section-head .eyebrow::before, .section-head .eyebrow::after { content: ""; width: 18px; height: 1px; background: var(--gold); opacity: .7; }
h2 { font-size: clamp(34px, 8vw, 50px); }
.section-lede { margin-top: 14px; color: var(--text-dim); }
.section-lede strong { color: var(--text); }
.fine-print { text-align: center; font-size: 13px; color: var(--text-dim); margin-top: 24px; }
@media (min-width: 900px) { .section { padding: 104px 0; } }

.section.why, .section.book { background: var(--bg-2); }
.section.why::before, .section.book::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

/* ---------- Offers ---------- */
.offers { padding-top: 56px; }
.offer-grid { display: grid; gap: 16px; }
@media (min-width: 700px) { .offer-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); } }
.offer-card {
  position: relative; padding: 26px 24px; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(201, 162, 77, .12), rgba(201, 162, 77, .02) 60%), var(--surface);
  border: 1px solid var(--line-strong);
  transition: box-shadow .3s ease, transform .3s ease;
}
.offer-card:hover { box-shadow: var(--glow); transform: translateY(-2px); }
.offer-card::after {
  content: ""; position: absolute; inset: 6px; border-radius: calc(var(--radius) - 5px);
  border: 1px solid rgba(201, 162, 77, .14); pointer-events: none;
}
.offer-tag {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: #15110A; background: var(--gold-grad); padding: 5px 10px; border-radius: 999px;
}
.offer-card h3 { font-size: 28px; margin-top: 14px; color: var(--gold-light); }
.offer-card p { color: var(--text-dim); margin-top: 6px; }
.offer-price { margin-top: 16px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.offer-price b { font-family: var(--serif); font-size: 36px; font-weight: 600; color: var(--text); }
.offer-price s { color: var(--text-dim); }
.offer-card .btn { margin-top: 18px; }

/* ---------- Services ---------- */
.service-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  /* flex so an incomplete last row sits centred */
  .service-grid { display: flex; flex-wrap: wrap; justify-content: center; }
  .service-card { flex: 0 1 calc((100% - 32px) / 3); }
}
.service-card {
  display: flex; flex-direction: column; padding: 26px 22px 22px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
}
.service-card:hover { box-shadow: var(--glow); border-color: transparent; transform: translateY(-3px); }
.service-top { display: flex; align-items: center; gap: 14px; }
.icon-ring {
  display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--line-strong); color: var(--gold-light);
  background: radial-gradient(circle at 50% 35%, rgba(230, 199, 122, .16), transparent 70%);
}
.icon-ring svg { font-size: 24px; }
.service-card h3 { font-size: 26px; }
.service-card .desc { color: var(--text-dim); margin-top: 12px; flex: 1; }
.service-meta {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line);
}
.duration { font-size: 13px; color: var(--text-dim); display: inline-flex; align-items: center; gap: 6px; }
.duration svg { color: var(--gold); }
.price { font-family: var(--serif); font-size: 32px; font-weight: 600; color: var(--gold-light); line-height: 1; }
.service-card .btn { margin-top: 18px; }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
@media (min-width: 900px) { .why-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.why-item { text-align: center; }
.why-item .icon-ring { width: 68px; height: 68px; transition: box-shadow .3s ease; }
.why-item .icon-ring svg { font-size: 30px; }
.why-item:hover .icon-ring { box-shadow: 0 0 28px -4px rgba(230, 199, 122, .45); }
.why-item h3 { font-size: 22px; margin-top: 16px; }
.why-item p { font-size: 14px; color: var(--text-dim); margin-top: 6px; }
.facts {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 48px;
}
.facts li {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px;
  border: 1px solid var(--line); font-size: 14px; color: var(--text);
}
.facts svg { color: var(--gold); font-size: 17px; }

/* ---------- Membership ---------- */
.plan-grid { display: grid; gap: 18px; max-width: 820px; margin: 0 auto; }
@media (min-width: 700px) { .plan-grid { grid-template-columns: repeat(2, 1fr); } }
.plan {
  position: relative; text-align: center; padding: 34px 24px 28px; border-radius: 18px;
  background: var(--surface); border: 1px solid var(--line);
  transition: box-shadow .3s ease, transform .3s ease;
}
.plan:hover { box-shadow: var(--glow); transform: translateY(-3px); }
.plan.featured { border-color: var(--gold); background: linear-gradient(180deg, rgba(201, 162, 77, .12), transparent 55%), var(--surface); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap;
  background: var(--gold-grad); color: #15110A; padding: 5px 12px; border-radius: 999px;
}
.plan h3 { font-size: 20px; font-family: var(--sans); font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--text-dim); }
.plan-count { font-family: var(--serif); font-size: 64px; line-height: 1; color: var(--gold-light); margin-top: 10px; }
.plan-count small { display: block; font-family: var(--sans); font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-dim); margin-top: 6px; }
.plan-price { font-family: var(--serif); font-size: 40px; font-weight: 600; margin-top: 20px; }
.plan-per { margin-top: 4px; color: var(--gold-light); font-weight: 500; }
.plan-save { font-size: 13px; color: var(--text-dim); margin-top: 4px; }
.plan .btn { margin-top: 22px; }

/* ---------- Booking ---------- */
.book-wrap { display: grid; gap: 32px; }
@media (min-width: 960px) { .book-wrap { grid-template-columns: 5fr 7fr; gap: 56px; align-items: start; } }
.book-intro .eyebrow { margin-bottom: 12px; }
.book-intro > p { color: var(--text-dim); margin-top: 14px; }
.book-steps { margin-top: 24px; display: grid; gap: 12px; }
.book-steps li { display: flex; align-items: center; gap: 12px; }
.book-steps li > span:first-child {
  display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold-light); font-family: var(--serif); font-size: 17px;
}
.book-alt { margin-top: 24px; color: var(--text-dim); }
.book-panel {
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: 18px;
  padding: 22px 18px; min-width: 0;
}
@media (min-width: 600px) { .book-panel { padding: 30px; } }
.cal-inline { width: 100%; min-height: 560px; overflow: auto; border-radius: 12px; }

.wa-form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label { font-size: 13px; font-weight: 500; letter-spacing: .04em; color: var(--text-dim); }
.field input, .field select {
  width: 100%; min-height: 48px; padding: 10px 14px; border-radius: 10px;
  background: var(--bg); color: var(--text); border: 1px solid rgba(201, 162, 77, .3);
  font: 400 16px/1.3 var(--sans); appearance: none; -webkit-appearance: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23C9A24D' stroke-width='2' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 36px;
}
.field input::-webkit-calendar-picker-indicator { filter: invert(.8) sepia(.6) saturate(3) hue-rotate(5deg); cursor: pointer; }
.field input:focus, .field select:focus { outline: none; border-color: var(--gold-light); box-shadow: 0 0 0 3px rgba(201, 162, 77, .25); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #E08A7A; }
.field input::placeholder { color: #7d766a; }
.form-error { color: #F0A898; font-size: 14px; min-height: 0; }
.form-error:empty { display: none; }
.form-note { font-size: 13px; color: var(--text-dim); text-align: center; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 800px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
.gallery-grid li { position: relative; overflow: hidden; border-radius: 12px; aspect-ratio: 1; background: var(--surface); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease, filter .6s ease; filter: saturate(.9) brightness(.92); }
.gallery-grid li:hover img { transform: scale(1.05); filter: saturate(1) brightness(1); }
.gallery-grid li::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(201, 162, 77, .18); pointer-events: none; }
.gallery .center { margin-top: 32px; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; gap: 32px; }
@media (min-width: 900px) { .contact-wrap { grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; } }
.contact-info h2 { margin-bottom: 24px; }
.contact-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.contact-line svg { font-size: 22px; color: var(--gold); margin-top: 2px; }
.contact-line a { font-size: 18px; }
.contact-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.map { border-radius: 18px; overflow: hidden; border: 1px solid var(--line-strong); aspect-ratio: 4 / 3; background: var(--surface); }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.35) contrast(1.05); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 40px 0 32px; background: #080808; font-size: 14px; }
.footer-wrap { display: grid; gap: 18px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-mark { font-size: 40px; }
.footer-brand .brand-name { font-size: 22px; }
.footer-info p + p { margin-top: 4px; }
.footer-info { color: var(--text-dim); }
@media (min-width: 900px) {
  .footer-wrap { grid-template-columns: auto 1fr; align-items: center; column-gap: 48px; }
  .footer-info { text-align: right; }
  .copyright { grid-column: 1 / -1; border-top: 1px solid rgba(255, 255, 255, .06); padding-top: 18px; }
}

/* ---------- Floating WhatsApp & mobile bar ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 24px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%; display: none; place-items: center;
  background: #1FA855; color: #fff; box-shadow: 0 8px 28px -6px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .08);
  transition: transform .2s ease;
}
.wa-float:hover { color: #fff; transform: scale(1.06); }
.wa-float svg { font-size: 30px; }

.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: grid; grid-template-columns: 1fr 1fr 1.2fr;
  background: rgba(14, 13, 11, .96); border-top: 1px solid var(--line-strong);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  min-height: 60px; font-size: 12px; font-weight: 500; letter-spacing: .04em; color: var(--text);
}
.mobile-bar a + a { border-left: 1px solid rgba(255, 255, 255, .06); }
.mobile-bar svg { font-size: 21px; color: var(--gold-light); }
.mobile-bar .mb-book { background: var(--gold-grad); color: #15110A; }
.mobile-bar .mb-book svg { color: #15110A; }

@media (min-width: 900px) {
  body { padding-bottom: 0; }
  .mobile-bar { display: none; }
  .wa-float { display: grid; }
}

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .btn:hover, .offer-card:hover, .service-card:hover, .plan:hover { transform: none; }
  .gallery-grid li:hover img { transform: none; }
}
