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

/* RESET & BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: #000; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px; line-height: 1.6;
  color: #1a1a2e; background: #f5f3ee;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* NAV */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; background: #000; height: 100px;
  border-bottom: 3px solid #c0392b;
}
.nav-inner {
  height: 100%; max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  text-decoration: none; display: flex; align-items: center;
}
.nav-logo img {
  width: 240px; height: 73px; display: block;
  object-fit: cover; object-position: center;
}
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  font-family: "Inter", sans-serif; font-weight: 500;
  font-size: 15px; color: #fff;
  text-decoration: none; letter-spacing: 0.3px; transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.7; }
.nav-links a.active { color: #c0392b; }
.hamburger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 26px; height: 2px; background: #fff; transition: transform 0.3s, opacity 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* LAYOUT */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-dark { background: #1a1a2e; color: #fff; }
.section-cream { background: #f5f3ee; color: #1a1a2e; }
.section-white { background: #fff; color: #1a1a2e; }

/* HERO WITH COLLAGE BACKGROUND */
.hero-collage {
  position: relative; min-height: 600px; overflow: hidden;
  padding-top: 103px; background: #000;
}
.collage-grid {
  position: absolute; inset: 0; z-index: 0;
  display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 1fr;
  gap: 3px;
}
.collage-grid img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.collage-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.35) 100%);
}
.hero-content-left {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  width: 100%;
}
.hero-content-left h1,
.hero-content-left .hero-sub,
.hero-content-left .btn-group {
  max-width: 550px;
}
.hero-logo {
  width: 300px; max-width: 100%; height: auto; object-fit: contain;
  display: block; margin-bottom: 36px;
}
.hero-collage h1 {
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800;
  font-size: 48px; color: #fff; line-height: 1.1;
}
.hero-sub {
  font-family: "Inter", sans-serif;
  font-size: 17px; color: #fff;
  margin-top: 24px; line-height: 1.7;
}

/* LEGACY HERO (subpages still use this) */
.hero {
  position: relative; min-height: 520px;
  background: #1a1a2e; display: flex; align-items: center;
  padding: 103px 0 0;
}
.hero-content {
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 140px 40px 80px;
}
.hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800;
  font-size: 56px; color: #fff; line-height: 1.1; max-width: 700px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* HERO BACKGROUND OVERLAY */
.hero-bg {
  background-size: cover; background-position: center; position: relative;
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26, 26, 46, 0.85) 0%, rgba(26, 26, 46, 0.5) 50%, rgba(26, 26, 46, 0.15) 100%);
}
.hero-bg > * { position: relative; z-index: 1; }

/* PAGE HERO (shorter, for subpages) */
.page-hero {
  background: #f5f3ee;
  padding: 263px 40px 80px;
  border-bottom: 3px solid #c0392b;
}
.page-hero.hero-bg { background-color: #1a1a2e; }
.page-hero.hero-bg h1 { color: #fff; }
.page-hero.hero-bg p { color: #fff; }
.page-hero .wrap { max-width: 1200px; }
.page-hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800;
  font-size: 48px; color: #1a1a2e; line-height: 1.15;
}
.page-hero p {
  font-size: 18px; color: #1a1a2e; margin-top: 16px;
  max-width: 600px; line-height: 1.7;
}

/* SMALL HERO (no photo) */
.page-hero-sm { padding: 140px 40px 36px; text-align: center; }
.page-hero-sm .wrap { max-width: 600px; margin: 0 auto; }
.page-hero-sm h1 { font-size: 36px; }
.page-hero-sm p { margin-left: auto; margin-right: auto; }
.page-hero-dark { background: #000; border-bottom-color: #c0392b; }
.page-hero-dark h1 { color: #fff; }
.page-hero-dark p { color: #fff; }

/* CONTACT */
.contact-layout { max-width: 700px; padding: 60px 0 80px; }
.contact-block { margin-bottom: 48px; }
.contact-block:last-child { margin-bottom: 0; }
.contact-block h2 { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 22px; margin-bottom: 12px; }
.contact-block p { font-size: 16px; line-height: 1.7; color: #1a1a2e; }
.contact-link { color: #c0392b; text-decoration: none; font-weight: 600; font-size: 18px; }
.contact-link:hover { text-decoration: underline; }

/* TEXT */
.text-section { padding: 80px 0; }
.text-section h2 {
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800;
  font-size: 40px; line-height: 1.15; margin-bottom: 24px;
}
.text-section h3 {
  font-family: "Inter", sans-serif; font-weight: 600;
  font-size: 22px; line-height: 1.3; margin-bottom: 12px;
}
.text-section p { font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.text-section p:last-child { margin-bottom: 0; }
.section-cream .text-section p,
.section-white .text-section p { color: #1a1a2e; }
.section-dark .text-section p { color: #fff; }
.section-dark .text-section h2 { color: #fff; }
.section-dark .text-section h3 { color: #fff; }

/* STATS BAR */
.stats-bar { background: #c0392b; color: #fff; padding: 40px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center; gap: 20px;
}
.stat-number {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 42px; font-weight: 800; color: #fff;
}
.stat-label {
  font-size: 14px; font-weight: 500; color: #fff;
  margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px;
}

/* CARDS */
.cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0; }
.card {
  background: #fff; padding: 40px 32px; border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.card h3 {
  font-family: "Inter", sans-serif; font-weight: 600;
  font-size: 20px; margin-bottom: 12px; color: #1a1a2e; line-height: 1.3;
}
.card p { font-size: 15px; line-height: 1.7; color: #1a1a2e; }
.step-num { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 28px; color: #c0392b; margin-bottom: 8px; }

/* NUMBERED STEPS */
.steps { margin: 40px 0; }
.step { margin-bottom: 48px; }
.step-number {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 72px; font-weight: 800; color: rgba(192,57,43,0.15);
  line-height: 1;
}
.step h3 {
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800;
  font-size: 24px; margin-bottom: 8px; color: #1a1a2e;
}
.step p { font-size: 16px; line-height: 1.8; color: #1a1a2e; }

/* CHECK LIST (dark section) */
.check-list { margin: 40px 0; }
.check-item { display: flex; gap: 20px; margin-bottom: 36px; align-items: flex-start; }
.check-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(192,57,43,0.2); display: flex; align-items: center;
  justify-content: center; margin-top: 2px;
}
.check-icon svg { width: 20px; height: 20px; }
.check-item h3 {
  font-family: "Inter", sans-serif; font-weight: 600;
  font-size: 18px; color: #fff; margin-bottom: 6px;
}
.check-item p { font-size: 15px; line-height: 1.7; color: #fff; }

/* JOURNEY FLOW */
.journey-steps {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px; margin: 40px 0;
  font-family: "Inter", sans-serif; font-weight: 600; font-size: 15px;
}
.journey-step {
  background: #c0392b; color: #fff; padding: 12px 24px;
  border-radius: 8px; letter-spacing: 0.3px;
}
.journey-arrow { color: rgba(26,26,46,0.3); font-size: 24px; }
.section-dark .journey-arrow { color: #fff; }

/* BUTTONS */
.btn-red {
  display: inline-block; font-family: "Inter", sans-serif;
  font-size: 16px; font-weight: 600; color: #fff;
  background: #c0392b; padding: 16px 40px; border-radius: 50px;
  text-decoration: none; letter-spacing: 0.3px;
  transition: background 0.2s; border: none; cursor: pointer;
}
.btn-red:hover { background: #a93226; }
.btn-dark {
  display: inline-block; font-family: "Inter", sans-serif;
  font-size: 16px; font-weight: 600; color: #fff;
  background: #1a1a2e; padding: 16px 40px; border-radius: 50px;
  text-decoration: none; letter-spacing: 0.3px;
  transition: background 0.2s; border: none; cursor: pointer;
}
.btn-dark:hover { background: #2a2a4e; }
.btn-outline-dark {
  display: inline-block; font-family: "Inter", sans-serif;
  font-size: 16px; font-weight: 600; color: #1a1a2e;
  background: transparent; padding: 14px 38px; border-radius: 50px;
  text-decoration: none; letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s;
  border: 2px solid #1a1a2e; cursor: pointer;
}
.btn-outline-dark:hover { background: #1a1a2e; color: #fff; }
.btn-outline-light {
  display: inline-block; font-family: "Inter", sans-serif;
  font-size: 16px; font-weight: 600; color: #fff;
  background: transparent; padding: 14px 38px; border-radius: 50px;
  text-decoration: none; letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s;
  border: 2px solid rgba(255,255,255,0.4); cursor: pointer;
}
.btn-outline-light:hover { background: #fff; color: #1a1a2e; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.btn-group.btn-center { justify-content: center; }

/* LISTS */
.content-list { list-style: none; padding-left: 0; margin-top: 16px; }
.content-list li {
  font-size: 16px; line-height: 2; padding-left: 24px;
  position: relative;
}
.content-list li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%; background: #c0392b;
}
.section-cream .content-list li,
.section-white .content-list li { color: #1a1a2e; }
.section-dark .content-list li { color: #fff; }

/* STORY IMAGE */
.story-image {
  width: 100%; max-width: 400px; border-radius: 12px;
  overflow: hidden; margin-bottom: 40px;
}
.story-image img {
  width: 100%; height: auto; display: block;
  object-fit: cover;
}

/* IMAGE GRID */
.image-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0;
}
.image-grid img {
  width: 100%; height: auto; object-fit: contain;
  border-radius: 12px; display: block;
}

/* SECTION IMAGE (single full-width) */
.section-image {
  width: 100%; max-width: 600px; border-radius: 12px;
  overflow: hidden; margin: 40px 0;
}
.section-image img {
  width: 100%; height: auto; object-fit: contain; display: block;
}

/* PARTNER LOGOS */
.partner-logos {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px; margin-top: 40px;
}
.partner-logo-item {
  height: 120px; background: #fff;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  padding: 20px; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* FOOTER */
footer { background: #000; color: #fff; padding: 60px 40px 40px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
}
.footer-logo img {
  width: 180px; height: 55px; object-fit: cover; object-position: left center;
  display: block; margin-bottom: 24px; margin-left: -10px;
}
.footer-subtitle {
  font-family: "Inter", sans-serif; font-weight: 500;
  font-size: 14px; color: #fff;
  margin-bottom: 8px; letter-spacing: 0.5px;
}
footer a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
footer a:hover { opacity: 0.7; }
footer p { font-size: 14px; line-height: 1.8; color: #fff; }
.footer-contact { margin-top: 20px; }
.footer-contact a { color: #c0392b; text-decoration: none; font-weight: 600; }
.footer-contact a:hover { opacity: 0.8; }
.footer-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.1); margin: 30px 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-size: 13px; color: #fff;
  text-decoration: none;
}
.footer-links a:hover { color: #fff; }
.footer-cic {
  font-size: 13px; color: #fff;
  line-height: 1.6;
}
.footer-red-line { display: none; }

/* MOBILE */
@media (max-width: 900px) {
  .nav-inner { padding: 0 20px; height: 80px; }
  header { height: 80px; }
  .nav-links {
    display: none; position: absolute; top: 83px; left: 0; right: 0;
    flex-direction: column; background: #000;
    padding: 20px; gap: 10px; border-top: 1px solid #222;
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-collage { padding-top: 83px; min-height: 500px; }
  .hero-content-left { padding: 40px 24px 60px; }
  .hero-collage h1 { font-size: clamp(32px, 8vw, 48px); }
  .hero-logo { width: 220px; margin-bottom: 24px; }
  .hero { padding-top: 83px; min-height: auto; }
  .hero-content { padding: 110px 24px 60px; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .page-hero { padding: 183px 24px 40px; }
  .page-hero-sm { padding: 110px 24px 24px; }
  .page-hero h1 { font-size: clamp(30px, 7vw, 42px); }
  .wrap { padding: 0 24px; }
  .text-section { padding: 50px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-inner { grid-template-columns: 1fr; }
  .nav-links a { font-size: 16px; }
  .journey-steps { flex-direction: column; gap: 6px; align-items: center; }
  .journey-step { padding: 12px 24px; font-size: 14px; width: 200px; text-align: center; }
  .journey-arrow { font-size: 18px; transform: rotate(90deg); }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group a { text-align: center; }
  .btn-group.btn-center { align-items: center; }
  .btn-group.btn-center a { min-width: 220px; text-align: center; }
  .image-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

@media (max-width: 500px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 32px; }
}

:focus-visible { outline: 2px solid #c0392b; outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
