@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

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

:root {
  --ink:        #0d1b2a;
  --navy:       #162d4a;
  --navy-light: #1f4068;
  --gold:       #c9953a;
  --gold-light: #e8b96a;
  --gold-pale:  #f5e8c8;
  --cream:      #f8f5ef;
  --white:      #ffffff;
  --slate:      #5a7a99;
  --mist:       #d0dde8;
  --fs-xl: clamp(2.8rem, 5vw, 5rem);
  --fs-lg: clamp(2rem, 3.5vw, 3.2rem);
  --fs-md: clamp(1.3rem, 2vw, 1.8rem);
  --fs-sm: clamp(0.95rem, 1.2vw, 1.05rem);
  --radius: 4px;
  --shadow: 0 8px 40px rgba(13,27,42,0.18);
  --shadow-lg: 0 20px 80px rgba(13,27,42,0.28);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: var(--fs-sm);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  height: 70px;
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,149,58,0.25);
}

.nav-logo {
  display: flex; align-items: bottom; gap: 0.7em;
  text-decoration: none; margin-top: auto;
}

.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.nav-logo-mark svg { width: 20px; height: 20px; fill: var(--ink); }

.nav-wordmark {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}

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

.nav-links a {
  color: var(--mist);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,149,58,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: var(--mist);
  padding: 4rem 3rem 2.5rem;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--slate);
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(90,122,153,0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--slate);
}

.footer-bottom a { color: var(--slate); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── SECTION LABEL ── */
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  padding: 6rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,149,58,0.15) 0%, transparent 65%);
}

.cta-band-inner { position: relative; max-width: 700px; margin: 0 auto; }

.cta-band h2 {
  font-family: 'Cormorant Garant', serif;
  font-size: var(--fs-lg);
  color: var(--white);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.cta-band p {
  color: var(--mist);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.cta-band .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  nav { padding: 0 1rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .cta-band { padding: 4rem 1.5rem; }
}
