/* =============================================
   TENRIDGE CONSULTING — Main Stylesheet
   Aesthetic: Refined Editorial / Modern Luxury
   ============================================= */

:root {
  --ink: #0e0e0e;
  --ink-60: rgba(14,14,14,0.6);
  --ink-20: rgba(14,14,14,0.12);
  --cream: #f7f4ef;
  --cream-dark: #ede9e1;
  --gold: #b8935a;
  --gold-light: #d4a96a;
  --gold-pale: rgba(184,147,90,0.12);
  --slate: #1a2233;
  --slate-mid: #243047;
  --white: #ffffff;
  --white-10: rgba(255,255,255,0.1);
  --white-20: rgba(255,255,255,0.2);
  --white-60: rgba(255,255,255,0.6);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max: 1200px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }
h4, h5 { font-family: var(--font-body); font-weight: 500; }
em { font-style: italic; color: var(--gold); }

.section-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-tag.light { color: var(--gold-light); }
.section-title { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 1.5rem; }
.section-title.light { color: var(--white); }
.section-desc { font-size: 1.05rem; opacity: 0.75; max-width: 520px; }
.section-desc.light { color: var(--white-60); opacity: 1; }
.section-header { margin-bottom: 4rem; }

/* ============ LAYOUT ============ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-primary.full-width { width: 100%; text-align: center; padding: 1rem; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--white-20);
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover { border-color: var(--gold); background: var(--gold-pale); }

/* ============ NAVBAR ============ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(14,14,14,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  display: flex; align-items: center; gap: 0.8rem;
  text-decoration: none; color: var(--white);
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--white);
}
.logo-text em { font-style: normal; color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--slate);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 1.5rem 0; }
.mobile-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--gold); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: var(--slate);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 8rem 2rem 4rem;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
}
.orb-1 {
  width: 700px; height: 700px;
  background: var(--gold);
  top: -200px; right: -200px;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: #4a6fa5;
  bottom: -150px; left: -100px;
  animation: orbFloat 15s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(30px, -30px); }
}

.hero-content {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.hero-title em { display: block; }

.hero-sub {
  font-size: 1.05rem;
  color: var(--white-60);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--white-10);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
  text-transform: uppercase;
  max-width: 120px;
}
.stat-div { width: 1px; height: 40px; background: var(--white-10); }

.hero-scroll {
  position: absolute;
  bottom: 2rem; right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-60);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(0.7); } }

/* ============ ABOUT ============ */
.about { padding: 7rem 0; background: var(--cream); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-left .section-tag { margin-bottom: 0.5rem; }

.about-card {
  background: var(--white);
  border: 1px solid var(--ink-20);
  margin-top: 2.5rem;
  position: relative;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
}

.about-card-inner { padding: 2.5rem 2.5rem 2.5rem 2.8rem; }
.about-monogram {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.about-lead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1rem;
  font-weight: 400;
}
.about-card-text p { font-size: 0.9rem; color: var(--ink-60); line-height: 1.8; margin-bottom: 0.75rem; }
.about-card-text p:last-child { margin-bottom: 0; }

.competency-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--ink-20); border: 1px solid var(--ink-20); }
.comp-card {
  background: var(--white);
  padding: 1.8rem 1.5rem;
  transition: background var(--transition);
}
.comp-card:hover { background: var(--cream); }
.comp-icon { font-size: 1.2rem; color: var(--gold); margin-bottom: 0.7rem; }
.comp-card h4 { font-size: 0.85rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--ink); }
.comp-card p { font-size: 0.8rem; color: var(--ink-60); line-height: 1.6; }

/* ============ SERVICES ============ */
.services { padding: 7rem 0; position: relative; }
.services-bg {
  position: absolute; inset: 0;
  background: var(--slate);
}
.services .container { position: relative; z-index: 1; }

/* 6 cards: 2-col grid = 3 rows */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.08); }
.service-card {
  background: var(--slate-mid);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background var(--transition);
}
.service-card:hover { background: #2a3652; }
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::after { transform: scaleX(1); }

.service-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.service-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 1rem; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 400;
}
.service-card > p { font-size: 0.88rem; color: var(--white-60); margin-bottom: 1.5rem; line-height: 1.75; }

.service-list { list-style: none; margin-bottom: 2rem; }
.service-list li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 0.6rem;
}
.service-list li::before { content: '—'; color: var(--gold); font-size: 0.7rem; }

.service-result {
  font-size: 0.78rem;
  color: var(--gold-light);
  padding: 0.7rem 1rem;
  background: rgba(184,147,90,0.1);
  border-left: 2px solid var(--gold);
}
.result-label { font-weight: 500; margin-right: 0.3rem; }

/* ============ TRACK RECORD ============ */
.track-record { padding: 7rem 0 5rem; background: var(--cream); }
.track-record .container:first-child { padding-bottom: 0; }
.track-record .section-desc { opacity: 0.7; max-width: 580px; }

/* Programme outcome cards */
.programmes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.programme-card {
  background: var(--white);
  border: 1px solid var(--ink-20);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform 0.25s;
}
.programme-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.prog-category {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.9rem;
}
.programme-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.prog-scale {
  font-size: 0.72rem;
  color: var(--ink-60);
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--ink-20);
}
.programme-card > p {
  font-size: 0.86rem;
  color: var(--ink-60);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 2rem;
}
.prog-outcomes {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-20);
  margin-top: auto;
}
.prog-outcome {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  font-size: 0.8rem;
  color: var(--ink-60);
  line-height: 1.5;
}
.prog-outcome::before {
  content: '—';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* Credentials */
.creds-section { margin-bottom: 4rem; }
.creds-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ink-20);
}
.creds-header {
  display: flex;
  align-items: baseline;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ink-20);
  flex-wrap: wrap;
}
.creds-context {
  font-size: 0.84rem;
  color: var(--ink-60);
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
}

/* Professional certifications — 3 items, statement not checklist */
.prof-certs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 2rem;
  border-top: 1px solid var(--ink-20);
  border-bottom: 1px solid var(--ink-20);
}
.prof-cert {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.8rem 2rem;
  border-right: 1px solid var(--ink-20);
  transition: background 0.2s;
}
.prof-cert:last-child { border-right: none; }
.prof-cert:hover { background: var(--white); }
.cert-abbr {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 3rem;
  flex-shrink: 0;
}
.cert-detail { display: flex; flex-direction: column; gap: 0.25rem; }
.cert-detail strong { font-size: 0.85rem; font-weight: 500; color: var(--ink); line-height: 1.3; }
.cert-detail span { font-size: 0.72rem; color: var(--ink-60); letter-spacing: 0.02em; }

/* Academic footnote */
.acad-credentials {
  font-size: 0.76rem;
  color: var(--ink-60);
  letter-spacing: 0.01em;
  line-height: 1.6;
}
.acad-credentials::before {
  content: 'Academic — ';
  color: var(--gold);
  font-weight: 500;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Tech */
.tech-categories { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.tech-cat h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.8rem; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tech-tags span {
  font-size: 0.75rem;
  background: var(--white);
  border: 1px solid var(--ink-20);
  padding: 0.3rem 0.7rem;
  color: var(--ink-60);
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
}
.tech-tags span:hover { border-color: var(--gold); color: var(--gold); }

/* ============ INSIGHTS ============ */
/* 5 cards: 1 featured (spans 2) + 4 regular (2×2) */
.insights { padding: 7rem 0; position: relative; }
.insights-bg { position: absolute; inset: 0; background: #111827; }
.insights .container { position: relative; z-index: 1; }

.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); }
.insight-card {
  background: #1a2233;
  padding: 2.5rem;
  transition: background var(--transition);
  display: flex; flex-direction: column;
}
.insight-card:hover { background: #1f2940; }
.insight-card.featured {
  grid-column: span 3;
  background: #1f2d45;
}
.insight-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}
.insight-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.insight-card.featured h3 { font-size: 1.9rem; }
.insight-card p { font-size: 0.87rem; color: var(--white-60); line-height: 1.75; flex: 1; margin-bottom: 1.5rem; }
.insight-meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.insight-read { font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.insight-link { font-size: 0.78rem; color: var(--gold); text-decoration: none; letter-spacing: 0.05em; transition: color 0.2s; }
.insight-link:hover { color: var(--gold-light); }

/* ============ CONTACT ============ */
.contact { padding: 7rem 0; background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start; }

.contact-intro {
  font-size: 1rem;
  color: var(--ink-60);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-detail { display: flex; flex-direction: column; gap: 0.2rem; }
.detail-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); }
.detail-value { font-size: 0.9rem; color: var(--ink); }
.detail-link {
  font-size: 0.9rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.detail-link:hover { color: var(--gold); }

.contact-form { background: var(--white); border: 1px solid var(--ink-20); padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-group label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-60); font-weight: 500; }

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--ink-20);
  background: var(--cream);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* Custom select arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8935a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-note { font-size: 0.72rem; color: var(--ink-60); margin-top: 0.8rem; text-align: center; }
.bot-field { display: none; }

.form-success {
  background: var(--white);
  border: 1px solid var(--ink-20);
  padding: 4rem 2.5rem;
  text-align: center;
}
.success-icon {
  width: 56px; height: 56px;
  background: var(--gold);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}
.form-success h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--ink-60); font-size: 0.9rem; }

.form-error {
  background: var(--white);
  border: 1px solid rgba(200, 60, 60, 0.3);
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  text-align: center;
}
.form-error p { font-size: 0.85rem; color: #b03030; }

/* ============ FOOTER ============ */
.footer { background: var(--ink); padding: 4rem 0 2rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem; flex-wrap: wrap; }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 0.8rem; }
.footer-brand .nav-logo .logo-text { color: var(--white); }
.footer-links { display: flex; gap: 4rem; }
.footer-col h5 { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.82rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
.footer-reg { font-size: 0.7rem !important; }

/* ============ SECTORS STRIP ============ */
.sectors-strip {
  margin-top: 3rem;
  padding: 1.8rem 0 0;
  border-top: 1px solid var(--ink-20);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.sectors-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.sectors-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.82rem;
  color: var(--ink-60);
}
.sectors-list span { padding: 0.15rem 0.6rem; }
.sector-div { color: var(--ink-20) !important; padding: 0 !important; }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 7rem 0; background: var(--cream-dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--ink-20);
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform 0.25s;
}
.testimonial-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.7;
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.75;
  font-weight: 400;
  font-style: italic;
  flex: 1;
  margin-bottom: 2rem;
  border: none;
  padding: 0;
}
.testimonial-attr { border-top: 1px solid var(--ink-20); padding-top: 1.2rem; }
.attr-name { font-size: 0.82rem; font-weight: 500; color: var(--ink); margin-bottom: 0.25rem; }
.attr-org { font-size: 0.7rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }

/* ============ HOW WE ENGAGE ============ */
.how-we-engage { padding: 7rem 0; position: relative; }
.engage-bg { position: absolute; inset: 0; background: var(--slate); }
.how-we-engage .container { position: relative; z-index: 1; }
.engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.engage-card {
  background: var(--slate-mid);
  padding: 3rem 2.5rem;
  transition: background var(--transition);
  position: relative;
}
.engage-card:hover { background: #2a3652; }
.engage-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.engage-card:hover::after { transform: scaleX(1); }
.engage-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.engage-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 1rem;
}
.engage-card > p {
  font-size: 0.87rem;
  color: var(--white-60);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.engage-detail {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.engage-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.el { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); white-space: nowrap; }
.ev { font-size: 0.8rem; color: var(--gold-light); text-align: right; }
.engage-process {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.8rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.process-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.process-steps {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  flex: 1;
}
.process-step { display: flex; align-items: center; gap: 0.6rem; }
.ps-num {
  width: 20px; height: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ps-text { font-size: 0.78rem; color: var(--white-60); }
.process-arrow { color: rgba(255,255,255,0.15); font-size: 0.9rem; }

/* Footer social */
.footer-social { display: flex; gap: 0.8rem; margin-top: 1rem; }
.footer-social a {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.28rem 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s;
}
.footer-social a:hover { color: var(--gold); border-color: var(--gold); }
.footer-privacy {
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-privacy:hover { color: var(--gold); }

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .orb-1, .orb-2 { animation: none; }
  .scroll-line { animation: none; opacity: 0.6; }
  html { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .prof-cert { padding: 1.5rem; }
  .programmes-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .insight-card.featured { grid-column: span 2; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .engage-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .competency-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .programmes-grid { grid-template-columns: 1fr; }
  .prog-metrics { flex-wrap: wrap; gap: 1.5rem; }
  .prof-certs { grid-template-columns: 1fr; }
  .prof-cert { border-right: none; border-bottom: 1px solid var(--ink-20); }
  .prof-cert:last-child { border-bottom: none; }
  .tech-categories { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 2rem; }
  .section-header { text-align: center; }
  .section-header .section-desc { margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .sectors-strip { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card.featured { grid-column: span 1; }
  .engage-process { flex-direction: column; align-items: flex-start; }
  .process-steps { flex-direction: column; align-items: flex-start; }
  .process-arrow { transform: rotate(90deg); }
}
