:root {
  --orange: #F5844C;
  --orange-deep: #C4602E;
  --orange-soft: rgba(245,132,76,0.14);
  --gray: #474C54;
  --gray-soft: #726F68;
  --bg-warm: #FFFDF9;
  --bg-card: #FFFFFF;
  --border: #ECE4D8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--gray);
  background: var(--bg-warm);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

::selection { background: var(--orange); color: #fff; }
::-moz-selection { background: var(--orange); color: #fff; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,253,249,0.9);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo-link img { height: 28px; width: auto; }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav.main-nav a.nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--gray);
  opacity: 0.85;
  transition: opacity 0.15s;
  white-space: nowrap;
}

nav.main-nav a.nav-link:hover { opacity: 1; color: var(--orange-deep); }

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(245,132,76,0.35);
}

.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(196,96,46,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--orange-deep);
  border-color: var(--orange-deep);
}

.btn-outline:hover {
  background: var(--orange-deep);
  color: #fff;
}

.btn-on-dark {
  background: #fff;
  color: var(--orange-deep);
}

.btn-on-dark:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-1px);
}

.nav-cta { display: inline-block; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray);
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: 110px 0 100px;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 56px;
}

.hero-copy { flex: 1 1 500px; text-align: left; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: var(--orange-soft);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  font-weight: 800;
  margin: 0 0 20px;
  color: var(--gray);
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.hero h1 span { color: var(--orange); }

.hero .lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--gray-soft);
  max-width: 480px;
  margin: 0 0 36px;
}

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

.hero-graphic {
  flex: 0 0 340px;
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-graphic .ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px solid rgba(196,96,46,0.25);
}

.hero-graphic .c1 {
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: var(--orange);
  top: 30px;
  left: 30px;
}

.hero-graphic .c2 {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--orange-deep);
  bottom: 20px;
  right: 30px;
  opacity: 0.92;
}

.hero-graphic .c3 {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--gray);
  opacity: 0.18;
  top: 10px;
  right: 60px;
}

/* Sections */
section { padding: 96px 0; }

.section-band { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-head .eyebrow { margin-bottom: 16px; }

.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--gray);
  text-wrap: balance;
}

.section-head p {
  color: var(--gray-soft);
  font-size: 1.05rem;
  margin: 0;
}

/* About */
.about-copy {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: var(--gray);
}

.about-copy p { margin: 0 0 20px; }

/* Full-bleed stats band */
.stats-band {
  background: var(--orange);
  padding: 56px 0;
}

.stats-band .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-item {
  text-align: center;
  padding: 8px 24px;
  border-left: 1px solid rgba(255,255,255,0.3);
}

.stat-item:first-child { border-left: none; }

.stat-item .stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}

/* Modern Workplace / CSP band */
.workplace-band {
  background: var(--orange-deep);
  color: #fff;
}

.workplace-band .section-head .eyebrow {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

.workplace-band .section-head h2,
.workplace-band .section-head p { color: #fff; }

.workplace-band .section-head p { color: rgba(255,255,255,0.85); }

.workplace-copy {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
}

.workplace-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.workplace-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 24px 20px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.workplace-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.13);
}

.workplace-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--orange-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.workplace-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}

.workplace-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  margin: 0;
}

.workplace-cta { text-align: center; }

/* Services */
.tier {
  margin-bottom: 64px;
}

.tier:last-child { margin-bottom: 0; }

.tier-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.tier-label .tier-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.tier.foundational .tier-label .tier-dot { background: var(--orange-deep); }

.tier-label h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray);
  margin: 0;
}

.tier-label span.tier-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-soft);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 999px;
}

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

.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(196,96,46,0.1);
  border-color: rgba(245,132,76,0.4);
}

.service-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.tier.foundational .service-card .icon {
  background: var(--orange-deep);
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--gray);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-soft);
  margin: 0;
}

/* Who we serve */
.who-band {
  background:
    linear-gradient(135deg, rgba(38,42,48,0.92), rgba(71,76,84,0.86)),
    url('assets/background.jpg') center 30% / cover no-repeat;
  color: #fff;
  text-align: center;
}

.who-band .section-head p,
.who-band .section-head h2 { color: #fff; }

.who-band .eyebrow {
  background: rgba(255,255,255,0.12);
  color: #ffbf9c;
}

.who-copy {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
}

.who-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.who-tags span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
}

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.contact-copy h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--gray);
}

.contact-copy p {
  color: var(--gray-soft);
  font-size: 1.05rem;
  margin: 0 0 28px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-row:last-child { margin-bottom: 0; }

.contact-row .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-row .label {
  font-size: 0.8rem;
  color: var(--gray-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.contact-row .value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
}

.contact-row .value a:hover { color: var(--orange-deep); }

/* Footer */
footer.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-inner img { height: 22px; }

.footer-meta {
  text-align: center;
  flex: 1 1 auto;
}

.footer-meta .copyright {
  font-size: 0.85rem;
  color: var(--gray-soft);
}

.footer-meta .org-nr {
  font-size: 0.78rem;
  color: var(--gray-soft);
  opacity: 0.8;
  margin-top: 2px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.social-icon:hover {
  background: var(--orange-deep);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; text-align: center; }
}

/* Responsive */
@media (max-width: 900px) {
  .hero .container { flex-direction: column; text-align: center; }
  .hero-copy { text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-graphic { flex: 0 0 auto; width: 260px; height: 260px; margin-top: 12px; }
  .hero-graphic .ring { width: 240px; height: 240px; }
  .hero-graphic .c1 { width: 170px; height: 170px; }
  .hero-graphic .c2 { width: 110px; height: 110px; }

  .card-grid, .card-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .workplace-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band .container { grid-template-columns: 1fr; gap: 24px; }
  .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.3); padding-top: 20px; }
  .stat-item:first-child { border-top: none; padding-top: 8px; }
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  nav.main-nav { position: fixed; top: 62px; left: 0; right: 0; background: var(--bg-warm); flex-direction: column; align-items: flex-start; padding: 20px 24px 28px; gap: 18px; border-bottom: 1px solid var(--border); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: all 0.2s ease; }
  nav.main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .menu-toggle { display: flex; }
  .nav-cta.desktop-only { display: none; }
}

@media (max-width: 560px) {
  .card-grid, .card-grid.cols-3, .workplace-grid { grid-template-columns: 1fr; }
  .hero { padding: 70px 0 60px; }
  section { padding: 64px 0; }
  .contact-card { padding: 26px; }
  .tier-label { flex-wrap: wrap; }
  .tier-label h3 { flex: 1 1 100%; }
}
