/* ============================================================
   Threede — 2026 Design System
   Pure CSS, no frameworks, no JS dependencies
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Custom Properties ── */
:root {
  --primary:       #0d1b2a;
  --secondary:     #1b3a5c;
  --accent:        #e8703a;
  --accent-dark:   #c55a28;
  --accent-light:  #fef4ed;
  --surface:       #ffffff;
  --surface-2:     #f7f9fc;
  --surface-3:     #eef2f7;
  --text:          #0d1b2a;
  --text-muted:    #5a7290;
  --text-light:    #94aab8;
  --border:        #dde5ef;
  --shadow-sm:     0 1px 4px rgba(13,27,42,0.07);
  --shadow:        0 4px 20px rgba(13,27,42,0.10);
  --shadow-lg:     0 12px 48px rgba(13,27,42,0.16);
  --radius:        10px;
  --radius-lg:     18px;
  --radius-pill:   9999px;
  --nav-h:         72px;
  --max-w:         1160px;
  --section-pad:   96px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { max-width: 68ch; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all .22s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,112,58,0.35);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(232,112,58,0.45);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-ghost {
  color: var(--accent);
  font-weight: 600;
  padding: 0;
  border-radius: 0;
}
.btn-ghost::after {
  content: ' →';
}
.btn-ghost:hover { color: var(--accent-dark); }

/* ──────────────────────────────────────
   NAVIGATION
────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all .18s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.09);
}
.nav-links .nav-cta {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover {
  background: var(--accent-dark);
  color: #fff;
}

/* Mobile nav toggle (CSS-only checkbox hack) */
.nav-toggle { display: none; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .25s ease;
}
.nav-toggle:checked ~ .nav-links {
  display: flex;
}

@media (max-width: 860px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #0d1b2a;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 32px;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links a { display: block; padding: 14px 4px; font-size: 1rem; color: rgba(255,255,255,0.8); background: none; border-radius: 0; -webkit-tap-highlight-color: transparent; }
  .nav-links a:hover, .nav-links a.active { color: #fff; background: none; }
  .nav-links li:last-child { margin-top: 24px; }
  .nav-links li:last-child a { padding: 16px 24px; text-align: center; background: var(--accent); border-radius: var(--radius-pill); color: #fff; -webkit-tap-highlight-color: transparent; }
  .nav-links li:last-child a:hover,
  .nav-links li:last-child a:active { background: var(--accent-dark); color: #fff; }
  .nav-toggle:checked ~ .nav-inner .nav-links { display: flex; }
}

/* ──────────────────────────────────────
   HERO — HOMEPAGE
────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.38);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.6) 0%, rgba(27,58,92,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-content .eyebrow { font-size: 0.8rem; }
.hero-title {
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-subtitle {
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 56ch;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 72px) 0 72px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,27,42,0.75) 0%, rgba(13,27,42,0.55) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}
.page-hero-content .subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 50ch;
}

/* ──────────────────────────────────────
   SECTIONS
────────────────────────────────────── */
.section {
  padding: var(--section-pad) 0;
}
.section-sm { padding: 64px 0; }
.section-dark {
  background: var(--primary);
  color: #fff;
}
.section-dark .eyebrow { color: var(--accent); }
.section-dark h2 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.72); }
.section-alt { background: var(--surface-2); }
.section-stripe { background: var(--surface-3); }

.section-header {
  margin-bottom: 56px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 14px;
}

/* ──────────────────────────────────────
   ABOUT / INTRO
────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }
  .about-image img { height: 260px; }
}

/* ──────────────────────────────────────
   SERVICE CARDS
────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .25s ease;
  transform-origin: left;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--accent);
}
.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

@media (max-width: 680px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────
   STAT / HIGHLIGHT BAND
────────────────────────────────────── */
.stats-band {
  background: var(--accent);
  padding: 56px 0;
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item span { font-size: 0.88rem; opacity: 0.85; }

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

/* ──────────────────────────────────────
   PORTFOLIO PREVIEW
────────────────────────────────────── */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-thumb:hover img { transform: scale(1.05); }
.gallery-thumb .thumb-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,27,42,0.8));
  color: #fff;
  padding: 28px 14px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity .25s;
}
.gallery-thumb:hover .thumb-label { opacity: 1; }

@media (max-width: 680px) {
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ──────────────────────────────────────
   CTA BANNER
────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(232,112,58,0.08);
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin: 0 auto 36px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ──────────────────────────────────────
   CAREERS PAGE
────────────────────────────────────── */
.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.careers-main p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.discipline-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.discipline-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.discipline-item::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.position-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tag {
  background: var(--accent-light);
  color: var(--accent-dark);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 0.83rem;
  font-weight: 600;
}
.careers-apply {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.careers-apply h3 { margin-bottom: 16px; }
.careers-apply p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }
.apply-email {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 14px 20px;
  font-family: 'Inter', monospace;
  font-size: 0.95rem;
  font-weight: 500;
  word-break: break-all;
}

@media (max-width: 720px) {
  .careers-grid { grid-template-columns: 1fr; }
  .discipline-list { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────
   INDUSTRY SEGMENT
────────────────────────────────────── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all .22s ease;
}
.industry-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.industry-icon {
  width: 56px; height: 56px;
  background: var(--surface-3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--secondary);
  transition: all .22s;
}
.industry-card:hover .industry-icon {
  background: var(--accent-light);
  color: var(--accent);
}
.industry-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 860px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .industry-grid { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────
   AREAS OF SPECIALISATIONS
────────────────────────────────────── */
.spec-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.spec-section:last-child { border-bottom: none; }
.spec-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.spec-label {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.spec-label .spec-num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--surface-3);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.spec-label h3 { font-size: 1.3rem; }
.spec-label p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
}
.spec-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.spec-group {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.spec-group-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.spec-group ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.spec-group ul li:last-child { border-bottom: none; }
.spec-group ul li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 860px) {
  .spec-grid { grid-template-columns: 1fr; gap: 28px; }
  .spec-label { position: static; }
  .spec-label .spec-num { font-size: 2.8rem; }
}
@media (max-width: 560px) {
  .spec-content-grid { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────
   MANPOWER PAGE
────────────────────────────────────── */
.matrix-section {
  margin-bottom: 64px;
}
.matrix-section h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}
.matrix-section h2 {
  margin-bottom: 28px;
}
.matrix-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.matrix-img-wrap img { width: 100%; }

/* ──────────────────────────────────────
   CONTACT PAGE
────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-info p {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-item h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-detail-item p {
  font-size: 0.95rem;
  color: var(--text);
  max-width: none;
  line-height: 1.5;
}
.contact-detail-item a:hover { color: var(--accent); }
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

/* FoxyForm embed override */
#foxyform { width: 100% !important; }

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

/* ──────────────────────────────────────
   PHOTO GALLERY PAGE
────────────────────────────────────── */
.gallery-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.gallery-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.gallery-category {
  margin-bottom: 56px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  background: var(--surface-3);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 14px 14px;
  background: linear-gradient(transparent, rgba(13,27,42,0.85));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity .25s;
}
.gallery-item:hover .gallery-item-caption { opacity: 1; }

.gallery-grid-2col { grid-template-columns: repeat(2, 1fr); }
.gallery-grid-1col { grid-template-columns: 1fr; max-width: 560px; }

@media (max-width: 680px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-2col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────
   FOOTER
────────────────────────────────────── */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand .nav-logo {
  margin-bottom: 16px;
  font-size: 1.3rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 28ch;
}
.footer-col h5 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color .18s;
}
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ──────────────────────────────────────
   UTILITY CLASSES
────────────────────────────────────── */
.text-center { text-align: center; }
.text-center p { margin: 0 auto; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.accent { color: var(--accent); }
.muted { color: var(--text-muted); }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
