@import url('https://fonts.googleapis.com/css2?family=Georgia+Pro:ital,wght@0,300;0,400;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy:       #090E27;
  --navy-mid:   #111830;
  --navy-card:  #161E3A;
  --navy-card:  rgba(22, 30, 58, 0.6);
  --navy-light: #1E2A50;
  --navy-light:  rgba(30, 42, 80, 0.6);
  --gold:       #B8952A;
  --gold-light: #D4AF50;
  --gold-pale:  #E8D08A;
  --white:      #FFFFFF;
  --off-white:  #E6ECF8;
  --muted:      #7A90C0;
  --border:     rgba(184,149,42,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Georgia Pro', serif;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(9,14,39,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-full {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--off-white);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ── NAV DROPDOWN ── */
.nav-has-dropdown {
  position: relative;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: rgba(9,14,39,0.97);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 200;
  backdrop-filter: blur(12px);
}

.nav-has-dropdown.open .nav-dropdown { display: block; }

.nav-dropdown li a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.nav-dropdown li a:hover { color: var(--gold-light); background: rgba(184,149,42,0.06); }

.nav-dropdown-arrow {
  display: inline-block;
  font-size: 0.6rem;
  margin-left: 0.3rem;
  transition: transform 0.2s;
  vertical-align: middle;
}

.nav-has-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }

/* house icon */
.nav-home-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  fill: currentColor;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.85rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--off-white);
  padding: 0.85rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── SECTIONS ── */
section {
  padding: 6rem 4rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  color: var(--white);
  margin: 0.5rem 0 1rem;
}

.section-header p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.8;
}

.alt-bg {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── HOME HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 4rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/background.png');
  background-size: cover;
  background-position: center;
  z-index: -1;
  /*background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(184,149,42,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(26,173,160,0.04) 0%, transparent 60%);*/
}

.hero-grid {
  position: absolute;
  inset: 0;
  /*background-image: url('../images/background.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: -1;*/
}

.hero-mark {
  position: fixed;
  top: -55px;
  right: -105px;
  width: 560px;
  height: auto;
  opacity: 0.2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

.hero-logo {
  display: block;
  width: clamp(200px, 35vw, 380px);
  height: auto;
  margin-bottom: 1.75rem;
}

.hero-title {
  font-size: clamp(1.2rem, 2vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.gold {
  color: var(--gold-light);
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  margin: 1.5rem 0 2.5rem;
  max-width: 460px;
  line-height: 1.8;
}

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

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-stat-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 3px;
  opacity: 80%;
  transform: translateX(30px);
  animation: slideIn 0.6s ease forwards;
}

.hero-stat-card:nth-child(1) { animation-delay: 0.3s; }
.hero-stat-card:nth-child(2) { animation-delay: 0.5s; }
.hero-stat-card:nth-child(3) { animation-delay: 0.7s; }

@keyframes slideIn {
  to { opacity: 1; transform: translateX(0); }
}

.stat-number {
  font-family: 'Georgia Pro', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.stat-source {
  font-size: 0.7rem;
  color: var(--muted);
  font-style: italic;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 10rem 4rem 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/background.png');
  background-size: cover;
  background-position: center;
  z-index: -1;
  /*opacity: 0.5;*/
  /*background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(184,149,42,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(26,173,160,0.03) 0%, transparent 60%);*/
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  /*background-image: url('../images/background.png');
  background-size: cover;
  background-position: center;
  opacity: 0.5;*/
}

.page-hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero-badge {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia Pro', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  color: var(--white);
  margin: 0.5rem 0;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.8;
  margin: 1.5rem 0 2.5rem;
}

/* ── PROBLEM ── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.problem-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: 3px;
  transition: border-color 0.3s;
}

.problem-card:hover { border-color: rgba(184,149,42,0.5); }

.problem-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── REGULATORY ── */
.reg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.reg-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.reg-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184,149,42,0.5);
}

.reg-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.reg-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.reg-full {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem 2.5rem;
  text-align: center;
}

.reg-full:hover {
  transform: translateY(-3px);
  border-color: rgba(184,149,42,0.5);
}

.reg-full h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.reg-full p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── SERVICES OVERVIEW ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  text-decoration: none;
  display: block;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184,149,42,0.5);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: var(--navy-light);
  border-bottom: 1px solid var(--border);
}

.service-badge {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia Pro', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.service-name {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.service-sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.service-body {
  padding: 1.5rem 1.75rem;
}

.service-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.service-card-wide { grid-column: 1 / -1; }

/* ── DELIVERABLES ── */
.deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.deliverables li {
  font-size: 0.875rem;
  color: var(--off-white);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.65;
}

.deliverables li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  top: 0.05rem;
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.75rem;
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Georgia Pro', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.process-step h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.825rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── TWO COLUMN LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.content-block p {
  font-size: 1rem;
  color: var(--off-white);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.content-block p:last-child { margin-bottom: 0; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 1.75rem;
  border-radius: 3px;
}

.highlight-box p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* ── WHO ITS FOR CARDS ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.audience-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.75rem;
}

.audience-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.audience-card p {
  font-size: 0.825rem;
  color: var(--muted);
  line-height: 1.65;
}

.audience-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── ABOUT ── */
.about-name-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.about-intro {
  font-size: 1rem;
  color: var(--off-white);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cred-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--off-white);
}

.cred-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.cred-list li strong {
  color: var(--gold-pale);
  font-weight: 500;
}

.experience-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(184,149,42,0.12);
}

.experience-item:last-child { border-bottom: none; }

.exp-org {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.exp-detail {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CONTACT ── */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-item a,
.contact-item span {
  font-size: 0.95rem;
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--gold-light); }

/* ── FORM ── */
.form-panel {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2.5rem;
}

.form-panel h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.form-panel > p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.7rem 1rem;
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 0.9rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--gold-light); }

/* ── CTA BAND ── */
.cta-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 4rem;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  margin: 0.5rem 0 1.25rem;
}

.cta-band p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* ── RELATED SERVICES ── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.related-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.5rem;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.3s, border-color 0.3s;
}

.related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(184,149,42,0.5);
}

.related-badge {
  width: 2rem;
  height: 2rem;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia Pro', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.related-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.related-sub {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  height: 72px;
  margin-bottom: 20px;
  width: auto;
  display: block;
  margin-bottom: 0.6rem;
}

.footer-left {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

.footer-left strong {
  color: var(--off-white);
  font-weight: 500;
}

.footer-right {
  display: flex;
  gap: 2rem;
}

.footer-right a {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-right a:hover { color: var(--gold-light); }

/* ── UTILITY ── */
.gold-rule {
  width: 3rem;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.team-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  padding: 2rem;
}

.team-card-featured { grid-column: 1 / -1; }

.team-photo {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  object-fit: cover;
  /*border: 2px solid var(--gold);*/
  margin-bottom: 1.25rem;
  display: block;
}

.team-name {
  font-family: 'Georgia Pro', Georgia, serif;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--white);
  margin-bottom: 0.2rem;
}

.team-postnominals {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--gold-pale);
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.team-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--off-white);
  line-height: 1.75;
}

.team-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: none;
}
.team-link:hover { color: var(--gold-light); }

/* ── CV PAGES ── */
.cv-intro {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
}

.cv-intro-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  /*border: 2px solid var(--gold);*/
  display: block;
}

.cv-intro-text .about-name-title {
  margin-bottom: 1.5rem;
}

.cv-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cv-entry {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.cv-entry:first-child { padding-top: 0; }
.cv-entry:last-child { border-bottom: none; }

.cv-entry-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  padding-top: 0.2rem;
}

.cv-entry-title {
  font-family: 'Georgia Pro', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.cv-entry-org {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-pale);
  margin-bottom: 0.6rem;
}

.cv-entry-desc {
  font-size: 0.875rem;
  color: var(--off-white);
  line-height: 1.75;
}

.cv-entry-desc p + p { margin-top: 0.6rem; }

.cv-quals {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cv-qual-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.cv-qual-item:last-child { border-bottom: none; }

.cv-qual-award {
  font-family: 'Georgia Pro', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold-light);
  padding-top: 0.15rem;
}

.cv-qual-award--label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  padding-top: 0.3rem;
}

.cv-qual-detail strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.cv-qual-detail span {
  font-size: 0.8rem;
  color: var(--muted);
}

.cv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.cv-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .cv-intro { grid-template-columns: 1fr; }
  .cv-intro-photo { width: 140px; height: 140px; }
  .cv-entry { grid-template-columns: 1fr; gap: 0.4rem; }
  .cv-qual-item { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* ── PARTNERS ── */
.partner-groups {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.partner-group-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.partner-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.5rem;
  transition: border-color 0.3s;
}

.partner-card:hover { border-color: rgba(184,149,42,0.5); }

.partner-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.partner-type {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.partner-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PARTNER PAGES ── */
.partner-page-logo {
  max-width: 300px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  display: block;
  /*filter: brightness(0) invert(1);*/
  opacity: 0.85;
}

.partner-card-logo {
  max-width: 180px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
  /*filter: brightness(0) invert(1);*/
  opacity: 0.7;
}

.partner-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.partner-type-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .partner-intro { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── INSIGHTS LISTING ── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.insight-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}

.insight-card:hover { border-color: rgba(184,149,42,0.5); }

.insight-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.insight-category {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.insight-title {
  font-family: 'Georgia Pro', Georgia, serif;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 0.4rem;
}

.insight-card-featured .insight-title {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}

.insight-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.insight-excerpt {
  font-size: 0.875rem;
  color: var(--off-white);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.insight-service {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
  margin-top: -0.5rem;
}

.insight-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: none;
  align-self: flex-start;
}
.insight-link:hover { color: var(--gold-light); }

/* ── ARTICLE PAGE ── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}

.article-body p {
  font-size: 0.975rem;
  color: var(--off-white);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.article-body h2 {
  font-family: 'Georgia Pro', Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--white);
  margin: 2.5rem 0 0.75rem;
}

.article-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  margin: 1.75rem 0 0.5rem;
}

.article-placeholder {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-left: 3px solid rgba(184,149,42,0.3);
  border-radius: 3px;
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}

.article-placeholder p {
  color: var(--muted) !important;
  font-style: italic;
  margin: 0 !important;
  font-size: 0.875rem !important;
  line-height: 1.7 !important;
}

.article-sidebar-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.article-sidebar-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.article-sidebar-card p,
.article-sidebar-card a {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  text-decoration: none;
  display: block;
}

.article-sidebar-card a:hover { color: var(--gold-light); }

/* ── CREDENTIALS ── */
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.credential-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  padding: 2rem;
}

.credential-name {
  font-family: 'Georgia Pro', Georgia, serif;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--white);
  margin-bottom: 0.2rem;
}

.credential-postnominals {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--gold-pale);
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.credential-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  padding: 2rem;
}

.testimonial-pending {
  border-left-color: rgba(184,149,42,0.25);
}

.testimonial-quote {
  font-family: 'Georgia Pro', Georgia, serif;
  font-size: 0.975rem;
  color: var(--off-white);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-pending .testimonial-quote {
  color: var(--muted);
  font-size: 0.85rem;
}

.testimonial-attribution {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--gold-pale);
  font-weight: 500;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.case-study-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.75rem;
}

.cs-pending { opacity: 0.55; }

.cs-sector {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.cs-title {
  font-family: 'Georgia Pro', Georgia, serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.cs-service {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--gold-pale);
  margin-bottom: 0.75rem;
}

.cs-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── POLICY PAGES ── */
.policy-doc {
  max-width: 780px;
}

.policy-intro {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.policy-intro p {
  color: var(--off-white);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-intro a { color: var(--gold); }

.policy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-heading {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: 'Georgia Pro', Georgia, serif;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 400;
  color: var(--white);
  margin: 0 0 1.25rem;
}

.policy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 2px;
  flex-shrink: 0;
}

.policy-section p {
  color: var(--off-white);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-section p:last-child { margin-bottom: 0; }

.policy-section a { color: var(--gold); }

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.policy-list li {
  color: var(--off-white);
  line-height: 1.75;
  padding: 0.4rem 0 0.4rem 1.25rem;
  position: relative;
  border-bottom: 1px solid rgba(184,149,42,0.1);
  font-size: 0.9rem;
}

.policy-list li:last-child { border-bottom: none; }

.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.policy-list strong { color: var(--gold-pale); }

/* ── TOOLS HUB ── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tool-hub-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-decoration: none;
  transition: border-color 0.25s, transform 0.2s;
}

.tool-hub-card:hover {
  border-color: rgba(184,149,42,0.55);
  transform: translateY(-2px);
}

.tool-hub-num {
  font-family: 'Georgia Pro', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: rgba(184,149,42,0.35);
  line-height: 1;
}

.tool-hub-category {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.tool-hub-title {
  font-family: 'Georgia Pro', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
}

.tool-hub-card p.tool-hub-desc {
  font-size: 0.845rem;
  color: var(--muted);
  line-height: 1.7;
  flex-grow: 1;
}

.tool-hub-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.tool-hub-meta span {
  font-size: 0.7rem;
  color: var(--muted);
  background: rgba(184,149,42,0.07);
  border: 1px solid rgba(184,149,42,0.2);
  border-radius: 2px;
  padding: 0.2rem 0.5rem;
}

.tool-hub-link {
  font-size: 0.8rem;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  margin-top: 0.25rem;
}

.tool-hub-card:hover .tool-hub-link { color: var(--gold-light); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-light);
    border-top: 1px solid var(--border);
    padding: 0.5rem 1.5rem 1rem;
    gap: 0;
    z-index: 99;
  }
  nav.nav-open .nav-links li { border-bottom: 1px solid rgba(184,149,42,0.1); }
  nav.nav-open .nav-links li:last-child { border-bottom: none; }
  nav.nav-open .nav-links a { display: block; padding: 0.7rem 0; }
  nav.nav-open .nav-hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  nav.nav-open .nav-hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  /* Mobile dropdown — expand inline */
  .nav-dropdown {
    display: none;
    position: static;
    transform: none;
    background: none;
    border: none;
    border-top: 1px solid rgba(184,149,42,0.1);
    padding: 0;
    margin-top: 0.25rem;
  }
  .nav-has-dropdown.open .nav-dropdown { display: block; }
  .nav-dropdown li a { padding: 0.55rem 1rem; font-size: 0.8rem; color: var(--muted); }
  .nav-dropdown-arrow { display: inline-block; }
  section { padding: 4rem 1.5rem; }
  #hero { padding: 7rem 1.5rem 4rem; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .reg-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: auto; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card-featured { grid-column: auto; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card-featured { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .case-study-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 3rem 1.5rem; }
  footer { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
}
