/* ═══════════════════════════════════════════════════════
   JANA HADA FOUNDATION — janahanda.css v2.0
   UK Flag Colours: Navy #012169 · Red #C8102E · White #FFFFFF
   All colours controlled via Customizer → Theme Colours
   ═══════════════════════════════════════════════════════ */

/* ── CSS CUSTOM PROPERTIES (Customizer overrides these) ── */
:root {
  --jh-primary:    #012169;  /* UK Navy  */
  --jh-secondary:  #C8102E;  /* UK Red   */
  --jh-accent:     #1A3A8F;  /* Mid Navy */
  --jh-highlight:  #E8EDF7;  /* Light Blue tint */
  --jh-text:       #0D1B3E;  /* Deep Navy text */
  --jh-bg:         #FFFFFF;

  /* Derived / static tokens */
  --jh-navy-dark:  #001040;
  --jh-red-dark:   #A00D24;
  --jh-surface:    #F5F7FC;
  --jh-surface-2:  #EBF0FA;
  --jh-border:     #D6DCF0;
  --jh-text-med:   #3A4A6B;
  --jh-text-light: #6B7A9B;
  --jh-white:      #FFFFFF;

  --shadow-sm:  0 1px 8px rgba(1,33,105,.06);
  --shadow-md:  0 4px 24px rgba(1,33,105,.10);
  --shadow-lg:  0 12px 48px rgba(1,33,105,.14);
  --shadow-xl:  0 24px 80px rgba(1,33,105,.18);

  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;

  --nav-h: 72px;
  --stripe-h: 5px;
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family:'DM Sans',system-ui,sans-serif;
  background:var(--jh-bg);
  color:var(--jh-text);
  overflow-x:hidden;
  line-height:1.6;
}
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
ul, ol { list-style:none; }
button { font-family:inherit; cursor:pointer; }

/* ── LAYOUT WRAPPER ── */
.jh-wrap { max-width:1280px; margin:0 auto; padding:0 64px; }

/* ── SECTION BASE ── */
.jh-section-inner { max-width:1280px; margin:0 auto; }
.jh-hero,.jh-about,.jh-gallery,.jh-contact { padding:100px 64px; }
.jh-events  { padding:100px 64px; background:var(--jh-surface); }
.jh-team    { padding:100px 64px; background:var(--jh-highlight); }

.jh-section-header {
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom:52px; gap:24px; flex-wrap:wrap;
}

/* ── EYEBROW / TITLE / BODY ── */
.jh-sec-eyebrow {
  display:inline-flex; align-items:center; gap:12px;
  font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase;
  color:var(--jh-secondary); margin-bottom:12px;
}
.jh-sec-eyebrow::before {
  content:''; display:block; width:24px; height:2px;
  background:var(--jh-secondary); border-radius:1px; flex-shrink:0;
}
.jh-sec-title {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(30px,3.2vw,50px); font-weight:700; line-height:1.15;
  color:var(--jh-primary); margin-bottom:18px;
}
.jh-sec-title em { font-style:italic; color:var(--jh-secondary); }
.jh-sec-body { font-size:15px; line-height:1.85; color:var(--jh-text-med); max-width:560px; }


/* ════════════════════════════════════════
   UK FLAG TOP STRIPE
════════════════════════════════════════ */
.jh-uk-stripe {
  position:fixed; top:0; left:0; right:0; z-index:1100;
  height:var(--stripe-h); display:flex;
}
.jh-stripe-navy  { flex:2; background:var(--jh-primary); }
.jh-stripe-red   { flex:1; background:var(--jh-secondary); }
.jh-stripe-white { flex:.4; background:#FFFFFF; }


/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.jh-nav {
  position:fixed; top:var(--stripe-h); left:0; right:0; z-index:1000;
  height:var(--nav-h);
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--jh-border);
  box-shadow:var(--shadow-sm);
  transition:height .3s ease, box-shadow .3s ease;
}
.jh-nav.scrolled { height:60px; box-shadow:var(--shadow-md); }

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

/* ── Logo area: image + text independently controlled ── */
.jh-logo-wrap {
  display:flex; align-items:center; gap:12px;
  text-decoration:none; flex-shrink:0;
}

/* Logo image container */
.jh-logo-img-wrap {
  flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}

/* Uploaded logo image */
.jh-logo-img {
  width:48px; height:48px;
  object-fit:contain; object-position:center;
  display:block; border-radius:4px;
}

/* Default SVG fallback mark */
.jh-logo-mark-default {
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}

/* Text block — always rendered as text, never replaced by image */
.jh-logo-text {
  display:flex; flex-direction:column; gap:1px;
}
.jh-logo-name {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:20px; font-weight:700;
  color:var(--jh-primary); line-height:1.1;
  white-space:nowrap;
}
.jh-logo-tag {
  font-size:9px; letter-spacing:1.8px; text-transform:uppercase;
  color:var(--jh-text-light); white-space:nowrap;
  margin-top:2px;
}

/* Divider between logo image and text */
.jh-logo-divider {
  width:1px; height:32px;
  background:var(--jh-border);
  flex-shrink:0;
  margin:0 2px;
}

/* Desktop nav wrapper — hidden on mobile */
.jh-nav-desktop { display:flex; align-items:center; }
/* WP adds a container div inside — make it transparent to layout */
.jh-nav-menu-wrap { display:flex; align-items:center; }

/* WordPress generates ul.jh-nav-links */
.jh-nav-links {
  list-style:none; display:flex; align-items:center; gap:4px; margin:0; padding:0;
}
.jh-nav-links li { margin:0; padding:0; }
.jh-nav-links a {
  display:block; padding:8px 14px;
  font-size:13px; font-weight:600; letter-spacing:.5px; text-transform:uppercase;
  color:var(--jh-text-med);
  border-radius:var(--radius-sm);
  transition:color .2s, background .2s;
  white-space:nowrap;
}
.jh-nav-links a:hover { color:var(--jh-primary); background:var(--jh-highlight); }
.jh-nav-links a.active { color:var(--jh-primary); }

/* Contact CTA in desktop nav */
.jh-nav-links .jh-nav-cta,
.jh-nav-links li:last-child > a {
  background:var(--jh-secondary) !important;
  color:var(--jh-white) !important;
  padding:9px 20px !important;
  border-radius:var(--radius-sm) !important;
  font-weight:700 !important;
  box-shadow:0 3px 12px rgba(200,16,46,.25) !important;
}
.jh-nav-links .jh-nav-cta:hover,
.jh-nav-links li:last-child > a:hover {
  background:var(--jh-red-dark) !important;
  transform:translateY(-1px);
}

/* ── Hamburger button ── */
.jh-hamburger {
  display:none;           /* hidden on desktop */
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:40px; height:40px;
  padding:8px;
  background:transparent;
  border:1.5px solid var(--jh-border);
  border-radius:var(--radius-sm);
  cursor:pointer;
  flex-shrink:0;
  -webkit-tap-highlight-color:transparent;
  transition:border-color .2s;
}
.jh-hamburger:hover { border-color:var(--jh-primary); }
.jh-hamburger span {
  display:block; width:100%; height:2px;
  background:var(--jh-primary); border-radius:2px;
  transition:transform .3s ease, opacity .3s ease;
  transform-origin:center;
}
/* Animated X state */
.jh-hamburger.is-open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.jh-hamburger.is-open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.jh-hamburger.is-open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ── Mobile overlay menu ── */
.jh-mob-menu {
  position:fixed;
  top:0; right:0; bottom:0;
  width:min(320px, 85vw);
  z-index:1060;
  background:var(--jh-white);
  display:flex;
  flex-direction:column;
  box-shadow:-4px 0 40px rgba(1,33,105,.18);
  /* Hidden state */
  transform:translateX(100%);
  transition:transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
}
.jh-mob-menu.open {
  transform:translateX(0);
}

/* Mobile menu header */
.jh-mob-header {
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 24px;
  border-bottom:1px solid var(--jh-border);
  flex-shrink:0;
}
.jh-mob-header .jh-logo-name { font-size:17px; }
.jh-mob-header .jh-logo-tag  { display:none; }

.jh-mob-close {
  display:flex; align-items:center; justify-content:center;
  width:36px; height:36px;
  background:none;
  border:1.5px solid var(--jh-border);
  border-radius:var(--radius-sm);
  color:var(--jh-text-med);
  cursor:pointer;
  flex-shrink:0;
  transition:border-color .2s, color .2s;
  -webkit-tap-highlight-color:transparent;
}
.jh-mob-close:hover { border-color:var(--jh-secondary); color:var(--jh-secondary); }

/* Mobile nav links — WordPress outputs ul.jh-mob-links */
.jh-mob-links {
  list-style:none; margin:0; padding:16px 0; flex:1;
}
.jh-mob-links li { margin:0; padding:0; }
.jh-mob-links a {
  display:block;
  padding:14px 24px;
  font-size:16px; font-weight:600;
  color:var(--jh-text);
  border-bottom:1px solid var(--jh-border);
  transition:background .15s, color .15s, padding-left .15s;
  text-decoration:none;
}
.jh-mob-links li:first-child a { border-top:1px solid var(--jh-border); }
.jh-mob-links a:hover,
.jh-mob-links a:active {
  background:var(--jh-highlight);
  color:var(--jh-primary);
  padding-left:30px;
}

/* Mobile menu footer CTA */
.jh-mob-footer {
  padding:20px 24px;
  border-top:1px solid var(--jh-border);
  flex-shrink:0;
}

/* Backdrop */
.jh-mob-backdrop {
  position:fixed; inset:0; z-index:1055;
  background:rgba(1,33,105,.45);
  opacity:0; visibility:hidden;
  transition:opacity .3s ease, visibility .3s ease;
  -webkit-tap-highlight-color:transparent;
}
.jh-mob-backdrop.open { opacity:1; visibility:visible; }

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.jh-btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 28px;
  background:var(--jh-primary); color:var(--jh-white);
  font-size:13px; font-weight:700; letter-spacing:.8px; text-transform:uppercase;
  border-radius:var(--radius-sm);
  box-shadow:0 4px 18px rgba(1,33,105,.25);
  transition:background .25s, transform .2s, box-shadow .25s;
  border:none;
}
.jh-btn-primary:hover {
  background:var(--jh-accent); transform:translateY(-2px);
  box-shadow:0 8px 28px rgba(1,33,105,.32);
}
.jh-btn-ghost {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 28px;
  border:1.5px solid var(--jh-primary); color:var(--jh-primary);
  font-size:13px; font-weight:700; letter-spacing:.8px; text-transform:uppercase;
  border-radius:var(--radius-sm);
  transition:background .25s, color .25s, transform .2s;
  background:transparent;
}
.jh-btn-ghost:hover {
  background:var(--jh-primary); color:var(--jh-white); transform:translateY(-2px);
}
.jh-btn-outline {
  display:inline-flex; align-items:center; gap:8px;
  padding:11px 24px;
  border:1.5px solid var(--jh-primary); color:var(--jh-primary);
  font-size:12px; font-weight:700; letter-spacing:.8px; text-transform:uppercase;
  border-radius:var(--radius-sm);
  transition:background .2s, color .2s;
}
.jh-btn-outline:hover { background:var(--jh-primary); color:var(--jh-white); }
.jh-btn-secondary {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 28px;
  background:var(--jh-secondary); color:var(--jh-white);
  font-size:13px; font-weight:700; letter-spacing:.8px; text-transform:uppercase;
  border-radius:var(--radius-sm);
  box-shadow:0 4px 18px rgba(200,16,46,.25);
  transition:background .25s, transform .2s;
  border:none;
}
.jh-btn-secondary:hover { background:var(--jh-red-dark); transform:translateY(-2px); }


/* ════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════ */
.jh-hero {
  min-height:100vh;
  display:flex; align-items:center;
  position:relative; overflow:hidden;
  padding-top:calc(var(--nav-h) + var(--stripe-h));
  background:var(--jh-bg);
}

/* Background elements */
.jh-hero-bg { position:absolute; inset:0; z-index:0; }
.jh-hero-bg-img { position:absolute; inset:0; background-size:cover; background-position:center; }
.jh-hero-bg-overlay {
  position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.94) 50%, rgba(1,33,105,.92) 100%);
}
.jh-hero-flag-decor { position:absolute; inset:0; overflow:hidden; }
.jh-hfd-1 {
  position:absolute; right:0; top:0; width:52%; height:100%;
  background:linear-gradient(145deg, var(--jh-primary) 0%, var(--jh-accent) 100%);
  clip-path:polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}
.jh-hfd-2 {
  position:absolute; right:0; top:0; width:52%;
  height:6px;
  background:linear-gradient(90deg, var(--jh-secondary) 0%, #E8001A 50%, var(--jh-secondary) 100%);
  clip-path:polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}
.jh-hfd-3 {
  position:absolute; right:8%; top:50%; transform:translate(0,-50%);
  width:380px; height:380px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.08);
  animation:jh-spin 25s linear infinite;
}
.jh-hero-grid-lines {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(1,33,105,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1,33,105,.03) 1px, transparent 1px);
  background-size:60px 60px;
}
@keyframes jh-spin { from{transform:translate(0,-50%) rotate(0)}to{transform:translate(0,-50%) rotate(360deg)} }

/* Hero inner */
.jh-hero-inner {
  position:relative; z-index:2;
  display:grid; grid-template-columns:1fr 1fr;
  align-items:center; gap:0;
  width:100%; padding-top:40px; padding-bottom:60px;
}
.jh-hero-content { padding-right:60px; }

/* Badge */
.jh-hero-badge {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--jh-highlight); border:1px solid var(--jh-border);
  border-left:3px solid var(--jh-secondary);
  padding:7px 16px; border-radius:var(--radius-sm);
  font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  color:var(--jh-primary); margin-bottom:28px;
}
.jh-badge-flags { font-size:15px; letter-spacing:0; }

/* Headings */
.jh-hero-sub {
  font-size:12px; font-weight:700; letter-spacing:4px; text-transform:uppercase;
  color:var(--jh-secondary); margin-bottom:14px;
}
.jh-hero-h1 {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(40px,4.5vw,72px); font-weight:700; line-height:1.08;
  color:var(--jh-primary); margin-bottom:22px; letter-spacing:-.5px;
}
.jh-hero-h1 em { font-style:italic; color:var(--jh-secondary); }
.jh-hero-desc {
  font-size:16px; line-height:1.8; color:var(--jh-text-med);
  max-width:500px; margin-bottom:40px;
}

/* CTA buttons */
.jh-hero-btns { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:40px; }

/* Trust badges */
.jh-hero-trust {
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
}
.jh-trust-item {
  display:flex; align-items:center; gap:6px;
  font-size:12px; font-weight:600; color:var(--jh-text-light);
}
.jh-trust-item svg { color:var(--jh-secondary); flex-shrink:0; }
.jh-trust-sep { width:1px; height:14px; background:var(--jh-border); }

/* Right panel */
.jh-hero-panel {
  display:flex; align-items:center; justify-content:center;
  min-height:460px; padding:40px;
}
.jh-hero-panel-inner {
  display:flex; flex-direction:column; align-items:center;
  gap:28px; text-align:center;
}
.jh-hero-emblem {
  width:120px; height:120px; border-radius:50%;
  background:rgba(255,255,255,.08);
  border:1.5px solid rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:center;
  animation:jh-pulse 4s ease-in-out infinite;
}
@keyframes jh-pulse {
  0%,100% { box-shadow:0 0 40px rgba(255,255,255,.08) }
  50%      { box-shadow:0 0 80px rgba(255,255,255,.16) }
}
.jh-hero-quote {
  max-width:280px;
  font-family:'Cormorant Garamond',Georgia,serif;
}
.jh-hero-quote p {
  font-size:20px; font-style:italic; font-weight:600;
  color:rgba(255,255,255,.85); line-height:1.55; margin-bottom:10px;
}
.jh-hero-quote cite {
  font-style:normal; font-size:12px; font-weight:600; letter-spacing:1px;
  text-transform:uppercase; color:rgba(255,255,255,.45);
}
.jh-hero-panel-stats {
  display:flex; gap:18px; flex-wrap:wrap; justify-content:center;
}
.jh-hp-stat {
  display:flex; flex-direction:column; align-items:center; gap:4px;
  padding:10px 16px; background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12); border-radius:var(--radius-sm);
}
.jh-hp-stat strong { font-size:18px; }
.jh-hp-stat span { font-size:10px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color:rgba(255,255,255,.55); }

/* Scroll indicator */
.jh-hero-scroll {
  position:absolute; bottom:32px; left:50%; transform:translateX(-50%);
  width:36px; height:36px; border-radius:50%;
  border:1.5px solid var(--jh-border);
  display:flex; align-items:center; justify-content:center;
  color:var(--jh-text-light); z-index:2;
  animation:jh-bob 2.5s ease-in-out infinite;
  transition:border-color .2s, color .2s;
}
.jh-hero-scroll:hover { border-color:var(--jh-primary); color:var(--jh-primary); }
@keyframes jh-bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }


/* ════════════════════════════════════════
   STATS BAR
════════════════════════════════════════ */
.jh-stats-bar { background:var(--jh-primary); padding:0; }
.jh-stats-inner {
  display:grid; grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;
  align-items:center; padding-top:40px; padding-bottom:40px;
}
.jh-stat-cell { text-align:center; padding:10px 20px; }
.jh-stat-val {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(40px,4vw,58px); font-weight:700;
  color:var(--jh-white); line-height:1; margin-bottom:6px;
  letter-spacing:-1px;
}
.jh-stat-lbl {
  font-size:11px; font-weight:600; letter-spacing:2px; text-transform:uppercase;
  color:rgba(255,255,255,.45);
}
.jh-stat-divider {
  width:1px; height:52px; background:rgba(255,255,255,.1); flex-shrink:0;
}


/* ════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════ */
.jh-about { background:var(--jh-bg); }
.jh-about .jh-section-inner {
  display:grid; grid-template-columns:1fr 1.05fr;
  gap:80px; align-items:center;
}

/* Image */
.jh-about-img-col {}
.jh-img-frame {
  position:relative;
  border:3px solid var(--jh-primary);
  border-radius:var(--radius-sm);
  padding:10px;
}
.jh-img-frame::after {
  content:''; position:absolute;
  top:18px; left:18px; right:-18px; bottom:-18px;
  border:1px solid var(--jh-secondary);
  border-radius:var(--radius-sm); z-index:-1;
}
.jh-img-photo {
  width:100%; aspect-ratio:4/5; object-fit:cover;
  border-radius:2px; display:block;
}
.jh-img-placeholder {
  width:100%; aspect-ratio:4/5;
  background:var(--jh-highlight); border-radius:2px;
  display:flex; align-items:center; justify-content:center;
}
.jh-img-placeholder-inner { text-align:center; }
.jh-img-year-badge {
  position:absolute; bottom:-16px; right:20px;
  background:var(--jh-secondary); color:var(--jh-white);
  padding:10px 20px; border-radius:var(--radius-sm);
  box-shadow:var(--shadow-md); text-align:center;
}
.jh-iyb-year { display:block; font-family:'Cormorant Garamond',serif; font-size:30px; font-weight:700; line-height:1; }
.jh-iyb-lbl  { display:block; font-size:10px; letter-spacing:2px; text-transform:uppercase; opacity:.8; margin-top:2px; }

.jh-about-charity-badge {
  display:inline-flex; align-items:center; gap:6px;
  margin-top:32px; padding:6px 14px;
  border:1px solid rgba(200,16,46,.2); border-radius:100px;
  background:rgba(200,16,46,.04);
  font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase;
  color:var(--jh-secondary);
}

/* About text */
.jh-about-flag-chips { display:flex; gap:8px; flex-wrap:wrap; margin:22px 0; }
.jh-chip {
  display:inline-flex; align-items:center; gap:5px;
  padding:5px 12px; border-radius:100px;
  font-size:11px; font-weight:700; letter-spacing:.5px; text-transform:uppercase;
}
.jh-chip-sl { background:rgba(1,33,105,.06); color:var(--jh-primary); border:1px solid rgba(1,33,105,.15); }
.jh-chip-uk { background:rgba(200,16,46,.06); color:var(--jh-secondary); border:1px solid rgba(200,16,46,.15); }

.jh-about-highlights {
  display:grid; grid-template-columns:1fr 1fr;
  gap:12px; margin:28px 0;
}
.jh-hl-item {
  display:flex; gap:12px; align-items:flex-start;
  padding:16px; background:var(--jh-surface);
  border-radius:var(--radius-sm);
  border-left:3px solid var(--jh-primary);
  transition:box-shadow .2s, transform .2s;
}
.jh-hl-item:nth-child(even) { border-left-color:var(--jh-secondary); }
.jh-hl-item:hover { box-shadow:var(--shadow-md); transform:translateY(-2px); }
.jh-hl-icon { font-size:20px; flex-shrink:0; margin-top:1px; }
.jh-hl-title { font-size:13px; font-weight:700; color:var(--jh-primary); margin-bottom:3px; }
.jh-hl-desc  { font-size:12px; color:var(--jh-text-light); line-height:1.5; }
.jh-about-cta { margin-top:10px; }


/* ════════════════════════════════════════
   EVENTS SECTION
════════════════════════════════════════ */
.jh-ev-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
}
.jh-ev-card {
  background:var(--jh-white); border-radius:var(--radius-md);
  border:1px solid var(--jh-border); overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:transform .3s, box-shadow .3s, border-color .3s;
}
.jh-ev-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-xl); border-color:var(--jh-primary); }
.jh-ev-thumb {
  /* Fixed height, hard crop — same size regardless of uploaded image dimensions */
  width:100%; aspect-ratio:16/9; position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.jh-ev-thumb img {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover; object-position:center;
  display:block;
  transition:transform .4s ease;
}
.jh-ev-card:hover .jh-ev-thumb img { transform:scale(1.05); }
/* Hidden event cards (beyond 3) */
.jh-ev-hidden { display:none; }
.jh-ev-card.jh-ev-reveal {
  animation:evReveal .4s ease both;
}
@keyframes evReveal {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}
/* Cycle background colours for placeholder thumbs */
.jh-ev-card:nth-child(3n+1) .jh-ev-thumb { background:linear-gradient(135deg,var(--jh-primary),var(--jh-accent)); }
.jh-ev-card:nth-child(3n+2) .jh-ev-thumb { background:linear-gradient(135deg,#0A2070,#1E3FAF); }
.jh-ev-card:nth-child(3n+3) .jh-ev-thumb { background:linear-gradient(135deg,var(--jh-secondary),var(--jh-red-dark)); }
.jh-ev-thumb-ph { display:flex; align-items:center; justify-content:center; width:100%; height:100%; }
.jh-ev-badge {
  position:absolute; top:14px; left:14px;
  background:var(--jh-white); color:var(--jh-primary);
  font-size:9px; font-weight:800; letter-spacing:2px; text-transform:uppercase;
  padding:4px 10px; border-radius:var(--radius-sm);
  box-shadow:var(--shadow-sm);
}
.jh-ev-body { padding:24px; }
.jh-ev-date {
  display:flex; align-items:center; gap:6px;
  font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
  color:var(--jh-secondary); margin-bottom:10px;
}
.jh-ev-title { font-family:'Cormorant Garamond',Georgia,serif; font-size:21px; font-weight:700; color:var(--jh-primary); margin-bottom:10px; line-height:1.3; }
.jh-ev-title a { color:inherit; transition:color .2s; }
.jh-ev-title a:hover { color:var(--jh-secondary); }
.jh-ev-excerpt { font-size:13px; color:var(--jh-text-light); line-height:1.65; margin-bottom:16px; }
.jh-ev-meta { display:flex; gap:14px; flex-wrap:wrap; padding-bottom:16px; border-bottom:1px solid var(--jh-border); margin-bottom:12px; }
.jh-ev-meta-item { font-size:12px; color:var(--jh-text-light); }
.jh-ev-link {
  display:inline-flex; align-items:center; gap:6px;
  font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase;
  color:var(--jh-primary); transition:gap .2s, color .2s;
}
.jh-ev-link:hover { gap:10px; color:var(--jh-secondary); }


/* ════════════════════════════════════════
   GALLERY SECTION
════════════════════════════════════════ */
.jh-gallery { background:var(--jh-bg); }

/* ════════════════════════════════════════
   ALBUM GROUPS — homepage gallery
════════════════════════════════════════ */
.jh-albums-wrap { display:flex; flex-direction:column; }

.jh-album-group {
  padding-bottom:48px;
  margin-bottom:48px;
  border-bottom:1px solid var(--jh-border);
}
.jh-album-group:last-child { border-bottom:none; margin-bottom:0; padding-bottom:0; }

.jh-album-header {
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; margin-bottom:20px; flex-wrap:wrap;
}
.jh-album-meta { display:flex; align-items:baseline; gap:12px; flex-wrap:wrap; }
.jh-album-title {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(20px,2.2vw,28px); font-weight:700;
  color:var(--jh-primary); margin:0; line-height:1.2;
}
/* "N photos" count */
.jh-album-date {
  font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
  color:var(--jh-text-light);
}

/* "See All N Photos" button */
.jh-album-see-more {
  display:inline-flex; align-items:center; gap:7px;
  padding:9px 20px; flex-shrink:0;
  border:1.5px solid var(--jh-primary); border-radius:var(--radius-sm);
  background:none; cursor:pointer;
  font-family:'DM Sans',sans-serif;
  font-size:12px; font-weight:700; letter-spacing:.8px; text-transform:uppercase;
  color:var(--jh-primary);
  transition:background .2s, color .2s, transform .2s;
  -webkit-tap-highlight-color:transparent;
}
.jh-album-see-more:hover {
  background:var(--jh-primary); color:var(--jh-white); transform:translateY(-1px);
}

/* ── 4-column thumbnail grid ── */
.jh-album-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:10px;
}

/* Each image tile */
.jh-gal-item {
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-sm);
  border:1px solid var(--jh-border);
  background:var(--jh-surface);
  cursor:pointer;
  /* CRITICAL: aspect-ratio forces fixed height regardless of image dimensions */
  aspect-ratio:1 / 1;
}
/* Image fills the tile — hard crop, no stretching */
.jh-gal-img-wrap {
  position:absolute; inset:0;
  overflow:hidden;
}
.jh-gal-img-wrap img {
  width:100%; height:100%;
  object-fit:cover; object-position:center;
  display:block;
  transition:transform .4s ease;
}
.jh-gal-item:hover .jh-gal-img-wrap img { transform:scale(1.07); }

/* No-image placeholder */
.jh-gal-no-img {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  font-size:32px; color:var(--jh-text-light);
}

/* Hover overlay */
.jh-gal-overlay {
  position:absolute; inset:0; z-index:2;
  background:rgba(1,33,105,.62);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px;
  opacity:0; transition:opacity .25s ease;
}
.jh-gal-ov-icon {
  width:40px; height:40px; border-radius:50%;
  border:1.5px solid rgba(255,255,255,.55);
  display:flex; align-items:center; justify-content:center;
}
.jh-gal-caption { font-size:12px; font-weight:600; color:rgba(255,255,255,.9); text-align:center; padding:0 10px; }
.jh-gal-item:hover .jh-gal-overlay { opacity:1; }

/* +N more tile */
.jh-album-more-tile {
  position:relative;
  aspect-ratio:1 / 1;
  background:var(--jh-highlight);
  border:1.5px solid var(--jh-primary);
  border-radius:var(--radius-sm);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px;
  cursor:pointer; overflow:hidden;
  transition:background .2s, transform .2s;
  -webkit-tap-highlight-color:transparent;
}
.jh-album-more-tile:hover { background:var(--jh-primary); transform:translateY(-2px); }
.jh-album-more-tile:hover .jh-amt-plus,
.jh-album-more-tile:hover .jh-amt-label { color:var(--jh-white); }
.jh-amt-plus {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:30px; font-weight:700; color:var(--jh-primary); line-height:1;
}
.jh-amt-label {
  font-size:10px; font-weight:700; letter-spacing:1px; text-transform:uppercase;
  color:var(--jh-text-light);
}

/* Admin hint inside empty album */
.jh-album-empty {
  padding:16px; background:var(--jh-surface);
  border:1px dashed var(--jh-border); border-radius:var(--radius-sm);
}

/* No albums at all */
.jh-gal-no-albums {
  padding:60px 20px; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:16px;
  color:var(--jh-text-light);
}
.jh-gal-no-albums p { font-size:15px; }


/* ════════════════════════════════════════
   ALBUM POPUP MODAL
   Fixed overlay — only visible when .open
   is added by JS. Never visible otherwise.
════════════════════════════════════════ */
.jh-album-popup {
  /* Start fully hidden — no bleed into page */
  position:fixed; inset:0; z-index:9000;
  visibility:hidden;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease, visibility .3s ease;
  /* Centre the panel */
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.jh-album-popup.open {
  visibility:visible;
  opacity:1;
  pointer-events:auto;
}
/* Dark blurred backdrop */
.jh-ap-backdrop {
  position:fixed; inset:0;
  background:rgba(0,10,40,.8);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  cursor:pointer;
  z-index:0;
}
/* Centred popup panel */
.jh-ap-panel {
  position:relative; z-index:1;
  width:min(900px, 95vw);
  max-height:85vh;
  background:var(--jh-white);
  border-radius:var(--radius-md);
  display:flex; flex-direction:column;
  overflow:hidden;
  box-shadow:0 24px 80px rgba(0,0,0,.4);
  /* Entrance scale animation */
  transform:scale(.92);
  transition:transform .35s cubic-bezier(.34,1.4,.64,1);
}
.jh-album-popup.open .jh-ap-panel {
  transform:scale(1);
}
/* Popup header */
.jh-ap-header {
  display:flex; justify-content:space-between; align-items:center;
  padding:18px 24px; border-bottom:1px solid var(--jh-border); flex-shrink:0;
}
.jh-ap-header-text { display:flex; align-items:baseline; gap:12px; }
.jh-ap-title {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:22px; font-weight:700; color:var(--jh-primary); margin:0;
}
.jh-ap-count {
  font-size:12px; font-weight:600; color:var(--jh-text-light); letter-spacing:.5px;
}
.jh-ap-close {
  width:36px; height:36px; border-radius:50%;
  border:1.5px solid var(--jh-border); background:none;
  color:var(--jh-text-med); cursor:pointer; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  transition:border-color .2s, color .2s, transform .2s;
  -webkit-tap-highlight-color:transparent;
}
.jh-ap-close:hover {
  border-color:var(--jh-secondary); color:var(--jh-secondary); transform:rotate(90deg);
}
/* Scrollable image grid inside popup */
.jh-ap-grid {
  flex:1;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  padding:16px 24px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:8px;
}
/* Popup footer */
.jh-ap-footer {
  padding:14px 24px;
  border-top:1px solid var(--jh-border);
  flex-shrink:0;
  display:flex; align-items:center; justify-content:flex-end; gap:10px;
  background:var(--jh-surface);
}

/* ════════════════════════════════════════
   TEAM SECTION
════════════════════════════════════════ */
.jh-team-intro { max-width:580px; margin-bottom:56px; }
.jh-team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }

.jh-tm-card {
  background:var(--jh-white); border-radius:var(--radius-md);
  border:1px solid var(--jh-border);
  overflow:hidden; box-shadow:var(--shadow-sm);
  transition:transform .3s, box-shadow .3s;
  display:flex; flex-direction:column;
}
.jh-tm-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-xl); }

.jh-tm-photo-wrap {
  position:relative;
  background:linear-gradient(160deg, var(--jh-primary), var(--jh-accent));
  padding:36px 20px 20px; text-align:center;
}
.jh-tm-photo {
  width:110px; height:110px; border-radius:50%; overflow:hidden;
  border:3px solid rgba(255,255,255,.3);
  margin:0 auto;
  background:rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
}
.jh-tm-photo img { width:100%; height:100%; object-fit:cover; }
.jh-tm-photo-ph { display:flex; align-items:center; justify-content:center; width:100%; height:100%; }
.jh-tm-badge {
  position:absolute; bottom:-12px; left:50%; transform:translateX(-50%);
  white-space:nowrap;
  background:var(--jh-secondary); color:var(--jh-white);
  font-size:9px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase;
  padding:4px 12px; border-radius:100px;
  box-shadow:var(--shadow-sm);
}
.jh-tm-body {
  padding:28px 22px 22px; display:flex; flex-direction:column; flex:1;
}
.jh-tm-name {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:22px; font-weight:700; color:var(--jh-primary);
  text-align:center; margin-bottom:4px;
}
.jh-tm-role {
  font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
  color:var(--jh-secondary); text-align:center; margin-bottom:14px;
}
.jh-tm-bio {
  font-size:13px; color:var(--jh-text-light); line-height:1.7;
  text-align:center; flex:1; margin-bottom:18px;
}
.jh-tm-links {
  display:flex; justify-content:center; gap:10px; flex-wrap:wrap;
  padding-top:14px; border-top:1px solid var(--jh-border);
}
.jh-tm-link {
  display:inline-flex; align-items:center; gap:5px;
  padding:6px 14px; border-radius:100px;
  border:1px solid var(--jh-border);
  font-size:11px; font-weight:700; color:var(--jh-text-med);
  transition:border-color .2s, color .2s, background .2s;
}
.jh-tm-link:hover { border-color:var(--jh-primary); color:var(--jh-primary); background:var(--jh-highlight); }


/* ════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════ */
.jh-contact { background:var(--jh-primary); position:relative; overflow:hidden; }
.jh-contact::before {
  content:''; position:absolute; top:-150px; right:-150px;
  width:600px; height:600px; border-radius:50%;
  background:radial-gradient(circle, rgba(200,16,46,.08), transparent 65%);
}
.jh-contact::after {
  content:''; position:absolute; bottom:-100px; left:-80px;
  width:400px; height:400px; border-radius:50%;
  border:1px solid rgba(255,255,255,.05);
}
.jh-contact .jh-sec-eyebrow { color:rgba(255,255,255,.5); }
.jh-contact .jh-sec-eyebrow::before { background:rgba(255,255,255,.3); }
.jh-contact .jh-sec-title { color:var(--jh-white); }
.jh-contact .jh-sec-title em { color:rgba(200,16,46,.85); }
.jh-contact .jh-sec-body { color:rgba(255,255,255,.6); }
.jh-contact-intro { margin-bottom:52px; position:relative; z-index:1; }
.jh-contact-wrap { display:grid; grid-template-columns:1fr 1.3fr; gap:64px; position:relative; z-index:1; }

/* Contact info */
.jh-ct-items { margin-bottom:32px; }
.jh-ct-item { display:flex; gap:16px; align-items:flex-start; margin-bottom:24px; }
.jh-ct-icon {
  width:42px; height:42px; flex-shrink:0; border-radius:50%;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center; font-size:17px;
}
.jh-ct-label { font-size:10px; font-weight:800; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:4px; }
.jh-ct-val { font-size:14px; color:rgba(255,255,255,.65); line-height:1.7; }
.jh-ct-val a { color:rgba(255,255,255,.65); transition:color .2s; }
.jh-ct-val a:hover { color:var(--jh-white); }
.jh-ct-social-hd { font-size:10px; font-weight:800; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,.3); margin-bottom:12px; }
.jh-ct-social-row { display:flex; gap:8px; flex-wrap:wrap; }
.jh-ct-soc {
  width:38px; height:38px; border-radius:50%;
  border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  font-size:13px; font-weight:700; color:rgba(255,255,255,.5);
  transition:border-color .2s, color .2s, background .2s;
}
.jh-ct-soc:hover { border-color:rgba(255,255,255,.4); color:var(--jh-white); background:rgba(255,255,255,.07); }
.jh-ct-map { margin-top:24px; border-radius:var(--radius-sm); overflow:hidden; height:200px; border:1px solid rgba(255,255,255,.1); }

/* Contact form */
.jh-ct-form-card {
  background:var(--jh-white); border-radius:var(--radius-lg);
  padding:44px; box-shadow:var(--shadow-xl);
}
.jh-ct-form-title {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:28px; font-weight:700; color:var(--jh-primary); margin-bottom:6px;
}
.jh-ct-form-sub { font-size:13px; color:var(--jh-text-light); margin-bottom:28px; }
.jh-f-row-2 { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.jh-f-group { margin-bottom:16px; }
.jh-f-label {
  display:block; font-size:11px; font-weight:700; letter-spacing:1.5px;
  text-transform:uppercase; color:var(--jh-text-light); margin-bottom:7px;
}
.jh-f-label span { color:var(--jh-secondary); }
.jh-f-input, .jh-f-select, .jh-f-textarea {
  width:100%; padding:11px 14px;
  border:1.5px solid var(--jh-border); border-radius:var(--radius-sm);
  font-family:'DM Sans',sans-serif; font-size:14px;
  color:var(--jh-text); background:var(--jh-white);
  outline:none; transition:border-color .2s, box-shadow .2s;
  -webkit-appearance:none;
}
.jh-f-input:focus, .jh-f-select:focus, .jh-f-textarea:focus {
  border-color:var(--jh-primary);
  box-shadow:0 0 0 3px rgba(1,33,105,.08);
}
.jh-f-input::placeholder, .jh-f-textarea::placeholder { color:var(--jh-text-light); }
.jh-f-textarea { resize:vertical; min-height:110px; line-height:1.6; }
.jh-f-submit {
  width:100%; padding:15px;
  background:var(--jh-primary); color:var(--jh-white);
  border:none; border-radius:var(--radius-sm);
  font-family:'DM Sans',sans-serif; font-size:13px; font-weight:700;
  letter-spacing:1.5px; text-transform:uppercase; cursor:pointer;
  box-shadow:0 4px 16px rgba(1,33,105,.25);
  transition:background .25s, transform .2s, box-shadow .25s;
  margin-top:8px; display:flex; align-items:center; justify-content:center; gap:10px;
  position:relative;
}
.jh-f-submit:hover { background:var(--jh-accent); transform:translateY(-2px); box-shadow:0 8px 28px rgba(1,33,105,.32); }
.jh-f-submit:disabled { opacity:.6; cursor:not-allowed; transform:none; }
.jh-btn-spinner {
  display:none; width:16px; height:16px; border-radius:50%;
  border:2px solid rgba(255,255,255,.3); border-top-color:var(--jh-white);
  animation:jh-spin-btn .7s linear infinite;
}
.jh-f-submit.loading .jh-btn-text { display:none; }
.jh-f-submit.loading .jh-btn-arrow { display:none; }
.jh-f-submit.loading .jh-btn-spinner { display:block; }
@keyframes jh-spin-btn { to { transform:rotate(360deg); } }

#jh-form-response {
  font-size:13px; font-weight:600; margin-bottom:10px;
  padding:12px 16px; border-radius:var(--radius-sm);
  display:none; line-height:1.5;
}
#jh-form-response.success { display:block; background:rgba(0,90,0,.07); color:#005000; border:1px solid rgba(0,120,0,.2); }
#jh-form-response.error   { display:block; background:rgba(200,16,46,.06); color:var(--jh-secondary); border:1px solid rgba(200,16,46,.2); }


/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.jh-footer { background:var(--jh-navy-dark); padding:0; position:relative; }
.jh-ft-topbar { display:flex; height:5px; }
.jh-ft-tb-navy  { flex:3; background:var(--jh-primary); }
.jh-ft-tb-red   { flex:1.5; background:var(--jh-secondary); }
.jh-ft-tb-white { flex:.5; background:#FFFFFF; }
.jh-ft-inner { padding-top:56px; padding-bottom:28px; }
.jh-ft-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.jh-ft-logo { display:flex; align-items:center; gap:12px; text-decoration:none; margin-bottom:16px; }
.jh-ft-logo-img { width:40px; height:40px; object-fit:contain; border-radius:4px; display:block; }
.jh-ft-logo-name { font-family:'Cormorant Garamond',Georgia,serif; font-size:20px; font-weight:700; color:var(--jh-white); line-height:1.1; }
.jh-ft-logo-tag  { font-size:9px; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,.35); margin-top:2px; }
.jh-ft-desc { font-size:13px; color:rgba(255,255,255,.4); line-height:1.85; margin-bottom:16px; }
.jh-ft-charity {
  display:inline-flex; align-items:center; gap:5px;
  font-size:10px; font-weight:700; letter-spacing:1px; text-transform:uppercase;
  color:rgba(200,16,46,.7); border:1px solid rgba(200,16,46,.2);
  padding:4px 10px; border-radius:100px;
}
.jh-ft-col-hd { font-size:10px; font-weight:800; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:18px; }
.jh-ft-links { list-style:none; }
.jh-ft-links li { margin-bottom:9px; }
.jh-ft-links a { font-size:13px; color:rgba(255,255,255,.45); transition:color .2s; }
.jh-ft-links a:hover { color:var(--jh-white); }
.jh-ft-news-desc { font-size:13px; color:rgba(255,255,255,.4); line-height:1.75; margin-bottom:14px; }
.jh-ft-news-form { display:flex; }
.jh-ft-news-input {
  flex:1; padding:10px 14px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-right:none;
  border-radius:var(--radius-sm) 0 0 var(--radius-sm);
  color:var(--jh-white); font-family:'DM Sans',sans-serif; font-size:13px; outline:none;
}
.jh-ft-news-input::placeholder { color:rgba(255,255,255,.25); }
.jh-ft-news-btn {
  padding:10px 16px;
  background:var(--jh-secondary); color:var(--jh-white); border:none;
  border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  font-size:11px; font-weight:800; letter-spacing:1px; text-transform:uppercase;
  cursor:pointer; transition:background .2s;
}
.jh-ft-news-btn:hover { background:var(--jh-red-dark); }
.jh-ft-socials { display:flex; gap:8px; flex-wrap:wrap; }
.jh-ft-soc {
  width:36px; height:36px; border-radius:50%;
  border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  font-size:13px; font-weight:700; color:rgba(255,255,255,.45);
  transition:border-color .2s, color .2s, background .2s;
}
.jh-ft-soc:hover { border-color:var(--jh-secondary); color:var(--jh-secondary); background:rgba(200,16,46,.1); }
.jh-ft-bottom {
  border-top:1px solid rgba(255,255,255,.07); padding-top:22px;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
}
.jh-ft-copy { font-size:12px; color:rgba(255,255,255,.25); }
.jh-ft-legal { display:flex; gap:20px; }
.jh-ft-legal a { font-size:11px; color:rgba(255,255,255,.25); transition:color .2s; }
.jh-ft-legal a:hover { color:rgba(255,255,255,.6); }


/* ════════════════════════════════════════
   SEE MORE BUTTON (gallery & events)
════════════════════════════════════════ */
.jh-see-more-wrap {
  display:flex; justify-content:center; margin-top:40px;
}
.jh-see-more-btn {
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 36px;
  background:transparent;
  border:1.5px solid var(--jh-primary);
  border-radius:var(--radius-sm);
  color:var(--jh-primary);
  font-family:'DM Sans',sans-serif;
  font-size:13px; font-weight:700; letter-spacing:1px; text-transform:uppercase;
  cursor:pointer;
  transition:background .25s, color .25s, transform .2s, box-shadow .25s;
  -webkit-tap-highlight-color:transparent;
}
.jh-see-more-btn:hover {
  background:var(--jh-primary); color:var(--jh-white);
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(1,33,105,.2);
}
.jh-smb-text { flex:1; }
.jh-smb-count {
  display:inline-flex; align-items:center; justify-content:center;
  min-width:28px; height:22px; padding:0 7px;
  background:rgba(1,33,105,.08); border-radius:100px;
  font-size:11px; font-weight:700; letter-spacing:.5px;
  transition:background .25s, color .25s;
}
.jh-see-more-btn:hover .jh-smb-count {
  background:rgba(255,255,255,.2); color:var(--jh-white);
}
.jh-smb-icon {
  display:flex; align-items:center; justify-content:center;
  transition:transform .3s;
}
.jh-see-more-btn:hover .jh-smb-icon { transform:translateY(2px); }
/* Expanded state — arrow flips up */
.jh-see-more-btn[aria-expanded="true"] .jh-smb-icon { transform:rotate(180deg); }
.jh-see-more-btn[aria-expanded="true"]:hover .jh-smb-icon { transform:rotate(180deg) translateY(2px); }


/* ════════════════════════════════════════
   ADMIN-ONLY NOTICES (logged-in editors only)
   Hidden from all public visitors via current_user_can()
════════════════════════════════════════ */
.jh-ev-admin-notice,
.jh-tm-admin-notice {
  display:inline-flex; align-items:center; gap:6px;
  margin-top:12px;
  padding:6px 12px;
  font-size:11px; font-weight:600; letter-spacing:.5px;
  color:#6B7A9B;
  background:#F0F4FF;
  border:1px dashed #C0CCE8;
  border-radius:3px;
  transition:color .2s, border-color .2s, background .2s;
  text-decoration:none;
  cursor:pointer;
  width:100%;
  justify-content:center;
}
.jh-ev-admin-notice:hover,
.jh-tm-admin-notice:hover {
  color:#012169;
  border-color:#012169;
  background:#E8EDF7;
}
/* Ensure these never appear if somehow rendered outside the PHP guard */
.logged-out .jh-ev-admin-notice,
.logged-out .jh-tm-admin-notice { display:none !important; }


/* ════════════════════════════════════════
   FADE-IN ANIMATION
════════════════════════════════════════ */
.jh-fade-in { opacity:0; transform:translateY(24px); transition:opacity .5s ease, transform .5s ease; }
.jh-fade-in.visible { opacity:1; transform:translateY(0); }


/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media(max-width:1200px) {
  .jh-team-grid { grid-template-columns:1fr 1fr 1fr; }
  .jh-album-grid { grid-template-columns:repeat(2,1fr); }
  .jh-ap-grid   { grid-template-columns:repeat(3,1fr); }
  .jh-gpg-grid  { grid-template-columns:repeat(3,1fr) !important; }
}
@media(max-width:1024px) {
  .jh-wrap, .jh-section-inner,
  .jh-hero,.jh-about,.jh-events,.jh-gallery,.jh-team,.jh-contact { padding-left:32px; padding-right:32px; }
  .jh-nav-inner { padding:0 32px; }

  /* ── Hide desktop nav: every selector WordPress could possibly generate ── */
  .jh-nav-desktop,
  .jh-nav-menu-wrap,
  .jh-nav-links,
  ul.jh-nav-links,
  .jh-nav-inner ul,
  .jh-nav-inner > ul,
  .jh-nav-inner .jh-nav-links,
  .jh-nav-inner ul.jh-nav-links,
  .jh-nav-desktop ul,
  .jh-nav-desktop .jh-nav-menu-wrap,
  .jh-nav-desktop .jh-nav-links { display:none !important; }

  /* ── Show hamburger ── */
  .jh-hamburger { display:flex !important; }
  .jh-hero-inner { grid-template-columns:1fr; }
  .jh-hero-flag-decor { display:none; }
  .jh-hero-panel { display:none; }
  .jh-hero-content { padding-right:0; }
  .jh-about .jh-section-inner { grid-template-columns:1fr; gap:48px; }
  .jh-ev-grid { grid-template-columns:1fr 1fr; }
  .jh-album-grid { grid-template-columns:repeat(2,1fr); }
  .jh-ap-grid   { grid-template-columns:repeat(3,1fr); }
  .jh-gpg-grid  { grid-template-columns:repeat(2,1fr) !important; }
  .jh-album-header { flex-direction:column; align-items:flex-start; }
  .jh-album-popup { padding:12px; }
  .jh-ap-panel { width:100%; max-height:90vh; }
  .jh-contact-wrap { grid-template-columns:1fr; }
  .jh-ft-grid { grid-template-columns:1fr 1fr; gap:32px; }
  .jh-stats-inner { grid-template-columns:1fr 1fr; }
  .jh-stat-divider:nth-child(4) { display:none; }
}
@media(max-width:768px) {
  .jh-hero,.jh-about,.jh-events,.jh-gallery,.jh-team,.jh-contact { padding-top:70px; padding-bottom:70px; }
  .jh-team-grid { grid-template-columns:1fr; max-width:380px; margin:0 auto; }
  .jh-about-highlights { grid-template-columns:1fr; }
  /* Reinforce nav hiding on tablet */
  .jh-nav-desktop,
  .jh-nav-menu-wrap,
  .jh-nav-links,
  ul.jh-nav-links { display:none !important; }
  .jh-hamburger { display:flex !important; }
}
@media(max-width:640px) {
  .jh-wrap, .jh-section-inner,
  .jh-hero,.jh-about,.jh-events,.jh-gallery,.jh-team,.jh-contact { padding-left:20px; padding-right:20px; }
  .jh-nav-inner { padding:0 20px; }
  /* Reinforce nav hiding on mobile */
  .jh-nav-desktop,
  .jh-nav-menu-wrap,
  .jh-nav-links,
  ul.jh-nav-links { display:none !important; }
  .jh-hamburger { display:flex !important; }
  .jh-ev-grid { grid-template-columns:1fr; }
  .jh-album-grid, .jh-ap-grid { grid-template-columns:repeat(2,1fr); }
  .jh-gpg-grid  { grid-template-columns:repeat(2,1fr) !important; }
  .jh-ap-grid   { padding:12px 16px; gap:6px; }
  .jh-ap-header { padding:14px 16px; }
  .jh-ap-footer { padding:10px 16px; }
  .jh-ft-grid { grid-template-columns:1fr; }
  .jh-ft-bottom { flex-direction:column; text-align:center; gap:12px; }
  .jh-ft-legal { justify-content:center; }
  .jh-f-row-2 { grid-template-columns:1fr; }
  .jh-stats-inner { grid-template-columns:1fr 1fr; gap:0; }
  .jh-stat-divider { display:none; }
  .jh-hero-badge { font-size:9px; padding:6px 12px; }
  .jh-section-header { flex-direction:column; align-items:flex-start; }
}
