@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;1,400&display=swap');

/* ─── Reset & Variables ─────────────────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy-dark:  #0A1C2E;
  --navy-mid:   #0D1F35;
  --gold:       #C9A052;
  --grey-text:  #AAAAAA;
  --off-white:  #F5F4F0;
  --white:      #FFFFFF;
  --body-dark:  #333333;
  --body-mid:   #555555;
  --body-light: #666666;
  --font: 'Poppins', Arial, sans-serif;
}

body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--body-dark);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
section[id],
div[id] {
  scroll-margin-top: 120px;
}

/* ─── Navigation ─────────────────────────────────────────────────────────── */
nav {
  background: var(--navy-dark);
  padding: 0;
  height: 120px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
}

.nav-logo img {
  height: 100px;
  width: auto;
  padding-top: 10px;
}

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

.nav-links a {
  color: var(--grey-text);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 20px;
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy-dark);
  padding: 100px 48px 80px;
}

.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  max-width: 820px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 16px;
  color: var(--grey-text);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-descriptor {
  display: flex;
  gap: 0;
  margin-bottom: 44px;
}

.hero-descriptor span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-text);
}

.hero-descriptor .sep {
  color: var(--gold);
  margin: 0 12px;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-tagline {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-tagline p {
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

/* ─── Credentials Strip ──────────────────────────────────────────────────── */
.cred-strip {
  background: var(--navy-mid);
  padding: 20px 48px;
}

.cred-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.cred-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.cred-rule {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.cred-items {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.cred-item {
  font-size: 12px;
  color: var(--grey-text);
}

.cred-item strong {
  color: var(--white);
  font-weight: 600;
}

/* ─── Shared Section Styles ──────────────────────────────────────────────── */
section {
  padding: 80px 48px;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-rule {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title-light {
  color: var(--white);
}

/* ─── Argument Section ───────────────────────────────────────────────────── */
.argument {
  background: var(--white);
}

.argument-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.argument-quote {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 28px 0 20px;
}

.argument-body {
  font-size: 15px;
  color: var(--body-mid);
  line-height: 1.85;
}

.argument-pillars {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.pillar {
  background: var(--off-white);
  padding: 16px 28px;
  border-left: 3px solid var(--gold);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pillar-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.pillar-desc {
  font-size: 12px;
  color: var(--body-light);
  line-height: 1.7;
}

/* ─── Services Section ───────────────────────────────────────────────────── */
.services {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s;
}

.service-card:hover {
  border-top-color: var(--gold);
}

.service-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.service-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-desc {
  font-size: 14px;
  color: var(--body-light);
  line-height: 1.8;
}

/* ─── Approach Section ───────────────────────────────────────────────────── */
.approach {
  background: var(--navy-dark);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

.approach-principles {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.principle {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.principle-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.principle-desc {
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.75;
}

.jurs-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.jurs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.jur {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 18px;
}

.jur-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.jur-detail {
  font-size: 11px;
  color: var(--grey-text);
  margin-top: 3px;
}

/* ─── About Section ──────────────────────────────────────────────────────── */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
}

.about-body {
  font-size: 13px;
  color: var(--body-mid);
  line-height: 1.85;
  margin-top: 20px;
}

.about-body + .about-body {
  margin-top: 14px;
}
.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-position: center 20%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin-bottom: 20px;
  display: block;
}
.stats {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--off-white);
}

.stat {
  background: var(--white);
  padding: 22px 26px;
  border-left: 3px solid var(--gold);
}

.stat-num {
  font-size: 26px;
  font-weight: 600;
  color: var(--navy-dark);
}

.stat-label {
  font-size: 12px;
  color: #888;
  margin-top: 3px;
}

/* ─── Contact & Footer ───────────────────────────────────────────────────── */
.contact-section {
  background: var(--navy-dark);
  padding: 80px 48px 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-intro {
  font-size: 15px;
  color: var(--grey-text);
  line-height: 1.9;
  margin-bottom: 24px;
}

.contact-detail {
  font-size: 15px;
  color: var(--grey-text);
  line-height: 2.2;
}

.contact-detail a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-detail a:hover {
  opacity: 0.8;
}

.eng-box {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px;
}

.eng-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.eng-item {
  font-size: 12px;
  color: var(--grey-text);
  padding-left: 12px;
  border-left: 1px solid var(--gold);
  margin-bottom: 10px;
}

.eng-item:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-tag {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.footer-logo img {
  height: 100px;
  width: auto;
  
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }

  .hero {
    padding: 64px 24px 56px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .cred-strip {
    padding: 16px 24px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .cred-rule {
    display: none;
  }

  section {
    padding: 56px 24px;
  }

  .argument-grid,
  .approach-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-section {
    padding: 56px 24px 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ─── Hamburger Button ───────────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--grey-text);
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 600px) {
  nav {
    padding: 0;
    height: 80px;
  }
.nav-logo img {
  height: 60px;
  padding-top: 0;
}
  .nav-hamburger {
    display: flex;
    align-self: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy-mid);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 99;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
    font-size: 12px;
  }

  .nav-cta {
    margin-top: 16px;
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-descriptor {
    flex-wrap: wrap;
    gap: 4px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .jurs {
    grid-template-columns: 1fr;
  }
}
