/* ============================================================
   GAVRO SKYTECH — Main Stylesheet
   Brand: Navy #0B1526 · Gold #C8962A · Steel #6B7A9A
   ============================================================ */

/* ── Variables ── */
:root {
  --navy:   #0B1526;
  --navy2:  #0F2040;
  --navy3:  #1E3A5F;
  --gold:   #C8962A;
  --gold2:  #A07020;
  --steel:  #6B7A9A;
  --white:  #FFFFFF;
  --offwh:  #F1F5F9;
  --border: #E2E8F0;
  --text:   #1E293B;
  --muted:  #475569;

  --font-head: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius: 6px;
  --radius-lg: 10px;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);

  --max-w: 1200px;
  --section-pad: 5rem 0;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold2); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: bold; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--muted); }
.lead { font-size: 1.15rem; color: var(--muted); line-height: 1.75; }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--section-pad); }
.section--dark { background: var(--navy); }
.section--navy2 { background: var(--navy2); }
.section--offwh { background: var(--offwh); }

/* ── Grid Helpers ── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent; transition: all .2s;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold2); border-color: var(--gold2); color: var(--navy); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); color: var(--white); }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Cards ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card--dark { background: var(--navy2); border-color: var(--navy3); }
.card--gold-top { border-top: 3px solid var(--gold); }
.card-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .5rem;
}
.card-title { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); margin-bottom: .5rem; }
.card-title--light { color: var(--white); }
.card-body { font-size: .925rem; color: var(--muted); line-height: 1.6; }
.card-body--light { color: var(--steel); }

/* ── Section Headers ── */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-header--left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: .75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; }

/* ── Gold accent bar ── */
.gold-bar { width: 48px; height: 3px; background: var(--gold); margin-bottom: 1.25rem; }
.gold-bar--center { margin: 0 auto 1.25rem; }

/* ── Tags / Badges ── */
.badge {
  display: inline-block; font-size: .75rem; font-weight: 600;
  padding: .25rem .75rem; border-radius: 20px;
}
.badge--gold { background: rgba(200,150,42,.15); color: var(--gold); border: 1px solid rgba(200,150,42,.3); }
.badge--steel { background: rgba(107,122,154,.1); color: var(--steel); border: 1px solid rgba(107,122,154,.2); }
.badge--green { background: #d1fae5; color: #065f46; }

/* ════════════════════════════════════════════
   HEADER / NAVIGATION
════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11,21,38,.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,150,42,.2);
  transition: background .3s;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 1.5rem; max-width: var(--max-w); margin: 0 auto;
}
.site-logo {
  display: flex; align-items: center; gap: .75rem; text-decoration: none;
}
.site-logo__icon { width: 42px; height: 42px; flex-shrink: 0; }
.site-logo__text { display: flex; flex-direction: column; }
.site-logo__name { font-family: var(--font-head); font-size: 1.05rem; font-weight: bold; line-height: 1.1; }
.site-logo__name span:first-child { color: var(--white); }
.site-logo__name span:last-child { color: var(--gold); }
.site-logo__tagline {
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--steel); margin-top: 1px;
}

.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-menu a {
  color: rgba(255,255,255,.75); font-size: .9rem; font-weight: 500;
  padding: .5rem .85rem; border-radius: var(--radius); transition: all .15s;
  text-decoration: none;
}
.nav-menu a:hover { color: var(--gold); background: rgba(200,150,42,.08); }
.nav-menu a.current-menu-item { color: var(--gold); }
.nav-cta { margin-left: .75rem; }

/* Mobile nav */
.nav-toggle {
  display: none; background: none; border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); width: 40px; height: 40px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: all .2s; }

@media (max-width: 900px) {
  .nav-menu {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--navy); border-bottom: 1px solid var(--navy3);
    padding: 1rem; gap: .25rem;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: .75rem 1rem; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
}

/* ════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════ */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center; padding-top: 72px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200,150,42,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero__left-bar {
  position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--gold);
}
.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; padding: 5rem 0;
}
.hero__eyebrow {
  font-size: .75rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .75rem;
}
.hero__eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px; background: var(--gold);
}
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 1.5rem; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero__lead { font-size: 1.1rem; color: var(--steel); line-height: 1.75; margin-bottom: 2.5rem; }
.hero__stats { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--navy3); }
.hero__stat-val { font-family: var(--font-head); font-size: 1.8rem; font-weight: bold; color: var(--gold); display: block; line-height: 1; }
.hero__stat-lab { font-size: .75rem; color: var(--steel); letter-spacing: .05em; margin-top: .25rem; }

.hero__visual { display: flex; align-items: center; justify-content: center; }
.hero__logo-large { width: 100%; max-width: 380px; opacity: .9; }

@media (max-width: 768px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }
  .hero__visual { display: none; }
}

/* ════════════════════════════════════════════
   VALUE STRIP
════════════════════════════════════════════ */
.value-strip {
  background: var(--gold); padding: 1.25rem 0;
}
.value-strip__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap; text-align: center;
}
.value-strip__item {
  font-family: var(--font-head); font-size: 1rem; font-weight: bold;
  color: var(--navy); display: flex; align-items: center; gap: .5rem;
}
.value-strip__item::before { content: '✓'; font-size: 1rem; }

/* ════════════════════════════════════════════
   SERVICES OVERVIEW
════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.service-cat {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow); transition: all .2s;
  border-top: 3px solid var(--gold);
}
.service-cat:nth-child(2) { border-top-color: #4A9ECC; }
.service-cat:nth-child(3) { border-top-color: #3DAA7A; }
.service-cat:nth-child(4) { border-top-color: #D4884A; }
.service-cat:nth-child(5) { border-top-color: #9B7ED4; }
.service-cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-cat__num { font-size: .75rem; font-weight: 700; letter-spacing: .1em; color: var(--gold); margin-bottom: .5rem; }
.service-cat:nth-child(2) .service-cat__num { color: #4A9ECC; }
.service-cat:nth-child(3) .service-cat__num { color: #3DAA7A; }
.service-cat:nth-child(4) .service-cat__num { color: #D4884A; }
.service-cat:nth-child(5) .service-cat__num { color: #9B7ED4; }
.service-cat__title { font-family: var(--font-head); font-size: 1.05rem; color: var(--navy); margin-bottom: .35rem; font-weight: bold; }
.service-cat__services { font-size: .85rem; color: var(--muted); line-height: 1.55; margin-bottom: 1rem; }
.service-cat__count { font-size: .8rem; font-weight: 600; color: var(--steel); }

/* ════════════════════════════════════════════
   AI INTELLIGENCE SECTION (dark)
════════════════════════════════════════════ */
.ai-section { background: var(--navy); padding: var(--section-pad); position: relative; overflow: hidden; }
.ai-section::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,150,42,.05) 0%, transparent 70%); pointer-events: none;
}
.ai-left-bar { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--gold); }
.ai-layers { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: var(--navy3); border: 1px solid var(--navy3); border-radius: var(--radius-lg); overflow: hidden; margin-top: 2.5rem; }
.ai-layer {
  background: var(--navy2); padding: 1.5rem; position: relative; padding-top: 1.8rem;
}
.ai-layer__bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold); }
.ai-layer:nth-child(2) .ai-layer__bar { background: #4A9ECC; }
.ai-layer:nth-child(3) .ai-layer__bar { background: #3DAA7A; }
.ai-layer:nth-child(4) .ai-layer__bar { background: #D4884A; }
.ai-layer__num { font-size: .75rem; font-weight: 700; letter-spacing: .1em; color: var(--gold); margin-bottom: .5rem; }
.ai-layer:nth-child(2) .ai-layer__num { color: #4A9ECC; }
.ai-layer:nth-child(3) .ai-layer__num { color: #3DAA7A; }
.ai-layer:nth-child(4) .ai-layer__num { color: #D4884A; }
.ai-layer__title { font-family: var(--font-head); font-size: 1rem; color: var(--white); margin-bottom: .5rem; font-weight: bold; }
.ai-layer__desc { font-size: .875rem; color: var(--steel); line-height: 1.55; }

/* ════════════════════════════════════════════
   MOATS / COMPETITIVE ADVANTAGE
════════════════════════════════════════════ */
.moats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.moat {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: .5rem; position: relative; overflow: hidden;
}
.moat__num {
  position: absolute; top: 1rem; right: 1.25rem;
  font-size: 2.5rem; font-family: var(--font-head); font-weight: bold;
  color: var(--offwh); line-height: 1;
}
.moat__icon { font-size: 1.5rem; margin-bottom: .25rem; }
.moat__title { font-family: var(--font-head); font-size: 1rem; color: var(--navy); font-weight: bold; }
.moat__desc { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.moat__tag { align-self: flex-start; }

/* ════════════════════════════════════════════
   SECTORS
════════════════════════════════════════════ */
.sectors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.sector {
  background: var(--navy2); border: 1px solid var(--navy3);
  border-radius: var(--radius-lg); padding: 1.5rem; color: var(--white);
  transition: all .2s; cursor: pointer; position: relative; overflow: hidden;
  text-decoration: none; display: block;
}
.sector::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.sector:hover::before { transform: scaleX(1); }
.sector:hover { transform: translateY(-3px); border-color: rgba(200,150,42,.3); }
.sector__icon { font-size: 2rem; margin-bottom: .75rem; }
.sector__title { font-family: var(--font-head); font-size: 1rem; color: var(--white); font-weight: bold; margin-bottom: .35rem; }
.sector__desc { font-size: .85rem; color: var(--steel); line-height: 1.5; margin-bottom: .75rem; }
.sector__services { font-size: .8rem; color: var(--gold); font-weight: 600; }

/* ════════════════════════════════════════════
   PROCESS STEPS
════════════════════════════════════════════ */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; }
.process-step {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 2rem; position: relative;
}
.process-step:not(:last-child)::after {
  content: '→'; position: absolute; right: -0.75rem; top: 50%;
  transform: translateY(-50%); color: var(--gold); font-size: 1.5rem; z-index: 1;
}
.process-step__num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gold);
  color: var(--navy); font-family: var(--font-head); font-size: 1.1rem; font-weight: bold;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; flex-shrink: 0;
}
.process-step__title { font-family: var(--font-head); font-size: 1.05rem; color: var(--navy); font-weight: bold; margin-bottom: .5rem; }
.process-step__desc { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════ */
.stats-bar { background: var(--navy); padding: 3rem 0; }
.stats-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; }
.stat-item { text-align: center; }
.stat-val { font-family: var(--font-head); font-size: 2.5rem; font-weight: bold; color: var(--gold); display: block; }
.stat-lab { font-size: .85rem; color: var(--steel); margin-top: .35rem; }

/* ════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════ */
.cta-section { background: var(--navy); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,150,42,.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: var(--steel); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-divider { width: 60px; height: 3px; background: var(--gold); margin: 0 auto 2rem; }

/* ════════════════════════════════════════════
   FULL SERVICES PAGE
════════════════════════════════════════════ */
.services-page-hero { background: var(--navy); padding: 8rem 0 4rem; position: relative; overflow: hidden; }
.services-page-hero__bar { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--gold); }
.services-page-hero h1 { color: var(--white); }
.services-page-hero p { color: var(--steel); font-size: 1.1rem; }

.service-category-section { padding: 4rem 0; }
.service-category-section:nth-child(even) { background: var(--offwh); }

.service-cat-header {
  display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem;
  padding-bottom: 1.25rem; border-bottom: 1px solid var(--border);
}
.service-cat-header__accent { width: 5px; border-radius: 3px; flex-shrink: 0; background: var(--gold); align-self: stretch; min-height: 60px; }
.service-cat-header__title { font-family: var(--font-head); font-size: 1.6rem; color: var(--navy); font-weight: bold; margin-bottom: .25rem; }
.service-cat-header__count { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--steel); }

.service-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.service-item__header {
  padding: 1.25rem 1.5rem; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; transition: background .15s;
  user-select: none;
}
.service-item__header:hover { background: var(--offwh); }
.service-item__title { font-family: var(--font-head); font-size: 1rem; color: var(--navy); font-weight: bold; }
.service-item__sub { font-size: .85rem; color: var(--muted); margin-top: .15rem; }
.service-item__toggle {
  width: 28px; height: 28px; border-radius: 50%; background: var(--offwh);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--steel); flex-shrink: 0; transition: all .2s;
}
.service-item.open .service-item__toggle { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.service-item__body {
  display: none; padding: 0 1.5rem 1.5rem; border-top: 1px solid var(--border);
  animation: slideDown .2s ease;
}
.service-item.open .service-item__body { display: block; }

.ai-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: #d1fae5; border: 1px solid #6ee7b7; border-radius: var(--radius);
  padding: .3rem .75rem; font-size: .75rem; font-weight: 700; color: #065f46;
  letter-spacing: .05em; margin: 1rem 0 .75rem;
}
.ai-badge::before { content: '▸'; font-size: .65rem; }

.ai-features { font-size: .9rem; color: #065f46; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius); padding: .6rem .9rem; margin-bottom: 1rem; line-height: 1.55; }

.service-capabilities { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1rem; }
.service-cap { font-size: .78rem; color: var(--muted); background: var(--offwh); border: 1px solid var(--border); border-radius: 3px; padding: .2rem .6rem; }

.service-deliverables ul { padding-left: 0; }
.service-deliverables li {
  font-size: .9rem; color: var(--muted); padding: .3rem 0 .3rem 1.25rem;
  border-left: 2px solid var(--border); margin-bottom: .3rem; line-height: 1.5;
}
.service-qld { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .35rem; }
.qld-tag {
  font-size: .75rem; font-weight: 600; background: #fef3c7;
  border: 1px solid #fcd34d; color: #92400e; border-radius: 3px; padding: .2rem .6rem;
}

@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════ */
.about-hero { background: var(--navy); padding: 8rem 0 4rem; position: relative; }
.about-hero__bar { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--gold); }
.about-hero h1 { color: var(--white); }
.about-hero .lead { color: var(--steel); }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.value-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.value-card__icon { font-size: 1.75rem; margin-bottom: .75rem; }
.value-card__title { font-family: var(--font-head); font-size: 1rem; color: var(--navy); font-weight: bold; margin-bottom: .5rem; }
.value-card__desc { font-size: .9rem; color: var(--muted); line-height: 1.6; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.team-card__avatar {
  width: 56px; height: 56px; border-radius: 50%; background: var(--offwh);
  display: flex; align-items: center; justify-content: center;
  color: var(--steel); font-weight: 700; font-size: 1.1rem; margin-bottom: 1rem;
  border: 2px solid var(--border);
}
.team-card__name { font-family: var(--font-head); font-size: 1.05rem; color: var(--navy); font-weight: bold; margin-bottom: .2rem; }
.team-card__role { font-size: .8rem; font-weight: 700; color: var(--gold); letter-spacing: .04em; margin-bottom: .75rem; }
.team-card__bio { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════ */
.contact-hero { background: var(--navy); padding: 8rem 0 4rem; position: relative; }
.contact-hero__bar { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--gold); }
.contact-hero h1 { color: var(--white); }
.contact-hero p { color: var(--steel); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info__item { display: flex; gap: 1rem; margin-bottom: 1.75rem; }
.contact-info__icon {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(200,150,42,.1);
  border: 1px solid rgba(200,150,42,.3); display: flex; align-items: center;
  justify-content: center; color: var(--gold); font-size: 1rem; flex-shrink: 0;
}
.contact-info__label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--steel); margin-bottom: .25rem; }
.contact-info__value { font-size: .95rem; color: var(--navy); font-weight: 500; }

/* Contact form */
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); }
.contact-form h3 { font-family: var(--font-head); font-size: 1.25rem; color: var(--navy); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font-body); font-size: .95rem;
  color: var(--text); background: var(--white); transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,150,42,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { margin-top: 1rem; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer { background: var(--navy); color: var(--steel); padding: 4rem 0 0; position: relative; }
.site-footer::before { content: ''; display: block; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand__logo { margin-bottom: 1rem; }
.footer-brand__desc { font-size: .9rem; color: var(--steel); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-brand__tag { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(200,150,42,.6); }
.footer-col h4 { font-family: var(--font-head); font-size: .95rem; color: var(--white); font-weight: bold; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { font-size: .875rem; color: var(--steel); transition: color .15s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--navy3); padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p { font-size: .8rem; color: var(--navy3); margin: 0; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .8rem; color: var(--navy3); transition: color .15s; }
.footer-legal a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   PAGE HERO (generic)
════════════════════════════════════════════ */
.page-hero { background: var(--navy); padding: 8rem 0 3.5rem; position: relative; overflow: hidden; }
.page-hero__bar { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero .lead { color: var(--steel); max-width: 640px; }
.page-hero__breadcrumb { font-size: .8rem; color: var(--steel); margin-bottom: 1rem; }
.page-hero__breadcrumb a { color: rgba(200,150,42,.7); }
.page-hero__breadcrumb a:hover { color: var(--gold); }

/* Page content */
.page-content { padding: 4rem 0; }
.page-content h2 { margin-bottom: 1rem; }
.page-content p { margin-bottom: 1.25rem; }

/* ════════════════════════════════════════════
   UTILITIES
════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Responsive */
@media (max-width: 600px) {
  .process { grid-template-columns: 1fr; }
  .process-step:not(:last-child)::after { display: none; }
  .stats-inner { gap: 1.5rem; }
  .hero__stats { gap: 1.25rem; }
  :root { --section-pad: 3.5rem 0; }
}
