:root {
  --bg: #090909;
  --bg-soft: #121212;
  --panel: #171717;
  --card: #0d0d0d;
  --text: #f4f1eb;
  --muted: #beb8ad;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #f5430f;
  --accent-strong: #ff5a1f;
  --dark-shell: #080808;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: #0a0a0b;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

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

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  inset: 16px auto auto 16px;
  padding: 12px 16px;
  background: #fff;
  color: #111;
  border-radius: 10px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 148px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
}

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

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 112px;
  padding: 0 16px;
  border-radius: 0;
  border: 0;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
}

.site-header__socials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-header__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.86);
}

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

.site-header__socials svg {
  width: 18px;
  height: 18px;
}

.site-nav__mobile-meta {
  display: none;
}

.mobile-call-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
}

.mobile-call-button svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle__line {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
  transform-origin: center;
}

.menu-toggle__line:nth-child(1) {
  transform: translate(-50%, -5px);
}

.menu-toggle__line:nth-child(2) {
  width: 0;
  opacity: 0;
  transform: translate(-50%, 0);
}

.menu-toggle__line:nth-child(3) {
  width: 14px;
  transform: translate(-36%, 5px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
  width: 20px;
  transform: translate(-50%, 0) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
  width: 20px;
  transform: translate(-50%, 0) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0d0c0f;
}

.hero__media,
.hero__poster,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__poster,
.hero__video {
  object-fit: cover;
  object-position: center center;
}

.hero__media::before,
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__media::before {
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.72) 0%, rgba(12, 12, 12, 0.1) 28%, rgba(12, 12, 12, 0.56) 74%, rgba(12, 12, 12, 0.98) 100%);
}

.hero__media::after {
  background: radial-gradient(circle at center, transparent 34%, rgba(0, 0, 0, 0.22) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 156px 0 64px;
}

.eyebrow,
.section-intro__eyebrow {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.15rem, 2vw, 2.2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.section-intro h2,
.about h2,
.contact h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(4.8rem, 10vw, 7.4rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

.button--solid {
  background: linear-gradient(180deg, #0b9526 0%, #13b544 100%);
  color: #fff;
}

.contact-form .button--solid {
  background: linear-gradient(180deg, #ea0a0b 0%, #ff2a1a 100%);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 48px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  border: 0;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  transform: translateX(-50%);
}

.scroll-down::before,
.scroll-down::after {
  content: none;
}

.scroll-down__arrow {
  position: relative;
  width: 18px;
  height: 24px;
}

.scroll-down__arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  transform-origin: center;
}

.scroll-down__arrow::after {
  bottom: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: transparent;
  transform: translateX(-50%) rotate(45deg);
  animation: float-arrow 1.8s ease-in-out infinite;
}

.services-shell,
.about,
.contact,
.gallery {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.services-shell {
  padding: 0 0 88px;
  background: #090909;
  color: #fff;
}

.services-shell__inner {
  width: 100%;
}

.section-intro h2,
.about h2,
.contact h2 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
}

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

.service-card {
  min-height: 0;
}

.service-card__link {
  position: relative;
  display: flex;
  align-items: end;
  aspect-ratio: 0.82;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0;
  background: #111;
  isolation: isolate;
}

.service-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.03) 0%, rgba(10, 10, 10, 0.2) 42%, rgba(10, 10, 10, 0.92) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

.service-card__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 122, 20, 0) 10%, rgba(255, 122, 20, 0.08) 60%, rgba(255, 122, 20, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-card__link:hover img,
.service-card__link:focus-visible img {
  transform: scale(1.04);
}

.service-card__link:hover::before,
.service-card__link:focus-visible::before {
  opacity: 1;
}

.service-card__content {
  position: relative;
  z-index: 2;
  padding: 0 16px 18px;
}

.service-card h3 {
  margin: 0 0 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  line-height: 1.45;
}

.about {
  padding: 96px 0 24px;
}

.about__grid,
.contact__grid {
  display: grid;
  align-items: start;
}

.about__grid {
  grid-template-columns: minmax(380px, 520px) minmax(320px, 520px);
  justify-content: space-between;
  gap: 56px;
}

.about__copy p:not(.section-intro__eyebrow) {
  max-width: 35rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.about__copy .button {
  display: inline-flex;
  min-width: 180px;
  min-height: 46px;
  margin-top: 22px;
  margin-left: auto;
  margin-right: auto;
}

.about__media {
  position: relative;
  min-height: 560px;
  padding: 0;
}

.about__primary,
.about__secondary {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about__primary {
  width: min(56%, 320px);
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.about__primary img {
  width: 100%;
  height: auto;
}

.about__secondary {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(62%, 340px);
  z-index: 2;
}

.about__secondary img {
  width: 100%;
  height: auto;
}

.marquee {
  overflow: hidden;
  padding: 6px 0 54px;
}

.marquee__track {
  display: flex;
  gap: 60px;
  width: max-content;
  color: #1f1f22;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(5rem, 11vw, 10rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}

.contact {
  padding: 0 0 78px;
}

.contact__grid {
  grid-template-columns: minmax(360px, 1.05fr) minmax(280px, 0.9fr);
  gap: 54px;
}

.contact__visual-frame {
  padding: 0;
  border: 0;
  background: transparent;
}

.contact__visual img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.contact__panel {
  padding: 28px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-form {
  margin-top: 26px;
}

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

.contact-form label {
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
  color: #fff;
  padding: 13px 0 14px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(19, 181, 68, 0.85);
}

.contact-form textarea {
  min-height: 106px;
  resize: vertical;
  margin-top: 14px;
}

.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.75rem;
}

.contact-form__consent input {
  width: 18px;
  height: 18px;
  padding: 0;
  margin-top: 2px;
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.contact-form__note {
  min-height: 1.5em;
  margin: 0;
  color: var(--muted);
}

.gallery {
  padding: 0;
  background: #131314;
}

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

.gallery-grid__item {
  overflow: hidden;
  border-radius: 0;
  background: var(--panel);
}

.gallery-grid__item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.site-footer {
  background: #232325;
}

.site-footer__main {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding: 56px 0 52px;
  color: var(--muted);
}

.site-footer__col {
  max-width: 330px;
}

.site-footer__col h3 {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.site-footer__col p {
  margin: 0 0 12px;
  line-height: 1.7;
}

.site-footer__col--contact {
  margin-left: auto;
}

.site-footer__phone {
  margin-top: 24px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.site-footer__copyright {
  margin: 0;
}

.site-footer__crafted {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  text-align: right;
  white-space: nowrap;
}

.site-footer__crafted-heart {
  position: relative;
  width: 9px;
  height: 9px;
  transform: rotate(-45deg) translateY(-1px);
  background: currentColor;
  opacity: 0.78;
}

.site-footer__crafted-heart::before,
.site-footer__crafted-heart::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: inherit;
}

.site-footer__crafted-heart::before {
  top: -4.5px;
  left: 0;
}

.site-footer__crafted-heart::after {
  top: 0;
  left: 4.5px;
}

.site-footer__crafted a {
  color: #fff;
}

@keyframes float-arrow {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
  }

  50% {
    transform: rotate(45deg) translate(5px, 5px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about__media {
    max-width: 520px;
    min-height: 460px;
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 860px) {
  .site-header,
  .site-header.is-scrolled {
    backdrop-filter: none;
  }

  .mobile-call-button,
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 0;
    display: grid;
    align-content: center;
    gap: 18px;
    padding: 26px 10% 32px;
    border: 0;
    border-radius: 0;
    background: rgba(8, 8, 8, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    font-size: 2rem;
    height: calc(100dvh - 74px);
    min-height: calc(100dvh - 74px);
    overflow-y: auto;
  }

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

  .site-nav a {
    width: max-content;
  }

  .site-nav__cta {
    display: none;
  }

  .site-header__socials {
    display: none;
  }

  .site-nav__mobile-meta {
    display: grid;
    gap: 16px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav__mobile-meta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-family: "DM Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: none;
  }

  .site-nav__mobile-socials {
    display: flex;
    width: 100%;
    gap: 10px;
  }

  .site-nav__mobile-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-width: 0;
    height: 66px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
  }

  .site-nav__mobile-socials svg {
    width: 30px;
    height: 30px;
  }

  .hero__content {
    padding: 126px 0 56px;
  }

  .scroll-down {
    left: 50%;
    bottom: 30px;
  }

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

  .hero h1 {
    white-space: normal;
  }

  .site-footer__main {
    flex-direction: column;
  }

  .site-footer__col--contact {
    margin-left: 0;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    min-height: 76px;
  }

  .brand img {
    width: 144px;
  }

  .site-nav {
    inset: 76px 0 0;
    height: calc(100dvh - 76px);
    min-height: calc(100dvh - 76px);
  }

  .services-shell {
    padding: 0 0 56px;
  }

  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .about {
    padding: 58px 0 16px;
  }

  .about__media {
    min-height: 360px;
    padding: 0;
  }

  .about__primary {
    width: min(56%, 240px);
  }

  .about__secondary {
    width: min(66%, 260px);
    left: 0;
  }

  .contact {
    padding-bottom: 52px;
  }

  .contact__visual-frame {
    padding: 0;
  }

  .contact__visual img {
    height: auto;
  }

  .site-footer__main {
    padding: 38px 0 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
