@font-face {
  font-family: "Bebas Neue Cyrillic";
  src: url("./assets/fonts/BebasNeueCyrillic.ttf") format("truetype");
  font-display: swap;
}

:root {
  --bg: #090909;
  --line: #2a2a2a;
  --text: #ece8df;
  --muted: #a49f95;
  --accent: #d1ad73;
  --container: min(1180px, calc(100% - 40px));
  --scroll-progress: 0%;
  --display-font: "Bebas Neue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html[lang="ru"] {
  --display-font: "Bebas Neue Cyrillic", "Bebas Neue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 16% -10%, #26211a 0%, transparent 46%), radial-gradient(circle at 90% 0%, #1a1a1a 0%, transparent 40%), var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  text-align: left;
}

body.modal-open {
  overflow: hidden;
}

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

.noise {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
  animation: noiseDrift 11s linear infinite;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 120;
  height: 3px;
  width: var(--scroll-progress);
  background: linear-gradient(90deg, #9b7c4d, #d1ad73, #f6e7c9);
  box-shadow: 0 0 24px rgba(209, 173, 115, 0.7);
}

.ambient {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(36px);
}

.ambient--one {
  width: 42vw;
  height: 42vw;
  left: -10vw;
  top: 28vh;
  background: radial-gradient(circle, rgba(209, 173, 115, 0.22), transparent 72%);
  animation: ambientFloatOne 18s ease-in-out infinite;
}

.ambient--two {
  width: 36vw;
  height: 36vw;
  right: -12vw;
  top: 12vh;
  background: radial-gradient(circle, rgba(140, 112, 67, 0.2), transparent 72%);
  animation: ambientFloatTwo 24s ease-in-out infinite;
}

.site-header,
main {
  position: relative;
  z-index: 2;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 82px;
  background: rgba(9, 9, 9, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.header-inner {
  width: var(--container);
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.logo,
.main-nav a,
.menu-btn,
.lang-btn,
h1,
h2,
h3,
.btn,
.eyebrow,
.section-head p,
.work-meta span,
.method-step span {
  font-family: var(--display-font);
  letter-spacing: 0.03em;
}

.logo {
  font-size: clamp(24px, 2.5vw, 34px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  color: var(--muted);
}

.main-nav a:hover {
  color: var(--text);
}

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

.lang-btn,
.menu-btn {
  border: 1px solid #3a3a3a;
  border-radius: 999px;
  height: 36px;
  min-width: 44px;
  padding: 0 12px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font-size: 16px;
}

.lang-btn.active {
  border-color: var(--accent);
  color: var(--accent);
}

.cv-btn {
  border: 1px solid rgba(209, 173, 115, 0.54);
  border-radius: 999px;
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  font-family: var(--display-font);
  font-size: 19px;
  letter-spacing: 0.03em;
  color: var(--accent);
  background: rgba(0, 0, 0, 0.24);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.cv-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(209, 173, 115, 0.95);
  background: rgba(209, 173, 115, 0.12);
}

.menu-btn {
  display: none;
}

.wrap {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  position: relative;
  width: 100vw;
  min-height: 100svh;
  padding-top: 120px;
  overflow: clip;
  isolation: isolate;
}

.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
  filter: contrast(1.08) saturate(0.88);
  animation: heroBreath 16s ease-in-out infinite, heroBannerDrift 20s ease-in-out infinite;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-banner.is-visible {
  opacity: 1;
}

.hero-banner--second {
  z-index: 0;
}

.hero-glow {
  position: absolute;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  left: -10vw;
  top: 12vh;
  background: radial-gradient(circle, rgba(209, 173, 115, 0.3), transparent 70%);
  filter: blur(26px);
  animation: glowPulse 8s ease-in-out infinite;
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), transparent 90%);
  animation: gridShift 18s linear infinite;
}

.hero-film {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 9, 0.92), rgba(9, 9, 9, 0.24));
}

.hero-beam {
  position: absolute;
  inset: -28% -34%;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 36%,
    rgba(255, 255, 255, 0.12) 48%,
    rgba(209, 173, 115, 0.16) 50%,
    rgba(255, 255, 255, 0.12) 52%,
    transparent 64%
  );
  mix-blend-mode: screen;
  opacity: 0.34;
  transform: translate3d(-26%, 0, 0) rotate(-2deg);
  animation: heroBeamSweep 8.5s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: clamp(120px, 20vh, 220px);
  padding-bottom: clamp(70px, 14vh, 160px);
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: clamp(20px, 2.2vw, 30px);
}

h1 {
  margin: 12px 0 14px;
  font-size: clamp(72px, 14vw, 192px);
  line-height: 0.86;
}

.hero-text {
  margin: 0;
  max-width: 560px;
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.6;
  color: #d8d2c8;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border: 1px solid var(--accent);
  color: var(--accent);
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 22px;
  transition: 220ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -1px auto -1px -60%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-18deg);
  animation: btnSheen 5s ease-in-out infinite;
}

.btn:hover {
  background: var(--accent);
  color: #17130d;
}

.btn-light {
  border-color: rgba(236, 232, 223, 0.6);
  color: var(--text);
}

.btn-light:hover {
  border-color: var(--text);
  background: var(--text);
  color: #131313;
}

.hero-note {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 92px;
  z-index: 3;
  width: min(340px, calc(100% - 40px));
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(13, 13, 13, 0.8);
  padding: 18px;
}

.hero-note span {
  color: var(--accent);
  font-size: 22px;
}

.hero-note p {
  margin: 8px 0 0;
  color: #c8c1b7;
  font-size: 15px;
  line-height: 1.5;
}

.section {
  padding: clamp(70px, 9vw, 120px) 0;
  text-align: left;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 32px;
}

.section-head p {
  margin: 0;
  font-size: clamp(18px, 2vw, 28px);
  color: var(--accent);
}

h2 {
  margin: 0;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.9;
}

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

.about-text {
  max-width: 980px;
  display: grid;
  gap: 16px;
}

.about-text p {
  margin: 0;
  color: #d5cec1;
  line-height: 1.75;
  border-left: 1px solid rgba(209, 173, 115, 0.4);
  padding-left: 16px;
}

.position-card,
.method-step {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #111111, #0b0b0b);
  padding: 22px;
  min-height: 230px;
}

.position-card h3,
.work-meta h3,
.method-step h3 {
  margin: 0 0 10px;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 0.95;
}

.position-card p,
.method-step p,
.works-note {
  margin: 0;
  color: #cbc4b9;
  line-height: 1.7;
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.project-head {
  max-width: 860px;
  margin-bottom: 18px;
}

.project-kicker {
  margin: 0;
  color: var(--accent);
  font-family: var(--display-font);
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.03em;
}

.project-head h3 {
  margin: 6px 0 10px;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.9;
}

.project-description {
  margin: 0;
  color: #d3ccbf;
  line-height: 1.75;
}

.work-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--line);
  transform-style: preserve-3d;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.project-block {
  margin-bottom: 38px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  --project-card-height: clamp(420px, 52vw, 560px);
}

.project-grid .work-card,
.project-grid .carousel-slide {
  height: var(--project-card-height);
  min-height: 0;
}

.project-grid .work-card--video {
  height: var(--project-card-height);
}

.project-carousel {
  position: relative;
  --visible-slides: 3;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc((100% - (var(--visible-slides) - 1) * 16px) / var(--visible-slides));
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(6, 6, 6, 0.5);
  color: #f4efe5;
  font-family: var(--display-font);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: transform 220ms ease, opacity 220ms ease, background 220ms ease, border-color 220ms ease;
}

.carousel-arrow--prev {
  left: 10px;
  animation: arrowHintLeft 1.7s ease-in-out infinite;
}

.carousel-arrow--next {
  right: 10px;
  animation: arrowHintRight 1.7s ease-in-out infinite;
}

.carousel-arrow:hover {
  background: rgba(209, 173, 115, 0.95);
  border-color: rgba(209, 173, 115, 0.95);
  color: #17130d;
}

.carousel-arrow.is-disabled {
  opacity: 0.35;
}

.project-carousel.is-static .carousel-arrow {
  opacity: 0;
  pointer-events: none;
}

.work-card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.work-card img.js-open-image {
  cursor: zoom-in;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(9, 9, 9, 0.95), rgba(9, 9, 9, 0.16));
}

.work-card:hover img {
  transform: scale(1.05);
}

.work-card--video:hover img {
  transform: none;
}

.work-card:hover {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.project-grid .work-card::after {
  background: linear-gradient(to top, rgba(9, 9, 9, 0.45), rgba(9, 9, 9, 0.06));
}

.work-card--video::after {
  background: linear-gradient(to top, rgba(9, 9, 9, 0.74), rgba(9, 9, 9, 0.68));
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(9, 9, 9, 0.45);
  color: #f4efe5;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 18px;
  font-family: var(--display-font);
  letter-spacing: 0.03em;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.work-card--video:hover .video-play,
.work-card--video:focus-within .video-play {
  opacity: 1;
  pointer-events: auto;
}

.video-play:hover {
  background: rgba(209, 173, 115, 0.96);
  color: #17130d;
  border-color: rgba(209, 173, 115, 0.96);
}

.video-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.work-card--video.is-previewing .video-preview {
  opacity: 1;
}

.video-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(9, 9, 9, 0.56);
  color: #efe9dd;
  padding: 8px 12px;
  border-radius: 999px;
  font-family: var(--display-font);
  font-size: 20px;
  letter-spacing: 0.03em;
}

.work-meta {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
}

.work-meta span {
  font-size: 22px;
  color: var(--accent);
}

.work-meta h3 {
  margin: 8px 0 0;
}

.works-note {
  margin-top: 20px;
  max-width: 740px;
}

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

.bullet-card,
.tool-card {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #111111, #0b0b0b);
  padding: 20px;
}

.bullet-card {
  color: #d6cfc2;
  line-height: 1.65;
}

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

.tool-card h3 {
  margin: 0 0 10px;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 0.95;
}

.tool-card p {
  margin: 0;
  color: #d6cfc2;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.method-step span {
  color: var(--accent);
  font-size: 40px;
}

.contact {
  text-align: left;
  padding-bottom: 140px;
}

.contact h2 {
  margin: 10px 0 8px;
  max-width: 920px;
}

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

.contact-actions .btn {
  margin-top: 0;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal.is-open {
  display: flex;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 20px));
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #0b0b0b;
  padding: 10px;
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform 260ms ease, opacity 260ms ease;
}

.video-modal.is-open .video-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.video-modal__close {
  border: 1px solid #3d3d3d;
  background: rgba(12, 12, 12, 0.8);
  color: #eee6d9;
  border-radius: 999px;
  min-height: 38px;
  padding: 0 14px;
  margin-bottom: 10px;
  font-family: var(--display-font);
  letter-spacing: 0.03em;
  font-size: 20px;
  cursor: pointer;
}

.video-modal__dialog video {
  width: 100%;
  max-height: 78svh;
  display: block;
  background: #000;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
}

.image-modal.is-open {
  display: flex;
}

.image-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}

.image-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 20px));
  height: min(88svh, 920px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #090909;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  transform: translateY(14px) scale(0.985);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.image-modal.is-open .image-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.image-modal__bar {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
}

.image-btn {
  border: 1px solid #3d3d3d;
  background: #111111;
  color: #f0e9dc;
  border-radius: 999px;
  min-height: 34px;
  min-width: 34px;
  padding: 0 12px;
  cursor: pointer;
  font-family: var(--display-font);
  font-size: 21px;
  letter-spacing: 0.03em;
}

.image-btn--close {
  margin-left: auto;
}

.image-modal__stage {
  position: relative;
  overflow: hidden;
  touch-action: none;
  cursor: grab;
  background: #050505;
}

.image-modal__stage.is-dragging {
  cursor: grabbing;
}

.image-modal__stage img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 92%;
  max-height: 92%;
  user-select: none;
  -webkit-user-drag: none;
  transform-origin: center center;
  will-change: transform;
}

.feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: center;
}

.feedback-modal.is-open {
  display: flex;
}

.feedback-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(8px);
}

.feedback-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 20px));
  max-height: 88svh;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #0a0a0a;
  padding: 16px;
}

.feedback-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.feedback-modal__head h3 {
  margin: 0;
  font-size: clamp(32px, 4.6vw, 54px);
}

.feedback-form {
  display: grid;
  gap: 12px;
}

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

.feedback-form span {
  font-family: var(--display-font);
  letter-spacing: 0.03em;
  color: var(--accent);
  font-size: 22px;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  border: 1px solid #343434;
  background: #111111;
  color: #ece8df;
  padding: 12px;
  font: inherit;
  resize: vertical;
}

.feedback-form .btn {
  margin-top: 6px;
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  filter: blur(4px);
  transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.bullet-grid .reveal:nth-child(2),
.tools-grid .reveal:nth-child(2),
.method-grid .reveal:nth-child(2),
.works-grid .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.bullet-grid .reveal:nth-child(3),
.tools-grid .reveal:nth-child(3),
.method-grid .reveal:nth-child(3),
.works-grid .reveal:nth-child(3) {
  transition-delay: 180ms;
}

@media (max-width: 1000px) {
  .position-grid,
  .method-grid,
  .tools-grid,
  .bullet-grid {
    grid-template-columns: 1fr;
  }

  .project-grid .work-card,
  .project-grid .carousel-slide {
    height: clamp(340px, 66vw, 420px);
  }

  .project-grid .work-card--video {
    height: clamp(340px, 66vw, 420px);
  }

  .project-carousel {
    --visible-slides: 1;
  }

  .carousel-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .carousel-track {
    transition: none;
    will-change: auto;
  }

  .carousel-slide {
    scroll-snap-align: start;
  }

  .carousel-viewport::-webkit-scrollbar {
    display: none;
  }

  .video-play {
    opacity: 1;
    pointer-events: auto;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 0 auto 40px;
  }
}

@media (pointer: coarse), (max-width: 1000px) {
  .noise,
  .ambient,
  .hero-lines {
    display: none;
  }

  .hero-banner,
  .hero-beam,
  .hero-glow {
    animation: none !important;
  }

  .work-card:hover img {
    transform: none;
  }

  .work-card:hover {
    box-shadow: none;
  }

  .reveal {
    filter: none;
    transition-duration: 260ms;
  }
}

@keyframes arrowHintLeft {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-4px);
  }
}

@keyframes arrowHintRight {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(4px);
  }
}

@media (max-width: 760px) {
  :root {
    --container: calc(100% - 20px);
  }

  .site-header::before,
  .header-inner {
    height: 70px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 190px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    border: 1px solid #2f2f2f;
    background: rgba(9, 9, 9, 0.95);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 220ms ease;
  }

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

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .cv-btn {
    display: none;
  }

  h1 {
    font-size: clamp(66px, 26vw, 122px);
  }

  .hero-content {
    padding-top: 140px;
  }

  .hero-text {
    max-width: 100%;
    font-size: 15px;
  }

  .btn {
    width: 100%;
  }

  .contact-actions {
    width: 100%;
  }
}

@keyframes heroBreath {
  0% {
    filter: contrast(1.08) saturate(0.86);
  }
  50% {
    filter: contrast(1.12) saturate(0.96);
  }
  100% {
    filter: contrast(1.08) saturate(0.86);
  }
}

@keyframes heroBannerDrift {
  0% {
    object-position: 46% 42%;
  }
  50% {
    object-position: 54% 50%;
  }
  100% {
    object-position: 50% 45%;
  }
}

@keyframes heroBeamSweep {
  0% {
    transform: translate3d(-26%, 0, 0) rotate(-2deg);
    opacity: 0.18;
  }
  45% {
    opacity: 0.4;
  }
  100% {
    transform: translate3d(28%, 0, 0) rotate(-2deg);
    opacity: 0.14;
  }
}

@keyframes glowPulse {
  0% {
    opacity: 0.72;
    filter: blur(22px);
  }
  50% {
    opacity: 1;
    filter: blur(30px);
  }
  100% {
    opacity: 0.72;
    filter: blur(22px);
  }
}

@keyframes gridShift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 0 80px, 80px 0;
  }
}

@keyframes btnSheen {
  0%,
  60% {
    left: -60%;
  }
  100% {
    left: 130%;
  }
}

@keyframes playPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(209, 173, 115, 0.32);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(209, 173, 115, 0);
  }
}

@keyframes noiseDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-1%, 1%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes ambientFloatOne {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.82;
  }
  50% {
    transform: translate3d(2vw, -2vh, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.82;
  }
}

@keyframes ambientFloatTwo {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.66;
  }
  50% {
    transform: translate3d(-1vw, 3vh, 0);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.66;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
