/* SELF-HOSTED FONTS (latin subset, woff2) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/syne-v24-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/syne-v24-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/syne-v24-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/syne-v24-latin-800.woff2') format('woff2');
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1b2540;
  --steel:  #1B3A5C;
  --amber:  #e2762d;
  --amber-light: #F4A35A;
  --amber-dark: #cf6820;           /* button hover */
  --amber-ink: #cf6820;            /* amber text on light surfaces */
  --chip:   #faeadd;               /* orange-tint icon chip / badge background */
  --slate:  #5b6575;
  --fog:    #e9ecf1;               /* cool alternating section background */
  --bg:     #f5f3f0;               /* warm page background */
  --white:  #FFFFFF;
  --text:   #3d4757;
  --muted:  #8b94a5;
  --line:   #dde2ea;               /* hairline border on cool cards */
  --line-warm: #e6e2dc;            /* hairline border on warm surfaces */
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

/* NAV (shared) */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  border-bottom: 1px solid var(--line-warm);
}

/* Homepage nav - fixed & translucent over hero */
nav.nav-home {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,243,240,0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-warm);
}

/* Inner-page nav - solid */
nav.nav-inner {
  background: var(--white);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--amber); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  background: var(--amber);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--amber-dark) !important; color: var(--white) !important; }

.nav-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--navy); }

/* Hamburger toggle - hidden on desktop, shown in the mobile breakpoint. */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  min-height: 84vh;
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  /* Full-bleed background, but keep the content within the same 1200px
     column as the section inners (.about-inner, etc). */
  padding: 104px max(60px, calc((100% - 1200px) / 2)) 64px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(226,118,45,0.10) 0%, transparent 70%);
  pointer-events: none;
}

/* Diagonal stripe texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(13,27,42,0.02) 40px,
    rgba(13,27,42,0.02) 41px
  );
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--amber);
}

h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 24px;
}

h1 em {
  font-style: normal;
  color: var(--amber);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--slate);
  max-width: 440px;
  margin-bottom: 44px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--amber);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); }
.btn-primary svg { stroke-width: 2; }

.btn-outline {
  border: 1px solid #d9d4cc;
  background: var(--white);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s;
  display: inline-flex; align-items: center;
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }

/* HERO STATS CARD - navy panel */
.hero-card {
  position: relative; z-index: 1;
  background: var(--navy);
  border-radius: 18px;
  padding: 32px 34px;
  box-shadow: 0 24px 48px -20px rgba(27,37,64,0.45);
}

.hero-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 26px;
}
.hero-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8b94ab;
}
.hero-card-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 600; color: #7fd6a4;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #7fd6a4; display: inline-block;
}

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 24px; }

.stat-ic { color: var(--amber); margin-bottom: 10px; display: flex; }

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-number span { color: var(--amber); }
.stat-label { font-size: 0.75rem; color: #8b94ab; margin-top: 6px; }

/* "Speed Without Compromise" — value-prop callout inside the navy card. */
.speed-callout {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(226,118,45,0.12);
  border: 1px solid rgba(226,118,45,0.35);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 22px;
}
.speed-callout-icon { color: var(--amber); flex-shrink: 0; margin-top: 2px; display: flex; }
.speed-callout-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.speed-callout-text {
  font-size: 0.78rem;
  line-height: 1.55;
  color: #aab1c4;
}

.sector-list { display: flex; flex-wrap: wrap; gap: 8px; }
.sector-tag {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 999px;
  background: transparent;
  color: #c8cede;
  border: 1px solid #39445f;
}

/* SECTIONS */
section { padding: 100px 60px; }

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--amber);
}

h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--navy);
}

/* ABOUT */
.about-section { background: var(--fog); }

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

/* Top row: intro text left, quote card top-aligned right. */
.about-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  margin-bottom: 60px;
}

.about-text h2 { margin-bottom: 24px; }
.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4A6070;
  margin-bottom: 16px;
}

/* Discipline cards - a full-width 4-in-a-row grid below the top row. */
.discipline-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

.discipline-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.discipline-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -16px rgba(27,37,64,0.25);
}

.discipline-icon {
  width: 48px; height: 48px;
  background: var(--chip);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  margin-bottom: 20px;
}

.discipline-card strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}

.discipline-card span {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--slate);
}

/* about right side */
.about-visual {
  position: relative;
}

.about-quote {
  background: var(--navy);
  color: var(--white);
  padding: 44px;
  border-radius: 12px;
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  position: relative;
}

.about-quote::before {
  content: '"';
  font-size: 6rem;
  line-height: 0.7;
  color: var(--amber);
  display: block;
  font-family: Georgia, serif;
  margin-bottom: 12px;
  opacity: 0.6;
}

.about-quote-source {
  margin-top: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--amber);
  border-radius: 50%;
  width: 100px; height: 100px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(226,118,45,0.4);
}
.about-badge-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.about-badge-text {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

/* PROJECTS */
.projects-section { background: var(--bg); }
.projects-inner { max-width: 1200px; margin: 0 auto; }
.projects-header { margin-bottom: 48px; }

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.project-card {
  background: var(--white);
  border: 1px solid var(--line-warm);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(27,37,64,0.3);
}

.project-img { display: block; width: 100%; height: 190px; overflow: hidden; }
.project-img img { display: block; width: 100%; height: 100%; object-fit: cover; }

.project-body { padding: 26px 26px 30px; position: relative; }

.project-num {
  position: absolute; top: -18px; right: 22px;
  background: var(--navy); color: var(--white);
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.88rem;
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

.project-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.project-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.project-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--slate);
}

/* VACANCIES */
.vacancies-section { background: var(--fog); }
.vacancies-inner { max-width: 1200px; margin: 0 auto; }
.vacancies-header {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px;
}

.vacancy-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.vacancy-item {
  padding: 26px 30px;
  display: flex; align-items: center; gap: 24px;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px solid #edf0f4;
}
.vacancy-item:last-child { border-bottom: none; }
.vacancy-item:hover { background: #f3efe8; box-shadow: inset 3px 0 0 var(--amber); }

.vacancy-index {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #c3cad6;
  flex-shrink: 0;
}

.vacancy-info { flex: 1; }

.vacancy-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.vacancy-meta {
  display: flex; align-items: center; gap: 18px;
  font-size: 0.8rem;
  color: var(--slate);
}
.vacancy-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.vacancy-meta-item svg { color: var(--amber); flex-shrink: 0; }

.vacancy-badges { display: flex; gap: 8px; align-items: center; }

.vacancy-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--fog);
  color: var(--navy);
}
.vacancy-badge:first-child {
  background: var(--chip);
  color: var(--amber-ink);
}

.vacancy-arrow {
  color: var(--navy);
  display: flex;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.vacancy-item:hover .vacancy-arrow { transform: translateX(4px); }

/* CONTACT */
.contact-section { background: var(--bg); }
.contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}

.contact-text h2 { color: var(--navy); margin-bottom: 20px; }
.contact-text p { color: var(--slate); font-size: 0.95rem; line-height: 1.75; margin-bottom: 40px; }

.contact-info-item {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.contact-info-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--chip);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber); flex-shrink: 0;
}
.contact-info-text small { font-size: 0.66rem; color: var(--muted); display: block; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; margin-bottom: 3px; }
.contact-info-text strong { font-size: 0.9rem; color: var(--navy); }
.contact-info-text a { color: var(--navy); text-decoration: none; }
.contact-info-text a:hover { color: var(--amber); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line-warm);
  border-radius: 18px;
  padding: 38px;
  box-shadow: 0 20px 44px -24px rgba(27,37,64,0.25);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #fafbfc;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 14px;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

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

.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--white); }

/* Honeypot - hidden from real users */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.file-upload {
  width: 100%;
  background: #fafbfc;
  border: 1.5px dashed #c9d0da;
  border-radius: 9px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s;
}
.file-upload:hover { border-color: var(--amber); color: var(--amber); }
.file-upload-text { display: inline-flex; align-items: center; gap: 8px; }

.btn-submit {
  width: 100%;
  background: var(--amber);
  color: var(--white);
  border: none;
  padding: 15px;
  border-radius: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover { background: var(--amber-dark); }
.btn-submit svg { stroke-width: 2; }
.btn-submit.is-loading { opacity: 0.85; cursor: progress; }

.spinner {
  display: inline-block;
  width: 14px; height: 14px;
  margin-right: 9px;
  vertical-align: -2px;
  border: 2px solid rgba(255,255,255,0.45);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* FORM ALERTS */
.form-alert {
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.form-alert.success {
  background: rgba(76,175,80,0.12);
  border: 1px solid rgba(76,175,80,0.35);
  color: #2E7D32;
}
.form-alert.error {
  background: rgba(224,80,47,0.10);
  border: 1px solid rgba(224,80,47,0.35);
  color: #C0392B;
}

/* FOOTER */
footer {
  background: var(--bg);
  padding: 32px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--line-warm);
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  text-decoration: none;
}
.footer-logo span { color: var(--amber); }

.footer-copy { font-size: 0.78rem; color: var(--muted); }

.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.78rem; color: var(--slate); text-decoration: none; }
.footer-links a:hover { color: var(--navy); }

/* PRIVACY / INNER PAGE */
.page-header {
  background: var(--fog);
  padding: 80px 60px 60px;
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.page-header .eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--amber);
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.page-header .updated {
  font-size: 0.85rem;
  color: var(--muted);
}

.content {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px 96px;
  line-height: 1.7;
}
.content h2 {
  font-size: 1.4rem;
  margin: 40px 0 14px;
}
.content h2:first-child { margin-top: 0; }
.content p { margin-bottom: 16px; color: #3c4f60; }
.content ul { margin: 0 0 16px 22px; color: #3c4f60; }
.content li { margin-bottom: 8px; }
.content a { color: var(--amber); text-decoration: none; }
.content a:hover { text-decoration: underline; }
.content strong { color: var(--navy); }

.notice {
  background: var(--fog);
  border-left: 3px solid var(--amber);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 0.92rem;
}

/* RESULT PAGE */
.result-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 100px 24px 120px;
  text-align: center;
}
.result-icon { font-size: 3.5rem; margin-bottom: 20px; }
.result-wrap h1 { color: var(--navy); margin-bottom: 16px; }
.result-wrap p { color: #4A6070; font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }

/* VACANCY DETAIL */
.vac-hero {
  background: var(--navy);
  padding: 56px 60px 60px;
  position: relative;
  overflow: hidden;
}
.vac-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.vac-hero-text h1 {
  color: var(--white);
  margin: 14px 0 0;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  overflow-wrap: break-word;
  word-break: break-word;
}
.vac-meta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 34px; }
.vac-meta-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1px solid #39445f;
}
.vac-meta-chip svg { color: var(--amber); flex-shrink: 0; }
.vac-hero-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.5);
}
.vac-hero-img img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.vac-detail-section { background: var(--bg); padding: 0; }
.vac-layout {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 60px 100px;
  display: grid; grid-template-columns: 1fr 360px; gap: 68px; align-items: start;
}

.vac-block { margin-bottom: 48px; }
.vac-block:last-child { margin-bottom: 0; }
.vac-block h2 {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  margin: 6px 0 8px;
}
.vac-intro { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; }

.vac-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.vac-list li {
  position: relative;
  padding-left: 32px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #3c4f60;
}
.vac-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 2px;
  width: 22px; height: 22px;
  border-radius: 7px;
  background: var(--chip);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23E2762D' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.vac-aside { position: sticky; top: 24px; }
.vac-facts {
  background: var(--white);
  border: 1px solid var(--line-warm);
  border-top: 3px solid var(--amber);
  border-radius: 16px;
  padding: 30px 30px 32px;
  box-shadow: 0 20px 44px -24px rgba(27,37,64,0.25);
}
.vac-facts-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.vac-fact { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.vac-fact-ic {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--chip); color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.vac-fact small {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 3px;
}
.vac-fact strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

/* What we offer - card grid */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 8px; }
.offer-card {
  background: var(--white);
  border: 1px solid var(--line-warm);
  border-radius: 14px;
  padding: 24px;
}
.offer-card-ic { color: var(--amber); margin-bottom: 14px; display: flex; }
.offer-card-text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--navy);
  font-weight: 500;
}

/* Outline button on a navy surface (vacancy hero) */
.btn-outline-light {
  background: transparent;
  border-color: #39445f;
  color: var(--white);
}
.btn-outline-light:hover { border-color: var(--white); color: var(--white); }
.vac-apply-btn { width: 100%; justify-content: center; margin-top: 8px; }
.vac-apply-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.5;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-toggle { display: flex; }
  /* Mobile menu: a panel that drops out of the nav bar when opened. */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(13,27,42,0.12);
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; font-size: 0.95rem; }
  /* Higher specificity than ".nav-links a" so the button keeps its own
     horizontal padding instead of being flattened to "14px 0". */
  .nav-links a.nav-cta { display: inline-block; margin-top: 10px; padding: 12px 22px; }
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  /* Keep the "Current Activity" card visible on mobile, just tighter. */
  .hero-card { padding: 28px 22px; }
  section { padding: 72px 24px; }
  .about-top,
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-top { margin-bottom: 40px; }
  .discipline-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .projects-grid { grid-template-columns: 1fr; gap: 2px; }
  .vacancies-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .vacancy-item { flex-wrap: wrap; gap: 14px 16px; padding: 24px 22px; }
  .vacancy-index { width: auto; }
  .vacancy-badges { flex-wrap: wrap; }
  .vacancy-arrow { display: none; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; }
  .page-header { padding: 56px 24px 40px; }
  .vac-hero { padding: 72px 24px 56px; }
  .vac-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .vac-hero-img { order: -1; }
  .vac-layout { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px 72px; }
  .vac-aside { position: static; }
  .offer-grid { grid-template-columns: 1fr; }
}

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