@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  --navy: #1C2B3A;
  --navy-dark: #111E2B;
  --navy-mid: #223044;
  --white: #FFFFFF;
  --off-white: #F7F5F0;
  --light-grey: #F2F0EB;
  --gold: #C49A5A;
  --gold-light: #D4AA72;
  --ink: #0D1B26;
  --muted: #717B86;
  --border: rgba(13,27,38,0.1);
  --border-light: rgba(255,255,255,0.1);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--off-white); color: var(--ink); font-family: var(--sans); font-size: 15px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }

/* Typography */
.tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold); font-family: var(--sans);
}
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.02; }
h1 { font-size: clamp(38px, 5.5vw, 72px); letter-spacing: -0.01em; }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 2vw, 26px); }

/* Layout */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.wrap-narrow { max-width: 900px; margin: 0 auto; padding: 0 40px; }

/* Buttons */
.btn { display: inline-block; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 13px 24px; border-radius: 1px; transition: 0.2s; border: none; }
.btn-navy { background: var(--navy); color: var(--white); border: 1.5px solid var(--navy); }
.btn-navy:hover { background: var(--gold); border-color: var(--gold); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.55); }
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); border: 1.5px solid var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-white { background: var(--white); color: var(--navy); border: 1.5px solid var(--white); }
.btn-white:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* NAV — shared */
nav.main-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,245,240,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
nav.main-nav .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 0 40px; height: 68px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo .n1 { font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--navy); letter-spacing: 0.05em; }
.nav-logo .n2 { font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--navy); letter-spacing: 0.05em; }
.nav-logo .n3 { font-size: 8px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-top: 1px; }
nav.main-nav ul { display: flex; align-items: center; gap: 28px; list-style: none; }
nav.main-nav ul a { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); transition: color 0.2s; }
nav.main-nav ul a:hover { color: var(--gold); }
nav.main-nav ul a.active { color: var(--gold); }
.nav-book { background: var(--navy) !important; color: var(--white) !important; padding: 9px 18px; font-size: 11px !important; font-weight: 700 !important; letter-spacing: 0.1em !important; border-radius: 1px; transition: background 0.2s !important; }
.nav-book:hover { background: var(--gold) !important; }

/* Gold accent line */
.gold-line { width: 40px; height: 2px; background: var(--gold); margin-bottom: 20px; }
.gold-line-center { width: 40px; height: 2px; background: var(--gold); margin: 0 auto 20px; }

/* Section label */
.section-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.on { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* Sticky WhatsApp */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 50px; height: 50px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 25px; height: 25px; fill: #fff; }

/* Sticky bottom CTA */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 89;
  background: var(--navy); border-top: 2px solid var(--gold);
  padding: 12px 40px; display: flex; align-items: center; justify-content: center; gap: 24px;
  transform: translateY(100%); transition: transform 0.4s;
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar p { font-size: 13px; color: rgba(255,255,255,0.75); }
.sticky-bar a { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: var(--gold); color: var(--white); padding: 9px 20px; border-radius: 1px; }
.sticky-bar-close { background: none; border: none; color: rgba(255,255,255,0.35); font-size: 20px; padding: 0 6px; }

/* Footer — shared */
footer.main-footer { background: var(--navy-dark); padding: 64px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.footer-brand .fl { font-family: var(--serif); font-size: 22px; color: var(--white); }
.footer-brand .fs { font-size: 8px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 { font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.42); padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p, .footer-bottom a { font-size: 11px; color: rgba(255,255,255,0.28); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 24px; }

/* Portal strip */
.portal-strip { background: var(--white); padding: 22px 0; border-bottom: 1px solid var(--border); }
.portal-strip-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.portal-strip .label { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.portal-name { font-family: var(--sans); font-size: 14px; font-weight: 700; color: var(--muted); opacity: 0.45; letter-spacing: -0.01em; }

/* Page hero (for inner pages) */
.page-hero {
  min-height: 360px; display: grid; grid-template-columns: 1fr 1fr;
  background: var(--navy); position: relative; overflow: hidden;
}
.page-hero-content { padding: 64px 56px; display: flex; flex-direction: column; justify-content: flex-end; }
.page-hero-content .tag { color: var(--gold); margin-bottom: 16px; display: block; }
.page-hero-content h1 { color: var(--white); font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }
.page-hero-content p { color: rgba(255,255,255,0.65); font-size: 16px; max-width: 420px; line-height: 1.65; }
.page-hero-img { position: relative; overflow: hidden; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(28,43,58,0.4), transparent); }

@media (max-width: 900px) {
  .wrap, .wrap-narrow { padding: 0 24px; }
  nav.main-nav .nav-inner { padding: 0 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .portal-strip-inner { padding: 0 24px; }
  .page-hero { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-img { min-height: 220px; }
}
