/* ============================================================
   RSDI — Rekart Automobile Skill Development Institute
   Shared Stylesheet · Poppins · Black / Yellow / White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
  --yellow: #FFD11A;
  --yellow-soft: #FFE68A;
  --yellow-pale: #FBF2D0;
  --ink: #111111;
  --ink-soft: #2a2a2a;
  --paper: #FDFBF3;
  --white: #ffffff;
  --grey: #6b6b6b;
  --grey-light: #f0efeb;
  --radius: 18px;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --font: 'Poppins', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }
input, select, textarea, button { font: inherit; }

/* ---------- layout ---------- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 clamp(18px, 5vw, 80px); }

/* Course browsing and enrolment. */
.home-courses > .wrap { max-width: 1520px; padding-inline: 32px; }
.linked-course-card { position: relative; }
.course-card-link::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.linked-course-card .course-card-link:hover { transform: none; }
.linked-course-card:focus-within { outline: 3px solid #846600; outline-offset: 5px; }
.home-departments, .home-testimonials { background: #fff; color: #111; }
.home-departments .section-head *, .home-testimonials .section-head * { color: #111; }
.section .feature-card, .section .feature-card h3, .section .feature-card p { color: #111; }
.feature-icon .lucide { width: 28px; height: 28px; stroke-width: 1.8; }
.home-testimonials .tst-card { background: #111; color: #fff; border-radius: 8px; }
.home-testimonials .tst-card p, .home-testimonials .tst-card strong { color: #fff; }
.home-testimonials .tst-card em { color: #d6d6d6; }
.home-testimonials .tst-card figcaption img { border-color: #ffd11a; }
.course-intro { padding: 24px 0 48px; background: #fff; color: #111; border-bottom: 1px solid #ddd; }
.course-intro .wrap { max-width: 1320px; padding-inline: 32px; }
.breadcrumbs ol { display: flex; gap: 10px; flex-wrap: wrap; list-style: none; margin: 0 0 24px; padding: 0; font-size: .78rem; }
.breadcrumbs li { display: flex; gap: 10px; align-items: baseline; }
.breadcrumbs li + li::before { content: '/'; color: #777; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 3px; }
.breadcrumbs [aria-current] { color: #555; }
.course-gallery { width: min(100%, 100vw); }
@media (min-width: 901px) {
  .course-gallery { width: calc(100vw - 64px); margin-left: 50%; transform: translateX(-50%); }
}
.gallery-stage { position: relative; background: #eee; overflow: hidden; border-radius: 8px; }
.gallery-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-x: contain; }
.gallery-track::-webkit-scrollbar { display: none; }
.course-slide { flex: 0 0 100%; width: 100%; margin: 0; scroll-snap-align: start; scroll-snap-stop: always; aspect-ratio: 16 / 7; max-height: 720px; min-height: 460px; }
.course-slide img { width: 100%; height: 100%; object-fit: cover; background: #eee; }
.gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border: 1px solid #ddd; border-radius: 50%; display: grid; place-items: center; background: #fff; color: #111; cursor: pointer; }
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-arrow:hover { background: #ffd11a; }
.gallery-count { position: absolute; right: 16px; bottom: 16px; background: #111; color: #fff; padding: 5px 12px; border-radius: 4px; font-size: .8rem; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-top: 12px; }
.gallery-thumb { width: 100%; aspect-ratio: 16 / 7; padding: 3px; background: #fff; border: 2px solid transparent; border-radius: 5px; overflow: hidden; cursor: pointer; }
.gallery-thumb[aria-pressed="true"] { border-color: #111; background: #ffd11a; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.course-summary { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 48px; margin-top: 34px; align-items: start; }
.course-summary h1 { font-size: 2.2rem; line-height: 1.2; letter-spacing: 0; margin: 0 0 16px; color: #111; overflow-wrap: anywhere; }
.course-summary .lead { color: #444; font-size: 1rem; margin: 0 0 20px; text-align: left; }
.course-key-points { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; font-size: .78rem; line-height: 1.25; }
.course-key-points li { display: inline-flex; align-items: center; gap: 7px; min-height: 34px; padding: 7px 12px; border: 2px solid #111; border-radius: 999px; background: var(--yellow); color: #111; font-weight: 800; box-shadow: none; }
.course-key-points .lucide { width: 17px; height: 17px; flex: none; stroke-width: 2.4; }
.course-enrol { border-left: 1px solid #ddd; padding-left: 28px; }
.course-duration { display: flex; gap: 8px; align-items: center; font-weight: 600; font-size: .95rem; }
.course-duration svg { width: 19px; height: 19px; }
.course-price { font-size: 2rem; font-weight: 800; margin-top: 16px; }
.course-price small { display: block; font-size: .8rem; color: #555; font-weight: 400; }
.course-admission { margin: 12px 0 20px; border: 1.5px solid #ddd; border-radius: 8px; background: #fff; }
.course-admission summary { cursor: pointer; padding: 10px 12px; font-size: .78rem; font-weight: 800; color: #111; list-style-position: inside; }
.course-admission ul, .admission-breakdown ul { list-style: none; display: grid; gap: 6px; padding: 0 14px 12px; font-size: .78rem; color: #555; }
.course-admission li, .admission-breakdown li { display: flex; justify-content: space-between; gap: 10px; }
.admission-breakdown summary { cursor: pointer; font-weight: 800; color: #111; }
.admission-breakdown p { margin: 8px 0; }
.admission-breakdown ul { padding: 0; }
.course-enrol .btn { width: 100%; justify-content: center; }
.btn .lucide { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-course-apply { display: none; }
.shine-btn { position: relative; isolation: isolate; overflow: hidden; }
.shine-btn::before { content: ''; position: absolute; inset: -60% auto -60% -45%; width: 38%; transform: rotate(18deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent); animation: shineSweep 2.2s ease-in-out infinite; pointer-events: none; z-index: 0; }
.shine-btn > * { position: relative; z-index: 1; }
@keyframes shineSweep { 0%, 42% { left: -45%; } 70%, 100% { left: 112%; } }
@media (max-width: 700px) {
  .home-courses > .wrap, .course-intro .wrap { padding-inline: 18px; }
  .section.bg-yellow .grid-3 { grid-template-columns: 1fr; }
  .course-intro { padding-top: 18px; padding-bottom: 28px; }
  .breadcrumbs ol { font-size: .7rem; gap: 6px; margin-bottom: 16px; }
  .course-slide { aspect-ratio: 3 / 2; min-height: 0; }
  .gallery-arrow { width: 36px; height: 36px; }
  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }
  .gallery-thumbs { gap: 8px; }
  .gallery-thumb { aspect-ratio: 4 / 3; }
  .course-summary { grid-template-columns: minmax(0,1fr); gap: 24px; margin-top: 24px; }
  .course-summary h1 { font-size: 1.65rem; }
  .course-summary .lead { font-size: .9rem; }
  .course-key-points { gap: 8px; }
  .course-key-points li { width: 100%; justify-content: center; min-height: 42px; padding: 10px 12px; text-align: center; }
  .course-enrol { padding: 20px 0 0; border-left: 0; border-top: 1px solid #ddd; }
  .course-enrol .btn { display: none; }
  .course-page { padding-bottom: calc(90px + env(safe-area-inset-bottom)); }
  .mobile-course-apply { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: #fff; border-top: 1px solid #ccc; box-shadow: 0 -4px 16px #00000014; padding: 12px 18px calc(12px + env(safe-area-inset-bottom)); }
  .mobile-course-apply .btn { width: 100%; min-height: 56px; justify-content: center; font-size: .88rem; box-shadow: 4px 4px 0 #111; }
}
.section { padding: 90px 0; }
.section.tight { padding: 60px 0; }
.bg-ink { background: var(--ink); color: var(--white); }
.bg-yellow { background: var(--ink); color: var(--white); border-top: 4px solid var(--yellow); border-bottom: 4px solid var(--yellow); }
.bg-white { background: var(--white); }
.bg-paper { background: var(--paper); }
.center { text-align: center; }

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; margin-bottom: 14px; color: var(--grey);
}
.eyebrow::before {
  content: ""; width: 10px; height: 10px;
  background: var(--yellow); border: 2px solid var(--ink);
  display: inline-block; flex: none; border-radius: 2px;
}
.bg-ink .eyebrow, .bg-yellow .eyebrow { color: #888; }
.bg-ink .eyebrow::before, .bg-yellow .eyebrow::before { border-color: #fff; }

/* ---------- headings ---------- */
h1, h2, h3, h4 { font-family: var(--font); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; }
.h-hero { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; }
.h-sec { font-size: clamp(1.8rem, 3.8vw, 2.8rem); font-weight: 800; }
.h-sub { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 700; }
.lead { font-size: 1rem; max-width: 640px; margin: 0 auto; color: var(--grey); line-height: 1.7; }
.bg-ink .lead, .bg-yellow .lead { color: #ccc; }
.section-head { margin-bottom: 52px; }

/* ---------- highlight ---------- */
.hl { position: relative; z-index: 0; white-space: nowrap; padding: 0 .04em; }
.hl::before {
  content: ""; position: absolute; left: -.04em; right: -.04em;
  top: 10%; bottom: 8%; background: var(--yellow); z-index: -1;
  border-radius: 3px; transform: rotate(-1.2deg) scaleX(0);
  transform-origin: left; transition: transform .5s cubic-bezier(.5,0,.15,1);
}
.hl.lit::before { transform: rotate(-1.2deg) scaleX(1); }
.bg-ink .hl { color: var(--ink); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 15px 28px; border: 2.5px solid var(--ink); border-radius: 999px;
  background: var(--yellow); color: var(--ink);
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn.ghost { background: var(--white); }
.btn.dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn.dark:hover { box-shadow: 6px 6px 0 var(--yellow); }
.btn.outline-white { background: transparent; color: #fff; border-color: #fff; box-shadow: 4px 4px 0 var(--yellow); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink); border-bottom: 2px solid #1e1e1e;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 13px 36px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 50px; width: auto; }
.brand-name {
  font-size: .5rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #bbb; line-height: 1.6;
  border-left: 2px solid #444; padding-left: 12px;
}
@media (max-width: 1100px) { .brand-name { display: none; } }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a {
  font-size: .7rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: #ccc; padding-bottom: 3px;
  transition: color .15s;
}
.nav-links a.active, .nav-links a:hover { color: var(--yellow); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-search {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  background: transparent; color: #fff; border: 2px solid #444; border-radius: 999px;
  padding: 9px 16px; font-family: var(--font); font-size: .68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  transition: border-color .15s, background .15s;
}
.nav-search { display: none; }
.nav-search:hover { border-color: var(--yellow); background: #1e1e1e; }
.nav .btn.nav-cta { padding: 11px 18px; font-size: .68rem; }
.menu-toggle {
  display: none; background: var(--yellow); border: 2.5px solid var(--ink);
  border-radius: 10px; width: 42px; height: 42px; font-size: 1.1rem; cursor: pointer;
}

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  background: var(--ink); padding: 64px 0 56px;
  border-bottom: 3px solid var(--yellow);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,209,26,.04) 0 2px, transparent 2px 40px);
  pointer-events: none;
}
.page-hero .wrap { position: relative; }
.page-hero .eyebrow { color: var(--yellow); }
.page-hero .eyebrow::before { border-color: var(--yellow); background: var(--yellow); }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero .lead { color: #bbb; margin: 0; }
.page-hero-back { display: inline-flex; align-items: center; gap: 6px; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #888; margin-bottom: 20px; }
.page-hero-back:hover { color: var(--yellow); }

/* ---------- hero slider ---------- */
.hero-slider {
  position: relative; overflow: hidden; background: var(--ink);
  height: 100vh; min-height: 580px; max-height: 1000px;
}
.hs-track { display: flex; height: 100%; transition: transform .65s cubic-bezier(.5,0,.15,1); }
.hs-slide { position: relative; flex: 0 0 100%; margin: 0; height: 100%; }
.hs-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hs-slide figcaption {
  position: absolute; right: 24px; bottom: 24px; z-index: 3;
  font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: var(--yellow); color: var(--ink); border: 2px solid var(--ink);
  border-radius: 999px; padding: 7px 16px;
}
.hs-overlay {
  position: absolute; inset: 0; z-index: 2; display: flex; align-items: center;
  background: linear-gradient(90deg, rgba(10,10,10,.9) 0%, rgba(10,10,10,.65) 44%, rgba(10,10,10,.15) 72%, transparent 100%);
  pointer-events: none;
}
.hs-overlay .wrap { pointer-events: auto; width: 100%; }
.hs-copy { max-width: 640px; }
.hs-overlay .h-hero { color: #fff; text-transform: uppercase; line-height: 1.06; font-weight: 900; }
.hs-overlay .h-hero em { font-style: normal; color: var(--yellow); display: block; }
.hs-lead { color: #ddd; font-size: 1.02rem; line-height: 1.65; max-width: 500px; margin: 18px 0 28px; font-weight: 400; }
.hs-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hs-btns .btn.ghost { background: transparent; color: #fff; border-color: #fff; }
.hs-dots { position: absolute; left: 0; right: 0; bottom: 22px; z-index: 4; display: flex; gap: 9px; justify-content: center; }
.hs-dots button {
  width: 10px; height: 10px; border-radius: 999px; border: 2px solid #fff;
  background: transparent; cursor: pointer; padding: 0; transition: background .2s, transform .2s;
}
.hs-dots button[aria-selected="true"] { background: var(--yellow); border-color: var(--yellow); transform: scale(1.2); }

/* ---------- marquee ---------- */
.marquee { background: var(--yellow); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); overflow: hidden; padding: 13px 0; }
.marquee-run { display: flex; align-items: center; gap: 28px; width: max-content; animation: mq 28s linear infinite; }
.marquee-run span { font-size: 1.35rem; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; color: var(--ink); }
.marquee-run .mq-dot { font-size: .85rem; opacity: .5; }
@keyframes mq { to { transform: translateX(-50%); } }
.marquee:hover .marquee-run { animation-play-state: paused; }

/* ---------- stats band ---------- */
.stats-band { background: var(--ink); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 28px 20px; border-right: 1px solid #222; }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; color: var(--yellow); line-height: 1; display: block; margin-bottom: 8px; }
.stat-label { font-size: .7rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: #888; }

/* ---------- cards / grid ---------- */
.card {
  background: var(--white); border: 2.5px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 28px;
  transition: transform .16s ease, box-shadow .16s ease;
}
.card:hover { transform: translate(-3px, -4px); box-shadow: 8px 10px 0 var(--ink); }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- course grid (home) ---------- */
.course-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cc {
  display: flex; flex-direction: column;
  background: var(--white); border: 2.5px solid var(--ink);
  border-radius: 16px; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .16s ease, box-shadow .16s ease, background .18s ease;
}
.cc:hover { transform: translate(-3px, -4px); box-shadow: 8px 10px 0 var(--ink); background: var(--yellow); }
.cc-img { aspect-ratio: 4/3; border-bottom: 2.5px solid var(--ink); overflow: hidden; }
.cc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.cc:hover .cc-img img { transform: scale(1.06); }
.cc-body { display: flex; flex-direction: column; gap: 9px; padding: 16px 16px 18px; flex: 1; }
.cc-body h3 { font-size: .98rem; font-weight: 700; line-height: 1.25; min-height: 2.5em; }
.cc-body p { color: var(--grey); font-size: .84rem; line-height: 1.5; flex: 1; }
.cc:hover .cc-body p { color: var(--ink-soft); }
.cc-fee { font-size: 1.25rem; font-weight: 800; }
.cc-fee small { font-size: .6rem; font-weight: 500; color: var(--grey); }
.cc:hover .cc-fee small { color: var(--ink-soft); }
.cc-btn { width: 100%; justify-content: center; margin-top: 4px; padding: 12px; font-size: .7rem; }
.cc:hover .cc-btn { background: var(--white); }

/* ---------- course detail card (courses page) ---------- */
.course-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cdc {
  display: flex; flex-direction: column; background: var(--white);
  border: 2.5px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform .16s ease, box-shadow .16s ease;
}
.cdc:hover { transform: translate(-4px, -5px); box-shadow: 10px 12px 0 var(--ink); }
.cdc-img { aspect-ratio: 16/9; border-bottom: 2.5px solid var(--ink); overflow: hidden; }
.cdc-img img { width: 100%; height: 100%; object-fit: cover; }
.cdc-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.cdc-body h3 { font-size: 1.1rem; font-weight: 700; }
.cdc-body p { color: var(--grey); font-size: .9rem; line-height: 1.65; flex: 1; }
.cdc-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border: 2px solid var(--ink); border-radius: 999px; background: var(--white);
}
.pill.y { background: var(--yellow); }
.pill.k { background: var(--ink); color: var(--white); }
.cdc-fee { font-size: 1.6rem; font-weight: 900; }
.cdc-fee small { font-size: .7rem; font-weight: 500; color: var(--grey); }
.cdc-body .btn { width: 100%; justify-content: center; }

/* ---------- feature cards ---------- */
.feature-card {
  background: var(--white); border: 2.5px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 28px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  transition: transform .16s ease, box-shadow .16s ease;
}
.feature-card:hover { transform: translate(-3px, -4px); box-shadow: 8px 10px 0 var(--ink); }
.feature-icon {
  width: 58px; height: 58px; border: 2.5px solid var(--ink); border-radius: 14px;
  background: var(--yellow); display: grid; place-items: center;
  font-size: 1.4rem; box-shadow: var(--shadow-sm); flex: none;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; }
.feature-card p { color: var(--grey); font-size: .88rem; line-height: 1.65; }

/* ---------- departments ---------- */
.dept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dept-card {
  background: var(--ink); border: 2.5px solid var(--ink); border-radius: var(--radius);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 10px;
  transition: transform .16s ease, box-shadow .16s ease, background .18s ease;
  position: relative; overflow: hidden;
}
.dept-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--yellow);
}
.dept-card:hover { background: var(--yellow); color: var(--ink); transform: translate(-3px, -4px); box-shadow: 8px 10px 0 var(--ink); }
.dept-num { font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--yellow); }
.dept-card:hover .dept-num { color: var(--ink-soft); }
.dept-card h3 { font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.3; }
.dept-card:hover h3 { color: var(--ink); }
.dept-card p { font-size: .85rem; color: #999; line-height: 1.55; }
.dept-card:hover p { color: var(--ink-soft); }
.dept-link { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow); margin-top: auto; }
.dept-card:hover .dept-link { color: var(--ink); }

/* ---------- about / two-col layout ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col.flip { }
.two-col p { color: var(--grey); line-height: 1.75; margin-bottom: 14px; font-size: .97rem; }
.two-col p:last-of-type { margin-bottom: 0; }
.img-box {
  border: 2.5px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; aspect-ratio: 4/3;
}
.img-box img { width: 100%; height: 100%; object-fit: cover; }
.img-box.tall { aspect-ratio: 3/4; }

/* ---------- steps (how it works) ---------- */
.steps { display: flex; flex-direction: column; max-width: 860px; margin: 0 auto; }
.step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 24px; align-items: start; padding: 28px 0;
  border-top: 2px dashed #ddd;
}
.bg-yellow .step { border-color: #333; }
.step:last-child { border-bottom: 2px dashed #ddd; }
.bg-yellow .step:last-child { border-color: #333; }
.step-num { font-size: 2.6rem; font-weight: 900; color: transparent; -webkit-text-stroke: 2.5px var(--ink); line-height: 1; padding-top: 4px; }
.bg-yellow .step-num { -webkit-text-stroke-color: var(--yellow); }
.step-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.bg-yellow .step-body h3 { color: #fff; }
.step-body p { color: var(--grey); font-size: .93rem; line-height: 1.65; }
.bg-yellow .step-body p { color: #ccc; }
.step-when {
  display: inline-flex; margin-top: 10px;
  font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); background: var(--yellow);
  padding: 4px 12px; border-radius: 999px;
}

/* ---------- pricing table ---------- */
.pricing-table {
  border: 2.5px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; background: var(--white);
}
.pricing-table table { width: 100%; border-collapse: collapse; }
.pricing-table th {
  background: var(--ink); color: var(--white); padding: 14px 20px;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  text-align: left;
}
.pricing-table td { padding: 14px 20px; border-bottom: 1.5px solid #eee; font-size: .94rem; vertical-align: middle; }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover td { background: var(--yellow-pale); }
.pricing-table td .fee { font-weight: 800; font-size: 1.05rem; }
.pricing-table td .dur { font-size: .72rem; font-weight: 600; color: var(--grey); letter-spacing: .06em; }
.pricing-table.total-row tbody tr:last-child td { background: var(--ink); color: #fff; font-weight: 700; font-size: 1.05rem; }

/* ---------- combo cards ---------- */
.combo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.combo-card {
  display: flex; flex-direction: column; gap: 16px;
  border: 2.5px solid var(--ink); border-radius: var(--radius);
  background: var(--white); box-shadow: var(--shadow); padding: 28px;
}
.combo-card.featured { background: var(--yellow-soft); }
.combo-card h3 { font-size: 1.1rem; font-weight: 800; }
.combo-card .combo-price { font-size: 2rem; font-weight: 900; }
.combo-card .combo-price small { font-size: .7rem; font-weight: 500; color: var(--grey); display: block; margin-top: 2px; }
.combo-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.combo-card li { display: flex; gap: 10px; font-size: .88rem; color: var(--grey); padding-bottom: 8px; border-bottom: 1.5px dashed #ddd; }
.combo-card li:last-child { border-bottom: none; }
.combo-card li::before { content: "✓"; font-weight: 800; color: var(--ink); background: var(--yellow); width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; border-radius: 5px; flex: none; font-size: .75rem; }
.combo-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ---------- note box ---------- */
.note-box {
  border: 2.5px solid var(--ink); border-left-width: 8px; border-radius: var(--radius);
  background: var(--yellow-pale); padding: 20px 24px;
}
.note-box h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.note-box p { color: var(--ink-soft); font-size: .92rem; line-height: 1.65; }

/* ---------- carousel ---------- */
.carousel { overflow: hidden; padding: 20px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.carousel-run { display: flex; gap: 16px; width: max-content; animation: caro 42s linear infinite; }
.carousel-run img { width: 280px; height: 185px; object-fit: cover; border: 2.5px solid var(--ink); border-radius: 12px; box-shadow: var(--shadow-sm); flex: none; }
@keyframes caro { to { transform: translateX(-50%); } }
.carousel:hover .carousel-run { animation-play-state: paused; }

/* ---------- testimonials ---------- */
.tst { overflow: hidden; padding: 8px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.tst-run { display: flex; gap: 22px; width: max-content; animation: tst 46s linear infinite; padding: 0 22px; }
.tst:hover .tst-run { animation-play-state: paused; }
@keyframes tst { to { transform: translateX(-50%); } }
.tst-card { flex: 0 0 360px; background: var(--white); border: 2.5px solid var(--ink); border-radius: 16px; box-shadow: var(--shadow-sm); padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.tst-card p { font-size: .92rem; line-height: 1.65; }
.tst-card figcaption { display: flex; align-items: center; gap: 12px; }
.tst-card figcaption img { width: 46px; height: 46px; border-radius: 999px; border: 2px solid var(--ink); object-fit: cover; }
.tst-card figcaption strong { display: block; font-size: .95rem; font-weight: 700; }
.tst-card figcaption em { font-size: .65rem; font-style: normal; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--grey); }

/* ---------- accordion ---------- */
.acc { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin: 0 auto; }
.acc details { border: 2.5px solid var(--ink); border-radius: 16px; background: var(--white); box-shadow: var(--shadow-sm); overflow: hidden; }
.acc details[open] { background: var(--yellow-soft); }
.acc summary { list-style: none; cursor: pointer; padding: 20px 22px; font-size: .98rem; font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-size: 1.4rem; font-weight: 700; flex: none; }
.acc details[open] summary::after { content: "–"; }
.acc .body { padding: 0 22px 22px; color: var(--ink-soft); font-size: .93rem; line-height: 1.7; }

/* ---------- contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.contact-form, .contact-form * { min-width: 0; }
.contact-form > div[style*="grid-template-columns"] { max-width: 100%; }
.form-card { background: var(--white); border: 2.5px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px; }
.form-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); }
.form-group input, .form-group select, .form-group textarea {
  border: 2px solid var(--ink); border-radius: 10px; padding: 13px 16px;
  font-size: .95rem; background: var(--paper); transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--yellow); box-shadow: 3px 3px 0 var(--yellow);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: .82rem; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  border: 2.5px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 22px; background: var(--white);
}
.info-card h4 { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--yellow); background: var(--ink); display: inline-block; padding: 4px 10px; border-radius: 6px; margin-bottom: 12px; }
.info-card p { font-size: .92rem; color: var(--grey); line-height: 1.65; }
.info-card strong { color: var(--ink); font-weight: 700; }

/* ---------- vision / mission ---------- */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vm-card { border: 2.5px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.vm-card-head { background: var(--ink); padding: 16px 22px; }
.vm-card-head h3 { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--yellow); }
.vm-card-body { background: var(--white); padding: 22px; }
.vm-card-body p { font-size: .93rem; color: var(--grey); line-height: 1.7; margin-bottom: 10px; }
.vm-card-body p:last-child { margin-bottom: 0; }
.vm-card-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; padding: 0; }
.vm-card-body li { display: flex; gap: 10px; font-size: .9rem; color: var(--grey); }
.vm-card-body li::before { content: "›"; font-weight: 900; color: var(--ink); background: var(--yellow); width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; border-radius: 5px; flex: none; font-size: .9rem; margin-top: 1px; }

/* ---------- 5-year plan ---------- */
.plan-table { border: 2.5px solid var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.plan-table table { width: 100%; border-collapse: collapse; }
.plan-table th { background: var(--yellow); color: var(--ink); padding: 13px 18px; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; text-align: left; }
.plan-table td { padding: 13px 18px; border-bottom: 1.5px solid #eee; font-size: .9rem; }
.plan-table tbody tr:last-child td { border-bottom: none; }
.plan-table tbody tr:hover td { background: var(--yellow-pale); }
.plan-table td:first-child { font-weight: 800; }

/* ---------- cta band ---------- */
.cta-band { text-align: center; padding: 100px 0; }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; max-width: 680px; margin: 0 auto 16px; }
.cta-band p { max-width: 560px; margin: 0 auto 28px; color: #ccc; font-size: .98rem; }
.cta-band .btn { font-size: .82rem; padding: 17px 36px; }

/* ---------- quote band ---------- */
.quote-band { text-align: center; padding: 80px 0; }
.quote-band blockquote { font-size: clamp(1.4rem, 3.2vw, 2.2rem); font-weight: 800; line-height: 1.3; max-width: 820px; margin: 0 auto 14px; }
.quote-band blockquote::before, .quote-band blockquote::after { content: "\201C"; color: var(--yellow); }
.quote-band blockquote::after { content: "\201D"; }
.divider-note { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--grey); margin-top: 12px; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--white); padding: 64px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.site-footer h4 { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; color: var(--yellow); }
.site-footer a { display: block; padding: 5px 0; font-size: .87rem; color: #bbb; transition: color .15s; }
.site-footer a:hover { color: var(--yellow); }
.foot-brand p { color: #999; font-size: .87rem; margin-top: 14px; max-width: 280px; line-height: 1.7; }
.foot-name { font-size: .98rem; font-weight: 700; color: #fff; margin-top: 14px; line-height: 1.3; }
.foot-bottom { border-top: 1px solid #222; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .73rem; color: #666; font-weight: 500; }

/* ---------- single course page ---------- */
.course-hero { background: var(--ink); padding: 72px 0 56px; border-bottom: 3px solid var(--yellow); }
.course-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: center; }
.course-hero h1 { color: #fff; margin-bottom: 16px; }
.course-hero .lead { color: #ccc; margin: 0 0 24px; }
.course-hero-img { border: 2.5px solid var(--yellow); border-radius: var(--radius); overflow: hidden; box-shadow: 8px 8px 0 rgba(255,209,26,.3); aspect-ratio: 16/10; }
.course-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.course-meta-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.course-body p { color: var(--grey); line-height: 1.75; margin-bottom: 14px; font-size: .97rem; }
.course-body h2 { font-size: 1.4rem; font-weight: 800; margin: 30px 0 14px; }
.course-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.course-body li { display: flex; gap: 10px; font-size: .93rem; color: var(--grey); }
.course-body li::before { content: "✓"; font-weight: 800; background: var(--yellow); width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; border-radius: 5px; flex: none; color: var(--ink); font-size: .8rem; margin-top: 1px; }
.course-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 80px; }
.course-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.apply-card { border: 2.5px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); background: var(--white); padding: 26px; }
.apply-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 18px; }
.apply-price { font-size: 2.2rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.apply-price small { font-size: .7rem; font-weight: 500; color: var(--grey); }
.apply-duration { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); margin-bottom: 20px; display: block; }
.apply-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.apply-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 18px; padding-top: 18px; border-top: 2px dashed #ddd; }
.apply-list li { display: flex; gap: 10px; font-size: .85rem; color: var(--grey); }
.apply-list li::before { content: "✓"; font-weight: 800; color: var(--yellow); background: var(--ink); width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; border-radius: 5px; flex: none; font-size: .7rem; }

/* ---------- reveal animation ---------- */
[data-reveal].armed { opacity: 0; transform: translateY(20px); }
[data-reveal].in { animation: revealUp .55s ease forwards; }
@keyframes revealUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  [data-reveal].armed { opacity: 1; transform: none; }
  [data-reveal].in { animation: none; }
  .marquee-run, .carousel-run, .tst-run { animation: none; }
}

/* ---------- search overlay ---------- */
.search-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(10,10,10,.78); display: flex; align-items: flex-start; justify-content: center; padding: 14vh 20px 20px; animation: fadeIn .15s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.search-panel { width: 100%; max-width: 640px; background: var(--paper); border: 2.5px solid var(--ink); border-radius: 18px; box-shadow: 10px 12px 0 var(--yellow); overflow: hidden; }
.search-bar { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 2px solid var(--ink); }
.search-bar input { flex: 1; border: 0; background: transparent; font-size: 1rem; font-family: var(--font); color: var(--ink); }
.search-bar input:focus { outline: none; }
.search-close { background: var(--ink); color: #fff; border: 0; border-radius: 7px; padding: 5px 10px; font-family: var(--font); font-size: .62rem; font-weight: 700; letter-spacing: .1em; cursor: pointer; flex: none; }
.search-results { max-height: 58vh; overflow-y: auto; padding: 8px; }
.search-hit { display: flex; flex-direction: column; gap: 3px; padding: 12px 14px; border-radius: 12px; border: 2px solid transparent; transition: background .12s; }
.search-hit strong { font-size: .98rem; font-weight: 700; }
.search-hit span { font-size: .83rem; color: var(--grey); }
.search-hit:hover { background: var(--yellow); border-color: var(--ink); }
.search-empty { padding: 22px 16px; color: var(--grey); font-size: .9rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1060px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--ink); border-bottom: 2px solid #222; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 15px 24px; border-top: 1px solid #222; width: 100%; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .course-grid { grid-template-columns: repeat(2, 1fr); }
  .course-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .combo-grid { grid-template-columns: 1fr 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid #222; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .course-layout { grid-template-columns: 1fr; }
  .course-sidebar { position: static; }
  .course-hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav { padding: 10px 14px; }
  .brand-logo { height: 38px; }
  .menu-toggle { width: 40px; height: 40px; }
  .hero-slider { height: 85vh; max-height: 700px; min-height: 400px; }
  .hs-overlay { align-items: flex-end; background: linear-gradient(0deg, rgba(10,10,10,.95) 0%, rgba(10,10,10,.6) 50%, transparent 85%); }
  .hs-overlay .wrap { padding-bottom: 56px; }
  .hs-copy { max-width: none; }
  .hs-overlay .h-hero { font-size: 1.8rem; }
  .hs-lead { font-size: .88rem; margin: 12px 0 20px; }
  .hs-btns { flex-direction: column; }
  .hs-btns .btn { justify-content: center; }
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 28px; }
  .h-sec { font-size: 1.55rem; }
  .lead { font-size: .88rem; }
  .btn { padding: 12px 20px; font-size: .7rem; }
  .course-grid { grid-template-columns: 1fr; }
  .course-detail-grid { grid-template-columns: 1fr; }
  .dept-grid { grid-template-columns: 1fr; }
  .combo-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 2rem; }
  .step { grid-template-columns: 54px 1fr; gap: 14px; padding: 22px 0; }
  .step-num { font-size: 2rem; }
  .cta-band { padding: 52px 0; }
  .cta-band h2 { font-size: 1.65rem; }
  .quote-band { padding: 44px 0; }
  .quote-band blockquote { font-size: 1.25rem; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-bottom: 24px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-bottom { flex-direction: column; text-align: center; font-size: .68rem; }
  .carousel-run img { width: 200px; height: 135px; }
  .tst-card { flex-basis: 300px; }
  .contact-form { width: 100%; overflow: hidden; }
  .contact-form > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; gap: 0 !important; }
  .form-group input, .form-group select, .form-group textarea { width: 100%; max-width: 100%; font-size: .9rem; }
  .page-hero { padding: 44px 0 36px; }
  .pricing-table td, .pricing-table th { padding: 11px 14px; }
  .plan-table td, .plan-table th { padding: 10px 12px; font-size: .82rem; }
}
