:root {
  --ink: #101010;
  --charcoal: #17191b;
  --steel: #47525c;
  --muted: #747b82;
  --line: #d9dde0;
  --soft: #f5f3ef;
  --paper: #ffffff;
  --brand: #d51f2a;
  --brand-dark: #9c121b;
  --amber: #c8944e;
  --blue: #234f63;
  --nav-bg: #f7f7f5;
  --shadow: 0 22px 70px rgba(16, 16, 16, 0.18);
  --max: 1180px;
  --header-height: 156px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--ink);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 16, 16, 0.94);
}

.topbar__inner,
.topbar__left,
.topbar__right,
.topbar__item {
  display: flex;
  align-items: center;
}

.topbar__inner {
  min-height: 38px;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
}

.topbar__left {
  gap: 22px;
}

.topbar__right {
  gap: 22px;
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.05);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.topbar-socials a:hover,
.topbar-socials a:focus-visible {
  color: #fff;
  border-color: rgba(213, 31, 42, 0.55);
  background: var(--brand);
}

.topbar-socials svg {
  width: 16px;
  height: 16px;
  color: currentColor;
  fill: currentColor;
}

.topbar__item {
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  white-space: nowrap;
}

.topbar svg {
  width: 15px;
  height: 15px;
  color: var(--amber);
}

.nav {
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
  background: rgba(247, 247, 245, 0.97);
  box-shadow: 0 12px 38px rgba(16, 16, 16, 0.08);
  backdrop-filter: blur(14px);
}

.nav__inner {
  min-height: 132px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  width: 430px;
  min-width: 430px;
  border-radius: 6px;
  padding: 0;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: 116px;
  object-fit: contain;
}

.brand__mobile {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
}

.nav-menu a,
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.nav-menu a {
  position: relative;
  color: var(--ink);
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

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

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a.is-active::after {
  transform: scaleX(1);
}

.nav-menu a.is-active {
  color: var(--brand);
}

.nav-cta {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(213, 31, 42, 0.28);
  white-space: nowrap;
}

.nav-cta svg,
.btn svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero__media,
.hero__media img,
.hero__shade,
.hero__grid {
  position: absolute;
  inset: 0;
}

.hero__media {
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero__slides img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease, transform 7200ms ease;
}

.hero__slides img.is-active {
  opacity: 1;
  transform: scale(1.06);
}

.hero__shade {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.12) 0%, rgba(10, 10, 10, 0.04) 44%, rgba(10, 10, 10, 0.72) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.03) 58%, rgba(10, 10, 10, 0.22) 100%);
}

.hero__grid {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 82%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: end;
  padding: calc(var(--header-height) + 52px) 0 32px;
  pointer-events: none;
}

.hero__copy {
  max-width: none;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.hero-slider-ui {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brand);
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  width: min(100%, 680px);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(19px, 2.4vw, 28px);
  line-height: 1.18;
  text-transform: none;
}

.hero h1 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(68px, 12vw, 148px);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__lead {
  width: min(100%, 650px);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.48;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-slider-controls {
  width: fit-content;
  display: inline-grid;
  grid-template-columns: 44px auto 44px;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.58);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.hero-slider-controls > button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-slider-controls > button:hover,
.hero-slider-controls > button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--brand);
  background: var(--brand);
}

.hero-slider-controls svg {
  width: 18px;
  height: 18px;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 4px;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dots button.is-active {
  width: 24px;
  background: #fff;
}

.hero-slider-thumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.hero-slider-thumbs button {
  width: 82px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 5px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  opacity: 0.58;
  filter: saturate(0.72);
  transition: width 180ms ease, opacity 180ms ease, filter 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-slider-thumbs button:hover,
.hero-slider-thumbs button:focus-visible {
  opacity: 0.9;
  filter: saturate(1);
  transform: translateY(-2px);
}

.hero-slider-thumbs button.is-active {
  z-index: 1;
  opacity: 1;
  filter: saturate(1);
  border-color: #fff;
  transform: scale(1.1);
}

.btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
}

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

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 18px 44px rgba(213, 31, 42, 0.28);
}

.btn--ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.btn--dark {
  color: #fff;
  background: var(--ink);
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-panel__item {
  padding: 24px;
}

.hero-panel__item + .hero-panel__item {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-panel__item span {
  display: block;
  color: var(--amber);
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.hero-panel__item strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}

.hero-panel__item p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.contact-strip {
  background: var(--brand);
  color: #fff;
}

.contact-strip__inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contact-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  padding: 14px;
  font-weight: 800;
  text-align: center;
}

.contact-strip a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-strip svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.section {
  padding: 104px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 64px;
  align-items: center;
}

.split__content h2,
.section-heading h2,
.showcase__content h2,
.contact__content h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-text,
.section-heading p,
.showcase__content p,
.contact__content p {
  margin: 20px 0 0;
  color: var(--steel);
  font-size: 17px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.principle,
.service-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.principle {
  padding: 22px;
}

.principle svg,
.service-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--brand);
}

.principle h3,
.service-card h3 {
  margin: 14px 0 8px;
  font-size: 20px;
}

.principle p,
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.image-feature {
  position: relative;
  min-height: 560px;
}

.image-feature img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.call-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  background: rgba(16, 16, 16, 0.86);
  backdrop-filter: blur(14px);
}

.call-card svg {
  width: 34px;
  height: 34px;
  color: var(--amber);
  flex: 0 0 auto;
}

.call-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.call-card a {
  display: block;
  margin-top: 2px;
  font-weight: 800;
}

.services {
  background: var(--soft);
}

.section-heading {
  width: min(100%, 760px);
  margin-bottom: 40px;
}

.section-heading--compact {
  width: 100%;
  margin-bottom: 28px;
}

.section-heading--row {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

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

.service-grid--focused {
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.service-card {
  display: flex;
  min-height: 318px;
  flex-direction: column;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(213, 31, 42, 0.28);
  box-shadow: 0 22px 54px rgba(16, 16, 16, 0.12);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(213, 31, 42, 0.08);
}

.service-card span {
  margin-top: 24px;
  color: var(--amber);
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--brand);
  font-weight: 800;
}

.service-card a svg {
  width: 17px;
  height: 17px;
}

.service-card--category {
  min-height: 248px;
  scroll-margin-top: 150px;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.service-options a {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-options a:hover,
.service-options a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(213, 31, 42, 0.36);
  box-shadow: 0 14px 32px rgba(16, 16, 16, 0.1);
}

.service-options svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--brand);
}

.service-options strong {
  font-size: 17px;
  line-height: 1.2;
}

.seo-hub {
  background: #fff;
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.seo-link-card {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(213, 31, 42, 0.08), rgba(200, 148, 78, 0.04)),
    #fff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.seo-link-card:hover,
.seo-link-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(213, 31, 42, 0.32);
  box-shadow: 0 22px 52px rgba(16, 16, 16, 0.1);
}

.seo-link-card span {
  color: var(--amber);
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.seo-link-card strong {
  margin-top: 22px;
  color: var(--ink);
  font-family: "Rajdhani", sans-serif;
  font-size: 24px;
  line-height: 1;
}

.seo-link-card p {
  margin: 12px 0 0;
  color: var(--steel);
  font-size: 14px;
}

.seo-page {
  padding-top: var(--header-height);
  background: var(--paper);
}

.seo-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(13, 14, 15, 0.94), rgba(13, 14, 15, 0.76)),
    url("assets/images/halk-grup-ofis-cephe.jpeg") center / cover;
}

.seo-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: end;
  min-height: 560px;
  padding: 96px 0 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a {
  color: #fff;
}

.seo-hero h1 {
  max-width: 800px;
  margin: 0;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.94;
  letter-spacing: 0;
}

.seo-hero__lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.seo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.seo-hero__panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.seo-hero__panel h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 20px;
}

.seo-hero__panel ul,
.seo-side ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-hero__panel li,
.seo-side li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.seo-hero__panel li::before,
.seo-side li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--amber);
}

.seo-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 52px;
  align-items: start;
}

.seo-panel {
  display: grid;
  gap: 34px;
}

.seo-copy-block {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.seo-copy-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.seo-copy-block h2,
.seo-related h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  letter-spacing: 0;
}

.seo-copy-block p {
  margin: 16px 0 0;
  color: var(--steel);
  font-size: 17px;
}

.seo-side {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.seo-side h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 22px;
}

.seo-side li {
  color: var(--steel);
}

.seo-cta {
  margin-top: 24px;
}

.seo-related-band {
  background: var(--soft);
}

.seo-related {
  display: grid;
  gap: 26px;
}

.seo-related__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.seo-related__grid a {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.seo-related__grid svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex: 0 0 auto;
}

.page-shell {
  padding-top: 170px;
  background: var(--paper);
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.page-hero__media,
.page-hero__veil,
.page-hero__grid {
  position: absolute;
  inset: 0;
}

.page-hero__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--construction .page-hero__media {
  object-position: center 54%;
}

.page-hero--machine .page-hero__media {
  object-position: center 62%;
}

.page-hero__veil {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.76)),
    linear-gradient(90deg, rgba(10, 10, 10, 0.86) 0%, rgba(10, 10, 10, 0.34) 58%, rgba(10, 10, 10, 0.1) 100%);
}

.page-hero__grid {
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 82px 0 72px;
}

.page-hero .breadcrumb {
  margin-bottom: 22px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

.page-hero__lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}

.page-intro h2,
.page-band h2,
.route-section h2,
.gallery-page h2,
.contact-page h2,
.quote-page h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-intro__copy {
  display: grid;
  gap: 18px;
}

.page-intro__copy p {
  margin: 0;
  color: var(--steel);
  font-size: 17px;
}

.page-intro__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.page-intro__facts div {
  min-height: 108px;
  display: grid;
  align-content: center;
  padding: 18px;
  background: #fff;
}

.page-intro__facts strong,
.page-intro__facts span {
  display: block;
}

.page-intro__facts strong {
  color: var(--brand);
  font-family: "Rajdhani", sans-serif;
  font-size: 25px;
  line-height: 1;
}

.page-intro__facts span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

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

.route-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.route-section__head p {
  width: min(100%, 520px);
  margin: 0;
  color: var(--steel);
}

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

.route-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  border-radius: 8px;
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.route-card:hover,
.route-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(213, 31, 42, 0.38);
  box-shadow: 0 22px 52px rgba(16, 16, 16, 0.1);
}

.route-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--brand);
  background: rgba(213, 31, 42, 0.08);
}

.route-card__icon svg {
  width: 24px;
  height: 24px;
}

.route-card > span {
  margin-top: 22px;
  color: var(--amber);
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.route-card h3 {
  margin: 8px 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.route-card p {
  margin: 14px 0 22px;
  color: var(--steel);
  font-size: 14px;
}

.route-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: var(--brand);
  font-weight: 800;
}

.route-card__link svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.route-card__link:hover svg,
.route-card__link:focus-visible svg {
  transform: translateX(4px);
}

.page-band {
  color: #fff;
  background: var(--charcoal);
}

.page-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 54px;
  align-items: center;
}

.page-band h2 {
  color: #fff;
}

.page-band p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.machine-gateway {
  background:
    linear-gradient(100deg, rgba(13, 14, 15, 0.95), rgba(13, 14, 15, 0.7)),
    url("assets/images/hero-machine-optimized.jpg") center 62% / cover;
}

.gateway-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.gallery-page__intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.gallery-page__intro p {
  margin: 18px 0 0;
  color: var(--steel);
  font-size: 17px;
}

.gallery-page .gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 280px;
}

.gallery-page .gallery-item--wide {
  grid-column: span 2;
}

.contact-page,
.quote-page {
  background: #fff;
}

.contact-page__grid,
.quote-page__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
  align-items: start;
}

.contact-page__copy > p,
.quote-page__copy > p {
  margin: 18px 0 0;
  color: var(--steel);
  font-size: 17px;
}

.contact-page .contact-list {
  margin-top: 30px;
}

.contact-page .contact-list a,
.contact-page .contact-list div {
  color: var(--ink);
  border-color: var(--line);
  background: var(--soft);
}

.contact-page .contact-list span {
  color: var(--muted);
}

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

.form-row--full,
.form-grid .btn {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.quote-process {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.quote-process div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.quote-process strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
}

.quote-process span {
  color: var(--steel);
}

.showcase {
  color: #fff;
  background: var(--charcoal);
}

.showcase__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.showcase__media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

.showcase__content h2 {
  color: #fff;
}

.showcase__content p {
  color: rgba(255, 255, 255, 0.72);
}

.showcase__ticks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.showcase__ticks span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.05);
}

.showcase__ticks svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
  flex: 0 0 auto;
}

.gallery {
  background: #fff;
}

.gallery-slider {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 48vw, 620px);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 24px 70px rgba(16, 16, 16, 0.13);
}

.gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  opacity: 0;
  cursor: zoom-in;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.gallery-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 7200ms ease;
}

.gallery-slide.is-active img {
  transform: scale(1.04);
}

.gallery-slide span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 6px;
  color: #fff;
  background: rgba(16, 16, 16, 0.72);
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.gallery-controls {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  display: inline-grid;
  grid-template-columns: 44px auto 44px;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.58);
  backdrop-filter: blur(12px);
}

.gallery-controls button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.gallery-controls button:hover,
.gallery-controls button:focus-visible {
  transform: translateY(-1px);
  background: var(--brand);
}

.gallery-controls svg {
  width: 19px;
  height: 19px;
}

.gallery-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.gallery-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.gallery-dots button.is-active {
  width: 24px;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 8px;
  background: var(--ink);
  cursor: zoom-in;
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, opacity 320ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
  opacity: 0.76;
}

.gallery-item span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 5px 10px;
  border-radius: 6px;
  color: #fff;
  background: rgba(16, 16, 16, 0.72);
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.contact {
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.94), rgba(16, 16, 16, 0.78)),
    url("assets/images/gallery-04.jpeg") center / cover;
  color: #fff;
}

.contact__inner {
  display: grid;
  grid-template-columns: 0.9fr minmax(320px, 0.72fr);
  gap: 58px;
  align-items: start;
}

.contact__content h2 {
  color: #fff;
}

.contact__content p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-list a,
.contact-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 14px;
  align-items: center;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.contact-list svg {
  grid-row: span 2;
  width: 26px;
  height: 26px;
  color: var(--amber);
}

.contact-list span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.contact-list strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-form {
  padding: 26px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  font-weight: 800;
  font-size: 13px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  outline: 0;
}

.form-row input,
.form-row select {
  height: 48px;
  padding: 0 14px;
}

.form-row textarea {
  resize: vertical;
  min-height: 126px;
  padding: 14px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(213, 31, 42, 0.12);
}

.contact-form .btn {
  width: 100%;
}

.footer {
  background: #0d0e0f;
  color: rgba(255, 255, 255, 0.74);
  padding: 70px 0 84px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 46px;
}

.footer-logo {
  display: inline-flex;
  align-items: baseline;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.footer__brand p {
  margin: 18px 0 0;
  max-width: 320px;
}

.footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 17px;
}

.footer a,
.footer span {
  display: block;
  margin-top: 10px;
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer__socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #fff;
}

.footer__socials svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__bottom span,
.footer__bottom a {
  margin: 0;
}

.back-top-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.back-top-btn:hover,
.back-top-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(213, 31, 42, 0.58);
  background: var(--brand);
}

.back-top-btn svg {
  width: 17px;
  height: 17px;
}

.mobile-actions {
  position: fixed;
  left: 10px;
  right: auto;
  bottom: 10px;
  z-index: 60;
  display: none;
  width: calc(100vw - 20px);
  max-width: calc(100vw - 20px);
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: #0d0e0f;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.mobile-actions a {
  display: grid;
  place-items: center;
  gap: 4px;
  min-width: 0;
  min-height: 58px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.mobile-actions span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
}

.mobile-actions a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-actions svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
}

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

.hg-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  justify-items: end;
  gap: 12px;
  pointer-events: none;
}

.hg-chat__toggle,
.hg-chat__panel {
  pointer-events: auto;
}

.hg-chat__toggle {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 18px 48px rgba(213, 31, 42, 0.34);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hg-chat__toggle:hover,
.hg-chat__toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(213, 31, 42, 0.42);
}

.hg-chat__toggle svg {
  width: 20px;
  height: 20px;
}

.hg-chat__panel {
  order: -1;
  width: min(390px, calc(100vw - 28px));
  max-height: min(650px, calc(100svh - 120px));
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(16, 16, 16, 0.28);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hg-chat.is-open .hg-chat__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hg-chat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  color: #fff;
  background: #111315;
}

.hg-chat__head strong,
.hg-chat__head span {
  display: block;
}

.hg-chat__head strong {
  font-size: 15px;
  line-height: 1.2;
}

.hg-chat__head span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.35;
}

.hg-chat__head button {
  width: 36px;
  height: 36px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.hg-chat__head svg {
  width: 18px;
  height: 18px;
}

.hg-chat__messages {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  overflow-y: auto;
  background:
    linear-gradient(180deg, rgba(245, 243, 239, 0.85), rgba(255, 255, 255, 0.96)),
    #fff;
}

.hg-chat__bubble {
  width: fit-content;
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.48;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.hg-chat__bubble--assistant {
  justify-self: start;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(16, 16, 16, 0.08);
}

.hg-chat__bubble--user {
  justify-self: end;
  color: #fff;
  background: var(--brand);
}

.hg-chat__bubble.is-typing {
  color: var(--muted);
  font-style: italic;
}

.hg-chat__form {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid rgba(16, 16, 16, 0.1);
  background: #fff;
}

.hg-chat__form textarea {
  min-height: 44px;
  max-height: 132px;
  resize: none;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 6px;
  padding: 10px 11px;
  color: var(--ink);
  background: #f9f9f8;
  font-size: 13px;
  line-height: 1.45;
  outline: 0;
}

.hg-chat__form textarea:focus {
  border-color: rgba(213, 31, 42, 0.58);
  background: #fff;
}

.hg-chat__form button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--brand);
  cursor: pointer;
}

.hg-chat__form button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.hg-chat__form svg {
  width: 18px;
  height: 18px;
}

.hg-chat__status {
  min-height: 28px;
  margin: 0;
  padding: 0 14px 12px;
  color: var(--brand-dark);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86svh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

@media (max-width: 1100px) {
  :root {
    --header-height: 98px;
  }

  .topbar {
    display: none;
  }

  .nav__inner {
    grid-template-columns: auto auto;
    min-height: 90px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 90px;
    left: 14px;
    right: 14px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 8px;
    background: rgba(13, 14, 15, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-menu a {
    min-height: 46px;
    align-items: center;
    border-radius: 6px;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.88);
  }

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

  .nav-menu a:hover,
  .nav-menu a:focus-visible,
  .nav-menu a.is-active {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-menu a.is-active {
    color: #fff;
    box-shadow: inset 3px 0 0 var(--brand);
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .hero-panel__item + .hero-panel__item {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

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

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

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

  .seo-hero__inner,
  .seo-content {
    grid-template-columns: 1fr;
  }

  .seo-hero__inner {
    min-height: auto;
    padding: 82px 0 62px;
  }

  .seo-side {
    position: static;
  }

  .page-shell {
    padding-top: 90px;
  }

  .page-intro,
  .contact-page__grid,
  .quote-page__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .page-band__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gateway-actions {
    justify-content: flex-start;
  }

  .showcase__inner,
  .split,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .image-feature,
  .image-feature img,
  .showcase__media img {
    min-height: auto;
    height: auto;
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

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

  .brand__image {
    display: none;
  }

  .brand__mobile {
    display: grid;
    gap: 3px;
  }

  .brand__mobile-name {
    color: var(--ink);
    font-family: "Rajdhani", sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 0.86;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .brand__mobile-subtitle {
    color: var(--brand);
    font-family: "Rajdhani", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .hero {
    min-height: 82svh;
  }

  .hero__content {
    width: min(100% - 28px, 362px);
    margin-left: 14px;
    margin-right: auto;
    padding: 112px 0 34px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(45px, 13vw, 56px);
    line-height: 0.95;
    overflow-wrap: break-word;
  }

  .hero__lead {
    width: min(100%, 362px);
    margin-top: 20px;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-slider-controls {
    grid-template-columns: 40px auto 40px;
    gap: 8px;
    margin-top: 16px;
  }

  .hero-slider-controls > button {
    width: 40px;
    height: 40px;
  }

  .hero-slider-thumbs {
    display: none;
  }

  .hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-panel__item {
    min-width: 0;
    padding: 14px 8px;
  }

  .hero-panel__item + .hero-panel__item {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 0;
  }

  .hero-panel__item span {
    font-size: 14px;
  }

  .hero-panel__item strong {
    margin-top: 4px;
    font-size: 15px;
  }

  .hero-panel__item p {
    display: none;
  }

  .contact-strip__inner {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }

  .contact-strip a {
    min-height: 48px;
  }

  .contact-strip a + a {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }

  .section {
    padding: 72px 0;
  }

  .split {
    gap: 42px;
  }

  .principles,
  .service-grid,
  .seo-link-grid,
  .seo-related__grid,
  .showcase__ticks,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 260px;
  }

  .service-card--category {
    scroll-margin-top: 116px;
  }

  .gallery-slider {
    min-height: 420px;
  }

  .gallery-slide span {
    left: 14px;
    right: 14px;
    bottom: 92px;
    width: fit-content;
    max-width: calc(100% - 28px);
  }

  .gallery-controls {
    bottom: 18px;
    grid-template-columns: 40px auto 40px;
    gap: 8px;
  }

  .gallery-controls button {
    width: 40px;
    height: 40px;
  }

  .service-options {
    grid-template-columns: 1fr;
  }

  .seo-link-card {
    min-height: 160px;
  }

  .seo-page {
    padding-top: 90px;
  }

  .seo-hero__inner {
    gap: 30px;
    padding: 58px 0 46px;
  }

  .seo-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .seo-hero__lead,
  .seo-copy-block p {
    font-size: 16px;
  }

  .seo-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .seo-related__grid a {
    min-height: 76px;
  }

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

  .page-hero__content {
    padding: 64px 0 54px;
  }

  .page-hero h1 {
    font-size: clamp(44px, 12vw, 64px);
  }

  .page-hero__lead {
    font-size: 16px;
  }

  .route-section__head {
    display: grid;
    align-items: start;
  }

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

  .form-row--full,
  .form-grid .btn {
    grid-column: auto;
  }

  .page-intro__facts {
    grid-template-columns: 1fr;
  }

  .gallery-page .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-page .gallery-item--wide {
    grid-column: auto;
  }

  .section-heading--row {
    display: grid;
    align-items: start;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-item--large {
    grid-column: auto;
    grid-row: auto;
  }

  .contact__inner {
    gap: 34px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer {
    padding-bottom: 92px;
  }

  .footer__bottom {
    display: grid;
  }

  .mobile-actions {
    display: grid;
    width: min(calc(100vw - 20px), 370px);
    max-width: min(calc(100vw - 20px), 370px);
  }

  .hg-chat {
    right: 10px;
    bottom: 82px;
  }

  .hg-chat__toggle {
    width: 52px;
    min-height: 48px;
    padding: 0;
    border-radius: 999px;
    font-size: 13px;
  }

  .hg-chat__toggle span {
    display: none;
  }

  .hg-chat__panel {
    max-height: calc(100svh - 156px);
  }

  .hg-chat__messages {
    min-height: 220px;
  }
}

@media (max-width: 430px) {
  .nav__inner {
    min-height: 84px;
  }

  .nav-menu {
    top: 84px;
  }

  .brand {
    width: auto;
    min-width: 0;
  }

  .brand__mobile-name {
    font-size: 32px;
  }

  .brand__mobile-subtitle {
    font-size: 12px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero__content {
    padding-top: 104px;
  }

  .split__content h2,
  .section-heading h2,
  .showcase__content h2,
  .contact__content h2,
  .seo-copy-block h2,
  .seo-related h2 {
    font-size: 35px;
  }

  .seo-hero h1 {
    font-size: 40px;
  }

  .page-shell {
    padding-top: 84px;
  }

  .page-hero {
    min-height: 500px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero__actions,
  .gateway-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-hero__actions .btn,
  .gateway-actions .btn {
    width: 100%;
  }

  .call-card {
    position: static;
    margin-top: 12px;
  }

  .contact-list a,
  .contact-list div {
    grid-template-columns: 34px 1fr;
    padding: 14px;
  }

  .hg-chat {
    left: 10px;
    right: 10px;
    justify-items: end;
  }

  .hg-chat__panel {
    width: calc(100vw - 20px);
  }
}

/* 2026 content, accessibility and project pages */
:root {
  --max: 1320px;
  --header-height: 150px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 5px;
  color: #fff;
  background: var(--brand);
  transform: translateY(-150%);
}

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

.topbar-socials .social-pending {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.03);
  cursor: help;
}

.topbar-socials .social-pending svg,
.topbar-socials a svg {
  width: 16px;
  height: 16px;
  fill: none;
}

.brand-icon {
  width: 16px;
  height: 16px;
  display: block;
  background: currentColor;
  -webkit-mask: var(--brand-icon) center / contain no-repeat;
  mask: var(--brand-icon) center / contain no-repeat;
}

.brand-icon--instagram {
  --brand-icon: url("assets/icons/instagram.svg");
}

.brand-icon--facebook {
  --brand-icon: url("assets/icons/facebook.svg");
}

.brand-icon--linkedin {
  --brand-icon: url("assets/icons/linkedin.svg");
}

.brand-icon--youtube {
  --brand-icon: url("assets/icons/youtube.svg");
}

.nav__inner {
  min-height: 112px;
  gap: 20px;
}

.brand {
  width: 310px;
  min-width: 310px;
}

.brand img {
  height: 98px;
}

.nav-menu {
  gap: clamp(12px, 1.35vw, 22px);
}

.nav-menu a {
  font-size: 15px;
}

.hero {
  min-height: 84svh;
}

.hero__slides img {
  object-position: center 46%;
}

.hero-slider-ui {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: end;
  gap: 10px 22px;
}

.hero-caption {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: end;
  width: min(100%, 520px);
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  border-left: 3px solid var(--brand);
  color: #fff;
  background: rgba(13, 14, 15, 0.62);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.hero-caption strong {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.hero-caption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.hero-slider-thumbs {
  grid-column: 2;
  grid-row: 1;
}

.hero-slider-controls {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
}

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

.route-grid--two .route-card {
  min-height: 270px;
}

.corporate-story__grid,
.expertise-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: start;
}

.corporate-story__lead h2,
.expertise-section h2,
.leadership-card h2,
.route-section__head h2,
.ongoing-card h2,
.ongoing-note h2 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 0.98;
}

.corporate-story__copy {
  padding-left: 28px;
  border-left: 2px solid var(--brand);
}

.corporate-story__copy p {
  margin: 0;
  color: var(--steel);
  font-size: 17px;
}

.corporate-story__copy p + p {
  margin-top: 18px;
}

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

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

.values-grid article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.values-grid svg {
  width: 30px;
  height: 30px;
  color: var(--brand);
}

.values-grid h3 {
  margin: 34px 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 27px;
  line-height: 1;
}

.values-grid p {
  margin: 13px 0 0;
  color: var(--steel);
  font-size: 14px;
}

.expertise-section {
  color: #fff;
  background: var(--charcoal);
}

.expertise-section h2 {
  color: #fff;
}

.expertise-section p {
  color: rgba(255, 255, 255, 0.68);
}

.expertise-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expertise-list li {
  position: relative;
  padding: 14px 0 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
}

.expertise-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 9px;
  height: 2px;
  background: var(--brand);
}

.leadership-section {
  background: #fff;
}

.leadership-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding-block: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.leadership-card__mark {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font-family: "Rajdhani", sans-serif;
  font-size: 38px;
  font-weight: 700;
}

.leadership-card strong {
  display: block;
  margin-top: 9px;
  color: var(--brand);
}

.leadership-card p:last-child {
  margin: 12px 0 0;
  color: var(--steel);
}

.featured-projects {
  background: #fff;
}

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

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(16, 16, 16, 0.08);
}

.project-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--charcoal);
  cursor: zoom-in;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.project-card:hover .project-card__media img {
  transform: scale(1.035);
}

.project-card__body {
  padding: 24px;
}

.project-card__meta,
.reference-card__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--brand);
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.project-card h2 {
  margin: 12px 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 34px;
  line-height: 1;
}

.project-card__body > p {
  margin: 15px 0 0;
  color: var(--steel);
}

.project-card dl,
.ongoing-card dl {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.project-card dl div,
.ongoing-card dl div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.project-card dt,
.ongoing-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-card dd,
.ongoing-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

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

.project-toolbar {
  display: grid;
  grid-template-columns: 1fr minmax(190px, 0.32fr);
  gap: 12px;
  margin-bottom: 24px;
}

.project-toolbar > label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.project-toolbar > div {
  position: relative;
}

.project-toolbar svg {
  position: absolute;
  left: 15px;
  top: 50%;
  width: 18px;
  height: 18px;
  color: var(--muted);
  transform: translateY(-50%);
}

.project-toolbar input,
.project-toolbar select {
  width: 100%;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  background: #fff;
  outline: 0;
}

.project-toolbar input {
  padding: 0 16px 0 44px;
}

.project-toolbar select {
  padding: 0 14px;
}

.project-toolbar input:focus,
.project-toolbar select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(213, 31, 42, 0.1);
}

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

.reference-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.reference-card[hidden] {
  display: none;
}

.reference-card h3 {
  margin: 26px 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 27px;
  line-height: 1;
}

.reference-card > p {
  margin: 13px 0 24px;
  color: var(--steel);
  font-size: 14px;
}

.reference-card__details {
  display: grid;
  gap: 9px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.reference-card__details span {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
}

.reference-card__details svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
}

.project-empty {
  margin: 22px 0 0;
  padding: 18px;
  border-left: 3px solid var(--brand);
  background: #fff;
}

.ongoing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 24px;
  align-items: stretch;
}

.ongoing-card,
.ongoing-note {
  border-radius: 6px;
}

.ongoing-card {
  border: 1px solid var(--line);
  background: #fff;
}

.ongoing-card__status {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  color: #23623a;
  font-size: 13px;
  font-weight: 800;
}

.ongoing-card__status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2a9a55;
  box-shadow: 0 0 0 5px rgba(42, 154, 85, 0.12);
}

.ongoing-card__main {
  padding: clamp(26px, 5vw, 54px);
}

.ongoing-card__main > p:not(.section-kicker) {
  color: var(--steel);
}

.ongoing-note {
  padding: 30px;
  color: #fff;
  background: var(--charcoal);
}

.ongoing-note > svg {
  width: 34px;
  height: 34px;
  color: var(--amber);
}

.ongoing-note h2 {
  margin-top: 54px;
  color: #fff;
  font-size: 35px;
}

.ongoing-note p {
  color: rgba(255, 255, 255, 0.68);
}

.ongoing-note a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #fff;
  font-weight: 800;
}

.ongoing-note a svg {
  width: 17px;
}

.policy-page {
  background: var(--soft);
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 34px;
  align-items: start;
}

.policy-content {
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.policy-block + .policy-block {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.policy-block h2 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 30px;
  line-height: 1.05;
}

.policy-block p {
  margin: 13px 0 0;
  color: var(--steel);
}

.policy-block a {
  color: var(--brand);
  font-weight: 800;
}

.policy-nav {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  display: grid;
  gap: 12px;
  padding: 22px;
  border-top: 3px solid var(--brand);
  background: #fff;
}

.policy-nav span {
  color: var(--muted);
  font-size: 13px;
}

.policy-nav a {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--brand);
  font-weight: 800;
}

.not-found {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 70px) 0 90px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 14, 15, 0.9), rgba(13, 14, 15, 0.62)),
    url("assets/images/halk-grup-ofis-cephe.jpeg") center 56% / cover;
}

.not-found__inner > span {
  color: rgba(255, 255, 255, 0.13);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(120px, 23vw, 300px);
  font-weight: 700;
  line-height: 0.64;
}

.not-found h1 {
  width: min(100%, 780px);
  margin: 20px 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.94;
}

.not-found__inner > p:not(.section-kicker) {
  width: min(100%, 650px);
  color: rgba(255, 255, 255, 0.72);
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 2px 0 18px;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--brand);
}

.form-consent label {
  color: var(--steel);
  font-size: 12px;
}

.form-consent a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 800;
}

.form-status.is-success {
  color: #1d7440;
}

.form-status.is-error {
  color: var(--brand-dark);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.hg-chat__privacy {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.hg-chat__privacy input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--brand);
}

.hg-chat__privacy label {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.hg-chat__privacy a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
}

.footer__bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.footer__bottom .footer__copyright {
  display: block;
  margin: 0;
  white-space: nowrap;
}

.footer__copyright [data-year] {
  display: inline;
}

.footer__legal {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.footer__legal a {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.footer__legal a:hover,
.footer__legal a:focus-visible {
  color: #fff;
}

.back-top-btn {
  width: 42px;
  min-width: 42px;
  padding: 0;
}

@media (max-width: 1220px) and (min-width: 1101px) {
  .brand {
    width: 260px;
    min-width: 260px;
  }

  .brand img {
    height: 86px;
  }

  .nav-menu {
    gap: 11px;
  }

  .nav-menu a {
    font-size: 14px;
  }

  .nav-cta {
    padding-inline: 15px;
  }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 90px;
  }

  .brand {
    width: 300px;
    min-width: 300px;
  }

  .brand img {
    height: 82px;
  }

  .corporate-story__grid,
  .expertise-section__grid,
  .ongoing-layout,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    position: static;
  }

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

@media (max-width: 760px) {
  .hero {
    min-height: 76svh;
  }

  .hero__content {
    padding-bottom: 22px;
  }

  .hero-slider-ui {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .hero-caption {
    grid-column: 1;
    grid-row: 1;
    padding: 13px 15px;
  }

  .hero-slider-thumbs {
    display: none;
  }

  .hero-slider-controls {
    grid-column: 2;
    grid-row: 1;
  }

  .hero-slider-controls {
    grid-template-columns: 38px auto 38px;
    gap: 6px;
    padding: 6px;
  }

  .hero-slider-controls > button {
    width: 38px;
    height: 38px;
  }

  .route-grid--two,
  .project-grid,
  .values-grid,
  .reference-grid,
  .project-toolbar {
    grid-template-columns: 1fr;
  }

  .leadership-card {
    grid-template-columns: 78px 1fr;
  }

  .leadership-card__mark {
    width: 78px;
    height: 78px;
    font-size: 30px;
  }

  .leadership-card .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .expertise-list {
    grid-template-columns: 1fr;
  }

  .project-card__body,
  .reference-card {
    padding: 20px;
  }

  .project-card h2 {
    font-size: 30px;
  }

  .footer__bottom {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .footer__bottom .footer__copyright {
    grid-column: 1;
    grid-row: 1;
    font-size: 12px;
  }

  .footer__legal {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .back-top-btn {
    grid-column: 2;
    grid-row: 1 / 3;
  }
}

@media (max-width: 430px) {
  .hero-caption {
    min-width: 0;
  }

  .hero-caption strong {
    font-size: 21px;
  }

  .hero-caption span {
    font-size: 11px;
  }

  .hero-dots {
    display: none;
  }

  .hero-slider-controls {
    grid-template-columns: 36px 36px;
  }

  .hero-slider-controls > button {
    width: 36px;
    height: 36px;
  }

  .footer__bottom .footer__copyright {
    font-size: 11px;
  }
}

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

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

  .hero__slides img.is-active {
    transform: scale(1.02);
  }
}
