:root {
  --e-black: var(--e-black-at);
  --e-black-pure: var(--e-black-pure-at);
  --e-blood: var(--e-rot-at);
  --e-blood-deep: var(--e-blood-deep-at);
  --e-bone: var(--e-bone-at);
  --e-bone-dark: var(--e-bone-dark-at);
  --e-gray: var(--e-gray-at);
  --e-gray-light: var(--e-gray-light-at);
  --e-metallic: var(--e-metallic-at);
  --e-gold: var(--e-gold-at);
  --e-font-display: 'Bebas Neue', sans-serif;
  --e-font-mono: 'Space Mono', monospace;
  --e-font-body: 'Inter', sans-serif;
  --e-ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --e-ease-out-circ: cubic-bezier(0, 0.55, 0.45, 1);
}

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


body {
  background: var(--e-black);
  color: var(--e-bone);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

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

h2 span, h3 span, h4 span, h5 span{
  color: var(--e-rot-at);
}

#menu-hauptmenue-1.bricks-mobile-menu {
  margin-top: 20px; 
}

.e-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .e-container {
    padding: 0 48px;
  }
}

.e-cursor-orb,
.e-cursor-trail {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  mix-blend-mode: difference;
}

.e-cursor-orb {
  width: 20px;
  height: 20px;
  background: var(--e-bone);
  transform: translate(-50%, -50%);
}

.e-cursor-trail {
  width: 40px;
  height: 40px;
  border: 1px solid var(--e-bone);
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

@media (max-width: 1024px) {

  .e-cursor-orb,
  .e-cursor-trail {
    display: none;
  }
}

.e-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.03;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.e-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 4px);
}


.e-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s;
}

.e-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}



.e-header__logo {
  display: flex;
  align-items: center;
}

.e-header__logo-svg {
  color: var(--e-bone);
  transition: transform 0.4s var(--e-ease-out-expo);
}

.e-header__logo:hover .e-header__logo-svg {
  transform: rotate(360deg);
}

.e-header__nav {
  gap: 32px;
}



.e-header__link {
  font-family: var(--e-font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

.e-header__link span {
  display: block;
  transition: transform 0.4s var(--e-ease-out-expo);
}

.e-header__link::after {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  color: var(--e-blood);
}

.e-header__link span::after {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  color: var(--e-blood);
}

.e-header__link:hover span {
  transform: translateY(-100%);
}

.e-header__cta {
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--e-blood);
  font-family: var(--e-font-display);
  font-size: 14px;
  letter-spacing: 2px;
  transition: all 0.4s var(--e-ease-out-expo);
}



.e-header__cta:hover {
  background: var(--e-bone);
  color: var(--e-black);
}

.e-header__cta-arrow {
  transition: transform 0.4s var(--e-ease-out-expo);
}

.e-header__cta:hover .e-header__cta-arrow {
  transform: translate(4px, -4px);
}



.e-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.e-hero__bg {
  position: absolute;
  inset: 0;
}

.e-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
}

.e-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.9));
}

.e-hero__grid-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 10%;
}

.e-hero__grid-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(139, 0, 0, 0.2), transparent);
}

.e-hero__content {
  position: relative;
  z-index: 2;
}

.e-hero__tag {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.e-hero__tag-line {
  width: 40px;
  height: 1px;
  background: var(--e-blood);
}

.e-hero__tag-text {
  font-family: var(--e-font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--e-bone-dark);
}

.e-hero__title {
  font-family: var(--e-font-display);
  line-height: 0.9;
  font-size: var(--text-6xl);
  letter-spacing: -2px;
  text-transform: uppercase;
}

.e-hero__title-line {
  display: block;
  overflow: hidden;
}

.e-hero__title-word {
  display: inline-block;
}

.e-hero__title-word--stroke {
  -webkit-text-stroke: 1px var(--e-bone);
  color: transparent;
}

.e-hero__title-word--accent {
  color: var(--e-blood);
}

.e-hero__desc {
  line-height: 1.8;
  color: var(--e-bone-dark);
}

@media (min-width: 768px) {
  .e-hero__desc {
    font-size: 18px;
  }
}

.e-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.e-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--e-font-display);
  font-size: 15px;
  letter-spacing: 3px;
  overflow: hidden;
  transition: all 0.4s var(--e-ease-out-expo);
}

.e-btn--blood {
  background: var(--e-rot-at) !important;
  color: var(--e-bone) !important;
}

.e-btn--blood .e-btn__bg {
  position: absolute;
  inset: 0;
  background: var(--e-bone);
  transform: translateY(100%);
  transition: transform 0.4s var(--e-ease-out-expo);
}

.e-btn--blood:hover .e-btn__bg {
  transform: translateY(0);
}

.e-btn--blood:hover {
  color: var(--e-black);
}

.e-btn__text {
  position: relative;
  z-index: 1;
}

.e-btn--ghost {
  border: 1px solid var(--e-bone);
  color: var(--e-bone);
}

.e-btn--ghost:hover {
  background: var(--e-bone);
  color: var(--e-black);
}

.e-btn--large {
  padding: 20px 40px;
  font-size: 16px;
}

.e-btn--full {
  width: 100%;
  justify-content: center;
}

.e-hero__stats {
  position: absolute;
  bottom: 80px;
  right: 48px;
  display: none;
  gap: 48px;
}

@media (min-width: 1024px) {
  .e-hero__stats {
    display: flex;
  }
}

.e-hero__stat {
  text-align: right;
}

.e-hero__stat-num {
  display: block;
  font-family: var(--e-font-display);
  font-size: 48px;
  color: var(--e-blood);
}

.e-hero__stat-label {
  font-family: var(--e-font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--e-bone-dark);
}

.e-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--e-bone-dark);
  font-family: var(--e-font-mono);
  font-size: 10px;
  letter-spacing: 2px;
}

.e-hero__scroll-mouse {
  width: 24px;
  height: 40px;
  border: 1px solid var(--e-bone-dark);
  border-radius: 12px;
  position: relative;
}

.e-hero__scroll-wheel {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--e-blood);
  border-radius: 2px;
  animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {

  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

.e-hero__corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(139, 0, 0, 0.3);
}

.e-hero__corner--tl {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.e-hero__corner--tr {
  top: 20px;
  right: 20px;
  border-left: none;
  border-bottom: none;
}

.e-hero__corner--bl {
  bottom: 20px;
  left: 20px;
  border-right: none;
  border-top: none;
}

.e-hero__corner--br {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

.e-section--light {
  background: var(--e-bone);
  color: var(--e-black);
}

.e-section--dark {
  background: var(--e-black);
  color: var(--e-bone);
}

.e-section--blood {
  background: var(--e-blood-deep);
  color: var(--e-bone);
}

.e-section-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.e-section-tag__num {
  font-family: var(--e-font-mono);
  font-size: 12px;
  color: var(--e-blood);
}

.e-section-tag--light .e-section-tag__num {
  color: var(--e-bone-dark);
}

.e-section-tag__line {
  width: 40px;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
}

.e-section-tag__text,
.section-tag{
  font-family: var(--e-font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  opacity: 0.6;
}

.e-about {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .e-about {
    padding: 160px 0;
  }
}

.e-about__layout {
  display: grid;
}

@media (min-width: 1024px) {
  .e-about__layout {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
}

.e-about__images {
  position: relative;
  height: 400px;
}

@media (min-width: 768px) {
  .e-about__images {
    height: 600px;
  }
}

.e-about__img {
  position: absolute;
  overflow: hidden;
}

.e-about__img-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.e-about__img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--e-ease-out-expo);
}

.hov-zoom-1:hover{
  transform: scale(1.05);
}

.e-about__img:hover img {
  transform: scale(1.05);
}

.e-about__img--main {
  top: 0;
  left: 0;
  width: 70%;
  height: 80%;
  z-index: 2;
}

.e-about__img-frame {
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border: 1px solid var(--e-black);
  opacity: 0.2;
  pointer-events: none;
}

.e-about__img--float {
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  z-index: 3;
}

.e-about__badge {
  position: absolute;
  bottom: 20%;
  left: 50%;
  z-index: 4;
  background: var(--e-blood);
  padding: 24px;
  text-align: center;
}

.e-about__badge-num {
  display: block;
  font-family: var(--e-font-display);
  font-size: 36px;
  color: var(--e-bone);
}

.e-about__badge-text {
  font-family: var(--e-font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--e-bone-dark);
}

.e-about__title {
  font-family: var(--e-font-display);
  line-height: 1.1;
  margin-bottom: 24px;
}

.e-about__text {
  margin-bottom: 40px;
}

.e-about__lead {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.e-about__text p {
  color: var(--e-metallic);
  line-height: 1.8;
}





.e-about__feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--e-black);
  flex-shrink: 0;
}





.e-about__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--e-font-display);
  font-size: clamp(100px, 20vw, 300px);
  color: var(--e-black);
  opacity: 0.03;
  pointer-events: none;
  white-space: nowrap;
}

.e-timeline {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .e-timeline {
    padding: 160px 0;
  }
}

.e-timeline__parallax-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: var(--e-font-display);
  font-size: clamp(80px, 15vw, 200px);
  color: var(--e-bone);
  opacity: 0.03;
  white-space: nowrap;
  pointer-events: none;
}

.e-timeline__header {
  text-align: center;
  margin-bottom: 80px;
}

.e-timeline__title {
  font-family: var(--e-font-display);
  font-size: clamp(36px, 8vw, 72px);
  line-height: 1.1;
}

.e-timeline__track {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.e-timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--e-gray-light);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .e-timeline__line {
    left: 20px;
  }
}

.e-timeline__line-progress {
  width: 100%;
  height: 0;
  background: var(--e-blood) !important;
}

.e-timeline__items {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.e-timeline__item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}

@media (max-width: 768px) {
  .e-timeline__item {
    padding-left: 60px;
  }
}

@media (min-width: 768px) {
  .e-timeline__item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .e-timeline__item:nth-child(even) .e-timeline__card {
    text-align: right;
  }
}

.e-timeline__marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--e-black);
  z-index: 2;
}

@media (max-width: 768px) {
  .e-timeline__marker {
    left: 20px;
  }
}

.e-timeline__marker svg {
  width: 20px;
  height: 20px;
  color: var(--e-blood);
}

.e-timeline__card {
  flex: 1;
  max-width: 400px;
  padding: 32px;
  background: var(--e-gray);
  border: 1px solid var(--e-gray-light);
  transition: all 0.4s var(--e-ease-out-expo);
}

.e-timeline__card:hover {
}

@media (min-width: 768px) {
  .e-timeline__item:nth-child(odd) .e-timeline__card {
    margin-right: auto;
  }

  .e-timeline__item:nth-child(even) .e-timeline__card {
    margin-left: auto;
  }
}

.e-timeline__year {
  display: inline-block;
  font-family: var(--e-font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--e-blood);
  margin-bottom: 12px;
}

.e-timeline__card h3 {
  font-family: var(--e-font-display);
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.e-timeline__card p {
  font-size: 14px;
  color: var(--e-bone-dark);
  line-height: 1.7;
}

.e-portfolio {
  padding: 120px 0;
}

@media (min-width: 768px) {
  .e-portfolio {
    padding: 160px 0;
  }
}

.e-portfolio__header {
  margin-bottom: 48px;
}

.e-portfolio__title {
  font-family: var(--e-font-display);
  font-size: clamp(36px, 8vw, 72px);
  line-height: 1.1;
}

.e-portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.e-portfolio__filter {
  font-family: var(--e-font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  padding: 12px 20px;
  border: 1px solid var(--e-black);
  transition: all 0.3s;
}

.e-portfolio__filter--active,
.e-portfolio__filter:hover {
  background: var(--e-black);
  color: var(--e-bone);
}

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

@media (min-width: 768px) {
  .e-portfolio__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .e-portfolio__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.e-portfolio__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.e-portfolio__item--wide {
  grid-column: span 2;
}

.e-portfolio__item--tall {
  grid-row: span 2;
}

.e-portfolio__item-img {
  width: 100%;
  height: 100%;
}

.e-portfolio__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.6s var(--e-ease-out-expo);
}

.e-portfolio__item:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
}

.e-portfolio__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--e-ease-out-expo);
}

.e-portfolio__item:hover .e-portfolio__item-overlay {
  opacity: 1;
  transform: translateY(0);
}

.e-portfolio__item-cat {
  font-family: var(--e-font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--e-blood);
  margin-bottom: 8px;
}

.e-portfolio__item-title {
  font-family: var(--e-font-display);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--e-bone);
  margin-bottom: 4px;
}

.e-portfolio__item-artist {
  font-size: 12px;
  color: var(--e-bone-dark);
}

.e-portfolio__item-corner {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-top: 1px solid var(--e-bone);
  border-right: 1px solid var(--e-bone);
  opacity: 0;
  transition: all 0.4s var(--e-ease-out-expo);
}

.e-portfolio__item:hover .e-portfolio__item-corner {
  opacity: 1;
}

.e-artists {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .e-artists {
    padding: 160px 0;
  }
}

.e-artists__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 0, 0, 0.15), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.e-artists__header {
  text-align: center;
  margin-bottom: 64px;
}

.e-artists__title {
  font-family: var(--e-font-display);
  font-size: clamp(36px, 8vw, 72px);
  line-height: 1.1;
}

.e-artists__grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .e-artists__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.e-artists__card {
  position: relative;
  background: var(--e-gray);
  border: 1px solid var(--e-gray-light);
  overflow: hidden;
  transition: all 0.4s var(--e-ease-out-expo);
}

.e-artists__card:hover {
  border-color: var(--e-blood);
  transform: translateY(-8px);
}

.e-artists__card--e-featured {
  border-color: var(--e-blood);
}

.e-artists__card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.e-artists__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.6s var(--e-ease-out-expo);
}

.e-artists__card:hover img {
  filter: grayscale(0);
}

.e-artists__card-glitch {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(139, 0, 0, 0.1) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--e-ease-out-expo);
}

.e-artists__card:hover .e-artists__card-glitch {
  transform: translateX(100%);
}

.e-artists__card-info {
  padding: 24px;
}

.e-artists__card-specialty {
  font-family: var(--e-font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--e-blood);
  display: block;
  margin-bottom: 8px;
}

.e-artists__card-name {
  font-family: var(--e-font-display);
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.e-artists__card-role {
  display: block;
  font-size: 14px;
  color: var(--e-bone-dark);
  margin-bottom: 4px;
}

.e-artists__card-exp {
  font-family: var(--e-font-mono);
  font-size: 11px;
  color: var(--e-metallic);
}

.e-artists__card-link {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--e-black);
  font-family: var(--e-font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.e-artists__card-link:hover {
  background: var(--e-blood);
}

.e-services {
  padding: 120px 0;
}

@media (min-width: 768px) {
  .e-services {
    padding: 160px 0;
  }
}

.e-services__header {
  margin-bottom: 64px;
}

.e-services__title {
  font-family: var(--e-font-display);
  font-size: clamp(36px, 8vw, 72px);
  line-height: 1.1;
}

.e-services__grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .e-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .e-services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.e-services__card {
  position: relative;
  padding: 40px 32px;
  background: var(--e-bone);
  border: 1px solid var(--e-black);
  transition: all 0.4s var(--e-ease-out-expo);
}

.e-services__card:hover {
  box-shadow: 8px 8px 0 var(--e-black);
}

.e-services__card--featured {
  background: var(--e-black);
  color: var(--e-bone);
  border-color: var(--e-blood);
}

.e-services__card--featured:hover {
  box-shadow: 8px 8px 0 var(--e-blood);
}

.e-services__card-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 8px 16px;
  background: var(--e-blood);
  font-family: var(--e-font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--e-bone);
}

.e-services__card-icon {
  font-size: 32px;
  margin-bottom: 24px;
}

.e-services__card-title {
  font-family: var(--e-font-display);
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.e-services__card-price {
  font-size: 32px;
  margin-bottom: 16px;
}

.e-services__card-price span {
  opacity: 0.8;
}

.e-services__card-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.9;
}

.e-services__card-list {
  list-style: none;
  margin-bottom: 32px;
}

.e-services__card-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.e-services__card-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--e-blood);
}

.e-services__card--e-featured .e-services__card-list li::before {
  color: var(--e-bone);
}

.e-services__card-btn {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  font-family: var(--e-font-display);
  font-size: 14px;
  letter-spacing: 3px;
  border: 1px solid currentColor;
  transition: all 0.3s;
}

.e-services__card-btn:hover {
  background: var(--e-blood);
  color: var(--e-bone);
  border-color: var(--e-blood);
}

.e-process {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .e-process {
    padding: 160px 0;
  }
}

.e-process__bg-img {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1611501275019-9b5cda994e8d?w=1920") center/cover no-repeat;
  opacity: 0.05;
}

.e-process__header {
  text-align: center;
  margin-bottom: 80px;
}

.e-process__title {
  font-family: var(--e-font-display);
  font-size: clamp(36px, 8vw, 72px);
  line-height: 1.1;
}

.e-process__steps {
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .e-process__steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.e-process__step {
  position: relative;
  padding: 40px;
  border: 1px solid var(--e-gray-light);
  transition: all 0.4s var(--e-ease-out-expo);
}

.e-process__step:hover {
  background: var(--e-gray);
  border-color: var(--e-blood);
}

.e-process__step-num {
  font-family: var(--e-font-display);
  font-size: 64px;
  color: var(--e-blood);
  opacity: 0.7;
  margin-bottom: 16px;
  transition: opacity 0.5s;
}

.e-process__step:hover .e-process__step-num{
  opacity: 1;
}

.e-process__step:hover .e-process__step-meta {
  color: var(--e-bone-dark);
}

.e-process__step-content h3 {
  font-family: var(--e-font-display);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.e-process__step-content p {
  font-size: 14px;
  color: var(--e-bone-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}

.e-process__step-meta {
  font-family: var(--e-font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--e-metallic);
}

.e-process__step-line {
  display: none;
}

@media (min-width: 768px) {
  .e-process__step-line {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 40px;
    height: 1px;
    background: var(--e-blood);
    transform: translateX(50%);
  }

  .e-process__step:last-child .e-process__step-line {
    display: none;
  }
}

.e-whyus {
  padding: 120px 0;
}

@media (min-width: 768px) {
  .e-whyus {
    padding: 160px 0;
  }
}

.e-whyus__header {
  margin-bottom: 64px;
}

.e-whyus__title {
  font-family: var(--e-font-display);
  line-height: 1.1;
}

.e-whyus__grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .e-whyus__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .e-whyus__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.e-whyus__card {
  padding: 40px;
  border: 1px solid var(--e-black);
  transition: all 0.4s var(--e-ease-out-expo);
}

.e-whyus__card:hover {
  box-shadow: 8px 8px 0 var(--e-blood);
}

.e-whyus__card-num {
  font-family: var(--e-font-display);
  color: var(--e-blood);
  opacity: 0.8;
  margin-bottom: 16px;
}

.e-whyus__card-title {
  font-family: var(--e-font-display);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.e-whyus__card p {
  color: var(--e-metallic);
}

.e-beforeafter {
  padding: 120px 0;
}

@media (min-width: 768px) {
  .e-beforeafter {
    padding: 160px 0;
  }
}

.e-beforeafter__header {
  text-align: center;
  margin-bottom: 64px;
}

.e-beforeafter__title {
  font-family: var(--e-font-display);
  font-size: clamp(36px, 8vw, 72px);
  line-height: 1.1;
}

.e-beforeafter__showcase {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .e-beforeafter__showcase {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
}

.e-beforeafter__side {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.e-beforeafter__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.6s;
}

.e-beforeafter__side:hover img {
  filter: grayscale(0);
}

.e-beforeafter__label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--e-font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  padding: 8px 16px;
  background: var(--e-black);
}

.e-beforeafter__side--after .e-beforeafter__label {
  background: var(--e-blood);
}

.e-beforeafter__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
}

@media (min-width: 768px) {
  .e-beforeafter__divider {
    padding: 0 24px;
  }
}

.e-beforeafter__divider-line {
  width: 1px;
  height: 100px;
  background: var(--e-gray-light);
}

@media (max-width: 768px) {
  .e-beforeafter__divider-line {
    width: 100px;
    height: 1px;
  }
}

.e-beforeafter__divider-icon {
  font-size: 24px;
  color: var(--e-blood);
}

.e-beforeafter__info {
  text-align: center;
}

.e-beforeafter__info h3 {
  font-family: var(--e-font-display);
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.e-beforeafter__info p {
  color: var(--e-bone-dark);
  margin-bottom: 8px;
}

.e-beforeafter__info span {
  font-family: var(--e-font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--e-metallic);
}

.e-testimonials {
  padding: 120px 0;
}

@media (min-width: 768px) {
  .e-testimonials {
    padding: 160px 0;
  }
}

.e-testimonials__header {
  margin-bottom: 64px;
}

.e-testimonials__title {
  font-family: var(--e-font-display);
  line-height: 1.1;
}

.e-testimonials__grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .e-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.e-testimonials__card {
  padding: 40px;
  background: var(--e-bone);
  border: 1px solid var(--e-black);
  transition: all 0.4s var(--e-ease-out-expo);
}

.e-testimonials__card:hover {
  box-shadow: 8px 8px 0 var(--e-black);
}

.e-testimonials__card--e-featured {
  background: var(--e-black);
  color: var(--e-bone);
  border-color: var(--e-blood);
}

.e-testimonials__card--e-featured:hover {
  box-shadow: 8px 8px 0 var(--e-blood);
}

.e-testimonials__card-rating {
  color: var(--e-gold);
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.e-testimonials__card-text {
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  opacity: 0.9;
}

.e-testimonials__card-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.e-testimonials__card-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--e-blood);
  font-family: var(--e-font-display);
  font-size: 16px;
  color: var(--e-bone);
}

.e-testimonials__card-info strong {
  display: block;
  font-size: 14px;
  margin-bottom: 0px;
}

.e-testimonials__card-info span {
  font-size: 12px;
  opacity: 0.6;
}

.e-blog {
  padding: 120px 0;
  background: radial-gradient(circle at 10% 10%, rgba(200, 168, 103, 0.05), transparent 35%), radial-gradient(circle at 90% 20%, rgba(139, 0, 0, 0.08), transparent 40%);
}

@media (min-width: 768px) {
  .e-blog {
    padding: 160px 0;
  }
}

.e-blog__header {
  margin-bottom: 32px;
}

.e-blog__title {
  font-family: var(--e-font-display);
  font-size: clamp(36px, 8vw, 72px);
  line-height: 1.1;
}

.e-blog__lede {
  margin-top: 16px;
  max-width: 720px;
  color: var(--e-bone-dark);
  line-height: 1.7;
}

.e-blog__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.e-blog__card {
  position: relative;
  background: var(--e-gray);
  border: 1px solid var(--e-gray-light);
  overflow: hidden;
  transition: all 0.4s var(--e-ease-out-expo);
}

.e-blog__card:hover {
  border-color: var(--e-blood);
  transform: translateY(-8px);
}

.e-blog__card--featured {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(200, 168, 103, 0.25);
}

@media (min-width: 900px) {
  .e-blog__card--featured {
    grid-template-columns: 1fr 1fr;
    grid-column: span 2;
  }
}

@media (min-width: 1200px) {
  .e-blog__card--featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.e-blog__card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.e-blog__card--featured .e-blog__card-img {
  aspect-ratio: auto;
  height: 100%;
}

.e-blog__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.6s var(--e-ease-out-expo);
}

.e-blog__card:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.e-blog__card-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 16px;
  background: var(--e-blood);
  font-family: var(--e-font-mono);
  font-size: 10px;
  letter-spacing: 2px;
}

.e-blog__card-content {
  padding: 32px;
}

.e-blog__card-content time {
  font-family: var(--e-font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--e-metallic);
  display: block;
  margin-bottom: 16px;
}

.e-blog__card-content h3 {
  font-family: var(--e-font-display);
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.e-blog__card-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--e-bone-dark);
  margin-bottom: 18px;
}

.e-blog__card-link {
  font-family: var(--e-font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--e-blood);
  transition: color 0.3s;
}

.e-blog__card-link:hover {
  color: var(--e-bone);
}

.e-blog__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--e-font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--e-metallic);
  margin-bottom: 12px;
}

.e-blog__meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--e-blood);
}

.e-instagram {
  padding: 80px 0;
  overflow: hidden;
}

.e-instagram__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .e-instagram__header {
    padding: 0 48px;
  }
}

.e-instagram__header h2 {
  font-family: var(--e-font-display);
  font-size: 24px;
  letter-spacing: 4px;
}

.e-instagram__header a {
  font-family: var(--e-font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--e-blood);
}

.e-instagram__marquee {
  overflow: hidden;
}

.e-instagram__track {
  display: flex;
  gap: 16px;
  animation: marquee 30s linear infinite;
}

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

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

.e-instagram__item {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .e-instagram__item {
    width: 280px;
    height: 280px;
  }
}

.e-instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s;
}

.e-instagram__item:hover img {
  filter: grayscale(0);
}

.e-faq {
  padding: 120px 0;
}

@media (min-width: 768px) {
  .e-faq {
    padding: 160px 0;
  }
}

.e-faq__layout {
  display: grid;
  gap: 64px;
}

@media (min-width: 1024px) {
  .e-faq__layout {
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
}

.e-faq__title {
}

.e-faq__item {
  border-bottom: 1px solid var(--e-gray-light);
}

.e-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  font-family: var(--e-font-display);
  font-size: 18px;
  letter-spacing: 2px;
  cursor: pointer;
  list-style: none;
}

.e-faq__question::-webkit-details-marker {
  display: none;
}

.e-faq__icon {
  width: 24px;
  height: 24px;
  position: relative;
}

.e-faq__icon::before,
.e-faq__icon::after {
  content: "";
  position: absolute;
  background: var(--e-bone);
  transition: transform 0.3s;
}

.e-faq__icon::before {
  width: 24px;
  height: 1px;
  top: 50%;
  left: 0;
}

.e-faq__icon::after {
  width: 1px;
  height: 24px;
  left: 50%;
  top: 0;
}

.e-faq__item[open] .e-faq__icon::after {
  transform: rotate(90deg);
}

.e-faq__answer {
  padding-bottom: 24px;
}

.e-faq__answer p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--e-bone-dark);
}

.e-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .e-cta {
    padding: 160px 0;
  }
}

.e-cta__bg {
  position: absolute;
  inset: 0;
}

.e-cta__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.e-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(92, 0, 0, 0.9), rgba(92, 0, 0, 0.95));
}

.e-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.e-cta__title {
  font-family: var(--e-font-display);
  font-size: clamp(36px, 8vw, 72px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.e-cta__text {
  font-size: 18px;
  color: var(--e-bone-dark);
  margin-bottom: 40px;
}

.e-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .e-cta__actions {
    flex-direction: row;
    justify-content: center;
  }
}

.e-cta__phone {
  font-family: var(--e-font-display);
  font-size: 24px;
  letter-spacing: 2px;
}

.e-cta__hours {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.e-cta__hour {
  text-align: center;
}

.e-cta__hour span:first-child {
  display: block;
  font-family: var(--e-font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--e-bone-dark);
  margin-bottom: 4px;
}

.e-cta__hour span:last-child {
  font-family: var(--e-font-display);
  font-size: 18px;
}

.e-contact {
  padding: 120px 0;
}

@media (min-width: 768px) {
  .e-contact {
    padding: 160px 0;
  }
}

.e-contact__layout {
  display: grid;
  gap: 64px;
}

@media (min-width: 1024px) {
  .e-contact__layout {
    grid-template-columns: 1fr 1fr;
  }
}

.e-contact__title {
  font-family: var(--e-font-display);
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.e-contact__text {
  font-size: 16px;
  color: var(--e-metallic);
  margin-bottom: 40px;
}

.e-contact__details {
  margin-bottom: 40px;
}

.e-contact__detail {
  margin-bottom: 24px;
}

.e-contact__detail-label {
  display: block;
  font-family: var(--e-font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--e-metallic);
  margin-bottom: 8px;
}

.e-contact__detail-value {
  font-size: 18px;
}

.e-contact__social {
  display: flex;
  gap: 24px;
}

.e-contact__social a {
  font-family: var(--e-font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.e-contact__social a:hover {
  color: var(--e-blood);
}

.e-contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.e-contact__form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.e-contact__form-group label {
  font-family: var(--e-font-mono);
  font-size: 11px;
  letter-spacing: 2px;
}

.e-contact__form-group input,
.e-contact__form-group select,
.e-contact__form-group textarea {
  padding: 16px;
  background: transparent;
  border: 1px solid var(--e-black);
  font-family: var(--e-font-body);
  font-size: 16px;
  transition: border-color 0.3s;
}

.e-contact__form-group input:focus,
.e-contact__form-group select:focus,
.e-contact__form-group textarea:focus {
  outline: none;
  border-color: var(--e-blood);
}

.e-contact__form-row {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .e-contact__form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.e-footer {
  padding: 80px 0 40px;
}

.e-footer__main {
  display: grid;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--e-gray-light);
}

@media (min-width: 768px) {
  .e-footer__main {
    grid-template-columns: 1fr 2fr;
  }
}

.e-footer__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.e-footer__logo svg {
  color: var(--e-bone);
}

.e-footer__logo span {
  font-family: var(--e-font-display);
  font-size: 18px;
  letter-spacing: 4px;
}

.e-footer__brand p {
  font-size: 14px;
  color: var(--e-bone-dark);
  max-width: 300px;
}

.e-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}



.e-footer__nav-col a {
  display: block;
  font-size: 14px;
  color: var(--e-bone-dark);
  transition: color 0.3s;
}

.e-footer__nav-col a:hover {
  color: var(--e-blood);
}

.e-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
}

.e-footer__bottom p {
  font-size: 13px;
  color: var(--e-metallic);
}

.e-footer__badges {
  display: flex;
  gap: 16px;
}

.e-footer__badges span {
  font-family: var(--e-font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  padding: 8px 16px;
  border: 1px solid var(--e-gray-light);
}