/* ═══════════════════════════════════════════════════════════════════════
   ARRADHANA SHRESTHA — CORPORATE TRAINER NEPAL
   Master Stylesheet v3.0 | assets/css/style.css
   ═══════════════════════════════════════════════════════════════════════
   SECTIONS:
   1. Root Variables
   2. Font Faces
   3. Reset & Base
   4. Scrollbar & Selection
   5. Accessibility
   6. Typography
   7. Layout — Container & Sections
   8. Navigation
   9. Buttons
  10. Hero
  11. Quick CTA Strip
  12. About Section
  13. Credentials
  14. Programs
  15. Testimonials
  16. Logos / Clients
  17. FAQ
  18. Contact CTA
  19. Footer
  20. Cards, Grid, Forms, Utilities
  21. Gallery Lightbox
  22. Scroll Reveal & Counters
  23. Responsive Overrides
  24. Print & Reduced Motion
   ═══════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────
   1. ROOT VARIABLES
   ───────────────────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --r:        #b5252b;
  --r2:       #7d1518;
  --r3:       #d63e44;
  --rl:       rgba(181,37,43,.07);
  --rb:       rgba(181,37,43,.18);
  --rbs:      rgba(181,37,43,.10);
  --crimson:  #b5252b;

  /* Gold */
  --gold:     #c9962e;
  --gold-l:   rgba(201,150,46,.10);
  --gold-b:   rgba(201,150,46,.28);
  --g-gold:   #b8832a;
  --g-gold-lt:#d4a855;

  /* Ink / Text */
  --ink:  #16100f;
  --ink2: #352520;
  --ink3: #6a5550;
  --ink4: #a89490;

  /* Backgrounds */
  --bg:  #fffdf9;
  --bg2: #faf7f1;
  --bg3: #f4ede1;
  --bg4: #ede3d2;

  /* Accents */
  --teal:     #1a7a8a;
  --teal-l:   rgba(26,122,138,.07);
  --teal-b:   rgba(26,122,138,.20);
  --purple:   #6b3fa0;
  --purple-l: rgba(107,63,160,.07);

  /* Footer / Dark */
  --g-dark:    #1c1410;
  --g-maroon:  #8b2635;
  --g-maroon2: #a63245;
  --g-cream:   #f5f0e8;
  --g-cream2:  #ede8df;
  --g-white:   #fff;
  --g-muted:   #6b5d52;
  --g-muted2:  #9a8d82;

  /* Shadows */
  --shadow-sm: 0 2px 14px rgba(22,16,15,.09);
  --shadow-md: 0 8px 36px rgba(22,16,15,.12);
  --shadow-lg: 0 20px 64px rgba(22,16,15,.14);
  --g-shadow:  0 4px 24px rgba(139,38,53,.10);
  --g-shadow2: 0 12px 40px rgba(139,38,53,.18);

  /* Typography */
  --fd: "Playfair Display", Georgia, serif;
  --fb: "DM Sans", system-ui, sans-serif;

  /* Spacing & Shape */
  --nav-h:    78px;
  --g-radius: 12px;
  --rad:      6px;

  /* Transitions */
  --tr-fast: .20s ease;
  --tr-med:  .30s ease;
  --tr-slow: .55s ease;
  --g-trans: .40s cubic-bezier(.25,.46,.45,.94);
}

/* ─────────────────────────────────────────────────────────────────────
   2. FONT FACES  (self-hosted, display:swap for CLS)
   ───────────────────────────────────────────────────────────────────── */
@font-face {
  font-family: "Playfair Display";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url(../fonts/playfair-display-v37-latin-regular.woff2) format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic; font-weight: 400; font-display: swap;
  src: url(../fonts/playfair-display-v37-latin-italic.woff2) format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal; font-weight: 600; font-display: swap;
  src: url(../fonts/playfair-display-v37-latin-600.woff2) format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal; font-weight: 300; font-display: swap;
  src: url(../fonts/dm-sans-v15-latin-300.woff2) format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url(../fonts/dm-sans-v15-latin-regular.woff2) format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal; font-weight: 500; font-display: swap;
  src: url(../fonts/dm-sans-v15-latin-500.woff2) format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal; font-weight: 600; font-display: swap;
  src: url(../fonts/dm-sans-v15-latin-600.woff2) format("woff2");
}

/* ─────────────────────────────────────────────────────────────────────
   3. RESET & BASE
   ───────────────────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

a, button { touch-action: manipulation; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

a {
  color: var(--ink);
  text-decoration: none;
  transition: color var(--tr-fast);
}
a:hover { color: var(--r); }

strong, .font-bold { font-weight: 600; }
em, .font-italic   { font-style: italic; }

ul, ol { margin: 16px 0; padding-left: 24px; }
li { margin: 8px 0; color: var(--ink); }

.list-check { list-style: none; padding-left: 0; }
.list-check li::before { content: "✓ "; color: var(--r); font-weight: bold; margin-right: 8px; }

table { width: 100%; border-collapse: collapse; margin: 24px 0; }
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid rgba(181,37,43,.13); }
th { background: var(--rl); font-weight: 600; color: var(--r); }
tr:hover { background: var(--bg2); }

blockquote {
  margin: 24px 0; padding: 20px 24px;
  border-left: 4px solid var(--r);
  background: var(--rl);
  font-style: italic; color: var(--ink2); line-height: 1.8;
}
blockquote footer {
  background: none; border: none; margin-top: 12px;
  font-style: normal; text-align: right; padding: 0; color: var(--ink3);
}

hr, .divider-line {
  border: none;
  border-top: 1px solid rgba(181,37,43,.20);
  margin: 40px 0;
}

figure { margin: 24px 0; }
figcaption { font-size: 13px; color: var(--ink3); margin-top: 8px; text-align: center; }

code {
  background: var(--bg3); padding: 2px 6px; border-radius: 3px;
  font-family: "Courier New", monospace; font-size: 14px; color: var(--r);
}
pre {
  background: var(--g-dark); color: #fff; padding: 16px; border-radius: 8px;
  overflow-x: auto; margin: 24px 0; font-family: "Courier New", monospace;
  font-size: 13px; line-height: 1.5;
}
pre code { background: none; padding: 0; color: #fff; }

/* ─────────────────────────────────────────────────────────────────────
   4. SCROLLBAR & SELECTION
   ───────────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--rb); border-radius: 10px; }

::selection      { background: var(--r); color: #fff; }
::-moz-selection { background: var(--r); color: #fff; }

/* ─────────────────────────────────────────────────────────────────────
   5. ACCESSIBILITY
   ───────────────────────────────────────────────────────────────────── */
.skip-nav {
  position: absolute; top: -100px; left: 16px;
  background: var(--r); color: #fff;
  padding: 10px 18px; border-radius: 0 0 var(--rad) var(--rad);
  font-weight: 600; text-decoration: none; z-index: 9999;
  transition: top var(--tr-fast);
}
.skip-nav:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--r);
  outline-offset: 3px;
}

/* ─────────────────────────────────────────────────────────────────────
   6. TYPOGRAPHY
   ───────────────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--fd); font-weight: 400;
  line-height: 1.2; color: var(--ink); margin: 24px 0 16px;
}
h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 600; }
h2 { font-size: clamp(26px, 4vw, 44px); font-weight: 600; }
h3 { font-size: clamp(22px, 3vw, 32px); font-weight: 500; }
h4 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 500; }
h5 { font-size: 18px; font-weight: 600; }
h6 { font-size: 16px; font-weight: 600; }

p { margin: 12px 0; color: var(--ink); }

.lead, .subtitle {
  font-family: var(--fd); font-size: clamp(18px,2.5vw,24px);
  font-weight: 300; color: var(--ink2); line-height: 1.6; margin: 16px 0;
}

.inline-link {
  text-decoration: underline;
  text-decoration-color: rgba(181,37,43,.35);
  text-underline-offset: 2px;
  transition: text-decoration-color var(--tr-fast);
}
.inline-link:hover { text-decoration-color: var(--r); }

/* Section labels */
.sec-eye {
  display: block; text-align: center;
  font-family: var(--fb); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--gold); margin-bottom: 12px;
}
.sec-h {
  text-align: center; color: var(--ink); margin-bottom: 12px;
}
.sec-h em { color: var(--r); font-style: normal; }
.sec-sub {
  text-align: center; font-size: 16px; color: var(--ink3);
  max-width: 640px; margin: 0 auto 28px; line-height: 1.65;
}

/* Decorative divider */
.divider {
  display: flex; align-items: center; gap: 10px;
  margin: 0 auto 40px; max-width: 200px;
}
.dline { flex: 1; height: 1px; background: rgba(181,37,43,.22); }
.ddot { width: 6px; height: 6px; border-radius: 50%; background: var(--r); flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────────────────
   7. LAYOUT — CONTAINER & SECTIONS
   ───────────────────────────────────────────────────────────────────── */
main { min-height: calc(100vh - var(--nav-h) - 300px); }

.wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
}

.section       { padding: 80px 0; background: var(--bg); }
.section-alt   { background: var(--bg2); }
.section-alt2  { background: var(--bg3); }
.section-dark  { background: var(--g-dark); color: var(--g-white); }

.section-dark h1,.section-dark h2,.section-dark h3,
.section-dark h4,.section-dark h5,.section-dark h6 { color: #fff; }

/* ─────────────────────────────────────────────────────────────────────
   8. NAVIGATION
   ───────────────────────────────────────────────────────────────────── */
#nav {
  position: sticky; top: 0; height: var(--nav-h);
  padding: 0 52px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,253,249,.96);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(181,37,43,.13);
  z-index: 200;
  transition: box-shadow var(--tr-med), background var(--tr-med);
}
#nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-progress {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--r), var(--gold));
  width: calc(var(--scroll,0) * 100%);
  transition: width .1s linear;
}

.nav-logo {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--fd); font-size: 18px; font-weight: 600;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.nav-logo em { color: var(--r); font-style: normal; font-weight: 600; }

.logo-gem {
  width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(135deg, var(--r), var(--r2));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; font-weight: 700;
  font-family: var(--fd); margin-right: 2px; flex-shrink: 0;
}

.nav-links {
  display: flex; align-items: center; gap: 0;
  list-style: none; padding: 0; margin: 0;
}
.nav-links li { list-style: none; }
.nav-links a {
  display: block; padding: 4px 14px;
  font-family: var(--fb); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--ink); text-decoration: none;
  position: relative; transition: color var(--tr-fast);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 14px;
  width: 0; height: 2px; background: var(--r);
  transition: width var(--tr-fast);
}
.nav-links a:hover { color: var(--r); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: calc(100% - 28px); }
.nav-links a[aria-current="page"] { color: var(--r); }

/* Bio/CV pill in nav */
.nav-biocv {
  background: var(--rl);
  border-radius: 4px;
  color: var(--r) !important;
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--r); color: #fff !important;
  padding: 10px 20px; border-radius: var(--rad);
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .04em; white-space: nowrap;
  transition: background var(--tr-fast), box-shadow var(--tr-fast), transform var(--tr-fast);
}
.nav-cta:hover { background: var(--r3); box-shadow: var(--shadow-md); transform: translateY(-1px); }

/* Hamburger */
.nav-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer; padding: 8px;
  border-radius: 4px; transition: background var(--tr-fast);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  flex-shrink: 0;
}
.nav-menu-btn:hover { background: var(--rl); }
.nav-menu-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform var(--tr-fast), opacity var(--tr-fast);
}
.nav-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-menu-btn.open span:nth-child(2) { opacity: 0; }
.nav-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav drawer */
.nav-mobile {
  display: none; flex-direction: column; gap: 4px;
  position: fixed; top: var(--nav-h); left: 0; width: 100%;
  background: rgba(255,253,249,.99);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  padding: 20px 24px 28px;
  border-bottom: 1px solid rgba(181,37,43,.13);
  z-index: 199;
  max-height: calc(100vh - var(--nav-h));
  max-height: calc(100dvh - var(--nav-h)); /* dynamic viewport: ignores mobile address-bar shrink/grow */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* iOS momentum scroll inside fixed drawer */
  overscroll-behavior: contain;      /* stop scroll-chaining into body behind it */
  box-shadow: var(--shadow-md);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block; padding: 12px 16px; border-radius: 8px;
  font-family: var(--fb); font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--ink); text-decoration: none;
  transition: background var(--tr-fast), color var(--tr-fast);
}
.nav-mobile a:hover { color: var(--r); background: var(--rl); }
.nav-mobile a[aria-current="page"] { color: var(--r); background: var(--rl); }
.nav-mobile-wa {
  margin-top: 12px !important;
  background: #25d366 !important; color: #fff !important;
  display: flex !important; align-items: center; gap: 8px;
  justify-content: center; border-radius: 8px !important;
}
.nav-mobile-wa:hover { background: #1ebe5c !important; }

/* ── Desktop dropdown ── */
.nav-chevron {
  font-size: 9px; margin-left: 2px; display: inline-block;
  transition: transform var(--tr-fast); vertical-align: middle;
}
.nav-has-dropdown { position: relative; }
.nav-has-dropdown:hover .nav-chevron,
.nav-has-dropdown:focus-within .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: rgba(255,253,249,.99);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border: 1px solid rgba(181,37,43,.13);
  border-radius: var(--g-radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  list-style: none; margin: 0;
  opacity: 0; pointer-events: none;
  transition: opacity var(--tr-fast), transform var(--tr-fast);
  z-index: 300;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* arrow pointer */
.nav-dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent; border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(181,37,43,.18);
}
.nav-dropdown li { list-style: none; }
.nav-dropdown a {
  display: block; padding: 9px 20px;
  font-size: 12px; font-weight: 500;
  text-transform: none; letter-spacing: .01em;
  color: var(--ink); text-decoration: none;
  transition: background var(--tr-fast), color var(--tr-fast);
  white-space: nowrap;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { background: var(--rl); color: var(--r); }
.nav-dropdown li:not(:last-child) a {
  border-bottom: 1px solid rgba(181,37,43,.06);
}

/* ── Mobile Programs accordion ── */
.nav-mobile-programs {
  border-radius: 8px; overflow: hidden;
}
.nav-mobile-programs-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border: none; background: none; cursor: pointer;
  font-family: var(--fb); font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em; color: var(--ink);
  border-radius: 8px; transition: background var(--tr-fast), color var(--tr-fast);
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile-programs-btn:hover,
.nav-mobile-programs-btn[aria-expanded="true"] { background: var(--rl); color: var(--r); }
.nav-mobile-programs-btn[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

.nav-mobile-programs-list {
  list-style: none; padding: 4px 0 4px 12px; margin: 0;
  border-left: 2px solid rgba(181,37,43,.20); margin-left: 16px;
}
.nav-mobile-programs-list li { list-style: none; }
.nav-mobile-programs-list a {
  display: block; padding: 9px 14px; border-radius: 6px;
  font-family: var(--fb); font-size: 13px; font-weight: 500;
  text-transform: none; letter-spacing: .01em;
  color: var(--ink2); text-decoration: none;
  transition: background var(--tr-fast), color var(--tr-fast);
}
.nav-mobile-programs-list a:hover { background: var(--rl); color: var(--r); }
.nav-mobile-programs-all {
  font-weight: 600 !important; color: var(--r) !important;
  margin-top: 4px; border-top: 1px solid rgba(181,37,43,.12); padding-top: 10px !important;
}

/* ─────────────────────────────────────────────────────────────────────
   9. BUTTONS
   ───────────────────────────────────────────────────────────────────── */
.btn-p {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 28px; border-radius: var(--rad);
  font-family: var(--fb); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em;
  border: 1.5px solid var(--ink); color: var(--ink);
  text-decoration: none; cursor: pointer;
  transition: all var(--tr-fast);
  white-space: nowrap;
}
.btn-p:hover { border-color: var(--r); color: var(--r); background: var(--rl); transform: translateY(-2px); }

.btn-gold-fill {
  background: var(--gold); border-color: var(--gold); color: #fff !important;
}
.btn-gold-fill:hover { background: var(--g-gold-lt); border-color: var(--g-gold-lt); color: #fff !important; box-shadow: var(--shadow-md); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 24px; border-radius: var(--rad);
  background: #25d366; color: #fff !important;
  font-family: var(--fb); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em; cursor: pointer;
  border: none; text-decoration: none;
  transition: background var(--tr-fast), transform var(--tr-fast), box-shadow var(--tr-fast);
}
.btn-wa:hover { background: #1ebe5c; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* CTA section buttons */
.cbtn-r {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 14px 32px; border-radius: var(--rad);
  background: var(--r); color: #fff !important;
  font-family: var(--fb); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  text-decoration: none; cursor: pointer; border: none;
  transition: background var(--tr-fast), transform var(--tr-fast), box-shadow var(--tr-fast);
}
.cbtn-r:hover { background: var(--r3); transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff !important; }

.cbtn-g {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 14px 32px; border-radius: var(--rad);
  background: #25d366; color: #fff !important;
  font-family: var(--fb); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  text-decoration: none; cursor: pointer; border: none;
  transition: background var(--tr-fast), transform var(--tr-fast);
}
.cbtn-g:hover { background: #1ebe5c; transform: translateY(-2px); color: #fff !important; }

.cbtn-o {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 14px 32px; border-radius: var(--rad);
  background: transparent; color: var(--r) !important;
  border: 1.5px solid var(--r);
  font-family: var(--fb); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  text-decoration: none; cursor: pointer;
  transition: background var(--tr-fast), color var(--tr-fast), transform var(--tr-fast);
}
.cbtn-o:hover { background: var(--rl); transform: translateY(-2px); }

/* ─────────────────────────────────────────────────────────────────────
   10. HERO
   ───────────────────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 0;
  background: linear-gradient(160deg, var(--bg) 60%, var(--bg3) 100%);
  overflow: hidden; position: relative;
  padding: 0;
}

.hero-left {
  padding: 80px 60px 80px 80px;
  display: flex; flex-direction: column; gap: 0;
  position: relative; z-index: 2;
}

.hero-title-block { margin-bottom: 40px; }

.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.eline {
  width: 36px; height: 1.5px;
  background: linear-gradient(90deg, var(--r), var(--gold));
}
.hero-eyebrow span {
  font-family: var(--fb); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em; color: var(--gold);
}

.hero-h1 {
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 600; line-height: 1.12; color: var(--ink);
  margin: 0 0 16px;
}
.hero-h1 em.surname { display: block; color: var(--r); font-style: normal; }

.hero-rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--r), var(--gold)); margin: 20px 0;
}

.hero-quote {
  font-family: var(--fd); font-size: 15px; font-style: italic;
  color: var(--ink3); line-height: 1.7;
  border-left: 2px solid var(--gold-b); padding-left: 16px;
  max-width: 480px;
}

.hero-stats {
  display: flex; gap: 40px; margin-bottom: 36px;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.snum {
  font-family: var(--fd); font-size: 32px; font-weight: 600; color: var(--r);
  line-height: 1;
}
.slbl { font-size: 12px; color: var(--ink3); text-transform: uppercase; letter-spacing: .08em; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; }

/* Hero right / photo */
.hero-right {
  position: relative; height: 100%;
  min-height: calc(100vh - var(--nav-h));
  overflow: hidden;
}
.hero-photo-wrap {
  position: absolute; inset: 0;
}
.hero-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: top center; border-radius: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 30%),
              linear-gradient(0deg, rgba(22,16,15,.35) 0%, transparent 60%);
}
.photo-badge {
  position: absolute; bottom: 32px; left: 24px; right: 24px;
  background: rgba(22,16,15,.82);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(201,150,46,.3); border-radius: 10px;
  padding: 16px 20px; color: #fff;
}
.photo-badge strong {
  display: block; font-family: var(--fd); font-size: 16px; font-weight: 600;
}
.gbar {
  width: 28px; height: 1.5px;
  background: var(--gold); margin: 6px 0;
}
.photo-badge span { font-size: 12px; color: rgba(245,240,232,.65); }

.corner-tr, .corner-bl {
  position: absolute; width: 60px; height: 60px;
  border-color: rgba(201,150,46,.45); border-style: solid;
  pointer-events: none;
}
.corner-tr { top: 24px; right: 24px; border-width: 2px 2px 0 0; border-radius: 0 8px 0 0; }
.corner-bl { bottom: 24px; left: 24px; border-width: 0 0 2px 2px; border-radius: 0 0 0 8px; }

/* ─────────────────────────────────────────────────────────────────────
   11. QUICK CTA STRIP
   ───────────────────────────────────────────────────────────────────── */
.qcta {
  background: var(--ink); padding: 18px 40px;
  border-bottom: 2px solid var(--r);
}
.qcta-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.qcta-text { color: rgba(245,240,232,.85); font-size: 14px; margin: 0; }
.qcta-text strong { color: var(--g-cream); }
.qcta-btns { display: flex; align-items: center; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.qbtn-wa {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: var(--rad);
  background: #25d366; color: #fff !important;
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: background var(--tr-fast);
}
.qbtn-wa:hover { background: #1ebe5c; color: #fff !important; }
.qbtn-link {
  color: rgba(245,240,232,.7) !important; font-size: 13px;
  text-decoration: none; transition: color var(--tr-fast);
}
.qbtn-link:hover { color: var(--g-cream) !important; }

/* ─────────────────────────────────────────────────────────────────────
   12. ABOUT SECTION
   ───────────────────────────────────────────────────────────────────── */
.about-sec { padding: 100px 0; background: var(--bg); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}

.about-photo-col { position: relative; }
.about-img-wrap { position: relative; border-radius: var(--g-radius); overflow: hidden; }
.about-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--g-radius); }
.about-img-overlay {
  position: absolute; inset: 0; border-radius: var(--g-radius);
  background: linear-gradient(0deg, rgba(22,16,15,.35) 0%, transparent 60%);
}

.about-float-card {
  position: absolute; background: rgba(255,253,249,.96);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(201,150,46,.3); border-radius: 10px;
  padding: 14px 20px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 2px; min-width: 130px;
}
.about-float-tl { top: 24px; left: -20px; }
.about-float-br { bottom: 40px; right: -20px; }
.afc-num {
  font-family: var(--fd); font-size: 26px; font-weight: 600; color: var(--r); line-height: 1;
}
.afc-lbl { font-size: 11px; color: var(--ink3); text-transform: uppercase; letter-spacing: .08em; }

.about-text-col { padding-top: 8px; }
.about-lead {
  font-family: var(--fd); font-size: 18px; font-weight: 300;
  color: var(--ink2); line-height: 1.75; margin-bottom: 20px;
}
.about-body { font-size: 15px; color: var(--ink3); line-height: 1.7; margin-bottom: 16px; }

.about-expertise { margin-top: 28px; }
.ae-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); display: block; margin-bottom: 10px; }
.ae-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.ae-pill {
  padding: 5px 14px; border-radius: 30px;
  border: 1px solid rgba(181,37,43,.22); background: var(--rl);
  font-size: 13px; color: var(--ink2); transition: all var(--tr-fast);
}
.ae-pill:hover { background: var(--rb); color: var(--r); }

.about-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* ─────────────────────────────────────────────────────────────────────
   13. CREDENTIALS
   ───────────────────────────────────────────────────────────────────── */
.creds {
  padding: 100px 0; background: var(--bg2);
  position: relative; overflow: hidden;
}
.creds-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 16px;
}
.ccard {
  background: var(--bg); border: 1px solid rgba(181,37,43,.13);
  border-radius: var(--g-radius); padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: box-shadow var(--tr-fast), transform var(--tr-fast);
}
.ccard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--r), var(--gold));
}
.ccard:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.ccard-n {
  display: block; font-family: var(--fd); font-size: 52px; font-weight: 600;
  color: var(--rl); line-height: 1; margin-bottom: 12px;
  position: absolute; top: 24px; right: 24px;
}
.ccard-tag {
  display: inline-block; font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--gold); margin-bottom: 10px;
}
.ccard-title {
  font-size: 18px; font-weight: 600; color: var(--ink); margin: 0 0 12px; font-family: var(--fd);
}
.ccard-body { font-size: 14px; color: var(--ink3); line-height: 1.65; }

/* ─────────────────────────────────────────────────────────────────────
   14. PROGRAMS
   ───────────────────────────────────────────────────────────────────── */
#programs { padding: 100px 0; background: var(--bg); }
.prog-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 16px;
}
.ppill {
  background: var(--bg2); border: 1px solid rgba(181,37,43,.13);
  border-radius: 10px; padding: 22px 20px;
  display: flex; flex-direction: column; gap: 4px;
  transition: all var(--tr-fast); cursor: default;
}
.ppill:hover {
  background: var(--r); border-color: var(--r);
  transform: translateY(-3px); box-shadow: var(--shadow-md);
}
.ppill:hover .pname, .ppill:hover .psub { color: #fff; }
.pname { font-family: var(--fd); font-size: 15px; font-weight: 600; color: var(--ink); }
.psub { font-size: 11px; color: var(--ink4); text-transform: uppercase; letter-spacing: .08em; }

.prog-cta { text-align: center; margin-top: 40px; }

/* ─────────────────────────────────────────────────────────────────────
   15. TESTIMONIALS
   ───────────────────────────────────────────────────────────────────── */
.trev { padding: 100px 0; background: var(--bg3); }
.trev-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 16px;
}
.tcard {
  background: var(--bg); border: 1px solid rgba(181,37,43,.13);
  border-radius: var(--g-radius); padding: 36px 28px;
  position: relative; display: flex; flex-direction: column;
  transition: box-shadow var(--tr-fast), transform var(--tr-fast);
}
.tcard:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.tqm {
  position: absolute; top: 20px; right: 28px;
  font-family: var(--fd); font-size: 72px; color: var(--rl);
  line-height: 1; pointer-events: none;
}
.tstars { font-size: 16px; color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; }
.tcard blockquote {
  font-family: var(--fd); font-size: 15px; font-style: italic;
  color: var(--ink2); line-height: 1.7;
  border: none; background: none; padding: 0; margin: 0; flex: 1;
}
.tsep { width: 36px; height: 1.5px; background: rgba(181,37,43,.22); margin: 20px 0; }
.tfoot { display: flex; align-items: center; gap: 12px; }
.tav {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--r), var(--r2));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; font-weight: 700; font-family: var(--fb);
}
.tname { font-weight: 600; font-size: 14px; color: var(--ink); margin: 0; line-height: 1.3; }
.trole { font-size: 12px; color: var(--ink4); margin: 0; }
.trev-cta { text-align: center; margin-top: 40px; }

/* ─────────────────────────────────────────────────────────────────────
   16. LOGOS / CLIENTS
   ───────────────────────────────────────────────────────────────────── */
.logos { padding: 100px 0; background: var(--bg2); }
.logos-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 16px;
}
.lbox {
  background: var(--bg); border: 1px solid rgba(181,37,43,.10);
  border-radius: 10px; padding: 20px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: all var(--tr-fast);
}
.lbox:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(181,37,43,.25); }
.lbox img { width: 56px; height: 40px; object-fit: contain; border-radius: 0; }
.lbox span { font-size: 12px; color: var(--ink3); text-align: center; font-weight: 500; line-height: 1.3; }

/* ─────────────────────────────────────────────────────────────────────
   17. FAQ
   ───────────────────────────────────────────────────────────────────── */
.faq-sec { padding: 100px 0; background: var(--bg); }
.faq-grid { max-width: 800px; margin: 16px auto 0; }
.faq-item {
  border: 1px solid rgba(181,37,43,.13); border-radius: 10px;
  margin-bottom: 12px; overflow: hidden;
  transition: box-shadow var(--tr-fast);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px;
  background: none; border: none; cursor: pointer;
  font-family: var(--fb); font-size: 15px; font-weight: 600;
  color: var(--ink); text-align: left;
  transition: background var(--tr-fast), color var(--tr-fast);
}
.faq-q:hover { background: var(--rl); color: var(--r); }
.faq-q[aria-expanded="true"] { background: var(--rl); color: var(--r); }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--rl); color: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1; transition: transform var(--tr-fast), background var(--tr-fast);
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--rb); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height var(--tr-med), padding var(--tr-fast);
}
.faq-a.open {
  max-height: 400px;
}
.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 15px; color: var(--ink3); line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────
   18. CONTACT CTA SECTION
   ───────────────────────────────────────────────────────────────────── */
.ctasec {
  padding: 100px 40px;
  background: linear-gradient(135deg, var(--r2) 0%, var(--g-dark) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.ctasec::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.ctasec > * { position: relative; z-index: 1; }

.orn { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 28px; }
.orn-l { width: 48px; height: 1px; background: rgba(201,150,46,.5); }
.orn-d { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.ctasec h2 {
  font-size: clamp(28px,4vw,48px); color: #fff;
  margin: 0 0 16px; font-family: var(--fd);
}
.ctasec h2 em { color: var(--gold); font-style: normal; }
.ctasec > p {
  font-size: 16px; color: rgba(245,240,232,.75);
  max-width: 560px; margin: 0 auto 40px; line-height: 1.7;
}

.crow {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap; margin-bottom: 40px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(201,150,46,.2);
  border-radius: 10px; max-width: 700px; margin-left: auto; margin-right: auto; overflow: hidden;
}
.citem {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px 32px; flex: 1; min-width: 180px;
}
.csep { width: 1px; height: 52px; background: rgba(201,150,46,.2); flex-shrink: 0; }
.clabel { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: rgba(245,240,232,.45); }
.cval {
  font-size: 14px; color: var(--g-cream); font-weight: 500;
  text-decoration: none; transition: color var(--tr-fast);
}
a.cval:hover { color: var(--gold); }

.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ─────────────────────────────────────────────────────────────────────
   19. FOOTER
   ───────────────────────────────────────────────────────────────────── */
footer {
  background: var(--g-dark);
  border-top: 1px solid rgba(181,37,43,.5);
  padding: 60px 0 0;
  color: var(--g-cream);
}
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
}
/* Programs column uses the same look as Navigate */
.footer-programs-col .flinks { gap: 10px; }

.flogo {
  display: block; font-family: var(--fd); font-size: 20px; font-weight: 600;
  color: var(--g-cream); text-decoration: none; margin-bottom: 6px;
}
.flogo em { color: var(--g-maroon2); font-style: normal; }
.ftag { display: block; font-size: 12px; color: rgba(245,240,232,.5); margin-bottom: 14px; }
.fdesc { font-size: 14px; color: rgba(245,240,232,.55); line-height: 1.7; margin-bottom: 20px; }
.ftags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.ftag-pill {
  list-style: none;
  padding: 4px 12px; border-radius: 20px;
  border: 1px solid rgba(201,150,46,.25); background: rgba(201,150,46,.07);
  font-size: 12px; color: rgba(245,240,232,.6);
}

.fcol-title {
  display: block; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--gold); margin-bottom: 18px;
}
.flinks { display: flex; flex-direction: column; gap: 10px; }
.flinks a {
  font-size: 14px; color: rgba(245,240,232,.65); text-decoration: none;
  transition: color var(--tr-fast), padding-left var(--tr-fast);
}
.flinks a:hover { color: var(--gold); padding-left: 4px; }

.fcontact { display: flex; flex-direction: column; gap: 10px; }
.fcontact a, .fcontact span {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: rgba(245,240,232,.65); text-decoration: none;
  transition: color var(--tr-fast);
}
.fcontact a:hover { color: var(--gold); }
.fci { font-style: normal; width: 20px; text-align: center; }

.footer-bottom {
  border-top: 1px solid rgba(181,37,43,.25);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.fcopy { font-size: 13px; color: var(--g-muted); margin: 0; }
.fcopy a {
  color: rgba(245,237,216,.65);
  text-decoration: underline;
  text-decoration-color: rgba(245,237,216,.25);
  text-underline-offset: 2px;
  transition: color var(--tr-fast), text-decoration-color var(--tr-fast);
}
.fcopy a:hover { color: var(--gold); text-decoration-color: var(--gold); }
.fcert {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: rgba(245,240,232,.4);
}
.fcdot { width: 4px; height: 4px; border-radius: 50%; background: rgba(245,240,232,.25); flex-shrink: 0; }
.fdev { font-size: 12px; color: var(--g-muted); margin: 0; }
.fdev a { color: var(--gold); text-decoration: none; }
.fdev a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────────────────────────────────
   20. CARDS, GRID, FORMS, UTILITIES
   ───────────────────────────────────────────────────────────────────── */
.card {
  background: #fff; border: 1px solid rgba(181,37,43,.13);
  border-radius: var(--g-radius); padding: 32px;
  box-shadow: var(--shadow-sm); transition: all var(--tr-fast);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.grid { display: grid; gap: 32px; margin: 32px 0; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.form-group { margin-bottom: 24px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--ink2); }
input, textarea, select {
  width: 100%; padding: 12px 16px; font-family: var(--fb); font-size: 14px;
  border: 1px solid rgba(181,37,43,.20); border-radius: var(--rad);
  background: #fff; color: var(--ink); transition: all var(--tr-fast);
}
input::placeholder, textarea::placeholder { color: var(--ink3); }
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--r); box-shadow: 0 0 0 3px rgba(181,37,43,.10);
}
textarea { resize: vertical; min-height: 150px; }
input[type="checkbox"], input[type="radio"] { width: auto; margin-right: 8px; }

.form-error {
  background: rgba(155,34,38,.10); border-left: 4px solid #9b2226;
  color: #9b2226; padding: 12px 16px; margin-bottom: 24px; border-radius: 4px; font-size: 14px;
}
.form-success {
  background: rgba(46,125,50,.10); border-left: 4px solid #2d7d32;
  color: #2d7d32; padding: 12px 16px; margin-bottom: 24px; border-radius: 4px; font-size: 14px;
}

/* Utilities */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.text-red    { color: var(--r); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--ink3); }
.text-white  { color: #fff; }
.d-none  { display: none; }
.d-block { display: block; }
.d-flex  { display: flex; }

/* ─────────────────────────────────────────────────────────────────────
   21. GALLERY LIGHTBOX
   ───────────────────────────────────────────────────────────────────── */
.gallery-item { cursor: pointer; position: relative; overflow: hidden; border-radius: 8px; }
.gallery-item img { transition: transform .35s ease; display: block; width: 100%; }
.gallery-item:hover img { transform: scale(1.05); }

#g-lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.93); z-index: 99999;
  align-items: center; justify-content: center;
}
#g-lightbox.lb-open { display: flex !important; }
#g-lightbox-inner {
  position: relative; display: flex; flex-direction: column;
  align-items: center; max-width: 92vw; max-height: 92vh;
}
#g-lb-counter {
  color: rgba(255,255,255,.45); font-size: 12px; letter-spacing: .1em;
  margin-bottom: 10px; font-family: var(--fb);
}
#lbImg {
  max-width: 88vw; max-height: 78vh; object-fit: contain;
  border-radius: 6px; display: block; transition: opacity .2s ease;
}
#g-lightbox-caption { display: none; }
.lb-close {
  position: fixed; top: 18px; right: 22px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 20px; width: 42px; height: 42px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 100001; line-height: 1;
}
.lb-close:hover { background: rgba(200,169,110,.55); }
.lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.20);
  color: #fff; font-size: 34px; width: 52px; height: 52px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 100001; padding: 0; line-height: 1;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-nav:hover { background: rgba(200,169,110,.45); }

/* ─────────────────────────────────────────────────────────────────────
   22. SCROLL REVEAL & COUNTERS
   ───────────────────────────────────────────────────────────────────── */
.rv {
  opacity: 0; transform: translateY(24px);
  transition: opacity var(--tr-slow), transform var(--tr-slow);
  /* Fallback: if main.js fails to load/run, force-reveal after 1.2s
     so content is never permanently invisible (e.g. blank hero bug). */
  animation: rv-fallback 0.01s 1.2s forwards;
}
@keyframes rv-fallback {
  to { opacity: 1; transform: translateY(0); }
}
.rv.on {
  opacity: 1; transform: translateY(0);
  animation: none;
}

/* Stagger delays */
.d1 { transition-delay: .10s; }
.d2 { transition-delay: .20s; }
.d3 { transition-delay: .30s; }
.d4 { transition-delay: .40s; }
.d5 { transition-delay: .50s; }
.d6 { transition-delay: .60s; }
.d7 { transition-delay: .70s; }
.d8 { transition-delay: .80s; }
.d9 { transition-delay: .90s; }

/* Container alias (used by sitemap-pages.html) */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 1024px) { .container { padding: 0 32px; } }
@media (max-width: 768px)  { .container { padding: 0 20px; } }

/* ── Sitemap nav pill ── */
.nav-sitemap {
  font-size: 10px !important;
  color: var(--ink3) !important;
  opacity: .75;
}
.nav-sitemap:hover { opacity: 1; color: var(--r) !important; }

/* ── Floating WhatsApp Button ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9990;
  display: flex; align-items: center; gap: 10px;
  background: #25d366;
  color: #fff !important; text-decoration: none;
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(37,211,102,.40), 0 2px 8px rgba(0,0,0,.18);
  font-family: var(--fb); font-size: 13px; font-weight: 600;
  letter-spacing: .03em;
  transition: transform .22s ease, box-shadow .22s ease, background .15s;
  -webkit-tap-highlight-color: transparent;
}
.wa-float:hover {
  background: #1ebe5c;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 36px rgba(37,211,102,.50), 0 3px 10px rgba(0,0,0,.20);
}
.wa-float-label { white-space: nowrap; }

/* Hide label on very small screens */
@media (max-width: 400px) {
  .wa-float { padding: 14px; border-radius: 50%; }
  .wa-float-label { display: none; }
}

/* ── Sitemap page styles (sitemap-pages.html) ── */
.smap-hero {
  padding: calc(var(--nav-h) + 64px) 0 60px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 60%, var(--bg3) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.smap-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 80% -10%, rgba(181,37,43,.06) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 10% 110%, rgba(201,150,46,.05) 0%, transparent 70%);
  pointer-events: none;
}
.smap-hero .sec-eye { margin-bottom: 12px; }
.smap-hero h1 { margin: 0 0 16px; }
.smap-hero h1 em { color: var(--r); font-style: normal; }
.smap-hero p { color: var(--ink3); font-size: 17px; max-width: 580px; margin: 0 auto; }

.smap-section { padding: 80px 0 20px; }
.smap-section:last-of-type { padding-bottom: 80px; }

.smap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-top: 40px;
}
.smap-card {
  background: #fff; border: 1px solid rgba(181,37,43,.10);
  border-radius: var(--g-radius); padding: 28px 24px 24px;
  transition: box-shadow var(--tr-med), transform var(--tr-med), border-color var(--tr-med);
  position: relative; overflow: hidden; text-decoration: none;
  display: flex; flex-direction: column; gap: 10px; color: var(--ink);
}
.smap-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--r), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform var(--tr-med);
}
.smap-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-4px);
  border-color: rgba(181,37,43,.22); color: var(--ink);
}
.smap-card:hover::before { transform: scaleX(1); }
.smap-card-icon {
  width: 44px; height: 44px; background: var(--rl); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.smap-card-title {
  font-family: var(--fd); font-size: 18px; font-weight: 600;
  color: var(--ink); line-height: 1.25; margin: 0;
}
.smap-card:hover .smap-card-title { color: var(--r); }
.smap-card-desc { font-size: 14px; color: var(--ink3); line-height: 1.55; margin: 0; flex: 1; }
.smap-card-url { font-size: 11px; color: var(--ink4); font-family: "Courier New", monospace; letter-spacing: .02em; margin: 0; }
.smap-card-arrow {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--r); margin-top: 4px;
}
.smap-card-arrow svg { transition: transform var(--tr-fast); }
.smap-card:hover .smap-card-arrow svg { transform: translateX(4px); }

.smap-cat { display: flex; align-items: center; gap: 14px; margin-bottom: 0; }
.smap-cat-bar { flex: 1; height: 2px; background: linear-gradient(90deg, var(--rb), transparent); border-radius: 2px; }
.smap-cat-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .18em; color: var(--gold); white-space: nowrap;
}
.smap-cat-title {
  font-family: var(--fd); font-size: clamp(22px, 3vw, 30px);
  font-weight: 600; color: var(--ink); margin: 10px 0 0;
}
.smap-cat-title em { color: var(--r); font-style: normal; }

.smap-quick { background: var(--g-dark); padding: 56px 0; }
.smap-quick-inner { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.smap-quick a {
  padding: 10px 20px; border: 1px solid rgba(255,255,255,.12);
  border-radius: 40px; color: rgba(255,255,255,.80); font-size: 14px;
  transition: all var(--tr-fast); white-space: nowrap;
}
.smap-quick a:hover { background: var(--r); border-color: var(--r); color: #fff; }
.smap-quick-title { text-align: center; color: #fff; font-family: var(--fd); font-size: 22px; margin-bottom: 28px; }
.smap-quick-title em { color: var(--gold); font-style: normal; }

@media (max-width: 767px) {
  .smap-grid { grid-template-columns: 1fr; }
  .smap-hero { padding: calc(var(--nav-h) + 40px) 0 44px; }
  .wa-float { bottom: 18px; right: 18px; }
}

.sn {
  font-family: var(--fd); font-weight: 600; font-size: 32px;
  color: var(--r); user-select: none;
}

/* Secondary portrait below about photo */
.about-hero-img-wrap {
  position: relative;
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.about-hero-img-wrap img {
  width: 100%; height: auto; display: block;
  object-fit: cover; border-radius: 8px;
}
.about-hero-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.72) 0%, transparent 100%);
  padding: 18px 16px 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.about-hero-img-caption span {
  color: #fff; font-weight: 600; font-size: 15px; letter-spacing: .02em;
}
.about-hero-img-caption small {
  color: rgba(255,255,255,.75); font-size: 12px;
  font-weight: 400; letter-spacing: .04em; text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────────────
   23. RESPONSIVE OVERRIDES
   ───────────────────────────────────────────────────────────────────── */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  #nav { padding: 0 28px; }
  .wrap { padding: 0 32px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 32px; order: 2; }
  .hero-right { min-height: 420px; order: 1; }
  .hero-overlay { background: linear-gradient(0deg, rgba(22,16,15,.5) 0%, transparent 70%); }
  .photo-badge { left: 16px; right: 16px; bottom: 16px; }

  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-col { max-width: 440px; margin: 0 auto; }
  .about-float-tl { left: 0; }
  .about-float-br { right: 0; }

  .creds-grid { grid-template-columns: repeat(2,1fr); }
  .prog-grid  { grid-template-columns: repeat(3,1fr); }
  .trev-grid  { grid-template-columns: repeat(2,1fr); }
  .logos-grid { grid-template-columns: repeat(4,1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 40px; }
  .footer-brand { grid-column: 1 / -1; }

  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  #nav { padding: 0 16px; }
  .wrap { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-menu-btn { display: flex; }
  .ctasec { padding: 72px 20px; }

  .qcta { padding: 16px 20px; }
  .qcta-inner { flex-direction: column; align-items: flex-start; gap: 12px; }

  .about-sec { padding: 72px 0; }
  .creds { padding: 72px 0; }
  .creds-grid { grid-template-columns: 1fr; }
  #programs { padding: 72px 0; }
  .prog-grid { grid-template-columns: repeat(2,1fr); }
  .trev { padding: 72px 0; }
  .trev-grid { grid-template-columns: 1fr; }
  .logos { padding: 72px 0; }
  .logos-grid { grid-template-columns: repeat(3,1fr); }
  .faq-sec { padding: 72px 0; }

  .hero-left { padding: 48px 20px; }
  .hero-stats { gap: 24px; }

  .crow { flex-direction: column; }
  .csep { width: 80%; height: 1px; }
  .citem { width: 100%; padding: 16px 20px; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cbtn-r,.cbtn-g,.cbtn-o { text-align: center; justify-content: center; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-inner { padding: 0 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .fcert { flex-wrap: wrap; }

  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; gap: 20px; }

  #g-lightbox .lb-prev { left: 6px; }
  #g-lightbox .lb-next { right: 6px; }
  .lb-nav { width: 40px; height: 40px; font-size: 26px; }
  #lbImg { max-width: 96vw; max-height: 68vh; }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .nav-logo { font-size: 15px; }
  .logo-gem { width: 28px; height: 28px; font-size: 14px; }
  .prog-grid  { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: repeat(2,1fr); }
  .hero-ctas  { flex-direction: column; }
  .hero-ctas .btn-p,.hero-ctas .btn-wa { text-align: center; justify-content: center; }
}

/* ─────────────────────────────────────────────────────────────────────
   24. PRINT & REDUCED MOTION
   ───────────────────────────────────────────────────────────────────── */
@media print {
  nav, footer, .no-print { display: none; }
  body { background: #fff; }
  a { text-decoration: underline; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .rv { opacity: 1 !important; transform: none !important; }
}
/* ─────────────────────────────────────────────────────────────────────
   25. LEGAL PAGES — Cookie Policy (.cp-) & Privacy Policy (.lp-)
   ───────────────────────────────────────────────────────────────────── */

/* Shared hero block */
.cp-hero, .lp-hero {
  text-align: center;
  padding: 64px 24px 36px;
  background: linear-gradient(180deg, var(--bg3) 0%, var(--bg) 100%);
}
.cp-hero h1, .lp-hero h1 { margin: 4px 0 8px; }
.cp-hero h1 em, .lp-hero h1 em { color: var(--r); font-style: normal; }
.cp-date, .lp-date {
  font-family: var(--fb); font-size: 13px; color: var(--ink4);
  margin-top: 10px;
}

/* Content wrap */
.cp-wrap, .lp-wrap {
  max-width: 760px; margin: 0 auto; padding: 48px 24px 80px;
}
.cp-wrap h2, .lp-wrap h2 {
  font-size: clamp(20px, 2.6vw, 26px); margin-top: 40px;
  padding-bottom: 8px; border-bottom: 1px solid var(--bg4);
}
.cp-wrap h2:first-of-type, .lp-wrap h2:first-of-type { margin-top: 8px; }
.cp-wrap h3, .lp-wrap h3 { font-size: 17px; margin-top: 24px; }
.cp-wrap p, .lp-wrap p { color: var(--ink2); line-height: 1.75; font-size: 15px; }
.cp-wrap ul, .lp-wrap ul { margin: 12px 0 12px 22px; color: var(--ink2); line-height: 1.8; font-size: 15px; }
.cp-wrap li, .lp-wrap li { margin-bottom: 6px; }
.cp-wrap a, .lp-wrap a {
  color: var(--r); text-decoration: underline;
  text-decoration-color: rgba(181,37,43,.35); text-underline-offset: 2px;
}
.cp-wrap a:hover, .lp-wrap a:hover { text-decoration-color: var(--r); }
.cp-wrap code, .lp-wrap code {
  background: var(--bg3); padding: 2px 6px; border-radius: 4px;
  font-size: 13px; color: var(--g-maroon);
}

/* Back-to-home link */
.cp-back, .lp-back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 40px; padding: 10px 18px;
  border: 1px solid var(--bg4); border-radius: var(--rad);
  font-family: var(--fb); font-size: 14px; font-weight: 500;
  color: var(--ink2); text-decoration: none !important;
  transition: border-color var(--tr-fast), color var(--tr-fast);
}
.cp-back:hover, .lp-back:hover { border-color: var(--r); color: var(--r); }

/* Cookie table */
.cp-table-scroll { overflow-x: auto; margin: 16px 0; }
.cp-table {
  width: 100%; border-collapse: collapse; font-size: 13.5px;
  min-width: 560px;
}
.cp-table th {
  background: var(--g-maroon); color: #fff; text-align: left;
  padding: 10px 14px; font-weight: 500; font-size: 12px;
  letter-spacing: .3px; text-transform: uppercase;
}
.cp-table td {
  padding: 10px 14px; border-bottom: 1px solid var(--bg4);
  color: var(--ink2); vertical-align: top; line-height: 1.6;
}
.cp-table tr:nth-child(even) td { background: var(--bg2); }

/* Privacy Policy — table of contents */
.lp-toc {
  background: var(--bg2); border: 1px solid var(--bg4);
  border-radius: var(--rad); padding: 20px 24px; margin: 24px 0 32px;
}
.lp-toc p {
  font-family: var(--fb); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--gold); margin: 0 0 10px;
}
.lp-toc ol {
  columns: 2; column-gap: 28px; margin: 0; padding-left: 18px;
  font-size: 13.5px; line-height: 1.9;
}
.lp-toc li { margin-bottom: 2px; }
.lp-toc a { color: var(--ink2); text-decoration: none; }
.lp-toc a:hover { color: var(--r); text-decoration: underline; }

/* Plain-language summary highlight box */
.lp-highlight {
  background: var(--rl); border-left: 3px solid var(--r);
  border-radius: 0 var(--rad) var(--rad) 0;
  padding: 16px 20px; margin: 24px 0;
}
.lp-highlight p { margin: 0; font-size: 14.5px; color: var(--ink2); }

@media (max-width: 640px) {
  .cp-wrap, .lp-wrap { padding: 32px 18px 60px; }
  .lp-toc ol { columns: 1; }
}

/* ─────────────────────────────────────────────────────────────────────
   26. PAGE HERO (contact, expertise, programs pages)
   ───────────────────────────────────────────────────────────────────── */
.page-hero {
  padding: 72px 56px 60px; text-align: center;
  background: var(--bg2); border-bottom: 1px solid var(--rb);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 100%, rgba(155,34,38,.04), transparent);
  pointer-events: none;
}
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rl); border: 1px solid var(--rb);
  color: var(--r); font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 16px; border-radius: var(--rad); margin-bottom: 24px;
}
.tag .dot { width: 5px; height: 5px; background: var(--r); border-radius: 50%; flex-shrink: 0; }
.page-hero h1 {
  font-family: var(--fd); font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05; letter-spacing: -.5px; font-weight: 600; margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--r); font-weight: 400; }
.page-hero p {
  font-family: var(--fd); font-style: italic; font-size: 18px;
  color: var(--ink3); max-width: 540px; margin: 0 auto; line-height: 1.8;
}
.breadcrumb { font-size: 13px; color: var(--ink3); margin-bottom: 20px; font-weight: 300; }
.breadcrumb a { color: var(--r); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────────────────────────────────
   27. CONTACT PAGE
   ───────────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 60px; }
.ccontact {
  background: var(--bg2); border: 1px solid var(--rb);
  border-radius: var(--rad); padding: 36px 28px;
  text-align: center; transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.ccontact::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--r), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.ccontact:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ccontact:hover::before { transform: scaleX(1); }
.ccontact-icon { font-size: 36px; margin-bottom: 16px; }
.ccontact h3 { font-family: var(--fd); font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.ccontact p { font-size: 13px; color: var(--ink3); line-height: 1.7; font-weight: 300; margin-bottom: 18px; }
.ccontact a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--r); font-weight: 500;
  text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s;
}
.ccontact a:hover { border-bottom-color: var(--r); }

.big-cta {
  background: var(--bg3); border: 1px solid var(--rb);
  border-radius: var(--rad); padding: 56px 40px;
  text-align: center; margin-bottom: 48px;
}
.big-cta h2 { font-family: var(--fd); font-size: clamp(28px,3.5vw,44px); font-weight: 600; margin-bottom: 14px; }
.big-cta h2 em { font-style: italic; color: var(--r); font-weight: 400; }
.big-cta p { font-size: 15px; color: var(--ink3); font-weight: 300; max-width: 480px; margin: 0 auto 36px; line-height: 1.9; }

.fcta-ornament { display: flex; align-items: center; gap: 20px; max-width: 200px; margin: 0 auto 32px; }
.fcta-ornament-line { flex: 1; height: 1px; background: var(--gold); opacity: .4; }
.fcta-ornament-icon { font-family: var(--fd); font-size: 22px; color: var(--gold); font-style: italic; opacity: .8; }

.contact-row { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.contact-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.contact-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.contact-val {
  font-family: var(--fd); font-size: 17px; color: var(--ink2);
  text-decoration: none; transition: color .2s; font-weight: 400;
}
.contact-val:hover { color: var(--r); }
.contact-sep { width: 1px; height: 44px; background: var(--rb); }

/* Floating WhatsApp button */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; padding: 13px 20px 13px 16px;
  border-radius: 50px; text-decoration: none; font-size: 13.5px; font-weight: 500;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,.45); color: #fff; }
.wa-float svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }
.wa-float span { white-space: nowrap; }

/* ─────────────────────────────────────────────────────────────────────
   28. EXPERTISE PAGE
   ───────────────────────────────────────────────────────────────────── */
.creds-sec { background: var(--bg2); }

/* Expertise ccard overrides (slightly different from home creds) */
.ccard-num {
  font-family: var(--fd); font-size: 60px; font-weight: 400;
  color: rgba(155,34,38,.06); line-height: 1; margin-bottom: 14px;
  position: absolute; top: 12px; right: 18px; font-style: italic; user-select: none;
}
.ccard-tag { font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 10px; }
.ccard-title { font-family: var(--fd); font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
.ccard-body { font-size: 14px; color: var(--ink3); line-height: 1.85; font-weight: 300; }
.ccard-body strong { font-weight: 500; color: var(--ink2); }

.skills-sec { background: var(--bg); }
.skills-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.skill-item {
  display: flex; align-items: flex-start; gap: 16px; padding: 24px;
  background: var(--bg2); border: 1px solid var(--rb);
  border-radius: var(--rad); transition: transform .25s, box-shadow .25s;
}
.skill-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.skill-icon {
  width: 44px; height: 44px; background: var(--rl); border: 1px solid var(--rb);
  border-radius: var(--rad); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 20px;
}
.skill-text h3 { font-family: var(--fd); font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.skill-text p { font-size: 13.5px; color: var(--ink3); line-height: 1.75; font-weight: 300; }

.stats-banner { background: var(--bg3); border-top: 1px solid var(--rb); border-bottom: 1px solid var(--rb); padding: 52px 56px; }
.stats-row {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--rb); border-radius: var(--rad);
  overflow: hidden; background: var(--bg);
}
.stat-b { flex: 1; padding: 28px 16px; text-align: center; border-right: 1px solid var(--rb); }
.stat-b:last-child { border-right: none; }
.sn { font-family: var(--fd); font-size: 42px; font-weight: 600; color: var(--r); display: block; line-height: 1; margin-bottom: 6px; }
.sl { font-size: 11px; color: var(--ink3); display: block; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 400; }

.mem-sec { padding: 64px 56px; background: var(--bg2); border-top: 1px solid var(--rb); }
.mem-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 36px; }
.mbadge2 {
  display: flex; align-items: center; gap: 9px;
  padding: 13px 24px; border: 1px solid var(--rb);
  border-radius: var(--rad); background: var(--bg);
  font-size: 14px; color: var(--ink2); font-weight: 400; transition: all .2s;
}
.mbadge2:hover { background: var(--rl); border-color: var(--r); color: var(--r); }

/* ─────────────────────────────────────────────────────────────────────
   29. PROGRAMS PAGE
   ───────────────────────────────────────────────────────────────────── */
.courses-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.cpill {
  border: 1px solid var(--rb); border-radius: var(--rad);
  padding: 24px 18px; text-align: center; background: var(--bg);
  transition: transform .25s, background .25s, border-color .25s, box-shadow .25s;
  cursor: default; position: relative; overflow: hidden;
}
.cpill::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--r), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.cpill:hover { transform: translateY(-5px); background: var(--rl); border-color: var(--r); box-shadow: var(--shadow-sm); }
.cpill:hover::before { transform: scaleX(1); }
.cpill span { font-family: var(--fd); font-size: 16px; font-weight: 600; color: var(--ink); display: block; line-height: 1.3; }
.cpill small { font-size: 11px; color: var(--ink3); display: block; margin-top: 8px; font-weight: 300; letter-spacing: .5px; }

.formats-sec { background: var(--bg2); }
.formats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.fcard {
  background: var(--bg); border: 1px solid var(--rb);
  border-radius: var(--rad); padding: 36px 28px;
  text-align: center; transition: transform .3s, box-shadow .3s;
}
.fcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.fcard-icon { font-size: 36px; margin-bottom: 16px; }
.fcard h3 { font-family: var(--fd); font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.fcard p { font-size: 14px; color: var(--ink3); line-height: 1.85; font-weight: 300; }

.cta-sec {
  background: var(--bg3); border-top: 1px solid var(--rb); border-bottom: 1px solid var(--rb);
  padding: 72px 56px; text-align: center;
}
.cta-sec h2 { font-family: var(--fd); font-size: clamp(28px,3.5vw,46px); font-weight: 600; margin-bottom: 14px; }
.cta-sec h2 em { font-style: italic; color: var(--r); font-weight: 400; }
.cta-sec p { font-size: 15px; color: var(--ink3); font-weight: 300; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cbtn {
  padding: 15px 38px; border-radius: var(--rad); font-size: 13px; font-weight: 500;
  text-decoration: none; transition: all .25s;
  display: inline-flex; align-items: center; gap: 9px;
  letter-spacing: .6px; text-transform: uppercase;
}
.cbtn.cbtn-r { background: var(--r); color: #fff !important; border: 1px solid var(--r); }
.cbtn.cbtn-r:hover { background: var(--r2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(155,34,38,.28); }
.cbtn.cbtn-g { background: #25D366; color: #fff !important; border: 1px solid #25D366; }
.cbtn.cbtn-g:hover { background: #1eb358; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.3); }
.cbtn.cbtn-o { background: transparent; border: 1px solid var(--gold); color: var(--gold) !important; }
.cbtn.cbtn-o:hover { background: rgba(181,134,42,.08); transform: translateY(-2px); }

/* ─────────────────────────────────────────────────────────────────────
   30. GALLERY PAGE
   ───────────────────────────────────────────────────────────────────── */
.gallery-sec {
  background: var(--bg3);
  padding: 100px 0 120px;
  position: relative; overflow: hidden;
}
.gallery-sec::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 8% 15%, rgba(139,38,53,.06) 0%, transparent 45%),
    radial-gradient(circle at 92% 80%, rgba(184,131,42,.07) 0%, transparent 45%);
  pointer-events: none;
}
.gallery-sec::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--r2), var(--gold), var(--r3), var(--g-gold-lt));
}
.gallery-sec .wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; }
.gallery-sec .sec-eye {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 500; letter-spacing: .3em;
  text-transform: uppercase; color: var(--r2); margin-bottom: 16px;
}
.gallery-sec .sec-eye::before, .gallery-sec .sec-eye::after {
  content: ''; display: inline-block; width: 28px; height: 1px; background: var(--r2); opacity: .5;
}
.gallery-sec .sec-h { font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 600; color: var(--g-dark); line-height: 1.08; margin: 0 0 18px; }
.gallery-sec .sec-h em { font-style: italic; color: var(--r2); }
.gallery-sec .sec-sub { font-size: 1rem; font-weight: 300; color: var(--ink3); max-width: 540px; line-height: 1.75; margin: 0 0 40px; }
.gallery-sec .divider { display: flex; align-items: center; gap: 14px; margin-bottom: 48px; max-width: 240px; }
.gallery-sec .divider .dline { flex: 1; height: 1px; background: linear-gradient(90deg, var(--r2), rgba(139,38,53,.1)); }
.gallery-sec .divider .dline:last-child { background: linear-gradient(90deg, rgba(139,38,53,.1), var(--r2)); }
.gallery-sec .divider .ddot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(184,131,42,.2); }

.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px;
  padding: 18px 22px; background: #fff; border-radius: 50px;
  box-shadow: 0 2px 20px rgba(139,38,53,.08), 0 1px 4px rgba(0,0,0,.05);
  width: fit-content;
}
.g-filter-btn {
  font-size: .76rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; padding: 9px 22px;
  border: 1.5px solid transparent; border-radius: 40px;
  background: transparent; color: var(--ink3); cursor: pointer;
  transition: var(--g-trans); white-space: nowrap;
}
.g-filter-btn:hover { color: var(--r2); border-color: rgba(139,38,53,.2); background: rgba(139,38,53,.04); }
.g-filter-btn.active { background: var(--r2); border-color: var(--r2); color: #fff; box-shadow: 0 4px 14px rgba(139,38,53,.3); }

.gallery-grid { columns: 4 240px; column-gap: 18px; }
.gallery-item {
  break-inside: avoid; position: relative;
  border-radius: var(--g-radius); overflow: hidden;
  margin-bottom: 18px; cursor: pointer;
  box-shadow: var(--g-shadow); min-height: 180px; background: var(--bg3);
  transition: opacity .4s ease, transform var(--g-trans), box-shadow var(--g-trans);
}
.gallery-item.hide { opacity: 0; pointer-events: none; transform: translateY(14px); }
.gallery-item:hover { box-shadow: var(--g-shadow2); transform: translateY(-4px); }
.gallery-item img {
  display: block; width: 100%; height: auto;
  min-height: 180px; max-height: 320px; object-fit: cover;
  transition: transform var(--g-trans); background: var(--bg3);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::before {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--g-radius); border: 1px solid rgba(139,38,53,.1);
  z-index: 2; pointer-events: none; transition: border-color var(--g-trans);
}
.gallery-item:hover::before { border-color: rgba(139,38,53,.35); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,20,16,.94) 0%, rgba(139,38,53,.4) 45%, transparent 75%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px 18px; opacity: 0; transition: opacity var(--g-trans); z-index: 1;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .g-tag {
  font-size: .64rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--g-gold-lt); margin-bottom: 6px;
  display: flex; align-items: center; gap: 6px;
}
.gallery-overlay .g-tag::before { content: ''; display: inline-block; width: 16px; height: 1px; background: var(--g-gold-lt); }
.gallery-overlay > span:not(.g-tag) { font-size: 1.05rem; font-weight: 600; color: #fff; line-height: 1.3; }

/* Gallery lightbox (namespaced gp-) */
#gp-lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(28,20,16,.97);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 24px;
}
#gp-lightbox.open { display: flex; }
#gp-lightbox-inner {
  position: relative; max-width: 920px; width: 100%;
  animation: gpLbIn .38s cubic-bezier(.34,1.56,.64,1);
}
@keyframes gpLbIn { from { opacity: 0; transform: scale(.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
#gp-lightbox img {
  width: 100%; height: auto; max-height: 80vh; object-fit: contain;
  border-radius: var(--g-radius); display: block;
  box-shadow: 0 24px 80px rgba(0,0,0,.6); border: 2px solid rgba(139,38,53,.3);
}
#gp-lb-counter { position: absolute; top: -40px; left: 0; font-size: .75rem; color: var(--ink4); letter-spacing: .1em; }
.gp-lb-close {
  position: absolute; top: -46px; right: 0;
  background: rgba(139,38,53,.15); border: 1px solid rgba(139,38,53,.4);
  border-radius: 50%; width: 38px; height: 38px; color: #fff; font-size: 1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--g-trans);
}
.gp-lb-close:hover { background: var(--r2); border-color: var(--r2); transform: rotate(90deg); }
.gp-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(139,38,53,.15); border: 1px solid rgba(139,38,53,.35);
  border-radius: 50%; width: 48px; height: 48px; color: #fff; font-size: 1.4rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--g-trans); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.gp-lb-nav:hover { background: var(--r2); border-color: var(--r2); box-shadow: 0 4px 20px rgba(139,38,53,.4); }
.gp-lb-prev { left: -68px; }
.gp-lb-next { right: -68px; }

.gallery-stats {
  display: flex; flex-wrap: wrap; margin-top: 72px;
  background: #fff; border-radius: var(--g-radius);
  box-shadow: var(--g-shadow); overflow: hidden; border: 1px solid rgba(139,38,53,.08);
}
.g-stat {
  flex: 1; min-width: 160px; text-align: center; padding: 36px 24px;
  border-right: 1px solid rgba(139,38,53,.08); position: relative; transition: background var(--g-trans);
}
.g-stat:hover { background: rgba(139,38,53,.02); }
.g-stat:last-child { border-right: none; }
.g-stat::before {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
  background: linear-gradient(90deg, var(--r2), var(--gold));
  border-radius: 0 0 4px 4px; opacity: 0; transition: opacity var(--g-trans);
}
.g-stat:hover::before { opacity: 1; }
.g-stat-num { font-family: var(--fd); font-size: 3rem; font-weight: 600; color: var(--r2); line-height: 1; display: block; }
.g-stat-label { font-size: .7rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--ink3); display: block; margin-top: 10px; }

/* ─────────────────────────────────────────────────────────────────────
   31. RESPONSIVE — INNER PAGES
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .page-hero { padding: 56px 32px 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stats-banner { padding: 40px 32px; }
  .mem-sec { padding: 52px 32px; }
  .courses-grid { grid-template-columns: repeat(3,1fr); }
  .cta-sec { padding: 56px 32px; }
  .gallery-grid { columns: 3 200px; }
  .gallery-filters { border-radius: 16px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 48px 20px 40px; }
  .big-cta { padding: 40px 24px; }
  .contact-row { gap: 24px; }
  .contact-sep { display: none; }
  .creds-grid { grid-template-columns: 1fr; }
  .skills-list { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: repeat(2,1fr); }
  .formats-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2 160px; }
  .gp-lb-prev { left: -12px; }
  .gp-lb-next { right: -12px; }
  .gp-lb-nav { width: 38px; height: 38px; font-size: 1.1rem; }
  .gallery-stats { flex-direction: column; }
  .g-stat { border-right: none; border-bottom: 1px solid rgba(139,38,53,.08); }
  .g-stat:last-child { border-bottom: none; }
  .gallery-sec .wrap { padding: 0 16px; }
  .gallery-filters { padding: 14px 16px; }
}
@media (max-width: 480px) {
  .courses-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2 140px; column-gap: 10px; }
  .gallery-item { margin-bottom: 10px; }
  .gallery-sec { padding: 60px 0 80px; }
}

/* Small utility helpers (from inline style replacements) */
.sec-eye--spaced { margin-bottom: 20px; }
.sec-sub--flush  { margin-bottom: 0; }
.contact-row--spaced { margin-bottom: 36px; }
.contact-val--static { cursor: default; }
.faddress { display: flex; align-items: center; gap: 9px; font-size: 14px; color: rgba(245,237,216,.5); font-weight: 300; }


/* ─────────────────────────────────────────────────────────────────────
   32. INNER PAGE SECTION PADDING
       Inner pages use bare <section> tags — give them padding via
       .inner-page-section or directly target the known sections.
   ───────────────────────────────────────────────────────────────────── */
.inner-sec {
  padding: 80px 56px;
}
@media (max-width: 1024px) { .inner-sec { padding: 64px 32px; } }
@media (max-width: 768px)  { .inner-sec { padding: 48px 20px; } }