
:root {
  --navy: #0d1b2a;
  --navy-2: #13253a;
  --ink: #17212b;
  --muted: #66707b;
  --line: rgba(13,27,42,.14);
  --paper: #f7f4ef;
  --paper-2: #fbfaf7;
  --cream: #efe8dd;
  --white: #ffffff;
  --accent: #b39a74;
  --accent-2: #cebda4;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper-2);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(251,250,247,.9);
  backdrop-filter: blur(16px);
  border-color: rgba(13,27,42,.08);
}
.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: end;
  column-gap: 10px;
  row-gap: 2px;
}
.brand-main {
  grid-column: 1;
  grid-row: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 50px;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: .8;
  color: var(--navy);
}
.brand-mark {
  grid-column: 2;
  grid-row: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 50px;
  font-weight: 500;
  line-height: .8;
  color: var(--accent);
}
.brand-sub {
  grid-column: 1 / span 2;
  grid-row: 2;
  font-size: 10px;
  letter-spacing: .42em;
  color: #33404c;
  padding-left: 4px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 500;
}
.nav a {
  position: relative;
  padding: 8px 0;
}
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 18px !important;
  border: 1px solid rgba(13,27,42,.2);
  transition: .2s ease;
}
.nav-cta:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 92px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(247,244,239,.94) 12%, rgba(247,244,239,.86) 42%, rgba(247,244,239,.72) 100%),
    radial-gradient(circle at 85% 18%, rgba(179,154,116,.22), transparent 22%),
    linear-gradient(135deg, rgba(13,27,42,.04), rgba(13,27,42,.01)),
    linear-gradient(180deg, #faf7f2 0%, #f4efe7 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(13,27,42,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,27,42,.03) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to right, transparent 0%, black 35%, black 100%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 8%;
  width: 52%;
  height: 72%;
  background:
    radial-gradient(circle at 40% 40%, rgba(179,154,116,.12), transparent 38%),
    radial-gradient(circle at 70% 35%, rgba(13,27,42,.09), transparent 24%);
  border: 1px solid rgba(13,27,42,.08);
  transform: rotate(-10deg);
  opacity: .65;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.28), transparent 40%),
    linear-gradient(0deg, rgba(255,255,255,.12), transparent 30%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  min-height: calc(100vh - 172px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 84px;
  padding: 88px 0 56px;
}
.eyebrow, .section-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 22px;
}
.hero h1, .section h2, .service-card h3, .method-step h3, .sector-panel h3, .partner-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(58px, 6vw, 88px);
  line-height: .93;
  color: var(--navy);
}
.lead {
  margin: 30px 0 0;
  max-width: 690px;
  font-size: 20px;
  color: #37424d;
}
.hero-secondary {
  margin: 18px 0 0;
  max-width: 650px;
  font-size: 15px;
  color: var(--muted);
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--navy);
  color: var(--white);
}
.button-primary:hover { background: var(--navy-2); }
.button-ghost {
  border-color: rgba(13,27,42,.2);
  color: var(--navy);
  background: rgba(255,255,255,.5);
}
.button-ghost:hover { border-color: var(--navy); }

.hero-panel {
  position: relative;
  justify-self: end;
  width: min(470px, 100%);
}
.hero-panel-inner {
  position: relative;
  padding: 40px 36px;
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(13,27,42,.12);
  box-shadow: 0 30px 80px rgba(13,27,42,.08);
}
.hero-panel-inner::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(179,154,116,.24);
  pointer-events: none;
}
.panel-kicker {
  position: relative;
  z-index: 2;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-steps {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
}
.hero-step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(13,27,42,.08);
}
.hero-step:last-child { border-bottom: 0; padding-bottom: 0; }
.hero-step span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  color: var(--accent);
  line-height: 1;
}
.hero-step strong {
  display: block;
  font-size: 22px;
  color: var(--navy);
}
.hero-step small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}
.hero-footer {
  position: relative;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(13,27,42,.1);
  color: #61707d;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.section {
  padding: 122px 0;
}
.section-light { background: var(--paper-2); }
.section-dark {
  position: relative;
  background:
    linear-gradient(180deg, rgba(13,27,42,.98), rgba(18,36,58,.98)),
    linear-gradient(90deg, rgba(179,154,116,.08), transparent 30%);
  color: var(--white);
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute;
  right: -10%;
  top: 8%;
  width: 44%;
  height: 68%;
  border: 1px solid rgba(255,255,255,.07);
  transform: rotate(-8deg);
}
.section-cream { background: var(--cream); }

.split, .experience-top {
  display: grid;
  grid-template-columns: .34fr .66fr;
  gap: 80px;
}
.section h2 {
  margin: 0;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.02;
  color: var(--navy);
}
.section-copy p, .method-intro {
  margin: 22px 0 0;
  max-width: 800px;
  font-size: 17px;
  color: #505b65;
}
.statement {
  border-left: 2px solid var(--accent);
  padding-left: 22px;
  color: var(--navy) !important;
  font-weight: 500;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr .38fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 60px;
}
.section-heading h2 {
  color: var(--white);
}
.section-heading p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 15px;
}
.section-kicker-light { color: var(--accent-2); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-left: 1px solid rgba(255,255,255,.12);
}
.service-card {
  min-height: 440px;
  padding: 42px 38px 40px;
  border-right: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}
.service-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 56px;
  line-height: .8;
  color: rgba(206,189,164,.88);
  margin-bottom: 36px;
}
.service-card h3 {
  margin: 0;
  font-size: 37px;
  line-height: 1.05;
}
.service-card > p {
  margin: 16px 0 24px;
  max-width: 490px;
  font-size: 14px;
  color: rgba(255,255,255,.68);
}
.service-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.service-card li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: rgba(255,255,255,.86);
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .82em;
  width: 6px;
  height: 1px;
  background: var(--accent-2);
}

.method-heading {
  display: grid;
  grid-template-columns: .34fr .66fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.method-step {
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(13,27,42,.1);
  padding: 34px 30px;
  min-height: 280px;
  box-shadow: 0 12px 32px rgba(13,27,42,.04);
}
.method-step span {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 58px;
  line-height: .82;
  color: var(--accent);
  margin-bottom: 30px;
}
.method-step h3 {
  margin: 0 0 14px;
  font-size: 34px;
  color: var(--navy);
}
.method-step p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.experience-section {
  position: relative;
  overflow: hidden;
}
.experience-section::before {
  content: "";
  position: absolute;
  right: -8%;
  top: 12%;
  width: 34%;
  height: 48%;
  background: radial-gradient(circle, rgba(179,154,116,.18), transparent 55%);
  pointer-events: none;
}
.experience-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}
.experience-card {
  padding: 28px 24px;
  border: 1px solid rgba(13,27,42,.11);
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.45));
  min-height: 210px;
}
.exp-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 48px;
  line-height: .85;
  color: var(--accent);
  margin-bottom: 18px;
}
.experience-card strong {
  display: block;
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 10px;
}
.experience-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}
.experience-tags span {
  padding: 12px 16px;
  font-size: 12px;
  color: #47535f;
  border: 1px solid rgba(13,27,42,.14);
  background: rgba(255,255,255,.62);
}
.sector-panel {
  margin-top: 88px;
  padding-top: 44px;
  border-top: 1px solid rgba(13,27,42,.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.sector-panel h3 {
  margin: 0;
  font-size: 42px;
  line-height: 1.02;
  color: var(--navy);
  max-width: 520px;
}
.sector-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(13,27,42,.11);
}
.sector-list span {
  padding: 18px 0;
  border-bottom: 1px solid rgba(13,27,42,.11);
  font-size: 14px;
}
.sector-list span:nth-child(odd) { margin-right: 18px; }

.partner-section {
  background:
    linear-gradient(180deg, #f6f1e8 0%, #fbfaf7 100%);
}
.partner-grid {
  display: grid;
  grid-template-columns: .42fr .58fr;
  gap: 70px;
  align-items: center;
}
.partner-visual {
  position: relative;
  min-height: 430px;
  background:
    radial-gradient(circle at 30% 30%, rgba(179,154,116,.2), transparent 25%),
    linear-gradient(135deg, rgba(13,27,42,.04), rgba(13,27,42,.01)),
    #f3eee5;
  border: 1px solid rgba(13,27,42,.11);
  overflow: hidden;
}
.partner-visual::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(179,154,116,.26);
}
.partner-visual::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 12%;
  width: 62%;
  height: 72%;
  border: 1px solid rgba(13,27,42,.08);
  transform: rotate(-14deg);
}
.partner-frame {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px;
}
.partner-frame span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 88px;
  line-height: .9;
  color: var(--navy);
}
.partner-frame small {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: .24em;
  color: #52606c;
}
.partner-copy h2 {
  margin: 0;
  font-size: clamp(46px, 4.5vw, 66px);
  line-height: .98;
  color: var(--navy);
}
.partner-copy p {
  margin-top: 22px;
  font-size: 16px;
  color: #55606b;
}
.partner-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.partner-points span {
  padding: 10px 14px;
  border: 1px solid rgba(13,27,42,.13);
  background: rgba(255,255,255,.72);
  font-size: 12px;
  color: #45505c;
}

.cta-section {
  background:
    linear-gradient(180deg, rgba(18,36,58,.98), rgba(13,27,42,.99));
  color: var(--white);
}
.cta-grid {
  display: grid;
  grid-template-columns: .58fr .42fr;
  gap: 72px;
  align-items: end;
}
.cta-section h2 { color: var(--white); }
.cta-copy p {
  margin: 0 0 28px;
  color: rgba(255,255,255,.72);
  font-size: 16px;
}
.contact-data {
  margin-top: 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.72);
}
.contact-data a:hover { color: var(--white); }

.footer {
  background: #f7f4ef;
  padding: 32px 0;
  font-size: 11px;
  color: #61707d;
  border-top: 1px solid rgba(13,27,42,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
.footer-grid > :nth-child(2) { text-align: center; }
.footer-grid > :nth-child(3) { text-align: right; }
.brand-footer .brand-main, .brand-footer .brand-mark { font-size: 34px; }
.brand-footer .brand-sub { font-size: 9px; }

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

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1040px) {
  .hero-grid,
  .partner-grid,
  .cta-grid,
  .split,
  .experience-top,
  .method-heading,
  .sector-panel {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .hero-panel { justify-self: start; }
  .method-grid, .experience-visual { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 30px, var(--max)); }
  .site-header {
    background: rgba(251,250,247,.92);
    backdrop-filter: blur(14px);
  }
  .nav-wrap { min-height: 78px; }
  .brand-main, .brand-mark { font-size: 38px; }
  .brand-sub { font-size: 9px; letter-spacing: .28em; }

  .nav-toggle { display: block; z-index: 102; }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--paper-2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    font-size: 18px;
    transform: translateY(-102%);
    transition: transform .28s ease;
  }
  .nav.open { transform: translateY(0); }

  .hero { padding-top: 78px; min-height: auto; }
  .hero::after { width: 78%; right: -18%; top: 12%; height: 48%; }
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 88px 0 44px;
  }
  .hero h1 { font-size: clamp(48px, 13vw, 74px); }
  .lead { font-size: 18px; }
  .hero-footer {
    overflow-x: auto;
    justify-content: flex-start;
    min-height: 64px;
  }
  .hero-footer span { white-space: nowrap; }

  .section { padding: 86px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .service-grid, .method-grid, .experience-visual, .sector-list { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .sector-list span:nth-child(odd) { margin-right: 0; }

  .partner-visual { min-height: 290px; }
  .partner-frame span { font-size: 64px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .footer-grid > :nth-child(2),
  .footer-grid > :nth-child(3) { text-align: left; }
}
