/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --black:  #1a1a1a;
  --navy:   #002664;
  --gold:   #EAAB00;
  --white:  #ffffff;
  --off-black: #111111;
  --navy-dark: #001a45;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --navbar-h:   65px;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

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

ul { list-style: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navbar-h);
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(234, 171, 0, 0.2);
  z-index: 1000;
}

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

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-logo-year {
  color: var(--gold);
  font-weight: 400;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 7px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav-link.active {
  color: var(--black);
  background: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-link--cta {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
}

.nav-link--cta:hover {
  background: #f5bb00;
  color: var(--black);
}

.nav-link--cta.active {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 19px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ============================================================
   SECTIONS — SHARED
   ============================================================ */
.section {
  scroll-margin-top: 80px;
  padding: 90px 0 80px;
}

.section--dark     { background: var(--black); }
.section--navy     { background: var(--navy); }
.section--gradient {
  background: linear-gradient(160deg, var(--navy) 0%, var(--black) 100%);
}

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

.container--narrow {
  max-width: 800px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  color: var(--white);
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-heading--gold { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  scroll-margin-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 26, 26, 0.82) 0%,
    rgba(0, 38, 100, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--navbar-h) + 40px) 24px 60px;
  max-width: 860px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-divider {
  width: 90px;
  height: 3px;
  background: var(--gold);
  margin: 24px auto 28px;
  border-radius: 2px;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   BIBLE VERSE
   ============================================================ */
.verse {
  max-width: 640px;
  margin: -20px auto 52px;
  padding: 20px 28px;
  border-left: 3px solid var(--gold);
  text-align: left;
}

.verse-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 10px;
}

.verse-ref {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-style: normal;
}

/* ============================================================
   GALLERY — HIS STORY
   ============================================================ */
.gallery {
  max-width: 800px;
  margin: 0 auto;
}

.gallery-main {
  width: 100%;
  height: 500px;
  background: #111;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.35s ease;
}

.gallery-main img.fading { opacity: 0; }

.gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 4px;
  background: #0d0d0d;
  border-radius: 0 0 12px 12px;
  border-top: 1px solid rgba(234,171,0,0.15);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) #111;
}

.gallery-thumbs::-webkit-scrollbar { height: 4px; }
.gallery-thumbs::-webkit-scrollbar-track { background: #111; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.thumb {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s, opacity 0.2s;
  opacity: 0.65;
}

.thumb:hover { opacity: 1; transform: scale(1.04); }

.thumb--active {
  border-color: var(--gold);
  opacity: 1;
}

/* ============================================================
   ACCOMPLISHMENT CARDS
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: rgba(0, 20, 60, 0.7);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  padding: 32px 28px 36px;
  backdrop-filter: blur(4px);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(234,171,0,0.2);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.card-list li {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.card-icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.card-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(234,171,0,0.45);
  transition: text-decoration-color 0.2s;
}

.card-link:hover {
  text-decoration-color: var(--gold);
}

/* ============================================================
   WHAT'S NEXT
   ============================================================ */
.next-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.next-school {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.next-degree {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.next-body {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

.kent-card {
  background: rgba(0, 20, 60, 0.6);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.kent-card-logo {
  margin-bottom: 20px;
}

.kent-logo-img {
  display: block;
  max-width: 180px;
  width: 100%;
  border-radius: 16px;
  margin: 0 auto;
}

.kent-card-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.kent-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 18px;
  border-radius: 2px;
}

.kent-card-program {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.kent-card-campus {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.kent-card-note {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ============================================================
   HELP WYATT — PAYMENT BUTTONS
   ============================================================ */
.help-sub {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  text-align: center;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
  margin-top: -36px;
}

.help-body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 48px;
}

.pay-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pay-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--white);
  transition: transform 0.18s, filter 0.18s;
  -webkit-tap-highlight-color: transparent;
}

.pay-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.pay-btn:active { transform: translateY(0); filter: brightness(0.95); }

.pay-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.pay-label {
  flex: 1;
  font-size: 1.05rem;
}

.pay-handle {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.82;
  white-space: nowrap;
}

/* Platform colors */
.pay-btn--applepay { background: #1c1c1e; border: 1px solid rgba(255,255,255,0.12); }
.pay-btn--zelle    { background: linear-gradient(135deg, #6d1ed4 0%, #2d5be3 100%); }
.pay-btn--venmo    { background: #008CFF; }
.pay-btn--cashapp  { background: #00D632; color: #fff; }
.pay-btn--paypal   { background: #003087; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--off-black);
  padding: 28px 24px;
  text-align: center;
  border-top: 1px solid rgba(234,171,0,0.1);
}

.footer p {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
}

/* ============================================================
   SCROLL FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger cards */
.cards .card:nth-child(2) { transition-delay: 0.12s; }
.cards .card:nth-child(3) { transition-delay: 0.24s; }

/* ============================================================
   RESPONSIVE — TABLET (≤900px)
   ============================================================ */
@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .next-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--navbar-h);
    left: 0; right: 0;
    background: #1a1a1a;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(234,171,0,0.2);
  }

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

  .nav-link {
    display: inline-block;
    width: auto;
    padding: 8px 16px;
    font-size: 1rem;
    border-radius: 8px;
  }

  .gallery-main { height: 350px; }

  .thumb { width: 76px; height: 76px; }

  .pay-btn { padding: 16px 20px; }
  .pay-label { font-size: 0.98rem; }

  .section-heading { margin-bottom: 40px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-content { padding-left: 20px; padding-right: 20px; }

  .nav-logo { font-size: 1.05rem; }
  .nav-logo-year { font-size: 0.88rem; }

  .gallery-main { height: 280px; }

  .card { padding: 24px 20px 28px; }

  .kent-card { padding: 28px 20px; }

  .kent-logo-img { max-width: 130px; }

  .pay-btn { gap: 12px; }
  .pay-handle { display: none; }
}
