:root {
  --brand-yellow: #ffbf00;
  --brand-deep: #0d3a53;
  --text: #111318;
  --muted: #5a6a72;
  --bg: #ffffff;
  --container: 1100px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Nav */
.nav { background: var(--brand-yellow); position: sticky; top: 0; z-index: 10; }
.nav__bar { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand__logo { height: 40px; width: auto; }
.brand__text { font-weight: 800; letter-spacing: 0.5px; }
.nav__links { display: flex; gap: 24px; }
.nav__links a { color: #000; text-decoration: none; font-weight: 600; }
.nav__toggle { display: none; background: transparent; border: 0; font-size: 28px; }

/* Hero */
.hero { position: relative; }
.hero__backdrop {
  height: 500px;
  background: url('assets/malmo_skyline.png') center/cover no-repeat;
  filter: saturate(0.9);
}
.hero__content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--brand-deep); display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; padding: 0 20px; }
.hero__logo { height: 220px; width: auto; display: block; margin: 0; }
.hero__title { font-size: 44px; line-height: 1.15; margin: 0 0 14px; }
.hero__subtitle { max-width: 720px; font-size: 18px; margin: 0 0 20px; color: #193c50; }
.hero__title { font-size: 44px; line-height: 1.15; margin: 0 0 14px; }
.hero__subtitle { max-width: 720px; font-size: 18px; margin: 0 0 20px; color: #193c50; }
.hero__actions { display: flex; gap: 12px; }

/* Buttons */
.btn { display: inline-block; padding: 10px 16px; border-radius: 8px; text-decoration: none; font-weight: 700; letter-spacing: 0.2px; }
.btn--primary { background: var(--brand-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--brand-deep); border: 2px solid var(--brand-deep); }

/* Sections */
.section { padding: 80px 0; }
.section--light { background: #fff; }
.section--brand { background: var(--brand-deep); color: #ffffff; }
.section h2 { font-size: 36px; margin: 0 0 32px; letter-spacing: 1px; }
.services__title { 
  text-align: center; 
  margin-bottom: 40px;
  font-size: 24px !important;
  font-weight: 900;
}
.section__title--brand { color: var(--brand-yellow); font-weight: 700; }
.section__logo { height: 60px; width: auto; display: block; margin: 0 auto 32px; }
#about h2 { text-align: center; }
#about .container { text-align: center; }
.section__lead { max-width: 780px; margin: 0 auto 20px; text-align: center; }

/* Services */
.grid { display: grid; gap: 28px; }
.grid--services { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.card { text-align: center; padding: 24px; border: 3px solid var(--brand-yellow); border-radius: 8px; display: flex; flex-direction: column; }
.card__icon { height: 70px; width: 70px; display: grid; place-items: center; margin: 0 auto 14px; background: var(--brand-yellow); border-radius: 50%; }
.card__icon svg { display: block; }
.card h3 { margin: 8px 0 6px; letter-spacing: 0.5px; }
.card p { color: var(--text); font-size: 15px; }

/* People */
.grid--people { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; margin-top: 60px; gap: 8px; }
.person { text-align: center; padding: 10px; }
.person__avatar {
  height: 140px;
  width: 140px;
  border-radius: 50%;
  display: inline-block;
  background: transparent;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1 / 1;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

@media (max-width: 680px) {
  .person__avatar { height: 120px; width: 120px; }
}

/* Fine-tune Ahmad's focal point if the source is off-center */
.person__avatar--ahmad { object-position: 50% 38%; }
.person__title { font-weight: 600; margin: 4px 0 8px; color: var(--brand-yellow); }
.person__meta { opacity: 0.9; margin: 4px 0 0; }
.person a { color: #cfe8f6; text-decoration: none; }

/* Footer */
.footer { background: var(--brand-yellow); color: #000; padding: 16px 0; }
.footer__grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__logo { height: 48px; width: auto; }
.footer__links { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer__links a { color: inherit; text-decoration: none; font-weight: 600; }

/* Responsive */
@media (max-width: 960px) {
  .grid--services { grid-template-columns: 1fr 1fr; }
  .hero__backdrop { height: 400px; }
}
@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-block; }
  .grid--services { grid-template-columns: 1fr; }
  .grid--people { grid-template-columns: 1fr; }
  .hero__backdrop { height: 350px; }
}

/* Value strip */
/* Remove added sections styles (value strip, process, CTA) */

/* Mobile nav open state */
@media (max-width: 680px) {
  .nav.nav--open .nav__links { 
    display: flex; 
    flex-direction: column; 
    gap: 12px;
    position: absolute;
    top: 64px;
    left: 0; 
    right: 0;
    background: var(--brand-yellow);
    padding: 12px 20px 16px;
    border-top: 1px solid rgba(0,0,0,0.1);
  }
}



