/* =========================================================
   BOLDVIEW — Shared Stylesheet
   Edit colors, fonts, and spacing in :root variables below
   ========================================================= */

:root {
  /* === BRAND COLORS === */
  --navy-dark: #0F1B33;
  --navy: #1A2B4C;
  --navy-soft: #243A5F;
  --coral: #E8704C;
  --coral-light: #F4A582;
  --gold: #D4A574;

  /* === NEUTRALS === */
  --ice: #E8EEF7;
  --paper: #FAFAF7;
  --cream: #F5F1EA;
  --slate: #4A5568;
  --slate-light: #94A3B8;
  --charcoal: #1F2937;
  --white: #FFFFFF;

  /* === TYPOGRAPHY === */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* === SPACING === */
  --container: 1240px;
  --gutter: 2rem;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--paper);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral);
  display: inline-block;
}

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.divider {
  width: 48px;
  height: 3px;
  background: var(--coral);
  margin: 1.5rem 0;
  border: 0;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(15, 27, 51, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: padding 0.3s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand-mark {
  width: 18px; height: 18px;
  background: var(--coral);
  display: inline-block;
  transform: rotate(45deg);
}
.nav-menu {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
.nav-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ice);
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--coral-light); }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--coral);
}
.nav-menu .cta-link {
  background: var(--coral);
  color: var(--white);
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.nav-menu .cta-link:hover {
  background: var(--coral-light);
  color: var(--white);
  transform: translateY(-1px);
}
.nav-toggle { display: none; }

/* =========================================================
   PAGE INTRO (used on inner pages)
   ========================================================= */
.page-intro {
  background: var(--navy-dark);
  color: var(--white);
  padding: 11rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-intro::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: var(--coral);
  opacity: 0;
}
.page-intro .eyebrow { color: var(--coral); }
.page-intro h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-top: 0.8rem;
  max-width: 900px;
}
.page-intro h1 em {
  color: var(--coral);
  font-style: italic;
  font-weight: 400;
}
.page-intro p.lead {
  color: var(--ice);
  font-size: 1.15rem;
  max-width: 680px;
  margin-top: 1.5rem;
  line-height: 1.5;
}

/* =========================================================
   SECTIONS
   ========================================================= */
section { padding: 6rem 0; }
.section-light { background: var(--paper); }
.section-dark  { background: var(--navy-dark); color: var(--white); }
.section-cream { background: var(--cream); }
.section-ice   { background: var(--ice); }

.section-dark h2 { color: var(--white); }
.section-dark .eyebrow { color: var(--coral-light); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--coral-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(232, 112, 76, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
  border-color: var(--coral);
  color: var(--coral-light);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.btn:hover .arrow { transform: translateX(4px); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-dark);
  color: var(--ice);
  padding: 4rem 0 2rem;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, var(--coral) 0%, var(--coral) 30%, transparent 30%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h4 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--slate-light);
  line-height: 1.6;
  max-width: 320px;
}
.footer-col h5 {
  color: var(--coral-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a {
  font-size: 0.9rem;
  color: var(--ice);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--coral-light); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--slate-light);
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease-out both; }
.fade-up.delay-1 { animation-delay: 0.1s; }
.fade-up.delay-2 { animation-delay: 0.25s; }
.fade-up.delay-3 { animation-delay: 0.4s; }
.fade-up.delay-4 { animation-delay: 0.55s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .site-header { padding: 0.9rem 0; }
  .site-header .container { padding: 0 1.25rem; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 85%; max-width: 320px; height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -10px 0 40px -10px rgba(0, 0, 0, 0.4);
  }
  .nav-menu.open { right: 0; }
  .nav-menu a {
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }
  .nav-menu .cta-link {
    margin-top: 0.5rem;
    padding: 0.8rem 1.4rem;
    font-size: 1rem;
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--white);
    font-size: 1.6rem;
    line-height: 1;
    z-index: 101;
    border-radius: 4px;
    flex-shrink: 0;
  }
  .nav-toggle:hover, .nav-toggle:active {
    background: rgba(255, 255, 255, 0.08);
  }
  .brand { font-size: 0.85rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  section { padding: 4rem 0; }
  .page-intro { padding: 8rem 0 4rem; }
}
