:root {
  --ink: #141414;
  --graphite: #2c2f30;
  --muted: #626a6d;
  --paper: #f5f2ec;
  --surface: #ffffff;
  --mist: #eef1ef;
  --line: rgba(20, 20, 20, 0.14);
  --gold: #c9933d;
  --gold-soft: #efd39a;
  --bronze: #92641c;
  --green: #3f735d;
  --shadow: 0 20px 55px rgba(20, 20, 20, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 12px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand span {
  display: grid;
  min-width: 0;
  line-height: 1.08;
}

.brand strong {
  font-size: 1.06rem;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.5vw, 42px);
}

.main-nav > a,
.nav-dropdown-toggle {
  position: relative;
  min-height: 42px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--graphite);
  cursor: pointer;
  font-size: clamp(0.96rem, 1.12vw, 1.18rem);
  font-weight: 500;
  white-space: nowrap;
}

.main-nav > a:hover,
.main-nav > a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--bronze);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-dropdown-toggle::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--bronze);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-dropdown-toggle i,
.language-toggle i {
  width: 11px;
  height: 11px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  opacity: 0.48;
  transform: translateY(-3px) rotate(45deg);
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 50;
  display: grid;
  width: min(360px, calc(100vw - 32px));
  border-top: 4px solid var(--bronze);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(20, 20, 20, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 170ms ease, transform 170ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 13px 22px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  color: var(--graphite);
  font-size: 1.08rem;
  line-height: 1.18;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: #f7f7f4;
  color: var(--bronze);
}

.company-dropdown-menu {
  width: min(280px, calc(100vw - 32px));
}

.language-switcher {
  position: relative;
  justify-self: end;
}

.language-toggle,
.language-option {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  color: var(--graphite);
  cursor: pointer;
  font-weight: 800;
}

.language-toggle {
  min-height: 44px;
  padding: 5px 0 5px 10px;
}

.language-toggle img,
.language-option img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(20, 20, 20, 0.12);
}

.language-toggle i {
  width: 9px;
  height: 9px;
  border-width: 2px;
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 60;
  display: grid;
  min-width: 168px;
  padding: 6px;
  border-top: 4px solid var(--bronze);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(20, 20, 20, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 170ms ease, transform 170ms ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-option {
  width: 100%;
  min-height: 48px;
  padding: 7px 9px;
  text-align: left;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  background: #f7f7f4;
  color: var(--bronze);
}

.hero {
  position: relative;
  display: grid;
  gap: 42px;
  min-height: min(780px, 86svh);
  padding: 54px clamp(18px, 6vw, 90px) 34px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8f8f6 0%, #e8e8e5 72%, #ffffff 100%);
  text-align: center;
}

.hero::before {
  position: absolute;
  inset: auto -12vw -118px -12vw;
  height: 260px;
  border-radius: 50% 50% 0 0;
  background: #ffffff;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 18% 0 auto 0;
  height: 1px;
  background: rgba(20, 20, 20, 0.08);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

.hero-mark {
  width: min(360px, 78vw);
  max-height: 280px;
  object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0 22px 30px rgba(20, 20, 20, 0.16));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--bronze);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 100%;
  color: var(--bronze);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 6.1rem);
  font-weight: 700;
  line-height: 0.94;
  overflow-wrap: anywhere;
}

.hero-claim {
  margin: 20px 0 0;
  color: var(--graphite);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 900;
}

.hero-lead {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  border-color: var(--bronze);
  background: var(--bronze);
  color: #ffffff;
}

.button-secondary {
  border-color: rgba(20, 20, 20, 0.18);
  background: #ffffff;
  color: var(--ink);
}

.hero-service-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-service-row a {
  display: grid;
  gap: 7px;
  min-height: 136px;
  padding: 18px;
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.1);
  text-align: left;
}

.hero-service-row span,
.service-strip span,
.service-card > span,
.project-card-body span {
  color: var(--bronze);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-service-row strong {
  font-size: 1.1rem;
  line-height: 1.15;
}

.hero-service-row small {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.35;
}

.profile-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 6vw, 90px);
  background: var(--graphite);
  color: #ffffff;
}

.profile-band div {
  display: grid;
  gap: 5px;
  min-width: 240px;
}

.profile-band span {
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-band strong {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.05;
}

.profile-band p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 760px);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: 86px clamp(18px, 6vw, 90px);
  background: #f4f2ed;
}

.founder-portrait {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin: 0;
}

.founder-portrait img {
  width: min(320px, 100%);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.founder-portrait figcaption {
  color: var(--bronze);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-copy {
  min-width: 0;
  max-width: 760px;
}

.founder-copy h2 {
  margin: 0;
  color: var(--graphite);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  font-weight: 700;
  line-height: 1;
  overflow-wrap: break-word;
}

.founder-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.72;
  overflow-wrap: break-word;
}

.company-section {
  background: #f4f2ed;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-grid article {
  min-height: 250px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.company-grid article:last-child {
  border-right: 0;
}

.company-grid span {
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 900;
}

.company-grid h3 {
  margin: 44px 0 12px;
  font-size: 1.28rem;
}

.company-grid p {
  margin: 0;
  color: var(--muted);
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.82fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  padding: 82px clamp(18px, 6vw, 90px);
  background: #ffffff;
}

.feature-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
}

.feature-media .feature-project-photo {
  object-position: center 52%;
}

.feature-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.feature-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--bronze);
  font-weight: 900;
}

.section {
  padding: 96px clamp(18px, 6vw, 90px);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.centered {
  justify-items: center;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(2.3rem, 6vw, 5.9rem);
  font-weight: 900;
  line-height: 0.92;
}

.section-heading span {
  color: inherit;
  opacity: 0.76;
  font-size: 1.02rem;
}

.services {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.86), rgba(20, 20, 20, 0.72)),
    url("assets/iskele-airport-detail-no-people.png") center / cover;
  color: #ffffff;
}

.services::before {
  position: absolute;
  inset: 0;
  background: rgba(146, 100, 28, 0.18);
  content: "";
  pointer-events: none;
}

.services > * {
  position: relative;
  z-index: 1;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  width: min(1080px, 100%);
  margin: 0 auto 34px;
}

.service-strip a {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  text-align: center;
}

.service-strip strong {
  font-size: 1rem;
  line-height: 1.15;
}

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

.service-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(20, 20, 20, 0.16);
}

.service-card h3 {
  margin: 30px 0 12px;
  font-size: 1.65rem;
  line-height: 1.08;
}

.service-card p {
  margin: 0 0 20px;
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--graphite);
  font-weight: 800;
}

.service-card li::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  flex: 0 0 auto;
}

.accent-card {
  background: var(--bronze);
  color: #ffffff;
}

.accent-card > span,
.accent-card p {
  color: rgba(255, 255, 255, 0.8);
}

.accent-card a {
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  font-weight: 900;
}

.statement {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: 86px clamp(18px, 6vw, 90px);
  overflow: hidden;
  background: #ffffff;
  text-align: center;
}

.statement img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(620px, 92vw);
  opacity: 0.08;
  transform: translate(-50%, -50%);
}

.statement p {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0;
  color: var(--bronze);
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.15;
}

.statement .button {
  position: relative;
  z-index: 1;
}

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

.filter-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin: 0 0 32px;
}

.filter-button {
  min-height: 86px;
  padding: 18px 22px;
  border: 1px solid rgba(20, 20, 20, 0.16);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--graphite);
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 900;
  text-align: left;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.06);
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.filter-button:hover {
  border-color: var(--bronze);
  transform: translateY(-2px);
}

.filter-button.is-active {
  border-color: var(--bronze);
  background: var(--bronze);
  color: #ffffff;
}

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

.project-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(20, 20, 20, 0.08);
}

.project-card.is-hidden {
  display: none;
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--mist);
}

.project-card img.project-photo-top {
  object-position: center top;
}

.project-card-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.project-card-body h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.18;
}

.project-card-body p {
  margin: 0;
  color: var(--muted);
}

.project-card-text {
  min-height: 260px;
  align-content: end;
  border-color: rgba(146, 100, 28, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 1)),
    linear-gradient(135deg, rgba(146, 100, 28, 0.1), rgba(201, 147, 61, 0.12));
}

.process {
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.process-grid article {
  min-height: 220px;
  padding: 24px;
  background: #ffffff;
}

.process-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  color: var(--bronze);
  font-weight: 900;
}

.process-grid h3 {
  margin: 46px 0 10px;
  font-size: 1.24rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(26px, 6vw, 78px);
  padding: 100px clamp(18px, 6vw, 90px);
  background: var(--graphite);
  color: #ffffff;
}

.career-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 54px clamp(18px, 6vw, 90px);
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.career-band div {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.career-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.career-band p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.career-band .button-secondary {
  flex: 0 0 auto;
}

.contact-copy h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.contact-lines a {
  width: max-content;
  max-width: 100%;
  color: var(--gold-soft);
}

.contact-form {
  display: grid;
  gap: 14px;
  align-self: start;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  outline: none;
  padding: 12px 13px;
}

.contact-form textarea {
  min-height: 138px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(239, 211, 154, 0.22);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(18px, 6vw, 90px);
  background: #111111;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.section,
.service-card {
  scroll-margin-top: 96px;
}

@media (max-width: 1040px) {
  .brand span {
    display: none;
  }

  .site-header {
    gap: 14px;
  }

  .main-nav {
    gap: clamp(12px, 2vw, 24px);
  }

  .hero-service-row,
  .service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-panel,
  .founder-section,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

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

  .company-grid article:nth-child(2) {
    border-right: 0;
  }

  .company-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    display: flex;
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding: 10px 16px 12px;
  }

  .brand {
    max-width: calc(100% - 142px);
  }

  .brand span {
    display: grid;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .language-switcher {
    position: fixed;
    top: 11px;
    right: 16px;
    z-index: 70;
  }

  .language-toggle {
    display: flex;
    width: 38px;
    height: 38px;
    min-height: 38px;
    justify-content: center;
    padding: 4px;
    border-radius: 50%;
    background: #ffffff;
    font-size: 0.86rem;
    box-shadow: 0 5px 16px rgba(20, 20, 20, 0.12);
  }

  .language-toggle span,
  .language-toggle i {
    display: none;
  }

  .language-toggle img,
  .language-option img {
    display: block;
    width: 26px;
    height: 26px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 2px 14px;
  }

  .main-nav > a,
  .nav-dropdown-toggle {
    width: 100%;
    min-height: 36px;
    font-size: 0.88rem;
    text-align: left;
    white-space: normal;
  }

  .nav-dropdown {
    position: static;
  }

  .nav-dropdown-menu {
    top: auto;
    left: 16px;
    right: 16px;
    width: auto;
    max-height: min(62svh, 520px);
    overflow-y: auto;
    transform: translateY(-8px);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    transform: translateY(0);
  }

  .hero {
    min-height: auto;
    padding: 38px 16px 30px;
  }

  .hero-copy {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    min-width: 0;
  }

  .hero-copy > * {
    max-width: 100%;
  }

  .hero-mark {
    width: min(260px, 78vw);
    max-height: 220px;
  }

  .hero h1 {
    width: 100%;
    font-size: 2rem;
    line-height: 1;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero-claim,
  .hero-lead {
    width: 100%;
    overflow-wrap: break-word;
  }

  .hero-claim {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .hero-lead {
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.9rem;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

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

  .hero-service-row,
  .service-strip,
  .service-grid,
  .filter-bar,
  .project-grid,
  .process-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .company-grid article,
  .company-grid article:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .company-grid article:last-child {
    border-bottom: 0;
  }

  .company-grid h3 {
    margin-top: 22px;
  }

  .profile-band,
  .career-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-band div,
  .profile-band p {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    min-width: 0;
  }

  .feature-panel,
  .founder-section,
  .section,
  .contact {
    padding: 68px 16px;
  }

  .founder-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .founder-portrait {
    justify-items: start;
  }

  .founder-portrait img {
    width: min(260px, 100%);
  }

  .founder-copy h2 {
    font-size: 1.62rem;
    line-height: 1.14;
  }

  .founder-copy,
  .founder-copy h2,
  .founder-copy p:not(.eyebrow) {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    word-break: normal;
    hyphens: auto;
  }

  .founder-copy p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .service-card {
    min-height: 300px;
    padding: 22px;
  }

  .project-card-text {
    min-height: 220px;
  }

  .contact-form {
    padding: 16px;
  }
}
