/* ============================================================
   GIVERSJOURNEY — Shared Styles
   Clean, modern, conservative. Built for trust.
   ============================================================ */

:root {
  --navy: #1B2A4A;
  --navy-light: #243656;
  --gold: #B8860B;
  --gold-light: #D4A843;
  --gold-pale: #F5E6CC;
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --charcoal: #2D2D2D;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --gray-pale: #F3F4F6;
  --sage: #5C7A6A;
  --sage-light: #E8F0EC;
  --radius: 8px;
  --shadow-sm: 0 1px 2px rgba(27,42,74,0.06);
  --shadow-md: 0 4px 12px rgba(27,42,74,0.08);
  --shadow-lg: 0 8px 30px rgba(27,42,74,0.10);
}

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 { font-size: 2.6rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  transition: color 0.2s;
}

a:hover { color: var(--gold); }

/* ---- Navigation ---- */

nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 140px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.nav-logo img {
  height: 125px;
  width: auto;
}

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

.nav-links a {
  font-size: 0.9rem;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  display: inline-block;
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none !important;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--navy-light);
  color: var(--white) !important;
}

/* ---- Layout ---- */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

.section-sm { padding: 3rem 0; }
.section-lg { padding: 6rem 0; }

/* ---- Hero ---- */

.hero {
  background: var(--navy);
  color: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  max-width: 800px;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.15rem;
  max-width: 700px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
}

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

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--white);
}

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

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--navy-light);
  color: var(--white);
}

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

.btn-gold-outline:hover {
  background: var(--gold-pale);
}

/* ---- Value Strip ---- */

.value-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
}

.value-strip .container {
  display: flex;
  gap: 2rem;
  padding: 1.25rem 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
}

.value-item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---- Cards ---- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* ---- Two Column ---- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col-wide {
  grid-template-columns: 1.2fr 0.8fr;
}

@media (max-width: 768px) {
  .two-col, .two-col-wide { grid-template-columns: 1fr; }
}

/* ---- Testimonial / Quote ---- */

blockquote {
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* ---- Steps ---- */

.steps {
  counter-reset: step;
  list-style: none;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 1.5rem 0 1.5rem 4rem;
  border-bottom: 1px solid var(--gray-light);
}

.steps li:last-child { border-bottom: none; }

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: Georgia, serif;
}

.steps h3 { margin-bottom: 0.25rem; }
.steps p { color: var(--gray); margin-bottom: 0; }

/* ---- Checklist ---- */

.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.75rem;
  margin: 2rem 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.checklist li::before {
  content: "\2713";
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- FAQ ---- */

.faq-item {
  border-bottom: 1px solid var(--gray-light);
  padding: 1.5rem 0;
}

.faq-item:first-child { padding-top: 0; }

.faq-question {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--charcoal);
}

/* ---- Page Header (non-home) ---- */

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.4rem;
  max-width: 700px;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
}

/* ---- Content Sections ---- */

.content-block {
  padding: 4rem 0;
}

.content-block h2 {
  margin-bottom: 1.5rem;
}

.content-block h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-top: 0.75rem;
}

.tagline {
  font-size: 1.2rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  margin-bottom: 2rem;
}

/* ---- Highlight Box ---- */

.highlight-box {
  background: var(--white);
  border: 1px solid var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}

.highlight-box h3 { color: var(--navy); }

/* ---- Trust Statement ---- */

.trust-statement {
  background: var(--sage-light);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: center;
}

.trust-statement p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  color: var(--navy);
  font-style: italic;
  max-width: 650px;
  margin: 0 auto;
}

/* ---- CTA Section ---- */

.cta-section {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 { color: var(--white); }

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-section .btn-primary {
  font-size: 1rem;
  padding: 0.85rem 2rem;
}

/* ---- Footer ---- */

footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  color: var(--white);
}

.footer-brand img { height: 125px; width: auto; }

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ---- Responsive ---- */

@media (max-width: 768px) {
  html { font-size: 16px; }
  h1 { font-size: 2rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero { padding: 4rem 0; }
  section { padding: 3rem 0; }
  .nav-links { display: none; }
  .container { padding: 0 1.25rem; }
  .value-strip .container { flex-direction: column; gap: 0.5rem; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .checklist { grid-template-columns: 1fr; }
}

/* ---- Print ---- */

@media print {
  nav, .nav-cta, .cta-section, footer { display: none; }
  body { background: white; color: black; }
}
