@font-face {
  font-family: "Work Sans";
  src: url("fonts/work-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #312a26;
  --body: #66605d;
  --navy: #1f283a;
  --ivory: #fbf8f7;
  --white: #ffffff;
  --accent: #1181ad;
  --line: #e5e1df;
  --header-height: 70px;
  --content-width: 1260px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

html[data-a11y-font-size="large"] {
  font-size: 112.5%;
}

html[data-a11y-font-size="larger"] {
  font-size: 125%;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--white);
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 350;
  line-height: 1.56;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Work Sans", sans-serif;
  font-weight: 600;
}

[hidden] {
  display: none !important;
}

.content-width {
  width: min(calc(100% - 80px), var(--content-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 9px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(49, 42, 38, .08);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .025);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 80px), 1220px);
  min-height: var(--header-height);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  flex: 0 0 auto;
  color: #3a3a3a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 2rem;
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -.35px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--accent);
  font-size: .9375rem;
  font-weight: 450;
  white-space: nowrap;
}

.primary-nav > a {
  position: relative;
  padding-block: 24px;
}

.primary-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity .2s ease, transform .2s ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.primary-nav > a.is-active::after {
  opacity: .65;
  transform: scaleX(1);
}

.language-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.language-links a {
  display: grid;
  min-width: 22px;
  min-height: 30px;
  place-items: center;
}

.language-links a[aria-current="page"] {
  opacity: 1;
}

.language-links img {
  image-rendering: auto;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 27px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .25s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-dark {
  background: var(--navy);
}

.section-light {
  background: var(--white);
}

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

.hero {
  display: grid;
  min-height: calc(100vh - var(--header-height));
  padding: 64px 0;
  place-items: center;
}

.hero-inner {
  display: grid;
  width: min(calc(100% - 68px), 1280px);
  min-height: min(610px, calc(100vh - 126px));
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}

.hero-copy {
  display: flex;
  align-self: stretch;
  padding: clamp(52px, 7.5vw, 100px);
  background: var(--ivory);
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1,
.display-title {
  font-size: clamp(3rem, 5.3vw, 4.5rem);
  line-height: 1.3;
  letter-spacing: -2px;
}

.hero-copy h1 {
  font-family: "Manrope", "Work Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -2.6px;
  line-height: 1.2;
}

.hero-copy p {
  max-width: 460px;
  margin-top: 22px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.58;
}

.text-link {
  align-self: flex-start;
  margin-top: 32px;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  font-family: "Manrope", "Work Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.2;
  transition: color .2s ease, border-color .2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
}

.hero-media {
  overflow: hidden;
  align-self: center;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 928 / 732;
  object-fit: cover;
}

.office {
  padding: 72px 0 82px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 38px;
  justify-items: center;
  row-gap: 26px;
}

.feature {
  display: flex;
  width: 100%;
  max-width: 350px;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.icon-disc {
  display: grid;
  width: 110px;
  height: 110px;
  margin: 0 auto 2px;
  border-radius: 50%;
  background: var(--ivory);
  place-items: center;
}

.icon-disc svg {
  width: 62px;
  height: 62px;
}

.feature h2,
.service h2 {
  font-size: 1.5rem;
  line-height: 1.3;
}

.feature p {
  width: 100%;
  max-width: 390px;
  margin: 16px auto 0;
  line-height: 1.56;
  text-align: center;
}

.about {
  min-height: calc(100vh - var(--header-height));
  padding: 74px 0 80px;
}

.about-inner {
  display: grid;
  min-height: 780px;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(54px, 8vw, 108px);
}

.about-copy {
  max-width: 385px;
  margin-left: auto;
}

.about-copy p {
  margin-top: 16px;
  color: var(--ink);
}

.about-copy .display-title {
  margin-bottom: 22px;
}

.portrait {
  width: min(100%, 534px);
}

.portrait img {
  width: 400px;
  height: 600px;
  object-fit: cover;
}

.portrait figcaption {
  width: 400px;
  padding: 22px 0 0;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 1px;
  text-align: right;
}

.services {
  padding: 86px 0 82px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 72px;
  row-gap: 42px;
}

.service {
  display: grid;
  min-width: 0;
  grid-template-columns: 52px 1fr;
  gap: 18px;
}

.service-icon {
  display: grid;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ivory);
  place-items: center;
}

.service-icon svg {
  width: 34px;
  height: 34px;
}

.service h2 {
  color: var(--ivory);
}

.service p {
  margin-top: 18px;
  color: var(--ivory);
  line-height: 1.62;
}

.contact {
  padding: 78px 0 70px;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.5fr);
  align-items: center;
  gap: 58px;
}

.contact-copy {
  padding-left: 46px;
}

.contact-copy .display-title {
  margin-bottom: 22px;
}

.contact-copy > p,
.contact-copy address {
  margin-top: 24px;
}

.contact-copy address,
.contact-lines {
  display: flex;
  font-style: normal;
  flex-direction: column;
}

.contact-copy address a,
.contact-lines a {
  width: fit-content;
}

.contact-copy address a:hover,
.contact-copy address a:focus-visible,
.contact-lines a:hover,
.contact-lines a:focus-visible {
  color: var(--accent);
}

.contact-copy address span,
.contact-lines span {
  margin-bottom: 2px;
}

.maps {
  display: grid;
  padding: 44px 30px;
  background: var(--white);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
}

.maps iframe {
  width: 100%;
  height: 444px;
  border: 0;
}

.site-footer {
  display: grid;
  min-height: 94px;
  border-top: 1px solid var(--line);
  background: var(--white);
  color: #4b4f58;
  font-size: .875rem;
  place-items: center;
}

.a11y-launcher {
  position: fixed;
  z-index: 160;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 8px 28px rgba(20, 25, 35, .28);
  color: var(--white);
  cursor: pointer;
  font: 700 1.125rem/1 "Manrope", "Work Sans", sans-serif;
  letter-spacing: -.5px;
  place-items: center;
}

.a11y-launcher:hover,
.a11y-launcher[aria-expanded="true"] {
  background: var(--accent);
}

.a11y-launcher svg {
  width: 34px;
  height: 34px;
}

.a11y-panel {
  position: fixed;
  z-index: 159;
  right: 22px;
  bottom: 88px;
  width: min(330px, calc(100vw - 32px));
  max-height: min(620px, calc(100dvh - 112px));
  padding: 22px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(20, 25, 35, .24);
  color: var(--ink);
}

.a11y-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.a11y-panel-title {
  font-size: 1.25rem;
  line-height: 1.25;
}

.a11y-close {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: 500 1.5rem/1 "Work Sans", sans-serif;
  place-items: center;
}

.a11y-fieldset {
  margin: 20px 0 14px;
  padding: 0;
  border: 0;
}

.a11y-fieldset legend {
  margin-bottom: 10px;
  font-weight: 600;
}

.a11y-font-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.a11y-font-options button,
.a11y-reset {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--ivory);
  color: var(--ink);
  cursor: pointer;
  font: 600 .875rem/1.2 "Manrope", "Work Sans", sans-serif;
}

.a11y-font-options button[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--navy);
  color: var(--white);
}

.a11y-toggle {
  display: flex;
  min-height: 45px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.a11y-toggle input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  accent-color: var(--accent);
}

.a11y-reset {
  width: 100%;
  margin-top: 14px;
}

.a11y-font-options button:hover,
.a11y-close:hover,
.a11y-reset:hover {
  border-color: var(--accent);
}

html[data-a11y-contrast] {
  --ink: #000000;
  --body: #111111;
  --navy: #000000;
  --ivory: #ffffff;
  --accent: #005f87;
  --line: #000000;
}

html[data-a11y-contrast] .site-header,
html[data-a11y-contrast] .a11y-panel {
  border-color: #000000;
  background: #ffffff;
}

html[data-a11y-links] a:not(.a11y-launcher) {
  text-decoration: underline !important;
  text-decoration-thickness: .11em !important;
  text-underline-offset: .2em !important;
}

html[data-a11y-reduce-motion] {
  scroll-behavior: auto;
}

html[data-a11y-reduce-motion] *,
html[data-a11y-reduce-motion] *::before,
html[data-a11y-reduce-motion] *::after {
  animation-duration: .01ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
  transition-duration: .01ms !important;
}

html[data-a11y-reduce-motion] .reveal {
  opacity: 1;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease var(--delay, 0s), transform .65s ease var(--delay, 0s);
}

.reveal-right {
  transform: translateX(34px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid rgba(17, 129, 173, .45);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .header-inner {
    width: min(calc(100% - 44px), 1220px);
  }

  .brand {
    font-size: 1.6875rem;
  }

  .primary-nav {
    gap: 18px;
    font-size: .875rem;
  }

  .language-links {
    gap: 16px;
  }

  .hero-copy {
    padding: 58px;
  }

  .maps {
    gap: 22px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 68px;
  }

  .content-width,
  .header-inner,
  .hero-inner {
    width: min(calc(100% - 40px), var(--content-width));
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100dvh - var(--header-height));
    padding: 24px 26px 32px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 30px rgba(31, 40, 58, .12);
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav > a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(49, 42, 38, .08);
  }

  .primary-nav > a::after {
    display: none;
  }

  .language-links {
    padding-top: 18px;
    justify-content: flex-start;
    gap: 26px;
  }

  .hero {
    min-height: auto;
    padding: 42px 0;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-copy {
    padding: 46px;
  }

  .hero-copy h1,
  .display-title {
    font-size: clamp(2.875rem, 7vw, 3.875rem);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 44px;
  }

  .about-inner {
    min-height: 0;
    grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
    gap: 50px;
  }

  .portrait img,
  .portrait figcaption {
    width: min(100%, 400px);
  }

  .portrait img {
    height: auto;
    aspect-ratio: 2 / 3;
  }

  .services-grid {
    column-gap: 42px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .content-width,
  .header-inner,
  .hero-inner {
    width: min(calc(100% - 32px), var(--content-width));
  }

  .brand {
    font-size: 1.5rem;
  }

  .hero {
    padding: 24px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-copy {
    order: 0;
    padding: 44px 28px 48px;
  }

  .hero-copy h1,
  .display-title {
    font-size: clamp(2.75rem, 14vw, 3.875rem);
    line-height: 1.12;
    letter-spacing: -1.5px;
  }

  .hero-copy p {
    margin-top: 24px;
  }

  .hero-media {
    order: 1;
  }

  .office,
  .services,
  .contact {
    padding: 64px 0;
  }

  .feature-grid,
  .services-grid,
  .about-inner,
  .maps {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 46px;
  }

  .feature {
    text-align: center;
  }

  .icon-disc {
    margin: 0 auto 4px;
  }

  .about {
    padding: 72px 0;
  }

  .about-inner {
    gap: 48px;
  }

  .about-copy {
    max-width: none;
    margin: 0;
  }

  .portrait,
  .portrait img,
  .portrait figcaption {
    width: 100%;
  }

  .portrait img {
    max-height: 680px;
    object-position: top center;
  }

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

  .maps {
    padding: 22px;
    gap: 22px;
  }

  .maps iframe {
    height: 340px;
  }

  .a11y-launcher {
    right: 16px;
    bottom: 16px;
  }

  .a11y-panel {
    right: 16px;
    bottom: 82px;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 1.375rem;
  }

  .hero-copy {
    padding-inline: 22px;
  }

  .hero-copy h1,
  .display-title {
    font-size: 2.6875rem;
  }

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

  .service-icon {
    margin-bottom: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

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