/* =================================================================
   ROYAL INTERNATIONAL SPA — DESIGN SYSTEM
   Obsidian black + champagne gold. Cinematic, not pastel-wellness.
   Built on the real crest and real interior — no stock template moves.
   ================================================================= */

:root {
  --black: #000000;
  --obsidian: #0A0A0A;
  --obsidian-card: #141414;

  --paper: #F5F0E6;
  --paper-deep: #EAE1CC;

  --ink: #17130F;
  --ink-soft: #3C352C;
  --ink-faint: #756B5A;

  --gold: #D4AF37;
  --gold-bright: #E5C158;
  --gold-deep: #A8842B;

  --white-muted: rgba(255,255,255,0.66);
  --white-faint: rgba(255,255,255,0.42);
  --hairline-dark: rgba(255,255,255,0.14);
  --hairline-gold: rgba(212,175,55,0.4);
  --hairline-light: rgba(23,19,15,0.13);

  --whatsapp: #1F7A4D;
  --whatsapp-deep: #175C3A;

  --call: #1769D2;
  --call-deep: #1256AC;

  --serif: 'Libre Caslon Display', Georgia, serif;
  --serif-text: 'Libre Caslon Text', Georgia, serif;
  --sans: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;

  --wrap: 1500px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; width: 100%; }
[id] { scroll-margin-top: 100px; }
body {
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--gold); color: var(--black); }
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--hairline-light); border-radius: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(24px, 4vw, 72px); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); }
.on-dark .eyebrow { color: var(--gold-bright); }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; color: var(--ink); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: #fff; }
.serif-italic { font-style: italic; color: var(--gold-deep); }
.on-dark .serif-italic { color: var(--gold-bright); }

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase; text-decoration: none;
  padding: 16px 32px; border-radius: 7px; border: 1px solid transparent;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-2px) scale(1.015); box-shadow: 0 10px 26px rgba(212,175,55,0.28); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--black); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(23,19,15,0.32); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #fff; border-color: var(--hairline-dark); }
.btn-ghost-light:hover { border-color: var(--gold); background: var(--gold); color: var(--black); transform: translateY(-2px); }
.btn-wa { background: var(--whatsapp); color: #fff; }
.btn-wa:hover { background: var(--whatsapp-deep); transform: translateY(-2px) scale(1.015); box-shadow: 0 10px 26px rgba(31,122,77,0.32); }
.btn-call { background: var(--call); color: #fff; }
.btn-call:hover { background: var(--call-deep); transform: translateY(-2px) scale(1.015); box-shadow: 0 10px 26px rgba(23,105,210,0.32); }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Text-link CTA — not every action needs to be a block */
.link-cta {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  font-size: 12.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid rgba(23,19,15,0.35); padding-bottom: 4px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), gap 0.3s var(--ease);
}
.link-cta:hover { color: var(--gold-deep); border-color: var(--gold-deep); gap: 13px; }
.link-cta.on-dark { color: #fff; border-color: var(--hairline-dark); }
.link-cta.on-dark:hover { color: var(--gold-bright); border-color: var(--gold-bright); }
.link-cta svg { width: 13px; height: 13px; transition: transform 0.3s var(--ease); }
.link-cta:hover svg { transform: translateX(3px); }

/* =================== HEADER =================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--hairline-dark);
}
.site-header-inner {
  width: 100%; max-width: 1600px; margin: 0 auto; padding: 0 clamp(24px, 4vw, 64px);
  height: 84px; display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; min-width: 190px; }
.brand-mark { width: 54px; height: 54px; object-fit: contain; flex-shrink: 0; }
.brand-word { line-height: 1.1; }
.brand-word .name { font-family: var(--serif-text); font-size: 17px; color: #fff; letter-spacing: 0.2px; }
.brand-word .tag { display: block; font-family: var(--sans); font-size: 8.5px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: 40px; list-style: none; }
.main-nav a {
  text-decoration: none; font-size: 12.5px; font-weight: 600; color: var(--white-muted);
  letter-spacing: 1.4px; text-transform: uppercase; position: relative; padding-bottom: 4px;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a:hover, .main-nav a.active { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 22px; }
.header-tel { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--white-muted); font-size: 13px; font-weight: 600; }
.header-tel svg { width: 14px; height: 14px; color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; color: #fff; flex-direction: column; gap: 5px; width: 26px; }
.nav-toggle span { display: block; height: 1.5px; background: #fff; }
.header-book { padding: 13px 20px; }
.header-book svg { width: 17px; height: 17px; }

/* =================== CINEMATIC HERO =================== */
.hero {
  position: relative; min-height: max(720px, 100svh); display: flex; align-items: center;
  background: var(--black); overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.8) saturate(1.1) contrast(1.04);
  transform: scale(1.02);
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0.42) 42%, rgba(0,0,0,0.66) 100%);
}
.hero-emblem {
  position: absolute; z-index: 2; top: 118px; right: 44px; width: 78px; height: auto; opacity: 0.9;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.5));
}
@media (max-width: 1180px) { .hero-emblem { width: 60px; top: 106px; right: 24px; } }
@media (max-width: 760px) { .hero-emblem { display: none; } }
.hero-content { position: relative; z-index: 2; max-width: 1080px; margin: 0 auto; padding: 150px clamp(24px, 4vw, 72px) 90px; width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-content > * { opacity: 0; animation: hero-rise 0.9s var(--ease) forwards; }
.hero-content .eyebrow { margin-bottom: 26px; animation-delay: 0.1s; }
.hero-content h1 { animation-delay: 0.22s; }
.hero-content .lede { animation-delay: 0.34s; }
.hero-content .hero-actions { animation-delay: 0.46s; }
.hero-content .hero-microcopy { animation-delay: 0.58s; }
@keyframes hero-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.hero-content h1 {
  font-size: clamp(42px, 5.6vw, 84px); line-height: 1.04; letter-spacing: -0.5px;
  color: #fff; max-width: 920px; margin-bottom: 26px;
}
.hero-content .lede {
  font-size: 17px; color: rgba(255,255,255,0.82); line-height: 1.75; max-width: 620px; margin-bottom: 38px;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-microcopy { font-size: 12.5px; color: rgba(255,255,255,0.68); display: flex; align-items: center; gap: 8px; }
.hero-microcopy svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

/* =================== STAT / TRUST STRIP =================== */
.stat-strip { background: var(--obsidian); border-top: 1px solid var(--hairline-dark); border-bottom: 1px solid var(--hairline-dark); }
.stat-row { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(24px, 4vw, 72px); display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 40px 28px; border-left: 1px solid var(--hairline-dark); text-align: center; }
.stat-item:first-child { border-left: none; }
.stat-num { font-family: var(--serif); font-size: 36px; color: var(--gold-bright); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--white-muted); font-weight: 600; }

/* =================== SECTION SCAFFOLDING =================== */
section.block { padding: clamp(84px, 8vw, 128px) 0; }
section.block.tight { padding: clamp(72px, 6.5vw, 104px) 0; }
section.block.on-dark { background: var(--obsidian); color: var(--white-muted); }
.block-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 64px; }
.block-head h2 { font-size: clamp(30px, 3.4vw, 46px); line-height: 1.14; max-width: 620px; }
.block-head .eyebrow { margin-bottom: 18px; }
.block-head-link { font-size: 12.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 3px; white-space: nowrap; }
.block-head-link:hover { color: var(--gold-deep); border-color: var(--gold-deep); }
.on-dark .block-head-link { color: #fff; border-color: var(--hairline-dark); }
.on-dark .block-head-link:hover { color: var(--gold-bright); border-color: var(--gold-bright); }


/* =================== TREATMENT CARD RAIL (homepage) =================== */
.t-rail-wrap { position: relative; }
.t-rail {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 6px 28px; margin: -6px -6px 0; scrollbar-width: none;
}
.t-rail::-webkit-scrollbar { display: none; }
.t-card {
  flex: 0 0 300px; scroll-snap-align: start; position: relative;
  aspect-ratio: 3 / 4; overflow: hidden; border-radius: 10px;
  text-decoration: none; color: inherit; display: block;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.t-card img {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.12) brightness(0.9) saturate(1);
  transition: filter 0.7s var(--ease), transform 0.9s var(--ease);
}
.t-card:hover img { filter: grayscale(0) brightness(1) saturate(1.08); transform: scale(1.06); }
.t-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.32) 46%, rgba(0,0,0,0.05) 75%);
}
.t-card-tag {
  position: absolute; z-index: 2; top: 16px; left: 16px;
  font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-bright); border: 1px solid rgba(212,175,55,0.6); border-radius: 5px; padding: 4px 9px;
  background: rgba(0,0,0,0.35); backdrop-filter: blur(4px);
}
.t-card-content { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 22px; color: #fff; }
.t-card-cat { font-size: 10.5px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.t-card-name { font-family: var(--serif-text); font-size: 21px; line-height: 1.15; margin-bottom: 10px; }
.t-card-desc {
  font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,0.78);
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease), opacity 0.35s var(--ease), margin 0.45s var(--ease);
}
.t-card:hover .t-card-desc { max-height: 90px; opacity: 1; margin-bottom: 10px; }
.t-card-meta { display: flex; justify-content: space-between; align-items: baseline; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.18); }
.t-card-duration { font-size: 11.5px; color: rgba(255,255,255,0.6); }
.t-card-price { font-family: var(--serif); font-size: 18px; color: var(--gold-bright); }

.t-rail-nav { display: flex; gap: 10px; }
.t-rail-nav button {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--hairline-light);
  background: var(--paper); color: var(--ink); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.t-rail-nav button:hover { border-color: var(--gold); background: var(--ink); color: #fff; }
.t-rail-nav button svg { width: 16px; height: 16px; }
.t-rail-nav button:disabled { opacity: 0.35; cursor: default; pointer-events: none; }
@media (max-width: 760px) {
  .t-rail-nav { display: none; }
  .t-card { flex-basis: 240px; }
}

/* Detailed treatment card (services page expanded) */
.t-detail { padding: 56px 0; border-bottom: 1px solid var(--hairline-light); display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.t-detail:last-child { border-bottom: none; }
.t-detail.reverse { grid-template-columns: 1.15fr 0.85fr; }
.t-detail.reverse .t-detail-media { order: 2; }
.t-detail-media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--obsidian); }
.t-detail-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.04) contrast(1.02) brightness(0.97); transition: transform 1.2s var(--ease); }
.t-detail:hover .t-detail-media img { transform: scale(1.04); }
.t-detail-num { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 14px; display: block; }
.t-detail h3 { font-size: 30px; margin-bottom: 6px; }
.t-detail .subtitle { font-size: 13.5px; color: var(--gold-deep); font-style: italic; font-family: var(--serif-text); margin-bottom: 18px; }
.t-detail p.desc { font-size: 15px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 22px; max-width: 480px; }
.t-detail ul { list-style: none; margin-bottom: 26px; }
.t-detail ul li { font-size: 13.5px; color: var(--ink-faint); padding-left: 18px; position: relative; margin-bottom: 9px; }
.t-detail ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.t-detail-price-row { display: flex; align-items: baseline; gap: 18px; margin-bottom: 24px; flex-wrap: wrap; }
.t-detail-price-row .price { font-family: var(--serif); font-size: 26px; color: var(--gold-deep); }
.t-detail-price-row .price small { font-size: 13px; color: var(--ink-faint); font-family: var(--sans); font-weight: 500; }

/* =================== CONFIRMED MENU / MEMBERSHIPS =================== */
.menu-table-wrap { overflow-x: auto; border: 1px solid var(--hairline-light); background: var(--paper); }
.menu-table { width: 100%; min-width: 680px; border-collapse: collapse; }
.menu-table th, .menu-table td { padding: 22px 24px; text-align: left; border-bottom: 1px solid var(--hairline-light); }
.menu-table tr:last-child td { border-bottom: none; }
.menu-table th { background: var(--obsidian); color: var(--gold-bright); font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; }
.menu-table td:first-child { font-family: var(--serif-text); font-size: 18px; color: var(--ink); }
.menu-table td:not(:first-child) { font-family: var(--serif); font-size: 21px; color: var(--gold-deep); white-space: nowrap; }
.menu-note { margin-top: 18px; color: var(--ink-faint); font-size: 13px; }
.mobile-swipe-hint { display: none; margin-top: 12px; color: var(--gold-deep); font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; }
.addon-grid, .membership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.addon-card, .membership-card { background: var(--paper); border: 1px solid var(--hairline-light); padding: 30px; position: relative; }
.addon-card h3, .membership-card h3 { font-size: 25px; margin-bottom: 8px; }
.addon-duration { color: var(--ink-faint); font-size: 12px; letter-spacing: 1.1px; text-transform: uppercase; font-weight: 700; }
.addon-price { font-family: var(--serif); color: var(--gold-deep); font-size: 31px; margin: 24px 0; }
.sharing-prices { display: grid; gap: 10px; margin: 22px 0; }
.sharing-prices div { display: flex; justify-content: space-between; gap: 18px; padding-bottom: 9px; border-bottom: 1px solid var(--hairline-light); font-size: 14px; }
.sharing-prices strong { color: var(--gold-deep); font-family: var(--serif-text); font-size: 17px; }
.membership-card.featured { border-color: var(--gold); box-shadow: 0 14px 38px rgba(41,31,8,0.09); }
.membership-badge { display: inline-block; background: var(--gold); color: var(--black); padding: 5px 9px; font-size: 9px; font-weight: 800; letter-spacing: 1.3px; text-transform: uppercase; margin-bottom: 18px; }
.membership-price { font-family: var(--serif); color: var(--gold-deep); font-size: 36px; line-height: 1; margin: 18px 0 5px; }
.membership-credit { color: var(--ink); font-weight: 700; margin-bottom: 20px; }
.membership-card ul { list-style: none; margin: 20px 0 28px; }
.membership-card li { font-size: 13px; color: var(--ink-soft); padding: 8px 0 8px 19px; position: relative; border-bottom: 1px solid var(--hairline-light); }
.membership-card li::before { content: '\2713'; position: absolute; left: 0; color: var(--gold-deep); font-weight: 800; }
.menu-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* =================== PHILOSOPHY / SPLIT SECTION =================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(1.04) contrast(1.02) brightness(0.97); }
.split-media.square img { aspect-ratio: 1/1; }
.split-media .frame-num { position: absolute; z-index: 2; top: -18px; left: -18px; background: var(--black); color: var(--gold-bright); font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; padding: 9px 16px; }
.split-copy h2 { font-size: clamp(30px, 3.4vw, 44px); line-height: 1.14; margin-bottom: 26px; }
.split-copy p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 20px; max-width: 500px; }
.split-copy p strong { color: var(--ink); font-weight: 600; }
.split-list { margin-top: 32px; display: grid; gap: 20px; }
.split-list-item { display: flex; gap: 18px; align-items: flex-start; }
.split-list-item .n { font-family: var(--serif); font-size: 15px; color: var(--gold-deep); flex-shrink: 0; width: 26px; }
.split-list-item .t { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.split-list-item .t strong { display: block; color: var(--ink); font-weight: 600; font-size: 14.5px; margin-bottom: 2px; }

/* =================== PULL QUOTE / TESTIMONIAL =================== */
.pull-quote { background: var(--black); color: #fff; text-align: center; padding: 140px 0; }
.pull-quote .wrap { max-width: 880px; }
.pull-quote .stars { color: var(--gold-bright); letter-spacing: 4px; font-size: 15px; margin-bottom: 30px; }
.pull-quote blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(24px, 3vw, 38px); line-height: 1.42; color: #fff; margin-bottom: 34px; }
.pull-quote cite { font-style: normal; font-size: 12.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--white-faint); }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline-light); border: 1px solid var(--hairline-light); }
.review-cell { background: var(--paper); padding: 40px 36px; display: flex; flex-direction: column; }
.review-cell .stars { color: var(--gold-deep); letter-spacing: 3px; font-size: 13px; margin-bottom: 20px; }
.review-cell p.quote { font-family: var(--serif-text); font-style: italic; font-size: 17px; line-height: 1.6; color: var(--ink); margin-bottom: 24px; flex: 1; }
.review-cell .who { font-size: 12.5px; font-weight: 700; letter-spacing: 0.5px; color: var(--ink); }
.review-cell .meta { font-size: 11.5px; color: var(--ink-faint); margin-top: 3px; }

/* =================== CTA BAND =================== */
.cta-band { background: var(--black); color: #fff; padding: 96px 0; border-top: 1px solid var(--hairline-dark); }
.cta-band .wrap { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 3vw, 40px); max-width: 480px; line-height: 1.16; }
.cta-band .cta-sub { font-size: 14px; color: var(--white-muted); margin-top: 12px; }
.cta-band-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.pull-quote, .cta-band, .site-footer, .stat-strip, section.block.on-dark, .hero { position: relative; }

/* =================== SEAL NUMERALS / STAMP MOTIF =================== */
.t-num, .timeline-year {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif-text); font-weight: 400;
  border: 1px solid var(--hairline-light); border-radius: 50%; color: var(--gold-deep);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.t-num { width: 44px; height: 44px; font-size: 14px; }
.t-row:hover .t-num { border-color: var(--gold); background: var(--paper); }
.timeline-year { width: 78px; height: 78px; font-size: 16px; }

.t-tag {
  display: inline-block; font-size: 9.5px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--gold-deep); border: 1px solid var(--gold); padding: 4px 10px; margin-top: 6px;
}

/* =================== SEAL — SIGNATURE MICRO-MOTION =================== */

/* =================== FAQ =================== */
.faq-list { border-top: 1px solid var(--hairline-light); max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--hairline-light); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; text-align: left; background: none; border: none; padding: 26px 0; font-family: var(--serif-text); font-size: 18px; color: var(--ink); }
.faq-q .plus { font-family: var(--sans); font-size: 20px; color: var(--gold-deep); flex-shrink: 0; transition: transform 0.35s var(--ease); font-weight: 300; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding-bottom: 26px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.75; max-width: 620px; }

/* =================== QUICK BOOK (contact page) =================== */
.quickbook-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--hairline-light); border: 1px solid var(--hairline-light); }
.qb-item {
  background: var(--paper); padding: 24px 26px; display: flex; align-items: center; justify-content: space-between;
  text-decoration: none; color: inherit; gap: 16px; transition: background 0.3s var(--ease);
}
.qb-item:hover { background: rgba(212,175,55,0.09); }
.qb-name { font-family: var(--serif-text); font-size: 16.5px; color: var(--ink); margin-bottom: 4px; }
.qb-detail { font-size: 12.5px; color: var(--ink-faint); }
.qb-price { font-family: var(--serif); font-size: 19px; color: var(--gold-deep); white-space: nowrap; }

/* =================== CONTACT INFO GRID =================== */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--hairline-light); border-left: 1px solid var(--hairline-light); }
.info-cell { border-right: 1px solid var(--hairline-light); border-bottom: 1px solid var(--hairline-light); padding: 40px 34px; }
.info-cell .eyebrow { margin-bottom: 16px; }
.info-cell h3 { font-size: 20px; margin-bottom: 10px; }
.info-cell p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }
.info-cell a.link { display: inline-block; margin-top: 14px; font-size: 12.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-bottom: 1px solid var(--gold-deep); color: var(--gold-deep); text-decoration: none; }

/* =================== GALLERY MOSAIC =================== */
.gallery-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; gap: 2px; background: var(--hairline-dark); border: 1px solid var(--hairline-dark); }
.gallery-item { position: relative; overflow: hidden; background: var(--obsidian-card); }
.gallery-item img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.03) brightness(0.92); transition: transform 0.9s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-caption {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 18px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff; font-size: 11.5px; letter-spacing: 0.6px; font-weight: 600;
  opacity: 0; transform: translateY(8px); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* =================== USP GRID (the Royal difference) =================== */
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.usp-card {
  text-align: left; padding: 34px 30px; background: var(--paper-deep);
  border: 1px solid var(--hairline-light); border-radius: 16px;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.usp-card:hover { border-color: var(--hairline-gold); transform: translateY(-5px); box-shadow: 0 18px 36px rgba(23,19,15,0.1); }
.usp-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,0.22), rgba(212,175,55,0.06));
  display: flex; align-items: center; justify-content: center; color: var(--gold-deep);
  margin-bottom: 20px; transition: background 0.4s var(--ease), transform 0.4s var(--ease), color 0.4s var(--ease);
}
.usp-icon svg { width: 24px; height: 24px; }
.usp-card:hover .usp-icon { background: var(--gold); color: var(--black); transform: scale(1.08); }
.usp-card h4 { font-family: var(--serif-text); font-size: 18px; color: var(--ink); margin-bottom: 9px; }
.usp-card p { font-size: 14px; color: var(--ink-faint); line-height: 1.65; }
@media (max-width: 900px) {
  .usp-grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
}
@media (max-width: 600px) {
  .usp-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* =================== STORY TIMELINE =================== */
.timeline { border-top: 1px solid var(--hairline-light); max-width: 760px; }
.timeline-item { display: grid; grid-template-columns: 110px 1fr; gap: 30px; padding: 34px 0; border-bottom: 1px solid var(--hairline-light); }
.timeline-body h4 { font-family: var(--serif-text); font-size: 19px; color: var(--ink); margin-bottom: 8px; }
.timeline-body p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }

/* =================== FOOTER =================== */
.site-footer { background: var(--black); color: var(--white-muted); padding: 90px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 60px; border-bottom: 1px solid var(--hairline-dark); margin-bottom: 30px; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-brand img { width: 190px; height: auto; object-fit: contain; }
.footer-brand .name { font-family: var(--serif-text); font-size: 20px; color: #fff; }
.footer-desc { font-size: 13.5px; line-height: 1.75; max-width: 320px; }
.site-footer h5 { font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 11px; }
.site-footer ul a { text-decoration: none; color: var(--white-muted); font-size: 13.5px; transition: color 0.3s var(--ease); }
.site-footer ul a:hover { color: var(--gold-bright); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 12px; color: var(--white-faint); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: var(--white-faint); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.25); transition: color 0.3s var(--ease), border-color 0.3s var(--ease); }
.footer-bottom a:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

/* =================== FLOATING WHATSAPP FAB =================== */
.wa-float, .call-float {
  position: fixed; right: max(28px, env(safe-area-inset-right)); z-index: 150;
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  color: #fff; text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  overflow: hidden; white-space: nowrap;
}
.wa-float { bottom: max(28px, env(safe-area-inset-bottom)); background: var(--whatsapp); }
.call-float { bottom: calc(max(28px, env(safe-area-inset-bottom)) + 68px); background: var(--call); }
.wa-float svg, .call-float svg { width: 24px; height: 24px; flex-shrink: 0; }
.wa-float .wa-label, .call-float .float-label { display: none; }
.call-float:focus-visible, .wa-float:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

/* =================== REVEAL =================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.26s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.32s; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =================== PAGE HEADER (interior pages) =================== */
.page-header { padding: 200px 0 90px; background: var(--black); position: relative; }
.breadcrumbs {
  display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-bottom: 24px;
  color: rgba(255,255,255,0.5); font-size: 11px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
}
.breadcrumbs a { color: var(--gold-bright); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; text-underline-offset: 4px; }
.breadcrumbs span[aria-hidden] { color: rgba(255,255,255,0.28); }
.page-header .eyebrow { margin-bottom: 22px; color: var(--gold-bright); }
.page-header h1 { font-size: clamp(34px, 4.4vw, 58px); line-height: 1.1; max-width: 760px; color: #fff; }
.page-header p.lede { font-size: 16px; color: var(--white-muted); max-width: 560px; margin-top: 22px; line-height: 1.75; }
.page-header-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 30px; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1080px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3) { border-left: none; }
  .stat-item:nth-child(2), .stat-item:nth-child(4) { border-top: 1px solid var(--hairline-dark); }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 44px; }
  .split-media { order: -1 !important; }
  .t-detail, .t-detail.reverse { grid-template-columns: 1fr; gap: 30px; }
  .t-detail.reverse .t-detail-media { order: -1; }
  .info-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
  .addon-grid, .membership-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .main-nav, .header-tel { display: none; }
  .nav-toggle { display: flex; }
  .site-header-inner { padding-left: 28px; padding-right: 28px; }
}
@media (max-width: 760px) {
  .wrap, .site-header-inner { padding-left: 24px; padding-right: 24px; }
  .site-header-inner { height: 72px; gap: 10px; }
  .brand { min-width: 0; flex: 1; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-word .name { font-size: 14px; }
  .brand-word .tag { font-size: 7px; letter-spacing: 1.1px; }
  .header-actions { gap: 10px; }
  .header-book { display: inline-flex; padding: 11px 13px; font-size: 10px; letter-spacing: .7px; }
  .header-book svg { width: 16px; height: 16px; }
  .nav-toggle { width: 24px; }
  .hero { min-height: max(680px, 100svh); }
  .hero-media img, .hero-media video { object-position: center center; }
  .hero-content { padding: 122px 24px 70px; }
  .hero-content h1 { font-size: clamp(38px, 10.8vw, 58px); }
  .hero-content .lede { font-size: 15.5px; line-height: 1.65; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .page-header-actions { flex-direction: column; align-items: stretch; }
  .page-header-actions .btn { width: 100%; justify-content: center; }
  section.block { padding: 76px 0; }
  .block-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .stat-row { grid-template-columns: 1fr 1fr; padding: 0 24px; }
  .quickbook-grid { grid-template-columns: 1fr; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; }
  .page-header { padding: 150px 0 60px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .addon-grid, .membership-grid { grid-template-columns: 1fr; }
  #add-ons .addon-card { grid-column: auto !important; }
  .menu-table th, .menu-table td { padding: 18px; }
  .mobile-swipe-hint { display: block; }
  .wa-float, .call-float { right: max(18px, env(safe-area-inset-right)); width: 54px; height: 54px; }
  .wa-float { bottom: max(18px, env(safe-area-inset-bottom)); }
  .call-float { bottom: calc(max(18px, env(safe-area-inset-bottom)) + 64px); }
}

@media (max-width: 600px) {
  .brand-word { display: none; }
}

@media (max-width: 420px) {
  .wrap, .site-header-inner { padding-left: 18px; padding-right: 18px; }
  .brand-mark { width: 40px; height: 40px; }
  .header-book { padding: 10px 11px; font-size: 9px; letter-spacing: .5px; }
  .header-book svg { width: 15px; height: 15px; }
  .nav-toggle { width: 22px; }
  .hero-content { padding-left: 18px; padding-right: 18px; }
  .hero-content h1 { font-size: clamp(34px, 10.5vw, 44px); }
  .hero-actions { width: 100%; gap: 14px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-microcopy { justify-content: center; text-align: center; line-height: 1.5; }
  .stat-row { padding-left: 18px; padding-right: 18px; }
  .stat-item { padding: 28px 14px; }
  .stat-num { font-size: 29px; }
  .quickbook-grid .qb-item { padding: 20px 18px; }
  .qb-name { font-size: 15px; }
  .qb-price { font-size: 17px; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 84px 0 0 0; background: #050504; z-index: 190;
  padding: 20px 24px; display: none; flex-direction: column; gap: 2px;
  border-top: 1px solid var(--hairline-dark); overflow-y: auto; overscroll-behavior: contain;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { text-decoration: none; color: #fff; font-family: var(--serif-text); font-size: 24px; padding: 16px 0; border-bottom: 1px solid var(--hairline-dark); }
.mobile-nav .btn { margin-top: 20px; padding: 16px 22px; border: 0; font-family: var(--sans); font-size: 11px; }
@media (max-width: 760px) { .mobile-nav { inset: 72px 0 0 0; } }

/* =================== 404 =================== */
.error-page {
  min-height: 100svh; display: grid; place-items: center; position: relative; isolation: isolate;
  padding: 56px 24px; text-align: center; color: #fff; background: var(--black);
}
.error-page::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background: url('/images/royal-lounge-gold.webp') center / cover no-repeat;
  filter: brightness(.35) saturate(.85);
}
.error-page::after { content: ''; position: absolute; inset: 0; z-index: -1; background: rgba(0,0,0,.42); }
.error-card { width: min(680px, 100%); }
.error-brand { display: inline-flex; flex-direction: column; align-items: center; gap: 8px; color: var(--gold-bright); text-decoration: none; font-family: var(--serif); font-size: 19px; }
.error-brand img { width: 82px; height: 82px; object-fit: contain; }
.error-code { margin: 34px 0 4px; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 5px; }
.error-card h1 { color: #fff; font-size: clamp(42px, 7vw, 72px); line-height: 1.05; }
.error-card > p { max-width: 510px; margin: 24px auto 34px; color: var(--white-muted); }
.error-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
@media (max-width: 520px) { .error-actions { flex-direction: column; } .error-actions .btn { width: 100%; justify-content: center; } }
