/* =====================================================================
   CRAFT TRADES — Premium Multi-Page Trade-School Template
   Plain HTML5 + CSS3. No frameworks, no build step.
   ---------------------------------------------------------------------
   REBRAND TIP: Edit the CSS variables in :root below. Swap --accent /
   --accent-d for your primary colors, adjust --bg / --surface to match,
   and update the font variables plus the Google Fonts <link> in each
   HTML file. Everything else cascades.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:        #f6f4f0;   /* page background (warm off-white)      */
  --surface:   #ffffff;   /* card / elevated surface               */
  --surface-2: #efece6;   /* deeper alt surface                    */
  --charcoal:  #1f2227;   /* rugged charcoal (dark sections)       */
  --charcoal-2:#282c33;   /* lighter charcoal panel                */
  --ink:       #1f2227;   /* primary text                          */
  --muted:     #5e6470;   /* secondary / muted text                */
  --on-dark:   #f0ece4;   /* text on charcoal                      */
  --on-dark-mut:#9aa1ad;  /* muted text on charcoal                */
  --accent:    #f08a24;   /* safety amber/orange (primary accent)  */
  --accent-d:  #d6741a;   /* darker amber for hovers               */
  --accent-2:  #c75b16;   /* deep burnt orange                     */
  --line:      rgba(31,34,39,.12);   /* borders / dividers         */
  --line-2:    rgba(31,34,39,.20);
  --line-dark: rgba(255,255,255,.12);

  /* --- Fonts --- */
  --font-head: 'Oswald', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Shape & motion --- */
  --radius:    10px;
  --radius-sm: 7px;
  --shadow:    0 12px 30px rgba(31,34,39,.12);
  --shadow-lg: 0 26px 60px rgba(31,34,39,.20);
  --ease:      .32s cubic-bezier(.4, 0, .2, 1);

  /* --- Layout --- */
  --maxw: 1180px;
  --gutter: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: .01em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1rem; }

a { color: var(--accent-2); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent); }

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

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: rgba(240,138,36,.3); color: var(--ink); }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 92px 0; }
.section--soft { background: var(--surface-2); border-block: 1px solid var(--line); }
.section--dark {
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.18)),
    var(--charcoal);
  color: var(--on-dark);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .muted { color: var(--on-dark-mut); }
.section--dark .lead { color: var(--on-dark); }
.section--tight { padding: 64px 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-2);
  border-left: 3px solid var(--accent);
  padding: 2px 0 2px 11px;
  margin-bottom: 16px;
}
.section--dark .eyebrow { color: var(--accent); }

.lead { font-size: 1.12rem; color: var(--ink); }
.muted { color: var(--muted); }
.accent-text { color: var(--accent); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #1a1205;
  box-shadow: 0 8px 20px rgba(240,138,36,.34);
}
.btn-primary:hover { background: var(--accent-d); color: #1a1205; box-shadow: 0 12px 28px rgba(240,138,36,.46); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-2); }

.btn-light {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: var(--line-dark);
}
.btn-light:hover { background: #fff; color: var(--charcoal); border-color: #fff; }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(31,34,39,.96);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--accent);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}
.brand:hover { color: #fff; }
.brand .logo-mark {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--accent);
  display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(240,138,36,.4);
}
.brand b { color: var(--accent); font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .96rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
  padding: 8px 14px;
  border-radius: 6px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: rgba(255,255,255,.07); color: #fff; }
.nav-links a.active { color: var(--accent); font-weight: 600; }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   IMAGE HELPERS
   --------------------------------------------------------------------- */
.media { position: relative; overflow: hidden; border-radius: var(--radius); }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------------------------------------------------------------------
   HERO (home)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--on-dark);
  padding: 96px 0 100px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(240,138,36,.05) 0 14px, transparent 14px 28px);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 span { color: var(--accent); }
.hero .lead { max-width: 540px; margin-bottom: 30px; color: var(--on-dark-mut); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-meta { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-meta div strong {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.hero-meta div span { font-size: .9rem; color: var(--on-dark-mut); }

.hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255,255,255,.08);
  aspect-ratio: 5 / 4;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  left: 18px; bottom: 18px;
  background: var(--accent);
  color: #1a1205;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .82rem;
  padding: 9px 16px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

/* ---------------------------------------------------------------------
   TRUST / PARTNER STRIP
   --------------------------------------------------------------------- */
.partners { padding: 36px 0; background: var(--charcoal-2); border-bottom: 1px solid var(--line-dark); }
.partners p { text-align: center; font-family: var(--font-head); letter-spacing: .14em; text-transform: uppercase; font-size: .8rem; color: var(--on-dark-mut); margin-bottom: 20px; }
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 40px;
}
.logo-strip span {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 1.15rem;
  color: var(--on-dark-mut);
  opacity: .75;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--ease), color var(--ease);
}
.logo-strip span:hover { opacity: 1; color: var(--accent); }

/* ---------------------------------------------------------------------
   CARDS / GRIDS
   --------------------------------------------------------------------- */
.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); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(240,138,36,.5); box-shadow: var(--shadow); }

.card .icon {
  width: 54px; height: 54px;
  border-radius: 10px;
  background: rgba(240,138,36,.12);
  border: 1px solid rgba(240,138,36,.3);
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 0; }

/* Program / trade card */
.program-card { position: relative; overflow: hidden; padding: 0; }
.program-card .media { border-radius: var(--radius) var(--radius) 0 0; aspect-ratio: 3 / 2; }
.program-card .p-body { padding: 24px 24px 26px; }
.program-card .p-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
  color: #1a1205;
  background: var(--accent);
  padding: 4px 11px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.program-card h3 { margin-bottom: 8px; }
.program-card p { color: var(--muted); font-size: .96rem; margin-bottom: 16px; }
.meta-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .74rem;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 5px 11px;
  border-radius: 999px;
}
.chip.amber { color: var(--accent-2); border-color: rgba(240,138,36,.4); background: rgba(240,138,36,.1); }
.chip.cert::before { content: "\2713  "; color: var(--accent-2); }

/* Feature list */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .tick {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 9px;
  background: var(--accent);
  color: #1a1205;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.feature h3 { font-size: 1.15rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; color: var(--muted); }
.section--dark .feature p { color: var(--on-dark-mut); }

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  position: relative;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .stat-pin {
  position: absolute;
  right: 16px; top: 16px;
  background: var(--charcoal);
  color: #fff;
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}
.split-media .stat-pin strong {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.split-media .stat-pin span { font-size: .78rem; color: var(--on-dark-mut); text-transform: uppercase; letter-spacing: .06em; }

/* ---------------------------------------------------------------------
   STATS BAND
   --------------------------------------------------------------------- */
.stats-band {
  background:
    linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.2)),
    var(--charcoal);
  color: var(--on-dark);
  border-block: 1px solid var(--line-dark);
}
.stats-band h2 { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat strong {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.8vw, 3.3rem);
  font-weight: 700;
  display: block;
  line-height: 1;
  color: var(--accent);
}
.stat span { color: var(--on-dark-mut); font-size: .95rem; }
.stat .stat-card {
  background: var(--charcoal-2);
  border: 1px solid var(--line-dark);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 30px 22px;
  transition: transform var(--ease), border-color var(--ease);
}
.stat .stat-card:hover { transform: translateY(-4px); }

/* ---------------------------------------------------------------------
   STEPS (how it works)
   --------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step .num {
  width: 46px; height: 46px;
  border-radius: 9px;
  background: var(--charcoal);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { margin-bottom: 0; font-size: .95rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 32px 30px;
}
.quote-card .stars { color: var(--accent); margin-bottom: 14px; letter-spacing: 2px; }
.quote-card blockquote {
  margin: 0 0 22px;
  font-size: 1.06rem;
  color: var(--ink);
  line-height: 1.6;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.quote-author .avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.quote-author b { display: block; font-family: var(--font-head); letter-spacing: .03em; text-transform: uppercase; color: var(--ink); }
.quote-author span { font-size: .88rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.25)),
    var(--charcoal);
  border-radius: var(--radius);
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(240,138,36,.06) 0 16px, transparent 16px 32px);
  pointer-events: none;
}
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: var(--on-dark-mut); max-width: 580px; margin: 0 auto 28px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------------------------------------------------------------------
   JOB-PLACEMENT BAND
   --------------------------------------------------------------------- */
.placement-band { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.placement-media { position: relative; min-height: 320px; }
.placement-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.placement-copy { background: var(--charcoal); color: var(--on-dark); padding: 50px 44px; }
.placement-copy h2 { color: #fff; }
.placement-copy p { color: var(--on-dark-mut); }
.placement-copy .eyebrow { color: var(--accent); }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.3)),
    var(--charcoal);
  color: var(--on-dark);
  padding: 70px 0 62px;
  border-bottom: 3px solid var(--accent);
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(240,138,36,.05) 0 14px, transparent 14px 28px);
  pointer-events: none;
}
.page-banner .container { position: relative; }
.page-banner h1 { color: #fff; margin-bottom: 10px; }
.page-banner p { max-width: 640px; color: var(--on-dark-mut); margin-bottom: 0; }
.breadcrumb {
  font-family: var(--font-head);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--on-dark-mut);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 6px; opacity: .6; }

/* ---------------------------------------------------------------------
   FILTER BAR (programs page)
   --------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-btn {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line-2);
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--ease);
}
.filter-btn:hover { color: var(--ink); border-color: var(--accent); }
.filter-btn.active { background: var(--accent); color: #1a1205; border-color: var(--accent); }

/* ---------------------------------------------------------------------
   CURRICULUM / ACCREDITATION ROWS
   --------------------------------------------------------------------- */
.curriculum {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mod {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
}
.mod .wk { font-family: var(--font-head); letter-spacing: .06em; text-transform: uppercase; font-size: .78rem; color: var(--accent-2); }
.mod h3 { font-size: 1.1rem; margin: 6px 0 6px; }
.mod p { color: var(--muted); font-size: .92rem; margin: 0; }

/* Accordion (programs page FAQ-style) */
.accordion { max-width: 820px; margin: 0 auto; }
.acc-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.acc-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 22px;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--ink);
}
.acc-head .acc-ic {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--accent);
  color: #1a1205;
  display: grid; place-items: center;
  font-size: 1.2rem; line-height: 1;
  transition: transform var(--ease);
}
.acc-item.open .acc-ic { transform: rotate(45deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--ease);
}
.acc-body p { color: var(--muted); padding: 0 22px 20px; margin: 0; }

/* ---------------------------------------------------------------------
   OUTCOMES — salary / role breakdown
   --------------------------------------------------------------------- */
.role-row {
  display: grid;
  grid-template-columns: 210px 1fr 110px;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.role-row:last-child { border-bottom: none; }
.role-row .role-name { font-family: var(--font-head); letter-spacing: .02em; text-transform: uppercase; font-weight: 500; color: var(--ink); }
.role-row .bar-track { height: 12px; border-radius: 999px; background: var(--surface-2); overflow: hidden; border: 1px solid var(--line); }
.role-row .bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.role-row .role-sal { font-family: var(--font-head); color: var(--accent-2); text-align: right; font-size: 1rem; font-weight: 600; }

/* Big outcome stat tiles */
.outcome-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.outcome-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
}
.outcome-tile strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--accent-2);
  margin-bottom: 8px;
}
.outcome-tile span { color: var(--muted); }

/* Graduate story card with photo */
.story-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.story-card .media { border-radius: 0; aspect-ratio: 3 / 2; }
.story-card .s-body { padding: 24px 24px 26px; }
.story-card .s-role { font-family: var(--font-head); letter-spacing: .04em; text-transform: uppercase; color: var(--accent-2); font-size: .82rem; margin-bottom: 8px; }
.story-card blockquote { margin: 0 0 18px; color: var(--ink); font-size: 1rem; line-height: 1.6; }
.story-card .s-name { display: flex; align-items: center; gap: 12px; }
.story-card .s-name img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }
.story-card .s-name b { font-family: var(--font-head); letter-spacing: .03em; text-transform: uppercase; }
.story-card .s-name span { display: block; font-size: .85rem; color: var(--muted); }

/* Employer logo card */
.employer {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: transform var(--ease), border-color var(--ease);
}
.employer:hover { transform: translateY(-4px); border-color: rgba(240,138,36,.5); }
.employer .dot { color: var(--accent); }

/* ---------------------------------------------------------------------
   ABOUT — instructors / workshops
   --------------------------------------------------------------------- */
.team-card { text-align: center; padding: 0; overflow: hidden; }
.team-card .media { border-radius: 0; aspect-ratio: 1 / 1; }
.team-card .t-body { padding: 22px 20px 26px; }
.team-card h3 { font-size: 1.2rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent-2); font-family: var(--font-head); letter-spacing: .04em; text-transform: uppercase; font-weight: 500; font-size: .85rem; margin-bottom: 10px; }
.team-card p { font-size: .92rem; color: var(--muted); margin-bottom: 0; }
.team-card .exp { font-family: var(--font-head); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); background: rgba(240,138,36,.12); border: 1px solid rgba(240,138,36,.3); padding: 3px 10px; border-radius: 999px; display: inline-block; margin-top: 12px; }

.value-card .icon { background: rgba(240,138,36,.12); border-color: rgba(240,138,36,.3); }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery .media { aspect-ratio: 1 / 1; }
.gallery .media.wide { grid-column: span 2; aspect-ratio: 2 / 1; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 36px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #9aa1ad; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(240,138,36,.2);
}
.field select { color: var(--ink); }
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #c0392b; font-size: .82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0392b; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(240,138,36,.12);
  border: 1px solid rgba(240,138,36,.45);
  color: var(--accent-2);
  font-weight: 500;
}
.form-status.show { display: block; }

.info-card {
  background: var(--charcoal);
  color: var(--on-dark);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 22px;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 9px; background: rgba(240,138,36,.18);
  border: 1px solid rgba(240,138,36,.4);
  display: grid; place-items: center; font-size: 1.25rem;
}
.info-row b { font-family: var(--font-head); letter-spacing: .04em; text-transform: uppercase; color: #fff; display: block; }
.info-row span { font-size: .94rem; color: var(--on-dark-mut); }
.info-row a { color: var(--accent); }

/* Map / campus image */
.map-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.map-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: #15171b;
  color: var(--on-dark-mut);
  padding: 64px 0 28px;
  border-top: 3px solid var(--accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand:hover { color: #fff; }
.footer-about p { font-size: .95rem; color: var(--on-dark-mut); max-width: 320px; }
.footer-col h4 {
  color: #fff; font-family: var(--font-head); letter-spacing: .08em; text-transform: uppercase; font-size: .85rem;
  margin-bottom: 16px;
}
.footer-col a { display: block; color: var(--on-dark-mut); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: var(--accent); }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line-dark);
  display: grid; place-items: center;
  font-size: 1rem;
  color: #fff;
}
.social a:hover { background: var(--accent); color: #1a1205; border-color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .88rem;
  color: var(--on-dark-mut);
}
.footer-bottom a { color: var(--on-dark-mut); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.no-io .reveal { opacity: 1; transform: none; }

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .curriculum { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-media { max-width: 560px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--charcoal);
    border-bottom: 1px solid var(--line-dark);
    box-shadow: var(--shadow);
    padding: 14px var(--gutter) 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split, .contact-grid, .placement-band { grid-template-columns: 1fr; gap: 32px; }
  .placement-band { gap: 0; }
  .split--reverse .split-media { order: 0; }
  .stats-grid, .steps { grid-template-columns: 1fr 1fr; }
  .curriculum, .outcome-tiles { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .media.wide { grid-column: span 2; }
  .role-row { grid-template-columns: 140px 1fr 80px; gap: 12px; }
  .cta-band { padding: 44px 26px; }
}

@media (max-width: 460px) {
  .stats-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .role-row { grid-template-columns: 1fr; gap: 6px; }
  .role-row .bar-track { order: 3; }
  .role-row .role-sal { text-align: left; }
}
