@font-face {
  font-family: "Manrope";
  src: url("/fonts/Manrope-Variable.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #112b3a;
  --navy-deep: #0a202d;
  --copper: #b86543;
  --copper-dark: #985034;
  --ivory: #f5f1ea;
  --mist: #dbe2e5;
  --white: #ffffff;
  --ink: #162b37;
  --slate: #52616b;
  --border: rgba(17, 43, 58, 0.14);
  --shadow: 0 24px 70px rgba(17, 43, 58, 0.12);
  --radius: 18px;
  --container: 1220px;
  --header-height: 94px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

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

.eyebrow {
  margin-bottom: 12px;
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--ivory);
}

.eyebrow.copper {
  color: #df8d69;
}

.language-bar {
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.language-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-inner nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.language-inner a {
  min-width: 34px;
  padding: 5px 8px;
  text-align: center;
}

.language-inner a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
}

.nav-row {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  flex: 0 0 auto;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-lockup > img {
  width: 54px;
  height: 54px;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 2rem;
  font-weight: 650;
  letter-spacing: -0.055em;
}

.brand-copy small {
  margin-top: 7px;
  color: var(--copper-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
}

.main-nav a {
  position: relative;
  padding-block: 34px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  height: 2px;
  background: var(--copper);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 790px;
  padding-bottom: 110px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 32, 45, 0.97) 0%, rgba(10, 32, 45, 0.85) 42%, rgba(10, 32, 45, 0.16) 78%),
    linear-gradient(0deg, rgba(10, 32, 45, 0.46), transparent 38%);
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-block: 76px 160px;
}

.hero-copy {
  max-width: 790px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-copper {
  color: var(--white);
  background: var(--copper);
}

.button-copper:hover {
  background: var(--copper-dark);
}

.button-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(6px);
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.18);
}

.position-panel {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 185px;
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  align-items: center;
  gap: 48px;
  padding: 28px 42px;
  color: var(--navy);
  background: var(--ivory);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: var(--shadow);
}

.position-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
}

.position-panel p {
  margin-bottom: 0;
}

.position-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.position-links a {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  transition: background-color 160ms ease;
}

.position-links a:hover {
  background: var(--copper);
}

.position-links span {
  padding: 3px 6px;
  color: var(--navy);
  background: var(--ivory);
  border-radius: 4px;
  font-size: 0.68rem;
}

.stats {
  color: var(--white);
  background: var(--copper);
}

.stats-grid {
  min-height: 180px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  text-align: center;
}

.stats-grid > div {
  padding: 28px 16px;
}

.stats-grid > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.stats strong {
  display: block;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(76px, 10vw, 132px);
}

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

.section-navy {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 64px;
  margin-bottom: 54px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

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

.section-heading > p {
  max-width: 470px;
  margin-bottom: 6px;
  color: var(--slate);
}

.light-heading h2 {
  color: var(--white);
}

.light-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

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

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(17, 43, 58, 0.07);
}

.service-image {
  display: block;
  height: 280px;
  overflow: hidden;
  background: var(--mist);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.service-card:hover .service-image img {
  transform: scale(1.035);
}

.service-content {
  padding: 28px;
}

.service-content h3 {
  margin-bottom: 13px;
}

.service-content > p:not(.eyebrow) {
  min-height: 78px;
  color: var(--slate);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--copper);
  font-size: 0.88rem;
  font-weight: 700;
}

.text-link:hover {
  color: var(--copper-dark);
}

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

.job-card {
  min-height: 285px;
  padding: 30px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.job-card h3 {
  margin: 12px 0 16px;
  color: var(--white);
}

.job-meta {
  color: #df8d69;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.job-card .text-link {
  margin-top: 10px;
  color: #df8d69;
}

.light-jobs .job-card {
  color: var(--slate);
  background: var(--ivory);
  border-color: transparent;
}

.light-jobs .job-card h3 {
  color: var(--navy);
}

.section-action {
  margin-top: 36px;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
}

.why-photo {
  position: relative;
}

.why-photo::before {
  position: absolute;
  inset: 24px -24px -24px 24px;
  z-index: -1;
  background: var(--ivory);
  border-radius: var(--radius);
  content: "";
}

.why-photo img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
  border-radius: var(--radius);
}

.why-copy h2 {
  margin-bottom: 26px;
}

.check-list,
.feature-list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li,
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.check-list svg,
.feature-list svg {
  flex: 0 0 22px;
  margin-top: 2px;
  color: var(--copper);
}

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

.references-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.reference-logo {
  min-height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.reference-logo:hover {
  position: relative;
  z-index: 1;
  background: #fbfaf8;
  box-shadow: inset 0 -3px 0 var(--copper);
}

.reference-logo:nth-child(5n) {
  border-right: 0;
}

.reference-logo:nth-last-child(-n + 5) {
  border-bottom: 0;
}

.reference-logo img {
  width: auto;
  max-width: 150px;
  max-height: 66px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(15%) sepia(20%) saturate(1100%) hue-rotate(157deg) brightness(92%);
  opacity: 0.82;
}

.reference-logo.preserve-color img {
  filter: none;
  opacity: 1;
}

.scope-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.scope-card,
.process-card {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.scope-card h3,
.process-card h3 {
  margin-bottom: 15px;
}

.scope-card p,
.process-card p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.92rem;
}

.process-card > span {
  display: block;
  margin-bottom: 34px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-promise {
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy-deep);
}

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

.light-link {
  color: #df8d69;
}

.plain-list {
  display: grid;
  gap: 10px;
  margin: 25px 0;
  padding-left: 20px;
  color: var(--slate);
}

.reference-logo span {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

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

.person-card {
  overflow: hidden;
  background: var(--ivory);
  border-radius: var(--radius);
}

.person-card > img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  object-position: center top;
  background: var(--mist);
}

.person-card > div:last-child {
  padding: 24px;
}

.person-card h3 {
  margin-bottom: 7px;
}

.person-card p {
  margin: 0;
  color: var(--copper);
  font-weight: 700;
}

.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-panel {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 100px);
}

.split-panel h2 {
  max-width: 620px;
}

.split-panel > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.split-hotel {
  color: var(--white);
  background: var(--navy);
}

.split-hotel h2 {
  color: var(--white);
}

.split-jobs {
  color: var(--navy);
  background: var(--copper);
}

.split-jobs .eyebrow {
  color: var(--navy);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--slate);
  background: var(--ivory);
}

.page-hero.with-image {
  min-height: 520px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.page-hero.with-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 32, 45, 0.96), rgba(10, 32, 45, 0.45));
  content: "";
}

.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 86px;
}

.with-image .page-hero-inner {
  min-height: 520px;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
}

.page-hero.with-image h1 {
  color: var(--white);
}

.page-hero p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 1.15rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(46px, 8vw, 110px);
}

.detail-grid h2 {
  margin-bottom: 24px;
}

.feature-list {
  margin: 0;
}

.feature-list li {
  padding: 19px 0;
  font-weight: 600;
}

.contact-band {
  padding-block: 62px;
  color: var(--white);
  background: var(--navy);
}

.contact-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-band h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.contact-mini {
  display: grid;
  gap: 10px;
}

.contact-mini a,
.contact-card a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
}

.contact-mini svg,
.contact-card svg {
  flex: 0 0 20px;
  color: var(--copper);
}

.dark-links a,
.contact-card a {
  color: var(--navy);
}

.light-detail h2 {
  color: var(--white);
}

.job-hero,
.service-hero {
  padding-block: 72px;
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy);
}

.job-hero-grid,
.service-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.job-hero h1,
.service-hero h1 {
  margin: 18px 0 20px;
  color: var(--white);
}

.job-hero p:not(.eyebrow),
.service-hero p:not(.eyebrow) {
  max-width: 550px;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.job-hero img,
.service-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 42%;
  border-radius: var(--radius);
}

.job-hero .housekeeper-photo {
  aspect-ratio: 16 / 9;
  object-position: center 58%;
}

.inline-languages {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.inline-languages a {
  min-width: 40px;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--ivory);
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
}

.inline-languages a[aria-current="page"] {
  color: var(--white);
  background: var(--copper);
}

.job-facts {
  background: var(--copper);
}

.facts-grid {
  min-height: 145px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.facts-grid > div {
  padding: 22px 30px;
}

.facts-grid > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.facts-grid span,
.facts-grid strong {
  display: block;
  color: var(--white);
}

.facts-grid span {
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.facts-grid strong {
  font-size: 1.18rem;
}

.form-card {
  padding: clamp(28px, 4vw, 46px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.application-form {
  display: grid;
  gap: 18px;
}

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

.application-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.application-form input,
.application-form textarea,
.application-form select {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(17, 43, 58, 0.22);
  border-radius: 8px;
}

.application-form textarea {
  resize: vertical;
}

.application-form input:focus,
.application-form textarea:focus,
.application-form select:focus {
  border-color: var(--copper);
  outline: 2px solid rgba(184, 101, 67, 0.2);
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 500 !important;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.consent a {
  color: var(--copper);
  text-decoration: underline;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
}

.form-status.is-error {
  color: #a23228;
}

.form-status.is-success {
  color: #2f6d45;
}

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

.contact-card {
  min-height: 310px;
  padding: 30px;
  background: var(--ivory);
  border-radius: var(--radius);
}

.contact-card h2 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.contact-card > p:not(.eyebrow) {
  min-height: 60px;
  color: var(--slate);
}

.contact-card a {
  padding: 9px 0;
}

.legal-content {
  padding-top: 70px;
}

.prose {
  max-width: 820px;
}

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

.prose a {
  color: var(--copper);
  text-decoration: underline;
}

.prose ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.5rem;
  padding-left: 1.4rem;
}

.legal-table-wrap {
  margin: 1.25rem 0 2rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.legal-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
}

.legal-table th,
.legal-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--copper);
  color: #fff;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.site-footer {
  padding-top: 72px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .brand-lockup {
  margin-bottom: 22px;
}

.brand-lockup-reversed .brand-copy strong {
  color: var(--ivory);
}

.brand-lockup-reversed .brand-copy small {
  color: #df8d69;
}

.site-footer h2 {
  margin-bottom: 17px;
  color: var(--white);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer address,
.site-footer span,
.site-footer small {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  font-size: 0.85rem;
}

.site-footer small {
  line-height: 1.5;
}

.site-footer .brand-copy span,
.site-footer .contact-mini span {
  display: inline;
  margin: 0;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1020px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 90;
    top: 128px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    background: var(--white);
  }

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

  .main-nav a {
    padding: 17px 8px;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: 840px;
  }

  .position-panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-grid,
  .job-grid,
  .scope-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:last-child,
  .job-card:last-child {
    grid-column: 1 / -1;
  }

  .references-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reference-logo:nth-child(5n) {
    border-right: 1px solid var(--border);
  }

  .reference-logo:nth-child(3n) {
    border-right: 0;
  }

  .reference-logo:nth-last-child(-n + 5) {
    border-bottom: 1px solid var(--border);
  }

  .reference-logo:nth-last-child(-n + 1) {
    border-bottom: 0;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .brand-lockup > img {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 1.62rem;
  }

  .brand-copy small {
    margin-top: 5px;
    font-size: 0.6rem;
  }

  .main-nav {
    top: 112px;
  }

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

  .hero::after {
    background: linear-gradient(90deg, rgba(10, 32, 45, 0.95), rgba(10, 32, 45, 0.65));
  }

  .hero-media img {
    object-position: 62% top;
  }

  .hero-inner {
    min-height: 610px;
    padding-block: 80px 120px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .position-panel {
    position: relative;
    width: 100%;
    padding: 28px 20px;
    border-radius: 0;
  }

  .position-links {
    grid-template-columns: 1fr;
  }

  .position-links a {
    min-height: 60px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    padding-block: 20px;
  }

  .stats-grid > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }

  .section-heading,
  .detail-grid,
  .why-grid,
  .job-hero-grid,
  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-grid,
  .job-grid,
  .team-grid,
  .contact-grid,
  .scope-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child,
  .job-card:last-child {
    grid-column: auto;
  }

  .service-image {
    height: 245px;
  }

  .why-photo::before {
    inset: 14px -10px -14px 10px;
  }

  .why-photo img {
    min-height: 320px;
  }

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

  .reference-logo:nth-child(3n) {
    border-right: 1px solid var(--border);
  }

  .reference-logo:nth-child(2n) {
    border-right: 0;
  }

  .reference-logo:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .split-cta {
    grid-template-columns: 1fr;
  }

  .split-panel {
    min-height: 330px;
  }

  .contact-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .job-hero,
  .service-hero {
    padding-block: 50px;
  }

  .job-hero-grid > div,
  .service-hero-grid > div {
    order: 2;
  }

  .job-hero img,
  .service-hero img {
    order: 1;
  }

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

  .facts-grid > div + div {
    border-left: 0;
  }

  .facts-grid > div:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
  }

  .facts-grid > div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }
}

@media (max-width: 430px) {
  .brand-lockup {
    gap: 9px;
  }

  .brand-lockup > img {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 1.48rem;
  }

  .brand-copy small {
    font-size: 0.54rem;
    letter-spacing: 0.045em;
  }

  .language-inner > span {
    display: none;
  }

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

  .reference-logo,
  .reference-logo:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .reference-logo:last-child {
    border-bottom: 0;
  }

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

  .facts-grid > div:nth-child(n) {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }

  .facts-grid > div:first-child {
    border-top: 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
