@font-face {
  font-family:Montserrat;
  src:url('../fonts/montserrat-variable.woff') format('woff');
  font-weight:100 900;
  font-style:normal;
  font-display:swap
}

:root {
  color-scheme:dark;
  --ink:#101211;
  --surface:#141716;
  --text:#f1f0eb;
  --muted:#d0d1cd;
  --gold:#dfc399;
  --gold-bright:#efd7b3;
  --line:rgba(229,216,196,.22);
  --header-h:86px;
  --gutter:clamp(28px,5.8vw,120px);
  --max:1660px;
  --font:Montserrat,Arial,Helvetica,sans-serif;
  --heading-weight:650;
  --body-size:clamp(16px,1.12vw,20px);
  --depth-x:0px;
  --depth-y:0px;
  --ease:cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:var(--header-h);
  background:var(--ink);
  -webkit-text-size-adjust:100%
}

body {
  margin:0;
  color:var(--text);
  font:400 var(--body-size)/1.55 var(--font);
  overflow-x:clip;
  background:var(--ink);
  font-synthesis:none;
  -webkit-font-smoothing:antialiased
}

body::before {
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  background:url('../images/leather-texture.webp') repeat;
  background-size:640px;
  opacity:.08;
  pointer-events:none
}

a {
  color:inherit;
  text-decoration:none
}

button,input,textarea,select {
  font:inherit
}

button {
  color:inherit;
  cursor:pointer
}

button,a,input,select,textarea {
  -webkit-tap-highlight-color:transparent
}

button {
  border:0
}

button:disabled {
  cursor:wait;
  opacity:.65
}

button,select {
  touch-action:manipulation
}

h1,h2,h3,p,ul,ol {
  margin:0
}

ul,ol {
  padding:0;
  list-style:none
}

img {
  max-width:100%;
  display:block
}

img,picture {
  user-select:none
}

picture {
  display:block
}

svg {
  display:block
}

a,button,input,textarea,select {
  outline-offset:6px
}

a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible {
  outline:2px solid var(--gold-bright)
}

::selection {
  background:var(--gold);
  color:var(--ink)
}

[hidden] {
  display:none!important
}

.svg-defs {
  position:absolute;
  width:0;
  height:0;
  overflow:hidden
}

.icon {
  width:24px;
  height:24px;
  flex:0 0 auto;
  fill:none;
  stroke:currentColor;
  stroke-width:1.5;
  stroke-linecap:round;
  stroke-linejoin:round
}

.accent {
  color:var(--gold)
}

.skip-link {
  position:fixed;
  top:10px;
  left:12px;
  z-index:100;
  padding:12px 18px;
  background:var(--gold);
  color:var(--ink);
  transform:translateY(-160%)
}

.skip-link:focus {
  transform:none
}

.site-header {
  position:fixed;
  z-index:40;
  inset:0 0 auto;
  height:var(--header-h);
  background:rgba(12,14,13,.84);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px)
}

.header-inner {
  max-width:calc(var(--max) + 2*var(--gutter));
  padding-inline:var(--gutter);
  height:100%;
  margin:auto;
  display:flex;
  align-items:center;
  gap:clamp(26px,3vw,64px)
}

.brand {
  --mark:46px;
  --word:158px;
  display:inline-flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
  isolation:isolate
}

.brand-mark,.brand-wordmark {
  position:relative;
  display:block;
  overflow:hidden
}

.brand-mark {
  width:var(--mark);
  aspect-ratio:156/159
}

.brand-wordmark {
  width:var(--word);
  aspect-ratio:291/83
}

.brand img {
  position:absolute;
  max-width:none;
  height:auto;
  filter:brightness(0) invert(1);
  pointer-events:none
}

.brand-mark img {
  width:191.02565%;
  left:-45.51282%;
  top:-3.77358%
}

.brand-wordmark img {
  width:102.4055%;
  left:-1.03093%;
  top:-216.86747%
}

.desktop-nav {
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:clamp(24px,2.4vw,45px);
  font-size:14px;
  font-weight:500;
  white-space:nowrap
}

.desktop-nav a {
  padding-block:14px;
  position:relative;
  transition:color .2s
}

.desktop-nav a::after {
  content:"";
  position:absolute;
  bottom:5px;
  height:1px;
  inset-inline:0;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s var(--ease)
}

.desktop-nav a:hover,.desktop-nav a[aria-current] {
  color:var(--gold)
}

.desktop-nav a[aria-current]::after {
  transform:scaleX(1)
}

.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  min-height:54px;
  padding:15px 24px;
  font-size:14px;
  font-weight:600;
  line-height:1.35;
  border:1px solid transparent;
  border-radius:1px;
  transition:background .22s,color .22s,border-color .22s,transform .22s;
  white-space:normal
}

.button .icon {
  width:22px;
  height:22px;
  transition:transform .25s var(--ease)
}

.button:hover .icon {
  transform:translateX(4px)
}

.button-primary {
  background:var(--gold);
  color:#111410;
  border-color:var(--gold);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.03)
}

.button-primary:hover {
  background:var(--gold-bright);
  border-color:var(--gold-bright)
}

.button-outline {
  background:transparent;
  border-color:var(--gold);
  color:var(--gold)
}

.button-outline:hover {
  background:rgba(223,195,153,.09)
}

.header-cta {
  min-height:44px;
  padding:10px 20px;
  font-weight:500
}

.menu-toggle {
  display:none;
  width:48px;
  height:48px;
  padding:12px;
  background:transparent;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:7px
}

.menu-toggle span {
  height:1px;
  width:25px;
  background:var(--text)
}

.reading-progress {
  position:absolute;
  bottom:-1px;
  left:0;
  right:0;
  height:1px;
  opacity:0
}

.reading-progress span {
  display:block;
  transform-origin:left;
  transform:scaleX(0);
  width:100%;
  height:100%;
  background:var(--gold)
}

.section-nav {
  position:fixed;
  right:clamp(18px,2.05vw,48px);
  top:calc(var(--header-h) + 35px);
  z-index:35;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0;
  width:48px
}

.section-counter {
  font-size:12px;
  line-height:1;
  letter-spacing:.01em;
  color:var(--muted);
  white-space:nowrap;
  margin-bottom:18px;
  font-variant-numeric:tabular-nums
}

.section-counter span:first-child {
  color:var(--gold);
  font-weight:600
}

.section-nav>a {
  height:30px;
  width:44px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center
}

.section-nav>a>span:first-child {
  width:8px;
  height:8px;
  border:1px solid #90918a;
  border-radius:50%;
  background:transparent;
  transition:background .25s,transform .25s,border-color .25s
}

.section-nav>a.is-active>span:first-child {
  background:var(--gold);
  border-color:var(--gold);
  transform:scale(1.12)
}

.section-nav>a:hover>span:first-child {
  border-color:var(--gold)
}

.section-tooltip {
  pointer-events:none;
  position:absolute;
  white-space:nowrap;
  right:44px;
  font-size:12px;
  background:#181b19;
  color:var(--gold);
  border:1px solid var(--line);
  padding:7px 12px;
  opacity:0;
  transform:translateX(5px);
  transition:.2s
}

.section-nav>a:hover .section-tooltip,.section-nav>a:focus-visible .section-tooltip {
  opacity:1;
  transform:none
}

.panel {
  position:relative;
  min-height:100svh;
  isolation:isolate;
  scroll-margin-top:0;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  overflow:clip;
  background-color:var(--ink)
}

.panel-inner {
  width:100%;
  max-width:calc(var(--max) + 2*var(--gutter));
  margin-inline:auto;
  padding-inline:var(--gutter);
  position:relative;
  z-index:2;
  padding-block:calc(var(--header-h) + 56px) 64px
}

.eyebrow {
  font-size:12px;
  font-weight:600;
  line-height:1.55;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:24px
}

h1,h2 {
  font-weight:var(--heading-weight);
  text-transform:uppercase;
  letter-spacing:-.042em;
  line-height:1.055;
  text-wrap:balance
}

h2 {
  font-size:clamp(40px,4.8vw,86px)
}

h3 {
  font-weight:600;
  letter-spacing:-.025em;
  line-height:1.32
}

.hero {
  background:#101110;
  align-items:stretch
}

.hero-visual {
  position:absolute;
  inset:-1%;
  z-index:0;
  transform:translate3d(var(--depth-x),var(--depth-y),0) scale(1.02);
  transition:transform .7s var(--ease)
}

.hero-visual picture,.hero-visual img {
  width:100%;
  height:100%
}

.hero-visual img {
  object-fit:cover;
  object-position:63% 50%
}

.hero-shade {
  position:absolute;
  z-index:1;
  inset:0;
  background:linear-gradient(90deg,rgba(12,14,13,.97) 0%,rgba(12,14,13,.94) 22%,rgba(12,14,13,.79) 37%,rgba(12,14,13,.28) 57%,transparent 76%),linear-gradient(0deg,rgba(12,14,13,.52),transparent 28%);
  pointer-events:none
}

.hero-inner {
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding-block:calc(var(--header-h) + 42px) 40px;
  min-height:100svh
}

.hero-copy {
  width:61%;
  max-width:870px;
  padding-bottom:80px
}

.hero-copy .eyebrow {
  max-width:100%;
  margin-bottom:22px
}

h1 {
  font-size:clamp(62px,6.05vw,110px);
  line-height:.99;
  font-weight:700;
  letter-spacing:-.048em
}

h1>span {
  display:block;
  white-space:nowrap
}

.hero-statement {
  font-size:clamp(24px,2.52vw,44px);
  font-weight:550;
  line-height:1.2;
  letter-spacing:-.04em;
  margin-top:22px
}

.hero-description {
  max-width:660px;
  margin-top:28px;
  font-size:var(--body-size);
  line-height:1.6;
  color:var(--muted)
}

.hero-actions {
  display:flex;
  align-items:center;
  gap:32px;
  margin-top:36px;
  flex-wrap:wrap
}

.hero-actions .button {
  min-height:58px
}

.text-link {
  display:inline-flex;
  align-items:center;
  font-size:14px;
  font-weight:500;
  line-height:1.5;
  border-bottom:1px solid var(--gold);
  color:var(--gold);
  padding:9px 0;
  transition:color .2s
}

.text-link:hover {
  color:var(--gold-bright)
}

.hero-bottom {
  position:absolute;
  bottom:36px;
  left:var(--gutter);
  right:var(--gutter);
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px
}

.principles {
  display:flex;
  align-items:center;
  gap:clamp(18px,2vw,40px);
  font-size:12px;
  font-weight:500;
  color:var(--muted)
}

.principles li+li::before {
  content:"";
  display:inline-block;
  width:4px;
  height:4px;
  margin-right:clamp(18px,2vw,40px);
  background:var(--gold);
  border-radius:50%;
  vertical-align:middle
}

.scroll-cue {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  color:var(--gold);
  font-size:12px;
  margin-right:10px
}

.scroll-cue .icon {
  height:32px;
  width:26px;
  transition:transform .3s
}

.scroll-cue:hover .icon {
  transform:translateY(4px)
}

.expertise {
  background:radial-gradient(ellipse at 80% 95%,rgba(54,49,39,.075),transparent 70%),var(--ink)
}

.expertise-inner {
  padding-right:calc(var(--gutter) + 30px)
}

.section-heading {
  margin-bottom:clamp(46px,5vw,84px)
}

.section-heading h2 {
  max-width:1500px
}

.services {
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:clamp(48px,5vw,92px)
}

.service {
  display:grid;
  grid-template-columns:40px 1fr 26px;
  gap:22px;
  align-items:start;
  position:relative;
  padding:32px 0 38px;
  transition:color .2s
}

.service:nth-child(n+3) {
  border-top:1px solid var(--line)
}

.service:nth-child(odd)::after {
  content:"";
  position:absolute;
  right:calc(clamp(48px,5vw,92px) / -2);
  top:25px;
  bottom:25px;
  width:1px;
  background:var(--line)
}

.service-number,.step-number {
  color:var(--gold);
  font-size:clamp(22px,1.75vw,30px);
  font-weight:400;
  line-height:1.3;
  font-variant-numeric:tabular-nums;
  letter-spacing:-.04em
}

.service h3 {
  font-size:clamp(21px,1.65vw,28px);
  font-weight:550;
  margin-bottom:12px
}

.service p {
  font-size:clamp(16px,1.08vw,19px);
  line-height:1.6;
  max-width:510px;
  color:var(--muted)
}

.service-arrow {
  color:var(--gold);
  margin-top:10px;
  transition:transform .3s
}

.service:hover h3 {
  color:var(--gold-bright)
}

.service:hover .service-arrow {
  transform:translateX(5px)
}

.security .section-heading h2 {
  font-size:clamp(38px,4.6vw,81px)
}

.about-inner {
  padding-bottom:52px
}

.about-top {
  display:grid;
  grid-template-columns:43% 1fr;
  gap:clamp(36px,4vw,78px);
  align-items:center
}

.about-image {
  align-self:stretch;
  position:relative;
  min-height:380px;
  margin-left:calc(var(--gutter)*-1);
  overflow:hidden
}

.about-image picture,.about-image img {
  width:100%;
  height:100%
}

.about-image img {
  object-fit:cover;
  object-position:50% 55%;
  transform:translate3d(calc(var(--depth-x)*.5),calc(var(--depth-y)*.5),0) scale(1.03);
  transition:transform .7s var(--ease)
}

.about-image::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,transparent 84%,var(--ink));
  pointer-events:none
}

.about-copy {
  padding-block:12px;
  padding-right:28px
}

.about-copy h2 {
  font-size:clamp(35px,3.6vw,66px);
  margin-bottom:26px
}

.about-copy>p:not(.eyebrow) {
  font-size:clamp(16px,1.12vw,20px);
  line-height:1.65;
  color:var(--muted)
}

.about-copy .audience {
  border-top:1px solid var(--line);
  padding-top:22px;
  margin-top:24px;
  font-size:14px!important
}

.process {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  margin-top:42px;
  padding-top:32px;
  border-top:1px solid var(--line)
}

.process li {
  padding-inline:clamp(20px,2.1vw,40px);
  border-left:1px solid var(--line)
}

.process li:first-child {
  border-left:0;
  padding-left:0
}

.process li:last-child {
  padding-right:0
}

.step-number {
  display:block;
  margin-bottom:3px
}

.process h3 {
  text-transform:uppercase;
  font-size:clamp(16px,1.4vw,23px);
  font-weight:550;
  letter-spacing:-.02em;
  margin-bottom:12px
}

.process p {
  font-size:clamp(14px,1.02vw,18px);
  line-height:1.6;
  color:var(--muted);
  max-width:300px
}

.contact {
  flex-direction:column;
  justify-content:center;
  align-items:stretch;
  background:linear-gradient(115deg,rgba(24,28,25,.4),transparent 65%),var(--ink)
}

.contact-inner {
  display:grid;
  grid-template-columns:minmax(0,.83fr) minmax(0,1.17fr);
  gap:clamp(42px,5vw,96px);
  align-items:start;
  padding-top:calc(var(--header-h) + 50px);
  padding-bottom:170px
}

.contact-copy h2 {
  font-size:clamp(34px,3.85vw,67px);
  margin-bottom:32px
}

.contact-copy>p:not(.eyebrow) {
  font-size:clamp(16px,1.1vw,19px);
  max-width:500px;
  color:var(--muted)
}

.confidential {
  display:flex;
  align-items:center;
  gap:20px;
  margin-top:52px;
  font-size:13px!important
}

.lock-icon {
  width:32px;
  height:36px;
  fill:none;
  stroke:var(--gold);
  stroke-width:1.3;
  stroke-linecap:round;
  stroke-linejoin:round;
  flex:0 0 auto
}

.contact-form {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:17px 22px;
  font-size:14px;
  position:relative
}

.field {
  min-width:0
}

.field.full,.full {
  grid-column:1/-1
}

.field label {
  display:block;
  font-size:13px;
  line-height:1.45;
  font-weight:400;
  margin-bottom:8px;
  color:var(--muted)
}

.field label>span {
  font-size:12px
}

input:not([type=checkbox]),textarea,select {
  display:block;
  width:100%;
  min-width:0;
  border:1px solid rgba(217,220,211,.44);
  border-radius:2px;
  background:rgba(18,21,19,.52);
  color:var(--text);
  min-height:47px;
  padding:10px 13px;
  font-size:15px;
  line-height:1.5;
  transition:border-color .2s,background .2s;
  box-shadow:inset 0 1px 7px rgba(0,0,0,.15)
}

input:not([type=checkbox]):hover,textarea:hover,select:hover {
  border-color:rgba(223,195,153,.72)
}

input:not([type=checkbox]):focus,textarea:focus,select:focus {
  border-color:var(--gold);
  background:#191d19
}

input[aria-invalid=true],textarea[aria-invalid=true],select[aria-invalid=true] {
  border-color:#e7a58f
}

textarea {
  resize:vertical;
  min-height:126px;
  max-height:440px
}

select {
  appearance:none;
  padding-right:39px;
  cursor:pointer
}

select:has(option[value=""]:checked) {
  color:var(--muted)
}

select option {
  background:#171b18;
  color:var(--text)
}

.select-wrap {
  position:relative
}

.select-wrap .icon {
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  color:var(--gold);
  pointer-events:none;
  width:18px;
  height:18px
}

.field-error {
  display:block;
  font-size:12px;
  line-height:1.4;
  color:#edb3a0
}

.field-error:not(:empty) {
  margin-top:6px
}

.form-trap {
  position:absolute;
  left:-10000px;
  opacity:0;
  width:1px;
  height:1px;
  overflow:hidden
}

.form-bottom {
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:22px;
  margin-top:2px
}

.consent-field {
  align-self:stretch
}

.checkbox-label {
  display:flex;
  gap:12px;
  align-items:flex-start;
  font-size:12px;
  line-height:1.65;
  color:var(--muted);
  cursor:pointer
}

.checkbox-label input {
  flex:0 0 auto;
  width:20px;
  height:20px;
  margin:0;
  accent-color:var(--gold);
  cursor:pointer;
  appearance:none;
  border:1px solid #939b92;
  background:transparent;
  border-radius:1px;
  position:relative
}

.checkbox-label input:checked {
  background:var(--gold);
  border-color:var(--gold)
}

.checkbox-label input:checked::after {
  content:"";
  position:absolute;
  width:6px;
  height:11px;
  left:6px;
  top:2px;
  border:solid #121610;
  border-width:0 2px 2px 0;
  transform:rotate(45deg)
}

.checkbox-label input[aria-invalid=true] {
  border-color:#e7a58f
}

.inline-button {
  background:none;
  padding:0;
  color:inherit;
  font:inherit;
  text-align:inherit;
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:3px
}

.inline-button:hover {
  color:var(--gold-bright)
}

.submit-button {
  min-width:240px
}

.form-status {
  font-size:14px;
  line-height:1.6;
  padding:17px 20px;
  border:1px solid var(--line);
  color:var(--muted);
  background:#1a1e1a
}

.form-status[data-kind=error] {
  border-color:#a26e5e;
  color:#efc3b5
}

.form-status[data-kind=success] {
  border-color:#8ca688;
  color:#c9ddbd
}

.site-footer {
  position:absolute;
  bottom:0;
  inset-inline:0;
  border-top:1px solid var(--line);
  background:linear-gradient(rgba(13,15,13,.86),rgba(13,15,13,.86)),url('../images/leather-texture.webp') center/640px
}

.footer-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  max-width:calc(var(--max) + 2*var(--gutter));
  margin:auto;
  padding:27px var(--gutter);
  min-height:100px
}

.brand-small {
  --mark:36px;
  --word:124px;
  gap:10px
}

.footer-meta {
  display:flex;
  gap:26px;
  font-size:12px;
  color:var(--muted);
  align-items:center
}

.footer-meta>span {
  padding-left:26px;
  border-left:1px solid var(--line)
}

.footer-meta button {
  text-decoration:none
}

dialog {
  border:1px solid var(--line);
  color:var(--text);
  background:#151915;
  max-width:calc(100vw - 32px);
  box-shadow:0 30px 100px rgba(0,0,0,.5)
}

dialog::backdrop {
  background:rgba(4,7,5,.75);
  backdrop-filter:blur(9px)
}

.information-dialog {
  width:580px;
  padding:44px;
  position:fixed
}

.information-dialog h2 {
  font-size:30px;
  text-transform:none;
  letter-spacing:-.03em;
  line-height:1.2;
  margin-bottom:24px
}

.information-dialog>p:not(.eyebrow) {
  font-size:16px;
  line-height:1.7;
  color:var(--muted);
  margin-bottom:26px
}

.information-dialog .eyebrow {
  margin-bottom:12px
}

.dialog-close {
  position:absolute!important;
  right:12px;
  top:12px
}

.icon-button {
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  background:transparent;
  color:var(--gold)
}

.mobile-menu {
  inset:0 0 0 auto;
  margin:0;
  width:min(470px,100vw);
  max-width:100vw;
  height:100dvh;
  max-height:none;
  padding:28px;
  overflow:auto;
  border:0;
  border-left:1px solid var(--line)
}

.mobile-menu-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:30px;
  color:var(--gold);
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.16em
}

.mobile-menu nav {
  display:flex;
  flex-direction:column
}

.mobile-menu nav a {
  padding:22px 0;
  border-top:1px solid var(--line);
  font-size:21px;
  font-weight:500;
  display:flex;
  align-items:baseline;
  gap:18px;
  line-height:1.4
}

.mobile-menu nav a span {
  font-size:13px;
  color:var(--gold);
  font-weight:400
}

.mobile-menu>p {
  font-size:12px;
  color:var(--muted);
  margin-top:50px
}

.dialog-open {
  overflow:hidden
}

@media(min-width:1100px) and (min-height:760px) {
  html {
    scroll-snap-type:y mandatory;
    scroll-padding-top:0
  }
  .panel {
    scroll-snap-align:start;
    scroll-snap-stop:always
  }
}

@media(min-width:2100px) {
  :root {
    --header-h:98px
  }
  .hero-copy {
    max-width:970px
  }
  h1 {
    font-size:124px
  }
  .hero-description {
    max-width:690px
  }
  .expertise-inner {
    max-width:1830px
  }
  .panel-inner {
    padding-block:calc(var(--header-h) + 76px) 85px
  }
  .hero-inner {
    padding-bottom:60px
  }
  .hero-bottom {
    bottom:54px
  }
  .hero-copy {
    padding-bottom:70px
  }
  .contact-inner {
    padding-bottom:180px
  }
}

@media(max-height:850px) and (min-width:1100px) {
  :root {
    --header-h:72px
  }
  .brand {
    --mark:39px;
    --word:135px
  }
  .panel-inner {
    padding-block:calc(var(--header-h) + 30px) 35px
  }
  .hero-inner {
    padding-block:calc(var(--header-h) + 30px) 60px
  }
  .hero-copy {
    padding-bottom:36px
  }
  h1 {
    font-size:clamp(58px,5.8vw,91px)
  }
  .hero-statement {
    font-size:clamp(24px,2.4vw,34px);
    margin-top:14px
  }
  .hero-description {
    font-size:16px;
    max-width:590px;
    margin-top:22px;
    line-height:1.55
  }
  .hero-copy .eyebrow {
    margin-bottom:16px
  }
  .hero-actions {
    margin-top:26px
  }
  .hero-actions .button {
    min-height:50px
  }
  .hero-bottom {
    bottom:25px
  }
  .eyebrow {
    margin-bottom:18px
  }
  h2 {
    font-size:clamp(38px,4.3vw,65px)
  }
  .section-heading {
    margin-bottom:32px
  }
  .security .section-heading h2 {
    font-size:clamp(37px,4.1vw,61px)
  }
  .service {
    padding:25px 0 27px;
    gap:18px
  }
  .service h3 {
    font-size:22px
  }
  .service p {
    font-size:16px;
    line-height:1.55
  }
  .about-top {
    gap:40px
  }
  .about-image {
    min-height:330px
  }
  .about-copy h2 {
    font-size:45px;
    margin-bottom:20px
  }
  .about-copy>p:not(.eyebrow) {
    font-size:16px
  }
  .about-copy .audience {
    padding-top:15px;
    margin-top:18px
  }
  .process {
    margin-top:26px;
    padding-top:22px
  }
  .process h3 {
    font-size:17px;
    margin-bottom:8px
  }
  .process p {
    font-size:14px
  }
  .contact-inner {
    padding-top:calc(var(--header-h) + 32px);
    padding-bottom:140px;
    gap:60px
  }
  .contact-copy h2 {
    font-size:clamp(35px,3.5vw,51px);
    margin-bottom:24px
  }
  .contact-copy>p:not(.eyebrow) {
    font-size:16px
  }
  .confidential {
    margin-top:38px
  }
  .contact-form {
    gap:13px 20px
  }
  .field label {
    margin-bottom:5px;
    font-size:12px
  }
  input:not([type=checkbox]),textarea,select {
    min-height:40px;
    padding:7px 11px;
    font-size:14px
  }
  textarea {
    min-height:105px
  }
  .form-bottom {
    gap:16px
  }
  .submit-button {
    min-height:46px
  }
  .footer-inner {
    padding-block:23px;
    min-height:90px
  }
}

@media(max-width:1199px) {
  :root {
    --gutter:48px;
    --header-h:76px
  }
  .header-inner {
    gap:30px
  }
  .brand {
    --mark:40px;
    --word:137px;
    gap:10px
  }
  .desktop-nav {
    gap:24px;
    font-size:13px
  }
  .header-cta {
    font-size:13px;
    padding-inline:15px;
    gap:16px
  }
  .section-nav {
    right:10px
  }
  .expertise-inner {
    padding-right:64px
  }
  .service {
    grid-template-columns:30px 1fr 20px;
    gap:15px
  }
  .service .icon {
    width:20px
  }
  .hero-copy {
    width:65%
  }
  .hero-description {
    max-width:550px
  }
  .hero-actions {
    gap:22px
  }
  .hero-actions .button {
    padding-inline:20px;
    font-size:13px
  }
  .hero-actions .text-link {
    font-size:13px
  }
  .about-copy {
    padding-right:16px
  }
  .contact-copy h2 {
    font-size:clamp(31px,3.6vw,45px)
  }
  .contact-inner {
    gap:40px
  }
  .contact-form {
    column-gap:16px
  }
  .contact-copy .confidential {
    font-size:12px!important
  }
}

@media(max-width:1023px) {
  :root {
    --gutter:36px;
    --header-h:76px
  }
  .desktop-nav {
    display:none
  }
  .header-cta {
    margin-left:auto
  }
  .menu-toggle {
    display:flex
  }
  .header-inner {
    gap:20px
  }
  .section-nav {
    display:none
  }
  .reading-progress {
    opacity:1
  }
  .panel {
    min-height:auto;
    scroll-margin-top:var(--header-h)
  }
  .panel-inner {
    padding-block:80px
  }
  .hero {
    min-height:100svh
  }
  .hero-inner {
    min-height:100svh;
    padding-top:calc(var(--header-h) + 68px);
    padding-bottom:130px
  }
  .hero-copy {
    padding-bottom:0;
    width:78%;
    max-width:680px
  }
  h1 {
    font-size:clamp(54px,7.75vw,82px)
  }
  .hero-statement {
    font-size:clamp(25px,3.4vw,36px)
  }
  .hero-description {
    max-width:560px;
    font-size:17px
  }
  .hero-actions {
    margin-top:30px
  }
  .hero-bottom {
    bottom:32px
  }
  .hero-visual img {
    object-position:63% center
  }
  .hero-shade {
    background:linear-gradient(90deg,rgba(12,14,13,.96) 0%,rgba(12,14,13,.88) 32%,rgba(12,14,13,.5) 60%,rgba(12,14,13,.1) 100%),linear-gradient(0deg,rgba(12,14,13,.72),transparent 30%)
  }
  .expertise-inner {
    padding-right:var(--gutter)
  }
  h2,.security .section-heading h2 {
    font-size:clamp(34px,5.6vw,52px)
  }
  .section-heading {
    margin-bottom:32px
  }
  .services {
    column-gap:42px
  }
  .service:nth-child(odd)::after {
    right:-21px
  }
  .service {
    padding:26px 0 30px
  }
  .service h3 {
    font-size:21px
  }
  .service p {
    font-size:16px
  }
  .about-top {
    grid-template-columns:40% 1fr;
    gap:30px
  }
  .about-image {
    min-height:350px
  }
  .about-copy {
    padding:0
  }
  .about-copy h2 {
    font-size:clamp(31px,4.2vw,44px)
  }
  .about-copy .eyebrow {
    font-size:11px
  }
  .about-copy>p:not(.eyebrow) {
    font-size:16px
  }
  .about-copy .audience {
    font-size:13px!important
  }
  .process {
    margin-top:36px;
    padding-top:26px
  }
  .process li {
    padding-inline:18px
  }
  .process h3 {
    font-size:15px;
    letter-spacing:-.015em
  }
  .process p {
    font-size:14px
  }
  .contact-inner {
    padding-bottom:64px;
    gap:34px;
    grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr)
  }
  .contact-copy h2 {
    font-size:clamp(29px,3.8vw,40px)
  }
  .contact-copy>p:not(.eyebrow) {
    font-size:16px
  }
  .confidential {
    margin-top:32px;
    gap:12px;
    align-items:flex-start
  }
  .contact-copy .confidential {
    font-size:12px!important
  }
  .contact-form {
    gap:16px
  }
  .field label {
    font-size:12px
  }
  .site-footer {
    position:relative
  }
  .footer-inner {
    padding-block:28px
  }
  .footer-meta {
    font-size:11px;
    gap:16px
  }
  .footer-meta>span {
    padding-left:16px
  }
  .brand-small {
    --mark:32px;
    --word:110px
  }
  .information-dialog {
    max-width:calc(100vw - 40px)
  }
}

@media(max-width:767px) {
  :root {
    --gutter:24px;
    --header-h:72px;
    --body-size:16px
  }
  .header-inner {
    gap:12px
  }
  .header-cta {
    display:none
  }
  .menu-toggle {
    margin-left:auto
  }
  .brand {
    --mark:35px;
    --word:119px;
    gap:9px
  }
  .hero {
    display:block;
    min-height:0
  }
  .hero-inner {
    padding-top:calc(var(--header-h) + 58px);
    padding-bottom:74px;
    min-height:100svh;
    justify-content:flex-start
  }
  .hero-copy {
    width:100%;
    max-width:none;
    position:relative
  }
  .hero-copy .eyebrow {
    font-size:10px;
    letter-spacing:.13em;
    max-width:310px;
    margin-bottom:22px
  }
  h1 {
    font-size:clamp(32px,9.6vw,64px);
    line-height:1.03;
    letter-spacing:-.043em
  }
  .hero-statement {
    font-size:clamp(22px,5.4vw,29px);
    margin-top:18px;
    line-height:1.25;
    font-weight:550
  }
  .hero-description {
    font-size:15px;
    line-height:1.7;
    margin-top:26px;
    max-width:530px
  }
  .hero-actions {
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
    margin-top:28px
  }
  .hero-actions .button {
    min-height:54px;
    padding:14px 20px;
    gap:18px;
    font-size:13px
  }
  .hero-actions .text-link {
    font-size:13px
  }
  .hero-visual {
    inset:0;
    transform:none;
    opacity:1
  }
  .hero-visual img {
    object-fit:cover;
    object-position:69% center
  }
  .hero-shade {
    background:linear-gradient(90deg,rgba(11,13,12,.94),rgba(11,13,12,.76) 57%,rgba(11,13,12,.32)),linear-gradient(0deg,#101211 0%,rgba(16,18,17,.15) 27%,rgba(16,18,17,.16) 78%)
  }
  .hero-bottom {
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    margin-top:56px
  }
  .principles {
    font-size:10px;
    gap:13px;
    line-height:1.65;
    flex-wrap:wrap;
    max-width:340px
  }
  .principles li+li::before {
    margin-right:13px;
    width:3px;
    height:3px
  }
  .scroll-cue {
    display:none
  }
  .panel-inner {
    padding-block:64px
  }
  .hero-inner {
    padding-top:calc(var(--header-h) + 54px);
    padding-bottom:45px
  }
  .eyebrow {
    font-size:10px;
    letter-spacing:.15em;
    margin-bottom:20px
  }
  h2,.security .section-heading h2 {
    font-size:clamp(29px,6.8vw,48px);
    line-height:1.13;
    letter-spacing:-.038em
  }
  .section-heading {
    margin-bottom:34px
  }
  .services {
    grid-template-columns:1fr;
    gap:0
  }
  .service {
    grid-template-columns:29px 1fr 22px;
    gap:15px;
    padding:25px 0 29px
  }
  .service:nth-child(n+2) {
    border-top:1px solid var(--line)
  }
  .service:nth-child(odd)::after {
    display:none
  }
  .service h3 {
    font-size:20px;
    line-height:1.35;
    margin-bottom:10px;
    font-weight:550;
    letter-spacing:-.027em
  }
  .service p {
    font-size:15px;
    line-height:1.65;
    max-width:460px
  }
  .service-number {
    font-size:23px
  }
  .service-arrow {
    margin-top:5px
  }
  .about-inner {
    padding-block:0 60px
  }
  .about-top {
    display:flex;
    flex-direction:column;
    gap:0;
    align-items:stretch
  }
  .about-image {
    min-height:0;
    height:auto;
    aspect-ratio:1.45;
    margin-inline:calc(var(--gutter)*-1);
    order:0
  }
  .about-image picture,.about-image img {
    height:100%;
    object-position:50% 65%;
    transform:none
  }
  .about-image::after {
    background:linear-gradient(0deg,var(--ink),transparent 28%)
  }
  .about-copy {
    padding-top:24px;
    order:1
  }
  .about-copy .eyebrow {
    font-size:10px
  }
  .about-copy h2 {
    font-size:clamp(29px,7.5vw,48px);
    line-height:1.12;
    margin-bottom:24px
  }
  .about-copy>p:not(.eyebrow) {
    font-size:15px;
    line-height:1.7
  }
  .about-copy .audience {
    font-size:13px!important;
    padding-top:20px;
    margin-top:22px
  }
  .process {
    grid-template-columns:1fr 1fr;
    gap:0;
    margin-top:30px;
    padding-top:4px
  }
  .process li {
    padding:25px 20px 26px 0;
    border:0
  }
  .process li:nth-child(even) {
    padding-left:20px;
    border-left:1px solid var(--line);
    padding-right:0
  }
  .process li:nth-child(n+3) {
    border-top:1px solid var(--line)
  }
  .process h3 {
    font-size:15px;
    font-weight:550;
    margin-top:6px;
    margin-bottom:10px
  }
  .process p {
    font-size:13px;
    line-height:1.7
  }
  .step-number {
    font-size:24px
  }
  .contact-inner {
    display:flex;
    flex-direction:column;
    gap:38px;
    padding-block:66px 48px
  }
  .contact-copy {
    width:100%
  }
  .contact-copy h2 {
    font-size:clamp(30px,8vw,48px);
    line-height:1.12;
    margin-bottom:24px
  }
  .contact-copy>p:not(.eyebrow) {
    font-size:15px;
    line-height:1.7;
    max-width:440px
  }
  .confidential {
    margin-top:26px;
    align-items:center
  }
  .contact-copy .confidential {
    font-size:12px!important
  }
  .lock-icon {
    width:26px;
    height:30px
  }
  .contact-form {
    width:100%;
    gap:19px 16px
  }
  .field label {
    font-size:12px;
    min-height:18px
  }
  .field label>span {
    font-size:11px
  }
  input:not([type=checkbox]),textarea,select {
    min-height:48px;
    font-size:16px;
    padding:11px 12px
  }
  textarea {
    min-height:150px
  }
  .form-bottom {
    gap:24px;
    margin-top:3px
  }
  .checkbox-label {
    font-size:11px;
    gap:12px;
    line-height:1.7
  }
  .checkbox-label input {
    width:20px;
    height:20px
  }
  .submit-button {
    width:100%;
    min-height:54px;
    font-size:14px;
    justify-content:space-between
  }
  .form-status {
    font-size:13px
  }
  .field-error {
    font-size:12px
  }
  .footer-inner {
    align-items:flex-start;
    gap:28px;
    flex-direction:column;
    padding-block:28px
  }
  .brand-small {
    --mark:32px;
    --word:110px
  }
  .footer-meta {
    flex-wrap:wrap;
    gap:13px 20px;
    font-size:11px
  }
  .footer-meta>span {
    padding-left:0;
    border:0
  }
  .information-dialog {
    padding:40px 26px 28px
  }
  .information-dialog h2 {
    font-size:26px
  }
  .information-dialog>p:not(.eyebrow) {
    font-size:15px
  }
}

@media(max-width:389px) {
  :root {
    --gutter:20px
  }
  .hero-copy .eyebrow {
    font-size:9px
  }
  .hero-actions .button {
    font-size:12px;
    gap:13px;
    padding-inline:15px
  }
  .principles {
    font-size:9px;
    gap:8px
  }
  .principles li+li::before {
    margin-right:8px
  }
  .contact-form {
    grid-template-columns:1fr;
    gap:18px
  }
  .field.full,.full {
    grid-column:1
  }
  .service {
    grid-template-columns:25px 1fr 20px;
    gap:12px
  }
  .service h3 {
    font-size:18px
  }
  .service p {
    font-size:14px
  }
  .process h3 {
    font-size:13px
  }
  .process p {
    font-size:12px
  }
  .contact-copy h2 {
    font-size:clamp(28px,8vw,32px)
  }
}

/* Keep long Polish headings within their actual column, including tablet widths. */
.contact-copy {
  container-type:inline-size
}

.contact-copy h2 {
  font-size:clamp(28px,10cqw,67px)
}

@media(max-width:900px) {
  .contact-inner {
    display:flex;
    flex-direction:column;
    gap:38px
  }
  .contact-copy,.contact-form {
    width:100%
  }
  .contact-copy h2 {
    font-size:clamp(28px,10cqw,48px)
  }
  .contact-copy>p:not(.eyebrow) {
    max-width:560px
  }
}

@media(max-width:1023px) and (min-width:390px) {
  .field:not(.full) label {
    min-height:2.9em
  }
  .field.full label {
    min-height:0
  }
}

@media(max-width:767px) {
  .hero-description,.service p,.about-copy>p:not(.eyebrow),.contact-copy>p:not(.eyebrow) {
    font-size:16px
  }
  .process p {
    font-size:14px
  }
  .field label {
    font-size:14px
  }
  .field label>span {
    font-size:12px
  }
  .checkbox-label {
    font-size:12px
  }
  .principles {
    font-size:11px
  }
  .hero-copy .eyebrow {
    font-size:10px
  }
  .contact-copy h2 {
    font-size:clamp(28px,10cqw,48px)
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
    scroll-snap-type:none!important
  }
  *,*::before,*::after {
    animation:none!important;
    transition:none!important
  }
  .hero-visual,.about-image img {
    transform:none!important
  }
}

@media print {
  html {
    scroll-snap-type:none
  }
  body {
    background:#fff;
    color:#111;
    font-size:11pt
  }
  .site-header,.section-nav,.mobile-menu,.hero-visual,.hero-shade,.scroll-cue,.about-image,.contact-form,.site-footer {
    display:none
  }
  .panel {
    min-height:auto;
    display:block;
    background:#fff;
    color:#111;
    overflow:visible;
    break-inside:avoid;
    border-bottom:1px solid #ccc
  }
  .panel-inner {
    padding:25px 0;
    min-height:auto;
    display:block
  }
  .hero-copy {
    width:100%;
    max-width:none;
    padding:0
  }
  .hero-bottom {
    position:static;
    margin-top:25px
  }
  .hero-copy h1 {
    font-size:40pt
  }
  .hero-statement {
    font-size:20pt
  }
  h2,.about-copy h2,.contact-copy h2,.security .section-heading h2 {
    font-size:26pt
  }
  .accent,.eyebrow,.service-number,.step-number {
    color:#654825
  }
  .hero-description,.service p,.about-copy>p:not(.eyebrow),.process p,.contact-copy>p:not(.eyebrow),.principles {
    color:#333
  }
  .hero-actions {
    display:none
  }
  .services {
    column-gap:30px
  }
  .service h3 {
    font-size:14pt
  }
  .service p {
    font-size:10pt
  }
  .section-heading {
    margin-bottom:12px
  }
  .service {
    padding:15px 0;
    grid-template-columns:25px 1fr;
    gap:10px
  }
  .service-arrow {
    display:none
  }
  .about-top {
    display:block
  }
  .process {
    margin-top:25px
  }
  .process p {
    font-size:10pt
  }
  .contact-copy {
    padding:0
  }
}
