/* ============================================================
   CROFTLANDS CONSULTING — Main Stylesheet
   Deep navy · warm gold · Inter + Playfair Display
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  --navy:        #0B1F3A;
  --navy-dark:   #071528;
  --navy-mid:    #152D4E;
  --navy-light:  #1E3D63;
  --gold:        #C8A96E;
  --gold-hover:  #B8944A;
  --gold-subtle: rgba(200,169,110,0.10);
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --grey-light:  #EEF0F3;
  --grey-border: #DDE1E7;
  --grey-mid:    #CBD5E0;
  --text-dark:   #0B1F3A;
  --text-mid:    #4A5568;
  --text-light:  #718096;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --max-width:  1160px;
  --nav-height: 72px;
  --radius:     4px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-mid); }

/* === LAYOUT === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.section         { padding: 5rem 2rem; }
.section--dark   { background: var(--navy); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.75); }
.section--grey   { background: var(--off-white); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p  { font-size: 1.05rem; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,169,110,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-height);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav.nav--transparent { background: transparent; }
.nav.nav--solid       { background: var(--navy-dark); box-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.nav.nav--page        { background: var(--navy-dark); box-shadow: 0 2px 24px rgba(0,0,0,0.35); }

.nav-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.nav-links .nav-cta:hover { background: var(--gold-hover); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 1.25rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.95rem; }
}

/* === HERO (HOME) === */
.hero {
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 5rem) 2rem 5rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 75% 45%, rgba(200,169,110,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 15% 85%, rgba(21,45,78,0.9) 0%, transparent 55%);
  pointer-events: none;
}
.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero h1 { color: var(--white); max-width: 740px; margin-bottom: 1.4rem; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 5rem;
  flex-wrap: wrap;
}
.hero-stat {
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
}
.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat .label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.25s ease;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 36px rgba(11,31,58,0.09);
  transform: translateY(-3px);
}
.service-icon {
  width: 46px; height: 46px;
  background: var(--gold-subtle);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}
.service-card h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.service-card p  { font-size: 0.875rem; line-height: 1.65; }
.service-card .learn-more {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.service-card .learn-more:hover { text-decoration: underline; }

@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .services-grid { grid-template-columns: 1fr; } }

/* === CREDENTIALS STRIP === */
.credentials {
  background: var(--navy-dark);
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.credentials-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cred-item { text-align: center; }
.cred-item .val {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
}
.cred-item .lbl {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.35rem;
}
.cred-divider {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.12);
}
@media (max-width: 680px) { .cred-divider { display: none; } }

/* === SECTORS (HOME PREVIEW) === */
.sectors-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.sector-card {
  background: var(--navy-mid);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.sector-card .sector-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.sector-card h3 { color: var(--white); margin-bottom: 0.9rem; }
.sector-card p  { color: rgba(255,255,255,0.7); font-size: 0.925rem; margin-bottom: 1.25rem; }
.sector-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.25rem; }
.tag {
  background: rgba(200,169,110,0.12);
  color: var(--gold);
  border: 1px solid rgba(200,169,110,0.25);
  padding: 0.28rem 0.72rem;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 680px) { .sectors-preview { grid-template-columns: 1fr; } }

/* === ABOUT PREVIEW === */
.about-preview {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.about-photo-wrap {
  aspect-ratio: 3/4;
  background: var(--grey-light);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.about-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--grey-mid);
  gap: 0.5rem;
}
.photo-placeholder i  { font-size: 3rem; }
.photo-placeholder p  { font-size: 0.8rem; color: var(--grey-mid); }
.about-text .eyebrow  { margin-bottom: 0.9rem; }
.about-text h2        { margin-bottom: 1.1rem; }
.about-text p         { margin-bottom: 1rem; font-size: 0.95rem; }
.qual-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.25rem 0 1.75rem; }
.qual-pill {
  background: var(--off-white);
  border: 1px solid var(--grey-border);
  border-radius: 2px;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}

@media (max-width: 840px) {
  .about-preview { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo-wrap { max-width: 300px; }
}

/* === INSIGHTS === */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.insight-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.insight-card:hover { box-shadow: 0 10px 36px rgba(11,31,58,0.09); transform: translateY(-3px); }
.insight-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.insight-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
  display: block;
}
.insight-card h3 { font-size: 1.05rem; margin-bottom: 0.7rem; line-height: 1.4; flex: 1; }
.insight-card p  { font-size: 0.875rem; margin-bottom: 1.25rem; }
.read-more {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: auto;
}
.read-more:hover { text-decoration: underline; }

@media (max-width: 900px) { .insights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .insights-grid { grid-template-columns: 1fr; } }

/* === CTA BAND === */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  text-align: center;
  padding: 5.5rem 2rem;
  position: relative;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,169,110,0.06) 0%, transparent 70%);
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-band .cta-detail {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.cta-band .cta-detail a { color: var(--gold); }
.cta-band .cta-detail a:hover { text-decoration: underline; }

/* === FOOTER === */
.footer {
  background: #050F1E;
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  display: block;
}
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 260px; }
.footer-brand .footer-contact { margin-top: 1.25rem; }
.footer-brand .footer-contact a {
  display: block;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.35rem;
  transition: color 0.2s;
}
.footer-brand .footer-contact a:hover { color: var(--gold); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

/* === INNER PAGE HERO === */
.page-hero {
  background: var(--navy-dark);
  padding: calc(var(--nav-height) + 4.5rem) 2rem 4rem;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 40%, rgba(200,169,110,0.07) 0%, transparent 65%);
}
.page-hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.9rem; max-width: 700px; }
.page-hero .lead {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  max-width: 620px;
  line-height: 1.8;
}

/* === SERVICES FULL PAGE === */
.services-list { max-width: var(--max-width); margin: 0 auto; }
.service-full {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--grey-border);
}
.service-full:last-child { border-bottom: none; }
.sf-left { position: sticky; top: calc(var(--nav-height) + 1.5rem); }
.sf-icon {
  width: 60px; height: 60px;
  background: var(--gold-subtle);
  border: 1px solid rgba(200,169,110,0.18);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.4rem;
  margin-bottom: 1rem;
}
.sf-left .sf-number {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: block;
}
.sf-left h3 { font-size: 1.15rem; }
.sf-right p { margin-bottom: 1rem; }
.sf-deliverables {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--grey-border);
}
.sf-deliverables h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 2rem;
}
.deliverables-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.deliverables-grid li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

@media (max-width: 820px) {
  .service-full { grid-template-columns: 1fr; gap: 1.5rem; }
  .sf-left { position: static; }
  .deliverables-grid { grid-template-columns: 1fr; }
}

/* === CASE STUDIES === */
.case-study {
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  max-width: var(--max-width);
  margin-left: auto; margin-right: auto;
}
.case-study:last-child { margin-bottom: 0; }
.cs-header {
  background: var(--navy);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.cs-header-icon {
  width: 50px; height: 50px;
  background: rgba(200,169,110,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.25rem; flex-shrink: 0;
}
.cs-header h3 { color: var(--white); margin-bottom: 0.2rem; font-size: 1.2rem; }
.cs-sector-tag {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold);
}
.cs-body {
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.cs-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.85rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.cs-col p, .cs-col li { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }
.cs-col ul { display: flex; flex-direction: column; gap: 0.45rem; }
.cs-col ul li { display: flex; align-items: flex-start; gap: 0.5rem; }
.cs-col ul li::before { content: '▸'; color: var(--gold); flex-shrink: 0; font-size: 0.75rem; margin-top: 0.1em; }
.cs-results {
  background: var(--off-white);
  border-top: 1px solid var(--grey-border);
  padding: 1.5rem 2.5rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}
.cs-result { text-align: center; }
.cs-result .rv {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  color: var(--navy);
  line-height: 1;
}
.cs-result .rl {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.25rem;
  letter-spacing: 0.03em;
}

@media (max-width: 820px) {
  .cs-body { grid-template-columns: 1fr; }
  .cs-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cs-results { gap: 1.5rem; }
}

/* === ABOUT PAGE === */
.about-full {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}
.about-full .sticky-col { position: sticky; top: calc(var(--nav-height) + 2rem); }
.about-photo-full {
  aspect-ratio: 3/4;
  background: var(--grey-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.about-photo-full img { width: 100%; height: 100%; object-fit: cover; }
.about-detail h2 { margin-bottom: 1.25rem; }
.about-detail p  { margin-bottom: 1rem; font-size: 0.95rem; }
.about-detail h3 { font-size: 1.15rem; margin: 2rem 0 0.85rem; }

.quals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.qual-card {
  background: var(--off-white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex; gap: 0.9rem; align-items: flex-start;
}
.qual-card i { color: var(--gold); font-size: 1rem; margin-top: 0.15rem; flex-shrink: 0; }
.qual-card h4 { font-size: 0.88rem; margin-bottom: 0.2rem; }
.qual-card p  { font-size: 0.8rem; }

/* Timeline */
.timeline { position: relative; margin: 1.5rem 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: var(--grey-border);
}
.tl-item { padding: 0 0 2rem 2rem; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -4px; top: 0.45rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  outline: 1px solid var(--gold);
}
.tl-years {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
  display: block;
}
.tl-item h4 { font-size: 0.95rem; margin-bottom: 0.1rem; }
.tl-item .tl-co { font-size: 0.82rem; color: var(--text-light); margin-bottom: 0.5rem; display: block; }
.tl-item p { font-size: 0.85rem; }

@media (max-width: 840px) {
  .about-full { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-full .sticky-col { position: static; }
  .about-photo-full { max-width: 260px; }
  .quals-grid { grid-template-columns: 1fr; }
}

/* === SECTORS PAGE === */
.sector-full { max-width: var(--max-width); margin: 0 auto; }
.sector-section { padding: 4rem 0; border-bottom: 1px solid var(--grey-border); }
.sector-section:last-child { border-bottom: none; }
.sector-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 2rem;
}
.sector-section h2 { margin-bottom: 1rem; }
.sector-section p  { margin-bottom: 1rem; font-size: 0.95rem; }
.sector-kpis {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.sector-kpis h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.kpi-list { display: flex; flex-direction: column; gap: 0.65rem; }
.kpi-item { display: flex; justify-content: space-between; align-items: center; }
.kpi-item .kpi-name { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.kpi-item .kpi-def  {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  text-align: right;
  max-width: 180px;
}

@media (max-width: 820px) {
  .sector-section-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* === CONTACT === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.cm-icon {
  width: 48px; height: 48px;
  background: var(--gold-subtle);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem; flex-shrink: 0;
}
.cm-text h4 { margin-bottom: 0.2rem; }
.cm-text a { color: var(--gold); font-size: 0.95rem; font-weight: 500; }
.cm-text a:hover { text-decoration: underline; }
.cm-text p { font-size: 0.875rem; margin-top: 0.2rem; }
.contact-right h3 { margin-bottom: 0.85rem; }
.contact-right p  { font-size: 0.95rem; margin-bottom: 0.9rem; }

@media (max-width: 800px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

/* === INSIGHTS LIST PAGE === */
.insights-list { max-width: var(--max-width); margin: 0 auto; }
.insights-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 700px) { .insights-list-grid { grid-template-columns: 1fr; } }

/* === ARTICLE PAGE === */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
.article-content h2 { font-size: 1.6rem; margin: 2.5rem 0 0.75rem; }
.article-content h3 { font-size: 1.2rem; margin: 1.75rem 0 0.6rem; }
.article-content p  { margin-bottom: 1.25rem; font-size: 0.975rem; }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-content ul  { list-style: disc; }
.article-content ol  { list-style: decimal; }
.article-content li  { margin-bottom: 0.55rem; color: var(--text-mid); font-size: 0.975rem; }
.article-content strong { color: var(--text-dark); font-weight: 600; }
.highlight-box {
  background: rgba(200,169,110,0.07);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.highlight-box p { margin: 0; font-style: italic; }

.article-sidebar { position: sticky; top: calc(var(--nav-height) + 2rem); }
.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.sidebar-card h4 { font-size: 0.88rem; margin-bottom: 0.75rem; }
.sidebar-card p  { font-size: 0.85rem; margin-bottom: 1rem; }
.sidebar-card .btn { width: 100%; text-align: center; font-size: 0.82rem; padding: 0.7rem 1rem; }
.sidebar-related { display: flex; flex-direction: column; gap: 0.75rem; }
.related-link { font-size: 0.85rem; color: var(--navy); }
.related-link:hover { color: var(--gold); }

@media (max-width: 900px) {
  .article-wrap { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

/* === UTILITIES === */
.text-center { text-align: center; }
.mt-sm { margin-top: 0.75rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }
.mb-md { margin-bottom: 1.5rem; }
.full-width { width: 100%; }
.divider { border: none; border-top: 1px solid var(--grey-border); margin: 3rem 0; }
.note { font-size: 0.8rem; color: var(--text-light); font-style: italic; }
