@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,600;1,400&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

:root {
  --navy: #1a2744;
  --navy-mid: #243358;
  --gold: #c9922a;
  --gold-light: #f0c96a;
  --gold-pale: #fdf3dc;
  --cream: #faf7f2;
  --soft: #f4f1ec;
  --teal: #1d7a6e;
  --teal-light: #e1f5f2;
  --text: #1a2744;
  --text-mid: #4a5568;
  --text-muted: #8a9ab0;
  --border: rgba(26,39,68,0.1);
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.stk-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  padding: 0 32px;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 15px; color: var(--gold-light);
  text-decoration: none; line-height: 1.2;
}
.nav-logo span { display: block; font-size: 10px; color: rgba(255,255,255,0.4); font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { font-size: 12px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-cta { background: var(--gold); color: #fff !important; padding: 8px 18px; border-radius: 6px; font-weight: 600; font-size: 12px !important; }

/* BUTTONS */
.btn { display: inline-block; padding: 13px 26px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.2s; border: none; font-family: 'Plus Jakarta Sans', sans-serif; }
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: #b8821f; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-mid); }
.btn-outline { background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.25); }
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: #186058; }

/* SECTION SCAFFOLD */
.section { padding: 56px 32px; }
.section-cream { background: var(--cream); }
.section-soft { background: var(--soft); }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); }
.section-inner { max-width: 960px; margin: 0 auto; }

.section-label { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.section-h2 { font-family: 'Fraunces', serif; font-size: 28px; color: var(--navy); line-height: 1.2; margin-bottom: 8px; }
.section-h2-light { color: #fff; }
.section-sub { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }

/* FOOTER */
.stk-footer { background: var(--navy); padding: 40px 32px 28px; }
.footer-inner { max-width: 960px; margin: 0 auto; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 16px; color: var(--gold-light); margin-bottom: 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-col p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-domains { font-size: 11px; color: rgba(255,255,255,0.3); }

/* TOAST */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--navy); color: #fff; padding: 12px 20px; border-radius: var(--radius-sm); font-size: 13px; z-index: 999; opacity: 0; transform: translateY(8px); transition: all 0.3s; pointer-events: none; }
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .stk-nav { padding: 0 16px; }
  .nav-links { display: none; }
  .section { padding: 40px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
