:root {
  --red: #e3261c;
  --red-deep: #b91610;
  --ink: #090909;
  --paper: #f4f1eb;
  --muted: #a7a29b;
  --line: rgba(255, 255, 255, 0.14);
  color-scheme: dark;
  font-family: "Manrope", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  margin: 0;
  background: var(--ink);
}

body {
  min-height: 100vh;
  color: var(--paper);
}

button,
img {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  min-height: 100svh;
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(430px, 42%) 1fr;
  min-height: 100svh;
  background: var(--ink);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  padding: clamp(28px, 4.2vw, 72px);
  background:
    radial-gradient(circle at 12% 88%, rgba(227, 38, 28, 0.12), transparent 34%),
    var(--ink);
}

.brand {
  display: flex;
  align-items: center;
}

.brand__mark {
  display: block;
  width: clamp(92px, 8vw, 118px);
  height: clamp(124px, 10.5vw, 158px);
}

.brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__copy {
  margin: auto 0;
  padding: 7vh 0 6vh;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: #d1cdc6;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--red);
}

h1 {
  max-width: 680px;
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(54px, 6.2vw, 108px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-transform: uppercase;
}

h1 em {
  color: var(--red);
  font-style: normal;
}

.intro {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.75;
}

.services {
  padding: 22px 0 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services__label {
  margin: 0 0 12px;
  color: #6f6b66;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #d2cec8;
  font-family: "Oswald", sans-serif;
  font-size: clamp(13px, 1vw, 16px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.services li:not(:last-child)::after {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
  content: "";
}

.hero__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
}

.hero__footer p {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.hero__footer strong {
  font-size: 12px;
  text-transform: uppercase;
}

.hero__footer p span {
  color: #6f6b66;
}

.status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8d8983;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(227, 38, 28, 0.14);
  animation: pulse 2s ease-out infinite;
}

.showcase {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #1a1a1a;
}

.showcase::before {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--red);
  content: "";
}

.showcase__slides,
.slide,
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 0.9s ease, visibility 0.9s ease, transform 7s ease;
}

.slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide img {
  object-fit: cover;
  object-position: center;
}

.slide figcaption {
  position: absolute;
  z-index: 4;
  bottom: 49px;
  left: clamp(30px, 4vw, 72px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.slide figcaption span {
  color: var(--red);
}

.showcase__shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.44), transparent 22%, transparent 58%, rgba(0, 0, 0, 0.83));
}

.showcase__topline {
  position: absolute;
  z-index: 4;
  top: clamp(28px, 4vw, 64px);
  right: clamp(28px, 4vw, 64px);
  left: clamp(30px, 4vw, 72px);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.showcase__controls {
  position: absolute;
  z-index: 5;
  right: clamp(24px, 3.5vw, 56px);
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.control {
  display: grid;
  width: 43px;
  height: 43px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.control:hover,
.control:focus-visible {
  border-color: var(--red);
  background: var(--red);
  outline: none;
  transform: translateY(-2px);
}

.control svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.progress {
  width: clamp(70px, 7vw, 110px);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

.progress span.is-running {
  animation: progress 5.5s linear forwards;
}

.counter {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 56px;
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
}

.counter__current {
  color: white;
  font-size: 21px;
}

.counter i {
  color: var(--red);
  font-style: normal;
}

@keyframes progress {
  to { transform: scaleX(1); }
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 8px rgba(227, 38, 28, 0); }
}

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

  .hero__content {
    min-height: 82svh;
  }

  .showcase {
    min-height: 72svh;
    border-top: 5px solid var(--red);
  }

  .showcase::before {
    display: none;
  }

  .slide img {
    object-position: center;
  }
}

@media (max-width: 620px) {
  .hero__content {
    min-height: 100svh;
    padding: 24px 22px 26px;
  }

  .brand__mark {
    width: 84px;
    height: 114px;
  }

  .hero__copy {
    padding: 7vh 0 5vh;
  }

  h1 {
    font-size: clamp(48px, 15vw, 76px);
  }

  .intro {
    margin-top: 20px;
    line-height: 1.6;
  }

  .services {
    padding: 18px 0;
  }

  .services ul {
    gap: 8px 12px;
  }

  .services li {
    gap: 12px;
    font-size: 12px;
  }

  .hero__footer {
    padding-top: 20px;
  }

  .hero__footer p span {
    display: none;
  }

  .showcase {
    min-height: 68svh;
  }

  .showcase__topline span:last-child,
  .progress {
    display: none;
  }

  .slide figcaption {
    right: 22px;
    bottom: 102px;
    left: 22px;
  }

  .showcase__controls {
    right: 22px;
    bottom: 34px;
    left: 22px;
    justify-content: flex-end;
  }
}

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