*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #2c2c2c;
  --navy-mid:  #3d3d3d;
  --teal:      #c49a38;
  --teal-light:#d4aa48;
  --gold:      #8b6914;
  --white:     #ffffff;
  --off-white: #fdf9f0;
  --gray-50:   #f8fafc;
  --gray-100:  #f1f5f9;
  --gray-300:  #cbd5e1;
  --gray-500:  #64748b;
  --gray-700:  #334155;
  --font: 'Inter', sans-serif;
  --radius: 10px;
  --shadow: 0 2px 16px rgba(44,44,44,.05);
  --shadow-md: 0 4px 24px rgba(44,44,44,.07);
  --shadow-lg: 0 8px 40px rgba(44,44,44,.1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--navy); background: var(--white); }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }

/* ─── HEADER ─────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 100;
  background: white;
  border-bottom: 2px solid var(--gray-100);
  box-shadow: 0 1px 12px rgba(44,44,44,.03);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 76px;
}

/* Logo — replaced with PNG for gold theme */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 210px; height: 42px;
  background: url('images/logo-gold.png') no-repeat left center / contain;
}
.logo-icon svg { display: none; }
.logo-text-wrap { display: none; }

/* Nav */
/* nav { display: flex; align-items: center; gap: 4px; } */
nav a {
  font-size: 14px; font-weight: 500; color: var(--gray-700);
  padding: 8px 16px; border-radius: 8px;
  transition: color .2s, background .2s;
}
nav a:hover { color: var(--navy); background: var(--off-white); }
nav a.active { color: var(--navy); font-weight: 600; }
.btn-nav-contact {
  font-size: 14px !important; font-weight: 600 !important;
  background: var(--navy) !important; color: white !important;
  padding: 8px 20px !important; border-radius: 8px !important;
  transition: background .2s !important;
}
.btn-nav-contact:hover { background: var(--navy-mid) !important; }

/* ─── HERO SLIDER ────────────────────────── */
.hero-slider {
  position: relative; overflow: hidden;
  height: 600px;
}
.hs-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
  background-color: #1a1a1a;
}
.hs-slide.hs-active { opacity: 1; }
.hs-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(10,18,40,.72) 0%,
    rgba(10,18,40,.52) 55%,
    rgba(10,18,40,.2) 100%
  );
}
.hs-content {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 960px; padding: 0 64px; text-align: left;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,154,56,.18); border: 1px solid rgba(196,154,56,.35);
  color: #d4aa48; font-size: 12px; font-weight: 600; letter-spacing: .5px;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px; width: fit-content;
}
.hs-content h1 {
  font-size: clamp(32px, 4.5vw, 56px); font-weight: 800;
  color: white; line-height: 1.1; margin-bottom: 20px; letter-spacing: -.5px;
}
.hs-content h1 span { color: var(--teal); }
.hs-content p {
  font-size: 17px; color: rgba(255,255,255,.7);
  line-height: 1.75; max-width: 740px; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hs-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: white; border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.hs-arrow:hover { background: rgba(255,255,255,.25); }
.hs-prev { left: 20px; }
.hs-next { right: 20px; }
.hs-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 20;
}
.hs-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none; cursor: pointer;
  transition: background .25s, transform .25s; padding: 0;
}
.hs-dot.hs-dot-active { background: var(--teal); transform: scale(1.3); }
.btn-primary {
  background: var(--teal); color: white;
  padding: 14px 32px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  box-shadow: 0 4px 14px rgba(196,154,56,.2);
  transition: background .2s;
}
.btn-primary:hover { background: #3b82f6; }
.btn-outline {
  background: white; color: var(--navy);
  padding: 13px 32px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  border: 1.5px solid var(--gray-300);
  transition: all .2s;
}
.btn-outline:hover { border-color: var(--navy); background: var(--gray-50); }

/* ─── SECTION COMMONS ────────────────────── */
.section { padding: 88px 32px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--teal);
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.section-label::before {
  content: ''; width: 20px; height: 2px; background: var(--teal); border-radius: 2px;
}
.section-title {
  font-size: clamp(26px, 3vw, 40px); font-weight: 800;
  color: #000; line-height: 1.15; margin-bottom: 14px;
  letter-spacing: -.3px;
}
.section-sub {
  font-size: 16px; color: var(--gray-500); line-height: 1.75;
  max-width: 580px; margin-bottom: 52px;
}

/* ─── CARDS ──────────────────────────────── */
.cards-section { background: white; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: transform .25s, box-shadow .25s;
  background: white;
  position: relative;
}
.card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.card:hover::after { transform: scaleX(1); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 22px 22px 26px; }
.card-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--teal); margin-bottom: 8px;
}
.card-title { font-size: 17px; font-weight: 700; color: #000; margin-bottom: 10px; }
.card-text  { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 20px; }
.btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--teal);
  transition: gap .2s;
}
.btn-link:hover { gap: 10px; }
.btn-link svg { width: 16px; height: 16px; }

/* ─── ABOUT / FUTURE ─────────────────────── */
.about { background: var(--off-white); }
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.about-img {
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md);
  position: relative;
}
.about-img::before {
  content: ''; position: absolute; inset: -8px; z-index: -1;
  background: var(--teal); border-radius: 20px; opacity: .1;
}
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about h2 { font-size: clamp(24px, 2.8vw, 36px); font-weight: 800; color: #000; line-height: 1.25; margin-bottom: 18px; letter-spacing: -.3px; }
.about h2 em { color: var(--teal); font-style: normal; }
.about p { font-size: 15px; color: var(--gray-500); line-height: 1.8; margin-bottom: 14px; }
.check-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--gray-700); background: white;
  padding: 10px 14px; border-radius: 8px;
  border-left: 3px solid var(--teal);
  box-shadow: var(--shadow);
}
.check-list li svg { width: 16px; height: 16px; min-width: 16px; margin-top: 1px; stroke: var(--teal); }

/* ─── STATS ──────────────────────────────── */
.stats {
  background: linear-gradient(135deg, #fdf9f0 0%, #f0e4c4 100%);
  padding: 72px 32px;
}
.stats-inner { max-width: 1200px; margin: 0 auto; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--gray-300);
  border-radius: 16px; overflow: hidden;
}
.stat-item {
  text-align: center; padding: 40px 20px;
  background: white;
  transition: background .2s;
}
.stat-item:hover { background: var(--off-white); }
.stat-number { font-size: 48px; font-weight: 800; color: #000; line-height: 1; margin-bottom: 8px; }
.stat-number span { color: var(--teal); }
.stat-label { font-size: 13px; color: var(--gray-500); line-height: 1.5; }
.stats-title { font-size: clamp(22px, 2.8vw, 34px); font-weight: 800; color: #000; text-align: center; margin-bottom: 40px; letter-spacing: -.3px; }

/* ─── COURSES ─────────────────────────────── */
.courses-section { background: var(--gray-50); }
.courses-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.course-card {
  border-radius: var(--radius); overflow: hidden; display: flex;
  border: 1px solid var(--gray-100); box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s; background: white;
}
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.course-img { width: 160px; min-width: 160px; overflow: hidden; position: relative; }
.course-img img { width: 100%; height: 100%; object-fit: cover; }
.course-body { padding: 22px; display: flex; flex-direction: column; border-left: 3px solid var(--gray-100); transition: border-color .2s; }
.course-card:hover .course-body { border-left-color: var(--teal); }
.course-level { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.course-title { font-size: 15px; font-weight: 700; color: #000; margin-bottom: 8px; line-height: 1.35; }
.course-desc  { font-size: 13px; color: var(--gray-500); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.course-footer { display: flex; align-items: center; justify-content: space-between; }
.course-meta  { font-size: 11px; color: var(--gray-500); }
.btn-sm {
  background: var(--navy); color: white;
  padding: 7px 16px; border-radius: 6px;
  font-size: 12px; font-weight: 600;
  transition: background .2s;
}
.btn-sm:hover { background: var(--teal); }
.course-coming-soon {
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--gray-500); border: 1.5px solid var(--gray-500);
  padding: 5px 12px; border-radius: 20px; opacity: .7;
}
.courses-more { text-align: center; margin-top: 40px; }

/* ─── EVENTS ──────────────────────────────── */
.events-section { background: white; }
.event-card {
  border-radius: 16px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-100);
}
.event-img { overflow: hidden; }
.event-img img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.event-body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; background: var(--off-white); }
.event-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--gold); background: rgba(245,158,11,.1);
  display: inline-block; padding: 5px 12px; border-radius: 6px; margin-bottom: 16px; align-self: flex-start;
}
.event-title { font-size: 22px; font-weight: 800; color: #000; line-height: 1.3; margin-bottom: 16px; letter-spacing: -.2px; }
.event-desc  { font-size: 15px; color: var(--gray-500); line-height: 1.75; margin-bottom: 28px; }
.event-meta  { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.event-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gray-500); }
.event-meta-item svg { width: 14px; height: 14px; stroke: var(--teal); flex-shrink: 0; }
.event-topics { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.event-topic-pill {
  font-size: 11px; font-weight: 600; letter-spacing: .5px;
  padding: 4px 12px; border-radius: 20px;
  background: rgba(180,140,60,.12); color: var(--gold); border: 1px solid rgba(180,140,60,.3);
}

/* ─── MEMBERSHIP ─────────────────────────── */
.membership-section { background: var(--off-white); }
.membership-section .section-title { color: var(--navy); }
.membership-section .section-sub { color: var(--gray-500); }
.membership-section .section-label { color: var(--teal); }
.membership-section .section-label::before { background: var(--teal); }
.membership-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.membership-img { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.membership-img img { width: 100%; height: 460px; object-fit: cover; }
.benefits { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.benefit {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; border-radius: 10px;
  background: white;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  transition: all .2s;
}
.benefit:hover { background: var(--off-white); border-color: var(--teal); }
.benefit-icon {
  width: 38px; height: 38px; min-width: 38px; border-radius: 8px;
  background: rgba(8,145,178,.12);
  display: flex; align-items: center; justify-content: center;
}
.benefit-icon svg { width: 18px; height: 18px; stroke: var(--teal); }
.benefit-title { font-size: 14px; font-weight: 700; color: #000; margin-bottom: 3px; }
.benefit-desc  { font-size: 13px; color: var(--gray-500); line-height: 1.5; }
.membership-cta { margin-top: 32px; }

/* ─── CTA BAND ────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #2c2c2c 0%, #3d3d3d 100%);
  padding: 80px 32px; text-align: center; color: white;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle 400px at 80% 50%, rgba(255,255,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(26px, 3vw, 42px); font-weight: 800; margin-bottom: 14px; position: relative; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.8); max-width: 480px; margin: 0 auto 36px; line-height: 1.7; position: relative; }
.btn-white {
  display: inline-block; background: white; color: var(--navy);
  padding: 14px 36px; border-radius: 8px;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 4px 20px rgba(44,44,44,.1);
  transition: background .2s;
  position: relative;
}
.btn-white:hover { background: #fdf9f0; }

/* ─── FOOTER ──────────────────────────────── */
footer { background: #1a1a1a; color: rgba(255,255,255,.6); padding: 64px 32px 32px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 13px; line-height: 1.75; margin: 16px 0 20px; max-width: 260px; }
.footer-logo-name { font-size: 16px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: white; }
.footer-logo-name span { color: var(--teal); }
.footer-logo-sub { font-size: 8px; letter-spacing: 2.5px; text-transform: uppercase; opacity: .4; margin-top: 3px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px; background: rgba(255,255,255,.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.social-link:hover { background: var(--teal); }
.social-link svg { width: 16px; height: 16px; fill: white; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.footer-bottom p   { font-size: 12px; color: rgba(255,255,255,.3); max-width: 640px; line-height: 1.6; }
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,.3); white-space: nowrap; }

/* ─── THEME TOGGLE ─────────────────────── */
.theme-toggle-fixed {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  background: white; color: var(--navy);
  border: 1px solid rgba(196,154,56,.4);
  padding: 10px 14px; border-radius: 6px;
  font-size: 12px; font-weight: 600;
  cursor: pointer; transition: all .2s;
  box-shadow: 0 4px 12px rgba(44,44,44,.08);
}
.theme-toggle-fixed:hover {
  background: var(--off-white);
  border-color: var(--teal);
  box-shadow: 0 6px 16px rgba(196,154,56,.12);
}

/* ─── PAGE HERO ──────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #fdf9f0 0%, #e0f2fe 50%, #dbeafe 100%);
  padding: 72px 32px 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero-inner { max-width: 720px; margin: 0 auto; position: relative; }
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: #000; line-height: 1.15; margin: 12px 0 16px; letter-spacing: -.3px; }
.page-hero h1 span { color: var(--teal); }
.page-hero p { font-size: 16px; color: var(--gray-500); line-height: 1.75; max-width: 540px; margin: 0 auto; }

/* ─── TEAM ───────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 8px; }
.team-card { background: white; border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 24px 20px; text-align: center; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.team-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--teal); color: white; font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.team-name { font-size: 15px; font-weight: 700; color: #000; margin-bottom: 3px; }
.team-role { font-size: 11px; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 10px; }
.team-bio { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ─── PRICING ────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 8px; }
.pricing-card { background: white; border: 1px solid var(--gray-100); border-radius: 12px; padding: 28px 24px; display: flex; flex-direction: column; gap: 6px; position: relative; box-shadow: var(--shadow); }
.pricing-card--featured { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal), var(--shadow-md); }
.pricing-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--teal); color: white; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }
.pricing-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--gray-500); }
.pricing-price { font-size: 38px; font-weight: 800; color: #000; line-height: 1; margin: 4px 0 6px; }
.pricing-price span { font-size: 15px; font-weight: 500; color: var(--gray-500); }
.pricing-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 8px; }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; margin-bottom: 20px; }
.pricing-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--gray-700); }
.pricing-list li svg { width: 14px; min-width: 14px; height: 14px; margin-top: 2px; stroke: var(--teal); }

/* ─── TESTIMONIALS ───────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 8px; }
.testimonial-card { background: var(--off-white); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 24px; }
.testimonial-text { font-size: 14px; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--teal); color: white; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-name { font-size: 13px; font-weight: 700; color: #000; }
.testimonial-role { font-size: 12px; color: var(--gray-500); }

/* ─── CONTACT ────────────────────────────── */
.contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.contact-form-wrap { background: white; border: 1px solid var(--gray-100); border-radius: 12px; padding: 36px; box-shadow: var(--shadow); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--gray-700); text-transform: uppercase; letter-spacing: .5px; }
.form-group input, .form-group select, .form-group textarea {
  padding: 10px 14px; border-radius: 8px; border: 1px solid var(--gray-300);
  font-family: var(--font); font-size: 14px; color: var(--navy);
  background: var(--gray-50); transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(196,154,56,.12);
}
.form-group textarea { resize: vertical; }
.contact-info { display: flex; flex-direction: column; gap: 4px; }
.contact-info-block { display: flex; align-items: flex-start; gap: 14px; padding: 16px; border-radius: 10px; background: var(--off-white); border: 1px solid var(--gray-100); }
.contact-info-icon { width: 36px; height: 36px; min-width: 36px; border-radius: 8px; background: rgba(196,154,56,.12); display: flex; align-items: center; justify-content: center; }
.contact-info-icon svg { width: 16px; height: 16px; stroke: var(--teal); }
.contact-info-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--gray-500); margin-bottom: 2px; }
.contact-info-value { font-size: 14px; font-weight: 600; color: var(--navy); }
.contact-social { padding: 16px; }

/* ─── FAQ ────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 8px; }
.faq-item { background: white; border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow); }
.faq-q { font-size: 14px; font-weight: 700; color: #000; margin-bottom: 8px; }
.faq-a { font-size: 13px; color: var(--gray-500); line-height: 1.65; }

/* ─── FILTER BAR ─────────────────────────── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn { padding: 7px 16px; border-radius: 20px; border: 1px solid var(--gray-300); background: white; font-family: var(--font); font-size: 13px; font-weight: 500; color: var(--gray-700); cursor: pointer; transition: all .2s; }
.filter-btn.active, .filter-btn:hover { background: var(--teal); color: white; border-color: var(--teal); }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .about-inner, .membership-inner { grid-template-columns: 1fr; }
  .about-img, .membership-img { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
/* ─── BURGER ──────────────────────────────── */
.burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 8px;
  background: none; border: none; cursor: pointer;
}
.burger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--navy); transition: all .25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── NEWS ───────────────────────────────── */
.news-filters {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px;
}
.news-filter {
  background: var(--gray-50); border: 1.5px solid var(--gray-100);
  color: var(--gray-700); font-size: 13px; font-weight: 600;
  padding: 7px 18px; border-radius: 20px; cursor: pointer;
  font-family: var(--font); transition: all .2s;
}
.news-filter:hover { border-color: var(--teal); color: var(--teal); }
.news-filter.active { background: var(--teal); border-color: var(--teal); color: white; }
.news-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px;
}
.news-card {
  background: var(--off-white); border: 1px solid var(--gray-100);
  border-radius: 14px; padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow .2s, transform .2s;
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.news-card-meta { display: flex; align-items: center; justify-content: space-between; }
.news-source {
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--teal);
}
.news-date { font-size: 12px; color: var(--gray-500); }
.news-title { font-size: 16px; font-weight: 700; line-height: 1.4; flex: 1; }
.news-title a { color: var(--navy); transition: color .2s; }
.news-title a:hover { color: var(--teal); }
.news-excerpt { font-size: 13px; color: var(--gray-500); line-height: 1.65; }
.news-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.news-tag {
  font-size: 11px; font-weight: 600; color: var(--gray-500);
  background: var(--gray-100); padding: 4px 10px; border-radius: 12px;
}
.news-read-more { font-size: 13px; font-weight: 600; color: var(--teal); transition: opacity .2s; }
.news-read-more:hover { opacity: .75; }

/* ─── BLOG ───────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px;
}
.blog-card {
  background: var(--off-white); border: 1px solid var(--gray-100);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img { position: relative; height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-category {
  position: absolute; top: 14px; left: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  background: var(--teal); color: white;
  padding: 5px 12px; border-radius: 20px;
}
.blog-card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-meta { display: flex; gap: 12px; font-size: 12px; color: var(--gray-500); }
.blog-author { font-weight: 600; }
.blog-title { font-size: 17px; font-weight: 700; line-height: 1.35; color: var(--navy); }
.blog-excerpt { font-size: 13px; color: var(--gray-500); line-height: 1.65; flex: 1; }

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .burger { display: flex; }
  nav {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 76px; left: 0; right: 0;
    background: white; padding: 12px 16px 16px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: 0 8px 24px rgba(44,44,44,.07);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  nav.open { opacity: 1; transform: translateY(0); pointer-events: all; }
  nav a { padding: 10px 14px; border-radius: 8px; font-size: 15px; }
  .btn-nav-contact { text-align: center; margin-top: 4px; }
  .cards { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .course-card { flex-direction: column; }
  .course-img { width: 100%; height: 160px; }
  .event-card { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-slider { height: 520px; }
  .hs-content { padding: 0 24px; }
  .hs-content h1 { font-size: 28px; }
  .hs-prev { left: 10px; }
  .hs-next { right: 10px; }
}
