@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --gold: #B8860B;
  --gold-light: #D4A017;
  --dark: #0D1117;
  --dark2: #161B22;
  --dark3: #1F2937;
  --text: #F0EAD6;
  --muted: #9CA3AF;
  --white: #FFFFFF;
  --nav-h: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  padding-top: var(--nav-h);
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════ NAVIGATION ════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-h);
  background: rgba(13,17,23,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184,134,11,0.28);
  z-index: 9000;
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;

  min-width: 0;
  overflow: hidden;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0 !important;
}
.nav-logo img { height: 36px; width: auto; object-fit: contain; display: block; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-logo-text span { color: var(--text); font-weight: 400; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 0.35rem;

  min-width: 0;
  overflow: hidden;
}
.nav-links a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  min-width: 0;
  flex-shrink: 0;
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
  background: rgba(184,134,11,0.1);
}
.nav-cta {
  flex-shrink: 0 !important;
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.48rem 1.15rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.04em;
  transition: background 0.18s, transform 0.18s;
  border: none;
  cursor: pointer;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: background 0.18s;
}
.nav-hamburger:hover { background: rgba(184,134,11,0.1); }
.nav-hamburger .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer — uses max-height animation, NO display:none fight */
.nav-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 8999;
  background: rgba(13,17,23,0.99);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184,134,11,0.22);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.4,0,0.2,1), padding 0.28s ease;
}
.nav-drawer.is-open {
  max-height: 420px;
  padding: 0.75rem 1.5rem 1.5rem;
}
.nav-drawer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.2rem; }
.nav-drawer ul a {
  display: block;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.18s, background 0.18s;
}
.nav-drawer ul a:hover, .nav-drawer ul a.active {
  color: var(--gold-light);
  background: rgba(184,134,11,0.1);
}
.nav-drawer .drawer-cta {
  display: block;
  margin-top: 0.75rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.18s;
}
.nav-drawer .drawer-cta:hover { background: var(--gold-light); }

/* ════════════ SHARED ════════════ */
.section {
  padding: 4rem 2rem;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}
.section-label { font-size: 0.72rem; font-weight: 500; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.75rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; line-height: 1.25; }
.section-sub { color: var(--muted); font-size: 0.95rem; line-height: 1.8; max-width: 580px; font-weight: 300; }
.divider { height: 1px; background: rgba(255,255,255,0.07); max-width: 1140px; margin: 0 auto; }
.btn-primary { display: inline-block; background: var(--gold); color: var(--dark); font-size: 0.9rem; font-weight: 600; padding: 0.85rem 2rem; border-radius: 8px; border: none; letter-spacing: 0.03em; text-decoration: none; cursor: pointer; transition: background 0.18s, transform 0.18s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { display: inline-block; background: transparent; color: var(--gold-light); font-size: 0.9rem; font-weight: 500; padding: 0.85rem 2rem; border-radius: 8px; border: 1px solid rgba(184,134,11,0.5); letter-spacing: 0.03em; text-decoration: none; transition: background 0.18s; }
.btn-outline:hover { background: rgba(184,134,11,0.1); }
.cta-strip { background: linear-gradient(135deg,rgba(184,134,11,0.14),rgba(184,134,11,0.04)); border: 1px solid rgba(184,134,11,0.25); border-radius: 16px; padding: 3rem 2rem; text-align: center; }
.wa-btn { display: flex; align-items: center; justify-content: center; gap: 0.6rem; background: #25D366; color: #fff; font-size: 0.88rem; font-weight: 500; padding: 0.8rem 1.5rem; border-radius: 8px; border: none; width: 100%; margin-top: 0.75rem; text-decoration: none; transition: background 0.18s, transform 0.18s; }
.wa-btn:hover { background: #22c55e; transform: translateY(-1px); }
.img-placeholder { background: var(--dark3); border: 1px solid rgba(184,134,11,0.2); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; color: var(--muted); font-size: 0.82rem; }
.img-placeholder .icon { font-size: 2rem; opacity: 0.4; }

/* ════════════ FOOTER ════════════ */
footer { background: var(--dark2); border-top: 1px solid rgba(255,255,255,0.07); padding: 2.5rem 2rem; text-align: center; }
footer p { font-size: 0.82rem; color: var(--muted); }
.footer-logo img { height: 44px; width: auto; margin: 0 auto 0.75rem; opacity: 0.9; display: block; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--gold-light); margin-bottom: 0.5rem; }

/* ════════════ HERO ════════════ */
.hero { background: linear-gradient(135deg,#0D1117 0%,#1a1f2e 50%,#0D1117 100%); padding: 5rem 2rem 4rem; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%,rgba(184,134,11,0.13) 0%,transparent 65%); pointer-events: none; }
.hero-badge { display: inline-block; background: rgba(184,134,11,0.15); border: 1px solid rgba(184,134,11,0.4); color: var(--gold-light); font-size: 0.75rem; font-weight: 500; padding: 0.35rem 1rem; border-radius: 20px; margin-bottom: 1.5rem; letter-spacing: 0.08em; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,5vw,3.5rem); font-weight: 700; line-height: 1.15; margin-bottom: 1.25rem; color: var(--white); }
.hero h1 span { color: var(--gold-light); }
.hero p { font-size: 1.05rem; color: var(--muted); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.75; font-weight: 300; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ════════════ STATS ════════════ */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
.stat-card { background: var(--dark2); border: 1px solid rgba(184,134,11,0.2); border-radius: 12px; padding: 1.5rem; text-align: center; }
.stat-card .num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold-light); margin-bottom: 0.25rem; }
.stat-card .label { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.05em; }

/* ════════════ APPROACH + VIDEO ════════════ */
.approach-section { padding: 4rem 2rem; max-width: 1140px; margin: 0 auto; width: 100%; }
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; width: 100%; }
.approach-text { min-width: 0; }

/* Video card — self-contained, all children clipped inside */
.video-card {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: var(--dark3);
  box-shadow:
    0 0 0 1px rgba(184,134,11,0.2),
    0 6px 30px rgba(0,0,0,0.55),
    0 16px 60px rgba(0,0,0,0.4),
    0 0 90px rgba(184,134,11,0.09),
    0 0 180px rgba(184,134,11,0.04);
}
.video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(155deg,rgba(184,134,11,0.07) 0%,transparent 38%,transparent 62%,rgba(0,0,0,0.28) 100%);
  pointer-events: none;
  z-index: 1;
}
.video-card video {
  width: 100% !important;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.video-mute-btn {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 2;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(13,17,23,0.72);
  border: 1.5px solid rgba(184,134,11,0.45);
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}
.video-mute-btn:hover { background: rgba(184,134,11,0.25); border-color: rgba(184,134,11,0.75); }

/* ════════════ PILLARS ════════════ */
.pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.pillar { background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 1.5rem; }
.pillar .ico { width: 40px; height: 40px; background: rgba(184,134,11,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.2rem; }
.pillar h3 { font-size: 1rem; font-weight: 500; color: var(--white); margin-bottom: 0.4rem; }
.pillar p  { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

/* ════════════ ABOUT ════════════ */
.about-hero { background: var(--dark2); padding: 4rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.about-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; align-items: start; }
.mentor-tag { display: inline-block; background: rgba(184,134,11,0.15); border: 1px solid rgba(184,134,11,0.3); color: var(--gold-light); font-size: 0.72rem; padding: 0.3rem 0.9rem; border-radius: 20px; margin-bottom: 1rem; letter-spacing: 0.08em; }
.timeline { margin-top: 2rem; position: relative; padding-left: 1.5rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: rgba(184,134,11,0.25); }
.tl-item { position: relative; margin-bottom: 2rem; padding-left: 1.2rem; }
.tl-item::before { content: ''; position: absolute; left: -1.55rem; top: 0.4rem; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); border: 2px solid var(--dark); }
.tl-item .year { font-size: 0.72rem; font-weight: 500; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.tl-item h4 { font-size: 0.95rem; font-weight: 500; color: var(--white); margin-bottom: 0.3rem; }
.tl-item p  { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

/* ════════════ SERVICES ════════════ */
.services-hero { background: var(--dark2); padding: 4rem 2rem 3rem; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.06); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.service-card { background: var(--dark2); border: 1px solid rgba(184,134,11,0.15); border-radius: 14px; padding: 2rem; transition: border-color 0.22s, transform 0.22s; }
.service-card:hover { border-color: rgba(184,134,11,0.45); transform: translateY(-3px); }
.service-card .s-icon { width: 48px; height: 48px; background: rgba(184,134,11,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; }
.service-card h3 { font-size: 1.05rem; font-weight: 500; color: var(--white); margin-bottom: 0.5rem; }
.service-card p  { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }
.process { background: var(--dark2); border-top: 1px solid rgba(255,255,255,0.06); padding: 4rem 2rem; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1140px; margin: 2.5rem auto 0; }
.step { padding: 1.5rem; text-align: center; }
.step .num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: rgba(184,134,11,0.25); line-height: 1; margin-bottom: 0.75rem; }
.step h4 { font-size: 0.95rem; font-weight: 500; color: var(--white); margin-bottom: 0.4rem; }
.step p  { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* ════════════ CONTACT ════════════ */
.contact-hero { background: var(--dark2); padding: 4rem 2rem 3rem; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.06); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1000px; margin: 0 auto; align-items: start; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 1rem; }
.contact-info p  { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.info-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.info-icon { width: 36px; height: 36px; background: rgba(184,134,11,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.info-text .t { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.06em; font-weight: 500; margin-bottom: 0.2rem; }
.info-text .v  { font-size: 0.9rem; color: var(--muted); }
.contact-form-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 2rem; }
.google-form-wrap { border-radius: 12px; overflow: hidden; background: #fff; }
.google-form-wrap iframe { display: block; width: 100%; height: 820px; border: none; }

html, body {
  overflow-x: hidden;
  width: 100%;
}

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

img, video, iframe {
  max-width: 100%;
  display: block;
}

/* ════════════ BREAKPOINTS ════════════ */
@media (min-width: 1200px) {
  .section, .approach-section { padding: 5rem 2rem; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-links a { padding: 0.45rem 0.75rem; font-size: 0.8rem; }
  .nav-cta { font-size: 0.78rem; padding: 0.45rem 0.9rem; }
  .nav-hamburger { display: none; }
  .stats-grid { grid-template-columns: repeat(4,1fr); }
  .approach-grid { gap: 2.5rem; }
  .pillars { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr 1.4fr; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-inner { padding: 0 1.25rem; }
  .nav-links { display: none !important; }
  .nav-cta   { display: none !important;; }
  .nav-hamburger { display: flex !important;; }
  .section, .approach-section { padding: 3rem 1.25rem; }
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .hero p { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { width: 100%; max-width: 320px; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .stat-card { padding: 1.25rem 1rem; }
  .stat-card .num { font-size: 1.8rem; }
  .approach-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pillars { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .pillar { padding: 1.25rem; }
  .about-hero, .services-hero, .contact-hero { padding: 3rem 1.25rem 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form-card { padding: 1.5rem; }
  .google-form-wrap iframe { height: 880px; }
  .cta-strip { padding: 2rem 1.25rem; }
  footer { padding: 2rem 1.25rem; }
}
@media (max-width: 480px) {
  .nav-inner { padding: 0 1rem; }
  .stats-grid { gap: 0.75rem; }
  .stat-card .num { font-size: 1.6rem; }
  .pillars { grid-template-columns: 1fr; gap: 1rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(1.7rem,7.5vw,2.4rem); }
  .section-title { font-size: clamp(1.4rem,5.5vw,2rem); }
  .google-form-wrap iframe { height: 940px; }
}
@media (max-width: 360px) {
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}