/* ============================================================
   SETHAKGA CONSULTING — PUBLIC SITE STYLESHEET
   Holistic Health · Lifestyle · Spiritual Well-being
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--primary-dark); }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.25; color: var(--dark); letter-spacing: -0.01em; }

/* ── Design tokens ── */
:root {
  --primary:      #0D6E5C;   /* deep teal-green */
  --primary-dark: #0A5546;
  --primary-light:#128b74;
  --primary-soft: #e6f2ee;
  --gold:         #C9A961;   /* warm accent */
  --gold-dark:    #A88940;
  --dark:         #0F2A44;   /* deep navy */
  --dark-2:       #17334f;
  --text:         #2A3947;
  --text-muted:   #5A6C7D;
  --border:       #E5E1D8;
  --bg:           #FBF9F5;   /* soft cream */
  --bg-alt:       #F4F1E9;
  --white:        #ffffff;
  --success:      #16a34a;
  --danger:       #c0392b;

  --shadow-sm: 0 1px 3px rgba(15,42,68,.06);
  --shadow:    0 4px 20px rgba(15,42,68,.08);
  --shadow-lg: 0 12px 40px rgba(15,42,68,.12);

  --radius:    10px;
  --radius-lg: 18px;

  --container-w: 1200px;
  --header-h:   80px;
  --header-h-sm:66px;
}

/* ── Utilities ── */
.container { width: 100%; max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }
.text-white { color: #fff; }
.small { font-size: 13px; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.eyebrow.gold { color: var(--gold-dark); }
.eyebrow.light { color: rgba(255,255,255,.85); }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 18px;
}
.section-lead {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.section-lead.left { margin-left: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .18s, border-color .18s, color .18s, box-shadow .18s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary   { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover   { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; box-shadow: 0 6px 20px rgba(13,110,92,.25); }
.btn-gold      { background: var(--gold); color: #1a1611; border-color: var(--gold); }
.btn-gold:hover      { background: var(--gold-dark); border-color: var(--gold-dark); color:#fff; }
.btn-outline   { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover   { background: var(--primary); color:#fff; }
.btn-white     { background:#fff; color: var(--primary); border-color:#fff; }
.btn-white:hover     { background: transparent; color:#fff; border-color:#fff; }
.btn-ghost     { background: transparent; color: var(--dark); border-color: rgba(15,42,68,.15); }
.btn-ghost:hover     { background: var(--dark); color:#fff; border-color:var(--dark); }
.btn-lg { padding: 17px 34px; font-size: 15px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* Sections */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }

/* ── Header / Navigation ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  background: rgba(251,249,245,.95);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, box-shadow .25s, height .2s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.98);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
  height: var(--header-h-sm);
}
.header-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 44px; width: auto; transition: height .2s; }
.site-header.scrolled .brand img { height: 38px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--dark); font-size: 18px; letter-spacing: .01em; }
.brand-tag  { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  position: relative;
  transition: color .15s;
}
.nav a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover, .nav a.active { color: var(--primary); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav .btn { margin-left: 10px; padding: 10px 20px; }

.menu-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 8px; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--dark);
}
.menu-toggle svg { width: 22px; height: 22px; }

/* ── Hero ── */
.hero {
  position: relative; padding: calc(var(--header-h) + 60px) 0 90px;
  background:
    radial-gradient(1200px 500px at 100% -20%, rgba(201,169,97,.14), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(13,110,92,.10), transparent 60%),
    linear-gradient(180deg, #fbf9f5 0%, #f4f1e9 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.hero-title {
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.08;
  margin-bottom: 22px;
  color: var(--dark);
}
.hero-title .accent { color: var(--primary); font-style: italic; }
.hero-lead {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 34px;
  max-width: 560px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background:
    linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(400px 300px at 20% 0%, rgba(255,255,255,.08), transparent 55%),
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,.35) 100%);
}
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .82; }
.hero-badge {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-radius: 12px; padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  z-index: 2;
  box-shadow: var(--shadow);
}
.hero-badge .ico {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-badge .txt { flex: 1; }
.hero-badge .txt small { display: block; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; margin-bottom: 2px;}
.hero-badge .txt strong { color: var(--dark); font-size: 14px; }

/* Trust strip */
.trust-strip {
  padding: 34px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px; align-items: center; justify-items: center;
}
.trust-item {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: .04em;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.trust-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.trust-item .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; font-weight: 600; color: var(--text-muted); }

/* ── Section headers ── */
.sec-head { text-align: center; margin-bottom: 60px; }
.sec-head.left { text-align: left; }

/* ── About preview / Who We Are ── */
.about-preview .grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center;
}
.about-media {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-media::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(13,110,92,.85) 0%, rgba(15,42,68,.7) 100%);
  z-index: 1;
}
.about-media::after {
  content: '"For I know the plans I have for you," declares the Lord.';
  position: absolute; bottom: 30px; left: 30px; right: 30px; z-index: 2;
  color: #fff; font-family: 'Playfair Display', serif; font-style: italic; font-size: 22px; line-height: 1.4;
}
.about-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.about-text p { color: var(--text-muted); margin-bottom: 20px; font-size: 16px; line-height: 1.85; }
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px;
}
.hl-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 22px;
  display: flex; gap: 14px; align-items: flex-start;
}
.hl-card .ico {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--primary-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hl-card h4 { font-size: 15px; margin-bottom: 4px; }
.hl-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }

/* ── Services grid ── */
.services-section { background: var(--bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card .ico {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-soft), rgba(201,169,97,.15));
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.svc-card .ico svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--dark); }
.svc-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.7; }

/* Values / Mission grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.val-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}
.val-card:nth-child(even) { border-left-color: var(--gold); }
.val-card h4 { font-size: 17px; margin-bottom: 8px; }
.val-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.7; }

/* ── CTA / Event highlight banner ── */
.event-banner {
  padding: 0;
}
.event-banner-inner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}
.event-banner-inner::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle at center, rgba(201,169,97,.14), transparent 60%);
  pointer-events: none;
}
.event-banner-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 1;}
.event-banner h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 14px; }
.event-banner .meta { display: flex; flex-wrap: wrap; gap: 20px 30px; margin-bottom: 20px; color: rgba(255,255,255,.9); font-size: 14px; }
.event-banner .meta span { display: inline-flex; align-items: center; gap: 8px; }
.event-banner .meta svg { color: var(--gold); }
.event-banner p { color: rgba(255,255,255,.86); margin-bottom: 26px; max-width: 520px; line-height: 1.75;}
.event-banner .actions { display:flex; gap: 12px; flex-wrap: wrap; }

/* ── Newsletter strip ── */
.newsletter {
  padding: 70px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.newsletter-inner {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
}
.newsletter h3 { font-size: 26px; margin-bottom: 8px; }
.newsletter p { color: var(--text-muted); font-size: 15px; }
.newsletter-form {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1; min-width: 220px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 8px; background: var(--bg);
  font-size: 15px; color: var(--text);
  transition: border-color .18s, background .18s;
}
.newsletter-form input:focus { outline: none; border-color: var(--primary); background: #fff; }
.newsletter-form button { flex-shrink: 0; }
.form-msg { margin-top: 12px; font-size: 13.5px; }
.form-msg.ok  { color: var(--success); }
.form-msg.err { color: var(--danger); }

/* ── Footer ── */
.site-footer {
  background: var(--dark);
  color: #c9d5e0;
  padding: 70px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  margin-bottom: 50px;
}
.footer-brand img { height: 52px; background:#fff; padding: 8px 12px; border-radius: 10px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: #8ea3b8; max-width: 320px; }
.footer h5 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: #8ea3b8; font-size: 14.5px; }
.footer ul a:hover { color: var(--gold); }
.footer .contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin-bottom: 12px; color: #8ea3b8;}
.footer .contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer .contact-item a { color: #c9d5e0; }
.footer .contact-item a:hover { color: var(--gold); }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: #c9d5e0;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s, color .18s, transform .18s;
}
.socials a:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: #8ea3b8;
}
.footer-bottom a { color: #8ea3b8; }
.footer-bottom a:hover { color: var(--gold); }

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: calc(var(--header-h) + 70px) 0 70px;
  background:
    radial-gradient(1200px 500px at 100% -20%, rgba(201,169,97,.14), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(13,110,92,.10), transparent 60%),
    linear-gradient(180deg, #fbf9f5 0%, #f4f1e9 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 14px; }
.page-hero p  { color: var(--text-muted); font-size: 18px; max-width: 700px; margin: 0 auto; line-height: 1.7;}
.crumbs { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 22px; color: var(--gold-dark); font-weight: 600; }
.crumbs a { color: var(--gold-dark); }

/* ── About page ── */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.mvv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.mvv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mvv-card .ico {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.mvv-card:nth-child(2) .ico { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.mvv-card:nth-child(3) .ico { background: linear-gradient(135deg, var(--dark), var(--dark-2)); }
.mvv-card h3 { font-size: 22px; margin-bottom: 12px; }
.mvv-card p  { color: var(--text-muted); line-height: 1.8; font-size: 15px; }

.about-body h2 { font-size: 30px; margin-bottom: 16px; }
.about-body p { color: var(--text-muted); font-size: 16px; line-height: 1.85; margin-bottom: 18px; }
.about-body { max-width: 860px; margin: 0 auto; }

/* Core values list */
.core-values-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px; margin-top: 22px;
}
.cv-item {
  padding: 18px 20px;
  background: var(--white);
  border-left: 3px solid var(--primary);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.cv-item strong { display: block; color: var(--dark); font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.cv-item span { font-size: 13.5px; color: var(--text-muted); line-height: 1.55;}

/* ── Services page ── */
.svc-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 26px;
}
.svc-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 30px;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  height: 100%;
  display: flex; flex-direction: column;
}
.svc-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-detail-card .ico {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-soft), rgba(201,169,97,.15));
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.svc-detail-card h3 { font-size: 20px; margin-bottom: 12px; }
.svc-detail-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.75; }

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 44px;
  box-shadow: var(--shadow);
  margin-top: 40px;
}
.program-card h2 { font-size: 30px; margin-bottom: 8px; }
.program-card .subtitle { color: var(--gold-dark); font-weight: 600; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 26px; }
.program-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; margin: 26px 0 30px; }
.prog-step { position: relative; padding: 24px 22px; background: var(--bg-alt); border-radius: 12px; }
.prog-step .num {
  position: absolute; top: -14px; left: 22px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: 'Playfair Display', serif; font-size: 15px;
}
.prog-step h4 { font-size: 16px; margin: 10px 0 8px; }
.prog-step p { color: var(--text-muted); font-size: 13.5px; line-height: 1.6; }

.program-card .requirements {
  background: var(--primary-soft);
  border-radius: 12px;
  padding: 22px 26px;
  border-left: 4px solid var(--primary);
  margin-top: 20px;
}
.program-card .requirements strong { display: block; color: var(--primary-dark); font-size: 14px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.program-card .requirements p { color: var(--text); font-size: 14.5px; line-height: 1.75; }

/* ── Events page ── */
.events-section h2 { text-align: center; font-size: clamp(28px, 4vw, 38px); margin-bottom: 12px; }
.events-list {
  display: grid;
  gap: 32px;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 400px) 1fr;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  border: 1px solid var(--border);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.event-card.past { opacity: .96; }
/* Poster wrapper — soft branded backdrop; image itself uses object-fit: contain
   so any aspect ratio (portrait or landscape) displays in full without cropping. */
.event-poster {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-height: 320px;
  background:
    radial-gradient(600px 300px at 20% 10%, rgba(201,169,97,.14), transparent 60%),
    linear-gradient(160deg, var(--primary-soft) 0%, var(--bg-alt) 100%);
  border-right: 1px solid var(--border);
}
.event-poster.no-image {
  background: linear-gradient(160deg, var(--primary) 0%, var(--dark) 100%);
  border-right: none;
}

/* The poster image — never cropped */
.event-poster img {
  position: relative;
  display: block;
  max-width: 100%;
  max-height: 540px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 32px rgba(15,42,68,.18), 0 2px 6px rgba(15,42,68,.10);
}

/* Date badge — floats over the top-left corner of the poster area */
.event-poster .date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 10px 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(15,42,68,.18);
  border: 1px solid rgba(15,42,68,.06);
}
.event-poster.no-image .date-badge {
  position: relative;
  top: auto; left: auto;
  padding: 14px 22px;
  background: rgba(255,255,255,.97);
}
.event-poster .date-badge .day { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--primary); line-height: 1; }
.event-poster .date-badge .month { font-size: 11.5px; text-transform: uppercase; letter-spacing: .16em; color: var(--dark); font-weight: 700; margin-top: 4px; }
.event-poster .date-badge .year { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.event-poster.no-image .date-badge .day { font-size: 34px; }
.event-poster.no-image .date-badge .month { font-size: 13px; }
.event-poster.no-image .date-badge .year { font-size: 12px; }
.event-body { padding: 30px 32px; }
.event-status {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 12px;
}
.event-status.upcoming { background: var(--primary-soft); color: var(--primary-dark); }
.event-status.past { background: #eeece5; color: var(--gold-dark); }
.event-body h3 { font-size: 24px; margin-bottom: 12px; line-height: 1.3; }
.event-meta {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  margin-bottom: 18px; font-size: 14px; color: var(--text-muted);
}
.event-meta span { display: inline-flex; align-items: center; gap: 8px;}
.event-meta svg { color: var(--primary); }
.event-body h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--dark); font-weight: 700; margin: 14px 0 8px; }
.event-body p { color: var(--text-muted); font-size: 14.5px; line-height: 1.75; margin-bottom: 12px; }
.event-body ul { padding-left: 20px; margin-bottom: 12px; }
.event-body ul li { margin-bottom: 6px; color: var(--text-muted); font-size: 14.5px; list-style: disc; }

/* Empty state */
.empty {
  text-align: center; padding: 60px 20px;
  color: var(--text-muted); font-size: 15px;
}

/* ── Gallery ── */
.gallery-nav {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px;
}
.gallery-nav button {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s;
}
.gallery-nav button:hover { border-color: var(--primary); color: var(--primary); }
.gallery-nav button.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.gallery-section-title {
  text-align: center;
  margin: 50px 0 30px;
}
.gallery-section-title h3 { font-size: 26px; margin-bottom: 6px; }
.gallery-section-title span { color: var(--gold-dark); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gal-item {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: var(--bg-alt);
  transition: transform .2s;
  box-shadow: var(--shadow-sm);
}
.gal-item:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gal-item:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15,42,68,.92);
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,.15); color: #fff; border: 0;
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15); color:#fff; border:0;
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.lightbox-nav:hover { background: rgba(255,255,255,.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ── Contact page ── */
.contact-grid {
  display: grid; grid-template-columns: 0.9fr 1.3fr; gap: 40px; align-items: stretch;
}
.contact-info {
  background: linear-gradient(160deg, var(--dark) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
}
.contact-info h2 { color: #fff; font-size: 28px; margin-bottom: 8px; }
.contact-info > p { color: rgba(255,255,255,.85); margin-bottom: 30px; font-size: 15px; line-height: 1.7; }
.contact-info .contact-block { margin-bottom: 26px; }
.contact-info .contact-block h4 { color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 10px; font-family: 'Inter', sans-serif; font-weight: 700; }
.contact-info .ct { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 10px; font-size: 14.5px;}
.contact-info .ct a { color: #fff; }
.contact-info .ct a:hover { color: var(--gold); text-decoration: underline; }
.contact-info .ct svg { color: var(--gold); flex-shrink: 0; margin-top: 3px;}
.contact-info .socials a { background: rgba(255,255,255,.1); color: #fff; }
.contact-info .socials a:hover { background: var(--gold); color: var(--dark); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-card h2 { font-size: 26px; margin-bottom: 6px; }
.contact-form-card .subtitle { color: var(--text-muted); font-size: 14.5px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text); margin-bottom: 6px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  font-size: 15px;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
  font-family: inherit;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,110,92,.12);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field .hp { position: absolute; left: -9999px; }
.form-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.form-note { font-size: 13px; color: var(--text-muted); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid, .about-preview .grid, .event-banner-grid, .newsletter-inner, .contact-grid {
    grid-template-columns: 1fr; gap: 40px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .event-card { grid-template-columns: minmax(280px, 340px) 1fr; }
  .event-poster { min-height: 280px; padding: 20px; }
  .event-poster img { max-height: 460px; }
  section { padding: 72px 0; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .menu-toggle { display: inline-flex; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: 84%; max-width: 320px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 100px 24px 30px;
    box-shadow: -10px 0 40px rgba(15,42,68,.15);
    transform: translateX(100%);
    transition: transform .28s ease;
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav a { padding: 14px 12px; border-radius: 8px; font-size: 16px; }
  .nav a::after { display: none; }
  .nav a:hover, .nav a.active { background: var(--primary-soft); color: var(--primary); }
  .nav .btn { margin: 12px 0 0; padding: 14px 20px; justify-content: center; width: 100%; }
  .nav-overlay {
    position: fixed; inset: 0; z-index: 490;
    background: rgba(15,42,68,.55);
    opacity: 0; visibility: hidden;
    transition: opacity .28s, visibility .28s;
  }
  .nav-overlay.open { opacity: 1; visibility: visible; }
  .brand-text { display: none; }
  .brand img { height: 40px; }

  .hero { padding: calc(var(--header-h-sm) + 40px) 0 60px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  section { padding: 60px 0; }
  .event-card { grid-template-columns: 1fr; }
  .event-poster {
    min-height: 240px;
    padding: 20px 20px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .event-poster img { max-height: 520px; }
  .event-body { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-card, .contact-info { padding: 30px 24px; }
  .event-banner-inner { padding: 40px 28px; }
  .program-card { padding: 34px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .hero-lead  { font-size: 16px; }
  section { padding: 50px 0; }
  .sec-head { margin-bottom: 40px; }
  .hero-badge { flex-direction: column; align-items: flex-start; text-align: left; gap: 8px; padding: 14px 16px;}
}

/* Print */
@media print {
  .site-header, .nav, .newsletter, .site-footer, .menu-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  section { padding: 20px 0; page-break-inside: avoid; }
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease;}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════════════════════════
   ADDITIONAL IMAGE SLOTS
   ═══════════════════════════════════════════════════════════ */

/* Full-bleed statement band with background image + dark overlay */
.statement-band {
  position: relative;
  padding: 120px 0;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.statement-band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,42,68,.78) 0%, rgba(13,110,92,.72) 100%);
  z-index: 0;
}
.statement-band .container { position: relative; z-index: 1; }
.statement-band .eyebrow { color: var(--gold); }
.statement-band h2 {
  color: #fff;
  font-size: clamp(28px, 4.4vw, 48px);
  font-style: italic;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 20px;
}
.statement-band p {
  color: rgba(255,255,255,.88);
  font-size: 17px;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Wide feature image block (used inside pages) */
.feature-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background: var(--bg-alt);
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-image.tall  { aspect-ratio: 3 / 2; }
.feature-image.short { aspect-ratio: 21 / 9; }

/* Two-column split: image + text */
.split-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-block.reversed .split-media { order: 2; }
.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 2;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-text h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 16px; }
.split-text p  { color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; font-size: 16px; }

/* Program card header image */
.program-card-image {
  position: relative;
  margin: -50px -44px 30px;
  aspect-ratio: 21 / 8;
  overflow: hidden;
}
.program-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.program-card-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(255,255,255,.75) 95%, #fff 100%);
}

/* Event banner side image */
.event-banner-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  border: 3px solid rgba(201,169,97,.35);
}
.event-banner-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.event-banner-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,42,68,.35) 100%);
}

/* Services CTA visual (portrait) */
.svc-cta-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 260px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  border: 3px solid rgba(201,169,97,.4);
}
.svc-cta-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 1024px) {
  .split-block { grid-template-columns: 1fr; gap: 32px; }
  .split-block.reversed .split-media { order: 0; }
  .program-card-image { margin: -34px -24px 24px; }
  .statement-band { padding: 90px 0; }
}
@media (max-width: 768px) {
  .statement-band { padding: 70px 0; }
  .feature-image { aspect-ratio: 4 / 3; }
}
