:root {
  --gold: #ffbd00;
  --gold-link: #ffbd00;
  --gold-footer: #ffbd00;
  --ink: #000;
  --muted: #444;
  --line: #d9d9d9;
  --foot: #f2f2f2;
  --toggle: #f4f4f4;
  --max: 1200px;
  --gap: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto Flex", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  background: #fff;
}

p {
  margin: 0;
  padding-bottom: 1em;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5 {
  color: #000;
  font-weight: 700;
  line-height: 1em;
  margin: 0;
  padding-bottom: 10px;
}

h1 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 15px;
}

h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 13px;
}

h2.h2-sm {
  font-size: 26px;
  margin-bottom: 10px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
  font-weight: 500;
}

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

a {
  color: var(--gold-link);
}

.phone {
  color: var(--gold-link);
}

.wrap {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.site-header .wrap {
  position: relative;
}

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

.logo img {
  width: 200px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 17px;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-socials a {
  color: var(--gold);
  font-size: 18px;
  text-transform: none;
  line-height: 1;
}

.nav-socials a:hover,
.nav-socials a.is-current {
  color: var(--gold);
  text-decoration: none;
}

.nav-langs {
  display: flex;
  align-items: center;
}

.nav-lang-select {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #000;
  line-height: 1.2;
  cursor: pointer;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23000' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") no-repeat right 8px center;
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 6px 26px 6px 8px;
}

.nav-lang-select:hover,
.nav-lang-select:focus {
  outline: none;
}

#google_translate_element {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

iframe.skiptranslate,
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt {
  display: none !important;
}

body {
  top: 0 !important;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  width: 32px;
  height: 24px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 5px;
}

.nav-toggle span {
  top: 11px;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.hero {
  position: relative;
  height: min(78vh, 56.25vw);
  min-height: 240px;
  overflow: hidden;
  background: transparent;
}

.hero--page {
  height: min(42vh, 420px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-slides,
.hero-slide,
.hero-mask {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 0.8s ease;
  background: center / cover no-repeat;
}

.hero-slide.is-on {
  opacity: 1;
  z-index: 1;
}

.hero-mask {
  z-index: 2;
  pointer-events: none;
  inset: -2px;
  background: url("/images/hero-mask.svg") center / cover no-repeat;
  transform: scale(-1, -1);
}

.hero-mask--alt {
  transform: scale(1, -1);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.5);
  cursor: pointer;
}

.hero-dots button.is-on {
  background: #fff;
}

.hero--slider {
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: #111;
  line-height: 0;
}

.hero--slider .hero-slides {
  position: relative;
  inset: auto;
}

.hero--slider .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: none;
}

.hero--slider .hero-slide.is-on {
  position: relative;
  inset: auto;
  height: auto;
}

.section {
  padding: 4% 0;
}

.section-tight {
  padding: 30px 0;
}

.center {
  text-align: center;
}

.company-name {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  line-height: 1.1em;
  margin: 0 0 19px;
  padding-bottom: 0;
}

.lead {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  line-height: 1.5;
  padding-bottom: 1em;
}

.banner-link {
  display: block;
  margin: 24px auto 0;
}

.banner-link img {
  width: 100%;
}

.banner-desktop {
  display: block;
}

.banner-mobile {
  display: none;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: var(--gap);
  align-items: start;
}

.card {
  border: 1px solid var(--line);
  padding: 28px 24px;
  text-align: center;
  height: 100%;
}

.card-icon {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 12px;
}

.page-employer .employer-grid {
  margin-top: var(--gap);
  align-items: start;
}

.page-employer .employer-stack {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.page-employer .employer-icon {
  text-align: center;
  line-height: 1;
  margin: 0 0 12px;
}

.page-employer .employer-icon__glyph {
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
  font-size: 100px;
  line-height: 1;
}

.page-employer .employer-icon--gold .employer-icon__glyph {
  color: #f4cc5c;
}

.page-employer .employer-icon--dark .employer-icon__glyph {
  color: #000;
}

.page-employer .card--service {
  height: auto;
  margin: 0;
}

.page-employer .employer-stack .toggle {
  margin: 0;
}

.page-employer .card--service h3 {
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.card-logo {
  display: block;
  width: auto;
  max-width: 160px;
  max-height: 52px;
  margin: 0 auto 12px;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: #000;
  border: 0;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  padding: 12px 28px;
  cursor: pointer;
}

.btn:hover {
  filter: brightness(0.95);
}

.btn-ghost {
  background: #fff;
}

.toggle {
  background: var(--toggle);
  border: 1px solid var(--line);
  margin: 16px 0 0;
}

.toggle summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 62px 20px 20px;
  position: relative;
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.toggle summary::-webkit-details-marker {
  display: none;
}

.toggle summary::after {
  content: "+";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
}

.toggle[open] summary::after {
  content: "–";
  line-height: 32px;
}

.toggle-body {
  padding: 0 20px 20px;
  text-align: center;
  font-size: 17px;
  line-height: 1.5;
}

.toggle-body ul {
  text-align: left;
  display: inline-block;
  margin: 8px 0;
}

.job {
  text-align: center;
}

.job img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 16px;
}

.job h3 {
  font-size: 26px;
  line-height: 1.1em;
  font-weight: 700;
  margin: 0 0 20px;
  padding-bottom: 0;
}

.job > p {
  font-size: 16px;
  line-height: 1.5;
}

.job > p.salary,
.salary {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1em;
  background: var(--gold);
  color: #000;
  padding: 15px 12px;
  margin: 0;
}

.person {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.person h3,
.person h4,
.team h3,
.team h4 {
  font-size: 22px;
  line-height: 1.1em;
  font-weight: 700;
  margin: 0;
  padding-bottom: 10px;
}

.person a,
.team a {
  text-decoration: underline;
}

.role {
  margin: 0 0 10px;
  padding-bottom: 0;
  color: #aaa;
  font-size: 15px;
}

.person p {
  font-size: 15px;
}

.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
}

.team img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 12px;
  border-radius: 50%;
}

.footer-info {
  background: #f7f7f7;
  padding: 48px 0 40px;
  border-top: 1px solid #ececec;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  text-align: center;
  padding: 0;
}

.office-grid h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1em;
  padding-bottom: 8px;
  margin: 0 0 4px;
}

.office-grid p {
  padding-bottom: 0;
  font-size: 16px;
  line-height: 1.55;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 26px;
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid #e4e4e4;
}

.socials a {
  color: var(--gold);
  line-height: 1;
}

.footer-visit {
  text-align: center;
  padding: 24px 0 0;
}

.footer-visit p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 0.4em;
}

.footer-visit p:last-child {
  padding-bottom: 0;
  color: #444;
}

.footer-map {
  width: 100%;
  line-height: 0;
  background: #e8e6e1;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 280px;
  min-height: 280px;
  border: 0;
}

.footer-legal {
  background: var(--foot);
  padding: 16px 0 20px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-legal a {
  color: var(--gold-footer);
}

.footer-legal p {
  padding-bottom: 0;
  color: #555;
}

.legal {
  max-width: 900px;
  margin: 0 auto;
}

.legal h2,
.legal h3 {
  text-align: left;
  line-height: 1.2em;
}

.legal h2 {
  font-size: 26px;
}

.landing {
  padding: 0 0 48px;
  text-align: center;
  font-size: 17px;
  line-height: 1.5;
}

.landing-hero {
  width: 100%;
  margin-bottom: 28px;
}

.landing-hero img {
  width: 100%;
}

.landing h1,
.landing h2,
.landing .xxl {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2em;
  overflow-wrap: anywhere;
}

.landing .xl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
  overflow-wrap: anywhere;
}

.landing .xl a,
.landing .xxl a {
  font-size: inherit;
  font-weight: inherit;
}

.bilingual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  text-align: left;
}

.bilingual > * {
  text-align: center;
}

.site-footer {
  background: #f7f7f7;
  padding: 0;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.footer-nav a {
  color: var(--gold);
}

[hidden] {
  display: none !important;
}

.cookie {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  width: min(280px, calc(100% - 24px));
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px;
  font-size: 13px;
  line-height: 1.4;
}

.cookie p {
  font-size: 13px;
  line-height: 1.4;
  padding-bottom: 10px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.cookie .btn {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  padding: 6px 10px;
  text-transform: none;
}

.cookie a {
  font-size: 12px;
}

.cookie-manage {
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 70;
  background: #fff;
  border: 1px solid var(--line);
  padding: 5px 8px;
  font-size: 12px;
  line-height: 1.2;
  cursor: pointer;
}

.hp-cta {
  text-align: center;
  padding: 8px 0 48px;
}

.band {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.band-photo {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
}

@media (max-width: 980px) {
  .grid-2,
  .bilingual,
  .team,
  .office-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .page-employer .employer-icon__glyph {
    font-size: 84px;
  }
}

@media (max-width: 760px) {
  .cookie {
    right: 8px;
    bottom: 44px;
    width: min(260px, calc(100% - 16px));
  }

  .hero {
    min-height: 220px;
  }

  .hero--slider {
    min-height: 0;
  }
  .nav-toggle {
    display: block;
  }

  .logo img {
    width: 150px;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    background: #fff;
    flex-direction: column;
    padding: 16px 6%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-socials {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .nav-langs {
    margin-top: 4px;
  }

  .grid-2,
  .grid-3,
  .bilingual,
  .team,
  .office-grid {
    grid-template-columns: 1fr;
  }

  .banner-desktop {
    display: none;
  }

  .banner-mobile {
    display: block;
  }

  .footer-map iframe {
    height: 240px;
    min-height: 240px;
  }

  .footer-info {
    padding: 36px 0 28px;
  }

  .office-grid {
    gap: 28px 16px;
  }
}
