/* ELVA Global — Shared Stylesheet
   Strategy: Committed — navy carries primary surfaces, gold as premium accent
   Scene: Corporate/community professionals, indoor office/home light, desktop+tablet primary */

:root {
  --navy:        oklch(22% 0.065 258);
  --navy-deep:   oklch(15% 0.055 258);
  --navy-mid:    oklch(30% 0.072 258);
  --gold:        oklch(70% 0.10 82);
  --gold-muted:  oklch(79% 0.07 82);
  --gold-tint:   oklch(97% 0.013 83);
  --cream:       oklch(98% 0.008 90);
  --warm-white:  oklch(99.5% 0.003 90);
  --text-base:   oklch(22% 0.02 258);
  --text-muted:  oklch(52% 0.02 258);
  --text-subtle: oklch(70% 0.015 258);
  --border:      oklch(91% 0.01 258);
  --border-mid:  oklch(85% 0.015 258);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 4px;
  --radius:    6px;
  --radius-lg: 10px;
  --radius-xl: 14px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:   180ms cubic-bezier(0.16, 1, 0.3, 1);
  --t-base:   280ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 4px oklch(0% 0 0 / 0.06);
  --shadow-md: 0 4px 16px oklch(0% 0 0 / 0.08), 0 2px 6px oklch(0% 0 0 / 0.04);
  --shadow-lg: 0 12px 40px oklch(0% 0 0 / 0.1), 0 4px 12px oklch(0% 0 0 / 0.05);
  --shadow-xl: 0 24px 60px oklch(0% 0 0 / 0.14);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text-base);
  background: var(--warm-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
}

h1 { font-size: clamp(3rem, 6.5vw, 4.8rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); }

p { max-width: 68ch; }
p + p { margin-top: 0.85em; }

.eyebrow {
  display: inline-block;
  font-size: 0.7375rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.title-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1.25rem 0 1.75rem;
}

.title-rule--center { margin-left: auto; margin-right: auto; }

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container--narrow { max-width: 820px; }

section { padding: clamp(5rem, 9vw, 8.5rem) 0; }

/* ============================================================
   LOGO MARK
   ============================================================ */

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
}

.logo-name--light { color: var(--warm-white); }
.logo-sub--gold   { color: var(--gold); }
.logo-name--dark  { color: var(--navy); }
.logo-sub--navy   { color: var(--navy); opacity: 0.6; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 82px;
  z-index: 100;
  background: oklch(99.5% 0.003 90);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t-base), border-color var(--t-base);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px oklch(0% 0 0 / 0.07);
  border-bottom-color: transparent;
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy-mid);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--navy);
  background: var(--gold-tint);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-sm) !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 2px 10px oklch(73% 0.115 85 / 0.28) !important;
}

.nav-cta:hover {
  background: oklch(64% 0.12 78) !important;
  color: var(--navy) !important;
  box-shadow: 0 4px 18px oklch(73% 0.115 85 / 0.38) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-fast);
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 82px; left: 0; right: 0;
    background: oklch(99.5% 0.003 90);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.5rem 2rem;
    gap: 0.15rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--t-base), opacity var(--t-base);
    box-shadow: 0 8px 24px oklch(0% 0 0 / 0.08);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--navy-mid);
  }

  .nav-cta { text-align: center; margin-top: 0.5rem; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.625rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  border: none;
  white-space: nowrap;
  cursor: pointer;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 2px 12px oklch(73% 0.115 85 / 0.25);
}

.btn-gold:hover {
  background: var(--gold-muted);
  box-shadow: 0 6px 20px oklch(73% 0.115 85 / 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--warm-white);
  box-shadow: inset 0 0 0 1.5px oklch(99% 0.003 90 / 0.4);
}

.btn-ghost:hover {
  background: oklch(99% 0.003 90 / 0.08);
  box-shadow: inset 0 0 0 1.5px oklch(99% 0.003 90 / 0.7);
}

.btn-navy {
  background: var(--navy);
  color: var(--warm-white);
}

.btn-navy:hover {
  background: var(--navy-mid);
  box-shadow: 0 6px 20px oklch(22% 0.065 258 / 0.3);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
}

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */

.hero {
  min-height: 100svh;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 82px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(oklch(73% 0.115 85 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, oklch(73% 0.115 85 / 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero::after {
  content: 'EG';
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18rem, 40vw, 46rem);
  color: oklch(73% 0.115 85 / 0.04);
  position: absolute;
  right: -6vw;
  top: 50%;
  transform: translateY(-50%);
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vh, 6rem) 0;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-kicker-line {
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-kicker-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: oklch(93% 0.01 258 / 0.55);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  max-width: 820px;
}

.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-body {
  font-size: clamp(1rem, 1.8vw, 1.175rem);
  color: oklch(93% 0.01 258 / 0.62);
  line-height: 1.78;
  max-width: 540px;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 2.5rem);
  left: clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: oklch(93% 0.01 258 / 0.3);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 44px;
  background: linear-gradient(oklch(73% 0.115 85 / 0.5), transparent);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  background: var(--navy);
  padding: clamp(7rem, 15vw, 11rem) 0 clamp(4.5rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(oklch(73% 0.115 85 / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, oklch(73% 0.115 85 / 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--warm-white); max-width: 700px; }
.page-hero .hero-body { max-width: 580px; }

/* ============================================================
   THREE PILLARS
   ============================================================ */

.pillars-section { background: var(--cream); }

.pillars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--navy);
  margin-top: 4rem;
}

.pillar-item {
  padding: clamp(2.5rem, 4vw, 4rem) clamp(1.75rem, 3vw, 2.75rem) clamp(2.5rem, 4vw, 4rem) 0;
  transition: background var(--t-base);
  position: relative;
  border-bottom: 1px solid var(--border);
}

.pillar-item + .pillar-item {
  padding-left: clamp(1.75rem, 3vw, 2.75rem);
  border-left: 1px solid var(--border);
}

.pillar-item:hover { background: transparent; }

.pillar-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: oklch(73% 0.115 85 / 0.18);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.pillar-item h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.pillar-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: none;
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 1.5rem;
  transition: gap var(--t-fast), color var(--t-fast);
}

.pillar-link:hover {
  color: var(--gold);
  gap: 0.7rem;
}

.pillar-link-arrow { font-size: 1rem; }

@media (max-width: 900px) {
  .pillars-row { grid-template-columns: 1fr; }
  .pillar-item + .pillar-item { border-left: none; border-top: 1px solid var(--border); }
}

/* ============================================================
   WHY ELVA EXISTS
   ============================================================ */

.why-section { background: var(--warm-white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.why-panel {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
}

.why-panel::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 20rem;
  color: oklch(73% 0.115 85 / 0.06);
  position: absolute;
  top: -4rem;
  left: 0;
  line-height: 1;
  pointer-events: none;
}

.why-panel blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-style: italic;
  color: var(--warm-white);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.why-panel cite {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2rem;
}

.why-content h2 { margin-bottom: 1.25rem; }
.why-content > p { color: var(--text-muted); }

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.why-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--gold-tint);
  border-radius: var(--radius);
}

.why-point-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.why-point-title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.why-point-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: none;
  line-height: 1.58;
}

@media (max-width: 820px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES ROW (homepage preview)
   ============================================================ */

.services-section { background: var(--cream); }

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 4rem;
}

.service-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--cream);
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.75rem, 3.5vw, 2.75rem);
  transition: background var(--t-fast);
  text-decoration: none;
  cursor: pointer;
}

.service-row:hover { background: var(--warm-white); }

.service-row-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: oklch(22% 0.065 258 / 0.12);
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-row-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.service-row-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 54ch;
  line-height: 1.6;
}

.service-row-arrow {
  font-size: 1.4rem;
  color: oklch(73% 0.115 85 / 0.45);
  transition: transform var(--t-fast), color var(--t-fast);
  flex-shrink: 0;
}

.service-row:hover .service-row-arrow {
  transform: translateX(6px);
  color: var(--gold);
}

@media (max-width: 560px) {
  .service-row { grid-template-columns: 44px 1fr; }
  .service-row-arrow { display: none; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-section { background: var(--navy-deep); }

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

.testimonial-card {
  background: oklch(99% 0.003 90 / 0.04);
  border: 1px solid oklch(99% 0.003 90 / 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
}

.testimonial-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.45;
  line-height: 0.9;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: oklch(93% 0.01 258 / 0.78);
  font-style: italic;
  line-height: 1.78;
  max-width: none;
}

@media (max-width: 860px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; }
}

/* ============================================================
   FOUNDERS
   ============================================================ */

.founders-section { background: var(--cream); }

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

.founder-card {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.founder-card-top {
  background: var(--navy);
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 3.5vw, 2.75rem);
}

.founder-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: oklch(73% 0.115 85 / 0.15);
  border: 2px solid oklch(73% 0.115 85 / 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--warm-white);
  margin-bottom: 0.4rem;
}

.founder-role {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-card-body { padding: clamp(1.75rem, 3vw, 2.5rem); }

.founder-bio {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.78;
  max-width: none;
}

@media (max-width: 640px) {
  .founders-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   EVENTS PAGE
   ============================================================ */

.event-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.event-type-card {
  background: var(--warm-white);
  border: none;
  border-radius: 0;
  padding: clamp(2.5rem, 4vw, 3.75rem);
  transition: background var(--t-base);
  position: relative;
}

.event-type-card:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
.event-type-card:nth-child(odd)  { border-right: 1px solid var(--border); }

.event-type-card:hover {
  background: var(--gold-tint);
  box-shadow: none;
  transform: none;
}

.event-type-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.75rem;
  color: var(--navy);
}

.event-type-icon svg { width: 32px; height: 32px; flex-shrink: 0; }

.event-type-card h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin-bottom: 0;
}

.event-type-card h3::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin: 0.875rem 0 1.125rem;
  border-radius: 2px;
  transition: width var(--t-base);
}

.event-type-card:hover h3::after { width: 60px; }

.event-type-card p { font-size: 0.9375rem; color: var(--text-muted); max-width: none; }

.process-section { background: var(--navy); }

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

.process-step { text-align: center; }

.process-step-num {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: oklch(73% 0.115 85 / 0.08);
  border: 1px solid oklch(73% 0.115 85 / 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--gold);
  margin: 0 auto 2rem;
  letter-spacing: -0.02em;
}

.process-step h4 { color: var(--warm-white); font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.3rem); margin-bottom: 0.875rem; letter-spacing: -0.01em; }
.process-step p  { font-size: 0.875rem; color: oklch(93% 0.01 258 / 0.58); max-width: none; margin: 0 auto; line-height: 1.65; }

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

.service-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.1rem 1.375rem;
  background: var(--gold-tint);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
}

.service-item-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .event-types-grid { grid-template-columns: 1fr; }
  .process-steps    { grid-template-columns: 1fr; max-width: 400px; }
  .services-grid    { grid-template-columns: 1fr; }
}

/* ============================================================
   INSTITUTE — COURSES
   ============================================================ */

.courses-filter {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.filter-btn {
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  background: none;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t-fast);
  letter-spacing: 0.02em;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--warm-white);
}

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

.course-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.course-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.course-card[data-category].hidden { display: none; }

.course-card-head {
  background: var(--navy);
  padding: 1.625rem 1.75rem 1.5rem;
}

.course-cat {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: oklch(73% 0.115 85 / 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.course-card-head h3 {
  font-size: 1.05rem;
  color: var(--warm-white);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.course-tagline {
  font-size: 0.8rem;
  color: oklch(93% 0.01 258 / 0.52);
  font-style: italic;
  line-height: 1.45;
  max-width: none;
}

.course-card-body {
  padding: 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.72;
  flex: 1;
  max-width: none;
}

.course-card-foot {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-price {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.course-price-note {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-subtle);
  font-weight: 400;
  margin-top: 2px;
}

.enrol-btn {
  background: var(--navy);
  color: var(--warm-white);
  padding: 0.55rem 1.125rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background var(--t-fast), transform var(--t-fast);
}

.enrol-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

@media (max-width: 1000px) { .courses-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .courses-grid { grid-template-columns: 1fr; } }

/* ============================================================
   NAYRAH AWARDS
   ============================================================ */

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--border-mid);
}

.award-cat-card {
  display: grid;
  grid-template-columns: 48px 1fr 3rem;
  gap: 1.75rem;
  align-items: center;
  padding: 1.625rem 0.25rem;
  border-bottom: 1px solid var(--border-mid);
  background: transparent;
  border-radius: 0;
  text-align: left;
  transition: background var(--t-fast), padding-left var(--t-base);
  cursor: default;
}

.award-cat-card:hover {
  background: var(--gold-tint);
  box-shadow: none;
  transform: none;
  padding-left: 1rem;
  padding-right: 0.5rem;
  margin-left: -1rem;
  margin-right: -0.5rem;
  padding-left: 1.25rem;
}

.award-cat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-mid);
  flex-shrink: 0;
  background: var(--gold-tint);
  border-radius: var(--radius);
  transition: background var(--t-fast), color var(--t-fast);
}

.award-cat-card:hover .award-cat-icon {
  background: var(--gold);
  color: var(--navy);
}

.award-cat-icon svg { width: 22px; height: 22px; flex-shrink: 0; }

.award-cat-card h3 {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  line-height: 1.35;
  color: var(--navy);
  transition: color var(--t-fast);
}

.award-cat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: oklch(22% 0.065 258 / 0.1);
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: right;
  flex-shrink: 0;
  transition: color var(--t-fast);
}

.award-cat-card:hover .award-cat-num { color: var(--gold); opacity: 0.6; }

.award-values-section { background: var(--navy); }

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

.award-value { text-align: center; padding: 2rem; }
.award-value h3 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.8vw, 2rem); color: var(--gold); margin-bottom: 0.75rem; }
.award-value p  { font-size: 0.9rem; color: oklch(93% 0.01 258 / 0.58); max-width: 28ch; margin: 0 auto; }

@media (max-width: 900px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } .award-values-grid { grid-template-columns: 1fr; max-width: 420px; } }
@media (max-width: 520px) { .categories-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  margin-top: 4rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2.25rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: oklch(93% 0.01 258);
}

.contact-icon svg { width: 20px; height: 20px; }

.contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-value { font-size: 1rem; font-weight: 500; color: var(--navy); }
.contact-value a:hover { color: var(--gold); }

.contact-form {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-md);
}

.contact-form h3 { margin-bottom: 0.5rem; }

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1.375rem; }

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-base);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px oklch(22% 0.065 258 / 0.09);
}

.form-control::placeholder { color: var(--text-subtle); }
textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

@media (max-width: 800px)  { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 500px)  { .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   PARTNERS
   ============================================================ */

.partners-types {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.partner-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.375rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}

.partner-pill-icon {
  display: flex;
  align-items: center;
  color: var(--navy);
  flex-shrink: 0;
}
.partner-pill-icon svg { width: 14px; height: 14px; }

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

.partner-benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.375rem 1.5rem;
  background: var(--gold-tint);
  border-radius: var(--radius);
}

.partner-benefit-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.partner-benefit p { font-size: 0.9rem; color: var(--text-muted); max-width: none; line-height: 1.62; }

@media (max-width: 560px) { .partner-benefits { grid-template-columns: 1fr; } }

/* ============================================================
   CTA BLOCK
   ============================================================ */

.cta-block {
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(oklch(73% 0.115 85 / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, oklch(73% 0.115 85 / 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.cta-inner h2    { color: var(--warm-white); margin-bottom: 1.25rem; }
.cta-inner p     { color: oklch(93% 0.01 258 / 0.62); font-size: 1.05rem; line-height: 1.78; max-width: none; margin-bottom: 2.25rem; }
.cta-actions     { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--navy-deep);
  padding: clamp(4rem, 8vw, 6rem) 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.25fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: oklch(93% 0.01 258 / 0.42);
  line-height: 1.72;
  max-width: 30ch;
  margin-top: 1rem;
}

.footer-tagline-text {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0.75rem 0 1rem;
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.375rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: oklch(93% 0.01 258 / 0.48);
  transition: color var(--t-fast);
}

.footer-links a:hover { color: var(--warm-white); }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.875rem;
}

.footer-contact-icon {
  display: flex;
  align-items: flex-start;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-icon svg { width: 14px; height: 14px; flex-shrink: 0; }

.footer-contact-text {
  font-size: 0.875rem;
  color: oklch(93% 0.01 258 / 0.48);
}

.footer-contact-text a { transition: color var(--t-fast); }
.footer-contact-text a:hover { color: var(--warm-white); }

.footer-divider {
  height: 1px;
  background: oklch(99% 0.003 90 / 0.07);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy     { font-size: 0.8rem; color: oklch(93% 0.01 258 / 0.28); }
.footer-tagline-bottom { font-size: 0.7rem; color: oklch(70% 0.10 82 / 0.45); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }

@media (max-width: 960px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   UTILITIES
   ============================================================ */

.text-center  { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }
.on-dark h2, .on-dark h3 { color: var(--warm-white); }
.on-dark .eyebrow { color: var(--gold); }
.on-dark .title-rule { background: var(--gold); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Reveal animation disabled */
.reveal, .js .reveal  { opacity: 1; transform: none; transition: none; }
.reveal.visible       { opacity: 1; transform: none; }
.reveal-delay-1,
.reveal-delay-2,
.reveal-delay-3       { transition-delay: 0s; }

/* ============================================================
   LOGO — navbar + footer
   ============================================================ */

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }

.nav-logo-wrap {
  overflow: hidden;
  height: 66px;
  display: flex;
  align-items: flex-start;
  background: transparent;
  padding: 0;
  box-shadow: none;
  transition: opacity var(--t-fast);
}

.nav-logo-wrap:hover { opacity: 0.75; }

/* Image taller than container — clips the tagline at bottom, shows EG mark + ELVA + GLOBAL */
.nav-logo-wrap img { height: 80px; width: auto; display: block; flex-shrink: 0; }

.footer-logo {
  display: inline-block;
  background: oklch(99.5% 0.003 90);
  padding: 1.5rem 1.75rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.75rem;
}

.footer-logo-img {
  height: 120px;
  width: auto;
  display: block;
}

/* ============================================================
   TESTIMONIALS — LIGHT VARIANT (matches brochure white tone)
   ============================================================ */

.testimonials-section.light              { background: var(--cream); }
.testimonials-section.light .testimonial-card {
  background: var(--warm-white);
  border-color: var(--border);
}
.testimonials-section.light .testimonial-mark  { color: var(--gold); opacity: 0.65; }
.testimonials-section.light .testimonial-text  { color: var(--text-muted); }
.testimonials-section.light h2                 { color: var(--navy); }
.testimonials-section.light .eyebrow           { color: var(--gold); }
.testimonials-section.light .title-rule        { background: var(--gold); }
