/* Sabour Axiom Excellence — Executive Consulting Website */

:root {
  --ink: #10233f;
  --ink-soft: #42526a;
  --muted: #6b778c;
  --line: #dfe5ec;
  --paper: #ffffff;
  --paper-soft: #f6f8fb;
  --navy: #0c1d35;
  --accent: #b08a4a;
  --accent-dark: #8f6d38;
  --max-width: 1180px;
  --radius: 16px;
  --shadow: 0 18px 45px rgba(16, 35, 63, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

/* Navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 229, 236, 0.85);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-dark);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

/* Hero */

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 85% 20%, rgba(176, 138, 74, 0.10), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 90px;
  align-items: center;
  padding: 92px 0;
}

.eyebrow,
.section-label,
.panel-label {
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 22px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 750;
}

.hero h1 span {
  display: block;
  color: var(--ink-soft);
  font-weight: 450;
}

.hero-title {
  margin-top: 28px;
  font-size: clamp(19px, 2vw, 25px);
  color: var(--ink);
  font-weight: 650;
}

.hero-title span {
  color: var(--accent);
  padding: 0 7px;
}

.hero-description {
  max-width: 650px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 18px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: var(--ink);
}

.button-primary:hover {
  background: #172f51;
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: #cbd3dd;
}

.button-secondary:hover {
  border-color: var(--accent);
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.credentials span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.hero-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.panel-label {
  margin-bottom: 9px;
}

.focus-item {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.focus-item:last-child {
  border-bottom: 0;
}

.focus-item strong {
  width: 28px;
  color: var(--accent-dark);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.focus-item span {
  font-size: 15px;
  font-weight: 700;
}

/* General sections */

.section {
  padding: 110px 0;
}

.section-alt {
  background: var(--paper-soft);
}

.section-dark {
  color: #ffffff;
  background: var(--navy);
}

.section-dark .section-label {
  color: #d8b875;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-heading h2,
.two-column h2,
.contact-box h2 {
  margin-top: 12px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-heading > p:last-child {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 17px;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.section-copy {
  color: var(--ink-soft);
  font-size: 17px;
}

.section-copy p + p {
  margin-top: 20px;
}

/* Services */

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

.service-card {
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.card-number {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin-top: 42px;
  font-size: 20px;
  line-height: 1.25;
}

.service-card p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
}

/* Experience */

.experience-list {
  border-top: 1px solid var(--line);
}

.experience-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.experience-number {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.experience-item h3 {
  font-size: 22px;
}

.experience-item p {
  max-width: 800px;
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 15px;
}

.portfolio-note {
  margin-top: 52px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.portfolio-note h3 {
  margin-top: 8px;
  font-size: 19px;
}

.text-link {
  white-space: nowrap;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
  transition: opacity 0.2s ease;
}

.text-link:hover {
  opacity: 0.7;
}

/* Approach */

.approach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.approach-step {
  min-height: 240px;
  padding: 30px 28px 20px 0;
  margin-right: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.approach-step + .approach-step {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.approach-step > span {
  color: #d8b875;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.approach-step h3 {
  margin-top: 42px;
  font-size: 23px;
}

.approach-step p {
  margin-top: 10px;
  color: #b8c3d2;
  font-size: 14px;
}

/* Certifications */

.certification-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.certification {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-soft);
  font-size: 15px;
  font-weight: 700;
}

.certification p {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-soft);
}

/* Competencies */

.competencies-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 0;
  column-gap: 30px;
}

.competencies-list li {
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.competencies-list li:before {
  content: "✓ ";
  color: var(--accent-dark);
  font-weight: 700;
  margin-right: 8px;
}

/* Business */

.small-note {
  font-size: 13px !important;
  color: var(--muted) !important;
  margin-top: 20px !important;
}

/* Contact */

.contact-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact-box {
  max-width: 900px;
  text-align: center;
  padding: 82px 50px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(176, 138, 74, 0.12), transparent 35%),
    var(--paper-soft);
}

.contact-box > p:not(.section-label) {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.contact-actions {
  justify-content: center;
}

.contact-info {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}

.contact-info p {
  margin: 4px 0;
}

.contact-info strong {
  color: var(--ink);
  font-weight: 700;
}

/* Footer */

.site-footer {
  color: #b9c3d1;
  background: #08182c;
  padding: 38px 0;
}

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

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

.footer-center a {
  color: #b9c3d1;
  transition: color 0.2s ease;
}

.footer-center a:hover {
  color: #d8b875;
}

.site-footer strong {
  color: #ffffff;
  font-size: 14px;
}

.site-footer p {
  margin-top: 5px;
  font-size: 12px;
}

.footer-right {
  text-align: right;
}

/* Responsive */

@media (max-width: 900px) {
  .nav-links {
    gap: 15px;
  }

  .hero-grid,
  .two-column {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero {
    min-height: auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .approach-step + .approach-step {
    border-left: 0;
  }

  .approach-step:nth-child(3n+1) {
    padding-left: 0;
    border-left: 0;
  }

  .approach-step:nth-child(n+4) {
    padding-left: 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--max-width), calc(100% - 30px));
  }

  .nav {
    min-height: 68px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-links {
    gap: 12px;
    font-size: 12px;
  }

  .nav-links a:nth-child(3),
  .nav-links a:nth-child(4) {
    display: none;
  }

  .hero-grid {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-description {
    font-size: 16px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .two-column h2,
  .contact-box h2 {
    font-size: 34px;
  }

  .service-grid,
  .certification-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .competencies-list {
    grid-template-columns: 1fr;
  }

  .experience-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .portfolio-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .approach-step,
  .approach-step + .approach-step,
  .approach-step:nth-child(3n+1),
  .approach-step:nth-child(n+4) {
    padding: 25px 0;
    margin-right: 0;
    border-left: 0;
  }

  .contact-box {
    padding: 58px 24px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-center,
  .footer-right {
    text-align: center;
  }
}
