/* Quanza website styles (extracted from index.html) */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --ink:        #0c1220;
  --ink-60:     rgba(12,18,32,.6);
  --ink-20:     rgba(12,18,32,.12);
  --white:      #ffffff;
  --off:        #f7f8fa;
  --accent:     #0a7a8f;
  --accent-mid: rgba(10,122,143,.5);
  --accent-dim: rgba(10,122,143,.2);
  --accent-bg:  rgba(10,122,143,.06);
  --rule:       1px solid var(--ink-20);
  --rule-white: 1px solid rgba(255,255,255,.12);
  --r:          4px;
  --nav-h:      64px;
  --serif:      'DM Serif Display', serif;
  --sans:       'Inter', sans-serif;
  --t:          .3s ease;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--white);
       font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--sans); border: none; background: none; }

/* ── PAGES ─────────────────────────────────────────────── */
.page { display: none; }
.page.active { display: block; }

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); background: var(--white);
  border-bottom: var(--rule);
  display: flex; align-items: center;
}
.nav-inner {
  width: 100%; max-width: 1240px; margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
}
.logo-mark {
  position: relative; width: 32px; height: 32px; flex-shrink: 0;
}
.logo-mark svg { width: 32px; height: 32px; }
.logo-word {
  font-family: var(--sans); font-weight: 600;
  font-size: 17px; letter-spacing: -.3px; color: var(--ink);
}
.nav-links {
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.nav-links a {
  padding: 0 16px; height: var(--nav-h); display: flex; align-items: center;
  font-size: 13.5px; font-weight: 500; letter-spacing: .01em;
  color: var(--ink-60); transition: color var(--t);
  border-right: var(--rule);
}
.nav-links a:first-child { border-left: var(--rule); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active { color: var(--accent); }
.nav-cta {
  padding: 9px 20px; background: var(--accent); color: var(--white);
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  border-radius: var(--r); transition: opacity var(--t);
}
.nav-cta:hover { opacity: .85; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; justify-content: center; align-items: center;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: var(--t); }
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: var(--rule); z-index: 99;
  padding: 16px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 32px; font-size: 15px; font-weight: 500;
  color: var(--ink-60); border-bottom: var(--rule);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--accent); }

/* ── LAYOUT HELPERS ─────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.pt-nav { padding-top: var(--nav-h); }
section { border-bottom: var(--rule); }

/* ── TYPOGRAPHY HELPERS ─────────────────────────────────── */
.serif { font-family: var(--serif); }
.italic { font-style: italic; }
.label {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
}
h1.hero-head {
  font-family: var(--serif); font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.07; letter-spacing: -.03em; color: var(--ink);
  max-width: 820px;
}
h2.section-head {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.12; letter-spacing: -.02em; color: var(--ink);
}
h3.card-head {
  font-family: var(--serif); font-size: 22px;
  line-height: 1.2; letter-spacing: -.015em;
}
p.lead {
  font-size: 17px; line-height: 1.7; color: var(--ink-60); max-width: 560px;
}
p.body { font-size: 15px; line-height: 1.7; color: var(--ink-60); }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: var(--accent); color: var(--white);
  font-size: 14px; font-weight: 600; letter-spacing: .02em;
  border-radius: var(--r); transition: opacity var(--t);
}
.btn-primary:hover { opacity: .85; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border: 1px solid var(--ink-20); color: var(--ink);
  font-size: 14px; font-weight: 500; letter-spacing: .02em;
  border-radius: var(--r); transition: border-color var(--t), color var(--t);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: var(--white); color: var(--ink);
  font-size: 14px; font-weight: 600; letter-spacing: .02em;
  border-radius: var(--r); transition: opacity var(--t);
}
.btn-white:hover { opacity: .88; }

/* ── PILLS / CHIPS ───────────────────────────────────────── */
.pill {
  display: inline-block; padding: 7px 16px;
  border: 1px solid var(--ink-20); border-radius: 100px;
  font-size: 12.5px; font-weight: 500; color: var(--ink-60);
  white-space: nowrap;
}
.pill-accent {
  background: var(--accent-bg); border-color: var(--accent-dim);
  color: var(--accent);
}
.pills-row {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ═══════════════════════════════════════════════════════════
   PAGE 1. HOME
═══════════════════════════════════════════════════════════ */

/* HERO */
.hero {
  min-height: 80vh; display: flex; flex-direction: column; justify-content: center;
  padding-bottom: 64px; padding-top: calc(var(--nav-h) + 48px);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-eyebrow::after { content: ''; flex: 0 0 48px; height: 1px; background: var(--accent); }
.hero-btns { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-caps { margin-top: 64px; padding-top: 32px; border-top: var(--rule); }
.hero-caps-label { font-size: 11px; font-weight: 600; letter-spacing: .1em;
                   text-transform: uppercase; color: var(--ink-60); margin-bottom: 14px; }

/* WHO WE SERVE */
.serve-section { padding: 56px 0; }
.serve-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.serve-label { font-size: 11px; font-weight: 600; letter-spacing: .1em;
               text-transform: uppercase; color: var(--ink-60); flex-shrink: 0; }
.serve-chips { display: flex; flex-wrap: wrap; gap: 8px; }

/* SERVICES GRID */
.services-section { padding: 96px 0; }
.section-header { margin-bottom: 56px; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: var(--rule); }
.services-grid .svc-card { border-right: var(--rule); border-bottom: var(--rule); padding: 36px 32px; }
.services-grid .svc-card:nth-child(3n) { border-right: none; }
.services-grid .svc-card:nth-child(4),
.services-grid .svc-card:nth-child(5) { border-bottom: none; }
.svc-num { font-size: 11px; font-weight: 600; letter-spacing: .1em; color: var(--accent);
           margin-bottom: 20px; }
.svc-icon { width: 36px; height: 36px; margin-bottom: 20px;
            color: var(--accent); }
.svc-card p.body { margin-top: 10px; }
.svc-arrow { display: inline-flex; align-items: center; gap: 6px;
             font-size: 12.5px; font-weight: 600; color: var(--accent);
             margin-top: 20px; transition: gap var(--t); }
.svc-card:hover .svc-arrow { gap: 10px; }

/* WHY QUANZA – DARK */
.why-section {
  background: var(--ink); padding: 96px 0;
  border-bottom: none;
}
.why-section .label { color: var(--accent); }
.why-section .section-head { color: var(--white); margin-top: 12px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 0; margin-top: 56px; border-top: var(--rule-white); }
.why-col { padding: 40px 32px 0 0; border-right: var(--rule-white); }
.why-col:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
.why-col:nth-child(2) { padding-left: 32px; }
.why-num { font-family: var(--serif); font-size: 48px; line-height: 1;
           color: var(--accent); margin-bottom: 20px; }
.why-col h3 { font-family: var(--serif); font-size: 22px; color: var(--white);
              margin-bottom: 12px; }
.why-col p { font-size: 14.5px; line-height: 1.7; color: rgba(255,255,255,.55); }

/* HOW WE WORK */
.how-section { padding: 96px 0; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr);
            gap: 0; margin-top: 56px; border-left: var(--rule); }
.how-col { padding: 0 32px 0 32px; border-right: var(--rule); }
.how-step { font-size: 11px; font-weight: 600; letter-spacing: .1em;
            text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.how-col h3 { font-family: var(--serif); font-size: 20px; margin-bottom: 12px; }
.how-col p { font-size: 14px; color: var(--ink-60); line-height: 1.7; }

/* CTA BAND */
.cta-band {
  padding: 80px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  border-bottom: none;
}
.cta-band h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px);
               max-width: 540px; line-height: 1.15; }

/* ═══════════════════════════════════════════════════════════
   PAGE 2. SERVICES
═══════════════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  border-bottom: var(--rule);
}
.svc-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-bottom: var(--rule);
  padding: 72px 0;
}
.svc-row-left { padding-right: 64px; border-right: var(--rule); }
.svc-row-right { padding-left: 64px; }
.svc-row-left h3 { font-family: var(--serif); font-size: 28px; margin: 12px 0 16px; }
.cap-list { margin-top: 8px; }
.cap-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; border-bottom: var(--rule); font-size: 14px; color: var(--ink-60);
}
.cap-list li:last-child { border-bottom: none; }
.cap-list li::before { content: ''; flex-shrink: 0; width: 6px; height: 6px;
                        border-radius: 50%; background: var(--accent); margin-top: 8px; }

/* ═══════════════════════════════════════════════════════════
   PAGE 3. TRAINING
═══════════════════════════════════════════════════════════ */
.program-grid { display: grid; grid-template-columns: repeat(2, 1fr);
                gap: 0; border: var(--rule); margin-top: 56px; }
.program-card { padding: 40px 36px; border-right: var(--rule); border-bottom: var(--rule); }
.program-card:nth-child(2n) { border-right: none; }
.program-card:nth-child(3),
.program-card:nth-child(4) { border-bottom: none; }
.program-card h3 { font-family: var(--serif); font-size: 22px; margin: 12px 0 10px; }
.program-card p { font-size: 14px; color: var(--ink-60); line-height: 1.7; }

.formats-section { padding: 80px 0; }
.formats-grid { display: grid; grid-template-columns: repeat(4, 1fr);
                gap: 0; margin-top: 40px; border-left: var(--rule); }
.format-col { padding: 0 28px; border-right: var(--rule); }
.format-col h3 { font-family: var(--serif); font-size: 18px; margin: 10px 0 8px; }
.format-col p { font-size: 13.5px; color: var(--ink-60); line-height: 1.65; }

.design-process { padding: 80px 0; background: var(--off); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr);
                gap: 0; margin-top: 40px; }
.proc-col { padding: 0 32px; border-right: var(--rule); }
.proc-col:first-child { padding-left: 0; }
.proc-col:last-child { border-right: none; }
.proc-num { font-family: var(--serif); font-size: 40px; color: var(--accent);
            line-height: 1; margin-bottom: 14px; }
.proc-col h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.proc-col p { font-size: 13.5px; color: var(--ink-60); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   PAGE 4. EDUCATION
═══════════════════════════════════════════════════════════ */
.split-panel {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-bottom: var(--rule);
}
.split-panel-left { padding: 72px 64px 72px 0; border-right: var(--rule); }
.split-panel-right { padding: 72px 0 72px 64px; }
.split-panel h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 16px; }
.split-panel p { font-size: 15px; color: var(--ink-60); line-height: 1.7; }

.inst-grid { display: grid; grid-template-columns: repeat(3, 1fr);
             gap: 0; border: var(--rule); margin-top: 56px; }
.inst-card { padding: 36px 32px; border-right: var(--rule); border-bottom: var(--rule); }
.inst-card:nth-child(3n) { border-right: none; }
.inst-card:nth-child(4),
.inst-card:nth-child(5),
.inst-card:nth-child(6) { border-bottom: none; }
.inst-card h3 { font-family: var(--serif); font-size: 20px; margin: 10px 0 8px; }
.inst-card p { font-size: 13.5px; color: var(--ink-60); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   PAGE 5. ABOUT
═══════════════════════════════════════════════════════════ */
.about-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; padding: 80px 0;
}
.about-left { padding-right: 64px; border-right: var(--rule); }
.about-right { padding-left: 64px; }
.about-left h2 { font-family: var(--serif); font-size: 32px; margin-bottom: 20px; }
.about-left p { font-size: 15px; color: var(--ink-60); line-height: 1.75; margin-bottom: 16px; }
.mvv-row { padding: 24px 0; border-bottom: var(--rule); }
.mvv-row:last-child { border-bottom: none; }
.mvv-row .label { margin-bottom: 8px; }
.mvv-row p { font-size: 15px; color: var(--ink-60); line-height: 1.7; }

.values-section { padding: 80px 0; background: var(--off); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr);
               gap: 0; margin-top: 48px; border: var(--rule); }
.value-card { padding: 40px 36px; border-right: var(--rule); border-bottom: var(--rule); }
.value-card:nth-child(2n) { border-right: none; }
.value-card:nth-child(3),
.value-card:nth-child(4) { border-bottom: none; }
.value-card h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--ink-60); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   PAGE 6. CAREERS
═══════════════════════════════════════════════════════════ */
.jobs-section { padding: 80px 0; }
.job-row {
  display: grid; grid-template-columns: 1fr auto;
  align-items: start; gap: 32px;
  padding: 40px 0; border-bottom: var(--rule);
}
.job-row:last-child { border-bottom: none; }
.job-title { font-size: 20px; font-weight: 600; margin-bottom: 6px; font-family: var(--serif); }
.job-meta { font-size: 13px; color: var(--ink-60); margin-bottom: 16px; }
.job-desc { font-size: 14px; color: var(--ink-60); line-height: 1.7; max-width: 620px; margin-bottom: 20px; }
.job-reqs { margin-top: 4px; }
.job-reqs-label { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.job-reqs ul { display: flex; flex-direction: column; gap: 6px; }
.job-reqs ul li { font-size: 13.5px; color: var(--ink-60); padding-left: 16px; position: relative; line-height: 1.5; }
.job-reqs ul li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.job-tag { padding: 5px 12px; border: 1px solid var(--ink-20); border-radius: 100px;
           font-size: 12px; font-weight: 500; color: var(--ink-60); white-space: nowrap; flex-shrink: 0; margin-top: 6px; }

.apply-section { padding: 80px 0; background: var(--off); }
.apply-form { max-width: 600px; margin-top: 40px; }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 12px; font-weight: 600;
                  letter-spacing: .06em; text-transform: uppercase;
                  color: var(--ink-60); margin-bottom: 8px; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%; padding: 12px 16px;
  border: var(--rule); border-radius: var(--r);
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  background: var(--white); transition: border-color var(--t);
  outline: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--accent); }
.form-row textarea { resize: vertical; min-height: 100px; }
.file-upload {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border: var(--rule); border-radius: var(--r);
  background: var(--white); cursor: pointer; transition: border-color var(--t);
}
.file-upload:hover { border-color: var(--accent); }
.file-upload input[type="file"] { display: none; }
.file-label { font-size: 14px; color: var(--ink-60); }
.file-name { font-size: 13px; color: var(--accent); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   PAGE 7. CONTACT
═══════════════════════════════════════════════════════════ */
.contact-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; padding: 80px 0;
}
.contact-left { padding-right: 64px; border-right: var(--rule); }
.contact-right { padding-left: 64px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 32px; }
.contact-detail-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: var(--rule); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.contact-detail-info { flex: 1; }
.contact-detail-info .label { margin-bottom: 4px; }
.contact-detail-info p { font-size: 15px; color: var(--ink); }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px; background: #25D366; color: var(--white);
  font-size: 14px; font-weight: 600; border-radius: var(--r);
  margin-top: 8px; transition: opacity var(--t);
}
.whatsapp-btn:hover { opacity: .88; }
.contact-form { margin-top: 0; }
.contact-form .form-row input,
.contact-form .form-row select,
.contact-form .form-row textarea {
  background: var(--off);
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--ink); padding: 64px 0 40px; border-top: none;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 0; padding-bottom: 48px; border-bottom: var(--rule-white);
}
.footer-col { padding: 0 40px 0 0; border-right: var(--rule-white); }
.footer-col:last-child { border-right: none; padding-left: 40px; padding-right: 0; }
.footer-col:nth-child(2),
.footer-col:nth-child(3) { padding: 0 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-word { color: var(--white); }
.footer-col > p { font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.7; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: .1em;
                 text-transform: uppercase; color: rgba(255,255,255,.35);
                 margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.6);
                      transition: color var(--t); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--t); }
.footer-bottom a:hover { color: var(--white); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .svc-card:nth-child(2n) { border-right: none; }
  .services-grid .svc-card:nth-child(3n) { border-right: var(--rule); }
  .services-grid .svc-card:nth-child(4),
  .services-grid .svc-card:nth-child(5) { border-bottom: var(--rule); }
  .services-grid .svc-card:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col { padding: 0 32px 32px 0 !important; border-right: none !important; border-bottom: var(--rule-white); }
  .footer-col:nth-child(2n) { padding-right: 0 !important; }
  .footer-col:nth-child(3),
  .footer-col:nth-child(4) { border-bottom: none; }
}

@media (max-width: 720px) {
  :root { --nav-h: 56px; }
  .container { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { grid-template-columns: auto 1fr auto; }

  h1.hero-head { font-size: 34px; }
  h2.section-head { font-size: 26px; }
  .hero { padding-bottom: 56px; padding-top: calc(var(--nav-h) + 48px); }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-caps { margin-top: 40px; }

  .services-grid { grid-template-columns: 1fr; border: none; }
  .services-grid .svc-card { border: none; border-bottom: var(--rule) !important; padding: 28px 0; }

  .why-grid, .how-grid, .process-grid, .formats-grid { grid-template-columns: 1fr; }
  .why-col, .how-col, .format-col, .proc-col { 
    border-right: none !important; border-bottom: var(--rule-white); 
    padding: 32px 0 !important; 
  }
  .why-col:last-child, .how-col:last-child, .format-col:last-child { border-bottom: none; }
  .how-grid { border-left: none; border-top: var(--rule); }
  .formats-grid { border-left: none; border-top: var(--rule); }
  .process-grid .proc-col { border-bottom: var(--rule); }

  .svc-row, .split-panel, .about-body, .contact-body { grid-template-columns: 1fr; }
  .svc-row-left, .split-panel-left, .about-left, .contact-left {
    padding-right: 0; border-right: none; padding-bottom: 40px; border-bottom: var(--rule);
  }
  .svc-row-right, .split-panel-right, .about-right, .contact-right {
    padding-left: 0; padding-top: 40px;
  }

  .program-grid { grid-template-columns: 1fr; }
  .program-card { border-right: none !important; }
  .inst-grid { grid-template-columns: 1fr; }
  .inst-card { border-right: none !important; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none !important; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-col { padding: 0 0 28px 0 !important; border-right: none !important; border-bottom: var(--rule-white); }
  .footer-col:last-child { border-bottom: none; }

  .cta-band { flex-direction: column; align-items: flex-start; }
  .section-header-row { flex-direction: column; align-items: flex-start; }

  .job-row { grid-template-columns: 1fr; }
  .job-tag { width: fit-content; }
}
