:root {
  /* Greens */
  --gd: #1a3d2b;   /* dark green   */
  --gm: #2a5c40;   /* mid green    */
  --gs: #3d7a57;   /* soft green   */
  --gp: #d4e8db;   /* pale green   */

  /* Warm accents */
  --go: #b87420;   /* ochre        */
  --gl: #e8a94a;   /* gold         */

  /* Neutrals */
  --cr: #f8f2e6;   /* cream        */
  --ea: #1e1208;   /* earth dark   */
  --st: #5a5248;   /* stone        */
  --mi: #eef4f0;   /* mint         */
  --wh: #ffffff;

  /* Fonts */
  --se: 'Cormorant Garamond', Georgia, serif;
  --sa: 'DM Sans', sans-serif;
}


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

html {
  font-size: 18px;
  font-weight: 400;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sa);
  color: var(--ea);
  background: var(--cr);
  overflow-x: hidden;
}

a { text-decoration: none; }


.content{
    min-height: calc(100vh - 70px);
}


.container{
    width: 80%;
    margin: 0 auto;
    display: flex;

}

#navigation{
    justify-content: space-between;
    align-items: center;
}

header{
    width: 100%;
    position: fixed;
    z-index: 100;
    
}

.mainnav {
  background-color: rgba(26, 61, 43, 0.97);
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e8a94a;
}

.maq {
  background-color: white;
  padding-bottom: 3px;
}


nav a{
    display: inline-block;
    padding: 10px 16px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}







#separate-space{
    padding: 60px 0 60px 0;
}


#menu-icon{
    display: none;
    cursor: pointer;
}

nav{
    transition: transform 0.6s ease, visibility 0.6s ease;
    display: flex;
    gap: 16px;
}

#menu-icon svg{
    transition: fill 0.5s ease, transform 0.5s ease;
}


/*    this here */

/* ─────────────────────────────────────────────────────────────
 * 3. Typography  (shared heading / tag utilities)
 * ───────────────────────────────────────────────────────────── */
.stag {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--go);
  font-weight: 500;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.stag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--go);
}

.sti {
  font-family: var(--se);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--gd);
}

.sti em {
  font-style: italic;
  color: var(--go);
}


/* ─────────────────────────────────────────────────────────────
 * 4. Navigation
 * ───────────────────────────────────────────────────────────── */


.nl { display: flex; flex-direction: column; }

.nln {
  font-family: var(--se);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gl);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.nls {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nm {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nm a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  transition: color 0.2s;
}

.nm a:hover,
.nm a.ac { color: var(--gl); }

.nc {
  background: var(--go);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  font-weight: 500;
  transition: background 0.2s;
}

.nc:hover { background: var(--gl); }


/* ─────────────────────────────────────────────────────────────
 * 5. Page Hero  (inner pages — about, programs, etc.)
 * ───────────────────────────────────────────────────────────── */
.ph {
  padding-top: 80px;
  min-height: 52vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--gd);
  overflow: hidden;
}

.phbg {
  position: absolute;
  inset: 0;
}

.phov {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 50%, rgba(184, 116, 32, 0.14) 0%, transparent 58%);
}

.phc {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.phdeco {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--se);
  font-size: 11rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

.bc {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 1.2rem;
}

.bc a       { color: rgba(232, 169, 74, 0.6); }
.bc a:hover { color: var(--gl); }

.ph h1 {
  font-family: var(--se);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  line-height: 1.08;
  color: #fff;
}

.ph h1 em {
  font-style: italic;
  color: var(--gl);
}

.phsub {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.57);
  line-height: 1.75;
  font-weight: 300;
  max-width: 520px;
  margin-top: 1.2rem;
}


/* ─────────────────────────────────────────────────────────────
 * 6. Homepage Hero
 * ───────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--gd);
}

.hbg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hov {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26, 61, 43, 0.5) 0%, rgba(26, 61, 43, 0.93) 95%);
}

/* Decorative rings */
.hrings {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-55%);
}

.hring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 169, 74, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hring:nth-child(1) { width: 260px; height: 260px; border-color: rgba(232, 169, 74, 0.18); }
.hring:nth-child(2) { width: 430px; height: 430px; }
.hring:nth-child(3) { width: 600px; height: 600px; border-color: rgba(232, 169, 74, 0.05); }

.hyr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--se);
  font-size: 7rem;
  font-weight: 300;
  color: rgba(232, 169, 74, 0.09);
  line-height: 1;
  white-space: nowrap;
}

/* Hero content */
.hc {
  position: relative;
  z-index: 2;
  padding: 0 6rem;
  max-width: 740px;
}

.htag {
  display: inline-block;
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gl);
  border: 1px solid rgba(232, 169, 74, 0.35);
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.6rem;
}

.ht {
  font-family: var(--se);
  font-weight: 300;
  font-size: clamp(3rem, 4vw, 5rem);
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 1.3rem;
}

.ht em {
  font-style: italic;
  color: var(--gl);
}

.hs {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.ha {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hscroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.hscroll span {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.hsl {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(232, 169, 74, 0.6), transparent);
  animation: sp 2s ease-in-out infinite;
}

@keyframes sp {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}


/* ─────────────────────────────────────────────────────────────
 * 7. Stats Bar
 * ───────────────────────────────────────────────────────────── */
.sb {
  background: var(--ea);
  display: flex;
  flex-wrap: wrap;
}

.si {
  flex: 1;
  min-width: 140px;
  padding: 2.2rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.si:last-child { border-right: none; }

.sn {
  font-family: var(--se);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gl);
  display: block;
  line-height: 1;
}

.sl {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 0.4rem;
}


/* ─────────────────────────────────────────────────────────────
 * 8. Shared Utilities
 * ───────────────────────────────────────────────────────────── */
section { padding: 6rem 0; }

.con {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* Buttons */
.bp {
  background: var(--go);
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 500;
  font-family: var(--sa);
  transition: all 0.2s;
}

.bp:hover {
  background: var(--gl);
  transform: translateY(-2px);
}

.bg {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.bg::after { content: '→'; }
.bg:hover  { color: var(--gl); }

.btn-ol {
  display: inline-block;
  margin-top: 2rem;
  color: var(--gd);
  border: 1.5px solid var(--gd);
  padding: 0.72rem 1.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-ol:hover {
  background: var(--gd);
  color: #fff;
}

.btn-ol2 {
  display: inline-block;
  color: var(--gd);
  border: 1.5px solid var(--gd);
  padding: 0.85rem 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-ol2:hover {
  background: var(--gd);
  color: #fff;
}

.btn-gn {
  display: inline-block;
  background: var(--gd);
  color: #fff;
  padding: 0.85rem 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-gn:hover {
  background: var(--gm);
  transform: translateY(-2px);
}

.btn-go {
  display: inline-block;
  background: var(--go);
  color: #fff;
  padding: 0.85rem 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-go:hover {
  background: var(--gl);
  transform: translateY(-2px);
}

.btn-gl {
  display: inline-block;
  color: var(--gl);
  border: 1.5px solid rgba(232, 169, 74, 0.45);
  padding: 0.85rem 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-gl:hover {
  background: rgba(232, 169, 74, 0.1);
  border-color: var(--gl);
}

/* CTA row helpers */
.cta-row  { text-align: center; margin-top: 2.5rem; }
.cta-row2 { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* Scroll-reveal animation */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rv.vis {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: 0.12s; }
.d2 { transition-delay: 0.24s; }
.d3 { transition-delay: 0.36s; }
.d4 { transition-delay: 0.48s; }


/* ─────────────────────────────────────────────────────────────
 * 9. About Section  (homepage preview)
 * ───────────────────────────────────────────────────────────── */
.about { background: var(--wh); }

.agrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.aimg {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  background:
    url('/static/img/02.JPG')
    center / cover;
  position: relative;
}

.abadge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gd);
  color: #fff;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--cr);
}

.abn {
  font-family: var(--se);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--gl);
  line-height: 1;
}

.abt {
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.15rem;
  text-align: center;
}

.atxt p {
  font-size: 0.95rem;
  color: var(--st);
  line-height: 1.88;
  margin-top: 1.3rem;
  font-weight: 300;
}

.pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 2rem;
}

.pill {
  padding: 1.1rem;
  background: var(--mi);
  border-radius: 4px;
  border-left: 3px solid var(--gs);
}

.pill-ic   { font-size: 1.2rem; margin-bottom: 0.4rem; }

.pill-nm {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gd);
  font-weight: 500;
}


/* ─────────────────────────────────────────────────────────────
 * 10. Programs Preview  (homepage)
 * ───────────────────────────────────────────────────────────── */
.pp { background: var(--cr); }

.ppg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 1rem;
}

.plead {
  font-size: 0.95rem;
  color: var(--st);
  line-height: 1.8;
  font-weight: 300;
}

.pcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.8rem;
}

.pcard {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 2rem 1.6rem;
  border: 1px solid rgba(26, 61, 43, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
  position: relative;
}

.pcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(26, 61, 43, 0.1);
}

.pcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.pcard.gn::before { background: var(--gm); }
.pcard.go::before { background: var(--go); }
.pcard.sg::before { background: var(--gs); }

.pct {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--go);
  font-weight: 500;
  margin-bottom: 0.6rem;
  margin-top: 0.5rem;
}

.pcn {
  font-family: var(--se);
  font-size: 1.2rem;
  color: var(--gd);
  line-height: 1.25;
  font-weight: 400;
  margin-bottom: 0.7rem;
}

.pcd {
  font-size: 0.82rem;
  color: var(--st);
  line-height: 1.7;
  font-weight: 300;
}


/* ─────────────────────────────────────────────────────────────
 * 11. Production Preview  (homepage)
 * ───────────────────────────────────────────────────────────── */
.prodp { background: var(--gd); }
.prodp .sti          { color: var(--cr); }
.prodp .stag         { color: var(--gl); }
.prodp .stag::before { background: var(--gl); }

.pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.pitm {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 4px;
  padding: 1.8rem 1.4rem;
  transition: all 0.25s;
}

.pitm:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(232, 169, 74, 0.4);
}

.pic  { font-size: 1.4rem; margin-bottom: 0.8rem; }

.pnm {
  font-family: var(--se);
  font-size: 1rem;
  color: var(--cr);
  margin-bottom: 0.4rem;
}

.pdc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
  font-weight: 300;
}


/* ─────────────────────────────────────────────────────────────
 * 12. Brand Bar  (homepage)
 * ───────────────────────────────────────────────────────────── */
.bb {
  background: var(--go);
  padding: 2.5rem 0;
}

.bb .con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.bq {
  font-family: var(--se);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--ea);
  font-weight: 300;
}

.btags {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btag {
  background: rgba(30, 18, 8, 0.15);
  color: var(--ea);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.42rem 0.9rem;
  border-radius: 2px;
  font-weight: 500;
}


/* ─────────────────────────────────────────────────────────────
 * 13. CTA Banner  (homepage)
 * ───────────────────────────────────────────────────────────── */
.ctab {
  background: var(--cr);
  padding: 5rem 0;
  text-align: center;
}

.cta-title {
  font-family: var(--se);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--gd);
  max-width: 580px;
  margin: 0.8rem auto 0;
}

.cta-title em {
  font-style: italic;
  color: var(--go);
}

.cta-desc {
  font-size: 0.95rem;
  color: var(--st);
  line-height: 1.8;
  font-weight: 300;
  max-width: 460px;
  margin: 0.8rem auto 2rem;
}


/* ─────────────────────────────────────────────────────────────
 * 14. Mission Section  (about page)
 * ───────────────────────────────────────────────────────────── */
.mis { background: var(--wh); }

.mgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.mtext p {
  font-size: 0.95rem;
  color: var(--st);
  line-height: 1.9;
  margin-top: 1.3rem;
  font-weight: 300;
}

.mtext p.lead {
  font-size: 1.05rem;
  color: var(--gd);
  font-weight: 400;
  margin-top: 1.5rem;
}

.obj-wrap  { margin-top: 2.5rem; }

.obj-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--go);
  margin-bottom: 1.3rem;
  font-weight: 500;
}

.obj {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.3rem;
}

.onum {
  font-family: var(--se);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--gp);
  line-height: 1;
  min-width: 30px;
}

.otxt {
  font-size: 0.9rem;
  color: var(--st);
  line-height: 1.7;
  font-weight: 300;
  padding-top: 0.25rem;
}

.mvisual { position: relative; }

.mimg1 {
  aspect-ratio: 3 / 4;
  background:
    url('/static/img/01.jpg')
    center / cover;
  border-radius: 4px;
}

.mimg2 {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 52%;
  aspect-ratio: 1;
  background:
    url('/static/img/03.JPG')
    center / cover;
  border-radius: 4px;
  border: 6px solid var(--wh);
}


/* ─────────────────────────────────────────────────────────────
 * 15. Timeline  (about page)
 * ───────────────────────────────────────────────────────────── */
.tls { background: var(--cr); }

.tl {
  position: relative;
  margin-top: 3.5rem;
  padding-left: 2rem;
}

.tl::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gp), var(--gs), var(--gp));
}

.tli {
  position: relative;
  padding: 0 0 3rem 3.5rem;
}

.tli:last-child { padding-bottom: 0; }

.tldot {
  position: absolute;
  left: -0.55rem;
  top: 0.4rem;
  width: 1.1rem;
  height: 1.1rem;
  background: var(--gd);
  border-radius: 50%;
  border: 3px solid var(--cr);
}

.tldot.gld { background: var(--go); }

.tlyr {
  font-family: var(--se);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gd);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.tlyr span {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--go);
  font-family: var(--sa);
  font-weight: 500;
  margin-left: 0.8rem;
  vertical-align: middle;
}

.tltit {
  font-size: 1rem;
  color: var(--gd);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.tldesc {
  font-size: 0.88rem;
  color: var(--st);
  line-height: 1.8;
  font-weight: 300;
  max-width: 580px;
}


/* ─────────────────────────────────────────────────────────────
 * 16. Values  (about page)
 * ───────────────────────────────────────────────────────────── */
.vals { background: var(--wh); }

.vgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.vcard {
  padding: 2.5rem 2rem;
  border-radius: 4px;
  text-align: center;
}

.vcg { background: var(--mi); border: 1px solid var(--gp); }
.vco { background: #f5e6c8;  border: 1px solid rgba(184, 116, 32, 0.2); }

.vicon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

.vig { background: var(--gp); }
.vio { background: rgba(184, 116, 32, 0.2); }

.vnm {
  font-family: var(--se);
  font-size: 1.45rem;
  color: var(--gd);
  margin-bottom: 0.7rem;
  font-weight: 400;
}

.vdesc {
  font-size: 0.88rem;
  color: var(--st);
  line-height: 1.78;
  font-weight: 300;
}


/* ─────────────────────────────────────────────────────────────
 * 17. Location  (about page)
 * ───────────────────────────────────────────────────────────── */
.loc { background: var(--gd); }
.loc .sti          { color: #f8f2e6; }
.loc .stag         { color: var(--gl); }
.loc .stag::before { background: var(--gl); }

.lgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.lmap {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 2rem;
}

.lmap-ico  { font-size: 3rem; opacity: 0.35; }

.lmap-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

.ldets {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.litem {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.liwrap {
  width: 40px;
  height: 40px;
  background: rgba(232, 169, 74, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.lilbl {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gl);
  margin-bottom: 0.28rem;
}

.lival {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  font-weight: 300;
}

.lival a { color: var(--gl); }


/* ─────────────────────────────────────────────────────────────
 * 18. Impact  (about page)
 * ───────────────────────────────────────────────────────────── */
.imp { background: var(--cr); }

.ilead {
  font-size: 0.98rem;
  color: var(--st);
  line-height: 1.85;
  font-weight: 300;
  max-width: 620px;
  margin-top: 1rem;
}

.igrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.icard {
  background: var(--wh);
  border-radius: 4px;
  padding: 2rem;
  border-left: 4px solid var(--gm);
}

.icard.gb { border-left-color: var(--go); }

.istat {
  font-family: var(--se);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gd);
  line-height: 1;
}

.istl {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--go);
  margin: 0.28rem 0 0.8rem;
}

.idesc {
  font-size: 0.85rem;
  color: var(--st);
  line-height: 1.72;
  font-weight: 300;
}


/* ─────────────────────────────────────────────────────────────
 * 19. Accreditation Bar  (programs page)
 * ───────────────────────────────────────────────────────────── */
.accbar {
  background: var(--gm);
  padding: 1.2rem 0;
}

.accbar .con {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.acc-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.acc-badges {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.acc-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.acc-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gl);
  display: block;
}


/* ─────────────────────────────────────────────────────────────
 * 20. Tabs  (programs page)
 * ───────────────────────────────────────────────────────────── */
.tsec { background: var(--cr); }

.tabs-intro {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}

.tabs-lead {
  font-size: 0.96rem;
  color: var(--st);
  line-height: 1.82;
  font-weight: 300;
}

.tabs {
  display: flex;
  border-bottom: 2px solid var(--gp);
  margin-bottom: 3rem;
}

.tab {
  padding: 0.78rem 1.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--st);
  cursor: pointer;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  background: none;
  font-family: var(--sa);
  font-weight: 400;
  transition: all 0.2s;
}

.tab.ac {
  color: var(--gd);
  border-bottom-color: var(--gd);
  font-weight: 500;
}

.tab:hover:not(.ac) { color: var(--gm); }

.tp    { display: none; }
.tp.ac { display: block; }


/* ─────────────────────────────────────────────────────────────
 * 21. Course Cards  (programs page)
 * ───────────────────────────────────────────────────────────── */
.cgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.ccard {
  background: var(--wh);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(26, 61, 43, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.ccard:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(26, 61, 43, 0.1);
}

.ctop   { height: 6px; }
.ct-gn  { background: var(--gm); }
.ct-go  { background: var(--go); }
.ct-sg  { background: var(--gs); }

.cbody  { padding: 1.8rem 1.6rem; }

.clvl {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--go);
  font-weight: 500;
  margin-bottom: 0.55rem;
}

.cnm {
  font-family: var(--se);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gd);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.cdesc {
  font-size: 0.85rem;
  color: var(--st);
  line-height: 1.72;
  font-weight: 300;
}

.centry {
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--gp);
  font-size: 0.78rem;
  color: var(--st);
  line-height: 1.6;
}

.centry strong {
  color: var(--gd);
  font-weight: 500;
}

.cdur {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gm);
  border: 1px solid var(--gp);
  padding: 0.22rem 0.6rem;
  border-radius: 2px;
}


/* ─────────────────────────────────────────────────────────────
 * 22. Short Courses  (programs page)
 * ───────────────────────────────────────────────────────────── */
.scgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.scitem {
  background: var(--wh);
  padding: 1.5rem 1.6rem;
  border-radius: 4px;
  border: 1px solid rgba(26, 61, 43, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}

.scitem:hover {
  border-color: var(--gs);
  transform: translateY(-2px);
}

.scdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--go);
  flex-shrink: 0;
  margin-top: 4px;
}

.sctit {
  font-size: 0.92rem;
  color: var(--gd);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.scsub {
  font-size: 0.77rem;
  color: var(--st);
  line-height: 1.65;
  font-weight: 300;
}


/* ─────────────────────────────────────────────────────────────
 * 23. How to Apply  (programs page)
 * ───────────────────────────────────────────────────────────── */
.apply { background: var(--gd); }
.apply .sti          { color: #f8f2e6; }
.apply .stag         { color: var(--gl); }
.apply .stag::before { background: var(--gl); }

.apply-lead {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.82;
  font-weight: 300;
  max-width: 560px;
  margin-top: 1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.step-num {
  font-family: var(--se);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(232, 169, 74, 0.15);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.step-tit {
  font-size: 0.88rem;
  color: #f8f2e6;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.step-desc {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  font-weight: 300;
}

.apply-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}


/* ─────────────────────────────────────────────────────────────
 * 24. Fees  (programs page)
 * ───────────────────────────────────────────────────────────── */
.fees { background: var(--wh); }

.fees-intro {
  font-size: 0.96rem;
  color: var(--st);
  line-height: 1.82;
  font-weight: 300;
  max-width: 560px;
  margin-top: 1rem;
}

.fees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.fee-card {
  border-radius: 4px;
  padding: 2rem 1.6rem;
  text-align: center;
  background: var(--mi);
  border: 1px solid var(--gp);
}

.fee-name {
  font-family: var(--se);
  font-size: 1.1rem;
  color: var(--gd);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.fee-level {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--go);
  margin-bottom: 1rem;
}

.fee-contact {
  font-size: 0.85rem;
  color: var(--st);
  font-weight: 300;
  line-height: 1.65;
}

.fee-contact a { color: var(--gm); }


/* ─────────────────────────────────────────────────────────────
 * 25. Brand Section  (production page)
 * ───────────────────────────────────────────────────────────── */
.brand { background: var(--wh); }

.bgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.btext p {
  font-size: 0.95rem;
  color: var(--st);
  line-height: 1.88;
  margin-top: 1.2rem;
  font-weight: 300;
}

.bvals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
}

.bval {
  padding: 1.2rem;
  background: var(--mi);
  border-radius: 4px;
  border-left: 3px solid var(--gs);
}

.bval-ic  { font-size: 1.2rem; margin-bottom: 0.4rem; }

.bval-nm {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gd);
  font-weight: 500;
}

.bimg {
  aspect-ratio: 1;
  border-radius: 4px;
  background:
    url('/static/img/04.JPG')
    center / cover;
  box-shadow: 0 20px 60px rgba(26, 61, 43, 0.15);
}


/* ─────────────────────────────────────────────────────────────
 * 26. Hatchery Process  (production page)
 * ───────────────────────────────────────────────────────────── */
.hatch { background: var(--cr); }

.hatch-intro {
  font-size: 0.96rem;
  color: var(--st);
  line-height: 1.85;
  font-weight: 300;
  max-width: 620px;
  margin-top: 1rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 3.5rem;
}

.pstep {
  text-align: center;
  position: relative;
  z-index: 1;
}

.pstep-circle {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 2px solid var(--gp);
  background: var(--wh);
}

.pstep-circle.active {
  background: var(--gd);
  border-color: var(--gd);
}

.pstep-days {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--go);
  margin-bottom: 0.3rem;
}

.pstep-nm {
  font-size: 0.82rem;
  color: var(--gd);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.pstep-desc {
  font-size: 0.72rem;
  color: var(--st);
  line-height: 1.55;
  font-weight: 300;
}

.chick-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.ctype {
  background: var(--wh);
  border-radius: 4px;
  padding: 2rem;
  border: 1px solid rgba(26, 61, 43, 0.08);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.ctype-icon { font-size: 2rem; flex-shrink: 0; }

.ctype-nm {
  font-family: var(--se);
  font-size: 1.2rem;
  color: var(--gd);
  margin-bottom: 0.4rem;
}

.ctype-desc {
  font-size: 0.85rem;
  color: var(--st);
  line-height: 1.72;
  font-weight: 300;
}


/* ─────────────────────────────────────────────────────────────
 * 27. Products Grid  (production page)
 * ───────────────────────────────────────────────────────────── */
.products { background: var(--gd); }
.products .sti          { color: #f8f2e6; }
.products .stag         { color: var(--gl); }
.products .stag::before { background: var(--gl); }

.products .plead {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  font-weight: 300;
  max-width: 560px;
  margin-top: 0.8rem;
}

.pcard-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 4px;
  padding: 2rem 1.4rem;
  transition: all 0.25s;
}

.pcard-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(232, 169, 74, 0.4);
}

.pc-icon  { font-size: 1.4rem; margin-bottom: 1rem; }

.pc-nm {
  font-family: var(--se);
  font-size: 1.05rem;
  color: #f8f2e6;
  margin-bottom: 0.4rem;
}

.pc-desc {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.43);
  line-height: 1.65;
  font-weight: 300;
}

.pc-badge {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gl);
  border: 1px solid rgba(232, 169, 74, 0.28);
  padding: 0.22rem 0.6rem;
  border-radius: 2px;
}


/* ─────────────────────────────────────────────────────────────
 * 28. Construction  (production page)
 * ───────────────────────────────────────────────────────────── */
.construction { background: var(--cr); }

.congrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cimg {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  background:
    url('/static/img/kokoto.JPG')
    center / cover;
}

.con-items {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 1.8rem;
}

.citem {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.4rem;
  background: var(--wh);
  border-radius: 4px;
  border: 1px solid rgba(26, 61, 43, 0.08);
}

.citem-ic { font-size: 1.5rem; flex-shrink: 0; }

.citem-nm {
  font-size: 0.9rem;
  color: var(--gd);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.citem-desc {
  font-size: 0.8rem;
  color: var(--st);
  line-height: 1.65;
  font-weight: 300;
}


/* ─────────────────────────────────────────────────────────────
 * 29. Coming Soon  (production page)
 * ───────────────────────────────────────────────────────────── */
.coming { background: var(--ea); }
.coming .sti          { color: #f8f2e6; }
.coming .stag         { color: var(--gl); }
.coming .stag::before { background: var(--gl); }

.cs-lead {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.8;
  font-weight: 300;
  max-width: 560px;
  margin-top: 0.8rem;
}

.csgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.cscard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 2rem 1.6rem;
}

.cs-ic  { font-size: 1.5rem; margin-bottom: 0.8rem; opacity: 0.7; }

.cs-nm {
  font-family: var(--se);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.4rem;
}

.cs-desc {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.65;
  font-weight: 300;
}

.cs-tag {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 169, 74, 0.5);
  border: 1px solid rgba(232, 169, 74, 0.2);
  padding: 0.22rem 0.6rem;
  border-radius: 2px;
}


/* ─────────────────────────────────────────────────────────────
 * 30. Delivery Bar  (production page)
 * ───────────────────────────────────────────────────────────── */
.delivery {
  background: var(--go);
  padding: 3.5rem 0;
}

.del-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.del-quote {
  font-family: var(--se);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--ea);
  font-weight: 300;
  line-height: 1.4;
  font-style: italic;
}

.del-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ditem {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.dic {
  width: 38px;
  height: 38px;
  background: rgba(30, 18, 8, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.div {
  font-size: 0.88rem;
  color: rgba(30, 18, 8, 0.75);
  line-height: 1.55;
  font-weight: 300;
}

.div strong {
  color: var(--ea);
  font-weight: 500;
}


/* ─────────────────────────────────────────────────────────────
 * 31. Order CTA  (production page)
 * ───────────────────────────────────────────────────────────── */
.order { background: var(--gd); }
.order .sti          { color: #f8f2e6; }
.order .stag         { color: var(--gl); }
.order .stag::before { background: var(--gl); }

.order-lead {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  font-weight: 300;
  max-width: 540px;
  margin-top: 1rem;
}

.order-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}


/* ─────────────────────────────────────────────────────────────
 * 32. Diocese  (leadership page)
 * ───────────────────────────────────────────────────────────── */
.diocese { background: var(--wh); }

.diogrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.diotext p {
  font-size: 0.95rem;
  color: var(--st);
  line-height: 1.9;
  margin-top: 1.2rem;
  font-weight: 300;
}

.dioimg {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  background:
    url('/static/img/05.JPG')
    center / cover;
  position: relative;
}

.dioseal {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--go);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--wh);
  font-size: 0.44rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
}

.dioseal-ic {
  font-size: 1.7rem;
  margin-bottom: 0.2rem;
}


/* ─────────────────────────────────────────────────────────────
 * 33. Board of Directors  (leadership page)
 * ───────────────────────────────────────────────────────────── */
.board { background: var(--cr); }

.board-lead {
  font-size: 0.96rem;
  color: var(--st);
  line-height: 1.85;
  font-weight: 300;
  max-width: 600px;
  margin-top: 1rem;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.bcard {
  background: var(--wh);
  border-radius: 4px;
  padding: 2rem 1.6rem;
  border: 1px solid rgba(26, 61, 43, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: center;
}

.bcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(26, 61, 43, 0.1);
}

.bcard.gld { border-top: 3px solid var(--go); }
.bcard.grn { border-top: 3px solid var(--gm); }

.bavatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--se);
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
}

.av-go { background: var(--go); }
.av-gm { background: var(--gm); }
.av-gs { background: var(--gs); }

.btitle {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--go);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.bname {
  font-family: var(--se);
  font-size: 1.2rem;
  color: var(--gd);
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.bsubtitle {
  font-size: 0.75rem;
  color: var(--st);
  font-weight: 300;
  margin-bottom: 0.8rem;
}

.bdesc {
  font-size: 0.8rem;
  color: var(--st);
  line-height: 1.7;
  font-weight: 300;
  text-align: left;
}


/* ─────────────────────────────────────────────────────────────
 * 34. Management Team  (leadership page)
 * ───────────────────────────────────────────────────────────── */
.mgmt { background: var(--gd); }
.mgmt .sti          { color: #f8f2e6; }
.mgmt .stag         { color: var(--gl); }
.mgmt .stag::before { background: var(--gl); }

.mgmt-lead {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  font-weight: 300;
  max-width: 560px;
  margin-top: 0.8rem;
}

.mteam-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.mcard {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: all 0.25s;
}

.mcard:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(232, 169, 74, 0.4);
}

.mavatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--se);
  font-size: 1.4rem;
  font-weight: 300;
  color: #fff;
  border: 2px solid rgba(232, 169, 74, 0.3);
}

.mtitle {
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gl);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.mname {
  font-family: var(--se);
  font-size: 1rem;
  color: #f8f2e6;
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.mrole {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}


/* ─────────────────────────────────────────────────────────────
 * 35. Departments  (leadership page)
 * ───────────────────────────────────────────────────────────── */
.staff { background: var(--wh); }

.depts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.dept {
  background: var(--mi);
  border-radius: 4px;
  padding: 2rem;
  border: 1px solid var(--gp);
}

.dept-ic  { font-size: 1.3rem; margin-bottom: 0.7rem; }

.dept-nm {
  font-family: var(--se);
  font-size: 1.15rem;
  color: var(--gd);
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.dept-desc {
  font-size: 0.84rem;
  color: var(--st);
  line-height: 1.72;
  font-weight: 300;
}

.dept-count {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gs);
  border: 1px solid var(--gp);
  padding: 0.22rem 0.65rem;
  border-radius: 2px;
}


/* ─────────────────────────────────────────────────────────────
 * 36. Org Chart  (leadership page)
 * ───────────────────────────────────────────────────────────── */
.orgchart { background: var(--cr); }

.org-note {
  font-size: 0.9rem;
  color: var(--st);
  line-height: 1.8;
  font-weight: 300;
  max-width: 560px;
  margin-top: 0.8rem;
}

.org {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.org-lbl {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 61, 43, 0.35);
  text-align: center;
  margin-bottom: 0.5rem;
}

.obox {
  padding: 0.85rem 1.5rem;
  border-radius: 3px;
  text-align: center;
  min-width: 150px;
}

.ob-dark { background: var(--gd); border: 1px solid var(--gm); }
.ob-mid  { background: var(--gm); border: 1px solid var(--gs); }
.ob-lite { background: var(--mi); border: 1px solid var(--gp); }

.ob-nm {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
}

.ob-dark .ob-nm,
.ob-mid  .ob-nm { color: #fff; }
.ob-lite .ob-nm  { color: var(--gd); }

.ob-r {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.ob-dark .ob-r,
.ob-mid  .ob-r { color: rgba(255, 255, 255, 0.5); }
.ob-lite .ob-r  { color: var(--st); }

.org-line {
  width: 1px;
  height: 28px;
  background: var(--gp);
  margin: 0 auto;
}


/* ─────────────────────────────────────────────────────────────
 * 37. Values Statement  (leadership page)
 * ───────────────────────────────────────────────────────────── */
.vs-sect {
  background: var(--gd);
  padding: 4rem 0;
}

.vs-inner { text-align: center; }

.vs-q {
  font-family: var(--se);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #f8f2e6;
  font-weight: 300;
  line-height: 1.5;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
}

.vs-q em { color: var(--gl); }

.vs-auth {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 1.2rem;
}


/* ─────────────────────────────────────────────────────────────
 * 38. Contact Main  (contact page)
 * ───────────────────────────────────────────────────────────── */
.ctmain { background: var(--wh); }

.ctgrid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.cinfo { display: flex; flex-direction: column; }

.cinfo-intro {
  font-size: 0.95rem;
  color: var(--st);
  line-height: 1.85;
  font-weight: 300;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.ci-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gp);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.ci-item:first-of-type { border-top: 1px solid var(--gp); }

.ci-ic {
  width: 40px;
  height: 40px;
  background: var(--mi);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.ci-lbl {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--go);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.ci-val {
  font-size: 0.9rem;
  color: var(--st);
  line-height: 1.7;
  font-weight: 300;
}

.ci-val a       { color: var(--gm); transition: color 0.2s; }
.ci-val a:hover { color: var(--go); }

.social-wrap { margin-top: 2rem; }

.social-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--st);
  margin-bottom: 0.8rem;
}

.socials { display: flex; gap: 0.6rem; }

.soc-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mi);
  border: 1px solid var(--gp);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.soc-btn:hover {
  background: var(--go);
  border-color: var(--go);
}


/* ─────────────────────────────────────────────────────────────
 * 39. Enquiry Form  (contact page)
 * ───────────────────────────────────────────────────────────── */
.form-box {
  background: var(--cr);
  border-radius: 4px;
  padding: 2.5rem;
}

.form-title {
  font-family: var(--se);
  font-size: 1.6rem;
  color: var(--gd);
  font-weight: 300;
  margin-bottom: 0.4rem;
}

.form-sub {
  font-size: 0.82rem;
  color: var(--st);
  font-weight: 300;
  margin-bottom: 2rem;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.frow.full { grid-template-columns: 1fr; }

.fgroup { display: flex; flex-direction: column; }

.flbl {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gd);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.finput {
  border: 1.5px solid var(--gp);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--ea);
  font-family: var(--sa);
  background: var(--wh);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.finput:focus { border-color: var(--gs); }

.ftextarea {
  resize: vertical;
  min-height: 130px;
}

.fselect {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M6 8L0 0h12z' fill='%235a5248'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.fsubmit {
  width: 100%;
  padding: 0.9rem;
  background: var(--gd);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-family: var(--sa);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}

.fsubmit:hover {
  background: var(--gm);
  transform: translateY(-2px);
}

.form-note {
  font-size: 0.72rem;
  color: var(--st);
  font-weight: 300;
  margin-top: 0.8rem;
  text-align: center;
}

.success-banner {
  display: none;
  background: var(--gm);
  color: #fff;
  border-radius: 3px;
  padding: 0.9rem 1.2rem;
  font-size: 0.82rem;
  margin-top: 0.8rem;
  font-weight: 300;
}


/* ─────────────────────────────────────────────────────────────
 * 40. Quick Contact Cards  (contact page)
 * ───────────────────────────────────────────────────────────── */
.qc { background: var(--gd); }
.qc .sti          { color: #f8f2e6; }
.qc .stag         { color: var(--gl); }
.qc .stag::before { background: var(--gl); }

.qcgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.qccard {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 2rem 1.6rem;
  text-align: center;
  transition: all 0.25s;
}

.qccard:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(232, 169, 74, 0.4);
}

.qc-ic  { font-size: 1.5rem; margin-bottom: 0.9rem; }

.qc-nm {
  font-family: var(--se);
  font-size: 1.1rem;
  color: #f8f2e6;
  margin-bottom: 0.4rem;
}

.qc-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1rem;
}

.qc-btn {
  display: inline-block;
  color: var(--gl);
  border: 1px solid rgba(232, 169, 74, 0.4);
  padding: 0.55rem 1.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
}

.qc-btn:hover {
  background: rgba(232, 169, 74, 0.12);
  border-color: var(--gl);
}


/* ─────────────────────────────────────────────────────────────
 * 41. Office Hours & Directions  (contact page)
 * ───────────────────────────────────────────────────────────── */
.hours { background: var(--cr); }

.hgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.hours-table { margin-top: 1.5rem; }

.hrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gp);
}

.hrow:first-child { border-top: 1px solid var(--gp); }

.hday {
  font-size: 0.82rem;
  color: var(--gd);
  font-weight: 500;
}

.htimes {
  font-size: 0.82rem;
  color: var(--st);
  font-weight: 300;
}

.htimes.closed { color: rgba(90, 82, 72, 0.45); }

.hmap {
  background: var(--wh);
  border-radius: 4px;
  padding: 2.5rem;
  border: 1px solid var(--gp);
}

.hmap-title {
  font-family: var(--se);
  font-size: 1.3rem;
  color: var(--gd);
  margin-bottom: 1.2rem;
}

.hdirections {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hdir {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.hdir-ic {
  width: 32px;
  height: 32px;
  background: var(--mi);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.hdir-txt {
  font-size: 0.85rem;
  color: var(--st);
  line-height: 1.65;
  font-weight: 300;
}

.hdir-txt strong {
  color: var(--gd);
  font-weight: 500;
}


/* ─────────────────────────────────────────────────────────────
 * 42. Map Placeholder  (contact page)
 * ───────────────────────────────────────────────────────────── */
.map-sect {
  background: var(--ea);
  padding: 0;
}

.map-ph {
  height: 350px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.map-ph-ic  { font-size: 2.5rem; opacity: 0.3; }

.map-ph-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.map-ph-addr {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}


/* ─────────────────────────────────────────────────────────────
 * 43. Footer  (all pages)
 * ───────────────────────────────────────────────────────────── */
footer {
  background: var(--ea);
  padding: 4rem 0 2rem;
}

.fg {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.fbn {
  font-family: var(--se);
  font-size: 1.3rem;
  color: var(--gl);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.fbd {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  font-weight: 300;
}

.fct {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 1.1rem;
}

.fl     { list-style: none; }
.fl li  { margin-bottom: 0.5rem; }

.fl a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.52);
  transition: color 0.2s;
  font-weight: 300;
}

.fl a:hover { color: var(--gl); }

.fbot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.fc  { font-size: 0.72rem; color: rgba(255, 255, 255, 0.28); }
.fch { font-size: 0.68rem; color: rgba(255, 255, 255, 0.22); }


/* ─────────────────────────────────────────────────────────────
 * 44. Responsive
 * ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav           { padding: 1.2rem 2rem; }
  .con          { padding: 0 2rem; }
  .hc           { padding: 0 2.5rem 6rem; }
  .hrings       { display: none; }

  /* Grid collapses */
  .agrid        { grid-template-columns: 1fr; }
  .bgrid        { grid-template-columns: 1fr; }
  .board-grid   { grid-template-columns: 1fr 1fr; }
  .cgrid        { grid-template-columns: 1fr 1fr; }
  .congrid      { grid-template-columns: 1fr; }
  .ctgrid       { grid-template-columns: 1fr; }
  .del-grid     { grid-template-columns: 1fr; }
  .depts        { grid-template-columns: 1fr; }
  .diogrid      { grid-template-columns: 1fr; }
  .fees-grid    { grid-template-columns: 1fr 1fr; }
  .fg           { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hgrid        { grid-template-columns: 1fr; }
  .lgrid        { grid-template-columns: 1fr; }
  .mgrid        { grid-template-columns: 1fr; }
  .mteam-grid   { grid-template-columns: 1fr 1fr 1fr; }
  .pgrid        { grid-template-columns: 1fr 1fr; }
  .ppg          { grid-template-columns: 1fr; }
  .process      { grid-template-columns: 1fr 1fr; }
  .qcgrid       { grid-template-columns: 1fr 1fr; }
  .steps        { grid-template-columns: 1fr 1fr; }
  .tabs-intro   { grid-template-columns: 1fr; }
  .csgrid       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nm, .nc        { display: none; }
  .bb .con        { flex-direction: column; }
  .si             { flex: 1 1 50%; }
  .tabs           { flex-wrap: wrap; }

  /* Grid collapses */
  .bvals          { grid-template-columns: 1fr; }
  .board-grid     { grid-template-columns: 1fr; }
  .cgrid          { grid-template-columns: 1fr; }
  .chick-types    { grid-template-columns: 1fr; }
  .csgrid         { grid-template-columns: 1fr; }
  .fees-grid      { grid-template-columns: 1fr; }
  .fg             { grid-template-columns: 1fr; }
  .frow           { grid-template-columns: 1fr; }
  .igrid          { grid-template-columns: 1fr; }
  .mteam-grid     { grid-template-columns: 1fr 1fr; }
  .pcards         { grid-template-columns: 1fr; }
  .pgrid          { grid-template-columns: 1fr; }
  .pills          { grid-template-columns: 1fr; }
  .process        { grid-template-columns: 1fr; }
  .qcgrid         { grid-template-columns: 1fr; }
  .scgrid         { grid-template-columns: 1fr; }
  .steps          { grid-template-columns: 1fr; }
  .vgrid          { grid-template-columns: 1fr; }

  /* Hiding overlapping visuals */
  .mimg2          { display: none; }

  .hbg {
    width: 100%;
    height: 100%;
  }
}

/* end here */
@media screen and (max-width: 768px) {
    html{
        
    }

    .container{
        width: 95%;
        flex-wrap: wrap;
    }

    nav{
        display: block;
        visibility: hidden;
        position: absolute;
        flex-direction: column;
        text-align: left;
        background-color: #1a3d2b;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        opacity: 1;
        transform: translateX(100%);
    }

    nav.active{
        transform: translateX(0);
        visibility: visible;

    }

    nav a{
        display: inline-block;
        width: 100%;
        padding: 30px 30px 0px 30px;
        color: #ffffff73;
        font-size: 18px;
        font-weight: 600;
    }

    #menu-icon{
        display: block;
    }

    #navigation{
        align-items: center;
    }


    #hero h1, p{
        text-align: left;
    }

    .hero-heading{
        width: fit-content;
    }

    .hero-heading h1{
        font-size: 2rem;
    }

    .main-container{
        width: fit-content;
        text-align: left;
    }
    
}