:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --text: #1d2430;
  --muted: #5a6475;
  --primary: #153a5b;
  --accent: #c99a3b;
  --radius-lg: 22px;
  --radius-md: 14px;
  --space-xs: 0.5rem;
  --space-sm: 0.85rem;
  --space-md: 1.2rem;
  --space-lg: 2rem;
  --space-xl: 3.2rem;
  --shadow-soft: 0 20px 40px rgba(15, 25, 40, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% -8%, #e7f2ff 0%, transparent 48%),
    radial-gradient(circle at 88% 10%, #fff0c8 0%, transparent 35%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding-top: 70px;
}

a { color: inherit; text-decoration: none; }

.shell {
  width: min(1180px, calc(100% - 2.4rem));
  margin-inline: auto;
}

/* ─── Fixed Navigation Bar ─────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 24, 43, 0.82);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 320ms ease, box-shadow 320ms ease;
}

.site-header.scrolled {
  background: rgba(11, 24, 43, 0.97);
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.22);
}

.nav-shell {
  width: min(1180px, calc(100% - 2.4rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--accent), #e8b84b);
  color: #1a1000;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.brand-mark.has-logo {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.12rem;
}

.brand-text { line-height: 1.2; }
.brand-name { font-weight: 700; font-size: 1rem; color: #fff; }
.brand-tag { color: rgba(255, 255, 255, 0.5); font-size: 0.74rem; }

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.01em;
}

/* ─── Nav Links ─────────────────────────────────────────────── */
.top-nav {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

.top-nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  transition: color 200ms ease, background 200ms ease;
  white-space: nowrap;
}

.top-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.top-nav a[aria-current="page"] {
  color: var(--accent);
  background: rgba(201, 154, 59, 0.12);
  font-weight: 600;
}

/* ─── Nav Actions (Book Now + Burger) ─────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav-book-btn {
  font-size: 0.875rem;
  padding: 0.5rem 1.1rem;
  white-space: nowrap;
}

/* ─── Mobile Hamburger ─────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  transition: background 200ms ease;
}

.nav-burger:hover { background: rgba(255, 255, 255, 0.12); }

.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 280ms ease, opacity 200ms ease;
  transform-origin: center;
}

.site-header.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.site-header.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

main { padding-bottom: 3rem; }

.section-head { margin: var(--space-xl) 0 var(--space-lg); }
.eyebrow { color: var(--primary); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; font-weight: 700; }

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.3;
  pointer-events: none;
}
.bg-orb-a {
  width: 340px;
  height: 340px;
  background: #b6d8ff;
  left: -120px;
  top: -80px;
}
.bg-orb-b {
  width: 280px;
  height: 280px;
  background: #ffe3a6;
  right: -80px;
  top: 120px;
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(30, 50, 75, 0.12);
  padding: 2.5rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 30, 52, 0.03) 100%);
  color: var(--muted);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--primary), #274f73);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.82rem;
  transition: color 200ms ease;
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: #8a96a8;
  border-top: 1px solid #e8edf4;
  padding-top: 1.2rem;
  margin-top: 0.5rem;
}

/* ─── Mobile Responsive ─────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-burger { display: flex; }

  .top-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(11, 24, 43, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.2rem 1.5rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), opacity 200ms ease;
  }

  .site-header.nav-open .top-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .top-nav a {
    font-size: 1rem;
    padding: 0.85rem 0.6rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .top-nav a:last-child { border-bottom: none; }

  .nav-book-btn { display: none; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}
