:root {
  --red: #e30613;
  --ink: #111318;
  --paper: #fff;
  --line: rgba(17, 19, 24, 0.12);
  --muted: #6c717a;
  --dark: #101116;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open,
body.projects-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 58px);
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  gap: 24px;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  color: #fff;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;
}
.site-header.is-solid {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(17, 19, 24, 0.1);
  color: var(--ink);
  backdrop-filter: blur(14px);
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 118px;
  height: 48px;
}
.brand img {
  position: absolute;
  left: 0;
  width: 116px;
  max-height: 48px;
  object-fit: contain;
  transition: opacity 0.22s ease;
}
.brand .logo-color {
  opacity: 0;
}
.brand .logo-white {
  opacity: 1;
}
.site-header.is-solid .brand .logo-color {
  opacity: 1;
}
.site-header.is-solid .brand .logo-white {
  opacity: 0;
}
.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 3.8vw, 50px);
  height: 100%;
}
.site-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
}
.site-header.is-solid .site-nav a {
  color: rgba(17, 19, 24, 0.76);
}
.site-nav a:hover {
  color: var(--red);
}
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 260px;
  padding: 8px 0;
  background: rgba(12, 13, 16, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-dropdown a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.06em;
}
.nav-dropdown a:last-child {
  border-bottom: 0;
}
.nav-dropdown span {
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
}
.nav-dropdown strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 520;
  text-transform: uppercase;
}
.nav-subitem {
  position: relative;
}
.nav-flyout {
  position: absolute;
  top: -9px;
  left: 100%;
  min-width: 230px;
  padding: 8px 0;
  background: rgba(12, 13, 16, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  backdrop-filter: blur(18px);
}
.nav-subitem:hover .nav-flyout,
.nav-subitem:focus-within .nav-flyout {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav-flyout a {
  display: block;
  padding: 12px 17px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.11em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.language-switch {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.language-switch a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-header.is-solid .language-switch a {
  color: rgba(17, 19, 24, 0.68);
}
.language-switch span {
  font-size: 13px;
}
.menu-trigger {
  display: none;
  justify-self: end;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(17, 19, 24, 0.18);
  background: rgba(255, 255, 255, 0.18);
  place-content: center;
  gap: 5px;
  cursor: pointer;
}
.menu-trigger span {
  width: 16px;
  height: 1px;
  background: var(--ink);
}

.menu-overlay {
  position: fixed;
  inset: clamp(16px, 3vw, 38px);
  z-index: 80;
  padding: clamp(22px, 3vw, 42px) clamp(20px, 5vw, 72px);
  background: rgba(15, 16, 21, 0.96);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px) scale(0.985);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 100vmax rgba(0, 0, 0, 0.58),
    0 38px 90px rgba(0, 0, 0, 0.34);
  overflow: auto;
  transition:
    opacity 0.36s ease,
    visibility 0.36s ease,
    transform 0.36s ease;
}
.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-top img {
  width: 172px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.95);
}
.menu-top button {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  padding: 10px 18px;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.menu-links {
  width: min(1040px, 100%);
  margin-top: min(9vh, 82px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.menu-links a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 270px;
  gap: 22px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    color 0.22s ease,
    padding-left 0.22s ease;
}
.menu-links a:hover {
  color: var(--red);
  padding-left: 10px;
}
.menu-links small {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}
.menu-links span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5.8vw, 76px);
  line-height: 1;
}
.menu-links em {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-style: normal;
}
.menu-contact {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 34px;
  display: grid;
  gap: 14px;
  color: rgba(255, 255, 255, 0.64);
  text-align: right;
  font-size: 13px;
  line-height: 1.6;
}
.menu-contact strong {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.premium-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #14161b;
}
.hero-layer {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  opacity: 0;
  transform: scale(1.012);
  transition:
    opacity 1.1s ease,
    transform 6.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-layer.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-light {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.06) 54%, rgba(0, 0, 0, 0.1)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0) 42%);
}
.hero-brand-mark {
  display: none;
}
.floating-word {
  display: none;
}
@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-30px, 18px, 0);
  }
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 48px));
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(86px, 12vh, 126px);
  color: #fff;
}
.hero-copy {
  max-width: 620px;
}
.hero-copy small {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-copy h1 {
  margin: 14px 0 12px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: 0;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.26);
}
.hero-copy p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.76);
  letter-spacing: 0.03em;
}
.hero-copy a {
  display: inline-flex;
  margin-top: 22px;
  padding: 9px 0 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.text-fly .hero-copy small,
.text-fly .hero-copy h1,
.text-fly .hero-copy p,
.text-fly .hero-copy a {
  animation: flyIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.text-fly .hero-copy h1 {
  animation-delay: 0.05s;
}
.text-fly .hero-copy p {
  animation-delay: 0.1s;
}
.text-fly .hero-copy a {
  animation-delay: 0.15s;
}
@keyframes flyIn {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}
.hero-panel {
  display: none;
}
.hero-panel > p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.hero-list {
  max-height: 355px;
  overflow: auto;
  padding-right: 4px;
}
.hero-list {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.34) transparent;
}
.hero-list::-webkit-scrollbar {
  width: 4px;
}
.hero-list::-webkit-scrollbar-track {
  background: transparent;
}
.hero-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.34);
  border-radius: 999px;
}
.hero-list button {
  width: 100%;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 9px;
  align-items: baseline;
  padding: 11px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.hero-list button.active {
  color: #fff;
}
.hero-list span {
  color: var(--red);
  font-size: 11px;
}
.hero-list strong {
  font-size: 14px;
  font-weight: 600;
}
.hero-list small {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.48);
}
.hero-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.hero-controls.fkn-hero-controls {
  position: absolute;
  z-index: 4;
  right: clamp(22px, 5vw, 70px);
  bottom: 44px;
  margin: 0;
}
.hero-controls button {
  width: 42px;
  height: 42px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(0, 0, 0, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}
.hero-controls span {
  min-width: 54px;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.76);
  letter-spacing: 0.12em;
}
.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 42px;
  margin: 12px auto 0;
  background: rgba(255, 255, 255, 0.48);
}

.sales-scene {
  min-height: 92svh;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
  padding: 90px max(24px, calc((100vw - 1180px) / 2));
}
.sales-scene img {
  width: 100%;
  height: 68vh;
  object-fit: cover;
}
.sales-copy small {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.sales-copy h2 {
  margin: 18px 0 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 400;
}
.sales-copy a {
  display: inline-flex;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-portfolio {
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  background: var(--paper);
}
.home-portfolio-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.home-portfolio-head small {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.home-portfolio-head h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
}
.home-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(17, 19, 24, 0.12);
}
.home-portfolio-grid a {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.home-portfolio-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.home-portfolio-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.04));
}
.home-portfolio-grid a:hover::before {
  transform: scale(1.018);
}
.home-portfolio-grid span,
.home-portfolio-grid strong,
.home-portfolio-grid small {
  position: relative;
  z-index: 1;
}
.home-portfolio-grid span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}
.home-portfolio-grid strong {
  margin-top: 12px;
  font-size: 28px;
  font-weight: 300;
}
.home-portfolio-grid small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.portfolio-link {
  display: inline-flex;
  margin-top: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.discover {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--dark);
}
.discover a {
  position: relative;
  min-height: 430px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.discover a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.02));
  transition: background 0.28s ease;
}
.discover a:hover::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.02));
}
.discover span,
.discover strong,
.discover small {
  position: relative;
  z-index: 1;
}
.discover span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}
.discover strong {
  margin-top: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}
.discover small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
}

.projects-hero {
  position: relative;
  min-height: 70svh;
  background: var(--dark);
  overflow: hidden;
}
.projects-hero-bg {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
}
.projects-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.1));
}
.projects-hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  min-height: 70svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 56px;
  color: #fff;
}
.projects-hero-copy small {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.72);
}
.projects-hero-copy h1 {
  max-width: 760px;
  margin: 16px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 1;
  font-weight: 400;
}
.projects-main {
  padding-top: 112px;
}
.projects-page-title {
  text-align: center;
  margin-bottom: 44px;
}
.projects-page-title small {
  color: var(--red);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.projects-page-title h1 {
  margin: 14px 0 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0;
}
.project-directory {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 88px;
}
.fkn-projects {
  width: min(1240px, calc(100% - 48px));
  padding-top: 42px;
}
.project-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin: 0 0 42px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.project-filter-bar button,
.project-tabs button {
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  padding: 8px 0;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.project-filter-bar button.active,
.project-tabs button.active {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  background: transparent;
  align-items: start;
}
.project-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #ddd;
  color: #fff;
}
.portfolio-grid .project-card {
  min-height: 0;
  aspect-ratio: 754 / 503;
  background: #f4f4f4;
  color: #fff;
}
.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.project-card:hover img {
  transform: scale(1.012);
}
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.02));
}
.project-portfolio-card::after {
  background: rgba(10, 11, 14, 0);
  transition: background 0.28s ease;
}
.project-portfolio-card:hover::after {
  background: rgba(10, 11, 14, 0.58);
}
.project-card > span {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 22px;
  color: var(--red);
  font-weight: 800;
}
.project-card div {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 8px;
}
.project-portfolio-card div {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  transform: translateY(calc(100% - 3px));
  transition: transform 0.28s ease;
}
.project-portfolio-card:hover div {
  transform: translateY(0);
}
.project-card small {
  color: rgba(255, 255, 255, 0.7);
}
.project-portfolio-card small {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.project-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}
.project-portfolio-card strong {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  font-size: 20px;
  font-weight: 450;
}
.project-card em {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}
.project-portfolio-card em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.site-footer {
  display: grid;
  grid-template-columns: 170px 1fr 1fr 1fr;
  gap: 30px;
  padding: 34px clamp(22px, 4vw, 58px);
  background: var(--paper);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.site-footer img {
  width: 142px;
}
.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero {
  min-height: 72svh;
  padding: 150px max(24px, calc((100vw - 1180px) / 2)) 72px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: end;
}
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.02;
}
.page-hero h1 {
  font-size: clamp(48px, 7vw, 88px);
}
.page-hero p {
  color: var(--muted);
  line-height: 1.7;
}
.eyebrow {
  display: block;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow.dark {
  color: var(--red);
}
.page-image {
  min-height: 56svh;
  background: center / cover no-repeat;
}
.content-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.content-grid article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.content-grid h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}
.content-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.activity-hero {
  min-height: 68svh;
}
.activity-image {
  background-position: center;
}
.activity-list {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0 96px;
  border-top: 1px solid var(--line);
}
.activity-list article {
  display: grid;
  grid-template-columns: 80px minmax(220px, 0.7fr) 1fr;
  gap: 38px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.activity-list span {
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
}
.activity-list h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: 0;
}
.activity-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 178px 0 58px;
  border-bottom: 1px solid var(--line);
}
.contact-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: 0;
}
.contact-directory {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 42px;
  padding: 38px 0 54px;
  border-bottom: 1px solid var(--line);
}
.contact-directory article {
  display: grid;
  gap: 14px;
  align-content: start;
}
.contact-directory small,
.contact-location small,
.contact-form span {
  color: var(--red);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.contact-directory address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.75;
}
.contact-directory a {
  color: var(--ink);
  font-size: 18px;
  font-weight: 300;
}
.contact-layout {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 96px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}
.contact-location {
  min-height: 420px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.contact-location strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0;
}
.contact-location p {
  max-width: 460px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.75;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 24px;
}
.contact-form label {
  display: grid;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.contact-form label.full {
  grid-column: 1 / -1;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 17px;
  outline: 0;
  resize: vertical;
}
.contact-form button {
  justify-self: start;
  min-width: 150px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: #fff;
  padding: 14px 24px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.contact-form button:hover {
  background: var(--red);
  border-color: var(--red);
}

.detail-hero {
  min-height: calc(100svh - 86px);
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  background: var(--dark);
  color: #fff;
}
.detail-media {
  position: relative;
  min-height: calc(100svh - 86px);
  overflow: hidden;
}
.detail-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-copy {
  padding: 120px clamp(24px, 5vw, 76px) 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.detail-copy h1 {
  font-size: clamp(48px, 7vw, 86px);
}
.detail-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.facts div {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 12px;
}
.facts small {
  color: rgba(255, 255, 255, 0.5);
}
.facts strong {
  display: block;
  margin-top: 6px;
}
.gallery {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}
.gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.gallery img:first-child {
  grid-row: span 2;
  height: 736px;
}
.project-slider {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}
.project-slider-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}
.project-slider-head small {
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.project-slider-head h2 {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  font-weight: 400;
}
.project-slider-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}
.project-slider-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}
.project-slider-controls span {
  min-width: 64px;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.project-slider-stage {
  position: relative;
  min-height: 660px;
  background: #ddd;
  overflow: hidden;
}
.project-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease;
}
.project-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.project-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-slide figcaption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.36);
}
.project-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(116px, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.project-thumbs button {
  position: relative;
  height: 74px;
  padding: 0;
  border: 0;
  background: #ddd;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.58;
  transition: opacity 0.2s ease;
}
.project-thumbs button.active {
  opacity: 1;
}
.project-thumbs button.active::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--red);
}
.project-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-project-bar {
  position: sticky;
  top: 0;
  z-index: 34;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: center;
  min-height: 54px;
  padding: 0 clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(17, 19, 24, 0.1);
  backdrop-filter: blur(16px);
}
.detail-project-bar > a {
  color: rgba(17, 19, 24, 0.7);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.detail-project-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scrollbar-width: none;
}
.detail-project-track::-webkit-scrollbar {
  display: none;
}
.detail-project-track a {
  flex: 0 0 auto;
  color: rgba(17, 19, 24, 0.52);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.detail-project-track a.active {
  color: var(--red);
}
.project-end-nav {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 88px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.project-end-nav a {
  display: grid;
  gap: 9px;
  min-height: 132px;
  align-content: center;
  padding: 26px 30px;
}
.project-end-nav a + a {
  text-align: right;
  border-left: 1px solid var(--line);
}
.project-end-nav small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.project-end-nav strong {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  letter-spacing: 0;
}
.edge-project-nav {
  position: fixed;
  inset: 50% 0 auto;
  z-index: 35;
  pointer-events: none;
}
.edge-project-nav a {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.62);
  mix-blend-mode: difference;
  pointer-events: auto;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.edge-project-nav strong {
  max-width: 140px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.edge-prev {
  left: 18px;
  writing-mode: vertical-rl;
}
.edge-next {
  right: 18px;
  writing-mode: vertical-rl;
}
.floating-projects {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
}
.floating-projects-toggle {
  width: 112px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(12, 13, 16, 0.42);
  color: #fff;
  backdrop-filter: blur(16px);
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.floating-projects-panel {
  position: absolute;
  right: 0;
  bottom: 48px;
  width: 310px;
  max-height: min(520px, calc(100svh - 120px));
  padding: 16px;
  background: rgba(12, 13, 16, 0.86);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
  overflow: auto;
}
.floating-projects.is-open .floating-projects-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.floating-projects-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.floating-projects-head button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.floating-projects-list {
  display: grid;
}
.floating-projects-list a {
  display: grid;
  gap: 5px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.floating-projects-list small {
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.floating-projects-list strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 400;
}
.floating-projects-list a.active strong,
.floating-projects-list a.active small {
  color: var(--red);
}
.park-info {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 24px;
}
.section-intro {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 54px;
  align-items: end;
  margin-bottom: 34px;
}
.section-intro small {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.section-intro h2 {
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1;
  font-weight: 400;
}
.section-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.campaign-strip {
  display: grid;
  grid-template-columns: 1fr 1.15fr auto;
  gap: 26px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.campaign-strip small {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.campaign-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}
.campaign-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.campaign-strip a {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 46px 0 34px;
}
.feature-row article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.feature-row span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}
.feature-row strong {
  display: block;
  margin-top: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.08;
}
.feature-row p {
  color: var(--muted);
  line-height: 1.65;
}
.brochure-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}
.brochure-grid img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  background: #ddd;
}
.brochure-grid img:first-child {
  grid-row: span 2;
  min-height: 856px;
}
.contact-block {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-block h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 400;
  margin: 0;
}
.contact-block address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.8;
}
.contact-block a {
  border-bottom: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-header {
    min-height: auto;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    gap: 12px 18px;
    padding: 14px 18px 12px;
  }
  .brand img {
    width: 104px;
  }
  .language-switch {
    grid-column: 2;
    grid-row: 1;
  }
  .site-nav {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px 20px;
    height: auto;
  }
  .site-nav a {
    font-size: 11px;
  }
  .nav-item {
    height: auto;
  }
  .nav-dropdown {
    left: 0;
    transform: translateY(8px);
    min-width: 230px;
  }
  .nav-flyout {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    background: transparent;
    padding: 0 0 8px 22px;
  }
  .has-dropdown:hover .nav-dropdown,
  .has-dropdown:focus-within .nav-dropdown {
    transform: translateY(0);
  }
  .menu-overlay {
    inset: 12px;
    padding: 20px;
  }
  .menu-top img {
    width: 142px;
  }
  .menu-links a {
    grid-template-columns: 40px 1fr;
  }
  .menu-links em {
    display: none;
  }
  .menu-contact {
    position: static;
    margin-top: 40px;
    text-align: left;
  }
  .premium-hero {
    min-height: calc(100svh - 112px);
  }
  .hero-layer,
  .hero-light {
    inset: 0;
  }
  .hero-content {
    width: calc(100% - 36px);
    min-height: calc(100svh - 112px);
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 108px;
  }
  .hero-copy h1 {
    font-size: 48px;
    line-height: 0.96;
  }
  .hero-brand-mark {
    top: 28px;
    right: 18px;
    font-size: 86px;
  }
  .hero-controls.fkn-hero-controls {
    left: 18px;
    right: auto;
    bottom: 28px;
  }
  .scroll-cue {
    display: none;
  }
  .hero-panel {
    padding: 16px;
  }
  .hero-list {
    max-height: 210px;
  }
  .hero-list button {
    grid-template-columns: 30px 1fr;
  }
  .hero-list small {
    display: none;
  }
  .floating-word {
    display: none;
  }
  .sales-scene {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 70px 18px;
    gap: 32px;
  }
  .sales-scene img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .home-portfolio {
    padding: 64px 18px;
  }
  .home-portfolio-head {
    display: grid;
    align-items: start;
  }
  .home-portfolio-grid {
    grid-template-columns: 1fr;
  }
  .home-portfolio-grid a {
    min-height: 310px;
  }
  .discover {
    grid-template-columns: 1fr;
  }
  .discover a {
    min-height: 290px;
  }
  .projects-hero {
    min-height: 64svh;
  }
  .projects-hero-bg,
  .projects-hero-shade {
    inset: 0;
  }
  .projects-hero-copy {
    width: calc(100% - 36px);
    min-height: 64svh;
  }
  .project-directory {
    width: calc(100% - 36px);
    padding: 46px 0 68px;
  }
  .project-tabs {
    justify-content: flex-start;
    gap: 4px 16px;
  }
  .project-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .project-card {
    min-height: 360px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    padding: 28px 18px;
  }
  .page-hero,
  .detail-hero,
  .contact-block {
    grid-template-columns: 1fr;
  }
  .page-hero {
    min-height: auto;
    padding: 116px 18px 54px;
    gap: 30px;
  }
  .page-hero h1 {
    font-size: 42px;
  }
  .content-grid {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    padding: 60px 0;
  }
  .activity-list {
    width: calc(100% - 36px);
    padding: 58px 0 70px;
  }
  .activity-list article {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }
  .contact-hero {
    width: calc(100% - 36px);
    padding: 126px 0 44px;
  }
  .contact-hero h1 {
    font-size: 44px;
  }
  .contact-directory {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 0 44px;
  }
  .contact-layout {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 52px 0 72px;
  }
  .contact-location {
    min-height: auto;
    padding: 30px 0;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .detail-hero {
    min-height: auto;
  }
  .detail-media {
    min-height: 52svh;
    order: -1;
  }
  .detail-copy {
    padding: 48px 18px;
  }
  .facts {
    grid-template-columns: 1fr;
  }
  .gallery {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    padding: 60px 0;
  }
  .gallery img,
  .gallery img:first-child {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .project-slider {
    width: calc(100% - 36px);
    padding: 58px 0;
  }
  .project-slider-head {
    display: grid;
    gap: 18px;
    align-items: start;
  }
  .project-slider-stage {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }
  .project-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
  .project-thumbs button {
    height: 58px;
  }
  .edge-project-nav {
    display: none;
  }
  .floating-projects {
    right: 16px;
    bottom: 16px;
  }
  .floating-projects-panel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    max-height: 76svh;
    padding: 20px 22px 26px;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    transform: translateY(100%);
  }
  .floating-projects.is-open .floating-projects-panel {
    transform: none;
  }
  .detail-project-bar {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding: 12px 18px;
  }
  .detail-project-track {
    gap: 16px;
  }
  .project-end-nav {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    margin-bottom: 66px;
  }
  .project-end-nav a {
    min-height: 108px;
    padding: 22px 0;
  }
  .project-end-nav a + a {
    text-align: left;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .park-info {
    width: calc(100% - 36px);
    padding: 60px 0 8px;
  }
  .section-intro,
  .campaign-strip,
  .feature-row,
  .brochure-grid {
    grid-template-columns: 1fr;
  }
  .section-intro {
    gap: 18px;
  }
  .campaign-strip {
    align-items: start;
  }
  .campaign-strip a {
    justify-self: start;
    white-space: normal;
  }
  .feature-row {
    gap: 18px;
    padding: 34px 0 26px;
  }
  .brochure-grid img,
  .brochure-grid img:first-child {
    min-height: auto;
    height: auto;
    aspect-ratio: 4 / 5;
  }
  .contact-block {
    width: calc(100% - 36px);
    padding: 60px 0;
  }
}

:root {
  --font-body: "Avenir Next", "Segoe UI", Arial, sans-serif;
  --font-display: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}
body {
  font-family: var(--font-body);
}
body.lightbox-open {
  overflow: hidden;
}
.site-header {
  min-height: 76px;
  grid-template-columns: 148px minmax(0, 1fr) 132px;
}
.site-nav {
  gap: clamp(20px, 3.1vw, 42px);
}
.site-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  transition: color 0.18s ease;
}
.site-header.is-solid .site-nav a:hover,
.site-nav a:hover {
  color: var(--red);
}
.language-switch {
  gap: 9px;
}
.language-switch a {
  gap: 0;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
}
.language-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.45);
}
.site-header.is-solid .language-divider {
  background: rgba(17, 19, 24, 0.26);
}
.nav-dropdown {
  top: calc(100% - 1px);
  left: 0;
  min-width: 238px;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 19, 24, 0.1);
  transform: translateY(8px);
  backdrop-filter: blur(18px);
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  grid-template-columns: none;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
  color: rgba(17, 19, 24, 0.82);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
}
.nav-dropdown strong {
  color: inherit;
  font-size: 11px;
  font-weight: 700;
}
.nav-dropdown a:hover,
.nav-flyout a:hover {
  color: var(--red);
}
.nav-flyout {
  top: -11px;
  left: calc(100% - 1px);
  min-width: 220px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 19, 24, 0.1);
  transform: translateX(6px);
  backdrop-filter: blur(18px);
}
.nav-flyout a {
  color: rgba(17, 19, 24, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
}

.hero-content {
  width: 100%;
  margin: 0;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0 clamp(28px, 7vw, 112px) clamp(92px, 14vh, 142px);
}
.hero-copy {
  max-width: 560px;
}
.hero-copy small:empty {
  display: none;
}
.hero-copy h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.02;
  font-weight: 320;
  letter-spacing: 0;
}
.hero-copy p {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-copy a {
  margin-top: 24px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
}
.hero-light {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.42),
    rgba(0, 0, 0, 0.06) 54%,
    rgba(0, 0, 0, 0.02)
  );
}
.scroll-cue {
  width: 34px;
  height: 54px;
  left: clamp(28px, 7vw, 112px);
  bottom: 30px;
  transform: none;
  writing-mode: initial;
  font-size: 0;
}
.scroll-cue::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.72);
}
.scroll-cue::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 35px;
  width: 11px;
  height: 11px;
  border-right: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  transform: rotate(45deg);
  margin: 0;
  background: transparent;
}

.sales-scene {
  min-height: 82svh;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 76px);
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sales-copy {
  padding: clamp(42px, 7vw, 92px) clamp(24px, 5vw, 76px);
}
.sales-copy small,
.standard-page-title small,
.section-heading-lite small {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sales-copy h2 {
  margin: 18px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(27px, 3.1vw, 44px);
  line-height: 1.16;
  font-weight: 320;
  letter-spacing: 0;
}
.sales-copy address {
  margin: 0 0 22px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}
.sales-copy a {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.sales-scene img {
  width: 100%;
  height: 82svh;
  object-fit: cover;
  object-position: center;
}
.home-portfolio,
.discover {
  display: none;
}
.home-about-strip {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0 104px;
  display: grid;
  grid-template-columns: 0.35fr 0.9fr 0.75fr;
  gap: 48px;
  border-bottom: 1px solid var(--line);
}
.home-about-strip small {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.home-about-strip h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 320;
}
.home-about-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.home-about-strip a {
  grid-column: 2;
  justify-self: start;
  margin-top: -18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.standard-page-title {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 138px 0 42px;
  border-bottom: 1px solid var(--line);
}
.standard-page-title h1 {
  max-width: 760px;
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.04;
  font-weight: 320;
  letter-spacing: 0;
}
.standard-page-title p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}
.text-page-title {
  padding-bottom: 54px;
}
.editorial-page,
.sector-list {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 62px 0 96px;
}
.editorial-page article {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 54px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.editorial-page h2,
.sector-list h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.1vw, 42px);
  line-height: 1.1;
  font-weight: 320;
}
.editorial-page p,
.sector-list p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
}
.sector-list article {
  display: grid;
  grid-template-columns: 74px 0.55fr 1fr;
  gap: 36px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.sector-list span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.projects-main {
  padding-top: 0;
}
.fkn-projects {
  padding-top: 0;
}
.project-grid {
  gap: 38px 30px;
}
.project-card,
.portfolio-grid .project-card,
.project-portfolio-card {
  position: static;
  display: block;
  min-height: 0;
  aspect-ratio: auto;
  overflow: visible;
  background: transparent;
  color: var(--ink);
}
.project-card::after,
.project-portfolio-card::after {
  display: none;
}
.project-card > .project-card-image {
  display: block;
  position: relative;
  inset: auto;
  top: auto;
  left: auto;
  aspect-ratio: 754 / 503;
  overflow: hidden;
  background: #f4f4f4;
  color: inherit;
  font-weight: inherit;
}
.project-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-card-image img {
  transform: scale(1.018);
}
.project-card > .project-card-caption,
.project-portfolio-card div {
  position: static;
  display: grid;
  gap: 6px;
  padding: 16px 0 0;
  background: transparent;
  transform: none;
  color: var(--ink);
}
.project-portfolio-card:hover div {
  transform: none;
}
.project-card-caption small {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.project-card-caption strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 420;
}
.project-card-caption em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}
.project-filter-bar {
  justify-content: flex-start;
  margin-bottom: 42px;
}
.project-filter-bar button {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-title h1 {
  font-size: clamp(28px, 3.8vw, 46px);
}
.contact-directory {
  grid-template-columns: 1fr 1fr 1fr;
}
.contact-layout {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
}
.contact-map {
  min-height: 480px;
  border: 1px solid var(--line);
  background: #f4f4f4;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  filter: grayscale(1);
}
.contact-form {
  grid-template-columns: 1fr;
  gap: 24px;
}
.contact-form label.full {
  grid-column: auto;
}
.contact-form button {
  justify-self: center;
}

.mini-breadcrumb {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 118px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.mini-breadcrumb a::after {
  content: "\2192";
  margin-left: 10px;
  color: rgba(17, 19, 24, 0.36);
}
.mini-breadcrumb span {
  color: var(--ink);
}
.project-detail-intro {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0 44px;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 58px;
  border-top: 1px solid var(--line);
}
.project-detail-intro small {
  grid-column: 1 / -1;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.project-detail-intro h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  font-weight: 320;
}
.project-detail-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.project-detail-intro .facts {
  grid-column: 2;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 8px;
}
.project-detail-intro .facts div {
  border-top: 1px solid var(--line);
}
.project-detail-intro .facts small {
  color: var(--muted);
  letter-spacing: 0.08em;
}
.project-detail-intro .facts strong {
  color: var(--ink);
}
.detail-wide-image {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  height: min(68svh, 720px);
  overflow: hidden;
}
.detail-wide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-gallery-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 74px 0 92px;
}
.section-heading-lite {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}
.section-heading-lite h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 320;
}
.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.detail-gallery-item {
  display: block;
  border: 0;
  padding: 0;
  background: #f4f4f4;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: zoom-in;
}
.detail-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.detail-gallery-item:hover img {
  transform: scale(1.018);
}
.project-end-nav {
  margin-top: 0;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 58px;
  background: rgba(10, 11, 14, 0.92);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: min(1180px, 92vw);
  max-height: 82vh;
  object-fit: contain;
}
.lightbox button {
  position: absolute;
  top: 24px;
  right: 28px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .site-nav {
    grid-column: 1 / -1;
    gap: 12px 18px;
  }
  .site-nav a {
    font-size: 10px;
  }
  .nav-dropdown {
    position: absolute;
    left: 0;
    background: #fff;
  }
  .nav-flyout {
    background: transparent;
  }
  .hero-content {
    padding: 0 18px 104px;
  }
  .hero-copy h1 {
    font-size: 40px;
  }
  .scroll-cue {
    left: 18px;
  }
  .sales-scene {
    grid-template-columns: 1fr;
  }
  .sales-scene img {
    height: auto;
    aspect-ratio: 16 / 11;
    order: -1;
  }
  .sales-copy {
    padding: 42px 18px 56px;
  }
  .home-about-strip {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 58px 0 72px;
  }
  .home-about-strip a {
    grid-column: auto;
    margin-top: 0;
  }
  .standard-page-title {
    width: calc(100% - 36px);
    padding: 126px 0 36px;
  }
  .editorial-page,
  .sector-list {
    width: calc(100% - 36px);
    padding: 42px 0 70px;
  }
  .editorial-page article,
  .sector-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contact-directory,
  .contact-layout {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
  }
  .contact-map,
  .contact-map iframe {
    min-height: 360px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mini-breadcrumb,
  .project-detail-intro,
  .detail-wide-image,
  .detail-gallery-section {
    width: calc(100% - 36px);
  }
  .project-detail-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .project-detail-intro small,
  .project-detail-intro .facts {
    grid-column: auto;
  }
  .detail-wide-image {
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .detail-gallery-grid {
    grid-template-columns: 1fr;
  }
  .lightbox {
    padding: 18px;
  }
}

@media (min-width: 901px) {
  .hero-copy {
    max-width: 600px !important;
  }
  .hero-copy h1 {
    font-family: "Helvetica Neue", Arial, sans-serif !important;
    font-size: clamp(36px, 4.35vw, 62px) !important;
    line-height: 0.96 !important;
    font-weight: 430 !important;
    letter-spacing: -0.01em !important;
  }
  .home-value-band {
    width: min(1280px, calc(100% - 96px)) !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    column-gap: 34px !important;
  }
  .home-value-band div {
    grid-template-columns: 40px minmax(0, 1fr) !important;
    gap: 5px 16px !important;
    padding-right: 26px !important;
  }
  .home-value-band strong {
    font-size: 19px !important;
    white-space: nowrap !important;
  }
  .home-value-band span {
    max-width: none !important;
    white-space: nowrap !important;
    font-size: 12.5px !important;
  }
  .about-feature {
    padding-bottom: 22px !important;
  }
}
@media (max-width: 900px) {
  .about-feature {
    padding-bottom: 14px !important;
  }
}

.about-feature {
  align-items: start !important;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr) !important;
  gap: clamp(34px, 5vw, 72px) !important;
  padding-top: 44px !important;
  padding-bottom: 30px !important;
}
.about-feature > div {
  max-width: 430px !important;
}
.about-feature h2 {
  max-width: 390px !important;
  margin-top: 12px !important;
  font-size: clamp(22px, 2.2vw, 32px) !important;
  line-height: 1.18 !important;
  font-weight: 360 !important;
}
.about-feature p {
  max-width: 650px !important;
  margin: 0 !important;
  padding-top: 28px !important;
  border-top: 1px solid var(--line) !important;
  font-size: 13.5px !important;
  line-height: 1.78 !important;
}
.about-values {
  padding-top: 18px !important;
}
@media (max-width: 900px) {
  .about-feature {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding-top: 34px !important;
    padding-bottom: 20px !important;
  }
  .about-feature > div,
  .about-feature h2,
  .about-feature p {
    max-width: none !important;
  }
  .about-feature h2 {
    font-size: clamp(21px, 6vw, 27px) !important;
    line-height: 1.18 !important;
  }
  .about-feature p {
    padding-top: 18px !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
  }
  .about-values {
    padding-top: 10px !important;
  }
}

.sales-copy h2,
.home-about-strip h2,
.standard-page-title h1,
.about-hero h1,
.contact-compact-title h1,
.section-heading-lite h2,
.about-feature h2,
.about-timeline h2,
.editorial-page h2,
.sector-list h2 {
  font-family: var(--font-display) !important;
  font-weight: 330 !important;
  letter-spacing: 0 !important;
}
.sales-copy h2 {
  max-width: 720px !important;
  font-size: clamp(24px, 2.45vw, 34px) !important;
  line-height: 1.22 !important;
}
.home-about-strip h2 {
  max-width: 620px !important;
  font-size: clamp(24px, 2.35vw, 34px) !important;
  line-height: 1.22 !important;
}
.standard-page-title h1,
.about-hero h1,
.contact-compact-title h1 {
  max-width: 720px !important;
  font-size: clamp(27px, 2.8vw, 38px) !important;
  line-height: 1.17 !important;
}
.about-feature h2,
.about-timeline h2,
.editorial-page h2,
.sector-list h2,
.section-heading-lite h2 {
  font-size: clamp(21px, 2.05vw, 30px) !important;
  line-height: 1.2 !important;
}
.home-about-strip p,
.home-contact-list p,
.sales-copy address,
.about-hero p,
.about-feature p,
.about-values p,
.about-timeline p,
.editorial-page p,
.sector-list p {
  font-size: 13.5px !important;
  line-height: 1.72 !important;
}
@media (min-width: 901px) {
  .home-about-strip {
    align-items: start !important;
  }
  .home-about-copy,
  .home-contact-summary {
    min-height: 0 !important;
  }
}
@media (max-width: 900px) {
  .sales-copy {
    padding: 36px 18px 44px !important;
  }
  .sales-copy h2,
  .home-about-strip h2 {
    font-size: clamp(20px, 5.35vw, 24px) !important;
    line-height: 1.24 !important;
    font-weight: 330 !important;
  }
  .standard-page-title h1,
  .about-hero h1,
  .contact-compact-title h1,
  .project-detail-intro h1 {
    font-size: clamp(22px, 6vw, 28px) !important;
    line-height: 1.18 !important;
    font-weight: 330 !important;
  }
  .about-feature h2,
  .about-timeline h2,
  .editorial-page h2,
  .sector-list h2,
  .section-heading-lite h2 {
    font-size: clamp(19px, 5.2vw, 24px) !important;
    line-height: 1.2 !important;
    font-weight: 330 !important;
  }
  .home-about-strip {
    width: calc(100% - 36px) !important;
    gap: 26px !important;
    padding: 42px 0 48px !important;
  }
  .home-about-copy,
  .home-contact-summary {
    min-height: 0 !important;
  }
  .home-about-strip p,
  .home-contact-list p,
  .sales-copy address,
  .about-hero p,
  .about-feature p,
  .about-values p,
  .about-timeline p,
  .editorial-page p,
  .sector-list p {
    font-size: 12.5px !important;
    line-height: 1.64 !important;
  }
  .home-contact-summary {
    padding-top: 20px !important;
  }
  .home-mini-map {
    height: 150px !important;
  }
}

.sales-copy h2,
.home-about-strip h2,
.standard-page-title h1,
.about-hero h1,
.contact-compact-title h1,
.section-heading-lite h2,
.about-feature h2,
.about-timeline h2,
.editorial-page h2,
.sector-list h2 {
  font-family: var(--font-display) !important;
  font-weight: 330 !important;
  letter-spacing: 0 !important;
}
.sales-copy h2 {
  max-width: 720px !important;
  font-size: clamp(24px, 2.45vw, 34px) !important;
  line-height: 1.22 !important;
}
.home-about-strip h2 {
  max-width: 620px !important;
  font-size: clamp(24px, 2.35vw, 34px) !important;
  line-height: 1.22 !important;
}
.standard-page-title h1,
.about-hero h1,
.contact-compact-title h1 {
  max-width: 720px !important;
  font-size: clamp(27px, 2.8vw, 38px) !important;
  line-height: 1.17 !important;
}
.about-feature h2,
.about-timeline h2,
.editorial-page h2,
.sector-list h2,
.section-heading-lite h2 {
  font-size: clamp(21px, 2.05vw, 30px) !important;
  line-height: 1.2 !important;
}
.home-about-strip p,
.home-contact-list p,
.sales-copy address,
.about-hero p,
.about-feature p,
.about-values p,
.about-timeline p,
.editorial-page p,
.sector-list p {
  font-size: 13.5px !important;
  line-height: 1.72 !important;
}
@media (min-width: 901px) {
  .home-about-strip {
    align-items: start !important;
  }
  .home-about-copy,
  .home-contact-summary {
    min-height: 0 !important;
  }
}
@media (max-width: 900px) {
  .sales-copy {
    padding: 36px 18px 44px !important;
  }
  .sales-copy h2,
  .home-about-strip h2 {
    font-size: clamp(20px, 5.35vw, 24px) !important;
    line-height: 1.24 !important;
    font-weight: 330 !important;
  }
  .standard-page-title h1,
  .about-hero h1,
  .contact-compact-title h1,
  .project-detail-intro h1 {
    font-size: clamp(22px, 6vw, 28px) !important;
    line-height: 1.18 !important;
    font-weight: 330 !important;
  }
  .about-feature h2,
  .about-timeline h2,
  .editorial-page h2,
  .sector-list h2,
  .section-heading-lite h2 {
    font-size: clamp(19px, 5.2vw, 24px) !important;
    line-height: 1.2 !important;
    font-weight: 330 !important;
  }
  .home-about-strip {
    width: calc(100% - 36px) !important;
    gap: 26px !important;
    padding: 42px 0 48px !important;
  }
  .home-about-copy,
  .home-contact-summary {
    min-height: 0 !important;
  }
  .home-about-strip p,
  .home-contact-list p,
  .sales-copy address,
  .about-hero p,
  .about-feature p,
  .about-values p,
  .about-timeline p,
  .editorial-page p,
  .sector-list p {
    font-size: 12.5px !important;
    line-height: 1.64 !important;
  }
  .home-contact-summary {
    padding-top: 20px !important;
  }
  .home-mini-map {
    height: 150px !important;
  }
}

.about-feature {
  align-items: start !important;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr) !important;
  gap: clamp(34px, 5vw, 72px) !important;
  padding-top: 44px !important;
  padding-bottom: 30px !important;
}
.about-feature > div {
  max-width: 430px !important;
}
.about-feature h2 {
  max-width: 390px !important;
  margin-top: 12px !important;
  font-size: clamp(22px, 2.2vw, 32px) !important;
  line-height: 1.18 !important;
  font-weight: 360 !important;
}
.about-feature p {
  max-width: 650px !important;
  margin: 0 !important;
  padding-top: 28px !important;
  border-top: 1px solid var(--line) !important;
  font-size: 13.5px !important;
  line-height: 1.78 !important;
}
.about-values {
  padding-top: 18px !important;
}
@media (max-width: 900px) {
  .about-feature {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding-top: 34px !important;
    padding-bottom: 20px !important;
  }
  .about-feature > div,
  .about-feature h2,
  .about-feature p {
    max-width: none !important;
  }
  .about-feature h2 {
    font-size: clamp(21px, 6vw, 27px) !important;
    line-height: 1.18 !important;
  }
  .about-feature p {
    padding-top: 18px !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
  }
  .about-values {
    padding-top: 10px !important;
  }
}

:root {
  --font-body: "IBM Plex Sans", "Aptos", "Segoe UI", Arial, sans-serif;
  --font-display: "IBM Plex Sans", "Aptos", "Segoe UI", Arial, sans-serif;
}
body {
  font-size: 15px;
  letter-spacing: 0;
}

.site-header {
  grid-template-columns: auto auto auto;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  min-height: 70px;
  padding: 0 18px;
}
.brand {
  width: 104px;
  height: 42px;
}
.brand img {
  width: 104px;
  max-height: 42px;
}
.site-nav {
  gap: clamp(14px, 2vw, 28px);
}
.site-nav a {
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.075em;
}
.language-switch {
  justify-self: auto;
  gap: 8px;
}
.language-switch a {
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.075em;
}

.sales-scene {
  background: #090a0d;
  color: #fff;
  border: 0;
}
.sales-copy h2,
.sales-copy address,
.sales-copy a {
  color: #fff;
}
.sales-copy address {
  color: rgba(255, 255, 255, 0.64);
}
.sales-copy a {
  border-bottom-color: rgba(255, 255, 255, 0.34);
}

.standard-page-title {
  padding: 126px 0 32px;
}
.standard-page-title h1 {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 360;
  line-height: 1.08;
}
.standard-page-title p,
.editorial-page p,
.sector-list p,
.project-detail-intro p,
.home-about-strip p {
  font-size: 14px;
  line-height: 1.72;
}
.editorial-page h2,
.sector-list h2 {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 360;
}
.home-about-strip h2,
.sales-copy h2 {
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 360;
}
.project-detail-intro h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 360;
}

.projects-main .standard-page-title h1 {
  display: none;
}
.projects-main .standard-page-title {
  padding-bottom: 22px;
  border-bottom: 0;
}
.project-directory {
  padding-top: 34px;
}
.project-grid {
  gap: 42px 30px;
}
.project-card-caption {
  gap: 4px;
  padding-top: 13px;
}
.project-card-caption small {
  font-size: 9px;
  letter-spacing: 0.11em;
}
.project-card-caption strong {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.project-card-caption em {
  font-size: 11px;
}
.project-card > .project-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0) 48%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.project-card > .project-card-image::before {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.35s ease;
}
.project-card:hover .project-card-image img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.03);
}
.project-card:hover .project-card-image::after {
  opacity: 1;
}
.project-card:hover .project-card-image::before {
  width: 54px;
}

.sector-list article {
  grid-template-columns: 54px 0.52fr 1fr;
  align-items: center;
}
.sector-list span.sector-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(227, 6, 19, 0.72);
  color: var(--red);
  position: relative;
  display: block;
}
.sector-icon::before,
.sector-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.sector-icon-build::before {
  width: 16px;
  height: 1px;
  left: 8px;
  top: 17px;
}
.sector-icon-build::after {
  width: 1px;
  height: 16px;
  left: 16px;
  top: 9px;
}
.sector-icon-mechanic {
  border-radius: 50%;
}
.sector-icon-mechanic::before {
  width: 16px;
  height: 1px;
  left: 8px;
  top: 16px;
  transform: rotate(35deg);
}
.sector-icon-mechanic::after {
  width: 16px;
  height: 1px;
  left: 8px;
  top: 16px;
  transform: rotate(-35deg);
}
.sector-icon-energy::before {
  width: 1px;
  height: 20px;
  left: 16px;
  top: 7px;
}
.sector-icon-energy::after {
  width: 15px;
  height: 15px;
  left: 9px;
  top: 9px;
  clip-path: polygon(58% 0, 100% 0, 46% 100%, 0 100%);
}
.sector-icon-medical::before {
  width: 18px;
  height: 1px;
  left: 7px;
  top: 16px;
}
.sector-icon-medical::after {
  width: 1px;
  height: 18px;
  left: 16px;
  top: 7px;
}
.sector-icon-architecture::before {
  width: 18px;
  height: 1px;
  left: 8px;
  top: 21px;
}
.sector-icon-architecture::after {
  width: 16px;
  height: 16px;
  left: 9px;
  top: 8px;
  transform: rotate(45deg);
  background: transparent;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}
.sector-icon-consult::before {
  width: 18px;
  height: 1px;
  left: 8px;
  top: 12px;
  box-shadow:
    0 6px 0 currentColor,
    0 12px 0 currentColor;
}
.sector-icon-consult::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  left: 22px;
  top: 10px;
  box-shadow:
    -8px 6px 0 currentColor,
    -2px 12px 0 currentColor;
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 76px;
  padding: 24px 18px;
  background: #050506;
  border: 0;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 7px;
    padding: 10px 12px 12px;
  }
  .brand {
    justify-self: center;
    width: 96px;
    height: 35px;
  }
  .brand img {
    width: 96px;
    max-height: 35px;
    left: 50%;
    transform: translateX(-50%);
  }
  .site-nav {
    grid-column: auto;
    justify-content: center;
    gap: 9px 14px;
    width: min(100%, 520px);
  }
  .site-nav a {
    font-size: 10px;
    letter-spacing: 0.055em;
  }
  .language-switch {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
  }
  .language-switch a {
    font-size: 10px;
  }
  .nav-item {
    position: static;
  }
  .nav-dropdown {
    left: 50%;
    transform: translate(-50%, 8px);
    top: calc(100% - 4px);
    width: min(320px, calc(100vw - 28px));
  }
  .has-dropdown:hover .nav-dropdown,
  .has-dropdown:focus-within .nav-dropdown {
    transform: translate(-50%, 0);
  }
  .nav-flyout {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    border: 0;
    padding: 0 0 6px 14px;
  }
  .sales-scene {
    background: #090a0d;
    padding: 0;
  }
  .sales-copy {
    padding: 42px 18px 52px;
  }
  .sector-list article {
    grid-template-columns: 42px 1fr;
    gap: 14px 18px;
  }
  .sector-list p {
    grid-column: 2;
  }
}

.home-about-strip {
  width: 100%;
  min-height: 72svh;
  margin: 0;
  padding: clamp(70px, 9vw, 118px) clamp(24px, 7vw, 112px);
  grid-template-columns: minmax(0, 720px);
  align-content: center;
  justify-content: start;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}
.home-about-strip small,
.home-about-strip h2,
.home-about-strip p,
.home-about-strip a {
  grid-column: 1;
}
.home-about-strip h2 {
  max-width: 680px;
}
.home-about-strip p {
  max-width: 620px;
}
.home-about-strip a {
  margin-top: 6px;
}

.scroll-cue {
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  width: 40px;
  height: 62px;
}
.scroll-cue::before {
  left: 19px;
  width: 2px;
  height: 48px;
  background: rgba(255, 255, 255, 0.88);
}
.scroll-cue::after {
  left: 13px;
  top: 36px;
  width: 14px;
  height: 14px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-color: rgba(255, 255, 255, 0.88);
}
.hero-controls.fkn-hero-controls {
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.hero-controls.fkn-hero-controls button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  width: 52px;
  height: 52px;
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(0, 0, 0, 0.18);
  font-size: 30px;
  font-weight: 200;
}
.hero-controls.fkn-hero-controls button:hover {
  background: rgba(227, 6, 19, 0.78);
  border-color: rgba(227, 6, 19, 0.78);
}
.hero-controls.fkn-hero-controls [data-hero-prev] {
  left: clamp(18px, 3vw, 46px);
}
.hero-controls.fkn-hero-controls [data-hero-next] {
  right: clamp(18px, 3vw, 46px);
}
.hero-controls.fkn-hero-controls span {
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
}

.project-detail-intro {
  grid-template-columns: minmax(0, 760px);
  gap: 18px;
  padding-top: 24px;
}
.project-detail-intro small,
.project-detail-intro .facts {
  grid-column: 1;
}
.project-detail-intro h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 380;
}
.project-detail-intro p {
  max-width: 720px;
  font-size: 14px;
}
.project-detail-intro .facts {
  max-width: 540px;
  margin-top: 12px;
}
.detail-gallery-section {
  padding-top: 42px;
}
.detail-gallery-section .section-heading-lite {
  display: none;
}
.project-end-nav {
  display: none !important;
}
.detail-gallery-item {
  position: relative;
}
.detail-gallery-item::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: rgba(5, 5, 6, 0.38);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.78);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}
.detail-gallery-item::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-58%, -58%) scale(0.78);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
  box-shadow: 10px 10px 0 -8px #fff;
}
.detail-gallery-item:hover::before,
.detail-gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.detail-gallery-item:hover::after {
  transform: translate(-58%, -58%) scale(1);
}

.about-hero,
.about-feature,
.about-values,
.about-timeline,
.contact-compact-title,
.contact-top,
.contact-map-wide {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.about-hero {
  padding: 138px 0 52px;
  border-bottom: 1px solid var(--line);
}
.about-hero small,
.about-feature small,
.about-timeline small,
.contact-compact-title small,
.contact-info-panel small {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-hero h1 {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.08;
  font-weight: 360;
}
.about-hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.about-feature {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 62px;
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
}
.about-feature h2,
.about-timeline h2 {
  margin: 14px 0 0;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.12;
  font-weight: 360;
}
.about-feature p,
.about-timeline p,
.contact-info-panel address,
.contact-info-panel a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 46px 0 22px;
}
.about-values article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.about-icon {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid rgba(227, 6, 19, 0.72);
  position: relative;
  color: var(--red);
}
.about-icon::before,
.about-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.about-icon.integrity::before {
  width: 18px;
  height: 1px;
  left: 7px;
  top: 16px;
}
.about-icon.integrity::after {
  width: 1px;
  height: 18px;
  left: 16px;
  top: 7px;
}
.about-icon.innovation::before {
  width: 20px;
  height: 1px;
  left: 6px;
  top: 16px;
  transform: rotate(-30deg);
}
.about-icon.innovation::after {
  width: 10px;
  height: 10px;
  left: 11px;
  top: 11px;
  border: 1px solid currentColor;
  background: transparent;
  border-radius: 50%;
}
.about-icon.sustainability::before {
  width: 18px;
  height: 18px;
  left: 7px;
  top: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
}
.about-icon.sustainability::after {
  width: 1px;
  height: 18px;
  left: 16px;
  top: 8px;
}
.about-values h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
}
.about-values p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.about-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  padding: 34px 0 92px;
}
.about-timeline article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.contact-compact-title {
  padding: 126px 0 32px;
}
.contact-compact-title h1 {
  margin: 14px 0 0;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 360;
}
.contact-top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  padding: 24px 0 64px;
  border-top: 1px solid var(--line);
}
.contact-info-panel {
  display: grid;
  gap: 22px;
}
.contact-info-panel article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.contact-info-panel small {
  display: block;
}
.contact-info-panel address {
  margin: 8px 0 6px;
  font-style: normal;
}
.contact-info-panel a {
  display: inline-block;
  margin-top: 8px;
  color: var(--ink);
}
.contact-icon {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(227, 6, 19, 0.72);
  position: relative;
  color: var(--red);
}
.contact-icon::before,
.contact-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.contact-icon.pin::before {
  width: 10px;
  height: 10px;
  left: 9px;
  top: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
}
.contact-icon.pin::after {
  width: 1px;
  height: 10px;
  left: 14px;
  top: 16px;
}
.contact-icon.office::before {
  width: 16px;
  height: 1px;
  left: 6px;
  top: 11px;
  box-shadow:
    0 6px 0 currentColor,
    0 12px 0 currentColor;
}
.contact-icon.office::after {
  width: 1px;
  height: 18px;
  left: 14px;
  top: 6px;
}
.contact-icon.mail::before {
  width: 17px;
  height: 11px;
  left: 6px;
  top: 9px;
  border: 1px solid currentColor;
  background: transparent;
}
.contact-icon.mail::after {
  width: 12px;
  height: 1px;
  left: 9px;
  top: 14px;
  transform: rotate(28deg);
}
.contact-top .contact-form {
  align-self: start;
}
.contact-map-wide {
  height: 430px;
  margin-bottom: 84px;
  border: 1px solid var(--line);
}
.contact-map-wide iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1);
}

@media (max-width: 900px) {
  .home-about-strip {
    min-height: auto;
    padding: 64px 18px 76px;
  }
  .hero-controls.fkn-hero-controls button {
    width: 44px;
    height: 44px;
    font-size: 26px;
  }
  .hero-controls.fkn-hero-controls [data-hero-prev] {
    left: 12px;
  }
  .hero-controls.fkn-hero-controls [data-hero-next] {
    right: 12px;
  }
  .about-hero,
  .about-feature,
  .about-values,
  .about-timeline,
  .contact-compact-title,
  .contact-top,
  .contact-map-wide {
    width: calc(100% - 36px);
  }
  .about-feature,
  .about-values,
  .about-timeline,
  .contact-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-map-wide {
    height: 330px;
    margin-bottom: 64px;
  }
}

:root {
  --site-width: 1180px;
  --site-gutter: max(24px, calc((100vw - var(--site-width)) / 2));
  --font-body: "Segoe UI Variable Text", "Aptos", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Segoe UI Variable Display", "Aptos Display", "Segoe UI", Arial, sans-serif;
}
body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}
.site-header {
  grid-template-columns: 112px minmax(0, 1fr) 76px;
  justify-content: stretch;
  gap: clamp(14px, 2vw, 30px);
  width: 100%;
  min-height: 70px;
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}
.brand {
  width: 112px;
}
.brand img {
  width: 112px;
}
.site-nav {
  justify-content: center;
  gap: clamp(16px, 2.2vw, 32px);
}
.site-nav a,
.language-switch a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.language-switch {
  justify-self: end;
}

.hero-controls.fkn-hero-controls span {
  display: none;
}
.hero-controls.fkn-hero-controls button {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}
.hero-controls.fkn-hero-controls button:hover {
  background: transparent;
  border-color: transparent;
  color: #fff;
}

.standard-page-title,
.about-hero,
.contact-compact-title,
.mini-breadcrumb,
.project-detail-intro,
.detail-wide-image,
.detail-gallery-section,
.about-feature,
.about-values,
.about-timeline,
.contact-top,
.contact-map-wide {
  width: min(var(--site-width), calc(100% - 48px));
}
.standard-page-title,
.about-hero,
.contact-compact-title {
  padding-top: 112px;
  padding-bottom: 34px;
}
.standard-page-title small,
.about-hero small,
.about-feature small,
.about-timeline small,
.contact-compact-title small,
.project-detail-intro > small,
.mini-breadcrumb,
.project-detail-intro .facts small {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.115em;
  line-height: 1.3;
}
.standard-page-title h1,
.about-hero h1,
.contact-compact-title h1 {
  max-width: 760px;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.14;
  font-weight: 360;
}
.standard-page-title p,
.about-hero p,
.about-feature p,
.about-values p,
.about-timeline p,
.contact-info-panel address,
.contact-info-panel a,
.project-detail-intro p {
  font-size: 13px;
  line-height: 1.72;
}

.project-detail-intro {
  padding-top: 20px;
  padding-bottom: 36px;
  grid-template-columns: minmax(0, 680px);
}
.project-detail-intro > small {
  display: none;
}
.project-detail-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.12;
  font-weight: 360;
}
.project-detail-intro .facts {
  grid-column: 1;
  max-width: 500px;
}
.project-detail-intro .facts strong {
  font-size: 13px;
  font-weight: 520;
}

.projects-main .project-directory {
  padding-top: 0;
}
.projects-main .standard-page-title {
  width: min(var(--site-width), calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
  padding-top: 112px;
}

.lightbox {
  grid-template-columns: 72px minmax(0, auto) 72px;
  gap: 18px;
}
.lightbox img {
  grid-column: 2;
  max-width: min(1120px, calc(100vw - 188px));
  max-height: 82vh;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
}
.lightbox-nav {
  position: static;
  width: 56px;
  height: 56px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  font-size: 54px;
  font-weight: 200;
  line-height: 1;
}
.lightbox-nav:hover {
  color: #fff;
}
.lightbox-prev {
  grid-column: 1;
  justify-self: end;
}
.lightbox-next {
  grid-column: 3;
  justify-self: start;
}
.lightbox-count {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  letter-spacing: 0.12em;
}

@media (max-width: 900px) {
  :root {
    --site-gutter: 18px;
  }
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-left: 16px;
    padding-right: 16px;
  }
  .site-nav {
    justify-content: center;
    gap: 9px 14px;
  }
  .language-switch {
    justify-self: center;
  }
  .standard-page-title,
  .about-hero,
  .contact-compact-title,
  .mini-breadcrumb {
    padding-top: 120px;
  }
  .lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    padding: 18px;
    gap: 6px;
  }
  .lightbox img {
    max-width: calc(100vw - 120px);
  }
  .lightbox-nav {
    font-size: 42px;
    width: 42px;
    height: 42px;
  }
  .lightbox-count {
    bottom: 16px;
  }
}

html,
body {
  min-height: 100%;
}
body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1 0 auto;
}
.site-footer {
  flex-shrink: 0;
}
.projects-main .project-directory,
.projects-main .fkn-projects {
  width: min(var(--site-width), calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}
.projects-main .standard-page-title {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.contact-top .contact-form {
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
}
.contact-form label:has(textarea) {
  border: 1px solid var(--line);
  padding: 16px 18px 18px;
}
.contact-form label:has(textarea) textarea {
  min-height: 138px;
}
.contact-map iframe,
.contact-map-wide iframe {
  filter: none !important;
}
.detail-wide-image {
  position: relative;
  cursor: zoom-in;
  overflow: hidden;
}
.detail-wide-image img {
  transition: transform 0.5s ease;
}
.detail-wide-image:hover img {
  transform: scale(1.012);
}
.detail-wide-image::after {
  content: "+";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  font-size: 28px;
  font-weight: 200;
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}
.detail-wide-image:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 900px) {
  .projects-main .project-directory,
  .projects-main .fkn-projects,
  .projects-main .standard-page-title {
    width: calc(100% - 36px);
  }
  .contact-top .contact-form {
    padding: 20px;
  }
}

.home-value-band {
  width: min(1160px, calc(100% - 96px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.home-value-band div {
  display: grid;
  gap: 8px;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}
.home-value-band div:last-child {
  border-right: 0;
}
.home-value-band small {
  width: 38px;
  height: 38px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: transparent;
  border: 1px solid rgba(227, 6, 19, 0.34);
  border-radius: 50%;
}
.home-value-band small::before,
.home-value-band small::after {
  content: "";
  position: absolute;
  inset: 9px;
  background: center / contain no-repeat;
}
.home-value-band div:nth-child(1) small::before {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23e30613%27%20stroke-width%3D%271.55%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M12%2021s6.5-5.2%206.5-10.5a6.5%206.5%200%201%200-13%200C5.5%2015.8%2012%2021%2012%2021z%27/%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2710.5%27%20r%3D%272.1%27/%3E%3C/svg%3E");
}
.home-value-band div:nth-child(2) small::before {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23e30613%27%20stroke-width%3D%271.55%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M4%2020h16%27/%3E%3Cpath%20d%3D%27M6%2017L12%204l6%2013%27/%3E%3Cpath%20d%3D%27M9%2013h6%27/%3E%3Cpath%20d%3D%27M12%204v16%27/%3E%3C/svg%3E");
}
.home-value-band div:nth-child(3) small::before {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23e30613%27%20stroke-width%3D%271.55%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M12%203l7%203v5.4c0%204.3-2.8%207.4-7%208.6-4.2-1.2-7-4.3-7-8.6V6l7-3z%27/%3E%3Cpath%20d%3D%27M8.8%2012.2l2.1%202.1%204.4-4.6%27/%3E%3C/svg%3E");
}
.home-value-band strong {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.12;
  font-weight: 360;
}
.home-value-band span {
  max-width: 290px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}
.projects-main .standard-page-title small {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  letter-spacing: 0.12em !important;
  color: var(--red) !important;
  text-transform: uppercase !important;
}
.projects-main .standard-page-title {
  width: min(1180px, calc(100% - 48px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
}
@media (min-width: 901px) {
  .home-about-strip {
    width: min(1160px, calc(100% - 96px)) !important;
  }
}
@media (max-width: 900px) {
  .home-value-band {
    width: calc(100% - 36px);
    padding: 26px 0;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .home-value-band div {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .home-value-band div:last-child {
    border-bottom: 0;
  }
  .home-value-band strong {
    font-size: 18px;
  }
  .home-value-band small {
    width: 34px;
    height: 34px;
  }
  .home-value-band small::before,
  .home-value-band small::after {
    inset: 8px;
  }
  .home-value-band span {
    max-width: none;
    font-size: 12.5px;
  }
  .projects-main .standard-page-title {
    width: calc(100vw - 36px) !important;
    margin-left: calc(50% - 50vw + 18px) !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
  }
  .projects-main .standard-page-title small {
    font-size: 12px !important;
    font-weight: 750 !important;
    letter-spacing: 0.12em !important;
  }
}

@media (min-width: 901px) {
  .site-header .brand {
    margin-left: -6px;
  }
}
@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
  }
  .site-header {
    min-height: 64px;
    padding-left: 0;
    padding-right: 16px;
  }
  .site-header .brand {
    position: absolute;
    left: 0;
    top: 8px;
    width: 120px;
    height: 48px;
    margin-left: 0;
  }
  .site-header .brand img {
    left: 0;
    width: 120px;
    max-height: 48px;
  }
  .menu-trigger {
    right: 16px;
    top: 11px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .menu-trigger span {
    width: 17px;
    height: 1px;
  }
  .menu-trigger.is-active span:first-child {
    transform: translateY(6px) rotate(42deg);
  }
  .menu-trigger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .menu-trigger.is-active span:last-child {
    transform: translateY(-6px) rotate(-42deg);
  }
  .menu-links a {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }
  .menu-links small {
    display: none;
  }
  .premium-hero,
  .hero-content {
    min-height: 100dvh;
  }
  .hero-content {
    width: calc(100% - 36px);
    align-items: flex-end;
    padding-bottom: 108px;
  }
  .hero-copy {
    max-width: 260px;
  }
  .hero-copy h1 {
    margin: 10px 0 8px;
    font-size: clamp(27px, 8.2vw, 36px);
    line-height: 1.02;
    font-weight: 320;
  }
  .hero-copy p {
    font-size: 11px;
  }
  .hero-copy a {
    margin-top: 14px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .hero-controls {
    left: 18px;
    right: 18px;
    bottom: 34px;
  }
  .hero-controls span {
    display: none;
  }
  .scroll-cue {
    bottom: 22px;
  }
  .standard-page-title h1,
  .about-hero h1,
  .contact-compact-title h1,
  .projects-main .standard-page-title h1 {
    font-size: clamp(28px, 8vw, 38px) !important;
    line-height: 1.08;
  }
  .standard-page-title p,
  .about-hero p,
  .contact-compact-title p,
  .editorial-page p,
  .sector-list p,
  .project-detail-intro p,
  .home-about-strip p {
    font-size: 13px;
    line-height: 1.68;
  }
  .editorial-page h2,
  .sector-list h2,
  .home-about-strip h2,
  .sales-copy h2 {
    font-size: clamp(22px, 6.8vw, 30px) !important;
    line-height: 1.14;
  }
  .home-about-strip {
    min-height: auto;
    padding: 54px 18px 62px;
    gap: 26px;
  }
  .home-about-copy {
    gap: 16px;
  }
  .home-contact-summary {
    gap: 16px;
  }
  .home-mini-map {
    height: 176px;
  }
}

.home-about-strip {
  width: min(1180px, calc(100% - 48px));
  min-height: auto;
  padding: clamp(72px, 8vw, 102px) 0;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 3.8vw, 48px);
  align-items: stretch;
}
.home-about-copy,
.home-contact-summary {
  min-height: 620px;
  align-content: start;
  padding: clamp(32px, 4vw, 48px) 0;
}
.home-about-copy {
  max-width: none;
}
.home-about-copy p {
  max-width: 640px;
}
.home-contact-summary {
  border-left: 1px solid var(--line);
  padding-left: clamp(26px, 3.4vw, 42px);
}
@media (max-width: 900px) {
  .site-header {
    min-height: 62px;
    padding-left: 0 !important;
    padding-right: 14px !important;
  }
  .site-header .brand {
    left: 0 !important;
    top: 7px;
    width: 116px;
    height: 46px;
  }
  .site-header .brand img {
    width: 116px;
    max-height: 46px;
  }
  .menu-trigger {
    right: 14px !important;
    top: 10px;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: currentColor;
    gap: 5px;
  }
  .menu-trigger span {
    width: 20px;
    height: 1px;
    min-height: 1px;
    background: currentColor;
    opacity: 1 !important;
    transform: none !important;
  }
  .menu-trigger.is-active span:first-child,
  .menu-trigger.is-active span:nth-child(2),
  .menu-trigger.is-active span:last-child {
    opacity: 1 !important;
    transform: none !important;
  }
  .menu-overlay {
    inset: 0 !important;
    padding: 20px 18px 34px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    box-shadow: none;
  }
  .menu-top img {
    width: 126px;
    background: transparent;
  }
  .menu-top button {
    color: rgba(17, 19, 24, 0.68);
    font-size: 10px;
    font-weight: 760;
    letter-spacing: 0.11em;
  }
  .menu-links {
    margin-top: 62px;
    border-top: 1px solid rgba(17, 19, 24, 0.12);
  }
  .menu-links a {
    display: block;
    padding: 19px 0;
    border-bottom: 1px solid rgba(17, 19, 24, 0.12);
    color: var(--ink);
  }
  .menu-links a:hover {
    padding-left: 0;
    color: var(--red);
  }
  .menu-links span {
    display: block;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: clamp(24px, 7vw, 31px);
    line-height: 1.06;
    font-weight: 340;
  }
  .menu-links em,
  .menu-contact {
    display: none !important;
  }
  .premium-hero,
  .hero-content {
    min-height: 100dvh !important;
  }
  .hero-layer {
    background-position: center top;
  }
  .hero-light {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.54),
      rgba(0, 0, 0, 0.04) 46%,
      rgba(0, 0, 0, 0.08)
    );
  }
  .hero-content {
    width: 100%;
    margin: 0;
    padding: 0 18px 46px !important;
    align-items: flex-end;
  }
  .hero-copy {
    max-width: 236px;
  }
  .hero-copy h1 {
    margin: 0 0 7px;
    font-size: clamp(23px, 6.7vw, 30px) !important;
    line-height: 1.04;
    font-weight: 320;
  }
  .hero-copy p {
    font-size: 10px !important;
    letter-spacing: 0.11em;
  }
  .hero-copy a {
    margin-top: 11px;
    padding-bottom: 5px;
    font-size: 9px !important;
    letter-spacing: 0.12em;
  }
  .hero-controls.fkn-hero-controls {
    bottom: 18px;
  }
  .scroll-cue {
    display: none;
  }
  .standard-page-title,
  .about-hero,
  .contact-compact-title,
  .projects-main .standard-page-title {
    width: calc(100% - 36px) !important;
    padding-top: 92px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .standard-page-title h1,
  .about-hero h1,
  .contact-compact-title h1,
  .projects-main .standard-page-title h1,
  .project-detail-intro h1 {
    font-size: clamp(24px, 6.9vw, 32px) !important;
    line-height: 1.12;
    font-weight: 340;
  }
  .editorial-page h2,
  .sector-list h2,
  .home-about-strip h2,
  .sales-copy h2,
  .section-heading-lite h2 {
    font-size: clamp(20px, 6vw, 27px) !important;
    line-height: 1.17;
    font-weight: 340;
  }
  .home-about-strip {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 46px 0 56px;
  }
  .home-about-copy,
  .home-contact-summary {
    min-height: auto;
    padding: 0;
  }
  .home-contact-summary {
    border-left: 0;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .home-mini-map {
    height: 168px;
  }
}

.standard-page-title,
.about-hero,
.contact-compact-title,
.mini-breadcrumb,
.project-detail-intro,
.detail-wide-image,
.detail-gallery-section,
.about-feature,
.about-values,
.about-timeline,
.sector-list,
.contact-top,
.contact-map-wide,
.projects-main .project-directory,
.projects-main .fkn-projects {
  width: min(var(--site-width), calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}
.projects-main .standard-page-title {
  width: 100%;
}
.lightbox {
  display: grid;
  grid-template-columns: 72px minmax(0, auto) 72px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  pointer-events: auto;
}
.lightbox img {
  grid-column: 2;
  grid-row: 1;
}
.lightbox .lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: auto;
  height: auto;
  padding: 10px 0;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  z-index: 3;
}
.lightbox .lightbox-nav {
  position: relative;
  top: auto;
  right: auto;
  z-index: 2;
  width: 58px;
  height: 72px;
  padding: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 58px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}
.lightbox .lightbox-prev {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}
.lightbox .lightbox-next {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}
.lightbox .lightbox-nav:hover,
.lightbox .lightbox-close:hover {
  color: #fff;
}
@media (max-width: 900px) {
  .standard-page-title,
  .about-hero,
  .contact-compact-title,
  .mini-breadcrumb,
  .project-detail-intro,
  .detail-wide-image,
  .detail-gallery-section,
  .about-feature,
  .about-values,
  .about-timeline,
  .sector-list,
  .contact-top,
  .contact-map-wide,
  .projects-main .project-directory,
  .projects-main .fkn-projects,
  .projects-main .standard-page-title {
    width: calc(100% - 36px);
  }
  .lightbox {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 4px;
  }
  .lightbox .lightbox-nav {
    width: 44px;
    height: 62px;
    font-size: 44px;
  }
}

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}
:root {
  --site-gutter: max(24px, calc((100% - var(--site-width)) / 2));
}
.site-header {
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}
.brand {
  justify-self: start;
}
.language-switch {
  justify-self: end;
}
.standard-page-title small,
.about-hero small,
.contact-compact-title small,
.projects-main .standard-page-title small {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px !important;
  font-weight: 750 !important;
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--red);
  text-transform: uppercase;
}
.standard-page-title,
.about-hero,
.contact-compact-title,
.projects-main .standard-page-title {
  padding-top: 112px;
}
.contact-title-mail {
  display: block;
  width: max-content;
  margin-top: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.contact-title-mail:hover {
  color: var(--red);
}
@media (max-width: 900px) {
  .standard-page-title,
  .about-hero,
  .contact-compact-title,
  .projects-main .standard-page-title {
    padding-top: 120px;
  }
}

.sector-list {
  padding-top: 0;
}
.sector-list article:first-child {
  padding-top: 30px;
}
.about-icon,
.sector-list span.sector-icon,
.contact-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(227, 6, 19, 0.34);
  border-radius: 50%;
  color: var(--red);
  background: #fff;
  position: relative;
}
.contact-icon {
  width: 36px;
  height: 36px;
}
.about-icon::before,
.sector-icon::before,
.contact-icon::before {
  content: "";
  position: absolute;
  inset: 7px !important;
  left: 7px !important;
  top: 7px !important;
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  clip-path: none !important;
  transform: none !important;
  background: center / contain no-repeat;
}
.about-icon::after,
.sector-icon::after,
.contact-icon::after {
  content: none !important;
  display: none !important;
}
.about-icon.integrity::before {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23e30613%27%20stroke-width%3D%271.65%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M12%203.5l7%203v5.2c0%204.4-2.8%207.4-7%208.8-4.2-1.4-7-4.4-7-8.8V6.5l7-3z%27/%3E%3Cpath%20d%3D%27M8.7%2012.1l2.1%202.1%204.6-4.8%27/%3E%3C/svg%3E");
}
.about-icon.innovation::before {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23e30613%27%20stroke-width%3D%271.65%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M12%203v3%27/%3E%3Cpath%20d%3D%27M12%2018v3%27/%3E%3Cpath%20d%3D%27M3%2012h3%27/%3E%3Cpath%20d%3D%27M18%2012h3%27/%3E%3Cpath%20d%3D%27M6.2%206.2l2.1%202.1%27/%3E%3Cpath%20d%3D%27M15.7%2015.7l2.1%202.1%27/%3E%3Cpath%20d%3D%27M17.8%206.2l-2.1%202.1%27/%3E%3Cpath%20d%3D%27M8.3%2015.7l-2.1%202.1%27/%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%272.6%27/%3E%3C/svg%3E");
}
.about-icon.sustainability::before {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23e30613%27%20stroke-width%3D%271.65%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M5%2019c8.2-.4%2012.2-5.2%2014-14-8.8%201.8-13.6%205.8-14%2014z%27/%3E%3Cpath%20d%3D%27M5%2019c3.3-3.9%206.5-6.8%2010-9%27/%3E%3C/svg%3E");
}
.sector-icon-build::before {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23e30613%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M4%2020h16%27/%3E%3Cpath%20d%3D%27M7%2020V6h7v14%27/%3E%3Cpath%20d%3D%27M14%2010h3v10%27/%3E%3Cpath%20d%3D%27M9.5%209h2%27/%3E%3Cpath%20d%3D%27M9.5%2013h2%27/%3E%3Cpath%20d%3D%27M9.5%2017h2%27/%3E%3C/svg%3E");
}
.sector-icon-mechanic::before {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23e30613%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M14.7%206.3a4.5%204.5%200%200%200%203.1%205.5l-7.2%207.2a2.2%202.2%200%200%201-3.1-3.1l7.2-7.2a4.5%204.5%200%200%200-5.5-3.1%27/%3E%3Cpath%20d%3D%27M7.6%2016.4l2%202%27/%3E%3C/svg%3E");
}
.sector-icon-energy::before {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23e30613%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M13%202L5%2013h6l-1%209%209-13h-6l1-7z%27/%3E%3C/svg%3E");
}
.sector-icon-medical::before {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23e30613%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M9%204h6v5h5v6h-5v5H9v-5H4V9h5V4z%27/%3E%3C/svg%3E");
}
.sector-icon-architecture::before {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23e30613%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M4%2020h16%27/%3E%3Cpath%20d%3D%27M6%2017L12%205l6%2012%27/%3E%3Cpath%20d%3D%27M9%2013h6%27/%3E%3Cpath%20d%3D%27M12%205v15%27/%3E%3C/svg%3E");
}
.sector-icon-consult::before {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23e30613%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M5%207h14%27/%3E%3Cpath%20d%3D%27M5%2012h10%27/%3E%3Cpath%20d%3D%27M5%2017h7%27/%3E%3Cpath%20d%3D%27M17%2015l2%202%203-4%27/%3E%3C/svg%3E");
}
.contact-icon.pin::before {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23e30613%27%20stroke-width%3D%271.65%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M12%2021s7-5.4%207-11a7%207%200%201%200-14%200c0%205.6%207%2011%207%2011z%27/%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2710%27%20r%3D%272.2%27/%3E%3C/svg%3E");
}
.contact-icon.office::before {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23e30613%27%20stroke-width%3D%271.65%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M4%2020h16%27/%3E%3Cpath%20d%3D%27M7%2020V5h10v15%27/%3E%3Cpath%20d%3D%27M10%208h1%27/%3E%3Cpath%20d%3D%27M13%208h1%27/%3E%3Cpath%20d%3D%27M10%2012h1%27/%3E%3Cpath%20d%3D%27M13%2012h1%27/%3E%3Cpath%20d%3D%27M11%2020v-4h2v4%27/%3E%3C/svg%3E");
}
.contact-icon.mail::before {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23e30613%27%20stroke-width%3D%271.65%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M4%207h16v10H4z%27/%3E%3Cpath%20d%3D%27M4.8%207.8l7.2%205.5%207.2-5.5%27/%3E%3C/svg%3E");
}
.home-about-strip {
  grid-template-columns: minmax(0, 640px) minmax(300px, 420px);
  align-items: center;
  justify-content: space-between;
  column-gap: clamp(42px, 7vw, 104px);
}
.home-about-copy {
  display: grid;
  gap: 22px;
}
.home-about-copy small,
.home-about-copy h2,
.home-about-copy p,
.home-about-copy a {
  grid-column: auto;
}
.home-about-copy a {
  justify-self: start;
}
.home-contact-summary {
  display: grid;
  gap: 20px;
  align-self: center;
}
.home-contact-summary small {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.home-contact-list {
  display: grid;
  gap: 14px;
}
.home-contact-list p {
  max-width: none;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.home-contact-list span {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.home-contact-list a {
  grid-column: auto;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 450;
  letter-spacing: 0;
  text-transform: none;
}
.home-contact-list a:hover {
  color: var(--red);
}
.home-mini-map {
  height: 178px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f5f5f5;
}
.home-mini-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: none;
}
@media (max-width: 900px) {
  .home-about-strip {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .home-contact-summary {
    width: 100%;
  }
  .home-mini-map {
    height: 220px;
  }
  .sector-list {
    padding-top: 0;
  }
  .sector-list article:first-child {
    padding-top: 30px;
  }
}

.site-header {
  grid-template-columns: 142px minmax(0, 1fr) 142px;
}
.brand {
  width: 124px;
  height: 48px;
  justify-self: start;
}
.brand img {
  left: 0;
  width: 124px;
  max-height: 48px;
  transform: none;
}
.menu-trigger {
  color: currentColor;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}
.site-header.is-solid .menu-trigger {
  border-color: rgba(17, 19, 24, 0.22);
  background: rgba(17, 19, 24, 0.03);
}
.menu-trigger span {
  display: block;
  background: currentColor;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}
.menu-trigger.is-active span:first-child {
  transform: translateY(3px) rotate(42deg);
}
.menu-trigger.is-active span:last-child {
  transform: translateY(-3px) rotate(-42deg);
}
@media (max-width: 900px) {
  .site-header {
    min-height: 66px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding-left: 18px;
    padding-right: 18px;
    position: fixed;
  }
  .brand {
    width: 118px;
    height: 46px;
    justify-self: start;
  }
  .brand img {
    left: 0;
    width: 118px;
    max-height: 46px;
    transform: none;
  }
  .site-nav,
  .language-switch {
    display: none !important;
  }
  .menu-trigger {
    display: grid !important;
    grid-column: 3;
    justify-self: end;
    position: absolute;
    right: 18px;
    top: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    padding: 0;
    place-items: center;
    gap: 0;
  }
  .menu-overlay {
    inset: 0;
    padding: 22px 20px 30px;
    border: 0;
    transform: translateY(-10px);
  }
  .menu-top img {
    width: 138px;
    padding: 0;
    background: transparent;
  }
  .menu-top button {
    padding: 10px 0;
    border: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
  }
  .menu-links {
    margin-top: 56px;
  }
  .menu-links a {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 16px;
    padding: 20px 0;
  }
  .menu-links span {
    font-size: clamp(30px, 10vw, 48px);
  }
  .menu-links em {
    display: none;
  }
  .menu-contact {
    position: static;
    margin-top: 42px;
    text-align: left;
  }
}

@media (min-width: 901px) {
  .home-about-strip {
    width: min(1160px, calc(100% - 96px)) !important;
    min-height: auto !important;
    padding: clamp(72px, 8vw, 102px) 0 !important;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.84fr) !important;
    gap: clamp(28px, 3.8vw, 48px) !important;
    align-items: stretch !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .home-about-copy,
  .home-contact-summary {
    min-height: 620px !important;
    max-width: none !important;
    align-content: start !important;
    padding-top: clamp(32px, 4vw, 48px) !important;
    padding-bottom: clamp(32px, 4vw, 48px) !important;
  }
  .home-contact-summary {
    border-left: 1px solid var(--line) !important;
    padding-left: clamp(26px, 3.4vw, 42px) !important;
  }
  .home-about-copy h2 {
    max-width: 760px !important;
  }
  .home-about-copy p {
    max-width: 720px !important;
  }
}
@media (max-width: 900px) {
  .site-header {
    min-height: 62px !important;
    padding-left: 0 !important;
    padding-right: 14px !important;
  }
  .site-header .brand {
    position: absolute !important;
    left: 0 !important;
    top: 7px !important;
    width: 116px !important;
    height: 46px !important;
    margin-left: 0 !important;
  }
  .site-header .brand img {
    left: 0 !important;
    width: 116px !important;
    max-height: 46px !important;
    transform: none !important;
  }
  .menu-trigger {
    right: 14px !important;
    top: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    border: 0 !important;
    background: transparent !important;
    gap: 5px !important;
  }
  .menu-trigger span,
  .menu-trigger.is-active span:first-child,
  .menu-trigger.is-active span:nth-child(2),
  .menu-trigger.is-active span:last-child {
    display: block !important;
    width: 20px !important;
    height: 1px !important;
    min-height: 1px !important;
    opacity: 1 !important;
    transform: none !important;
    background: currentColor !important;
  }
  .menu-overlay {
    inset: 0 !important;
    padding: 20px 18px 34px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    color: var(--ink) !important;
    box-shadow: none !important;
    border: 0 !important;
  }
  .menu-top img {
    width: 126px !important;
    padding: 0 !important;
    background: transparent !important;
  }
  .menu-top button {
    color: rgba(17, 19, 24, 0.68) !important;
    border: 0 !important;
    font-size: 10px !important;
    font-weight: 760 !important;
  }
  .menu-links {
    margin-top: 62px !important;
    border-top: 1px solid rgba(17, 19, 24, 0.12) !important;
  }
  .menu-links a {
    display: block !important;
    padding: 19px 0 !important;
    border-bottom: 1px solid rgba(17, 19, 24, 0.12) !important;
    color: var(--ink) !important;
  }
  .menu-links a:hover {
    padding-left: 0 !important;
    color: var(--red) !important;
  }
  .menu-links span {
    display: block !important;
    white-space: nowrap !important;
    font-family: var(--font-display) !important;
    font-size: clamp(24px, 7vw, 31px) !important;
    line-height: 1.06 !important;
    font-weight: 340 !important;
  }
  .menu-links em,
  .menu-contact {
    display: none !important;
  }
  .premium-hero,
  .hero-content {
    min-height: 100dvh !important;
  }
  .hero-layer {
    background-position: center top !important;
  }
  .hero-light {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.54),
      rgba(0, 0, 0, 0.04) 46%,
      rgba(0, 0, 0, 0.08)
    ) !important;
  }
  .hero-content {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 18px 46px !important;
    align-items: flex-end !important;
  }
  .hero-copy {
    max-width: 236px !important;
  }
  .hero-copy h1 {
    margin: 0 0 7px !important;
    font-size: clamp(23px, 6.7vw, 30px) !important;
    line-height: 1.04 !important;
    font-weight: 320 !important;
  }
  .hero-copy p {
    font-size: 10px !important;
    letter-spacing: 0.11em !important;
  }
  .hero-copy a {
    margin-top: 11px !important;
    padding-bottom: 5px !important;
    font-size: 9px !important;
    letter-spacing: 0.12em !important;
  }
  .scroll-cue {
    display: none !important;
  }
  .standard-page-title,
  .about-hero,
  .contact-compact-title,
  .projects-main .standard-page-title {
    width: calc(100% - 36px) !important;
    padding-top: 92px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .standard-page-title h1,
  .about-hero h1,
  .contact-compact-title h1,
  .projects-main .standard-page-title h1,
  .project-detail-intro h1 {
    font-size: clamp(24px, 6.9vw, 32px) !important;
    line-height: 1.12 !important;
    font-weight: 340 !important;
  }
  .editorial-page h2,
  .sector-list h2,
  .home-about-strip h2,
  .sales-copy h2,
  .section-heading-lite h2 {
    font-size: clamp(20px, 6vw, 27px) !important;
    line-height: 1.17 !important;
    font-weight: 340 !important;
  }
  .home-about-strip {
    width: calc(100% - 36px) !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 46px 0 56px !important;
  }
  .home-about-copy,
  .home-contact-summary {
    min-height: auto !important;
    padding: 0 !important;
  }
  .home-contact-summary {
    border-left: 0 !important;
    padding-top: 24px !important;
    border-top: 1px solid var(--line) !important;
  }
  .home-mini-map {
    height: 168px !important;
  }
}

.projects-main .standard-page-title {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  border-bottom: 0 !important;
}
.projects-main .standard-page-title h1 {
  display: none !important;
}
.projects-main .standard-page-title small {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  letter-spacing: 0.12em !important;
  color: var(--red) !important;
}
.home-value-band div {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 6px 18px;
  align-items: start;
}
.home-value-band small {
  grid-row: 1 / span 2;
  grid-column: 1;
}
.home-value-band strong,
.home-value-band span {
  grid-column: 2;
}
.home-value-band small::before,
.home-value-band small::after {
  inset: 8px;
}
.about-feature {
  border-bottom: 0 !important;
  padding-bottom: 10px !important;
}
.about-values {
  padding-top: 0 !important;
}
.about-values article {
  border-top: 1px solid var(--line) !important;
  padding-top: 22px !important;
}
@media (max-width: 900px) {
  .projects-main .standard-page-title {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
  }
  .projects-main .standard-page-title small {
    font-size: 12px !important;
    font-weight: 750 !important;
  }
  .home-value-band div {
    grid-template-columns: 38px minmax(0, 1fr) !important;
    gap: 5px 16px !important;
  }
  .home-value-band small {
    grid-row: 1 / span 2 !important;
    grid-column: 1 !important;
  }
  .home-value-band strong,
  .home-value-band span {
    grid-column: 2 !important;
  }
  .about-feature {
    padding-bottom: 6px !important;
  }
  .about-values {
    padding-top: 0 !important;
  }
  .about-values article {
    padding-top: 18px !important;
  }
}

@media (min-width: 901px) {
  .hero-copy {
    max-width: 600px !important;
  }
  .hero-copy h1 {
    font-family: "Helvetica Neue", Arial, sans-serif !important;
    font-size: clamp(36px, 4.35vw, 62px) !important;
    line-height: 0.96 !important;
    font-weight: 430 !important;
    letter-spacing: -0.01em !important;
  }
  .home-value-band {
    width: min(1280px, calc(100% - 96px)) !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    column-gap: 34px !important;
  }
  .home-value-band div {
    grid-template-columns: 40px minmax(0, 1fr) !important;
    gap: 5px 16px !important;
    padding-right: 26px !important;
  }
  .home-value-band strong {
    font-size: 19px !important;
    white-space: nowrap !important;
  }
  .home-value-band span {
    max-width: none !important;
    white-space: nowrap !important;
    font-size: 12.5px !important;
  }
  .about-feature {
    padding-bottom: 22px !important;
  }
}
@media (max-width: 900px) {
  .about-feature {
    padding-bottom: 14px !important;
  }
}

.about-feature {
  align-items: start !important;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr) !important;
  gap: clamp(34px, 5vw, 72px) !important;
  padding-top: 44px !important;
  padding-bottom: 30px !important;
}
.about-feature > div {
  max-width: 430px !important;
}
.about-feature h2 {
  max-width: 390px !important;
  margin-top: 12px !important;
  font-size: clamp(22px, 2.2vw, 32px) !important;
  line-height: 1.18 !important;
  font-weight: 360 !important;
}
.about-feature p {
  max-width: 650px !important;
  margin: 0 !important;
  padding-top: 28px !important;
  border-top: 1px solid var(--line) !important;
  font-size: 13.5px !important;
  line-height: 1.78 !important;
}
.about-values {
  padding-top: 18px !important;
}
@media (max-width: 900px) {
  .about-feature {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding-top: 34px !important;
    padding-bottom: 20px !important;
  }
  .about-feature > div,
  .about-feature h2,
  .about-feature p {
    max-width: none !important;
  }
  .about-feature h2 {
    font-size: clamp(21px, 6vw, 27px) !important;
    line-height: 1.18 !important;
  }
  .about-feature p {
    padding-top: 18px !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
  }
  .about-values {
    padding-top: 10px !important;
  }
}
.sales-copy h2,
.home-about-strip h2,
.standard-page-title h1,
.about-hero h1,
.contact-compact-title h1,
.section-heading-lite h2,
.about-feature h2,
.about-timeline h2,
.editorial-page h2,
.sector-list h2 {
  font-family: var(--font-display) !important;
  font-weight: 330 !important;
  letter-spacing: 0 !important;
}
.sales-copy h2 {
  max-width: 720px !important;
  font-size: clamp(24px, 2.45vw, 34px) !important;
  line-height: 1.22 !important;
}
.home-about-strip h2 {
  max-width: 620px !important;
  font-size: clamp(24px, 2.35vw, 34px) !important;
  line-height: 1.22 !important;
}
.standard-page-title h1,
.about-hero h1,
.contact-compact-title h1 {
  max-width: 720px !important;
  font-size: clamp(27px, 2.8vw, 38px) !important;
  line-height: 1.17 !important;
}
.about-feature h2,
.about-timeline h2,
.editorial-page h2,
.sector-list h2,
.section-heading-lite h2 {
  font-size: clamp(21px, 2.05vw, 30px) !important;
  line-height: 1.2 !important;
}
.home-about-strip p,
.home-contact-list p,
.sales-copy address,
.about-hero p,
.about-feature p,
.about-values p,
.about-timeline p,
.editorial-page p,
.sector-list p {
  font-size: 13.5px !important;
  line-height: 1.72 !important;
}
@media (min-width: 901px) {
  .home-about-strip {
    align-items: start !important;
  }
  .home-about-copy,
  .home-contact-summary {
    min-height: 0 !important;
  }
}
@media (max-width: 900px) {
  .sales-copy {
    padding: 36px 18px 44px !important;
  }
  .sales-copy h2,
  .home-about-strip h2 {
    font-size: clamp(20px, 5.35vw, 24px) !important;
    line-height: 1.24 !important;
    font-weight: 330 !important;
  }
  .standard-page-title h1,
  .about-hero h1,
  .contact-compact-title h1,
  .project-detail-intro h1 {
    font-size: clamp(22px, 6vw, 28px) !important;
    line-height: 1.18 !important;
    font-weight: 330 !important;
  }
  .about-feature h2,
  .about-timeline h2,
  .editorial-page h2,
  .sector-list h2,
  .section-heading-lite h2 {
    font-size: clamp(19px, 5.2vw, 24px) !important;
    line-height: 1.2 !important;
    font-weight: 330 !important;
  }
  .home-about-strip {
    width: calc(100% - 36px) !important;
    gap: 26px !important;
    padding: 42px 0 48px !important;
  }
  .home-about-copy,
  .home-contact-summary {
    min-height: 0 !important;
  }
  .home-about-strip p,
  .home-contact-list p,
  .sales-copy address,
  .about-hero p,
  .about-feature p,
  .about-values p,
  .about-timeline p,
  .editorial-page p,
  .sector-list p {
    font-size: 12.5px !important;
    line-height: 1.64 !important;
  }
  .home-contact-summary {
    padding-top: 20px !important;
  }
  .home-mini-map {
    height: 150px !important;
  }
}
@media (max-width: 900px) {
  .home-contact-summary {
    display: none !important;
  }
  .home-about-strip {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding-bottom: 44px !important;
  }
  .about-values {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .about-values article {
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr) !important;
    column-gap: 16px !important;
    align-items: start !important;
    padding: 18px 0 !important;
  }
  .about-values article .about-icon {
    grid-row: 1 / span 2 !important;
    grid-column: 1 !important;
    width: 34px !important;
    height: 34px !important;
    margin: 2px 0 0 !important;
  }
  .about-values article h3,
  .about-values article p {
    grid-column: 2 !important;
  }
  .about-values article h3 {
    margin: 0 0 6px !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
  }
  .about-values article p {
    margin: 0 !important;
  }
}
.sales-location {
  display: grid;
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
  max-width: 620px;
  margin-top: 22px;
}
.sales-map {
  min-height: 128px;
  overflow: hidden;
  background: #0b0b0b;
}
.sales-map iframe {
  width: 100%;
  height: 100%;
  min-height: 128px;
  border: 0;
  filter: grayscale(1) invert(1) contrast(1.05) brightness(0.72);
  opacity: 0.72;
}
.sales-copy .sales-location address {
  margin: 0 !important;
  align-self: center;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 12px !important;
  line-height: 1.58 !important;
  letter-spacing: 0.01em;
}
.sales-copy > a[href*="maps"] {
  display: none !important;
}
@media (max-width: 900px) {
  .sales-location {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }
  .sales-map,
  .sales-map iframe {
    min-height: 150px;
  }
  .sales-copy .sales-location address {
    font-size: 11.5px !important;
    line-height: 1.55 !important;
  }
}
@media (min-width: 901px) {
  .sales-location {
    display: block !important;
    max-width: 520px !important;
    margin-top: 20px !important;
  }
  .sales-location .sales-map {
    display: none !important;
  }
  .sales-copy .sales-location address {
    margin: 0 0 22px !important;
    color: rgba(255, 255, 255, 0.64) !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
    letter-spacing: 0 !important;
  }
}
@media (max-width: 900px) {
  .sales-location {
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 18px !important;
  }
  .sales-location .sales-map {
    width: 100% !important;
    min-height: 154px !important;
    overflow: hidden !important;
    display: block !important;
    background: #050505 !important;
  }
  .sales-location .sales-map iframe {
    display: block !important;
    width: 100% !important;
    height: 154px !important;
    min-height: 154px !important;
    border: 0 !important;
    filter: grayscale(1) invert(1) contrast(1.05) brightness(0.68) !important;
    opacity: 0.76 !important;
  }
  .sales-copy .sales-location address {
    width: 100% !important;
    align-self: start !important;
    text-align: left !important;
    font-size: 11.5px !important;
    line-height: 1.56 !important;
  }
}

@media (min-width: 901px) {
  .sales-location {
    max-width: 460px !important;
    margin-top: clamp(28px, 4vw, 52px) !important;
    padding-top: 18px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
  }
  .sales-copy .sales-location address {
    max-width: 420px !important;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 14.5px !important;
    line-height: 1.78 !important;
    letter-spacing: 0.01em !important;
  }
}
@media (max-width: 900px) {
  .sales-location .sales-map {
    position: relative !important;
    isolation: isolate !important;
    height: 154px !important;
  }
  .sales-location .sales-map::before {
    content: "" !important;
    position: absolute !important;
    z-index: 2 !important;
    left: 0 !important;
    top: 0 !important;
    width: 118px !important;
    height: 48px !important;
    background: linear-gradient(
      135deg,
      #050505 0%,
      rgba(5, 5, 5, 0.94) 58%,
      rgba(5, 5, 5, 0) 100%
    ) !important;
    pointer-events: none !important;
  }
  .sales-location .sales-map iframe {
    width: calc(100% + 110px) !important;
    max-width: none !important;
    margin-left: -55px !important;
  }
}
@media (max-width: 900px) {
  .sales-location {
    justify-items: center !important;
    text-align: center !important;
  }
  .sales-location .sales-map {
    width: min(100%, 320px) !important;
    max-width: 320px !important;
    height: 152px !important;
    min-height: 152px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  .sales-location .sales-map::before {
    left: 0 !important;
    top: 0 !important;
    width: 128px !important;
    height: 54px !important;
    background: linear-gradient(
      135deg,
      #050505 0%,
      #050505 48%,
      rgba(5, 5, 5, 0.86) 72%,
      rgba(5, 5, 5, 0) 100%
    ) !important;
  }
  .sales-location .sales-map iframe {
    width: 100% !important;
    max-width: 100% !important;
    height: 152px !important;
    min-height: 152px !important;
    margin-left: 0 !important;
    transform: none !important;
  }
  .sales-copy .sales-location address {
    max-width: 280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    align-self: center !important;
    justify-self: center !important;
    font-size: 11.8px !important;
    line-height: 1.62 !important;
  }
}
.site-header .brand {
  width: 136px !important;
  height: 52px !important;
  margin-left: 0 !important;
}
.site-header .brand img {
  width: 136px !important;
  max-height: 52px !important;
  left: 0 !important;
  transform: none !important;
  object-fit: contain !important;
}
.brand .logo-color,
.brand .logo-white,
.site-header.is-solid .brand .logo-color,
.site-header.is-solid .brand .logo-white {
  opacity: 1 !important;
}
.site-header {
  grid-template-columns: 150px minmax(0, 1fr) 92px !important;
}
.project-detail-intro.has-lockup-title h1 {
  display: none !important;
}
.project-title-lockup {
  display: inline-flex;
  align-items: end;
  gap: clamp(12px, 1.8vw, 20px);
  margin: 0 0 6px;
}
.project-title-lockup img {
  width: clamp(74px, 8vw, 108px);
  height: auto;
  display: block;
}
.project-title-lockup span {
  display: block;
  padding-bottom: 0.22em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(20px, 2.6vw, 38px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--ink);
}
.project-detail-intro.has-lockup-title {
  gap: 20px !important;
}
@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto !important;
    padding-left: 18px !important;
    padding-right: 14px !important;
  }
  .site-header .brand {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 118px !important;
    height: 48px !important;
  }
  .site-header .brand img {
    width: 118px !important;
    max-height: 48px !important;
  }
  .project-title-lockup {
    gap: 11px;
    align-items: end;
  }
  .project-title-lockup img {
    width: 68px;
  }
  .project-title-lockup span {
    max-width: 210px;
    padding-bottom: 0.26em;
    font-size: clamp(16px, 5.3vw, 24px);
    letter-spacing: 0.28em;
    overflow-wrap: anywhere;
  }
}
.site-header .brand {
  width: 124px !important;
  height: 46px !important;
  overflow: visible !important;
}
.site-header .brand img {
  width: 124px !important;
  height: auto !important;
  max-height: 46px !important;
  object-fit: contain !important;
  object-position: left center !important;
}
.menu-top img {
  width: 132px !important;
  height: auto !important;
  max-height: 46px !important;
  object-fit: contain !important;
}
.project-title-lockup img {
  width: clamp(66px, 7vw, 96px) !important;
  height: auto !important;
  max-height: 34px !important;
  object-fit: contain !important;
}
.project-title-lockup span {
  padding-bottom: 0.08em !important;
}
@media (max-width: 900px) {
  .site-header .brand {
    width: 112px !important;
    height: 42px !important;
  }
  .site-header .brand img {
    width: 112px !important;
    max-height: 42px !important;
  }
  .project-title-lockup img {
    width: 60px !important;
    max-height: 28px !important;
  }
}
.brand .logo-color {
  opacity: 1 !important;
}
.brand .logo-white {
  opacity: 0 !important;
}
.site-header.is-transparent .brand .logo-color {
  opacity: 0 !important;
}
.site-header.is-transparent .brand .logo-white {
  opacity: 1 !important;
}
.site-header.is-solid .brand .logo-color,
body:not([data-prefix]) .site-header.is-solid .brand .logo-color,
body[data-prefix] .site-header .brand .logo-color {
  opacity: 1 !important;
}
.site-header.is-solid .brand .logo-white,
body:not([data-prefix]) .site-header.is-solid .brand .logo-white,
body[data-prefix] .site-header .brand .logo-white {
  opacity: 0 !important;
}

body:not([data-prefix]) .site-header:not(.is-solid) .brand .logo-color {
  opacity: 0 !important;
}
body:not([data-prefix]) .site-header:not(.is-solid) .brand .logo-white {
  opacity: 1 !important;
}
body:not([data-prefix]) .site-header.is-solid .brand .logo-color,
body[data-prefix] .site-header .brand .logo-color {
  opacity: 1 !important;
}
body:not([data-prefix]) .site-header.is-solid .brand .logo-white,
body[data-prefix] .site-header .brand .logo-white {
  opacity: 0 !important;
}
.project-title-lockup {
  align-items: center !important;
  gap: clamp(14px, 1.7vw, 22px) !important;
}
.project-title-lockup .project-fkn-mark {
  width: clamp(62px, 5.5vw, 84px) !important;
  max-height: 32px !important;
  object-fit: contain !important;
}
.project-title-lockup .project-logo-frame {
  position: relative !important;
  display: inline-block !important;
  width: clamp(168px, 24vw, 340px) !important;
  height: clamp(38px, 4.6vw, 58px) !important;
  overflow: hidden !important;
  flex: 0 1 auto !important;
}
.project-title-lockup .project-wordmark {
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  transform: translateY(-50%) !important;
  object-fit: contain !important;
  object-position: left center !important;
}
@media (max-width: 900px) {
  .project-title-lockup {
    gap: 10px !important;
  }
  .project-title-lockup .project-fkn-mark {
    width: 56px !important;
    max-height: 26px !important;
  }
  .project-title-lockup .project-logo-frame {
    width: min(210px, calc(100vw - 132px)) !important;
    height: 32px !important;
  }
}

.project-title-lockup.project-logo-lockup {
  display: inline-flex !important;
  align-items: center !important;
  gap: clamp(14px, 2.2vw, 28px) !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 0 0 8px !important;
}
.project-title-lockup.project-logo-lockup .project-fkn-mark {
  width: clamp(146px, 14.2vw, 210px) !important;
  height: auto !important;
  max-height: 74px !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}
.project-title-lockup.project-logo-lockup .project-logo-frame {
  position: relative !important;
  display: inline-block !important;
  width: clamp(190px, 27vw, 340px) !important;
  height: clamp(48px, 5.8vw, 76px) !important;
  overflow: hidden !important;
  flex: 0 1 auto !important;
}
.project-title-lockup.project-logo-lockup .project-wordmark {
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  transform: translateY(-50%) !important;
  object-fit: contain !important;
  object-position: left center !important;
}
.project-title-lockup.project-logo-lockup.is-combined .project-combined-logo-frame {
  position: relative !important;
  display: inline-block !important;
  width: clamp(360px, 48vw, 650px) !important;
  height: clamp(64px, 7.4vw, 96px) !important;
  overflow: hidden !important;
}
.project-title-lockup.project-logo-lockup.is-combined .project-combined-logo {
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  transform: translateY(-50%) !important;
  object-fit: contain !important;
  object-position: left center !important;
}
.project-card-caption .project-logo-lockup {
  margin: 2px 0 3px !important;
}
.project-logo-lockup.is-card {
  gap: 9px !important;
}
.project-logo-lockup.is-card .project-fkn-mark {
  width: clamp(68px, 7vw, 96px) !important;
  max-height: 34px !important;
}
.project-logo-lockup.is-card .project-logo-frame {
  width: clamp(102px, 11.5vw, 152px) !important;
  height: clamp(24px, 3.2vw, 36px) !important;
}
.project-logo-lockup.is-card.is-combined .project-combined-logo-frame {
  width: clamp(180px, 20vw, 284px) !important;
  height: clamp(34px, 4vw, 46px) !important;
}
.project-card-caption strong {
  display: none !important;
}
@media (max-width: 900px) {
  .project-title-lockup.project-logo-lockup {
    gap: 10px !important;
  }
  .project-title-lockup.project-logo-lockup .project-fkn-mark {
    width: 88px !important;
    max-height: 34px !important;
  }
  .project-title-lockup.project-logo-lockup .project-logo-frame {
    width: min(166px, calc(100vw - 136px)) !important;
    height: 34px !important;
  }
  .project-title-lockup.project-logo-lockup.is-combined .project-combined-logo-frame {
    width: min(286px, calc(100vw - 48px)) !important;
    height: 48px !important;
  }
  .project-logo-lockup.is-card .project-fkn-mark {
    width: 64px !important;
  }
  .project-logo-lockup.is-card .project-logo-frame {
    width: min(118px, calc(100vw - 168px)) !important;
    height: 28px !important;
  }
  .project-logo-lockup.is-card.is-combined .project-combined-logo-frame {
    width: min(218px, calc(100vw - 64px)) !important;
    height: 38px !important;
  }
}

.project-title-lockup.project-logo-lockup {
  --lockup-gap: clamp(8px, 1.25vw, 14px);
  gap: var(--lockup-gap) !important;
  align-items: center !important;
  line-height: 0 !important;
}
.project-title-lockup.project-logo-lockup .project-fkn-mark {
  width: clamp(76px, 6.4vw, 92px) !important;
  max-height: 30px !important;
  height: auto !important;
}
.project-title-lockup.project-logo-lockup .project-logo-frame,
.project-title-lockup.project-logo-lockup .project-combined-logo-frame {
  position: relative !important;
  display: inline-block !important;
  width: var(--logo-frame-w) !important;
  height: var(--logo-frame-h) !important;
  overflow: hidden !important;
  flex: 0 0 auto !important;
}
.project-title-lockup.project-logo-lockup .project-wordmark,
.project-title-lockup.project-logo-lockup .project-combined-logo {
  position: absolute !important;
  left: var(--logo-img-x) !important;
  top: var(--logo-img-y) !important;
  width: var(--logo-img-w) !important;
  height: var(--logo-img-h) !important;
  max-width: none !important;
  max-height: none !important;
  transform: none !important;
  object-fit: fill !important;
}
.project-title-lockup.project-logo-lockup.is-card {
  --lockup-gap: 7px;
  margin: 1px 0 4px !important;
}
.project-title-lockup.project-logo-lockup.is-card .project-fkn-mark {
  width: 55px !important;
  max-height: 18px !important;
}
.project-card-caption {
  align-items: flex-start !important;
}
.project-card-caption .project-logo-lockup {
  max-width: 100% !important;
}
.project-card-caption em {
  margin-top: 2px !important;
}
@media (max-width: 900px) {
  .project-title-lockup.project-logo-lockup .project-fkn-mark {
    width: 74px !important;
    max-height: 28px !important;
  }
  .project-title-lockup.project-logo-lockup.is-card .project-fkn-mark {
    width: 48px !important;
    max-height: 17px !important;
  }
  .project-title-lockup.project-logo-lockup {
    max-width: calc(100vw - 40px) !important;
  }
}

.project-title-lockup.project-logo-lockup.is-combined .project-combined-logo-frame,
.project-title-lockup.project-logo-lockup.is-card.is-combined .project-combined-logo-frame {
  width: var(--logo-frame-w) !important;
  height: var(--logo-frame-h) !important;
}
.project-title-lockup.project-logo-lockup.is-card.is-combined {
  margin: 1px 0 4px !important;
}

.project-detail-intro.has-lockup-title {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 22px !important;
  max-width: min(920px, calc(100% - 48px)) !important;
  padding-top: 32px !important;
}
.project-detail-intro.has-lockup-title > p {
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.project-detail-intro.has-lockup-title .facts {
  grid-column: auto !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(120px, 180px)) !important;
  justify-content: center !important;
  gap: 18px !important;
  margin-top: 2px !important;
  width: auto !important;
}
.project-detail-intro.has-lockup-title .facts div {
  text-align: center !important;
}
.project-card-caption {
  text-align: left !important;
}
.project-card-caption .project-logo-lockup:not(.is-combined) {
  display: inline-flex !important;
}
@media (max-width: 900px) {
  .project-detail-intro.has-lockup-title {
    max-width: calc(100% - 36px) !important;
    padding-top: 24px !important;
    gap: 18px !important;
  }
  .project-detail-intro.has-lockup-title .facts {
    grid-template-columns: repeat(2, minmax(105px, 1fr)) !important;
    width: min(100%, 360px) !important;
  }
}

.project-card-caption .project-logo-lockup {
  display: inline-flex !important;
  align-items: center !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.project-card-caption .project-logo-lockup .project-fkn-mark {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.hero-copy h1 {
  line-height: 0 !important;
}
.hero-copy .project-logo-lockup.is-hero {
  display: inline-flex !important;
  align-items: center !important;
  gap: clamp(9px, 1.4vw, 16px) !important;
  margin: 0 !important;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.28));
}
.hero-copy .project-logo-lockup.is-hero .project-fkn-mark {
  width: clamp(92px, 8.8vw, 132px) !important;
  max-height: 42px !important;
  opacity: 1 !important;
}
.hero-copy .project-logo-lockup.is-hero .project-logo-frame {
  width: var(--logo-frame-w) !important;
  height: var(--logo-frame-h) !important;
}
.hero-copy .project-logo-lockup.is-hero .project-wordmark {
  filter: brightness(0) invert(1) !important;
}
@media (max-width: 900px) {
  .hero-copy .project-logo-lockup.is-hero {
    gap: 9px !important;
  }
  .hero-copy .project-logo-lockup.is-hero .project-fkn-mark {
    width: 74px !important;
    max-height: 28px !important;
  }
}

.project-title-lockup.project-logo-lockup:not(.is-card),
.hero-copy .project-logo-lockup.is-hero {
  --lockup-gap: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: var(--lockup-gap) !important;
}
.project-title-lockup.project-logo-lockup:not(.is-card) .project-fkn-mark,
.hero-copy .project-logo-lockup.is-hero .project-fkn-mark {
  width: 104px !important;
  height: auto !important;
  max-height: 34px !important;
  flex: 0 0 auto !important;
  object-fit: contain !important;
}
.project-title-lockup.project-logo-lockup:not(.is-card) .project-logo-frame,
.hero-copy .project-logo-lockup.is-hero .project-logo-frame {
  width: var(--logo-frame-w) !important;
  height: var(--logo-frame-h) !important;
}
.project-title-lockup.project-logo-lockup.is-card {
  --lockup-gap: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: var(--lockup-gap) !important;
  min-height: 26px !important;
  margin: 3px 0 5px !important;
}
.project-title-lockup.project-logo-lockup.is-card .project-fkn-mark {
  display: block !important;
  width: 67px !important;
  height: auto !important;
  max-height: 22px !important;
  flex: 0 0 auto !important;
  object-fit: contain !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.project-title-lockup.project-logo-lockup.is-card .project-logo-frame {
  display: inline-block !important;
  width: var(--logo-frame-w) !important;
  height: var(--logo-frame-h) !important;
  flex: 0 0 auto !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.project-title-lockup.project-logo-lockup .project-wordmark {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.hero-copy .project-logo-lockup.is-hero .project-wordmark {
  filter: brightness(0) invert(1) !important;
}
@media (max-width: 900px) {
  .project-title-lockup.project-logo-lockup:not(.is-card) .project-fkn-mark,
  .hero-copy .project-logo-lockup.is-hero .project-fkn-mark {
    width: 88px !important;
    max-height: 29px !important;
  }
  .project-title-lockup.project-logo-lockup.is-card .project-fkn-mark {
    width: 60px !important;
    max-height: 20px !important;
  }
}

.hero-copy .project-logo-lockup.is-hero,
.project-detail-intro .project-logo-lockup:not(.is-card) {
  --lockup-gap: clamp(10px, 1.35vw, 16px) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: var(--lockup-gap) !important;
}
.hero-copy .project-logo-lockup.is-hero .project-fkn-mark,
.project-detail-intro .project-logo-lockup:not(.is-card) .project-fkn-mark {
  width: clamp(92px, 8.8vw, 132px) !important;
  max-height: 42px !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.hero-copy .project-logo-lockup.is-hero .project-logo-frame,
.project-detail-intro .project-logo-lockup:not(.is-card) .project-logo-frame {
  width: var(--logo-frame-w) !important;
  height: var(--logo-frame-h) !important;
}
.project-card-caption {
  overflow: visible !important;
}
.project-card-caption .project-logo-lockup.is-card {
  --lockup-gap: 8px !important;
  display: inline-flex !important;
  grid-auto-flow: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: var(--lockup-gap) !important;
  width: auto !important;
  min-width: max-content !important;
  max-width: none !important;
  min-height: 30px !important;
  overflow: visible !important;
  white-space: nowrap !important;
}
.project-card-caption .project-logo-lockup.is-card .project-fkn-mark {
  display: block !important;
  width: 80px !important;
  max-height: 27px !important;
  height: auto !important;
  flex: 0 0 auto !important;
  object-fit: contain !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.project-card-caption .project-logo-lockup.is-card .project-logo-frame {
  display: inline-block !important;
  width: var(--logo-frame-w) !important;
  height: var(--logo-frame-h) !important;
  flex: 0 0 auto !important;
  overflow: hidden !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.project-card-caption .project-logo-lockup.is-card .project-wordmark {
  display: block !important;
}
@media (max-width: 900px) {
  .hero-copy .project-logo-lockup.is-hero .project-fkn-mark,
  .project-detail-intro .project-logo-lockup:not(.is-card) .project-fkn-mark {
    width: 92px !important;
    max-height: 30px !important;
  }
  .project-card-caption .project-logo-lockup.is-card .project-fkn-mark {
    width: 68px !important;
    max-height: 23px !important;
  }
}

.premium-hero .hero-layer {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.project-card > .project-card-image,
.detail-wide-image,
.detail-gallery-item {
  background: #f4f4f4;
}
.project-card-image img,
.detail-wide-image img,
.detail-gallery-item img {
  image-rendering: auto;
}
.detail-wide-image img,
.detail-gallery-item img {
  object-fit: contain !important;
}
.project-card-image img {
  object-fit: contain !important;
  background: #f4f4f4;
}
@media (max-width: 900px) {
  .premium-hero .hero-layer {
    background-size: cover;
    background-position: center center;
  }
  .detail-wide-image {
    height: auto !important;
    aspect-ratio: 16 / 10;
  }
  .detail-gallery-item {
    aspect-ratio: 16 / 11;
  }
}

.premium-hero .hero-layer {
  background-size: cover !important;
  background-position: center center !important;
  image-rendering: auto;
}
.project-card > .project-card-image {
  background: #f2f2f2;
}
.project-card-image img,
.detail-wide-image img,
.detail-gallery-item img {
  object-position: center center !important;
}
.project-card-image img,
.detail-gallery-item img {
  object-fit: contain !important;
}
.detail-wide-image img {
  object-fit: contain !important;
  background: #f2f2f2;
}
@media (max-width: 900px) {
  .premium-hero .hero-layer {
    background-position: center center !important;
  }
  .project-card > .project-card-image {
    aspect-ratio: 16 / 11;
  }
}

.lightbox {
  padding: clamp(14px, 2.4vw, 34px) !important;
}
.lightbox img {
  max-width: 96vw !important;
  max-height: 92vh !important;
}
.lightbox .lightbox-close {
  top: 18px !important;
  right: 22px !important;
}
.lightbox .lightbox-nav {
  width: 54px !important;
  height: 54px !important;
  font-size: 46px !important;
}
.project-detail-page[data-project-id="kargicak"] .detail-wide-image img,
.project-detail-page[data-project-id="park"] .detail-wide-image img {
  object-position: center center;
}
@media (max-width: 900px) {
  .lightbox {
    padding: 10px !important;
  }
  .lightbox img {
    max-width: 98vw !important;
    max-height: 88vh !important;
  }
  .lightbox .lightbox-nav {
    width: 42px !important;
    height: 42px !important;
    font-size: 38px !important;
  }
}

.lightbox {
  grid-template-columns: minmax(0, 96vw) !important;
  gap: 0 !important;
}
.lightbox img {
  grid-column: 1 !important;
  width: auto !important;
  max-width: 96vw !important;
  max-height: 92vh !important;
}
.lightbox .lightbox-prev,
.lightbox .lightbox-next {
  position: fixed !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  grid-column: auto !important;
  background: rgba(0, 0, 0, 0.18) !important;
}
.lightbox .lightbox-prev {
  left: clamp(12px, 2.4vw, 34px) !important;
}
.lightbox .lightbox-next {
  right: clamp(12px, 2.4vw, 34px) !important;
}
@media (max-width: 900px) {
  .lightbox {
    grid-template-columns: minmax(0, 98vw) !important;
  }
  .lightbox img {
    max-width: 98vw !important;
    max-height: 88vh !important;
  }
}

.detail-bottom-breadcrumb {
  padding-top: 10px !important;
  padding-bottom: 12px !important;
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}

.project-detail-page .detail-gallery-section {
  padding-bottom: clamp(18px, 2.6vw, 34px) !important;
}

@media (max-width: 900px) {
  .detail-bottom-breadcrumb {
    padding-top: 8px !important;
    padding-bottom: 10px !important;
    margin-bottom: 16px !important;
  }
  .project-detail-page .detail-gallery-section {
    padding-bottom: 18px !important;
  }
}

.portfolio-grid .project-card,
.project-card > .project-card-image,
.detail-wide-image,
.detail-gallery-item,
.project-card-image img,
.detail-wide-image img,
.detail-gallery-item img {
  background: transparent !important;
}

.hero-copy .project-logo-lockup.is-hero,
.project-detail-intro .project-logo-lockup:not(.is-card) {
  --fkn-logo-w: clamp(88px, 8.6vw, 124px);
  --project-logo-h: calc(var(--fkn-logo-w) * 0.255);
  --lockup-gap: clamp(8px, 1.05vw, 14px);
  display: inline-flex !important;
  align-items: center !important;
  gap: var(--lockup-gap) !important;
  max-width: min(100%, 760px) !important;
  width: max-content !important;
  white-space: nowrap !important;
}
.hero-copy .project-logo-lockup.is-hero .project-fkn-mark,
.project-detail-intro .project-logo-lockup:not(.is-card) .project-fkn-mark {
  width: var(--fkn-logo-w) !important;
  height: auto !important;
  max-height: none !important;
  flex: 0 0 auto !important;
  object-fit: contain !important;
}
.hero-copy .project-logo-lockup.is-hero .project-logo-frame,
.project-detail-intro .project-logo-lockup:not(.is-card) .project-logo-frame {
  width: var(--logo-frame-w) !important;
  height: var(--logo-frame-h) !important;
  flex: 0 0 auto !important;
  overflow: hidden !important;
}
.hero-copy .project-logo-lockup.is-hero .project-wordmark,
.project-detail-intro .project-logo-lockup:not(.is-card) .project-wordmark {
  position: absolute !important;
  left: var(--logo-img-x) !important;
  top: var(--logo-img-y) !important;
  width: var(--logo-img-w) !important;
  height: var(--logo-img-h) !important;
  max-width: none !important;
  max-height: none !important;
  transform: none !important;
  object-fit: initial !important;
}
.hero-copy .project-logo-lockup.is-hero .project-wordmark {
  filter: brightness(0) invert(1) !important;
}
@media (max-width: 900px) {
  .hero-copy .project-logo-lockup.is-hero,
  .project-detail-intro .project-logo-lockup:not(.is-card) {
    --fkn-logo-w: clamp(66px, 19vw, 84px);
    --project-logo-h: calc(var(--fkn-logo-w) * 0.255);
    --lockup-gap: clamp(7px, 2.2vw, 10px);
    max-width: calc(100vw - 36px) !important;
  }
}
@media (max-width: 380px) {
  .hero-copy .project-logo-lockup.is-hero,
  .project-detail-intro .project-logo-lockup:not(.is-card) {
    --fkn-logo-w: 62px;
    --lockup-gap: 7px;
  }
}

.hero-copy .project-logo-lockup.is-hero,
.project-detail-intro .project-logo-lockup:not(.is-card) {
  --fkn-logo-w: clamp(58px, 5.75vw, 82px);
  --project-logo-h: calc(var(--fkn-logo-w) * 0.255);
  --lockup-gap: clamp(7px, 0.82vw, 10px);
}
@media (max-width: 900px) {
  .hero-copy .project-logo-lockup.is-hero,
  .project-detail-intro .project-logo-lockup:not(.is-card) {
    --fkn-logo-w: clamp(44px, 14.2vw, 56px);
    --project-logo-h: calc(var(--fkn-logo-w) * 0.255);
    --lockup-gap: clamp(6px, 1.8vw, 8px);
  }
  .project-card-caption {
    overflow: hidden !important;
  }
  .project-card-caption .project-logo-lockup.is-card {
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
    transform-origin: left center !important;
    transform: scale(0.88) !important;
  }
  .project-card-caption .project-logo-lockup.is-card .project-fkn-mark {
    width: 58px !important;
    max-height: 20px !important;
  }
  .project-card-caption .project-logo-lockup.is-card .project-logo-frame {
    max-width: calc((100vw - 64px) / 0.88 - 72px) !important;
  }
  .lightbox {
    place-items: center start !important;
    overflow: auto !important;
    padding: 46px 0 34px !important;
    scroll-snap-type: x mandatory;
  }
  .lightbox img {
    width: auto !important;
    height: 88svh !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 auto !important;
    scroll-snap-align: center;
  }
  .lightbox .lightbox-close,
  .lightbox .lightbox-count {
    position: fixed !important;
  }
  .lightbox .lightbox-prev,
  .lightbox .lightbox-next {
    display: none !important;
  }
}

.hero-copy .project-logo-lockup.is-hero,
.project-detail-intro .project-logo-lockup:not(.is-card) {
  --fkn-logo-w: clamp(88px, 8.6vw, 124px) !important;
  --project-logo-h: calc(var(--fkn-logo-w) * 0.17) !important;
  --lockup-gap: clamp(8px, 1vw, 12px) !important;
}
.hero-copy .project-logo-lockup.is-hero .project-fkn-mark,
.project-detail-intro .project-logo-lockup:not(.is-card) .project-fkn-mark {
  width: var(--fkn-logo-w) !important;
  max-height: none !important;
}
@media (max-width: 900px) {
  .hero-copy .project-logo-lockup.is-hero,
  .project-detail-intro .project-logo-lockup:not(.is-card) {
    --fkn-logo-w: clamp(66px, 19vw, 84px) !important;
    --project-logo-h: calc(var(--fkn-logo-w) * 0.17) !important;
    --lockup-gap: clamp(6px, 1.9vw, 9px) !important;
  }
  .project-card-caption .project-logo-lockup.is-card {
    transform: none !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .project-card-caption .project-logo-lockup.is-card .project-fkn-mark {
    width: 68px !important;
    max-height: 23px !important;
  }
  .project-card-caption .project-logo-lockup.is-card .project-logo-frame {
    max-width: calc(100vw - 112px) !important;
  }
}
@media (max-width: 380px) {
  .hero-copy .project-logo-lockup.is-hero,
  .project-detail-intro .project-logo-lockup:not(.is-card) {
    --fkn-logo-w: 62px !important;
    --project-logo-h: calc(var(--fkn-logo-w) * 0.17) !important;
  }
}

@media (max-width: 900px) {
  .home-about-strip {
    width: min(100% - 36px, 560px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: left !important;
  }
  .home-about-copy {
    width: 100% !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.project-card-caption .project-logo-lockup.is-card {
  align-items: center !important;
  gap: 8px !important;
  max-width: 100% !important;
  display: inline-flex !important;
  line-height: 0 !important;
}

.project-card-caption .project-logo-lockup.is-card .project-fkn-mark {
  position: static !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 80px !important;
  height: auto !important;
  max-width: none !important;
  max-height: 28px !important;
  flex: 0 0 auto !important;
  object-fit: contain !important;
}

.project-card-caption .project-logo-lockup.is-card .project-logo-frame.is-card-wordmark {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: var(--logo-frame-w) !important;
  height: var(--logo-frame-h) !important;
  max-width: calc(100% - 90px) !important;
  overflow: visible !important;
  flex: 0 1 auto !important;
}

.project-card-caption
  .project-logo-lockup.is-card
  .project-logo-frame.is-card-wordmark
  .project-wordmark {
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  transform: none !important;
  filter: none !important;
}

@media (max-width: 900px) {
  .project-card-caption .project-logo-lockup.is-card {
    justify-content: flex-start !important;
    width: 100% !important;
    overflow: visible !important;
  }

  .project-card-caption .project-logo-lockup.is-card .project-fkn-mark {
    width: 68px !important;
    max-height: 24px !important;
  }

  .project-card-caption .project-logo-lockup.is-card .project-logo-frame.is-card-wordmark {
    max-width: calc(100% - 82px) !important;
  }
}

.project-title-lockup.project-logo-lockup .project-logo-frame.is-clean-wordmark {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: var(--logo-frame-w) !important;
  height: var(--logo-frame-h) !important;
  overflow: visible !important;
  flex: 0 1 auto !important;
}

.project-title-lockup.project-logo-lockup .project-logo-frame.is-clean-wordmark .project-wordmark {
  position: static !important;
  left: auto !important;
  top: auto !important;
  display: block !important;
  width: auto !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  transform: none !important;
  filter: none !important;
}

.hero-copy .project-logo-lockup.is-hero .project-logo-frame.is-clean-wordmark .project-wordmark {
  filter: none !important;
}

.project-card-caption .project-logo-lockup.is-card {
  --card-project-logo-h: 15px;
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  width: max-content !important;
  max-width: 100% !important;
  margin: 4px 0 5px !important;
  line-height: 0 !important;
  overflow: visible !important;
}

.project-card-caption .project-logo-lockup.is-card .project-fkn-mark {
  position: static !important;
  display: block !important;
  width: 82px !important;
  height: auto !important;
  max-width: none !important;
  max-height: 28px !important;
  transform: none !important;
  flex: 0 0 auto !important;
}

.project-card-caption .project-logo-lockup.is-card .project-logo-frame.is-clean-wordmark {
  width: min(var(--logo-frame-w), 100%) !important;
  height: var(--card-project-logo-h) !important;
  max-width: min(240px, 100%) !important;
}

@media (max-width: 900px) {
  .project-card-caption .project-logo-lockup.is-card {
    --card-project-logo-h: 13px;
    gap: 7px !important;
    width: 100% !important;
  }

  .project-card-caption .project-logo-lockup.is-card .project-fkn-mark {
    width: 72px !important;
    max-height: 25px !important;
  }

  .project-card-caption .project-logo-lockup.is-card .project-logo-frame.is-clean-wordmark {
    max-width: 100% !important;
  }
}

.project-card-caption .project-name-wordmark {
  --card-project-logo-h: 16px;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: min(calc(var(--card-project-logo-h) * var(--project-logo-ratio)), 100%) !important;
  height: var(--card-project-logo-h) !important;
  max-width: min(220px, 100%) !important;
  margin: 4px 0 5px !important;
  line-height: 0 !important;
}

.project-card-caption .project-name-wordmark img {
  position: static !important;
  left: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  transform: none !important;
  opacity: 1 !important;
}

.project-detail-intro .project-logo-lockup:not(.is-card) {
  --fkn-logo-w: clamp(92px, 7vw, 118px) !important;
  --project-logo-h: calc(var(--fkn-logo-w) / var(--project-logo-ratio)) !important;
  --lockup-gap: clamp(7px, 0.75vw, 10px) !important;
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: var(--lockup-gap) !important;
  width: var(--fkn-logo-w) !important;
  max-width: min(100%, var(--fkn-logo-w)) !important;
}

.project-detail-intro .project-logo-lockup:not(.is-card) .project-fkn-mark {
  width: var(--fkn-logo-w) !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: none !important;
  flex: 0 0 auto !important;
}

.project-detail-intro .project-logo-lockup:not(.is-card) .project-logo-frame.is-clean-wordmark {
  width: var(--fkn-logo-w) !important;
  height: var(--project-logo-h) !important;
  max-width: var(--fkn-logo-w) !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
}

.project-detail-intro
  .project-logo-lockup:not(.is-card)
  .project-logo-frame.is-clean-wordmark
  .project-wordmark {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
}

@media (max-width: 900px) {
  .project-card-caption .project-name-wordmark {
    --card-project-logo-h: 14px;
    max-width: 100% !important;
  }

  .project-detail-intro .project-logo-lockup:not(.is-card) {
    --fkn-logo-w: clamp(78px, 23vw, 96px) !important;
    --lockup-gap: 7px !important;
  }
}

.project-detail-intro .project-detail-lockup {
  display: block !important;
  width: clamp(132px, 11vw, 176px) !important;
  max-width: 100% !important;
  margin: 0 auto 22px !important;
  line-height: 0 !important;
}

.project-detail-intro .project-detail-lockup img {
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  transform: none !important;
}

@media (max-width: 900px) {
  .project-detail-intro .project-detail-lockup {
    width: clamp(112px, 34vw, 146px) !important;
    margin-bottom: 18px !important;
  }
}

.hero-copy .project-logo-lockup.is-hero {
  --project-logo-h: calc(var(--fkn-logo-w) * 0.2) !important;
  --lockup-gap: clamp(9px, 1vw, 13px) !important;
}

@media (max-width: 900px) {
  .hero-copy .project-logo-lockup.is-hero {
    --project-logo-h: calc(var(--fkn-logo-w) * 0.19) !important;
  }
}
