:root {
  --ink: #0b0d10;
  --ink-soft: #15191f;
  --paper: #ffffff;
  --muted: #68707b;
  --line: #dfe3e8;
  --gold: #c99042;
  --gold-light: #e4b56f;
  --surface: #f3f5f7;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 96px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(11,13,16,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 13px; color: white; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255,255,255,.35);
  font-size: 20px;
  font-weight: 800;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-size: 15px; text-transform: uppercase; letter-spacing: .07em; }
.brand-copy small { margin-top: 5px; font-size: 9px; color: #b8bec7; text-transform: uppercase; letter-spacing: .12em; }
.main-nav { display: flex; align-items: center; gap: 30px; color: #dce0e5; font-size: 14px; font-weight: 600; }
.main-nav a:hover { color: white; }
.nav-cta { padding: 11px 18px; border: 1px solid var(--gold); color: white !important; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: white; margin: 5px; }

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  color: white;
  background: url("assets/call-centre-floor.png") center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,6,8,.96) 0%, rgba(4,6,8,.78) 48%, rgba(4,6,8,.2) 100%);
}
.hero-content { position: relative; z-index: 1; padding-top: 90px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #926426; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -.04em;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.12;
  letter-spacing: -.035em;
}
h3 { font-size: 20px; line-height: 1.3; }
.hero-copy { max-width: 680px; color: #d1d5db; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 46px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  transition: .2s ease;
}
.btn-primary { background: var(--gold); color: #111; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,.55); color: white; }
.btn-outline:hover { background: white; color: var(--ink); }
.btn-light { background: white; color: var(--ink); }
.hero-points { display: flex; flex-wrap: wrap; gap: 26px; color: #d6d9df; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.hero-points span::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 9px; background: var(--gold); }

.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.rich-text { color: #4f5761; font-size: 17px; }
.rich-text p + p { margin-top: 20px; }

.services { background: var(--surface); }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading > p:last-child { color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #d9dde2; border: 1px solid #d9dde2; }
.service-card { min-height: 280px; padding: 34px; background: white; }
.service-number { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.service-card h3 { margin-top: 44px; margin-bottom: 14px; }
.service-card p { color: var(--muted); font-size: 15px; }

.office { color: white; background: var(--ink); }
.office-gallery {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.office-gallery figure { margin: 0; overflow: hidden; background: #1e2329; }
.office-gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery-large { grid-row: 1 / span 2; min-height: 600px; }
.office-gallery > figure:not(.gallery-large) { min-height: 290px; }
.office-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 290px;
  padding: 40px;
  background: var(--gold);
  color: #111;
}
.office-note strong { margin-bottom: 12px; font-size: 28px; }
.image-note { margin: 18px 0 0; color: #939aa4; font-size: 12px; }

.why { background: white; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.benefit-grid div { min-height: 190px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefit-grid strong { display: block; margin-bottom: 12px; font-size: 18px; }
.benefit-grid span { color: var(--muted); font-size: 14px; }

.careers { background: #eceff2; }
.careers-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 62px;
  background: var(--ink);
  color: white;
}
.careers-card > div { max-width: 720px; }
.careers-card p:not(.eyebrow) { color: #cbd0d7; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.contact-grid > div:first-child > p:last-child { color: var(--muted); font-size: 17px; }
.contact-card { border-top: 1px solid var(--line); }
.contact-card > * { display: block; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-card small { display: block; margin-bottom: 6px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.contact-card strong { font-size: 18px; overflow-wrap: anywhere; }
.contact-card a:hover strong { color: #966623; }

.cta-strip { padding: 62px 0; background: var(--gold); color: #111; }
.cta-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-strip .eyebrow { color: #5a3b13; }
.cta-strip h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(28px, 4vw, 44px); }

footer { padding: 36px 0; background: #080a0c; color: #aeb4bd; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.footer-grid p { margin: 0; font-size: 12px; text-align: center; }
.footer-links { display: flex; justify-content: flex-end; gap: 20px; font-size: 13px; }
.footer-brand .brand-mark { width: 38px; height: 38px; font-size: 16px; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  padding: 13px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #071b0d;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

@media (max-width: 900px) {
  .section { padding: 74px 0; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 24px;
    background: #0b0d10;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-cta { margin-top: 12px; text-align: center; }
  .hero { min-height: 690px; background-position: 62% center; }
  .hero-overlay { background: rgba(4,6,8,.82); }
  .two-column, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .office-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-large { grid-row: auto; min-height: 430px; }
  .careers-card, .cta-strip .container { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .brand-copy small { display: none; }
  h1 { font-size: 42px; }
  .hero-copy { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .hero-points { gap: 12px; flex-direction: column; }
  .service-grid, .benefit-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 235px; padding: 28px; }
  .service-card h3 { margin-top: 30px; }
  .gallery-large { min-height: 320px; }
  .office-gallery > figure:not(.gallery-large), .office-note { min-height: 230px; }
  .careers-card { padding: 36px 26px; }
  .cta-strip .btn { width: 100%; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
}
