/* ============ Fawzaan Group — shared styles ============ */
/* Brand Guidelines v1.0 · July 2026
   Ink #1A2739 · Coral #F55F51 (accent only, never a field color)
   Slate #8B93A7 · Stone #F3F2EE · Paper #FAFAF7
   Type: Sora — ExtraBold display (-2% tracking), SemiBold caps labels (+40%), Regular body */
:root {
  --ink: #1A2739;
  --ink-soft: #24344D;
  --coral: #F55F51;
  --coral-dark: #DE4A3C;
  --slate: #8B93A7;
  --stone: #F3F2EE;
  --paper: #FAFAF7;
  --card: #FFFFFF;
  --line: #E7E5DE;
  --radius: 14px;
  --font-sans: 'Sora', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

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

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ---------- typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-sans);
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -0.02em; /* Sora ExtraBold display, -2% tracking */
}

/* label style: Sora SemiBold caps, +40% tracking */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

.eyebrow.quiet { color: var(--slate); }

/* ---------- header ---------- */
.site-header {
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand { display: flex; align-items: center; gap: 14px; }

.brand .mark { width: 46px; height: auto; display: block; }

.brand .word { line-height: 1.15; }
.brand .word .top {
  display: block;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  color: var(--ink);
}
.brand .word .bottom {
  display: block;
  font-weight: 600;
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  color: var(--coral);
  text-transform: uppercase;
}

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

.nav a.link {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  opacity: 0.72;
  transition: opacity .15s;
}
.nav a.link:hover, .nav a.link.active { opacity: 1; }

.dropdown { position: relative; }
.dropdown > a.link::after { content: ' ▾'; font-size: 0.7em; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(26,39,57,0.14);
  padding: 10px;
  min-width: 270px;
  display: none;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0; height: 14px;
}
.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.dropdown-menu a:hover { background: var(--stone); }
.dropdown-menu a span { display: block; font-weight: 400; font-size: 0.8rem; color: var(--slate); }

.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: 10px;
  transition: transform .12s, background .15s, border-color .15s;
}
.btn:active { transform: scale(0.98); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--ink-soft); }
.btn-paper { background: var(--paper); color: var(--ink); }
.btn-paper:hover { background: #fff; }
.btn-outline-light { border: 1.5px solid rgba(250,250,247,0.45); color: var(--paper); }
.btn-outline-light:hover { border-color: var(--paper); }
.btn-outline-dark { border: 1.5px solid rgba(26,39,57,0.35); color: var(--ink); }
.btn-outline-dark:hover { border-color: var(--ink); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------- hero ---------- */
.hero {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 2; padding-top: 110px; padding-bottom: 110px; }
.hero.short .wrap { padding-top: 84px; padding-bottom: 84px; }

.hero h1 {
  color: var(--paper);
  font-size: clamp(2.3rem, 5.2vw, 4.1rem);
  font-weight: 800;
  max-width: 18ch;
}
.hero h1 em, .page-hero h1 em { font-style: normal; color: var(--coral); }

.hero .lede {
  margin-top: 28px;
  max-width: 56ch;
  font-size: 1.15rem;
  color: rgba(250,250,247,0.72);
}

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

.hero-motif {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  opacity: 0.14;
  z-index: 1;
  pointer-events: none;
}

/* ---------- sections ---------- */
.section { padding: 96px 0; }
.section.tight { padding: 72px 0; }
.section.on-deep { background: var(--stone); }
.section.on-white { background: #fff; }
.section.on-navy { background: var(--ink); color: rgba(250,250,247,0.75); }
.section.on-navy h2, .section.on-navy h3 { color: var(--paper); }

.section h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.7rem);
  font-weight: 800;
  max-width: 26ch;
}
.section .intro {
  margin-top: 18px;
  max-width: 64ch;
  font-size: 1.08rem;
  color: var(--slate);
}
.section.on-navy .intro { color: rgba(250,250,247,0.68); }

/* ---------- cards & grids ---------- */
.grid { display: grid; gap: 24px; margin-top: 52px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(26,39,57,0.04);
}

.card h3 { font-size: 1.16rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--slate); font-size: 0.97rem; }

/* company lockup: shared monogram, coral name line differentiates each company */
.card .co-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.card .co-head .mark { width: 46px; }
.card .co-head h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
}
.card .co-head h3 em {
  display: block;
  font-style: normal;
  color: var(--coral);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.4em;
}

.card-link {
  display: inline-block;
  margin-top: 22px;
  font-weight: 600;
  color: var(--coral);
}
.card-link:hover { color: var(--coral-dark); }

.mini { padding: 28px; }
.mini h3 { font-size: 1.03rem; }
.mini p { font-size: 0.92rem; }

.num-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  margin-bottom: 16px;
}
.num-chip.coral { background: none; border: 2px solid var(--coral); color: var(--coral); }

/* ---------- stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.stats.four { grid-template-columns: repeat(4, 1fr); }
.stat .value {
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.stat .label { margin-top: 6px; color: var(--slate); font-size: 0.96rem; }
.on-navy .stat .value { color: var(--paper); }
.on-navy .stat .label { color: rgba(250,250,247,0.62); }
.stat .value em { font-style: normal; color: var(--coral); }

/* ---------- split layout ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 0; }
.split .section-head h2 { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: var(--paper); }
.cta-band .wrap {
  padding-top: 84px; padding-bottom: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--paper); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; max-width: 24ch; }
.cta-band p { color: rgba(250,250,247,0.68); margin-top: 12px; max-width: 48ch; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(250,250,247,0.62); border-top: 1px solid rgba(250,250,247,0.08); }
.site-footer .wrap {
  padding: 44px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer .foot-brand { display: flex; align-items: center; gap: 14px; font-size: 0.92rem; }
.site-footer .foot-brand .mark { width: 42px; }
.site-footer nav { display: flex; gap: 28px; font-size: 0.92rem; }
.site-footer nav a:hover { color: var(--paper); }

/* ---------- page hero variant (interior pages) ---------- */
.page-hero { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.page-hero .wrap { position: relative; z-index: 2; padding-top: 92px; padding-bottom: 92px; }
.page-hero h1 { color: var(--paper); font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 800; max-width: 22ch; }
.page-hero .lede { margin-top: 24px; max-width: 58ch; font-size: 1.1rem; color: rgba(250,250,247,0.72); }

/* ---------- lists ---------- */
.check-list { list-style: none; margin-top: 28px; }
.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  color: var(--slate);
}
.check-list li strong { color: var(--ink); font-weight: 700; }
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--coral);
  clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 18%, 84% 4%, 40% 70%);
}

/* ---------- roles (separation of duties) ---------- */
.roles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 52px; }
.role {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  border-top: 3px solid var(--coral);
}
.role:nth-child(even) { border-top-color: var(--ink); }
.role h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 8px; }
.role .tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral);
  display: block;
  margin-bottom: 10px;
}
.role:nth-child(even) .tag { color: var(--slate); }
.role p { font-size: 0.84rem; color: var(--slate); }

/* ---------- scorecard bars ---------- */
.score-row { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.score-row .name { flex: 0 0 240px; font-weight: 600; font-size: 0.94rem; color: var(--ink); }
.score-row .bar { flex: 1; height: 12px; background: var(--stone); border-radius: 6px; overflow: hidden; }
.score-row .bar i { display: block; height: 100%; background: var(--coral); border-radius: 6px; }
.score-row .pct { flex: 0 0 48px; text-align: right; font-weight: 700; color: var(--ink); font-size: 0.94rem; }

/* ---------- contact ---------- */
.contact-card { display: flex; align-items: flex-start; gap: 18px; }
.contact-card .icon {
  flex: 0 0 48px;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.contact-card .icon svg { width: 22px; height: 22px; stroke: var(--paper); fill: none; stroke-width: 1.8; }
.contact-card a.big {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.06rem;
}
.contact-card a.big:hover { color: var(--coral); }

/* ---------- insights ---------- */
.insight-card .kicker {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
}
.insight-card .stat-line {
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: -0.02em;
  color: var(--coral);
  margin-bottom: 12px;
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .roles { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .stats, .stats.four { grid-template-columns: repeat(2, 1fr); }
  .hero-motif { display: none; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    inset: 84px 0 auto 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    box-shadow: 0 18px 30px rgba(26,39,57,0.12);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a.link { padding: 14px 0; border-bottom: 1px solid var(--stone); }
  .dropdown-menu { position: static; transform: none; box-shadow: none; border: none; background: none; display: block; padding: 0 0 0 16px; min-width: 0; }
  .dropdown > a.link::after { content: ''; }
  .nav .btn { margin-top: 16px; text-align: center; }
  .hamburger { display: block; }
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .roles { grid-template-columns: 1fr; }
  .stats, .stats.four { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 64px 0; }
  .hero .wrap { padding-top: 72px; padding-bottom: 72px; }
  .score-row .name { flex-basis: 130px; font-size: 0.82rem; }
  .site-footer .wrap { flex-direction: column; align-items: flex-start; }
}
