/* ══════════════════════════════════════════════
   KAC Marketing — Shared Design System
   Fonts: Cormorant Garamond + Outfit
   ══════════════════════════════════════════════ */

:root {
  --steel: #5B7BA5;
  --steel-dark: #3D5A80;
  --steel-light: #8FABC4;
  --steel-pale: #E8EFF5;
  --cream: #FAFBFD;
  --white: #FFFFFF;
  --charcoal: #2B2D42;
  --text: #3A3D52;
  --text-light: #6B7094;
  --accent: #C4A35A;
  --border: #E2E8F0;
  --green: #2D8B4E;
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Announcement Bar ── */
.announcement {
  background: var(--steel-dark);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.announcement a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  margin-left: 6px;
}
.announcement a:hover { text-decoration: underline; }

/* ── Navigation ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--steel-dark);
  letter-spacing: 0.05em;
  text-decoration: none;
}
.logo span { color: var(--steel-light); }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--steel); }
.nav-links a.active { color: var(--steel); font-weight: 600; }
.nav-cta {
  background: var(--steel);
  color: white !important;
  padding: 10px 24px;
  border-radius: 6px;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--steel-dark) !important; }
.mobile-menu { display: none; cursor: pointer; }
.mobile-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── Mobile Nav Overlay ── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.mobile-nav-overlay a:hover { color: var(--steel); }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 30px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--charcoal);
  cursor: pointer;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--steel);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--steel-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,90,128,0.25);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--steel-dark);
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--border);
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--steel);
  color: var(--steel);
}
.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--steel-dark);
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ── Section Patterns ── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 80px 60px 100px;
  background: linear-gradient(135deg, var(--white) 0%, var(--steel-pale) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(91,123,165,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-badge {
  display: inline-block;
  background: var(--steel-pale);
  color: var(--steel-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero h1 em {
  color: var(--steel);
  font-style: italic;
}
.page-hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 36px;
}

/* ── Footer ── */
footer {
  padding: 60px 60px 40px;
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-brand .logo {
  color: white;
  margin-bottom: 12px;
  display: block;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 360px;
}
.footer-col h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.klaviyo-badge {
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  nav { padding: 20px 30px; }
  .page-hero { padding-left: 30px; padding-right: 30px; }
  footer { padding: 60px 30px 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .page-hero h1 { font-size: 2.4rem; }
  .page-hero { padding: 60px 24px 80px; }
  .section-title { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  footer { padding: 60px 24px 40px; }
}
