:root {
  --ink: #080808;
  --paper: #f3f0ea;
  --muted: #a5a39f;
  --line: rgba(255,255,255,.14);
  --orange: #ff7200;
}

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

.site-header {
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
}
.wordmark { font-size: 14px; letter-spacing: .13em; font-weight: 300; }
.wordmark span { color: var(--orange); font-weight: 700; }
nav { display: flex; gap: 34px; }
nav a { color: #c6c5c2; font-size: 12px; letter-spacing: .06em; transition: color .2s; }
nav a:hover { color: white; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 24px; }
.language-switcher { display: flex; align-items: center; gap: 7px; color: #615f5b; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.language-switcher a { padding: 8px 2px 7px; border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.language-switcher a:hover { color: #fff; }
.language-switcher a.active { color: var(--orange); border-bottom-color: var(--orange); }
.language-switcher span { color: #3d3b38; }
.nav-cta { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.nav-cta span { color: var(--orange); margin-left: 8px; }

.hero {
  min-height: 820px;
  height: 100vh;
  max-height: 980px;
  display: grid;
  grid-template-columns: 53% 47%;
  align-items: center;
  padding: 108px 4vw 42px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.055) 50%, transparent 50.1%),
    radial-gradient(circle at 75% 46%, rgba(255,114,0,.08), transparent 29%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 88px 0 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, #000, transparent 58%);
}
.hero-copy { position: relative; z-index: 2; max-width: 810px; padding-left: 4vw; }
.eyebrow { color: #aaa7a1; text-transform: uppercase; letter-spacing: .18em; font-size: 10px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 22px; height: 1px; background: var(--orange); display: inline-block; }
h1, h2, blockquote { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; }
h1 { font-size: clamp(66px, 7.3vw, 126px); line-height: .86; letter-spacing: -.06em; margin: 38px 0 32px; }
h1 em, h2 em, blockquote em { color: var(--orange); font-weight: 400; }
.hero-intro { max-width: 590px; color: #b8b6b1; line-height: 1.72; font-size: 17px; margin: 0; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 42px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; min-width: 260px; padding: 18px 20px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.button-primary { background: var(--orange); color: #090909; transition: transform .2s, background .2s; }
.button-primary:hover { transform: translateY(-2px); background: #ff8626; }
.text-link { font-size: 11px; text-transform: uppercase; letter-spacing: .09em; border-bottom: 1px solid #696866; padding-bottom: 6px; }
.text-link span { color: var(--orange); margin-left: 7px; }

.hero-visual { height: 76%; position: relative; display: grid; place-items: center; z-index: 1; }
.hero-visual img { width: min(720px, 48vw); height: min(720px, 76vh); object-fit: contain; position: relative; z-index: 2; filter: drop-shadow(0 30px 70px rgba(0,0,0,.65)); animation: rise 1.2s cubic-bezier(.2,.8,.2,1) both; }
.visual-orbit { position: absolute; border: 1px solid rgba(255,114,0,.23); border-radius: 50%; }
.orbit-one { width: 76%; aspect-ratio: 1; }
.orbit-two { width: 55%; aspect-ratio: 1; border-color: rgba(255,255,255,.1); }
.visual-orbit::before { content: ""; position: absolute; width: 7px; height: 7px; background: var(--orange); border-radius: 50%; left: 8%; top: 24%; box-shadow: 0 0 22px var(--orange); }
.visual-caption { position: absolute; right: 0; bottom: 1%; font-size: 9px; letter-spacing: .2em; color: #6e6c68; writing-mode: vertical-rl; }
.visual-caption span { color: var(--orange); }
.hero-index { position: absolute; bottom: 36px; left: 4vw; right: 4vw; display: flex; gap: 12px; align-items: center; font: 9px/1 Arial; letter-spacing: .18em; color: #64625f; }
.hero-index i { width: 56px; height: 1px; background: #383735; }
@keyframes rise { from { opacity: 0; transform: translateY(26px) scale(.98); } to { opacity: 1; transform: none; } }

.proof-strip { min-height: 118px; background: var(--paper); color: #101010; display: flex; align-items: center; justify-content: space-between; padding: 24px 8vw; }
.proof-strip p { text-transform: uppercase; font-size: 9px; letter-spacing: .15em; color: #77736d; }
.proof-strip div { display: flex; align-items: center; gap: 26px; font-family: Georgia, serif; font-size: clamp(18px, 2vw, 29px); letter-spacing: -.02em; }
.proof-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }

.section { padding: 130px 8vw; }
.services { background: #0d0d0d; }
.section-heading { display: grid; grid-template-columns: 1.7fr 1fr; gap: 80px; align-items: end; margin-bottom: 74px; }
h2 { margin: 24px 0 0; font-size: clamp(48px, 6vw, 88px); line-height: .95; letter-spacing: -.045em; }
.section-heading > p { color: #92908c; font-size: 14px; line-height: 1.75; max-width: 420px; padding-bottom: 8px; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { padding: 32px 34px 38px; min-height: 430px; border-right: 1px solid var(--line); display: flex; flex-direction: column; transition: background .25s, transform .25s; }
.service-card:first-child { border-left: 1px solid var(--line); }
.service-card:hover { background: #151515; transform: translateY(-5px); }
.card-top { display: flex; justify-content: space-between; color: #5e5c59; font-size: 10px; letter-spacing: .12em; }
.card-top span:last-child { color: var(--orange); font-size: 17px; }
.service-card h3 { font: 400 30px/1.05 Georgia, serif; max-width: 240px; margin: 94px 0 24px; }
.service-card > p { color: #96938f; font-size: 13px; line-height: 1.7; max-width: 340px; }
.service-card ul { list-style: none; margin: auto 0 0; padding: 24px 0 0; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; gap: 8px; }
.service-card li { border: 1px solid #383735; padding: 7px 10px; border-radius: 999px; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; color: #aaa7a1; }

.statement { padding: 150px 10vw; background: var(--orange); color: #0b0b0b; text-align: center; }
.statement-kicker { font-size: 9px; text-transform: uppercase; letter-spacing: .2em; font-weight: 700; }
blockquote { max-width: 1170px; margin: 38px auto 64px; font-size: clamp(44px, 5.7vw, 86px); line-height: 1.03; letter-spacing: -.045em; }
blockquote em { color: #fff1e5; }
.statement-meta { border-top: 1px solid rgba(0,0,0,.25); padding-top: 22px; max-width: 780px; margin: auto; display: flex; justify-content: center; gap: 70px; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; }

.method { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; background: #0a0a0a; }
.method-intro > p:last-child { color: #918f8b; max-width: 560px; line-height: 1.8; font-size: 14px; margin-top: 38px; }
.steps { border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 66px 1fr; gap: 12px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.step > span { color: var(--orange); font-size: 10px; letter-spacing: .15em; padding-top: 6px; }
.step h3 { margin: 0 0 12px; font: 400 29px/1 Georgia, serif; }
.step p { color: #918f8b; line-height: 1.7; max-width: 480px; font-size: 13px; margin: 0; }

.leader { background: var(--paper); color: #111; display: grid; grid-template-columns: .9fr 1.1fr; min-height: 760px; padding-top: 0; padding-bottom: 0; }
.leader-mark { position: relative; min-height: 760px; display: grid; place-items: center; overflow: hidden; background: #050505; }
.leader-mark::after { content: "V.D"; position: absolute; left: 28px; bottom: 28px; color: rgba(255,255,255,.22); font: 11px/1 Arial; letter-spacing: .22em; }
.leader-mark img { width: 115%; height: 115%; object-fit: contain; filter: saturate(.9); }
.leader-copy { padding: 108px 0 100px 8vw; max-width: 820px; }
.leader-copy .eyebrow { color: #78746e; }
.leader-role { text-transform: uppercase; letter-spacing: .13em; font-size: 9px; font-weight: 700; margin: 24px 0 34px; }
.leader-bio { font: 400 21px/1.65 Georgia, serif; max-width: 660px; color: #4a4844; }
.leader-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; border-top: 1px solid #c9c5bf; margin: 52px 0 40px; padding-top: 26px; }
.leader-stats div { display: flex; flex-direction: column; gap: 7px; }
.leader-stats strong { font: 400 37px/1 Georgia, serif; color: var(--orange); }
.leader-stats span { font-size: 9px; color: #77736d; text-transform: uppercase; letter-spacing: .09em; }
.dark-link { color: #111; border-color: #aaa59d; display: inline-block; font-weight: 700; }

.focus { display: grid; grid-template-columns: .7fr 1.3fr; gap: 9vw; background: #101010; }
.focus-label { display: flex; flex-direction: column; justify-content: space-between; min-height: 510px; border-left: 1px solid var(--orange); padding-left: 24px; }
.focus-label p { font: 400 clamp(34px, 4vw, 56px)/1.02 Georgia, serif; margin: 0; max-width: 280px; }
.focus-label span { color: #66635f; text-transform: uppercase; font-size: 9px; letter-spacing: .14em; }
.focus-list { border-top: 1px solid var(--line); }
.focus-list article { display: grid; grid-template-columns: 55px 1.1fr .9fr; gap: 24px; align-items: center; padding: 31px 0; border-bottom: 1px solid var(--line); }
.focus-list article > span { color: var(--orange); font-size: 9px; letter-spacing: .1em; }
.focus-list h3 { margin: 0; font: 400 23px/1.1 Georgia, serif; }
.focus-list p { margin: 0; color: #83817d; font-size: 12px; line-height: 1.6; }

.contact-preview { background: var(--paper); color: #111; }
.contact-preview .eyebrow { color: #79756f; }
.contact-preview > div { display: flex; justify-content: space-between; align-items: center; }
.contact-preview h2 { max-width: 900px; }
.contact-actions { display: flex; align-items: center; gap: 18px; margin-left: 40px; }
.round-link { width: 150px; height: 150px; border-radius: 50%; background: #111; color: white; display: flex; justify-content: center; align-items: center; gap: 11px; text-transform: uppercase; font-size: 10px; letter-spacing: .1em; font-weight: 700; transition: transform .25s, background .25s; }
.round-link span { color: var(--orange); }
.round-link:hover { transform: rotate(-5deg) scale(1.04); background: #222; }
.round-link-email { background: var(--orange); color: #111; text-align: center; }
.round-link-email span { color: #111; }
.round-link-email:hover { background: #ff8626; }
.contact-email { display: inline-block; margin-top: 52px; padding-bottom: 7px; border-bottom: 1px solid #b6b1aa; color: #4f4c47; font: 400 clamp(18px, 2vw, 28px)/1.2 Georgia, serif; transition: color .2s, border-color .2s; }
.contact-email:hover { color: var(--orange); border-color: var(--orange); }

footer { min-height: 132px; padding: 34px 4vw; border-top: 1px solid #d2cec7; background: var(--paper); color: #111; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
footer > p { color: #85817b; text-transform: uppercase; font-size: 8px; letter-spacing: .17em; }
footer > div { justify-self: end; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; color: #7a7771; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; height: 74px; }
  nav { display: none; }
  .hero { min-height: 900px; height: auto; max-height: none; grid-template-columns: 1fr; padding-top: 130px; }
  .hero-copy { padding-left: 0; }
  .hero-visual { height: 430px; margin-top: 25px; }
  .hero-visual img { width: 100%; height: 520px; }
  .hero-index { display: none; }
  .proof-strip { align-items: flex-start; gap: 24px; flex-direction: column; }
  .proof-strip div { gap: 12px; flex-wrap: wrap; }
  .section { padding: 90px 6vw; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .statement { padding: 100px 6vw; }
  .statement-meta { gap: 24px; flex-wrap: wrap; }
  .method { grid-template-columns: 1fr; gap: 70px; }
  .leader { grid-template-columns: 1fr; padding-left: 0; padding-right: 0; }
  .leader-mark { min-height: 580px; }
  .leader-copy { padding: 82px 6vw; }
  .focus { grid-template-columns: 1fr; gap: 60px; }
  .focus-label { min-height: 180px; }
  .contact-preview > div { align-items: flex-start; gap: 48px; }
  .contact-actions { margin-left: 0; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > p { display: none; }
}

@media (max-width: 560px) {
  .wordmark { font-size: 11px; }
  .header-actions { gap: 0; }
  .nav-cta { display: none; }
  .hero { padding-left: 6vw; padding-right: 6vw; min-height: 820px; }
  h1 { font-size: clamp(50px, 16vw, 72px); }
  .hero-intro { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .button { min-width: 100%; }
  .hero-visual { height: 340px; margin-top: 10px; }
  .hero-visual img { height: 420px; }
  .proof-strip { padding: 28px 6vw; }
  .proof-strip div { font-size: 16px; }
  .service-card { min-height: 370px; padding: 28px; }
  .service-card h3 { margin-top: 68px; }
  .contact-preview > div { align-items: flex-start; flex-direction: column; gap: 52px; }
  .contact-actions { width: 100%; gap: 12px; }
  .round-link { width: 130px; height: 130px; }
  .contact-email { margin-top: 40px; font-size: 17px; }
  .leader-mark { min-height: 430px; }
  .leader-stats { grid-template-columns: 1fr; gap: 20px; }
  .leader-stats div { border-bottom: 1px solid #d3cfc8; padding-bottom: 14px; }
  .focus-list article { grid-template-columns: 35px 1fr; }
  .focus-list article p { grid-column: 2; }
  footer { grid-template-columns: 1fr; }
  footer > div { justify-self: start; align-items: flex-start; }
}

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