:root {
  --ink: #191b1e;
  --ink-soft: #25282d;
  --slate: #5c626b;
  --slate-light: #c9cdd2;
  --orange: #ff6500;
  --orange-dark: #bd4300;
  --orange-pale: #fff0e6;
  --paper: #ffffff;
  --muted: #f4f5f6;
  --line: #dfe2e5;
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 65px rgba(25, 27, 30, 0.1);
  --radius: 18px;
  --header-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font: 17px/1.68 Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
h4 {
  text-wrap: pretty;
}

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

h1,
h2,
h3,
h4 {
  line-height: 1.08;
}

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

.section-pad {
  padding-block: clamp(78px, 8.5vw, 124px);
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  text-decoration: none;
  transform: translateY(-150%);
}

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

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

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

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  height: var(--header-height);
  padding-inline: clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(223, 226, 229, 0.86);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 10px 35px rgba(25, 27, 30, 0.09);
}

.brand {
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-crop {
  position: relative;
  display: block;
  width: 190px;
  height: 58px;
  overflow: hidden;
}

.brand-crop img {
  position: absolute;
  width: 210px;
  max-width: none;
  left: -10px;
  top: -84px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.6vw, 40px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #373b41;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switcher {
  flex: 0 0 auto;
  padding: 3px;
  display: flex;
  align-items: center;
  gap: 2px;
  background: #f0f1f2;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.language-switcher a {
  min-width: 34px;
  height: 32px;
  padding-inline: 7px;
  display: grid;
  place-items: center;
  color: #555b63;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.language-switcher a:hover {
  color: var(--ink);
  background: var(--paper);
}

.language-switcher a.is-active {
  color: var(--paper);
  background: var(--ink);
}

.language-switcher-mobile {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 12px 24px;
  color: #17191c;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(255, 101, 0, 0.2);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  background: #ff7a24;
  border-color: #ff7a24;
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 9px 18px;
  font-size: 14px;
}

.button-outline {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.56);
  box-shadow: none;
}

.button-outline:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  height: min(940px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-image,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 22, 25, 0.98) 0%, rgba(20, 22, 25, 0.91) 35%, rgba(20, 22, 25, 0.48) 62%, rgba(20, 22, 25, 0.12) 100%),
    linear-gradient(0deg, rgba(20, 22, 25, 0.6) 0%, transparent 44%);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 154px;
}

.eyebrow,
.section-label {
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow,
.section-dark .section-label,
.contact .section-label {
  color: #ff8a3d;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(3.35rem, 6.1vw, 6.35rem);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--orange);
}

.hero-copy {
  max-width: 680px;
  margin: 30px 0 36px;
  color: #e8eaed;
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
  gap: 16px;
  color: var(--orange-dark);
}

.text-link-light {
  color: var(--paper);
}

.text-link-light:hover {
  color: #ff8a3d;
}

.hero-proof {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(21, 23, 26, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 0;
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.hero-proof > div {
  min-height: 106px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof > div:last-child {
  border-right: 0;
}

.hero-proof strong {
  margin-bottom: 4px;
  color: var(--paper);
  font-size: 17px;
}

.hero-proof span {
  color: #c7cbd0;
  font-size: 14px;
  line-height: 1.45;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: clamp(54px, 8vw, 128px);
  align-items: start;
}

.intro h2,
.section-heading h2,
.hotel-sticky h2,
.manager h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.45rem, 4.2vw, 4.45rem);
  font-weight: 790;
  letter-spacing: -0.045em;
}

.intro-copy {
  padding-top: 40px;
}

.intro-copy p {
  margin-bottom: 20px;
  color: var(--slate);
  font-size: 18px;
}

.intro-copy .text-link {
  margin-top: 10px;
}

.sector-overview {
  position: relative;
  overflow: hidden;
}

.sector-overview::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 101, 0, 0.12), rgba(255, 101, 0, 0) 70%);
  pointer-events: none;
}

.sector-overview > .shell {
  position: relative;
}

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

.sector-overview-card {
  position: relative;
  min-width: 0;
  min-height: 330px;
  padding: 34px 28px 30px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.sector-overview-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--orange);
}

.sector-overview-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.sector-overview-card-featured {
  color: var(--paper);
  background: var(--ink);
}

.sector-overview-number {
  margin-bottom: 46px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.sector-overview-card-featured .sector-overview-number {
  color: #ff8a3d;
}

.sector-overview-card h3 {
  min-height: 58px;
  margin-bottom: 15px;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.sector-overview-card p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 15px;
}

.sector-overview-card-featured p {
  color: #cdd1d5;
}

.sector-overview-card a {
  width: fit-content;
  margin-top: auto;
  padding-top: 24px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.sector-overview-card-featured a {
  color: #ff8a3d;
}

.sector-overview-card a span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 180ms ease;
}

.sector-overview-card a:hover span {
  transform: translateX(4px);
}

.section-heading {
  margin-bottom: clamp(44px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: end;
}

.section-heading h2 {
  max-width: 780px;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--slate);
  font-size: 17px;
}

.section-heading-light > p {
  color: #c7cbd0;
}

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

.service-card {
  position: relative;
  min-height: 310px;
  padding: 34px 32px 38px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-featured {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.service-card-featured::before {
  transform: scaleX(1);
}

.card-number {
  margin-bottom: 58px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-card-featured .card-number {
  color: #ff8a3d;
}

.service-card h3,
.cooperation-card h3 {
  margin-bottom: 15px;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.service-card p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 16px;
}

.service-card-featured p {
  color: #cdd1d5;
}

.service-card a {
  margin-top: auto;
  padding-top: 24px;
  color: #ff8a3d;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.work-sectors {
  background: #15171a;
}

.work-sectors .section-label,
.sector-panel .card-number {
  color: #ff8a3d;
}

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

.sector-panel {
  min-width: 0;
  padding: 38px 32px 34px;
  display: flex;
  flex-direction: column;
  background: var(--ink-soft);
  border: 1px solid var(--line-dark);
}

.sector-panel .card-number {
  display: block;
  margin-bottom: 28px;
}

.sector-panel h3 {
  min-height: 62px;
  margin-bottom: 18px;
  color: var(--paper);
  font-size: 27px;
  letter-spacing: -0.03em;
}

.sector-panel-head > p {
  margin-bottom: 0;
  color: #c7cbd0;
  font-size: 16px;
}

.sector-task-list {
  margin-block: 26px 34px;
}

.sector-task-list li {
  padding-block: 11px;
  color: #e0e2e5;
}

.sector-link {
  width: fit-content;
  margin-top: auto;
  color: #ff8a3d;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.sector-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 180ms ease;
}

.sector-link:hover span {
  transform: translateX(4px);
}

.sector-note {
  margin: 26px 0 0;
  padding: 20px 24px;
  color: #c7cbd0;
  background: rgba(255, 255, 255, 0.06);
  border-left: 4px solid var(--orange);
  font-size: 15px;
}

.sector-note strong {
  color: var(--paper);
}

.hotel-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 8vw, 116px);
  align-items: start;
}

.hotel-sticky {
  position: sticky;
  top: calc(var(--header-height) + 44px);
}

.hotel-sticky h2 {
  margin-bottom: 26px;
}

.hotel-sticky > p:not(.section-label) {
  color: var(--slate);
  font-size: 18px;
}

.hotel-stat {
  margin-top: 38px;
  padding: 24px 0 0 26px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  border-left: 4px solid var(--orange);
}

.hotel-stat strong {
  margin-bottom: 4px;
  font-size: 18px;
}

.hotel-stat span {
  color: var(--slate);
  font-size: 15px;
}

.hotel-details {
  border-top: 1px solid var(--line);
}

.detail-block {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.detail-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-block h3 {
  margin-bottom: 28px;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  letter-spacing: -0.035em;
}

.check-list,
.simple-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
}

.check-list li {
  position: relative;
  min-height: 54px;
  padding: 14px 0 14px 30px;
  color: #3e434a;
  border-bottom: 1px solid #eceef0;
  font-size: 15px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 14px;
  left: 0;
  color: var(--orange-dark);
  font-weight: 900;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--line);
}

.standards-grid > div {
  padding: 28px;
  background: var(--muted);
}

.standards-grid h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.standards-grid p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 15px;
}

.delivery {
  position: relative;
  overflow: hidden;
}

.delivery::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: rgba(255, 101, 0, 0.12);
  border-radius: 50%;
  filter: blur(2px);
}

.delivery .shell {
  position: relative;
}

.process-list {
  padding: 0;
  margin: 0 0 72px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.process-list li {
  min-height: 245px;
  padding: 26px 22px 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.process-list > li > span {
  margin-bottom: 70px;
  color: #ff8a3d;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.process-list h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.process-list p {
  margin-bottom: 0;
  color: #bcc1c7;
  font-size: 15px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.delivery-grid article {
  padding: clamp(32px, 4vw, 54px);
  background: var(--ink-soft);
}

.delivery-grid h3 {
  margin-bottom: 24px;
  font-size: 27px;
  letter-spacing: -0.025em;
}

.simple-list li {
  position: relative;
  padding: 13px 0 13px 24px;
  color: #d7dade;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
}

.simple-list li:last-child {
  border-bottom: 0;
}

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

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

.cooperation-card {
  min-height: 470px;
  padding: 38px 34px;
  background: var(--muted);
  border: 1px solid var(--line);
}

.cooperation-card .card-number {
  display: block;
  margin-bottom: 90px;
}

.cooperation-card h3 {
  margin-bottom: 22px;
}

.simple-list-dark li {
  color: #454a51;
  border-color: #dcdee1;
}

.cooperation-card-orange {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
}

.cooperation-card-orange .card-number {
  color: #5d2300;
}

.cooperation-card-orange p {
  font-size: 16px;
}

.cooperation-card-orange p:last-child {
  margin: 34px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(25, 27, 30, 0.3);
}

.manager {
  padding-top: 0;
}

.manager-card {
  padding: clamp(42px, 6vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.manager-card > div:first-child > p:last-child {
  max-width: 610px;
  margin: 24px 0 0;
  color: #c7cbd0;
}

.manager-contacts {
  display: grid;
  gap: 14px;
}

.manager-profile {
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.manager-initials {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 900;
}

.manager-profile h3 {
  margin-bottom: 6px;
  font-size: 21px;
}

.manager-profile p {
  margin-bottom: 14px;
  color: #c9cdd2;
  font-size: 14px;
}

.manager-profile a {
  display: block;
  width: fit-content;
  color: var(--paper);
  font-size: 14px;
  line-height: 1.7;
  text-decoration-color: #ff8a3d;
  text-underline-offset: 3px;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: #111316;
}

.contact-glow {
  position: absolute;
  top: 50%;
  right: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 101, 0, 0.34), rgba(255, 101, 0, 0) 70%);
  transform: translateY(-50%);
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(320px, 0.87fr);
  gap: clamp(54px, 8vw, 118px);
  align-items: center;
}

.contact h2 {
  max-width: 760px;
}

.contact-copy > p {
  margin-bottom: 32px;
  color: #c8ccd1;
  font-size: 17px;
}

.contact-actions {
  align-items: stretch;
  flex-direction: column;
  gap: 14px;
}

.contact-actions .button {
  justify-content: space-between;
}

.site-footer {
  padding: 70px 0 28px;
  color: #c6cad0;
  background: #0b0c0e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  gap: clamp(40px, 7vw, 100px);
}

.footer-brand {
  display: block;
  margin-bottom: 16px;
  color: var(--paper);
  font-size: 27px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.footer-brand span {
  color: var(--orange);
}

.footer-grid p {
  max-width: 440px;
  margin-bottom: 0;
  font-size: 15px;
}

.footer-grid h3 {
  margin-bottom: 16px;
  color: var(--paper);
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid address {
  display: block;
  width: fit-content;
  color: #c6cad0;
  font-size: 15px;
  font-style: normal;
  line-height: 1.75;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 3px;
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #8e949c;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.footer-bottom a {
  color: #bfc3c8;
  text-decoration: none;
}

@media (max-width: 1040px) {
  .site-header {
    gap: 18px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .button-small {
    display: none;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 46px;
  }

  .service-card {
    padding-inline: 26px;
  }

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

  .sector-overview-card {
    min-height: 290px;
  }

  .sector-panel {
    padding-inline: 26px;
  }

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

  .process-list li {
    min-height: 210px;
  }

  .process-list > li > span {
    margin-bottom: 48px;
  }

  .manager-card,
  .contact-layout {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    padding: 11px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: var(--ink);
    border: 0;
    border-radius: 5px;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--paper);
  }

  .mobile-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    padding: 18px 24px 26px;
    display: grid;
    gap: 2px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 45px rgba(25, 27, 30, 0.13);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 12px 4px;
    color: var(--ink);
    border-bottom: 1px solid #eceef0;
    font-size: 16px;
    font-weight: 750;
    text-decoration: none;
  }

  .hero {
    min-height: 820px;
    height: auto;
  }

  .hero-content {
    padding-top: 150px;
    padding-bottom: 200px;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(20, 22, 25, 0.97) 0%, rgba(20, 22, 25, 0.78) 68%, rgba(20, 22, 25, 0.5) 100%),
      linear-gradient(0deg, rgba(20, 22, 25, 0.72), transparent 56%);
  }

  .intro-grid,
  .section-heading,
  .hotel-layout,
  .manager-card,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .hotel-layout {
    gap: 42px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .section-heading {
    gap: 24px;
  }

  .section-heading > p {
    max-width: 680px;
  }

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

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

  .sector-panel h3 {
    min-height: auto;
  }

  .hotel-sticky {
    position: static;
  }

  .hotel-sticky h2 {
    max-width: 680px;
  }

  .hotel-sticky > p:not(.section-label) {
    max-width: 680px;
  }

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

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

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

  .cooperation-card .card-number {
    margin-bottom: 54px;
  }

  .cooperation-card-orange {
    grid-column: 1 / -1;
  }

  .manager-card {
    gap: 38px;
  }

  .manager-profile {
    max-width: 560px;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 36px, 1180px);
  }

  .section-pad {
    padding-block: 68px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .brand-crop {
    width: 150px;
    height: 52px;
  }

  .brand-crop img {
    width: 166px;
    left: -8px;
    top: -66px;
  }

  .button-small {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    padding-top: 124px;
    padding-bottom: 240px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13.4vw, 4.25rem);
    line-height: 1;
  }

  .hero h1 br {
    display: none;
  }

  .hero-copy {
    margin-block: 24px 30px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-proof {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-proof > div {
    min-height: auto;
    padding: 13px 18px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-proof > div:last-child {
    border-bottom: 0;
  }

  .hero-proof strong {
    margin: 0;
    font-size: 14px;
  }

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

  .intro h2,
  .section-heading h2,
  .hotel-sticky h2,
  .manager h2,
  .contact h2 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .intro-copy p,
  .hotel-sticky > p:not(.section-label) {
    font-size: 17px;
  }

  .service-grid,
  .cooperation-grid,
  .check-list,
  .standards-grid,
  .process-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 275px;
    padding: 30px 26px 34px;
  }

  .sector-overview-grid {
    grid-template-columns: 1fr;
  }

  .sector-overview-card {
    min-height: 270px;
    padding: 30px 24px;
  }

  .sector-overview-card h3 {
    min-height: auto;
  }

  .sector-panel {
    padding: 30px 24px;
  }

  .sector-note {
    padding: 18px 20px;
  }

  .card-number {
    margin-bottom: 44px;
  }

  .detail-block {
    padding-block: 36px;
  }

  .standards-grid > div {
    padding: 24px;
  }

  .process-list li {
    min-height: auto;
    padding: 24px;
    flex-direction: row;
    gap: 24px;
  }

  .process-list > li > span {
    margin-bottom: 0;
  }

  .process-list h3 {
    font-size: 20px;
  }

  .delivery-grid article {
    padding: 28px 24px;
  }

  .cooperation-card-orange {
    grid-column: auto;
  }

  .manager-card {
    width: calc(100% - 36px);
    padding: 34px 24px;
    border-radius: 12px;
  }

  .manager-profile {
    padding: 22px;
    align-items: flex-start;
  }

  .manager-initials {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
    font-size: 18px;
  }

  .manager-profile a {
    overflow-wrap: anywhere;
  }

  .contact-actions .button {
    justify-content: center;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .site-header > .language-switcher {
    display: none;
  }

  .mobile-nav .language-switcher-mobile {
    width: fit-content;
    margin-top: 14px;
    display: flex;
  }

  .mobile-nav .language-switcher-mobile a {
    padding: 0 9px;
    border-bottom: 0;
  }
}

@media (max-width: 390px) {
  .brand-crop {
    width: 138px;
  }

  .hero-content {
    padding-bottom: 256px;
  }

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

  .manager-profile {
    flex-direction: column;
  }
}

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

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