@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --navy: #0a2342;
  --navy-mid: #1a3a5c;
  --red: #b22234;
  --red-dark: #8c1a28;
  --white: #ffffff;
  --off-white: #f5f4f0;
  --light-gray: #e8e6e1;
  --mid-gray: #9a9490;
  --dark-gray: #3d3935;
  --text: #1c1a18;
  --max-width: 1100px;
  --nav-height: 64px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── NAV ── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  border-bottom: 3px solid var(--red);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-brand span {
  color: var(--red);
  color: #e05c6c;
}

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

.nav-links a {
  color: #c8d4e0;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-links a.active {
  color: #e05c6c;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.2s;
}

/* ── HERO ── */

.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 24px 72px;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e05c6c;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.1rem;
  color: #a8bcd0;
  max-width: 600px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.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);
}

/* ── LAYOUT ── */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 64px 24px;
}

.section-alt {
  background: var(--off-white);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 640px;
  margin-bottom: 40px;
  font-weight: 300;
}

/* ── BELIEF CARDS (home) ── */

.belief-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.belief-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  padding: 28px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.belief-card:hover {
  border-color: var(--navy-mid);
  box-shadow: 0 4px 16px rgba(10,35,66,0.08);
}

.belief-card-number {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 10px;
}

.belief-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.belief-card p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin-bottom: 18px;
  line-height: 1.6;
}

.belief-card a.card-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 2px;
  transition: border-color 0.15s, color 0.15s;
}

.belief-card a.card-link:hover {
  color: var(--red);
  border-color: var(--red);
}

/* ── ABOUT ── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}

.about-placeholder {
  background: var(--light-gray);
  border-radius: 6px;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--mid-gray);
}

.about-placeholder svg {
  opacity: 0.5;
}

.about-placeholder p {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-highlights {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-highlights li {
  display: flex;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

.about-highlights li::before {
  content: '';
  display: block;
  width: 3px;
  min-width: 3px;
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  margin-top: 4px;
}

/* ── BELIEF PAGE ── */

.belief-hero {
  background: var(--navy);
  color: var(--white);
  padding: 56px 24px 48px;
}

.belief-hero .section-label {
  color: #e05c6c;
}

.belief-hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  max-width: 700px;
}

.belief-hero p {
  color: #a8bcd0;
  font-size: 1rem;
  max-width: 560px;
  font-weight: 300;
}

.belief-nav {
  background: var(--off-white);
  border-bottom: 1px solid var(--light-gray);
  overflow-x: auto;
}

.belief-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  white-space: nowrap;
}

.belief-nav-inner a {
  display: inline-block;
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mid-gray);
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

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

.belief-nav-inner a.active {
  color: var(--navy);
  border-bottom-color: var(--red);
}

.facts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.facts-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-gray);
}

.facts-list li .fact-num {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  min-width: 28px;
}

.belief-image-svg {
  margin-top: 40px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}

.belief-image-box {
  margin-top: 40px;
  background: var(--light-gray);
  border-radius: 6px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--mid-gray);
}

.belief-image-box svg {
  opacity: 0.45;
}

.belief-image-box p {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── BELIEF INDEX PAGE ── */

.belief-index-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.belief-index-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.belief-index-item:hover {
  border-color: var(--navy-mid);
  box-shadow: 0 4px 16px rgba(10,35,66,0.07);
}

.belief-index-num {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-gray);
  min-width: 36px;
}

.belief-index-text h3 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.belief-index-text p {
  font-size: 0.875rem;
  color: var(--mid-gray);
}

.belief-index-arrow {
  margin-left: auto;
  color: var(--mid-gray);
  font-size: 1.2rem;
}

/* ── FOOTER ── */

footer {
  background: var(--navy);
  color: #6e8aa0;
  padding: 36px 24px;
  font-size: 0.85rem;
  border-top: 3px solid var(--red);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: #6e8aa0;
  transition: color 0.15s;
}

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

footer p {
  color: #4a6070;
  font-size: 0.78rem;
  margin-top: 12px;
  text-align: center;
}

/* ── DIVIDER ── */

hr.section-divider {
  border: none;
  border-top: 1px solid var(--light-gray);
  margin: 48px 0;
}

/* ── MOBILE ── */

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0;
    border-bottom: 3px solid var(--red);
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 24px;
    border-radius: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-placeholder {
    aspect-ratio: 16 / 7;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 56px 20px 48px;
  }

  .section {
    padding: 48px 20px;
  }
}
