/* =============================================
   KKM — Kwaku Kwame Ministries
   Colors extracted directly from brand logo
   ============================================= */

:root {
  /* Brand Colors — from the logo */
  --navy:        #2E4A60;
  --navy-deep:   #1A2D3D;
  --navy-dark:   #0F1C2A;
  --teal:        #5BC4C9;
  --teal-dark:   #3AABB1;
  --teal-light:  #A0DEE1;
  --coral:       #E85C4B;
  --coral-light: #F08C80;
  --amber:       #F4C935;
  --amber-light: #FAE07A;

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #F8F9FA;
  --light-grey:  #EEF0F3;
  --mid-grey:    #C8D0DA;
  --text-body:   #3A4A58;
  --text-muted:  #6B7E96;
  --text-light:  #9AAAB8;

  /* Dark Section (used sparingly) */
  --dark-bg:     #0F1C2A;
  --dark-card:   rgba(255,255,255,0.04);
  --dark-border: rgba(255,255,255,0.1);

  /* Utility */
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 2px 8px rgba(46,74,96,0.08);
  --shadow-md:   0 8px 28px rgba(46,74,96,0.12);
  --shadow-lg:   0 20px 60px rgba(46,74,96,0.16);
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--white);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
  color: var(--navy-deep);
}
h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-body); }

.text-teal   { color: var(--teal-dark); }
.text-coral  { color: var(--coral); }
.text-amber  { color: var(--amber); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.italic      { font-style: italic; }

/* ---- Layout ---- */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section-pad    { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* ---- Accent lines ---- */
.accent-line {
  display: flex; gap: 5px; align-items: center;
  margin: 14px 0 0;
}
.accent-line-center { justify-content: center; }
.al-teal  { width: 28px; height: 3px; background: var(--teal); border-radius: 2px; }
.al-coral { width: 12px; height: 3px; background: var(--coral); border-radius: 2px; }
.al-amber { width: 18px; height: 3px; background: var(--amber); border-radius: 2px; }

/* Section label */
.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  display: block;
  margin-bottom: 10px;
}
.section-label-light { color: var(--teal-light); }

/* ====================================================
   NAVBAR
   ==================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  padding: 8px 0;
  box-shadow: 0 1px 0 rgba(46,74,96,0.08);
  transition: box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  padding: 6px 0;
  box-shadow: var(--shadow-md);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-brand {
  display: flex; align-items: center; gap: 0;
}
.navbar-brand img {
  height: 70px; width: auto;
  transition: height var(--transition);
}
.navbar.scrolled .navbar-brand img { height: 52px; }
.brand-text-fallback {
  display: flex; flex-direction: column; line-height: 1.15;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--navy-deep);
}
.brand-sub {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--teal-dark);
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 7px 14px;
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-body);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--navy);
  background: var(--off-white);
}
.nav-links a.nav-active {
  color: var(--navy);
  background: var(--off-white);
  font-weight: 600;
  position: relative;
}
.nav-links a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.mobile-nav a.nav-active {
  color: var(--teal-dark);
  font-weight: 700;
  border-left: 3px solid var(--teal);
  padding-left: 12px;
}

.nav-register {
  margin-left: 8px;
  padding: 9px 22px !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: background var(--transition), box-shadow var(--transition) !important;
}
.nav-register:hover {
  background: var(--navy-deep) !important;
  box-shadow: 0 6px 20px rgba(46,74,96,0.3) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none; flex-direction: column; gap: 2px;
  padding: 16px 24px 28px;
  background: var(--white);
  border-top: 1px solid var(--light-grey);
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 13px 0; border-bottom: 1px solid var(--light-grey);
  font-size: 0.95rem; font-weight: 500; color: var(--text-body);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .nav-register {
  margin-top: 8px; border-radius: 10px !important;
  text-align: center; padding: 14px 0 !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  display: block;
}

/* ====================================================
   BUTTONS
   ==================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: 50px; border: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-deep); box-shadow: 0 10px 28px rgba(46,74,96,0.3); }

.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover { background: var(--teal-dark); box-shadow: 0 10px 28px rgba(91,196,201,0.4); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { box-shadow: 0 10px 28px rgba(255,255,255,0.2); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-lg { padding: 16px 36px; font-size: 0.95rem; }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

/* ====================================================
   HERO
   ==================================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(15,28,42,0.88) 40%, rgba(15,28,42,0.5) 100%),
    url('assets/images/hero-bg.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,28,42,0.7) 0%, transparent 50%);
}

/* Color strokes — echoing the logo */
.hero-strokes {
  position: absolute; bottom: 0; right: 0;
  width: 500px; height: 500px; pointer-events: none; overflow: hidden;
}
.hero-stroke {
  position: absolute; border-radius: 100px;
  transform-origin: center;
}
.hs-teal {
  width: 4px; height: 240px;
  background: var(--teal);
  right: 160px; bottom: 0;
  opacity: 0.6;
  animation: strokeRise 3s ease-out forwards;
}
.hs-coral {
  width: 3px; height: 140px;
  background: var(--coral);
  right: 190px; bottom: 0;
  opacity: 0.7;
  animation: strokeRise 3.3s ease-out 0.2s forwards;
}
.hs-amber {
  width: 4px; height: 180px;
  background: var(--amber);
  right: 136px; bottom: 0;
  opacity: 0.5;
  animation: strokeRise 3.6s ease-out 0.4s forwards;
}
@keyframes strokeRise {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); transform-origin: bottom; }
}

.hero-content {
  position: relative; z-index: 2;
  padding-top: 140px;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  animation: breathe 2.5s ease-in-out infinite;
}
@keyframes breathe { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.5; transform:scale(1.5); } }
.eyebrow-text {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--teal-light);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 6px;
}
.hero h1 em {
  font-style: italic;
  color: var(--teal-light);
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  margin-top: 4px;
}
.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-divider {
  width: 100%; height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 36px;
}
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.hero-stat-num span { color: var(--teal-light); }
.hero-stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  margin-top: 4px; letter-spacing: 0.05em;
}

.hero-scroll-cue {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer; z-index: 2;
  animation: floatDown 2.5s ease-in-out infinite;
}
.hero-scroll-cue span { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 12px; position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute; top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.5);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100%{ top:5px; opacity:1; } 80%{ top:16px; opacity:0; } }
@keyframes floatDown { 0%,100%{ transform:translateX(-50%) translateY(0); } 50%{ transform:translateX(-50%) translateY(6px); } }

/* ====================================================
   MARQUEE BAND
   ==================================================== */
.marquee-band {
  background: var(--navy-deep);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marqueeScroll 22s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  padding: 0 28px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.marquee-dot {
  width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0;
}
.dot-teal  { background: var(--teal); }
.dot-coral { background: var(--coral); }
.dot-amber { background: var(--amber); }
@keyframes marqueeScroll { from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ====================================================
   INTRO / ABOUT STRIP
   ==================================================== */
.intro-section { background: var(--white); padding: 96px 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.intro-image-col { position: relative; }
.intro-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.intro-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.intro-img-placeholder {
  width: 100%; height: 100%;
  background: var(--light-grey);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}

/* The colored stroke accents mirroring the logo */
.intro-strokes {
  position: absolute;
  bottom: -16px; left: -16px;
  display: flex; flex-direction: column; gap: 8px;
}
.is-bar {
  border-radius: 4px; height: 5px;
}
.is-teal  { width: 60px; background: var(--teal); }
.is-coral { width: 36px; background: var(--coral); }
.is-amber { width: 48px; background: var(--amber); }

.intro-year-tag {
  position: absolute; top: 24px; right: -16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.intro-year-tag .year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--navy); line-height: 1;
}
.intro-year-tag .yrl {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 2px;
}

.intro-content { }
.intro-content h2 { margin: 8px 0 20px; }
.intro-content p { color: var(--text-muted); line-height: 1.85; margin-bottom: 18px; }
.intro-pillars { display: flex; flex-direction: column; gap: 10px; margin: 28px 0 36px; }
.intro-pillar {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.intro-pillar:nth-child(1) { border-color: var(--teal); }
.intro-pillar:nth-child(2) { border-color: var(--coral); }
.intro-pillar:nth-child(3) { border-color: var(--amber); }
.intro-pillar:hover { background: var(--light-grey); }
.ip-icon { font-size: 1.2rem; flex-shrink: 0; }
.ip-text { font-size: 0.9rem; font-weight: 500; color: var(--text-body); }

/* ====================================================
   THRONE ROOM FEATURE (dark section)
   ==================================================== */
.throne-feature {
  background: var(--navy-dark);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.throne-feature::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 600px; height: 100%; pointer-events: none;
  background: radial-gradient(ellipse at right, rgba(91,196,201,0.06) 0%, transparent 60%);
}

.throne-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center;
}
.throne-content { }
.throne-content h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 10px 0 6px;
}
.throne-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.3rem;
  color: var(--teal-light); margin-bottom: 24px;
}
.throne-desc { color: rgba(255,255,255,0.6); line-height: 1.85; margin-bottom: 32px; }
.throne-meta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.throne-meta-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: rgba(255,255,255,0.55);
}
.throne-meta-icon { color: var(--teal); flex-shrink: 0; }
.throne-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.throne-visual {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.throne-visual::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--amber));
}
.throne-year-display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(6rem, 12vw, 9rem);
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1; letter-spacing: -4px;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.throne-cross-icon {
  position: relative; z-index: 1;
  margin-bottom: 16px;
}
.throne-cross-svg {
  width: 80px; height: 80px;
}
.throne-visual-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--white); position: relative; z-index: 1;
  margin-bottom: 8px;
}
.throne-visual-sub {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal-light);
  position: relative; z-index: 1;
}
.throne-color-bars {
  display: flex; gap: 6px; justify-content: center; margin-top: 32px;
  position: relative; z-index: 1;
}
.tcb {
  height: 4px; border-radius: 4px;
  flex: 1; max-width: 60px;
}
.tcb-t { background: var(--teal); }
.tcb-c { background: var(--coral); }
.tcb-a { background: var(--amber); }

/* ====================================================
   EVENTS GRID
   ==================================================== */
.events-section { background: var(--off-white); padding: 96px 0; }
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.event-card-img {
  aspect-ratio: 16/9;
  background: var(--light-grey);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--mid-grey);
}
.event-card-img img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.event-card-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--amber));
}
.event-card-body { padding: 22px 24px 24px; }
.event-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(91,196,201,0.1); color: var(--teal-dark);
  margin-bottom: 10px;
}
.event-card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.event-card-body p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 18px; }
.event-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--light-grey);
}
.event-date { font-size: 0.78rem; color: var(--text-muted); }

/* ====================================================
   GALLERY GRID
   ==================================================== */
.gallery-preview { background: var(--white); padding: 96px 0; }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 14px; margin-top: 48px;
}
.gi { border-radius: var(--radius); overflow:hidden; position:relative; background:var(--light-grey); cursor:pointer; }
.gi:hover .gi-overlay { opacity: 1; }
.gi-1 { grid-column: 1/6; }
.gi-2 { grid-column: 6/9; }
.gi-3 { grid-column: 9/13; }
.gi-4 { grid-column: 1/5; }
.gi-5 { grid-column: 5/9; }
.gi-6 { grid-column: 9/13; }
.gi img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.gi:hover img { transform: scale(1.04); }
.gi-placeholder { font-size:3rem; color:var(--mid-grey); position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); }
.gi-overlay {
  position:absolute; inset:0;
  background: rgba(46,74,96,0.6);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition: opacity var(--transition);
  color: var(--white);
}

/* ====================================================
   TESTIMONIALS
   ==================================================== */
.testimonials-section { background: var(--off-white); padding: 96px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tc-quote { font-size: 2.2rem; line-height: 1; color: var(--teal); margin-bottom: 12px; font-family: Georgia, serif; }
.tc-stars { color: var(--amber); font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 1px; }
.tc-text {
  font-size: 0.93rem; color: var(--text-muted); line-height: 1.8;
  margin-bottom: 22px; font-style: italic;
}
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: var(--white); flex-shrink: 0;
}
.tc-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.tc-loc { font-size: 0.75rem; color: var(--text-muted); }

/* ====================================================
   CTA BAND
   ==================================================== */
.cta-band {
  background: var(--navy-deep);
  padding: 88px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(91,196,201,0.06) 0%, transparent 60%);
}
.cta-band-content { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
/* 3-color top strip on CTA */
.cta-band-top {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  display: flex;
}
.cta-band-top span { flex: 1; }
.cta-band-top .s-teal  { background: var(--teal); }
.cta-band-top .s-coral { background: var(--coral); }
.cta-band-top .s-amber { background: var(--amber); }

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
  background: var(--navy-dark);
  padding: 72px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 260px; margin-bottom: 24px; }
.social-links { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover { background: rgba(91,196,201,0.2); border-color: var(--teal); color: var(--teal); }

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact-row { display: flex; gap: 10px; margin-bottom: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.45); }
.footer-contact-row a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-contact-row a:hover { color: var(--white); }
.fci { color: var(--teal); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* The 3-color bottom accent */
.footer-color-bar {
  display: flex; height: 3px; margin-bottom: 48px;
}
.footer-color-bar span { flex: 1; }
.fcb-teal  { background: var(--teal); }
.fcb-coral { background: var(--coral); }
.fcb-amber { background: var(--amber); }

/* ====================================================
   PAGE HERO (inner pages)
   ==================================================== */
.page-hero {
  padding: 176px 0 0;
  background: var(--navy-dark);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--amber));
}
.page-hero-content { position: relative; z-index: 1; padding-bottom: 52px; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.55); max-width: 520px; font-size: 1.05rem; }

.page-hero-images {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: -2px;
}
.page-hero-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) saturate(0.9);
  transition: filter 0.3s;
}
.page-hero-images img:hover { filter: brightness(0.95) saturate(1.1); }
.page-hero-images img:first-child { border-radius: var(--radius) 0 0 0; }
.page-hero-images img:last-child  { border-radius: 0 var(--radius) 0 0; }

@media (max-width: 768px) {
  .page-hero-images { grid-template-columns: repeat(2, 1fr); }
  .page-hero-images img { height: 140px; }
  .page-hero-images img:first-child { border-radius: var(--radius) 0 0 0; }
  .page-hero-images img:last-child  { border-radius: 0 0 0 0; }
  .page-hero-images img:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
}
@media (max-width: 480px) {
  .page-hero-images { grid-template-columns: repeat(2, 1fr); }
  .page-hero-images img { height: 110px; }
}

/* ====================================================
   ABOUT PAGE
   ==================================================== */
.founder-section { background: var(--white); padding: 96px 0; }
.founder-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.founder-img-wrap { position: relative; }
.founder-img-frame {
  border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--light-grey);
}
.founder-img-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.founder-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: var(--white); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-md);
  border-top: 3px solid var(--teal);
}
.founder-badge h4 { color: var(--navy); margin-bottom: 2px; }
.founder-badge p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.mv-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  border-top: 3px solid var(--light-grey);
  transition: border-color var(--transition);
}
.mv-card:nth-child(1) { border-color: var(--teal); }
.mv-card:nth-child(2) { border-color: var(--coral); }
.mv-icon { font-size: 1.6rem; margin-bottom: 10px; }
.mv-card h4 { color: var(--navy); margin-bottom: 8px; }
.mv-card p { font-size: 0.87rem; color: var(--text-muted); margin: 0; line-height: 1.7; }

.values-section { background: var(--navy-dark); padding: 96px 0; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.value-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: transform var(--transition), background var(--transition);
}
.value-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.06); }
.vc-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.value-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { font-size: 0.86rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin: 0; }

/* ====================================================
   EVENTS PAGE
   ==================================================== */
.events-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  background: var(--white); border: 1.5px solid var(--light-grey);
  color: var(--text-muted); cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy); border-color: var(--navy); color: var(--white);
}

/* ====================================================
   GALLERY PAGE
   ==================================================== */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px;
}
.gallery-full-item {
  aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer; background: var(--light-grey);
  transition: transform var(--transition);
}
.gallery-full-item:hover { transform: scale(1.01); }
.gallery-full-item img { width:100%; height:100%; object-fit:cover; }
.gi-overlay-full {
  position:absolute; inset:0;
  background: rgba(46,74,96,0.5);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition: opacity var(--transition);
  color: var(--white);
}
.gallery-full-item:hover .gi-overlay-full { opacity: 1; }
.gi-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(15,28,42,0.8));
  font-size: 0.78rem; color: rgba(255,255,255,0.85);
}

/* ── Real photo gallery grid ── */
.kkm-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.kkm-gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--light-grey);
}
.kkm-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.kkm-gallery-item:hover img { transform: scale(1.05); }
.kkm-gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(46,74,96,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.kkm-gallery-item:hover .kkm-gallery-overlay { opacity: 1; }

@media (max-width: 1024px) { .kkm-gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .kkm-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }
@media (max-width: 380px)  { .kkm-gallery-grid { grid-template-columns: 1fr; } }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(15,28,42,0.96); align-items: center; justify-content: center;
  backdrop-filter: blur(12px);
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; }
.lightbox-inner img { max-height: 88vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: -48px; right: 0;
  background: none; border: none; color: white; font-size: 2rem; cursor: pointer;
}

/* ====================================================
   CONTACT PAGE
   ==================================================== */
.contact-info-card {
  background: var(--navy-dark);
  border-radius: var(--radius-lg); padding: 36px;
  height: fit-content;
  overflow: hidden; position: relative;
}
.contact-info-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--amber));
}
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.contact-info-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ci-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(91,196,201,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ci-body h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 4px; }
.ci-body p, .ci-body a { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin: 0; transition: color var(--transition); }
.ci-body a:hover { color: var(--white); }

/* ====================================================
   FORMS
   ==================================================== */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; margin-bottom: 7px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--navy); letter-spacing: 0.02em;
}
.req { color: var(--coral); }
.form-control {
  width: 100%; padding: 12px 16px;
  background: var(--off-white);
  border: 1.5px solid var(--light-grey);
  border-radius: 10px;
  color: var(--text-body); font-size: 0.93rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-control::placeholder { color: var(--text-light); }
.form-control:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(91,196,201,0.15);
  background: var(--white);
}
.form-control.error { border-color: var(--coral); }
.form-error { font-size: 0.75rem; color: var(--coral); margin-top: 4px; display: none; }
.form-error.show { display: block; }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235BC4C9' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-submit {
  width: 100%; padding: 15px;
  background: var(--navy); color: var(--white);
  border: none; border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background var(--transition), box-shadow var(--transition);
  margin-top: 8px;
}
.btn-submit:hover { background: var(--navy-deep); box-shadow: 0 10px 28px rgba(46,74,96,0.3); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.alert {
  padding: 14px 18px; border-radius: 10px; font-size: 0.88rem;
  margin-bottom: 18px; display: none;
}
.alert.show { display: flex; align-items: center; gap: 10px; }
.alert-success { background: rgba(91,196,201,0.08); border: 1px solid rgba(91,196,201,0.3); color: var(--teal-dark); }
.alert-error   { background: rgba(232,92,75,0.08);  border: 1px solid rgba(232,92,75,0.3);  color: var(--coral); }

/* Registration attend radio */
.radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.radio-card { position: relative; cursor: pointer; }
.radio-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-label {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px; border: 1.5px solid var(--light-grey);
  border-radius: var(--radius); font-weight: 600; font-size: 0.9rem;
  color: var(--text-muted); transition: var(--transition);
  background: var(--off-white);
}
.radio-card input:checked + .radio-label {
  border-color: var(--teal); background: rgba(91,196,201,0.06); color: var(--teal-dark);
}

/* Register success */
.register-success {
  display: none; text-align: center; padding: 56px 32px;
}
.register-success.show { display: block; }
.success-ring {
  width: 96px; height: 96px; border-radius: 50%;
  border: 3px solid var(--teal);
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  animation: ringPulse 2.5s ease-in-out infinite alternate;
}
@keyframes ringPulse { from { box-shadow: 0 0 0 rgba(91,196,201,0.3); } to { box-shadow: 0 0 32px rgba(91,196,201,0.5); } }
.success-ribbon {
  display: flex; gap: 6px; justify-content: center; margin: 20px 0;
}
.success-ribbon span { display: block; width: 48px; height: 4px; border-radius: 4px; }

/* ====================================================
   ADMIN
   ==================================================== */
body.admin-body { background: #f4f5f7; }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 250px; flex-shrink: 0;
  background: var(--navy-dark);
  display: flex; flex-direction: column;
  position: fixed; top:0; left:0; bottom:0;
  z-index: 100; overflow-y: auto;
}
.admin-sidebar-top {
  display: flex; align-items: center; gap: 0;
  padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.admin-sidebar-top img { height: 36px; }
.admin-sidebar-top .brand-name  { color: var(--white); font-size: 0.9rem; }
.admin-sidebar-top .brand-sub   { color: var(--teal-light); }
.admin-nav { padding: 16px 10px; flex: 1; }
.admin-nav-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); padding: 0 12px; margin: 12px 0 6px; display: block; }
.admin-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  font-size: 0.875rem; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: var(--transition); margin-bottom: 2px;
}
.admin-nav-item:hover, .admin-nav-item.active { background: rgba(255,255,255,0.07); color: var(--white); }
.admin-nav-item.active { color: var(--teal-light); }
.admin-nav-item svg { width: 17px; flex-shrink: 0; }

.admin-main { margin-left: 250px; flex:1; padding: 32px; }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.admin-topbar h1 { font-size: 1.6rem; color: var(--navy-deep); }
.admin-topbar p { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }

.stat-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; margin-bottom: 32px; }
.stat-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 22px; border-top: 3px solid var(--light-grey);
  box-shadow: var(--shadow-sm); transition: border-color var(--transition);
}
.stat-card:nth-child(1) { border-color: var(--teal); }
.stat-card:nth-child(2) { border-color: #48C778; }
.stat-card:nth-child(3) { border-color: var(--coral); }
.stat-card:nth-child(4) { border-color: var(--amber); }
.stat-card-icon { font-size: 1.6rem; margin-bottom: 14px; }
.stat-card-value { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; line-height: 1; margin-bottom: 4px; color: var(--navy-deep); }
.stat-card-label { font-size: 0.78rem; color: var(--text-muted); }

.admin-table-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.admin-table-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--light-grey);
  flex-wrap: wrap; gap: 12px;
}
.admin-search {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; background: var(--off-white);
  border: 1.5px solid var(--light-grey); border-radius: 8px; font-size: 0.875rem;
}
.admin-search input { background: none; border: none; outline: none; color: var(--text-body); font-size: 0.875rem; width: 200px; }
.admin-search svg { color: var(--text-muted); flex-shrink: 0; }
table { width: 100%; border-collapse: collapse; }
thead th { padding: 11px 16px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); text-align: left; border-bottom: 1px solid var(--light-grey); background: var(--off-white); white-space: nowrap; }
tbody tr { border-bottom: 1px solid var(--light-grey); transition: background var(--transition); }
tbody tr:hover { background: var(--off-white); }
tbody tr:last-child { border-bottom: none; }
tbody td { padding: 13px 16px; font-size: 0.875rem; color: var(--text-body); vertical-align: middle; }
.td-muted { color: var(--text-muted) !important; font-size: 0.82rem !important; }
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }
.badge-yes { background: rgba(72,199,120,0.1); color: #2e9e5e; }
.badge-no  { background: rgba(232,92,75,0.1);  color: var(--coral); }
.btn-icon { width: 30px; height: 30px; border-radius: 7px; border: none; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.btn-icon-danger { background: rgba(232,92,75,0.08); color: var(--coral); }
.btn-icon-danger:hover { background: rgba(232,92,75,0.18); }
.admin-table-footer { display: flex; align-items: center; justify-content: space-between; padding: 14px 22px; border-top: 1px solid var(--light-grey); font-size: 0.8rem; color: var(--text-muted); flex-wrap: wrap; gap: 8px; }
.pagination { display: flex; gap: 4px; }
.page-btn { width: 30px; height: 30px; border-radius: 7px; background: var(--off-white); border: 1px solid var(--light-grey); color: var(--text-muted); font-size: 0.8rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); text-decoration: none; }
.page-btn.active, .page-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--off-white); padding: 24px; }
.login-card { width: 100%; max-width: 400px; background: var(--white); border-radius: var(--radius-xl); padding: 44px; box-shadow: var(--shadow-lg); text-align: center; overflow: hidden; position: relative; }
.login-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--coral), var(--amber)); }
.login-card h2 { color: var(--navy-deep); margin-bottom: 4px; }
.login-card > p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 32px; }

/* ====================================================
   HERO — FULL FLYER EDITION
   ==================================================== */
.hero--flyer-full {
  position: relative;
  background: #0a0500;
  padding-top: 80px;
  height: 100vh;
  overflow: hidden;
}

/* Full image visible (contain = no crop, full flyer shown within viewport) */
.hero-flyer-img {
  width: 100%;
  height: calc(100vh - 80px);
  display: block;
  object-fit: contain;
  object-position: center top;
  position: relative;
  z-index: 0;
}

/* Gradient overlay — only fades the bottom edge */
.hero-flyer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.0)   0%,
    rgba(0,0,0,0.0)   65%,
    rgba(0,0,0,0.75)  88%,
    rgba(0,0,0,0.92) 100%
  );
  z-index: 1;
}

/* CTA anchored to the bottom of the image */
.hero-flyer-cta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  text-align: center;
  padding: 0 24px 48px;
}

/* ====================================================
   COUNTDOWN SECTION
   ==================================================== */
.countdown-section {
  background: var(--navy-deep);
  padding: 52px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.countdown-section::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--amber));
}

.countdown-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 32px;
}

.countdown-clock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cd-unit {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 20px 32px 16px;
  min-width: 110px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.cd-unit::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.cd-unit:nth-child(1)::before { background: var(--teal); }
.cd-unit:nth-child(3)::before { background: var(--coral); }
.cd-unit:nth-child(5)::before { background: var(--amber); }
.cd-unit:nth-child(7)::before { background: var(--teal-light); }

.cd-unit:hover::before { transform: scaleX(1); }
.cd-unit:hover { border-color: rgba(91,196,201,0.3); }

.cd-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
  transition: color 0.2s ease, transform 0.15s ease;
}
.cd-num.tick {
  transform: scale(1.05);
  color: var(--teal-light);
}
.cd-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
}

.cd-sep {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  margin-bottom: 20px;
  animation: sepBlink 1s step-end infinite;
}
@keyframes sepBlink { 0%,100% { opacity: 0.2; } 50% { opacity: 0.6; } }

.countdown-sub {
  margin-top: 28px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

/* ====================================================
   MISSION CARDS (about page)
   ==================================================== */
.mission-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
}
.mission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mission-card--teal  { border-top-color: var(--teal-dark); }
.mission-card--coral { border-top-color: var(--coral); }
.mission-card--amber { border-top-color: var(--amber); }
.mc-icon {
  font-size: 1.8rem; margin-bottom: 16px;
  width: 52px; height: 52px;
  background: var(--off-white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.mission-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.mission-card p  { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; }

/* ====================================================
   VALUE CARDS (shared: about, events)
   ==================================================== */
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--teal-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 1.8rem; margin-bottom: 14px; }
.value-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.value-card p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.75; }

/* ====================================================
   FOUNDER STATS (about page)
   ==================================================== */
.founder-stats {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding: 24px 0; border-top: 1px solid var(--light-grey);
  margin-top: 28px;
}
.fstat {}
.fstat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--navy-deep); line-height: 1;
}
.fstat-lbl {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 4px;
}

/* Reverse grid layout (image right) */
.intro-grid--reverse { direction: rtl; }
.intro-grid--reverse > * { direction: ltr; }

/* Border variable fallback */
:root { --border: var(--light-grey); }

/* Event filter buttons */
.event-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 20px; border-radius: 50px;
  border: 1.5px solid var(--light-grey);
  background: var(--white); color: var(--text-muted);
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy); border-color: var(--navy); color: var(--white);
}

/* Page hero reveal-right */
.reveal-right { transform: translateX(24px); }
.reveal-right.visible { transform: translateX(0); }

/* ====================================================
   ANIMATIONS
   ==================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-left { transform: translateX(-24px); }
.reveal-left.visible { transform: translateX(0); }

/* ====================================================
   GRID HELPERS (classes used by inline-styled grids)
   ==================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  align-items: start;
}
.jttr-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ====================================================
   RESPONSIVE
   ====================================================
   Breakpoints:
     1440px+  — projectors / large displays
     1024px   — tablet landscape
     768px    — tablet portrait / large phone
     600px    — phone
     400px    — small phone
   ==================================================== */

/* ── Large screens & projectors ── */
@media (min-width: 1440px) {
  .container { max-width: 1360px; }

  h1 { font-size: clamp(4rem, 5vw, 6.5rem); }
  h2 { font-size: clamp(2.4rem, 3vw, 3.6rem); }
  p  { font-size: 1.05rem; }

  .intro-section,
  .throne-feature,
  .events-section,
  .testimonials-section,
  .cta-band { padding: 120px 0; }

  .page-hero { padding: 210px 0 96px; }

  .hero-content { padding-top: 160px; }

  .navbar { padding: 12px 0; }
  .navbar-brand img { height: 80px; }
  .navbar.scrolled .navbar-brand img { height: 60px; }

  .countdown-section { padding: 72px 0 80px; }
  .cd-num { font-size: 5.5rem; }
  .cd-unit { min-width: 130px; padding: 24px 40px 20px; }

  .footer { padding: 96px 0 40px; }
  .footer-grid { gap: 64px; }
}

/* ── Tablet landscape (≤ 1024px) ── */
@media (max-width: 1024px) {
  .intro-grid,
  .intro-grid--reverse,
  .throne-grid,
  .founder-grid { grid-template-columns: 1fr; }
  .intro-grid--reverse { direction: ltr; }

  .intro-img-frame { aspect-ratio: 3/4; max-height: 480px; }
  .intro-img-frame img { object-position: top center; }
  .throne-grid { gap: 40px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .jttr-details-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .mission-grid { grid-template-columns: 1fr 1fr; }

  .hero-split { grid-template-columns: 1fr; gap: 40px; padding-top: 110px; text-align: center; }
  .hero-split-text .hero-eyebrow { justify-content: center; }
  .hero-split-text .hero-actions { justify-content: center; }
  .hero-split-flyer { order: -1; }
  .flyer-frame { max-width: 340px; }
}

/* ── Tablet portrait / large phone (≤ 768px) ── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Section padding */
  .intro-section,
  .throne-feature,
  .events-section,
  .testimonials-section { padding: 64px 0; }
  .cta-band { padding: 64px 0; }
  .page-hero { padding: 130px 0 52px; }

  /* Typography */
  h1 { font-size: clamp(2.6rem, 8vw, 3.4rem); }
  h2 { font-size: clamp(1.8rem, 5vw, 2.4rem); }

  /* Hero */
  .hero-content { padding-top: 110px; }
  .hero-flyer-cta { padding: 0 20px 40px; }

  /* Grids */
  .intro-grid,
  .intro-grid--reverse { grid-template-columns: 1fr; }
  .intro-grid--reverse { direction: ltr; }
  .intro-img-frame { aspect-ratio: 3/4; max-height: 420px; }
  .intro-img-frame img { object-position: top center; }

  .mission-grid { grid-template-columns: 1fr; }
  .jttr-details-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }

  /* Events */
  .events-grid { grid-template-columns: 1fr; }
  .event-filters { gap: 8px; }

  /* Gallery */
  .gallery-masonry { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gi-1,.gi-2,.gi-3,.gi-4,.gi-5,.gi-6 { grid-column: auto; height: 160px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

  /* Forms */
  .form-card { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .radio-group { grid-template-columns: 1fr; }

  /* Countdown */
  .cd-unit { min-width: 80px; padding: 16px 20px 14px; }
  .cd-num  { font-size: 2.8rem; letter-spacing: -1px; }
  .cd-sep  { font-size: 2.2rem; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-band p { padding: 0 16px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Founder stats */
  .founder-stats { gap: 20px; }

  /* Throne visual — hide on tablet to keep layout clean */
  .throne-visual { display: none; }
  .throne-grid { grid-template-columns: 1fr; }

  /* Admin */
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; padding: 20px; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .mv-grid { grid-template-columns: 1fr; }

  /* Page-hero strokes — smaller */
  .phs-teal,.phs-coral,.phs-amber { display: none; }
}

/* ── Phone (≤ 600px) ── */
@media (max-width: 600px) {
  .container { padding: 0 18px; }

  h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Section padding */
  .intro-section,
  .throne-feature,
  .events-section,
  .testimonials-section { padding: 52px 0; }

  /* Hero */
  .hero--flyer-full { padding-top: 70px; height: 100vh; }
  .hero-flyer-img { height: calc(100vh - 70px); }
  .hero-flyer-cta { padding: 0 16px 32px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
  .hero-eyebrow { flex-wrap: wrap; gap: 6px; }

  /* Countdown */
  .countdown-section { padding: 40px 0 48px; }
  .countdown-clock { gap: 6px; }
  .cd-unit { min-width: 68px; padding: 12px 12px 10px; }
  .cd-num  { font-size: 2.2rem; letter-spacing: -1px; }
  .cd-sep  { font-size: 1.8rem; margin-bottom: 14px; }
  .countdown-label { font-size: 0.65rem; margin-bottom: 20px; }
  .countdown-sub { font-size: 0.72rem; padding: 0 12px; }

  /* Gallery */
  .gallery-masonry { grid-template-columns: 1fr; }
  .gi-1,.gi-2,.gi-3,.gi-4,.gi-5,.gi-6 { grid-column: auto; height: 200px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding: 52px 0 24px; }

  /* Intro pillars */
  .intro-pillar { padding: 11px 14px; }

  /* Forms */
  .btn-submit { font-size: 0.88rem; }

  /* Page hero */
  .page-hero { padding: 110px 0 44px; }
  .page-hero-sub { font-size: 0.92rem; }

  /* Value cards */
  .value-card { padding: 24px 20px; }
  .mission-card { padding: 28px 20px; }

  /* Admin */
  .stat-cards { grid-template-columns: 1fr; }
  .login-card { padding: 32px 20px; }

  /* Register perks */
  .register-perks { grid-template-columns: 1fr 1fr !important; }
}

/* ── Small phone (≤ 400px) ── */
@media (max-width: 400px) {
  .container { padding: 0 14px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .cd-unit { min-width: 56px; padding: 10px 8px 8px; }
  .cd-num  { font-size: 1.8rem; }
  .cd-sep  { font-size: 1.4rem; }

  .btn-lg { padding: 13px 22px; font-size: 0.88rem; }
  .navbar-brand img { height: 52px; }
  .navbar.scrolled .navbar-brand img { height: 42px; }

  .flyer-frame { max-width: 100%; }

  .page-hero { padding: 96px 0 36px; }
  .hero--flyer-full { padding-top: 64px; height: 100vh; }
  .hero-flyer-img { height: calc(100vh - 64px); }
}

/* ====================================================
   ACCESSIBILITY
   ==================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ====================================================
   WHATSAPP FAB
   ==================================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: 0; border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { opacity: 0; }
}

/* ====================================================
   BACK TO TOP
   ==================================================== */
.back-to-top {
  position: fixed;
  bottom: 96px; right: 30px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  box-shadow: 0 3px 14px rgba(0,0,0,0.18);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--teal); }

/* ====================================================
   COOKIE BANNER
   ==================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy-deep);
  color: rgba(255,255,255,0.85);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  z-index: 2000;
  font-size: 0.82rem; line-height: 1.6;
  border-top: 2px solid var(--teal);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--teal); text-decoration: underline; }
@media (max-width: 600px) {
  .whatsapp-fab { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .back-to-top { bottom: 82px; right: 22px; width: 40px; height: 40px; }
}
