/* ═══════════════════════════════════════════════════════════
   NKS GROUP — EXECUTIVE WEBSITE
   Aesthetic: Luxury Industrial · Dark Authority · Gold Precision
   Fonts: Playfair Display (display) + DM Sans (body)
   Palette: Deep Navy #0d1117 · Forest Green #1e4620 · 
            Gold #b8963e · Cream #f5f0e8 · Steel #8a9bb0
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
  --navy:        #0d1117;
  --navy-2:      #161c26;
  --navy-3:      #1e2736;
  --green:       #1e4620;
  --green-2:     #2a5e2d;
  --green-light: #2d6b30;
  --gold:        #b8963e;
  --gold-2:      #d4ae58;
  --gold-light:  #e8c97a;
  --cream:       #f5f0e8;
  --cream-2:     #ede7d9;
  --steel:       #8a9bb0;
  --white:       #ffffff;
  --text-dark:   #1a1f2e;
  --text-mid:    #4a5568;
  --text-light:  #718096;
  --border-dark: rgba(184,150,62,0.2);
  --border-light: rgba(184,150,62,0.15);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

  --max-w:    1280px;
  --nav-h:    88px;
  --r:        3px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow:    0 8px 40px rgba(0,0,0,0.14);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.22);
  --transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*, *::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-dark); background: var(--white); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 4.8rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 600; line-height: 1.3; }
h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.82; color: var(--text-mid); }

/* ── LAYOUT ── */
.wrap    { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2.flip .col-img { order: 2; }
.grid-2.flip .col-txt { order: 1; }
.txt-center { text-align: center; }

/* ── LABELS / EYEBROWS ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.eyebrow.light { color: var(--gold-2); }
.eyebrow.light::before { background: var(--gold-2); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 15px 36px; border-radius: var(--r);
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn-gold { background: var(--gold); color: var(--navy); border: 2px solid var(--gold); }
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(184,150,62,0.4); }
.btn-ghost { background: transparent; color: var(--cream); border: 2px solid rgba(245,240,232,0.35); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--navy); color: var(--gold); border: 2px solid var(--navy); }
.btn-dark:hover { background: var(--navy-3); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

/* ── DIVIDER LINE ── */
.gold-line { display: block; width: 48px; height: 3px; background: var(--gold); margin: 20px 0 28px; border-radius: 2px; }
.gold-line.center { margin: 20px auto 28px; }

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: var(--nav-h);
  background: rgba(13,17,23,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-dark);
  transition: var(--transition);
}
.navbar.scrolled { height: 72px; background: rgba(13,17,23,0.99); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 62px; width: auto; transition: var(--transition); }
.navbar.scrolled .nav-logo img { height: 52px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text strong { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--cream); letter-spacing: 0.04em; }
.nav-logo-text span { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(245,240,232,0.65); padding: 8px 14px; border-radius: var(--r);
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-cta-btn {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold); color: var(--navy) !important; padding: 10px 22px !important;
  border-radius: var(--r); margin-left: 12px; transition: var(--transition) !important;
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover { background: var(--gold-2) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,150,62,0.35) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--cream); border-radius: 2px; transition: var(--transition); }

/* ══════════════════════════════════════════════════
   HERO — HOMEPAGE
══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 80px 80px;
  gap: 60px;
  position: relative; overflow: hidden;
}
.hero-texture {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.035;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(184,150,62,1) 48px, rgba(184,150,62,1) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(184,150,62,1) 48px, rgba(184,150,62,1) 49px);
}
.hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,70,32,0.35) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--border-dark); padding: 7px 16px; border-radius: 2px;
  margin-bottom: 32px; background: rgba(184,150,62,0.06);
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }
.hero h1 { color: var(--cream); margin-bottom: 28px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-lead { font-size: 1.08rem; color: rgba(245,240,232,0.68); max-width: 500px; margin-bottom: 44px; line-height: 1.85; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; gap: 0; border-top: 1px solid var(--border-dark); padding-top: 32px; }
.hero-stat { flex: 1; padding-right: 32px; }
.hero-stat + .hero-stat { padding-left: 32px; padding-right: 32px; border-left: 1px solid var(--border-dark); }
.hero-stat:last-child { padding-right: 0; }
.stat-n { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-l { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,240,232,0.45); margin-top: 6px; display: block; }

/* Hero image side */
.hero-img-col { position: relative; z-index: 2; }
.hero-img-stack { position: relative; }
.hero-img-main { border-radius: 4px; overflow: hidden; position: relative; }
.hero-img-main img { width: 100%; height: 560px; object-fit: cover; object-position: center top; display: block; }
.hero-img-main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,70,32,0.25) 0%, transparent 50%, rgba(13,17,23,0.4) 100%);
}
.hero-img-tag {
  position: absolute; bottom: -1px; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,17,23,0.95) 0%, transparent 100%);
  padding: 48px 28px 24px;
}
.hero-img-tag-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.hero-img-label { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.hero-img-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--cream); margin-top: 4px; }
.hero-accent-box {
  position: absolute; top: -20px; right: -20px;
  background: var(--gold); color: var(--navy);
  padding: 20px 24px; border-radius: var(--r);
  text-align: center; box-shadow: var(--shadow);
  z-index: 3;
}
.hero-accent-box .n { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; line-height: 1; }
.hero-accent-box .l { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 4px; }

/* ══════════════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════════════ */
.trust-strip {
  background: var(--green); padding: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.trust-scroll {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap; padding: 16px 0;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,240,232,0.85);
  padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.12);
}
.trust-item svg { color: var(--gold-2); flex-shrink: 0; }

/* ══════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy); position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 80px) 0 80px;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(184,150,62,1) 48px, rgba(184,150,62,1) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(184,150,62,1) 48px, rgba(184,150,62,1) 49px);
}
.page-hero-inner { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { color: var(--cream); margin-bottom: 18px; }
.page-hero p { color: rgba(245,240,232,0.65); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }
.page-hero-line {
  width: 60px; height: 3px; background: var(--gold); border-radius: 2px;
  margin: 22px auto 28px;
}

/* ══════════════════════════════════════════════════
   ABOUT PREVIEW (home)
══════════════════════════════════════════════════ */
.about-preview { background: var(--cream); }
.about-preview .col-txt p { margin-bottom: 18px; }
.value-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 4px; }
.val-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.07);
  border-left: 3px solid var(--gold); border-radius: var(--r);
  padding: 20px 18px; transition: var(--transition);
}
.val-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.val-card i { font-size: 1.3rem; margin-bottom: 8px; display: block; }
.val-card strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.val-card p { font-size: 0.82rem; color: var(--text-light); margin: 0; line-height: 1.6; }

/* ══════════════════════════════════════════════════
   SERVICES OVERVIEW (home dark strip)
══════════════════════════════════════════════════ */
.svc-strip { background: var(--navy-2); }
.svc-strip h2 { color: var(--cream); }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 52px; }
.svc-tile {
  display: block; position: relative; overflow: hidden;
  padding: 40px 32px 36px;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border-dark);
  transition: var(--transition);
}
.svc-tile::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.svc-tile:hover { background: rgba(184,150,62,0.07); transform: translateY(-4px); }
.svc-tile:hover::after { transform: scaleX(1); }
.svc-tile-num { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.22em; color: var(--gold); margin-bottom: 24px; display: block; }
.svc-tile h3 { font-size: 1.1rem; color: var(--cream); margin-bottom: 12px; }
.svc-tile p { font-size: 0.87rem; color: rgba(245,240,232,0.55); margin: 0; line-height: 1.75; }
.svc-tile-arrow { position: absolute; bottom: 28px; right: 28px; color: var(--gold); opacity: 0; transform: translateX(-8px); transition: var(--transition); font-size: 1rem; }
.svc-tile:hover .svc-tile-arrow { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════ */
.why-us { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 52px; }
.why-card {
  background: var(--cream); border-radius: var(--r);
  padding: 36px 26px 32px; text-align: center;
  border-bottom: 3px solid transparent; transition: var(--transition);
  position: relative; overflow: hidden;
}
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; transition: opacity 0.3s; }
.why-card:hover { border-bottom-color: var(--gold); transform: translateY(-5px); box-shadow: var(--shadow); }
.why-card:hover::before { opacity: 1; }
.why-icon { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.why-card h3 { font-size: 1rem; color: var(--text-dark); margin-bottom: 10px; }
.why-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ══════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════ */
.cta-band { background: var(--green); padding: 80px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; opacity: 0.04; background-image: repeating-linear-gradient(45deg, rgba(184,150,62,1) 0, rgba(184,150,62,1) 1px, transparent 0, transparent 50%); background-size: 20px 20px; }
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.8rem); color: var(--cream); margin-bottom: 16px; }
.cta-band p { color: rgba(245,240,232,0.75); font-size: 1.05rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════════════
   ABOUT PAGE — MVV CARDS
══════════════════════════════════════════════════ */
.mvv-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.mvv-card { border-radius: var(--r); padding: 44px 36px; position: relative; overflow: hidden; }
.mvv-card.dark { background: var(--navy); }
.mvv-card.green { background: var(--green); }
.mvv-card.light { background: var(--cream); border: 1px solid rgba(0,0,0,0.06); }
.mvv-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); margin-bottom: 18px; }
.mvv-card p { font-size: 0.95rem; color: rgba(245,240,232,0.8); line-height: 1.82; }
.mvv-card.light p { color: var(--text-mid); }
.mvv-icon { font-size: 2.2rem; margin-bottom: 20px; display: block; }
.values-ul { list-style: none; }
.values-ul li { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.07); font-size: 0.9rem; color: var(--text-mid); display: flex; gap: 10px; align-items: flex-start; }
.values-ul li::before { content: '◆'; color: var(--gold); font-size: 0.45rem; margin-top: 6px; flex-shrink: 0; }
.values-ul li:last-child { border-bottom: none; }

/* ══════════════════════════════════════════════════
   TIMELINE
══════════════════════════════════════════════════ */
.tl { position: relative; padding-left: 32px; }
.tl::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: var(--border-dark); }
.tl-item { position: relative; margin-bottom: 36px; }
.tl-item::before { content: ''; position: absolute; left: -36px; top: 8px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); border: 2px solid var(--navy); box-shadow: 0 0 0 3px rgba(184,150,62,0.25); }
.tl-year { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 6px; display: block; }
.tl-item h4 { color: var(--cream); font-size: 1rem; margin-bottom: 6px; }
.tl-item p { font-size: 0.875rem; color: rgba(245,240,232,0.6); margin: 0; line-height: 1.7; }

/* ══════════════════════════════════════════════════
   TEAM CARDS
══════════════════════════════════════════════════ */
.team-section { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.team-card {
  border-radius: var(--r); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-sm);
  transition: var(--transition); background: var(--white);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(184,150,62,0.3); }
.team-photo {
  position: relative; height: 320px;
  background: var(--navy-2); overflow: hidden;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.5s ease;
  filter: brightness(0.96) contrast(1.04);
}
.team-photo.bw img { filter: grayscale(15%) brightness(1.05) contrast(1.08); }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,0.88) 0%, rgba(13,17,23,0.2) 45%, transparent 70%);
}
.team-photo-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: rgba(245,240,232,0.25);
}
.team-photo-placeholder svg { width: 48px; height: 48px; opacity: 0.3; }
.team-photo-placeholder span { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; }
.team-photo-name {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 22px 16px;
  opacity: 0; transform: translateY(6px); transition: var(--transition);
}
.team-card:hover .team-photo-name { opacity: 1; transform: translateY(0); }
.team-photo-name span { font-family: var(--font-display); font-size: 1rem; color: var(--cream); font-style: italic; }
.team-body { padding: 28px 26px 26px; }
.team-badge {
  display: inline-block; font-family: var(--font-mono); font-size: 0.63rem;
  font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px; margin-bottom: 12px;
}
.team-badge.founder { background: var(--navy); color: var(--gold); }
.team-badge.gm { background: var(--green); color: var(--cream); }
.team-badge.placeholder-badge { background: rgba(0,0,0,0.06); color: var(--text-light); }
.team-body h3 { font-family: var(--font-display); font-size: 1.45rem; color: var(--text-dark); margin-bottom: 4px; }
.team-role { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 14px; }
.team-bio { font-size: 0.875rem; color: var(--text-mid); line-height: 1.78; margin-bottom: 18px; }
.team-links { display: flex; flex-direction: column; gap: 5px; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.06); }
.team-link { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--green); font-weight: 500; transition: var(--transition); }
.team-link:hover { color: var(--gold); }
.photo-pending { text-align: center; font-size: 0.82rem; color: var(--text-light); background: #fffdf5; border: 1px dashed rgba(184,150,62,0.4); border-radius: var(--r); padding: 12px 20px; margin-top: 24px; }

/* ══════════════════════════════════════════════════
   IMPACT NUMBERS
══════════════════════════════════════════════════ */
.impact-section { background: var(--navy-2); }
.impact-section h2 { color: var(--cream); }
.impact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 52px; }
.impact-tile { text-align: center; padding: 52px 20px; border: 1px solid var(--border-dark); background: rgba(255,255,255,0.02); position: relative; overflow: hidden; transition: var(--transition); }
.impact-tile:hover { background: rgba(184,150,62,0.05); }
.impact-tile::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 2px; background: var(--gold); }
.impact-n { font-family: var(--font-display); font-size: 3.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.impact-l { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,240,232,0.5); margin-top: 10px; display: block; }

/* ══════════════════════════════════════════════════
   SERVICE DETAIL SECTIONS
══════════════════════════════════════════════════ */
.svc-detail { padding: 88px 0; }
.svc-detail.alt { background: var(--cream); }
.svc-detail-num { font-family: var(--font-display); font-size: 6rem; font-weight: 900; color: rgba(13,17,23,0.06); line-height: 1; margin-bottom: -12px; }
.svc-detail h2 { color: var(--text-dark); margin-bottom: 18px; }
.svc-detail p { margin-bottom: 18px; }
.svc-img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow); }
.svc-img-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc-img-duo img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow-sm); }
.feat-list { list-style: none; margin: 24px 0 36px; }
.feat-list li { padding: 10px 0 10px 22px; position: relative; font-size: 0.93rem; color: var(--text-mid); border-bottom: 1px solid rgba(0,0,0,0.05); }
.feat-list li::before { content: ''; position: absolute; left: 0; top: 18px; width: 8px; height: 2px; background: var(--gold); }
.feat-list li:last-child { border-bottom: none; }

/* ══════════════════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════════════════ */
.ind-tag { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.ind-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 32px; }
.ind-chip { font-family: var(--font-mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; background: var(--navy); color: var(--gold); padding: 5px 13px; border-radius: 2px; border: 1px solid var(--border-dark); }
.target-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.target-card { border: 1px solid var(--border-dark); padding: 36px 28px; border-radius: var(--r); transition: var(--transition); }
.target-card:hover { background: rgba(184,150,62,0.04); border-color: rgba(184,150,62,0.4); }
.target-card h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--gold); margin-bottom: 12px; }
.target-card p { font-size: 0.88rem; color: rgba(245,240,232,0.62); }

/* ══════════════════════════════════════════════════
   COMMUNITY / CSR
══════════════════════════════════════════════════ */
.csr-pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 52px; }
.csr-card { text-align: center; padding: 36px 22px; border: 1px solid rgba(0,0,0,0.07); border-radius: var(--r); border-top: 3px solid var(--gold); transition: var(--transition); }
.csr-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.csr-icon { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.csr-card h3 { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 10px; }
.csr-card p { font-size: 0.84rem; color: var(--text-light); line-height: 1.72; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.gallery-tile { border-radius: var(--r); overflow: hidden; border: 1px solid var(--border-dark); background: var(--navy-3); }
.gallery-tile img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform 0.4s; }
.gallery-tile:hover img { transform: scale(1.04); }
.gallery-placeholder { height: 240px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; border-bottom: 1px solid var(--border-dark); }
.gallery-placeholder span { font-size: 2rem; opacity: 0.3; }
.gallery-placeholder p { font-size: 0.82rem; color: rgba(245,240,232,0.3); }
.gallery-placeholder small { font-size: 0.7rem; color: rgba(245,240,232,0.18); max-width: 180px; text-align: center; }
.gallery-caption { padding: 18px 20px; }
.gallery-caption h4 { font-family: var(--font-display); font-size: 1rem; color: var(--cream); margin-bottom: 4px; }
.gallery-caption p { font-size: 0.82rem; color: rgba(245,240,232,0.5); margin: 0; }

/* ══════════════════════════════════════════════════
   CAREERS
══════════════════════════════════════════════════ */
.vacancies { display: flex; flex-direction: column; gap: 24px; margin-top: 48px; }
.vac-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark); border-left: 4px solid var(--gold); border-radius: var(--r); padding: 36px 36px 32px; transition: var(--transition); }
.vac-card:hover { background: rgba(184,150,62,0.05); }
.vac-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.vac-title { font-family: var(--font-display); font-size: 1.55rem; color: var(--cream); margin-bottom: 10px; }
.vac-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.vac-chip { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; color: rgba(245,240,232,0.55); background: rgba(255,255,255,0.06); padding: 4px 10px; border-radius: 2px; }
.vac-date { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; color: var(--gold); white-space: nowrap; }
.vac-body { border-top: 1px solid var(--border-dark); padding-top: 20px; margin-bottom: 24px; }
.vac-body p { color: rgba(245,240,232,0.72); font-size: 0.9rem; margin-bottom: 14px; }
.vac-body h4 { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.vac-body ul { list-style: disc; padding-left: 20px; }
.vac-body ul li { color: rgba(245,240,232,0.65); font-size: 0.87rem; margin-bottom: 4px; }
.vac-foot { display: flex; align-items: center; gap: 24px; }
.vac-ref { font-family: var(--font-mono); font-size: 0.68rem; color: rgba(245,240,232,0.3); }

/* ══════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════ */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; margin: 32px 0; }
.contact-card { display: flex; align-items: center; gap: 18px; background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: var(--r); padding: 18px 22px; transition: var(--transition); }
.contact-card:hover { box-shadow: var(--shadow-sm); transform: translateX(4px); border-left: 3px solid var(--gold); padding-left: 20px; }
.cc-icon { font-size: 1.3rem; min-width: 40px; text-align: center; }
.cc-label { font-family: var(--font-mono); font-size: 0.63rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; }
.cc-val { font-size: 0.92rem; color: var(--text-dark); font-weight: 500; }
.cc-val a { color: var(--text-dark); transition: var(--transition); }
.cc-val a:hover { color: var(--green); }
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-badge { font-family: var(--font-mono); font-size: 0.63rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; background: var(--navy); color: var(--gold); padding: 6px 12px; border-radius: 2px; }
.form-wrap { background: var(--white); border-radius: var(--r); padding: 44px; box-shadow: var(--shadow); border-top: 3px solid var(--gold); }
.form-wrap h3 { font-family: var(--font-display); font-size: 1.8rem; color: var(--text-dark); margin-bottom: 6px; }
.form-note { font-size: 0.83rem; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-mono); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.93rem;
  border: 1.5px solid rgba(0,0,0,0.12); border-radius: var(--r);
  padding: 13px 15px; background: var(--white); color: var(--text-dark);
  transition: var(--transition); 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(184,150,62,0.12); }
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer { background: var(--navy); padding: 72px 0 0; border-top: 1px solid var(--border-dark); }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid var(--border-dark); }
.footer-brand img { height: 72px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 0.88rem; color: rgba(245,240,232,0.55); line-height: 1.85; max-width: 300px; }
.footer-tagline { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 10px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.88rem; color: rgba(245,240,232,0.55); transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-col p { font-size: 0.88rem; color: rgba(245,240,232,0.55); margin-bottom: 7px; line-height: 1.65; }
.footer-col a { color: rgba(245,240,232,0.55); transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.76rem; color: rgba(245,240,232,0.28); }
.footer-bottom-right { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; color: rgba(245,240,232,0.22); }

/* ══════════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .wrap { padding: 0 28px; }
  .hero { padding: calc(var(--nav-h) + 40px) 40px 60px; }
  .grid-2 { gap: 48px; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .csr-pillars { grid-template-columns: repeat(2,1fr); }
  .impact-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: calc(var(--nav-h) + 32px) 32px 60px; }
  .hero-img-col { display: none; }
  .hero h1 { font-size: clamp(2.2rem,8vw,3.2rem); }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2.flip .col-img { order: 0; }
  .grid-2.flip .col-txt { order: 0; }
  .mvv-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .target-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .svc-img-duo { grid-template-columns: 1fr; }
  .svc-img-duo img { height: 220px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 72px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: rgba(13,17,23,0.99); border-bottom: 1px solid var(--border-dark); padding: 16px 24px 24px; gap: 2px; backdrop-filter: blur(20px); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 16px; display: block; border-radius: var(--r); font-size: 0.84rem; }
  .nav-cta-btn { margin-left: 0; margin-top: 8px; }
  .nav-toggle { display: flex; }
  .nav-logo img { height: 48px; }
  .nav-logo-text { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .csr-pillars { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stat + .hero-stat { padding-left: 0; border-left: none; padding-top: 20px; border-top: 1px solid var(--border-dark); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .trust-item:nth-child(n+4) { display: none; }
  .vac-head { flex-direction: column; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
  .hero { padding: calc(var(--nav-h) + 24px) 20px 48px; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .value-cards { grid-template-columns: 1fr; }
}
