/* ============================================================
   PRINCHIPEH — style.css
   ============================================================ */

:root {
  --navy:     #0D1B2A;
  --burgundy: #6B2737;
  --amber:    #E8A838;
  --cream:    #FDF6EC;
  --charcoal: #2D2D2D;
  --offwhite: #F8F8F8;
  --white:    #FFFFFF;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
}

img { display: block; width: 100%; object-fit: cover; }

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

/* ── Utility ── */
.section-padding {
  padding: 96px 64px;
}

.eyebrow {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #d4942a;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: visible;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.5px;
}

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

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
}

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

.nav-links a.nav-cta {
  background: var(--amber);
  color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-links a.nav-cta:hover { background: #d4942a; color: var(--navy); }

/* Nav divider */
.nav-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.2);
  align-self: center;
}

/* Dropdown */
.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.82);
  padding: 0;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-trigger:hover { color: var(--amber); }

.nav-chevron {
  font-size: 12px;
  display: inline-block;
  transition: transform 0.2s;
}

.nav-dropdown-trigger[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-trigger[aria-expanded="true"] { color: var(--amber); }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  list-style: none;
  min-width: 180px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  z-index: 999;
}

.nav-dropdown.open {
  display: block;
}

.nav-dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown li a:hover {
  background: rgba(232,168,56,0.15);
  color: var(--amber);
}

.nav-dropdown li + li {
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1531206715517-5c0ba140b2b8?w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.70);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 0 64px;
}

.hero-eyebrow {
  color: var(--amber);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-sub {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   OUR STORY
   ============================================================ */
.story {
  background: var(--cream);
}

.story .container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: center;
}

.story-eyebrow { color: var(--burgundy); }

.story h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 28px;
}

.story-body {
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.85;
}

.story-body p + p { margin-top: 16px; }

.story-signoff {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--burgundy);
  margin-top: 28px;
}

.story-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.story-image img {
  height: 100%;
}

/* ============================================================
   IMPACT SNAPSHOT
   ============================================================ */
.impact {
  background: var(--offwhite);
  text-align: center;
}

.impact-eyebrow { color: var(--burgundy); }

.impact h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 44px);
  color: var(--navy);
  margin-bottom: 56px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.impact-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 40px 24px;
  text-align: center;
}

.impact-number {
  font-family: 'DM Serif Display', serif;
  font-size: 52px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 12px;
}

.impact-label {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   OUR VENTURES
   ============================================================ */
.ventures {
  background: var(--cream);
  text-align: center;
}

.ventures-eyebrow { color: var(--amber); }

.ventures h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 44px);
  color: var(--navy);
  margin-bottom: 56px;
}

.ventures-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: left;
}

.venture-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(13, 27, 42, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.venture-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(13, 27, 42, 0.14);
}

.venture-image {
  height: 240px;
  overflow: hidden;
}

.venture-image img {
  height: 100%;
  transition: transform 0.4s;
}

.venture-card:hover .venture-image img {
  transform: scale(1.04);
}

.venture-body {
  padding: 32px;
}

.venture-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.venture-tag.gives {
  background: rgba(107, 39, 55, 0.1);
  color: var(--burgundy);
}

.venture-tag.markets {
  background: rgba(232, 168, 56, 0.15);
  color: #a0720f;
}

.venture-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 12px;
}

.venture-body p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 24px;
}

.venture-link {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.venture-link.gives-link { color: var(--burgundy); }
.venture-link.markets-link { color: #a0720f; }
.venture-link:hover { gap: 10px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 72px 64px 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

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

.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.footer-contact a {
  color: var(--amber);
  transition: color 0.2s;
}

.footer-contact a:hover { color: #d4942a; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.social-links a:hover { color: var(--amber); }

/* ============================================================
   RESPONSIVE — 768px breakpoint
   ============================================================ */
@media (max-width: 768px) {
  .section-padding { padding: 64px 24px; }

  /* Nav */
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }

  /* Hero */
  .hero-content { padding: 0 24px; }
  .hero h1 { font-size: 38px; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }

  /* Story */
  .story .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-image { aspect-ratio: 16/9; order: -1; }

  /* Impact */
  .impact-grid { grid-template-columns: 1fr 1fr; }

  /* Ventures */
  .ventures-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 56px 24px 0; }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
