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

:root {
  --bg-0: #080808;
  --bg-1: #181410;
  --bg-2: #222222;
  --bg-3: #2c2c2c;
  --gold: #C9A84C;
  --gold-light: #E8CB7A;
  --gold-dark: #8B6E28;
  --cream: #F0E6D3;
  --muted: #787060;
  --border: #282828;
  --red: #9B2226;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-0);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.30));
}

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

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--cream); }

.nav-links a.active {
  color: var(--gold);
  pointer-events: none;
}

.nav-book {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg-0) !important;
  background: var(--gold);
  padding: 0.55rem 1.4rem;
  text-decoration: none;
  transition: background 0.2s;
  font-weight: 600;
  border: none;
}

.nav-book:hover { background: var(--gold-light) !important; color: var(--bg-0) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: 0.3s;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 8rem 2rem 4rem;
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.page-hero-tag::before,
.page-hero-tag::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold-dark);
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

/* ─── SECTIONS ─── */
section { padding: 5rem 2rem; }

.container { max-width: 1100px; margin: 0 auto; }

.section-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold-dark);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--gold); }

/* ─── BUTTONS ─── */
.btn-primary {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bg-0);
  background: var(--gold);
  padding: 1rem 2.5rem;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: all 0.2s;
  display: inline-block;
  cursor: pointer;
}

.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-secondary {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
  background: transparent;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border: 2px solid var(--muted);
  transition: all 0.2s;
  display: inline-block;
}

.btn-secondary:hover { border-color: var(--cream); color: var(--cream); }

/* ─── FOOTER ─── */
footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.footer-logo img { height: 60px; width: auto; opacity: 0.9; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.footer-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,230,211,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-copy { font-size: 0.76rem; color: rgba(120,112,96,0.55); margin-top: 0.4rem; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── SVG SERVICE ICONS ─── */
.service-icon-svg {
  display: block;
  width: 26px;
  height: 26px;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.service-icon-svg svg { width: 100%; height: 100%; }

/* ─── WHY CHOOSE US ─── */
.why-us { background: var(--bg-0); padding: 5rem 2rem; border-top: 1px solid var(--border); }

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin: 3rem 0 2.5rem;
}

.credential-item {
  background: var(--bg-1);
  padding: 2.5rem 2rem;
  text-align: center;
}

.credential-item::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.6rem;
}

.credential-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.credential-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.credential-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.review-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  border: 1px solid var(--border);
  background: var(--bg-1);
  flex-wrap: wrap;
}

.review-cta-strip p {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* ─── FOOTER SOCIALS ─── */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-0);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    gap: 1.2rem;
  }

  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }

  /* Show book button inside mobile menu */
  .nav-links .nav-book {
    display: block !important;
    text-align: center;
    background: var(--gold);
    color: var(--bg-0) !important;
    padding: 0.75rem 1rem;
  }

  section { padding: 3.5rem 1.5rem; }
  .page-hero { padding: 7rem 1.5rem 3rem; }

  /* ── Why Choose Us ── */
  .credentials-grid { grid-template-columns: 1fr; }

  .credential-item { padding: 2rem 1.5rem; }

  .review-cta-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1rem;
  }

  .review-cta-strip .btn-secondary {
    width: 100%;
    text-align: center;
  }
}
