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

:root {
  --bg: #ffffff;
  --bg-alt: #f7f7f5;
  --black: #111111;
  --dark: #1a1a1a;
  --grey-dark: #333333;
  --grey: #666666;
  --grey-light: #999999;
  --grey-pale: #cccccc;
  --rule: #e0e0de;
  --rule-dark: #d0d0ce;
  --serif: 'EB Garamond', Georgia, serif;
  --sans: 'DM Sans', -apple-system, Helvetica, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--black);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--black); color: var(--bg); }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 3.5rem;
  height: 70px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.logo {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
}

.nav-links { display: flex; gap: 2.8rem; align-items: center; }
.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--black); }

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 3.5rem 8rem;
}

.hero-tagline {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeIn 1s 0.3s forwards;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.18;
  max-width: 780px;
  letter-spacing: -0.01em;
  color: var(--black);
  opacity: 0; animation: fadeIn 1s 0.5s forwards;
}

.hero-lead {
  font-size: 1rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.8;
  max-width: 560px;
  margin-top: 2rem;
  opacity: 0; animation: fadeIn 1s 0.65s forwards;
}

.hero-lead + .hero-lead { margin-top: 1.25rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  opacity: 0; animation: fadeIn 1s 0.8s forwards;
}

.hero-rule {
  width: 100%; height: 1px;
  background: var(--rule);
  margin-top: 5rem;
  opacity: 0; animation: fadeIn 1s 0.9s forwards;
}

.btn {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.6rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.btn-primary {
  background: var(--black);
  color: var(--bg);
  border: 1px solid var(--black);
}
.btn-primary:hover { background: var(--dark); }

.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--rule-dark);
}
.btn-secondary:hover { border-color: var(--black); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--rule);
}

.stat {
  padding: 4rem 3.5rem;
  border-right: 1px solid var(--rule);
}
.stat:last-child { border-right: none; }

.stat-value {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  color: var(--black);
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
  line-height: 1.5;
}

.two-col {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  border-bottom: 1px solid var(--rule);
}

.two-col-left {
  padding: 5rem 3.5rem;
  border-right: 1px solid var(--rule);
}

.two-col-right { padding: 5rem 3.5rem; }

.label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 2rem;
}

.heading {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--black);
}

.body-text {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.85;
}
.body-text + .body-text { margin-top: 1.5rem; }

.section-pad {
  padding: 5rem 3.5rem;
  border-bottom: 1px solid var(--rule);
}

.section-pad.alt { background: var(--bg-alt); }

.section-intro {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-intro .heading { margin-bottom: 1.25rem; }

.cap-section {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--rule);
  padding: 5rem 3.5rem;
}

.cap-section .label { margin-bottom: 3rem; }

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-dark);
  border-left: 1px solid var(--rule-dark);
}

.cap-item {
  background: var(--bg);
  padding: 2.8rem 2.4rem;
  border-right: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
  transition: background 0.4s;
}
.cap-item:hover { background: var(--bg-alt); }

.cap-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 1rem;
}

.cap-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.75;
}

.cap-link {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--grey-pale);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}
.cap-link:hover { border-bottom-color: var(--black); }

.sectors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--rule);
}

.sector {
  padding: 4rem 2.5rem;
  border-right: 1px solid var(--rule);
  transition: background 0.3s;
}
.sector:last-child { border-right: none; }
.sector:hover { background: var(--bg-alt); }

.sector-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.8rem;
}

.sector-desc {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.7;
}

.process { border-bottom: 1px solid var(--rule); }

.process-header { padding: 5rem 3.5rem 3rem; }

.process-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  border-top: 1px solid var(--rule);
  transition: background 0.3s;
}
.process-row:hover { background: var(--bg-alt); }

.process-num {
  padding: 2.2rem 0 2.2rem 3.5rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--grey-pale);
}

.process-content { padding: 2.2rem 3.5rem 2.2rem 0; }

.process-title {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.process-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.7;
}

.list-block {
  list-style: none;
  border-top: 1px solid var(--rule);
}

.list-block li {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.6;
}

.list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule-dark);
  border-left: 1px solid var(--rule-dark);
}

.list-grid li {
  list-style: none;
  background: var(--bg);
  padding: 1.6rem 1.8rem;
  border-right: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.6;
}

.geo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}

.geo-item {
  padding: 5rem 3.5rem;
  border-right: 1px solid var(--rule);
}
.geo-item:last-child { border-right: none; }

.contact {
  background: var(--bg-alt);
  padding: 8rem 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}

.contact .heading {
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.contact .body-text {
  max-width: 460px;
  margin: 0 auto 3rem;
}

.contact-email {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--black);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--grey-pale);
  transition: border-color 0.3s;
}
.contact-email:hover { border-bottom-color: var(--black); }

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

footer {
  padding: 2.5rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-brand strong {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
}

.footer-brand span,
footer > span {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--grey-light);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { gap: 1.4rem; }
  .nav-links a { font-size: 0.62rem; letter-spacing: 0.06em; }
  .hero { padding: 0 1.5rem 5rem; min-height: 90vh; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--rule); padding: 2.5rem 1.5rem; }
  .stat:last-child { border-bottom: none; }
  .two-col { grid-template-columns: 1fr; }
  .two-col-left { border-right: none; border-bottom: 1px solid var(--rule); padding: 3rem 1.5rem; }
  .two-col-right { padding: 3rem 1.5rem; }
  .section-pad { padding: 3rem 1.5rem; }
  .cap-section { padding: 3rem 1.5rem; }
  .cap-grid { grid-template-columns: 1fr; }
  .sectors { grid-template-columns: 1fr; }
  .sector { border-right: none; border-bottom: 1px solid var(--rule); padding: 2.5rem 1.5rem; }
  .sector:last-child { border-bottom: none; }
  .process-header { padding: 3rem 1.5rem 2rem; }
  .process-num { padding-left: 1.5rem; }
  .process-content { padding-right: 1.5rem; }
  .list-grid { grid-template-columns: 1fr; }
  .geo-grid { grid-template-columns: 1fr; }
  .geo-item { border-right: none; border-bottom: 1px solid var(--rule); padding: 3rem 1.5rem; }
  .geo-item:last-child { border-bottom: none; }
  .contact { padding: 5rem 1.5rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; gap: 1rem; }
}
