:root {
  --ink: #172019;
  --ink-2: #233026;
  --cream: #f2efe7;
  --paper: #fbfaf6;
  --sage: #c7d8a3;
  --line: rgba(23, 32, 25, 0.17);
  --muted: #6e766f;
  --max: 1420px;
  --pad: clamp(22px, 4vw, 66px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; padding: 10px 14px; background: white; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 82px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.22);
  transition: background .35s ease, color .35s ease, height .35s ease;
}
.site-header.scrolled { height: 68px; background: rgba(251,250,246,.95); color: var(--ink); border-color: var(--line); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; gap: 13px; font-weight: 720; font-size: 17px; letter-spacing: .18em; }
.brand-mark { width: 28px; height: 28px; position: relative; display: inline-block; }
.brand-mark i { position: absolute; width: 11px; height: 26px; border: 2px solid currentColor; transform: skew(-13deg); }
.brand-mark i:first-child { left: 3px; top: 1px; }
.brand-mark i:last-child { right: 3px; top: 1px; background: currentColor; }
.nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 50px); font-size: 13px; letter-spacing: .04em; }
.nav a { opacity: .86; }
.nav a:hover { opacity: 1; }
.nav-cta { border: 1px solid currentColor; padding: 13px 18px; display: flex; gap: 22px; }
.menu-button { display: none; color: inherit; background: transparent; border: 0; width: 38px; height: 38px; padding: 9px; }
.menu-button span { display: block; height: 1px; background: currentColor; margin: 6px 0; }

.hero { position: relative; min-height: 760px; height: min(920px, 100svh); color: white; overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% center; transform: scale(1.01); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,16,12,.83) 0%, rgba(10,16,12,.52) 42%, rgba(10,16,12,.1) 77%), linear-gradient(0deg, rgba(10,16,12,.6), transparent 42%); }
.hero-content { position: relative; z-index: 2; height: 100%; max-width: var(--max); margin: auto; padding: 150px var(--pad) 78px; display: flex; flex-direction: column; justify-content: space-between; }
.eyebrow { text-transform: uppercase; letter-spacing: .19em; font-size: 11px; font-weight: 680; }
.eyebrow.light { color: rgba(255,255,255,.74); }
h1, h2 { margin: 0; font-weight: 430; letter-spacing: -.055em; line-height: .95; }
.hero h1 { max-width: 890px; font-size: clamp(62px, 8.2vw, 132px); }
h1 em, h2 em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-bottom { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.hero-bottom > p { max-width: 600px; margin: 0; font-size: clamp(18px, 1.65vw, 25px); line-height: 1.42; color: rgba(255,255,255,.84); }
.button { min-height: 56px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: space-between; gap: 34px; border: 1px solid transparent; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 720; cursor: pointer; }
.button-light { background: white; color: var(--ink); min-width: 238px; }
.button-accent { background: var(--sage); color: var(--ink); width: 100%; }
.hero-index { position: absolute; z-index: 2; right: var(--pad); top: 112px; font-size: 10px; letter-spacing: .18em; color: rgba(255,255,255,.65); writing-mode: vertical-rl; }

.sector-bar { min-height: 76px; padding: 20px var(--pad); background: var(--ink); color: white; display: flex; align-items: center; justify-content: center; gap: clamp(15px, 3vw, 55px); text-transform: uppercase; letter-spacing: .16em; font-size: 10px; white-space: nowrap; overflow: hidden; }
.sector-bar i { width: 4px; height: 4px; background: var(--sage); border-radius: 50%; flex: 0 0 auto; }
.section { max-width: var(--max); margin: auto; padding: clamp(95px, 12vw, 180px) var(--pad); }
.section-label { display: flex; gap: 20px; align-items: center; text-transform: uppercase; letter-spacing: .16em; font-size: 10px; color: var(--muted); }
.section-label span { color: var(--ink); }
.statement { display: grid; grid-template-columns: minmax(160px, 1fr) 3.2fr; gap: 70px; }
.statement-copy h2, .services-heading h2, .process-heading h2 { max-width: 1000px; font-size: clamp(48px, 6.3vw, 96px); }
.statement-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; margin-top: 70px; max-width: 940px; }
.statement-detail p, .services-heading > p, .process-heading > p, .split-copy > p, .operator-grid > p, .contact-intro > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }

.feature-image { position: relative; height: clamp(520px, 70vw, 880px); margin: 0 var(--pad); overflow: hidden; }
.feature-image img { height: 100%; object-fit: cover; object-position: center; }
.image-note { position: absolute; left: 0; bottom: 0; min-width: min(430px, 86%); padding: 24px 30px; background: var(--paper); display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.image-note span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.image-note strong { font-size: 13px; font-weight: 580; }

.services { border-bottom: 1px solid var(--line); }
.services-heading, .process-heading { display: grid; grid-template-columns: 2.2fr 1fr; align-items: end; gap: 70px; margin: 55px 0 90px; }
.services-heading > p, .process-heading > p { max-width: 420px; }
.service-list { border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: 100px 1fr 1.6fr; gap: 35px; align-items: start; padding: 34px 0; border-bottom: 1px solid var(--line); }
.service-number { color: var(--muted); font-size: 12px; }
.service-item h3 { margin: 0; font-size: clamp(23px, 2vw, 32px); font-weight: 480; letter-spacing: -.035em; }
.service-item p { margin: 2px 0 0; max-width: 580px; color: var(--muted); line-height: 1.6; }

.split-project { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 760px; background: var(--cream); }
.split-image img { height: 100%; object-fit: cover; }
.split-copy { padding: clamp(75px, 8vw, 130px) clamp(35px, 7vw, 105px); display: flex; flex-direction: column; justify-content: center; }
.split-copy h2 { font-size: clamp(47px, 5vw, 82px); margin: 28px 0 38px; }
.split-copy > p { max-width: 570px; }
.split-copy ul { list-style: none; padding: 0; margin: 55px 0 38px; border-top: 1px solid var(--line); }
.split-copy li { display: flex; gap: 25px; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.split-copy li span { color: var(--muted); font-size: 10px; }
.text-link { align-self: start; padding-bottom: 8px; border-bottom: 1px solid var(--ink); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; display: flex; gap: 25px; }

.operator { max-width: none; padding-left: var(--pad); padding-right: var(--pad); }
.operator-card { max-width: var(--max); margin: auto; background: var(--ink); color: white; padding: clamp(55px, 7vw, 105px); }
.operator-card h2 { margin: 35px 0 75px; max-width: 1100px; font-size: clamp(50px, 6.2vw, 96px); }
.operator-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(50px, 9vw, 150px); }
.operator-grid > p { color: rgba(255,255,255,.66); font-size: 18px; }
.operator-points { border-top: 1px solid rgba(255,255,255,.22); }
.operator-points div { padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.22); display: grid; grid-template-columns: .85fr 1.15fr; gap: 25px; }
.operator-points strong { font-size: 15px; font-weight: 560; }
.operator-points span { color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.5; }

.process-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-list li { min-height: 230px; padding: 23px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.process-list li:last-child { border: 0; }
.process-list li > span { color: var(--muted); font-size: 10px; }
.process-list strong { font-size: 24px; font-weight: 480; margin-top: auto; }
.process-list p { color: var(--muted); line-height: 1.5; font-size: 13px; margin: 12px 0 0; }

.contact { max-width: none; background: var(--ink-2); color: white; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 10vw, 170px); padding-left: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad))); padding-right: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad))); }
.contact-intro h2 { font-size: clamp(52px, 6vw, 92px); margin: 32px 0 42px; }
.contact-intro > p { color: rgba(255,255,255,.6); max-width: 560px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; align-content: start; }
.contact-form label { display: block; }
.contact-form label > span { display: block; margin-bottom: 9px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .13em; font-size: 9px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; color: white; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.32); border-radius: 0; padding: 12px 0; outline: 0; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--sage); }
.contact-form select option { color: var(--ink); }
.contact-form .full { grid-column: 1 / -1; }
.form-note { margin: -14px 0 0; color: rgba(255,255,255,.48); font-size: 11px; line-height: 1.5; }

.footer { max-width: var(--max); margin: auto; padding: 55px var(--pad); display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: start; border-bottom: 10px solid var(--sage); }
.brand-footer { font-size: 15px; }
.footer p { margin: 0; color: var(--muted); line-height: 1.5; }
.footer > div { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.copyright { grid-column: 1 / -1; padding-top: 45px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }

@media (max-width: 900px) {
  .site-header { height: 68px; }
  .menu-button { display: block; z-index: 3; }
  .nav { position: fixed; inset: 0; background: var(--ink); color: white; padding: 110px var(--pad) 55px; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 0; transform: translateY(-102%); transition: transform .35s ease; }
  .nav.open { transform: translateY(0); }
  .nav a { font-size: 26px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .nav-cta { margin-top: 28px; border: 1px solid white !important; font-size: 15px !important; padding: 18px !important; justify-content: space-between; }
  .hero { min-height: 720px; }
  .hero-content { padding-top: 120px; }
  .hero-bottom { align-items: start; flex-direction: column; }
  .hero-bottom > p { max-width: 520px; }
  .statement { grid-template-columns: 1fr; gap: 45px; }
  .services-heading, .process-heading { grid-template-columns: 1fr; gap: 35px; }
  .service-item { grid-template-columns: 60px 1fr; }
  .service-item p { grid-column: 2; }
  .split-project { grid-template-columns: 1fr; }
  .split-image { min-height: 560px; }
  .operator-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li { border-bottom: 1px solid var(--line); }
  .process-list li:nth-child(2n) { border-right: 0; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { height: 100svh; min-height: 680px; }
  .hero h1 { font-size: clamp(54px, 17vw, 78px); }
  .hero-content { padding-bottom: 38px; }
  .hero-bottom > p { font-size: 17px; }
  .hero-index { display: none; }
  .sector-bar { justify-content: flex-start; }
  .statement-detail { grid-template-columns: 1fr; gap: 22px; margin-top: 45px; }
  .feature-image { margin: 0; height: 580px; }
  .image-note { flex-direction: column; align-items: start; }
  .services-heading, .process-heading { margin-bottom: 55px; }
  .service-item { grid-template-columns: 40px 1fr; gap: 20px; }
  .split-image { min-height: 430px; }
  .operator { padding-left: 0; padding-right: 0; }
  .operator-points div { grid-template-columns: 1fr; gap: 8px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { border-right: 0; min-height: 180px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .full { grid-column: auto; }
  .footer { grid-template-columns: 1fr; }
  .copyright { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
