/* ── ROOT & RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #004165;
  --steel: #295F79;
  --mid: #6D8C9B;
  --warm: #E8E4DE;
  --gold: #C8A84B;
  --text-muted: #555;
}

body {
  font-family: 'Jost', sans-serif;
}

/* ── NAVIGATION ── */
.site-nav {
  width: 100%;
  padding: 32px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-right a {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-right a:hover {
  opacity: 0.6;
}

.donate-link {
  padding: 8px 16px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--gold);
}

/* Hide hamburger on desktop */
.hamburger {
  display: none;
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 72px 48px 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: rgba(200,168,75,0.4);
  margin-bottom: 40px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 76px;
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin: 0;
  max-width: 600px;
  text-align: center;
}

.hero-title-italic {
  font-family: 'Cormorant Garamond', serif;
  font-size: 76px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.0;
  color: var(--gold);
  margin: 0 0 36px;
  text-align: center;
}

.hero-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin: 0 0 48px;
  max-width: 420px;
  text-align: center;
}

.hero-motto {
  display: flex;
  gap: 32px;
  align-items: center;
}

.motto-word {
  text-align: center;
}

.motto-word .gr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  display: block;
}

.motto-word .en {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-top: 4px;
  display: block;
}

.motto-sep {
  font-size: 18px;
  color: rgba(200,168,75,0.3);
}

/* ── HERO WAVE ── */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 160px;
}

/* ── FOUNDING BANNER ── */
.founding-banner {
  background: var(--steel);
  border-top: 1px solid rgba(200,168,75,0.3);
  border-bottom: 1px solid rgba(200,168,75,0.3);
  padding: 18px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.founding-banner .label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}

.founding-banner .text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--warm);
  text-align: center;
}

.founding-divider {
  width: 1px;
  height: 20px;
  background: rgba(200,168,75,0.35);
  flex-shrink: 0;
}

/* ── MISSION ── */
.mission {
  padding: 80px 72px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--steel);
}

.section-intro {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--warm);
  border: 1px solid var(--warm);
}

.mission-card {
  background: #fff;
  padding: 35px 32px;
}

.mission-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--warm);
  line-height: 1;
  margin-bottom: 16px;
}

.mission-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}

.mission-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── DESKTOP RESET (fixes mobile overrides) ── */
@media (min-width: 769px) {
  .nav-right {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .nav-brand {
    display: inline;
  }

  .site-nav {
    position: absolute;
    background: transparent;
    padding: 32px 64px;
  }

  .nav-logo {
    height: 40px;
  }
  .mobile-menu {
    display: none !important;
  }
  .hamburger {
    display: none !important;
  }
}

/* ABOUT SECTION */
.about-section {
  background: var(--navy);
  padding: 80px 64px;
}

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

.section-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label span {
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 28px;
}

.about-title em {
  color: var(--gold);
}

.about-text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 18px;
}

.values-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.values-list {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.value-item {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold);
  min-width: 110px;
}

.value-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* PATRON SECTION */
.patron-section {
  background: #F6F4F1;
  padding: 80px 64px;
  border-top: 1px solid #E8E4DE;
}

.patron-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: center;
}

.patron-image-outer {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(200,168,75,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FBF5E6;
  overflow: hidden;
}

.patron-image-inner {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(200,168,75,0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.patron-image-inner img {
  width: 250%;
  height: 250%;
  object-fit: cover;
  object-position: center 10%;
  margin-top: 20px;
}

.patron-caption {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  text-align: center;
  line-height: 1.6;
  margin-top: 16px;
}

.patron-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}

.patron-title em {
  color: var(--steel);
}

.patron-text {
  font-size: 14px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 16px;
}

.patron-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--steel);
  line-height: 1.6;
  margin-top: 24px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}


/* ── MOBILE ── */
@media (max-width: 768px) {

  .site-nav {
    position: relative;
    padding: 20px 28px;
    background: var(--navy);
  }

  .nav-brand {
    display: inline;
    font-size: 14px;
  }

  .nav-right {
    display: none;
  }

  .nav-logo {
    height: 26px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

  .hamburger span {
    width: 24px;
    height: 2px;
    background: white;
    display: block;
  }

  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: var(--steel);
    backdrop-filter: blur(12px);
    padding: 20px;
    text-align: right;
  }

  .mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 12px 0;
    display: block;
  }

  .hero {
    padding: 56px 32px 120px;
  }

  .hero-eyebrow {
    display: none;
  }

  .hero-wave svg {
    height: 80px;
  }

  .hero-title,
  .hero-title-italic {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .motto-word .gr {
    font-family: 'GFS Didot', serif;
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  .motto-word .en {
    font-size: 10px;
  }

  .founding-banner {
    flex-direction: column;
    padding: 24px;
    gap: 12px;
    text-align: center;
  }

  .founding-divider {
    width: 40px;
    height: 1px;
  }

  .mission {
    padding: 64px 24px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }

  .about-section {
    padding: 56px 24px;
  }

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

  .about-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .about-text {
    font-size: 14px;
    line-height: 1.75;
  }

  .values-list {
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .value-item {
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
  }

  .value-title {
    min-width: auto;
    font-size: 18px;
    text-align: left;
  }

  .value-desc {
    font-size: 13px;
    line-height: 1.6;
  }

  /* PATRON SECTION — MOBILE */
  .patron-section {
    padding: 56px 24px;
  }

  .patron-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .patron-image-outer {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }

  .patron-image-inner {
    width: 130px;
    height: 130px;
  }

  .patron-caption {
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .patron-title {
    font-size: 28px;
    line-height: 1.25;
  }

  .patron-text {
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
  }

  .patron-quote {
    font-size: 18px;
    margin-top: 20px;
    padding-left: 16px;
    border-left-width: 2px;
    text-align: left;
  }
}
