/* ── Brand tokens ── */
:root {
  --purple: #6D246B;
  --purple-dark: #561d54;
  --blue: #29A9E0;
  --navy: #1E2A4A;
  --gray-bg: #f7f7f7;
  --text: #1a1a1a;
  --muted: #555;
}

/* ── Reset / base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: #fff; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Utility ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.btn-primary {
  display: inline-block; background: var(--purple); color: #fff;
  padding: .82rem 1.75rem; border-radius: 4px; font-weight: 600;
  font-size: .92rem; letter-spacing: .02em; cursor: pointer; border: none;
  transition: background .2s;
}
.btn-primary:hover { background: var(--purple-dark); }
.section-label { font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--purple); }

/* ── Nav ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid #e8e8e8;
}
.site-nav .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 88px; gap: 2rem;
  padding-top: .4rem;
  padding-bottom: .4rem;
}
.nav-logo { display: flex; align-items: center; gap: .6rem; }
.nav-logo img { height: 64px; width: auto; }
.nav-logo span { font-weight: 700; font-size: 1.08rem; color: var(--purple); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: .95rem; font-weight: 600; color: #333; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--purple); }
.nav-cta { flex-shrink: 0; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: .25rem; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: .2s; }
.nav-mobile { display: none; background: #fff; border-top: 1px solid #eee; padding: 1rem 1.5rem 1.5rem; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1rem; }
.nav-mobile a { font-size: .95rem; font-weight: 600; color: #333; }
.nav-mobile.open { display: block; }

/* ── Split page header ── */
.page-header { background: var(--gray-bg); padding: 3rem 0; }
.page-header .container { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.page-header h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.15; }
.page-header img { border-radius: 8px; width: 100%; height: 280px; object-fit: cover; }

/* ── CTA Banner ── */
.cta-banner {
  position: relative; padding: 5rem 0; background: #111;
  background-image: url('../assets/cta.jpg');
  background-size: cover; background-position: center;
  color: #fff; text-align: left;
}
.cta-banner::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.72);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 1.5rem; max-width: 560px; }

/* ── Footer ── */
.site-footer { background: #fff; border-top: 1px solid #e8e8e8; padding: 3rem 0 1.5rem; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-map iframe { width: 100%; height: 220px; border: 0; border-radius: 6px; }
.footer-contact h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; }
.footer-contact p { color: var(--muted); font-size: .9rem; margin-bottom: .4rem; }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  color: var(--purple);
}
.footer-social:hover { color: var(--purple-dark); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; border-top: 1px solid #eee; padding-top: 1.2rem; }
.footer-nav { display: flex; gap: 1.5rem; list-style: none; }
.footer-nav a { font-size: .85rem; color: var(--muted); }
.footer-nav a:hover { color: var(--purple); }
.footer-copy { font-size: .8rem; color: #999; }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .page-header .container { grid-template-columns: 1fr; }
  .page-header img { height: 200px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
