:root {
  --ink: #111820;
  --graphite: #202832;
  --muted: #5d6975;
  --line: #dfe6ec;
  --paper: #fbfcfa;
  --mist: #f3f7f8;
  --navy: #0b3157;
  --blue: #2c6a93;
  --orange: #ef982b;
  --orange-dark: #c86d12;
  --green: #6f8c69;
  --white: #ffffff;
  --shadow: 0 18px 52px rgba(17, 24, 32, 0.12);
  --max: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.5;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(223, 230, 236, 0.84);
  background: rgba(251, 252, 250, 0.92);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: min(100% - 2rem, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
}

.brand-logo {
  width: auto;
  height: 38px;
  object-fit: contain;
}

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

.brand-word strong {
  font-size: 1.12rem;
  text-transform: lowercase;
}

.brand-word span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex: 1 1 auto;
}

.main-nav a {
  position: relative;
  color: var(--graphite);
  padding: 0.7rem 0.85rem;
  border-radius: 6px;
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--navy);
  background: rgba(239, 152, 43, 0.1);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 0 0 auto;
}

.language-switcher button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  box-shadow: 0 5px 18px rgba(17, 24, 32, 0.07);
}

.language-switcher button[aria-pressed="true"] {
  border-color: var(--orange);
  outline: 2px solid rgba(239, 152, 43, 0.2);
}

.section {
  padding: 6.2rem 0;
}

.section--tight {
  padding: 4.3rem 0;
}

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

.section--dark {
  background: var(--ink);
  color: var(--white);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--orange-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  max-width: 820px;
  font-size: 3.15rem;
  line-height: 1.05;
}

.section-title.centered {
  margin-inline: auto;
  text-align: center;
}

.section-lede {
  max-width: 760px;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-lede.centered {
  margin-inline: auto;
  text-align: center;
}

.accent {
  color: var(--orange);
}

.hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(7, 20, 32, 0.78), rgba(7, 20, 32, 0.35) 48%, rgba(7, 20, 32, 0.12)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(17, 24, 32, 0.4), transparent);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2.5rem 0;
}

.hero--fullscreen .hero__inner {
  padding: 2rem 0 4.75rem;
}

.hero__content {
  max-width: 780px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero__kicker::before {
  content: "";
  width: 44px;
  height: 2px;
  background: var(--orange);
}

.hero--fullscreen {
  min-height: calc(100svh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  box-sizing: border-box;
}

.hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: 3.65rem;
  line-height: 0.98;
}

.hero p {
  max-width: 650px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 500;
}

.button--primary {
  background: var(--orange);
  color: #1b1308;
}

.button--primary:hover {
  background: #f3a747;
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

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

.button--line {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  z-index: 2;
  display: grid;
  justify-items: center;
  transform: translateX(-50%);
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.scroll-hint.is-hidden {
  opacity: 0;
}

.scroll-hint__mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  position: relative;
}

.scroll-hint__wheel {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.88);
  animation: scroll-wheel 1.8s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  70% {
    opacity: 0.15;
    transform: translateY(12px);
  }

  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 1.6rem 1.2rem;
  border-left: 1px solid var(--line);
}

.stat:first-child {
  border-left: 0;
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 2.05rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 3.5rem;
  align-items: center;
}

.split--reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.split__media {
  position: relative;
}

.image-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--line);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.65rem 0.8rem;
  border-radius: 6px;
  background: rgba(17, 24, 32, 0.78);
  color: var(--white);
  font-size: 0.86rem;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.75rem;
  color: var(--graphite);
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 0.18rem;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 44%, var(--white) 45% 55%, transparent 56%),
    var(--orange);
}

.section--dark .check-list li {
  color: rgba(255, 255, 255, 0.84);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.4rem;
}

.service-card,
.process-card,
.contact-card,
.job-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 260px;
  padding: 1.45rem;
  display: grid;
  align-content: start;
  gap: 1rem;
}

.service-card__icon,
.contact-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: rgba(239, 152, 43, 0.13);
  color: var(--navy);
  display: grid;
  place-items: center;
}

.service-card h3,
.process-card h3,
.contact-card h3,
.job-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.service-card p,
.process-card p,
.contact-card p,
.job-card p {
  margin: 0;
  color: var(--muted);
}

.feature-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.feature-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.feature-band__image {
  min-height: 420px;
  background-image: var(--feature-image);
  background-position: center;
  background-size: cover;
}

.feature-band__content {
  align-self: center;
  padding: 5rem min(6vw, 5rem);
}

.feature-band .section-lede,
.section--dark .section-lede {
  color: rgba(255, 255, 255, 0.74);
}

.feature-band .check-list li {
  color: rgba(255, 255, 255, 0.88);
}

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

.process-card {
  padding: 1.35rem;
  display: grid;
  gap: 0.5rem;
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0.5rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cta-panel h2,
.cta-panel p {
  margin: 0;
}

.cta-panel p {
  color: var(--muted);
  margin-top: 0.45rem;
}

.page-hero {
  min-height: 54svh;
}

.page-hero .hero__content {
  max-width: 720px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-grid .gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 620px;
}

@media (max-width: 1080px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid .gallery-feature {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 460px;
  }
}

@media (max-width: 620px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .gallery-feature {
    grid-column: span 1;
    min-height: 360px;
  }
}

.gallery-feature,
.gallery-tile {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--line);
  color: var(--white);
  text-align: left;
}

.gallery-feature img,
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-feature:hover img,
.gallery-tile:hover img {
  transform: scale(1.035);
}

.gallery-feature {
  min-height: 620px;
}

.gallery-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-tile {
  min-height: 300px;
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.25rem;
  background: linear-gradient(0deg, rgba(17, 24, 32, 0.82), transparent);
}

.gallery-caption h3,
.gallery-caption .gallery-title,
.gallery-caption p {
  margin: 0;
}

.gallery-caption .gallery-title {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
}

.gallery-caption p {
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.76);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  place-items: center;
  padding: 1.2rem;
  background: rgba(10, 15, 20, 0.88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox__content {
  width: min(96vw, 1120px);
  max-height: 90svh;
  display: grid;
  gap: 0.8rem;
}

.lightbox img {
  width: 100%;
  max-height: 80svh;
  object-fit: contain;
  border-radius: 8px;
  background: var(--ink);
}

.lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
}

.lightbox__close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.2rem;
}

.job-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  margin-top: 3rem;
}

.job-card {
  padding: 1.5rem;
}

.job-card--highlight {
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
}

.job-card--highlight p {
  color: rgba(255, 255, 255, 0.74);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background: rgba(239, 152, 43, 0.13);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.85rem;
}

.job-card--highlight .tag {
  color: var(--white);
  background: rgba(239, 152, 43, 0.22);
}

.contact-section-intro {
  margin-bottom: 2.75rem;
}

.contact-section-intro .section-title {
  margin-bottom: 1rem;
}

.contact-section-intro .section-lede {
  margin-top: 0.85rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 0;
}

.contact-card {
  padding: 1.75rem;
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.contact-card h3 {
  margin-bottom: 0.15rem;
}

.contact-card p {
  margin: 0;
  line-height: 1.55;
}

.contact-card a {
  color: var(--navy);
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.42rem;
}

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

.form-field label {
  color: var(--graphite);
  font-weight: 800;
  font-size: 0.9rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 0.82rem 0.88rem;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.form-status {
  color: var(--muted);
  margin: 0;
}

.site-footer {
  background: #0f151b;
  color: var(--white);
}

.site-footer__grid {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 3.6rem 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 2rem;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2,
.site-footer h3,
.site-footer p {
  margin: 0;
}

.site-footer .brand-logo {
  filter: brightness(0) invert(1);
}

.site-footer .brand-word strong {
  color: var(--white);
}

.site-footer h3 {
  margin-bottom: 0.8rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  place-items: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

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

.social-link--linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #ffffff;
}

.social-link--facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.form-field input[readonly] {
  background: var(--mist);
  color: var(--graphite);
  cursor: default;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .section-title {
    font-size: 2.65rem;
  }

  .service-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    min-height: auto;
    padding: 0.75rem 0;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  :root {
    --header-height: 68px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero:not(.hero--fullscreen),
  .page-hero {
    min-height: 70svh;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.05rem;
  }


  .stats-grid,
  .split,
  .split--reverse,
  .feature-band__grid,
  .gallery-grid,
  .job-layout {
    grid-template-columns: 1fr;
  }

  .stat {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .stat:first-child {
    border-top: 0;
  }

  .feature-band__content {
    padding: 4rem 1rem;
  }

  .gallery-feature {
    min-height: 460px;
  }

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

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 4.2rem 0;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero__inner {
    padding: 4.2rem 0;
  }

  .hero--fullscreen .hero__inner {
    padding: 1.5rem 0 4rem;
  }

  .brand-word span {
    display: none;
  }

  .service-grid,
  .contact-grid,
  .gallery-stack,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .image-frame img {
    min-height: 320px;
  }

  .gallery-tile {
    min-height: 260px;
  }

  .footer-bottom .container {
    display: grid;
  }
}

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

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

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