:root {
  --saffron: #D4871A;
  --saffron-light: #F0A832;
  --crimson: #8B1A1A;
  --dark-navy: #1A1F3A;
  --cream: #FDF6EE;
  --warm-white: #FFFAF4;
  --text-dark: #1C1C1C;
  --text-muted: #5F5B55;
  --border: #E8D9C5;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  min-width: 280px;
  background:
    radial-gradient(circle at 88% 4%, rgba(240,168,50,.13), transparent 24rem),
    var(--cream);
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  line-height: 1.75;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 68px;
  padding: 0 5%;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  flex: 0 0 auto;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  display: block;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 10px;
}

.nav-logo-text {
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover { color: var(--saffron); }

.mobile-nav-cta { display: none; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: none;
}

.menu-toggle::before {
  content: '☰';
  color: var(--dark-navy);
  font-size: 25px;
  line-height: 1;
}

.menu-toggle.is-open::before { content: '×'; font-size: 30px; }

.btn-book-nav {
  border: 0;
  border-radius: 6px;
  padding: 10px 22px;
  background: var(--dark-navy);
  color: #fff;
  cursor: pointer;
  font: 600 14px 'Inter', sans-serif;
  text-decoration: none;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}

.btn-book-nav:hover {
  background: #2a3060;
  transform: translateY(-1px);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 5% 100px;
  background: linear-gradient(135deg, #1A1F3A 0%, #3E2614 62%, #8B4D14 100%);
  color: #fff;
}

.legal-hero::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  right: -90px;
  top: -150px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,.035),
              0 0 0 110px rgba(255,255,255,.02);
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin: auto;
}

.legal-eyebrow {
  margin-bottom: 10px;
  color: var(--saffron-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.15;
}

.legal-hero p {
  max-width: 640px;
  margin-top: 14px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
}

.legal-main {
  width: min(900px, calc(100% - 32px));
  margin: -52px auto 72px;
  position: relative;
  z-index: 2;
}

.legal-card {
  padding: clamp(28px, 5vw, 60px);
  background: #fff;
  border: 1px solid rgba(232,217,197,.82);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(43,30,18,.11);
}

.legal-card h2 {
  margin: 34px 0 10px;
  color: var(--crimson);
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 1.3;
}

.legal-card h2:first-child { margin-top: 0; }

.legal-card p { margin: 0 0 14px; color: #3F3D39; }

.legal-card ul {
  margin: 8px 0 18px 22px;
  color: #3F3D39;
}

.legal-card li { margin-bottom: 7px; padding-left: 4px; }

.legal-card a {
  color: var(--saffron);
  font-weight: 600;
  text-decoration: none;
}

.legal-card a:hover { text-decoration: underline; }

.updated-badge {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 7px 12px;
  border: 1px solid #F1D8B2;
  border-radius: 999px;
  background: #FFF7E9;
  color: #7B4A0D;
  font-size: 12px;
  font-weight: 700;
}

footer { background: #0f1326; padding: 56px 5% 28px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo-text { color: #fff; font-size: 20px; }

.footer-brand p {
  max-width: 220px;
  margin: 14px 0 20px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  line-height: 1.7;
}

.social-links { display: flex; gap: 12px; }

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s;
}

.social-link:hover { background: var(--saffron); color: #fff; }
.footer-col h4, .footer-qr h4 { color: #fff; font-size: 14px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }

.footer-col a {
  color: rgba(255,255,255,.55);
  font-size: 13px;
  text-decoration: none;
}

.footer-col a:hover { color: var(--saffron-light); }
.footer-qr p { color: rgba(255,255,255,.55); font-size: 12px; margin-bottom: 12px; }

.footer-qr-box {
  width: 100px;
  height: 100px;
  margin-bottom: 12px;
  border: 1.5px dashed #bbb;
  border-radius: 8px;
  background: #f0f0f0;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 11px;
  text-align: center;
}

.footer-qr-box span { font-size: 24px; }

.footer-qr-image {
  display: block;
  width: 100px;
  height: 100px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #fff;
}

.btn-google-play {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p, .footer-bottom a {
  color: rgba(255,255,255,.4);
  font-size: 12px;
  text-decoration: none;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom a:hover { color: rgba(255,255,255,.75); }

@media (max-width: 900px) {
  nav { padding: 0 4%; }
  nav .menu-toggle { display: flex !important; align-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 4%;
    right: 4%;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 45px rgba(22,18,14,.16);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 11px 12px; border-radius: 8px; }
  .nav-links a:hover { background: var(--cream); }
  .mobile-nav-cta { display: block; }
  .mobile-nav-cta a { background: var(--dark-navy); color: #fff; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav-logo-text { font-size: 18px; }
  .nav-logo-icon { width: 38px; height: 38px; border-radius: 9px; }
  nav > .btn-book-nav { display: none; }
  .legal-hero { padding: 52px 20px 86px; }
  .legal-main { margin-top: -42px; margin-bottom: 48px; }
  .legal-card { border-radius: 16px; }
  .legal-card h2 { font-size: 21px; }
  .footer-grid { grid-template-columns: 1fr; }
}
