@charset "UTF-8";

/* Current DKGP design: foundations, components and responsive motion. */
:root {
  --navy:#072d40;
  --deep:#061e2c;
  --red:#e63632;
  --ink:#173342;
  --muted:#536874;
  --line:#d8e1e5;
  --pale:#f2f6f7;
  --white:#fff;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:white;
  font-synthesis:none;
}

* {
  box-sizing:border-box;
}

body {
  margin:0;
  font-size:16px;
  line-height:1.7;
}

a {
  color:inherit;
}

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

button, a, input, select, textarea {
  touch-action:manipulation;
}

a, button {
  transition:background .2s,color .2s,transform .2s;
}

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

h1, h2, h3, p {
  margin-top:0;
}

h1, h2, h3 {
  line-height:1.1;
  letter-spacing:-.035em;
}

h1 {
  font-size:clamp(2.7rem,5.7vw,5.4rem);
  font-weight:500;
  max-width:850px;
  margin-bottom:28px;
}

h2 {
  font-size:clamp(2rem,3.5vw,3.4rem);
  font-weight:500;
}

h3 {
  font-size:1.55rem;
  font-weight:500;
}

p {
  max-width:68ch;
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline:3px solid #e63632;
  outline-offset:5px;
}

.wrap {
  width:min(1280px,90%);
  margin:auto;
}

.skip {
  position:absolute;
  top:-100px;
  left:20px;
  z-index:100;
  background:white;
  padding:12px;
}

.skip:focus {
  top:12px;
}

header {
  background:white;
  position:relative;
  z-index:10;
  border-bottom:1px solid var(--line);
}

.header-inner {
  min-height:100px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.brand {
  display:flex;
  align-items:center;
  text-decoration:none;
  gap:16px;
}

.brand img {
  width:155px;
}

.brand span {
  font-size:.75rem;
  letter-spacing:.12em;
  line-height:1.4;
  border-left:1px solid var(--line);
  padding-left:16px;
  max-width:110px;
}

nav {
  display:flex;
  align-items:center;
  gap:30px;
}

nav a {
  text-decoration:none;
  font-size:.9375rem;
}

nav a[aria-current=page] {
  color:#bd2421;
}

nav a:not(.button):hover {
  color:#bd2421;
}

.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:25px;
  padding:14px 23px;
  background:var(--red);
  color:white;
  border:1px solid var(--red);
  text-decoration:none;
  font-size:.9375rem;
  font-weight:600;
  cursor:pointer;
  min-height:50px;
}

.button:hover {
  background:#bd2421;
  border-color:#bd2421;
  transform:translateY(-2px);
}

.menu-toggle {
  display:none;
  background:none;
  border:1px solid var(--line);
  padding:9px 14px;
  color:var(--navy);
}

.eyebrow {
  text-transform:uppercase;
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.18em;
  display:flex;
  align-items:center;
  gap:13px;
  margin-bottom:24px;
}

.eyebrow:before {
  content:"";
  width:29px;
  height:2px;
  background:var(--red);
}

.section {
  padding:95px 0;
}

.section.pale {
  background:var(--pale);
}

.section-heading {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:45px;
  margin-bottom:42px;
}

.section-heading h2 {
  max-width:680px;
  margin-bottom:0;
}

.section-heading p {
  max-width:370px;
  color:var(--muted);
  margin:0;
}

.cards {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.card {
  border:1px solid var(--line);
  padding:34px;
  background:white;
  position:relative;
  display:flex;
  flex-direction:column;
}

.card:hover {
  border-color:#879eaa;
}

.card .number {
  color:#be302d;
  font-size:.875rem;
  margin-bottom:42px;
}

.card p {
  color:var(--muted);
}

.text-link {
  font-weight:600;
  text-decoration:none;
  border-bottom:1px solid var(--line);
  padding-bottom:9px;
  display:inline-flex;
  justify-content:space-between;
  gap:30px;
  margin-top:auto;
}

.text-link:hover {
  color:#bd2421;
}

.split {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:75px;
  align-items:center;
}

.split p {
  color:var(--muted);
}

.photo {
  position:relative;
  margin:0;
  background:var(--navy);
}

.photo img {
  width:100%;
  aspect-ratio:1.2;
  object-fit:cover;
}


.cta {
  background:var(--navy);
  color:white;
  padding:65px 0;
}

.cta .wrap {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.cta h2 {
  max-width:720px;
  margin:0;
}

footer {
  background:var(--deep);
  color:#becdd5;
  padding:60px 0 25px;
  font-size:.9375rem;
}

.footer-grid {
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr;
  gap:55px;
}

.footer-brand {
  color:white;
  font-size:1.7rem;
  letter-spacing:.02em;
  margin-bottom:12px;
}

.footer-grid h2 {
  font-size:1rem;
  color:white;
  letter-spacing:0;
}

.footer-grid a {
  display:block;
  text-decoration:none;
  margin:8px 0;
}

.footer-grid a:hover {
  color:white;
}

.footer-bottom {
  margin-top:45px;
  padding-top:20px;
  border-top:1px solid #314653;
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:.8125rem;
}

.footer-bottom a, .footer-bottom button {
  display:inline;
  color:inherit;
  background:none;
  border:0;
  padding:0;
  text-decoration:underline;
  cursor:pointer;
}

.page-head {
  background:var(--navy);
  color:white;
  padding:70px 0;
}

.page-head h1 {
  font-size:clamp(2.6rem,5vw,4.4rem);
  margin-bottom:20px;
}

.page-head p {
  color:#c8d7df;
  max-width:690px;
  font-size:1.125rem;
}

.breadcrumb {
  font-size:.875rem;
  color:#bed0da;
  margin-bottom:30px;
}

.service-detail {
  padding:36px 0;
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:70px 1fr 1fr;
  gap:25px;
  scroll-margin-top:30px;
}

.service-detail .number {
  color:var(--red);
}

.service-detail p {
  color:var(--muted);
  margin:0;
}

.contact-grid {
  display:grid;
  grid-template-columns:1fr 1.65fr;
  gap:80px;
}

.contact-item {
  padding:22px 0;
  border-bottom:1px solid var(--line);
}

.contact-item h3 {
  font-size:.8rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
}

.contact-item a {
  overflow-wrap:anywhere;
}

.form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.field {
  display:flex;
  flex-direction:column;
  gap:7px;
}

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

label {
  font-size:.9375rem;
  font-weight:600;
}

input, select, textarea {
  width:100%;
  border:1px solid #9cafba;
  padding:12px 14px;
  background:white;
  border-radius:0;
  color:var(--ink);
}

textarea {
  min-height:155px;
  resize:vertical;
}

.form-note {
  font-size:.875rem;
  color:var(--muted);
  margin:20px 0;
}

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

.form-status {
  margin-top:20px;
}

.form-status:not(:empty) {
  padding:15px;
  border-left:3px solid var(--red);
  background:var(--pale);
}

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

.consent {
  position:fixed;
  z-index:30;
  bottom:20px;
  left:20px;
  width:min(460px,calc(100% - 40px));
  padding:24px;
  background:white;
  border:1px solid var(--line);
  box-shadow:0 8px 40px #071d3030;
}

.consent h2 {
  font-size:1.3rem;
}

.consent p {
  font-size:.875rem;
  color:var(--muted);
}

.consent-actions {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.consent button {
  font-size:.875rem;
  padding:9px 13px;
  min-height:44px;
}

.consent .decline {
  background:white;
  color:var(--navy);
  border:1px solid var(--navy);
}

[hidden] {
  display:none!important;
}

.prose {
  max-width:820px;
}

.prose h2 {
  font-size:1.8rem;
  margin-top:40px;
}

.reveal {
  transition:opacity .6s,transform .6s;
}

.reveal.pending {
  opacity:0;
  transform:translateY(18px);
}

@media(max-width:1000px) {
  .brand span {
    display:none;
  }

  nav {
    gap:19px;
  }

  .split {
    gap:35px;
  }

  .contact-grid {
    gap:40px;
  }

  .cards {
    gap:15px;
  }

  .card {
    padding:25px;
  }

  .footer-grid {
    gap:30px;
  }
}

@media(max-width:760px) {
  .header-inner {
    min-height:80px;
  }

  .brand img {
    width:130px;
  }

  .menu-toggle {
    display:block;
  }

  nav {
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:white;
    padding:24px 5%;
    border-bottom:1px solid var(--line);
    align-items:stretch;
  }

  nav.open {
    display:flex;
    flex-direction:column;
    gap:20px;
  }

  .section {
    padding:60px 0;
  }

  .section-heading, .cta .wrap {
    display:block;
  }

  .section-heading p {
    margin-top:25px;
  }

  .cards, .split, .contact-grid, .footer-grid {
    grid-template-columns:1fr;
  }

  .split {
    gap:35px;
  }

  .cards {
    gap:18px;
  }

  .card .number {
    margin-bottom:25px;
  }

  .cta .button {
    margin-top:25px;
  }

  .footer-bottom {
    flex-direction:column;
  }

  .footer-grid {
    gap:32px;
  }

  .page-head {
    padding:45px 0;
  }

  .service-detail {
    grid-template-columns:35px 1fr;
    gap:15px;
  }

  .service-detail p {
    grid-column:2;
  }

  .form-grid {
    grid-template-columns:1fr;
  }

  .photo img {
    aspect-ratio:1.4;
  }

  .contact-grid {
    gap:45px;
  }
}

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

  .reveal.pending {
    opacity:1;
    transform:none;
  }
}

@media(prefers-reduced-motion:no-preference) {
  html {
    scroll-behavior:smooth;
  }
}

:root {
  --navy:#0a202c;
  --deep:#06141d;
  --red:#d4312c;
  --ink:#e7eef1;
  --muted:#aabcc5;
  --line:#29404d;
  --pale:#102832;
  background:var(--deep);
  color:var(--ink);
  font-family:"Segoe UI",Arial,sans-serif;
}

body {
  background:var(--deep);
}

.wrap {
  width:min(1360px,90%);
}

h1, h2, h3 {
  letter-spacing:-.055em;
}

header {
  background:#06141df2;
  border-bottom:1px solid #ffffff12;
  position:sticky;
  top:0;
  backdrop-filter:blur(18px);
}

.header-inner {
  min-height:95px;
}

.brand {
  gap:13px;
}

.brand img {
  width:116px;
  border-radius:3px;
}

.brand span {
  border:0;
  padding:0;
  color:#eff4f6;
  letter-spacing:.13em;
  font-size:.7rem;
  max-width:110px;
}

nav {
  gap:36px;
}

nav a {
  font-size:.875rem;
  color:#c3d1d9;
}

nav a[aria-current=page] {
  color:white;
}

nav a[aria-current=page]:not(.button):after {
  content:"";
  display:block;
  height:3px;
  width:15px;
  background:var(--red);
  margin-top:4px;
  position:absolute;
}

.button {
  border-radius:100px;
  background:var(--red);
  color:#fff;
  padding:13px 23px;
  gap:30px;
  font-size:.875rem;
}

.button:hover {
  background:#cf302a;
  box-shadow:0 8px 30px #e6363226;
  transform:translateY(-3px);
}

nav .button {
  background:transparent;
  border-color:#57707c;
  color:white;
}

nav .button:hover {
  background:var(--red);
  border-color:var(--red);
}

.menu-toggle {
  color:white;
  border-color:#506773;
  border-radius:50px;
}

.eyebrow {
  font-size:.75rem;
  letter-spacing:.14em;
  color:#afc4cf;
}

.eyebrow:before {
  width:7px;
  height:7px;
  background:var(--red);
  border-radius:50%;
}

.next-hero {
  position:relative;
  overflow:hidden;
  background:radial-gradient(ellipse at 82% 30%,#203b46 0,transparent 55%),#071924;
}

.hero-grid {
  position:absolute;
  inset:0;
  background-image:linear-gradient(#ffffff03 1px,transparent 1px),linear-gradient(90deg,#ffffff03 1px,transparent 1px);
  background-size:90px 90px;
  mask-image:linear-gradient(to bottom,black,transparent);
  pointer-events:none;
}

.hero-topline {
  display:flex;
  justify-content:space-between;
  padding:31px 0;
  color:#829fae;
  font-size:.7rem;
  letter-spacing:.15em;
  border-bottom:1px solid #ffffff12;
}

.hero-composition {
  position:relative;
  min-height:650px;
  display:flex;
  align-items:center;
  padding:45px 0 60px;
}

.hero-copy {
  position:relative;
  z-index:2;
  pointer-events:none;
  width:65%;
}

.hero-copy a {
  pointer-events:auto;
}

.display-title {
  font-size:clamp(5rem,9vw,9.3rem);
  line-height:.94;
  font-weight:500;
  letter-spacing:-.075em;
  margin:30px 0 40px;
  max-width:none;
}

.title-line {
  display:block;
}

.display-title em {
  color:#f26a61;
  font-weight:400;
  font-style:normal;
}

.hero-bottom {
  display:flex;
  align-items:center;
  gap:75px;
}

.hero-bottom p {
  margin:0;
  color:#c7d5dc;
  font-size:1.1rem;
  line-height:1.6;
}

.round-link {
  display:flex;
  align-items:center;
  justify-content:center;
  width:68px;
  height:68px;
  border:1px solid #7c929f;
  border-radius:50%;
  font-size:1.7rem;
  text-decoration:none;
  background:#09212c77;
}

.round-link:hover {
  background:var(--red);
  border-color:var(--red);
  transform:rotate(45deg);
}

.hero-window {
  position:absolute;
  width:58%;
  right:0;
  top:45px;
  bottom:40px;
  margin:0;
  border-radius:160px 12px 12px 12px;
  overflow:hidden;
  background:#173b4c;
  box-shadow:0 25px 65px #0005;
  isolation:isolate;
}

.hero-window:after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,#07192499,transparent 70%),linear-gradient(0deg,#06141dcc,transparent 50%);
  z-index:-1;
}

.hero-window img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:67% center;
  z-index:-2;
  transform:scale(1.04);
}

.window-top {
  position:absolute;
  top:26px;
  left:100px;
  right:25px;
  display:flex;
  justify-content:space-between;
  font-size:.65rem;
  letter-spacing:.14em;
  color:#cfdee6;
}

.window-top>span:last-child {
  font-size:1.4rem;
}


.image-index {
  position:absolute;
  right:25px;
  bottom:74px;
  font-size:4.5rem;
  line-height:1;
  letter-spacing:-.05em;
  display:flex;
  align-items:center;
  gap:15px;
  color:#fff;
}

.image-index span {
  font-size:.65rem;
  letter-spacing:.15em;
  line-height:1.7;
  border-left:1px solid #81959d;
  padding-left:15px;
}

.hero-foot {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:23px 0 30px;
  border-top:1px solid #ffffff15;
  color:#8fa8b5;
  font-size:.75rem;
  letter-spacing:.03em;
}

.hero-foot a {
  color:#e1eaef;
  text-decoration:none;
  display:flex;
  gap:35px;
}

.hero-foot a span {
  color:var(--red);
}

.section {
  padding:110px 0;
}

.section-heading h2 {
  font-size:clamp(2.5rem,4vw,4rem);
  font-weight:400;
}

.section-heading .subtle {
  color:#617b88;
}

.capabilities {
  background:#edf2f3;
  color:#102c3b;
}

.capabilities .eyebrow, .process-section .eyebrow {
  color:#546b78;
}

.capabilities .section-heading p {
  color:#5a6e79;
}

.service-accordion {
  border-top:1px solid #bfcdd3;
  margin-top:55px;
}

.service-panel {
  border-bottom:1px solid #bfcdd3;
  transition:background .3s;
}

.service-panel h3 {
  margin:0;
}

.service-toggle {
  display:grid;
  grid-template-columns:70px 1fr 55px;
  gap:12px;
  align-items:center;
  width:100%;
  padding:28px 0;
  border:0;
  background:transparent;
  color:#12303e;
  text-align:left;
  cursor:pointer;
  font-size:clamp(1.5rem,2.6vw,2.65rem);
  letter-spacing:-.05em;
}

.service-count {
  font-size:.8rem;
  color:#6b828e;
  letter-spacing:0;
}

.service-symbol {
  width:48px;
  height:48px;
  border:1px solid #aebfc8;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:300;
  font-size:1.6rem;
  letter-spacing:0;
  transition:background .25s,color .25s;
}

.service-toggle:hover .service-symbol, .service-panel.active .service-symbol {
  background:var(--red);
  border-color:var(--red);
  color:white;
}

.service-body {
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:50px;
  padding:0 67px 34px 82px;
  animation:panel-in .45s ease both;
}

.service-body p {
  max-width:450px;
  color:#536c79;
  font-size:1rem;
}

.service-body .text-link {
  font-size:.9rem;
  border-color:#bccbd2;
  min-width:230px;
}

.service-word {
  font-size:clamp(2rem,5vw,5rem);
  font-weight:700;
  color:#d0dce1;
  line-height:1;
  letter-spacing:-.06em;
}

.services-end {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:25px;
  margin-top:35px;
}

.services-end>span {
  font-size:.875rem;
  color:#536c79;
}

.story-section {
  background:#0b222e;
}

.story-heading {
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:100px;
  align-items:end;
  margin-bottom:55px;
}

.story-heading h2 {
  font-size:clamp(2.9rem,5.4vw,5.3rem);
  font-weight:400;
  margin:0;
}

.story-heading em {
  color:#83a0b0;
  font-style:normal;
}

.story-heading p {
  color:#adc1cc;
}

.text-link {
  border-color:#36505e;
  transition:color .2s,gap .3s;
}

.text-link:hover {
  color:#f36c62;
  gap:50px;
}

.wide-photo {
  margin:0;
  position:relative;
  border-radius:12px;
  overflow:hidden;
  min-height:480px;
  background:#06141d;
}

.wide-photo img {
  width:100%;
  height:530px;
  object-fit:cover;
  object-position:center 57%;
  opacity:.8;
}

.wide-photo:after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,#06141d66,transparent);
  pointer-events:none;
}


.photo-statement {
  position:absolute;
  left:55px;
  top:50px;
  font-size:clamp(2.8rem,5vw,5rem);
  line-height:1;
  letter-spacing:-.06em;
  z-index:2;
}

.process-section {
  background:#edf2f3;
  color:#12303e;
}

.process-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:55px;
  margin-top:60px;
}

.process-grid article {
  border-top:1px solid #a8bcc6;
  padding-top:20px;
}

.process-grid article>span {
  font-size:.7rem;
  letter-spacing:.12em;
  color:#607b89;
}

.process-grid h3 {
  font-size:1.7rem;
  margin:35px 0 15px;
}

.process-grid p {
  color:#596f7a;
}

.cta {
  padding:90px 0;
  background:var(--red);
  color:white;
  position:relative;
  overflow:hidden;
}

.cta .eyebrow {
  color:#fff;
}

.cta .eyebrow:before {
  background:white;
}

.cta h2 {
  font-size:clamp(2.7rem,4.7vw,4.6rem);
  font-weight:400;
}

.cta .button {
  background:#0b2330;
  border-color:#0b2330;
  padding:20px 30px;
}

.cta .button:hover {
  background:#153e51;
}

footer {
  padding:75px 0 25px;
  background:#06141d;
}

.footer-brand {
  font-size:2rem;
}

.footer-brand span {
  font-size:1rem;
  color:#a5bdc9;
  display:block;
}

.footer-bottom {
  border-color:#243c49;
}

.page-head {
  background:radial-gradient(ellipse at 85% 15%,#27434f,transparent 65%),#0a202c;
  padding:75px 0 85px;
  border-bottom:1px solid #37505b;
}

.page-head h1 {
  font-size:clamp(3.2rem,6vw,6rem);
  font-weight:400;
  max-width:1000px;
}

.page-head .breadcrumb {
  font-size:.75rem;
  opacity:.7;
  margin-bottom:45px;
}

.page-head .eyebrow {
  display:none;
}

.page-head p {
  font-size:1.1rem;
  color:#a9c1ce;
}

.page-head h1 {
  animation:panel-in .8s ease both;
}

.split {
  gap:90px;
}

.split h2 {
  font-size:clamp(2.8rem,4vw,4rem);
  font-weight:400;
}

.photo {
  border-radius:90px 10px 10px 10px;
  overflow:hidden;
}


.pale {
  background:#102832!important;
}

.card {
  background:transparent;
  border:0;
  border-top:1px solid #496371;
  padding:30px 0;
}

.card .number {
  color:#ff857b;
  margin-bottom:30px;
}

.card h3 {
  font-size:1.9rem;
}

.service-detail {
  padding:45px 0;
  grid-template-columns:80px 1.1fr 1fr;
  border-color:#39515f;
}

.service-detail h2 {
  font-size:2.1rem!important;
}

.service-detail .number {
  font-size:.875rem;
  color:#f5796f;
}

.service-detail:hover h2 {
  color:#f58980;
}

.contact-grid {
  grid-template-columns:1fr 1.4fr;
  gap:110px;
}

.contact-grid>div:last-child {
  padding:40px;
  background:#102934;
  border:1px solid #344d5b;
  border-radius:12px;
}

.contact-grid input, .contact-grid textarea {
  border:1px solid #46616f;
  background:#0a202c;
  color:white;
  border-radius:6px;
}

.contact-grid textarea::placeholder {
  color:#8ca7b5;
}

.contact-item h3 {
  color:#91adbc;
}

.contact-item {
  border-color:#334c5a;
}

.form-status:not(:empty) {
  background:#183947;
  color:#e7eff3;
}

.consent {
  background:#102b39;
  color:#ecf2f5;
  border-color:#567482;
  border-radius:12px;
}

.consent p {
  color:#bccdd7;
}

.consent .decline {
  background:transparent;
  border-color:#a2b9c6;
  color:white;
}

.menu-toggle:hover {
  background:#23404f;
}

.prose p {
  color:#b5c7d0;
}

.reveal {
  transition:opacity .85s,transform .85s;
  transition-delay:var(--stagger,0ms);
}

.reveal.pending {
  transform:translateY(35px);
}

.reading-progress {
  position:fixed;
  top:0;
  left:0;
  height:2px;
  width:100%;
  transform:scaleX(0);
  transform-origin:left;
  background:#f2685e;
  z-index:50;
  pointer-events:none;
}

@keyframes panel-in {
  from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:none}
}

@keyframes title-in {
  from{opacity:0;transform:translateY(45px);filter:blur(6px)}to{opacity:1;transform:none;filter:blur(0)}
}

@keyframes image-in {
  from{opacity:0;transform:translateX(45px) scale(.97)}to{opacity:1;transform:none}
}

@media(prefers-reduced-motion:no-preference) {
  .title-line {
    animation:title-in 1s cubic-bezier(.2,.7,.2,1) both;
  }

  .title-line:nth-child(2) {
    animation-delay:.14s;
  }

  .entrance {
    animation:panel-in .85s .25s both;
  }

  .hero-window {
    animation:image-in 1.2s .1s both;
  }

  .hero-window img {
    transition:transform 1.2s cubic-bezier(.2,.7,.2,1);
  }

  .hero-window:hover img {
    transform:scale(1.09);
  }

  .hero-foot a span {
    animation:panel-in 1.5s 3 alternate;
  }

  .wide-photo img {
    transition:transform 1s;
  }

  .wide-photo:hover img {
    transform:scale(1.035);
  }
}

@media(min-width:1600px) {
  .hero-composition {
    min-height:750px;
  }
}

@media(max-width:1050px) {
  .hero-composition {
    min-height:610px;
  }

  .hero-window {
    width:62%;
    top:50px;
    bottom:55px;
  }

  .display-title {
    font-size:clamp(4.8rem,9.5vw,7rem);
  }

  .hero-copy {
    width:80%;
  }

  .hero-bottom {
    gap:40px;
  }

  .story-heading {
    gap:45px;
  }

  .brand span {
    display:none;
  }

  .contact-grid {
    gap:45px;
  }

  .contact-grid>div:last-child {
    padding:28px;
  }

  .service-word {
    display:none;
  }

  .split {
    gap:40px;
  }

  .service-detail {
    grid-template-columns:45px 1fr 1fr;
  }
}

@media(max-width:760px) {
  header {
    position:sticky;
  }

  .header-inner {
    min-height:78px;
  }

  .brand img {
    width:110px;
  }

  .brand span {
    display:block;
  }

  nav {
    background:#0b2431;
    border-color:#405b69;
  }

  nav a {
    font-size:1rem;
  }

  .hero-topline {
    font-size:.625rem;
    padding:20px 0;
  }

  .hero-topline span:last-child {
    display:none;
  }

  .hero-composition {
    min-height:auto;
    padding:38px 0 0;
    display:block;
  }

  .hero-copy {
    width:100%;
  }

  .hero-copy .eyebrow {
    font-size:.65rem;
    letter-spacing:.08em;
  }

  .display-title {
    font-size:clamp(4.3rem,16vw,7rem);
    margin:25px 0 30px;
  }

  .hero-bottom {
    justify-content:space-between;
    margin-bottom:35px;
    gap:20px;
  }

  .hero-bottom p {
    font-size:1rem;
  }

  .round-link {
    width:55px;
    height:55px;
  }

  .hero-window {
    position:relative;
    width:100%;
    height:310px;
    top:auto;
    bottom:auto;
    border-radius:80px 8px 8px 8px;
  }

  .window-top {
    left:65px;
    font-size:.6rem;
  }

  .image-index {
    font-size:3rem;
    bottom:55px;
    right:20px;
  }


  .hero-foot {
    padding:22px 0;
    font-size:.65rem;
  }

  .hero-foot>span:nth-child(2) {
    display:none;
  }

  .section {
    padding:70px 0;
  }

  .section-heading h2 {
    font-size:2.5rem;
  }

  .service-toggle {
    grid-template-columns:25px 1fr 38px;
    font-size:1.45rem;
    padding:24px 0;
    gap:12px;
  }

  .service-symbol {
    width:36px;
    height:36px;
    font-size:1.4rem;
  }

  .service-body {
    padding:0 0 28px 37px;
    gap:0;
  }

  .service-body p {
    font-size:.95rem;
  }

  .services-end {
    align-items:start;
    flex-direction:column;
  }

  .story-heading {
    grid-template-columns:1fr;
    gap:30px;
  }

  .story-heading h2 {
    font-size:3.1rem;
  }

  .wide-photo {
    min-height:350px;
  }

  .wide-photo img {
    height:350px;
    object-position:62% center;
  }

  .photo-statement {
    font-size:2.9rem;
    left:24px;
    top:26px;
  }


  .process-grid {
    grid-template-columns:1fr;
    gap:20px;
    margin-top:35px;
  }

  .process-grid h3 {
    margin:20px 0 12px;
  }

  .process-grid p {
    margin-bottom:15px;
  }

  .cta {
    padding:65px 0;
  }

  .cta .eyebrow {
    font-size:.65rem;
  }

  .cta h2 {
    font-size:2.8rem;
  }

  .page-head {
    padding:40px 0 55px;
  }

  .page-head h1 {
    font-size:clamp(2.65rem,9vw,4rem);
  }

  .page-head .breadcrumb {
    margin-bottom:30px;
  }

  .service-detail {
    grid-template-columns:25px 1fr;
    padding:30px 0;
  }

  .service-detail h2 {
    font-size:1.8rem!important;
  }

  .service-detail p {
    grid-column:2;
  }

  .contact-grid {
    grid-template-columns:1fr;
    gap:35px;
  }

  .contact-grid>div:last-child {
    padding:24px 18px;
  }

  .contact-grid h2 {
    font-size:2.4rem;
  }

  .photo {
    border-radius:60px 8px 8px 8px;
  }

  .split h2 {
    font-size:2.7rem;
  }

  .footer-brand {
    font-size:2.1rem;
  }

  .service-accordion {
    margin-top:35px;
  }
}

@media(prefers-reduced-motion:reduce) {
  .title-line, .entrance, .hero-window {
    animation:none!important;
  }

  .reveal.pending {
    opacity:1;
    transform:none;
  }

  .service-body {
    animation:none;
  }

  .reading-progress {
    display:none;
  }
}

#capabilities {
  scroll-margin-top:110px;
}

.service-detail {
  scroll-margin-top:110px;
}

nav a:not(.button):hover {
  color:#ff9086;
}

.skip {
  color:#102c3b;
}
