:root {
  --teal: #1a6b7c;
  --teal-light: #2a9bb5;
  --teal-mid: #3db8d4;
  --gold: #b8933a;
  --gold-light: #c9a84c;
  --gold-pale: #e8d9b4;
  --charcoal: #0d1b2a;
  --navy: #112233;
  --navy-mid: #1a3a5c;
  --slate: #3d5166;
  --mid: #6b8099;
  --rule: #d0d8e0;
  --bg: #f6f7f8;
  --white: #ffffff;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 15px;
}

/* NAV */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.2;
}

.nav-logo-img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo span {
  color: var(--teal);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
  padding: 6px 0;
  position: relative;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a.active { color: var(--charcoal); font-weight: 500; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
}

.nav-cta {
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  padding: 10px 26px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  background: none;
  transition: background 0.2s, color 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.nav-cta:hover { background: var(--charcoal); color: var(--white); }

/* HERO */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 6rem 3rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  right: 0; top: 0;
  width: 50%; height: 100%;
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 1.5rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--teal-mid);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-pale);
}

.hero-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.5);
  max-width: 430px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  align-items: center;
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  padding: 12px 28px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.2s;
  text-decoration: none;
}
.btn-white:hover { opacity: 0.88; }

.btn-ghost {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  background: none;
  cursor: pointer;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
}
.btn-ghost:hover { color: var(--white); }

.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-logo-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.hero-logo-text span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--teal-mid);
  margin-top: 0.75rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  width: 100%;
}

.hero-stat {
  background: rgba(255,255,255,0.03);
  padding: 1.25rem 1rem;
  text-align: center;
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* PAGE HEADER (for inner pages) */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 3rem 3rem;
  position: relative;
  overflow: hidden;
}

.page-header .hero-eyebrow {
  margin-bottom: 1rem;
}

.page-header-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  line-height: 1.8;
}

/* VALUE BAR */
.value-bar {
  background: var(--white);
  border-top: 3px solid var(--teal);
  border-bottom: 1px solid var(--rule);
  padding: 1.75rem 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.value-bar-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
  flex-shrink: 0;
}

.value-bar-divider {
  width: 1px;
  height: 28px;
  background: var(--rule);
  flex-shrink: 0;
}

.value-bar-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--charcoal);
  font-style: italic;
}

/* SECTIONS */
section { padding: 5rem 3rem; }
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy); }
.bg-charcoal { background: var(--charcoal); }

.section-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-label-light {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.section-title-light {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.service-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.service-card:hover { background: var(--bg); }

.service-bar {
  width: 28px; height: 2px;
  background: var(--teal);
  margin-bottom: 1.25rem;
}

.service-name {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.service-items { list-style: none; }

.service-items li {
  font-size: 12px;
  color: var(--slate);
  padding: 4px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-items li::before {
  content: '';
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* WHY ARAG */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-text p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.pillar {
  background: var(--bg);
  padding: 1.5rem;
}

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--teal);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.pillar-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.pillar-text {
  font-size: 12.5px;
  color: var(--mid);
  line-height: 1.6;
}

/* ENGAGEMENTS */
.engagements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

.engagement-card {
  background: var(--navy);
  padding: 2rem 1.75rem;
}

.engagement-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-mid);
  border: 1px solid rgba(61,184,212,0.3);
  padding: 3px 10px;
  margin-bottom: 1rem;
}

.engagement-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.engagement-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
}

/* INSIGHTS */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.insight-card {
  background: var(--white);
  padding: 1.75rem;
}

.insight-tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: block;
}

.insight-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.insight-desc {
  font-size: 12.5px;
  color: var(--mid);
  line-height: 1.65;
}

/* GEO */
.geo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 3rem;
}

.geo-phase {
  background: rgba(255,255,255,0.03);
  padding: 2rem 1.75rem;
}

.geo-phase-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 0.75rem;
}

.geo-phase-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}

.geo-locations { list-style: none; }

.geo-locations li {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.geo-locations li::before {
  content: '';
  width: 4px; height: 4px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* CTA */
.cta-section {
  background: var(--white);
  padding: 6rem 3rem;
  text-align: center;
  border-top: 1px solid var(--rule);
}

.cta-section .section-label { display: block; }

.contact-details {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.contact-item {
  text-align: center;
}

.contact-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.contact-value {
  font-size: 14px;
  color: var(--charcoal);
  text-decoration: none;
  line-height: 1.6;
}

a.contact-value:hover {
  color: var(--teal);
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
  max-width: 460px;
  margin: 0 auto 1.25rem;
}

.cta-desc {
  font-size: 14px;
  color: var(--mid);
  max-width: 400px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 13px 32px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.2s;
  text-decoration: none;
}
.btn-navy:hover { opacity: 0.85; }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--slate);
  color: var(--slate);
  padding: 13px 32px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  background: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }

.btn-dark {
  display: inline-block;
  background: var(--charcoal);
  color: var(--white);
  padding: 11px 24px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  margin-top: 1.25rem;
  transition: opacity 0.2s;
  text-decoration: none;
}
.btn-dark:hover { opacity: 0.8; }

/* LEADERSHIP */
.leader-profile {
  max-width: 720px;
}

.leader-photo-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--teal);
}

.leader-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--teal);
  flex-shrink: 0;
}

.leader-header {
  margin-bottom: 0;
}

/* LANGUAGE SWITCHER */
.lang-switch {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  font-weight: 400;
  margin-left: 1rem;
  padding: 4px 10px;
  border: 1px solid var(--rule);
  transition: color 0.2s, border-color 0.2s;
}
.lang-switch:hover {
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.leader-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.leader-role {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
}

.leader-bio p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* FOOTER */
footer {
  background: var(--charcoal);
  padding: 3rem 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.footer-logo span {
  color: var(--teal-mid);
}

.footer-logo-img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  justify-content: center;
}

.footer-nav a {
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: rgba(255,255,255,0.8);
}

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

.footer-contact-col a,
.footer-contact-col p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  line-height: 1.8;
  display: block;
}

.footer-contact-col a:hover {
  color: rgba(255,255,255,0.7);
}

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

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.3);
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  line-height: 1.6;
  text-align: right;
}

/* SMOOTH SCROLL */
html { scroll-behavior: smooth; }

/* CONTACT FORM */
.contact-form-section {
  background: var(--white);
  padding: 5rem 3rem;
  border-top: 1px solid var(--rule);
}

.contact-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.contact-form-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.contact-details-vertical {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item-row {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
}

.form-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  padding: 12px 16px;
  border: 1px solid var(--rule);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input:focus {
  border-color: var(--teal);
}

.form-input::placeholder {
  color: var(--mid);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  align-self: flex-start;
  cursor: pointer;
}

/* MAP */
.map-section {
  padding: 5rem 3rem;
  background: var(--bg);
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}

.map-container iframe {
  display: block;
}

@media (max-width: 900px) {
  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* LINK TRANSITIONS */
a { transition: color 0.2s, opacity 0.2s; }

/* CARD HOVER LIFT */
.engagement-card,
.insight-card,
.service-card,
.pillar,
.geo-phase {
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.engagement-card:hover,
.insight-card:hover,
.geo-phase:hover {
  transform: translateY(-2px);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* PAGE TRANSITION FLOW — subtle top border on sections for visual rhythm */
.bg-white + .bg-navy,
.bg-navy + .bg-white,
.bg-white + .bg-charcoal,
.bg-charcoal + .bg-white {
  border-top: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 4rem 1.5rem; }
  .hero-right { display: none; }
  .hero-title { font-size: 36px; }
  section { padding: 3rem 1.5rem; }
  .page-header { padding: 3rem 1.5rem 2rem; }
  .page-header-title { font-size: 32px; }
  .value-bar { padding: 1.25rem 1.5rem; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .engagements { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .geo-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-contact-col { text-align: center; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer-copy { text-align: center; }
  .cta-buttons { flex-direction: column; }
  .leader-photo-header { flex-direction: column; text-align: center; }
  .leader-photo { width: 120px; height: 120px; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .nav-logo-img { height: 75px; width: 75px; }
}
