:root {
  --ink: #0a0a0a;
  --cream: #f5f0e8;
  --gold: #c9a84c;
  --gold-light: #e8d5a0;
  --rust: #8b3a2a;
  --slate: #2c3e50;
  --mid: #6b7280;
  --white: #ffffff;
  --line: rgba(201,168,76,0.3);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink);
  display: flex; align-items: center; gap: 0.75rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  position: absolute;
  left: 0;
}

.nav-logo span {
  display: inline-block; width: 2px; height: 1.5rem; background: var(--gold);
}

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

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink);
  text-decoration: none; opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover { opacity: 1; color: var(--gold); }

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.6rem;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--rust); }

#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--ink);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 4rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-left::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}

.hero-eyebrow::before { content: ''; display: block; width: 2.5rem; height: 1px; background: var(--gold); }

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--white);
  margin-bottom: 2rem;
}

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

.hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  padding: 0.9rem 2.2rem;
  background: var(--gold);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--rust); transform: translateY(-1px); }

.btn-ghost {
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-right {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-graphic {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}

.hero-circle-outer {
  width: 420px; height: 420px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  position: absolute;
  animation: rotateSlow 30s linear infinite;
}

.hero-circle-mid {
  width: 300px; height: 300px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  position: absolute;
  animation: rotateSlow 20s linear infinite reverse;
}

.hero-circle-inner {
  width: 180px; height: 180px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  position: absolute;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.25rem;
}

.hero-circle-inner .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}

.hero-circle-inner .label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}

.hero-stats {
  position: absolute; bottom: 3rem; left: 3rem; right: 3rem;
  display: flex; gap: 0; border-top: 1px solid rgba(201,168,76,0.2);
  padding-top: 2rem;
}

.hero-stat {
  flex: 1; text-align: center;
  border-right: 1px solid rgba(201,168,76,0.15);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600; color: var(--gold);
}

.hero-stat-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem; color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em; margin-top: 0.2rem;
}

@keyframes rotateSlow { to { transform: rotate(360deg); } }

section { padding: 6rem 4rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}

.section-tag::after { content: ''; display: block; width: 3rem; height: 1px; background: var(--gold); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.2;
  margin-bottom: 1.5rem;
}

#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem; align-items: center;
}

.about-body {
  font-size: 1.05rem; font-weight: 300; line-height: 1.9;
  color: #444; margin-bottom: 1.5rem;
}

.about-meta {
  display: flex; gap: 2rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid #eee;
}

.about-meta-item .key {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--mid);
  margin-bottom: 0.35rem;
}

.about-meta-item .val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 600; color: var(--ink);
}

.about-vmm { display: flex; flex-direction: column; gap: 0; }

.vmm-item {
  padding: 2rem;
  border: 1px solid #eee;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.vmm-item:hover { border-color: var(--gold); box-shadow: 4px 4px 0 var(--gold); }
.vmm-item + .vmm-item { border-top: none; }

.vmm-icon {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.75rem;
}

.vmm-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-style: italic;
  line-height: 1.6; color: var(--ink);
}

.vmm-motto { background: var(--ink); }
.vmm-motto .vmm-icon { color: var(--gold); }
.vmm-motto .vmm-text { color: var(--cream); font-style: normal; font-size: 1.4rem; font-weight: 300; }

#services { background: var(--cream); }
.services-header { margin-bottom: 4rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}

.service-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--line);
  position: relative; overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}

.service-card:last-child { border-right: none; }

.service-card:nth-child(5),
.service-card:nth-child(6),
.service-card:nth-child(7) { border-top: 1px solid var(--line); }

.service-card:nth-child(8) { border-top: 1px solid var(--line); border-right: none; }

.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--white); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300; color: rgba(201,168,76,0.2);
  line-height: 1; margin-bottom: 1rem;
}

.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.85rem; font-weight: 300; line-height: 1.7;
  color: var(--mid);
}

.service-card--cta { background: var(--ink); cursor: default; }

.service-cta-inner {
  height: 100%; display: flex; flex-direction: column; justify-content: flex-end;
}

.service-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300;
  color: var(--gold-light); line-height: 1.4;
  margin-bottom: 1.5rem; font-style: italic;
}

.service-card--cta .btn-primary { text-align: center; }

#leadership { background: var(--ink); }
#leadership .section-title { color: var(--cream); }
#leadership .section-tag { color: var(--gold); }

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

.leader-card {
  background: rgba(255,255,255,0.04);
  padding: 3rem 2.5rem;
  position: relative;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.leader-card:hover {
  background: rgba(201,168,76,0.08);
  border-bottom-color: var(--gold);
}

.leader-initial {
  width: 64px; height: 64px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300; color: var(--gold);
  margin-bottom: 2rem;
  border-radius: 50%;
}

.leader-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 400; color: var(--cream);
  margin-bottom: 0.4rem;
}

.leader-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.25rem;
}

.leader-bio {
  font-size: 0.85rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

#offices { background: var(--white); }

.offices-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 4rem;
  border: 1px solid #eee;
}

.office-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid #eee;
  text-align: center;
  transition: background 0.2s;
}

.office-item:last-child { border-right: none; }
.office-item:hover { background: var(--cream); }

.office-dot {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
}

.office-city {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 0.4rem;
}

.office-type { font-size: 0.75rem; color: var(--mid); }

#contact {
  background: linear-gradient(
      rgba(10,10,10,0.85),
      rgba(10,10,10,0.85)
    ),
    url("call.jpeg") center/cover no-repeat;
  padding: 6rem 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem; align-items: start;
}

#contact .section-title { color: var(--cream); }

.contact-body {
  font-size: 1rem; font-weight: 300; line-height: 1.9;
  color: rgba(255,255,255,0.55); margin-bottom: 2.5rem;
}

.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }

.contact-item-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.1rem;
}

.contact-item-icon svg { width: 14px; height: 14px; fill: var(--gold); }

.contact-item-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem;
}

.contact-item-value { font-size: 0.9rem; color: rgba(255,255,255,0.75); font-weight: 300; }

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

.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.85rem 1rem;
  color: rgba(255,255,255,0.85);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem; font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group textarea { height: 120px; resize: vertical; }
.form-group select option { background: #1a1a2e; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-submit {
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}

.btn-submit:hover { background: var(--rust); transform: translateY(-1px); }
.footer {
  background: #0b0f14;
  color: #cbd5e1;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #c9a84c;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.footer-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #94a3b8;
}

.footer-motto {
  font-style: italic;
  color: #c9a84c;
  font-size: 0.85rem;
}

.footer-col h4 {
  color: #c9a84c;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #c9a84c;
}

.footer-col p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social svg {
  width: 18px;
  height: 18px;
  fill: #94a3b8;
  transition: 0.2s;
}

.social:hover svg {
  fill: #c9a84c;
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #64748b;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,0.4);
  transition: fill 0.2s;
}

.social-link:hover svg {
  fill: #c9a84c;
}

.gold-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--rust), var(--gold));
}

.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  #hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 40vh; }
  .hero-left { padding: 7rem 2rem 3rem; }
  section { padding: 4rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-child(n+3) { border-top: 1px solid var(--line); }
  .leadership-grid { grid-template-columns: 1fr; gap: 2px; }
  .offices-grid { grid-template-columns: repeat(3, 1fr); }
  .office-item:nth-child(3) { border-right: none; }
  .office-item:nth-child(n+4) { border-top: 1px solid #eee; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}