:root {
  --bg: #21232b;
  --text: #f3f6fb;
  --muted: rgba(243, 246, 251, 0.74);
  --nav-glass: rgba(224, 236, 255, 0.14);
  --nav-line: rgba(255, 255, 255, 0.28);
  --nav-link-hover: rgba(255, 255, 255, 0.24);
  --hero-top-gap: 78px;
  --hero-title-gap-from-nav: 8px;
}

@font-face {
  font-family: "GoogleSans";
  src:
    local("Google Sans"),
    local("GoogleSans"),
    url("../fonts/GoogleSans-Regular.woff2") format("woff2"),
    url("../fonts/GoogleSans-Regular.woff") format("woff"),
    url("../fonts/GoogleSans-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "GoogleSans";
  src:
    local("Google Sans Medium"),
    local("GoogleSans-Medium"),
    url("../fonts/GoogleSans-Medium.woff2") format("woff2"),
    url("../fonts/GoogleSans-Medium.woff") format("woff"),
    url("../fonts/GoogleSans-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "GoogleSans";
  src:
    local("Google Sans Bold"),
    local("GoogleSans-Bold"),
    url("../fonts/GoogleSans-Bold.woff2") format("woff2"),
    url("../fonts/GoogleSans-Bold.woff") format("woff"),
    url("../fonts/GoogleSans-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "GoogleSans", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  pointer-events: none;
  z-index: 90;
  background: linear-gradient(
    to bottom,
    rgba(33, 35, 43, 0.25) 0%,
    rgba(33, 35, 43, 0.08) 60%,
    rgba(33, 35, 43, 0) 100%
  );
}

body.hero-anim-lock {
  overflow: hidden;
  height: 100vh;
}

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

.floating-nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0;
}

.floating-nav {
  width: 100%;
  height: 72px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
  background: rgba(33, 35, 43, 0.58);
  border: none;
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
  box-shadow: 0 16px 32px rgba(33, 35, 43, 0.24);
  position: relative;
  overflow: hidden;
}

.floating-nav::after {
  content: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 10px;
  position: relative;
  z-index: 1;
}

.brand img {
  display: block;
  height: 38px;
  width: auto;
}

.menu,
.menu-desktop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.menu-mobile {
  display: none;
}

.menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 15px;
  transition: background-color 0.24s ease, color 0.24s ease;
}

.menu a:hover {
  color: var(--text);
  background: var(--nav-link-hover);
}

.page-main {
  position: relative;
}

.hero {
  min-height: calc(150vh - 200px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: center;
  padding: calc(max(0px, var(--hero-top-gap) + var(--hero-title-gap-from-nav) - 100px) + 50px) 20px 0;
  position: relative;
  overflow: visible;
  z-index: 0;
  background-image: url("../images/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 72px;
  transform: translateX(-50%);
  width: clamp(100vw, 130vw, 1500px);
  height: min(52vh, 468px);
  pointer-events: none;
  z-index: 95;
  background:
    radial-gradient(ellipse at 50% 2%, rgba(255, 247, 236, 0.82) 0%, rgba(255, 224, 188, 0.4) 24%, rgba(255, 196, 145, 0.18) 46%, rgba(255, 196, 145, 0) 78%),
    radial-gradient(ellipse at 50% 44%, rgba(255, 203, 146, 0.24) 0%, rgba(255, 173, 121, 0.1) 36%, rgba(255, 173, 121, 0) 74%),
    linear-gradient(
      to bottom,
      rgba(255, 233, 203, 0.26) 0%,
      rgba(255, 205, 160, 0.14) 34%,
      rgba(255, 170, 120, 0.05) 60%,
      rgba(255, 170, 120, 0) 100%
    );
  -webkit-mask-image: radial-gradient(
    ellipse 78% 120% at 50% 0%,
    rgba(33, 35, 43, 0.98) 0%,
    rgba(33, 35, 43, 0.9) 22%,
    rgba(33, 35, 43, 0.56) 54%,
    rgba(33, 35, 43, 0.2) 72%,
    rgba(33, 35, 43, 0) 92%
  );
  mask-image: radial-gradient(
    ellipse 78% 120% at 50% 0%,
    rgba(33, 35, 43, 0.98) 0%,
    rgba(33, 35, 43, 0.9) 22%,
    rgba(33, 35, 43, 0.56) 54%,
    rgba(33, 35, 43, 0.2) 72%,
    rgba(33, 35, 43, 0) 92%
  );
  opacity: 0.82;
  filter: blur(168px);
  mix-blend-mode: screen;
}

.hero::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}

@keyframes hero-text-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(32px, 5.5vw, 66px);
  animation: hero-text-fade 2.5s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
  opacity: 0;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
  display: inline-block;
  padding-bottom: 0.08em;
  color: #1a1c24;
  background: linear-gradient(
    to bottom,
    #1a1c24 0%,
    #252830 48%,
    #2d3038 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.hero-content p {
  margin: 18px auto 0;
  max-width: 700px;
  font-size: clamp(14px, 1.8vw, 22px);
  line-height: 1.32;
  color: #1a1c24;
  font-weight: 400;
  text-shadow: none;
  animation: hero-text-fade 2.5s cubic-bezier(0.22, 1, 0.36, 1) 2s forwards;
  opacity: 0;
}

.project-section {
  background: #21232b;
  color: #f4f7fd;
  padding: 120px 0 80px;
  overflow-x: visible;
}

.project-shell {
  width: 100%;
  max-width: 1140px;
  margin: -40px auto 0;
  padding: 0 20px;
}

.project-map-intro {
  text-align: center;
  margin-bottom: 70px;
}

.project-map {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  border-radius: 30px;
}

.project-intro-title {
  margin: 0 0 20px;
  font-size: 29px;
  font-weight: 600;
  color: #f4f7fd;
}

.project-cards-slider,
.project-text {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition:
    opacity 3.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 3.35s cubic-bezier(0.22, 1, 0.36, 1),
    filter 3.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-section.is-revealed .project-cards-slider,
.project-section.is-revealed .project-text {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 360ms;
}

.project-cards-slider {
  overflow: hidden;
  margin-bottom: 32px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  cursor: default;
}

.project-cards-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.project-card--slide {
  flex-shrink: 0;
  width: 450px;
  margin: 0;
}

.project-text {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-text .project-card {
  width: 650px;
}

.project-card {
  position: relative;
  width: 450px;
  max-width: 100%;
  margin: 0 auto;
  padding: 26px;
  background: #f2f2f2;
  color: #111827;
  border-radius: 28px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 34px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.project-card-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  flex-shrink: 0;
}

.project-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-card p {
  margin: 0;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.65;
  color: #111827;
}

.project-card-title {
  margin: 0 0 16px;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  color: #111827;
}

.project-params {
  margin: 0;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.6;
}

.project-params dt {
  margin-top: 12px;
  font-weight: 600;
  color: #111827;
}

.project-params dt:first-child {
  margin-top: 0;
}

.project-params dd {
  margin: 4px 0 0;
  color: #374151;
}

.services-section {
  padding: 120px 0;
  background: #f6f7f9;
}

.services-container {
  max-width: 1200px;
  margin: -40px auto 0;
  padding: 0 20px;
  background: transparent;
  box-shadow: none;
}

.services-title {
  text-align: center;
  font-size: 29px;
  font-weight: 600;
  margin: 0 0 70px;
  color: #111827;
}

.services-cards {
  display: flex;
  gap: 40px;
}

.service-card {
  flex: 1;
  padding: 48px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 16px;
  color: #111827;
}

.service-card p {
  margin: 0;
  font-size: 16px;
  color: #5f6368;
  line-height: 1.6;
}

.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(29, 78, 216, 0.05);
  border: 1px solid rgba(29, 78, 216, 0.12);
  margin-bottom: 28px;
}

@keyframes drawChart {
  0%   { stroke-dashoffset: 60; opacity: 0.4; }
  50%  { stroke-dashoffset: 0;  opacity: 1; }
  100% { stroke-dashoffset: 60; opacity: 0.4; }
}

.service-icon .chart {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawChart 4s ease-in-out infinite;
}

@keyframes rotateCycle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.service-icon .cycle {
  transform-origin: 32px 32px;
  animation: rotateCycle 30s linear infinite;
}

@keyframes pulseEnergy {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}

.service-icon .energy {
  animation: pulseEnergy 2.8s ease-in-out infinite;
}

/* ---- News section ---- */
.news-section {
  padding: 120px 0;
  background: #0c0f14;
}

.news-container {
  max-width: 1200px;
  margin: -40px auto 0;
  padding: 0 20px;
}

.news-title {
  text-align: center;
  font-size: 29px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 70px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.news-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  height: 520px;
  background: #0f141b;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.news-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 15%,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(0, 0, 0, 0.1) 70%
  );
  z-index: 1;
}

.news-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(20, 26, 36, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  z-index: 2;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-content h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
}

.news-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.6;
}

.news-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 18px;
}

.news-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
}

.news-card:hover img {
  transform: scale(1.06);
}

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

/* ---- Contacts section ---- */
.contacts-section {
  padding: 120px 0 80px;
  background: #0c0f14;
}

.contacts-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  margin-bottom: 80px;
}

.contacts-col h4 {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.contacts-col a,
.contacts-col p {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.contacts-col a:hover {
  color: #ffffff;
}

.contacts-socials {
  display: flex;
  gap: 40px;
}

.social-btn {
  flex: 1;
  text-align: center;
  padding: 26px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

@media (max-width: 1024px) {
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contacts-socials {
    flex-direction: column;
  }
}

.placeholder {
  min-height: 2px;
}

.about-section {
  position: relative;
  z-index: 2;
  padding: 8px 0 24px;
  margin-top: -96px;
  background: #ffffff;
}

.about-shell {
  width: min(1140px, 92%);
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 40px;
}

.about-kicker {
  margin: 0 auto;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(242, 247, 255, 0.92);
  background: rgba(16, 21, 32, 0.92);
  border: 1px solid rgba(16, 21, 32, 0.92);
}

.about-shell h2 {
  margin: 18px auto 0;
  max-width: 860px;
  text-align: center;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.38;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #111827;
}

.about-note {
  margin: 14px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: clamp(14px, 1.6vw, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(36, 45, 61, 0.88);
}

.about-grid {
  margin-top: 34px;
  display: grid;
  gap: 31px;
  grid-template-columns: 1fr 1fr;
}

.about-kicker,
.about-title,
.about-note,
.about-card {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
}

.about-kicker,
.about-title,
.about-note {
  transition:
    opacity 3.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 3.35s cubic-bezier(0.22, 1, 0.36, 1),
    filter 3.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-card {
  transition:
    opacity 3.48s cubic-bezier(0.22, 1, 0.36, 1),
    transform 3.48s cubic-bezier(0.22, 1, 0.36, 1),
    filter 3.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-section.is-revealed .about-kicker {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 110ms;
}

.about-section.is-revealed .about-title {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 360ms;
}

.about-section.is-revealed .about-note {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 500ms;
}

.about-section.is-revealed .about-card--left-top {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 760ms;
}

.about-section.is-revealed .about-card--left-bottom {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 1000ms;
}

.about-section.is-revealed .about-card--right {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 1240ms;
}

.about-card {
  position: relative;
  overflow: hidden;
  background: #21232b;
  color: #f4f7fd;
  padding: 20px;
  border-radius: 40px;
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.2),
    0 18px 34px rgba(3, 8, 20, 0.2);
}

.about-card-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  width: 100%;
  aspect-ratio: 16 / 10;
}

.about-card-img-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 115%;
  height: 115%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: transform 0.2s ease;
  border-radius: 40px;
}

.about-card-copy {
  padding: 0;
}

.about-card-copy h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 36px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.about-card-copy p {
  margin: 14px 0 0;
  color: rgba(223, 232, 248, 0.88);
  font-size: 16px;
  line-height: 1.45;
}

.about-card--left-top {
  display: grid;
  grid-template-columns: 1.18fr 0.92fr;
  align-items: stretch;
  gap: 20px;
  min-height: 318px;
}

.about-card--left-top .about-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-card--left-top .about-card-img-wrap {
  min-height: 0;
  aspect-ratio: auto;
}

.about-card--left-top .about-card-img-wrap img {
  width: 115%;
  height: 115%;
  margin: 0;
  object-fit: cover;
}

.about-card--left-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  min-height: 255px;
}

.about-card--left-bottom .about-card-img-wrap img {
  margin: 0;
  object-fit: cover;
  background: #dce7f8;
}

.about-card--right {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 588px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
}

.about-card--right .about-card-copy {
  text-align: center;
}

.about-card--right .about-card-img-wrap img {
  margin: 0;
  object-fit: cover;
}

.hero-media {
  min-height: calc(135vh - 150px);
  width: 100%;
  position: relative;
  margin-top: -28px;
}

.sticky-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.phone-wrap {
  width: min(1120px, 99vw);
  transform-origin: center 45%;
  will-change: transform;
}

.phone-wrap img {
  width: 100%;
  display: block;
  border-radius: 22px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
}

@media (max-width: 900px) {
  .services-cards {
    flex-direction: column;
  }
}

/* Burger button — скрыт на desktop */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
  position: relative;
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 960px) {
  .floating-nav {
    height: auto;
    border-radius: 0;
    padding: 11px 14px;
    gap: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
  }

  .burger-btn {
    display: flex;
  }

  .brand {
    justify-content: flex-start;
  }

  .menu-desktop {
    display: none;
  }

  .menu-mobile {
    position: fixed;
    display: flex;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 85vw);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 4px;
    padding-top: 72px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 40px;
    background: rgba(33, 35, 43, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .floating-nav-wrap.menu-open {
    z-index: 9999;
  }

  .floating-nav-wrap.menu-open .menu-mobile {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .menu-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text);
  }

  .menu-mobile a {
    font-size: 18px;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
    color: var(--muted);
  }

  .menu-mobile a:hover {
    color: var(--text);
  }

  .sticky-stage {
    top: 0;
    height: 100vh;
  }

  .hero {
    min-height: calc(165vh - 400px);
  }

  .hero-media {
    min-height: calc(150vh - 350px);
  }

  .hero-content {
    margin-top: -30px;
  }

  .about-section {
    padding-top: 18px;
    margin-top: -56px;
  }

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

  .about-card--left-top,
  .about-card--left-bottom {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-card--left-top .about-card-img-wrap {
    aspect-ratio: 16 / 10;
    min-height: 200px;
  }

  .about-card--left-top .about-card-img-wrap img,
  .about-card--left-bottom .about-card-img-wrap img {
    margin: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-card--right {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

  .about-card-copy h3 {
    font-size: clamp(20px, 6vw, 30px);
  }

  .project-section {
    padding: 40px 0 60px;
    overflow: visible;
  }

  .project-shell {
    margin-top: 0;
    overflow: visible;
  }

  .project-map-intro {
    margin-top: 40px;
  }

  .project-map {
    margin-bottom: 32px;
  }

  .project-cards-slider,
  .project-text {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .project-cards-slider {
    overflow: visible;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    cursor: default;
    max-width: 100%;
  }

  .project-cards-track {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 24px;
    transform: none !important;
  }

  .project-card--slide {
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
  }

  .project-text {
    grid-template-columns: 1fr;
  }
}
