@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;600;700;800&display=swap');

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

:root {
  --gold: #E8A020;
  --gold-light: #F5C060;
  --gold-dark: #C07010;
  --dark: #111110;
  --dark2: #1C1C1A;
  --dark3: #252523;
  --mid: #3A3A37;
  --text: #F0EDE6;
  --muted: #9A9890;
  --red: #D94F2B;
  --nav-h: 70px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(17,17,16,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232,160,32,0.18);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; letter-spacing: 0.05em;
  color: var(--gold); text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--text); }

.nav-links { display: flex; gap: 0.2rem; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.82rem;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.4rem 0.75rem; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(232,160,32,0.08); }

.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: 0.05em;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold); color: var(--dark);
  padding: 0.5rem 1.3rem; border-radius: 4px;
  font-weight: 800; font-size: 0.82rem; text-decoration: none;
  letter-spacing: 0.04em; transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(17,17,16,0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232,160,32,0.18);
  padding: 1.5rem 5%;
  z-index: 199;
  flex-direction: column; gap: 0.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--muted); text-decoration: none; font-size: 1rem;
  font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.75rem 1rem; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); background: rgba(232,160,32,0.08); }
.nav-mobile .mob-book {
  margin-top: 0.5rem;
  background: var(--gold); color: var(--dark);
  text-align: center; border-radius: 6px;
  font-weight: 800;
}
.nav-mobile .mob-phone {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; color: var(--gold-light);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 0.05em;
}

/* ── PAGE HEADER (for sub-pages) ── */
.page-header {
  min-height: 38vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 3rem) 5% 3rem;
  position: relative; overflow: hidden;
  background: var(--dark2);
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 60% 50%, rgba(232,160,32,0.07) 0%, transparent 70%),
    linear-gradient(rgba(232,160,32,0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,32,0.6) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
  opacity: 1;
}
.page-header-inner { position: relative; z-index: 1; }
.page-header-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem;
}
.page-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95; letter-spacing: 0.03em; color: var(--text);
  margin-bottom: 1rem;
}
.page-header p { font-size: 1.05rem; color: var(--muted); max-width: 500px; }

/* ── SECTIONS ── */
section { padding: 5rem 5%; }
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1; letter-spacing: 0.03em; color: var(--text); margin-bottom: 1rem;
}
.section-sub { color: var(--muted); font-size: 1rem; max-width: 500px; line-height: 1.7; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--dark);
  padding: 0.85rem 2rem; border-radius: 4px;
  font-weight: 800; font-size: 0.95rem; text-decoration: none;
  letter-spacing: 0.02em; transition: all 0.2s; white-space: nowrap;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,0.25); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text); text-decoration: none;
  font-weight: 600; font-size: 0.95rem;
  border: 1px solid var(--mid); padding: 0.85rem 1.5rem; border-radius: 4px;
  transition: all 0.2s; white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); text-decoration: none;
  font-weight: 700; font-size: 0.9rem;
  border: 1.5px solid var(--gold); padding: 0.7rem 1.4rem; border-radius: 4px;
  transition: all 0.2s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); }

/* ── FOOTER ── */
footer {
  background: var(--dark2); border-top: 1px solid var(--mid);
  padding: 4rem 5% 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; color: var(--gold); letter-spacing: 0.05em;
  margin-bottom: 0.75rem; display: block; text-decoration: none;
}
.footer-logo span { color: var(--text); }
.footer-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-badge {
  margin-top: 1.25rem;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,160,32,0.1); border: 1px solid rgba(232,160,32,0.2);
  padding: 6px 12px; border-radius: 6px;
  font-size: 0.8rem; color: var(--gold); font-weight: 600;
}
.footer-col h4 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--mid); flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-phone { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--gold); letter-spacing: 0.05em; text-decoration: none; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.65s ease; }
.fade-in.visible { opacity: 1; }

/* ── FLOATING BOOK CTA ── */
.floating-cta {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 150;
  background: var(--gold); color: var(--dark);
  padding: 0.8rem 1.5rem; border-radius: 50px;
  font-weight: 800; font-size: 0.9rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(232,160,32,0.4);
  transition: all 0.2s; display: flex; align-items: center; gap: 8px;
  letter-spacing: 0.03em;
}
.floating-cta:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,160,32,0.5); }
.floating-cta-pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--dark); animation: fpulse 2s infinite;
}
@keyframes fpulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-phone { display: none; }
  .nav-burger { display: flex; }
  section { padding: 3.5rem 5%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-desc { max-width: 100%; }
}
@media (max-width: 480px) {
  .nav-logo { font-size: 1.8rem; }
  .floating-cta span { display: none; }
  .floating-cta { padding: 0.9rem 1.1rem; border-radius: 50%; }
}
