

:root {
  --hero-title-color: #000000;
  --hero-text-color: #111111;
  --hero-button-text-color: #ffffff;
  --hero-gradient-start: #111111;
  --hero-gradient-middle: #111111;
  --hero-gradient-end: #403f11;
  --hero-font-primary: 'Marcellus', serif;
  --hero-font-secondary: 'Inter', sans-serif;
  --hero-container-max-width: 1840px;
  --hero-content-max-width: 1128px;
  --hero-description-max-width: 700px;
  --hero-border-radius: 20px;
  --hero-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --hero-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --hero-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}


.hero-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff !important;
  padding: 2rem 1rem;
}


.hero-container {
  position: relative;
  
  width: 100%;
  max-width: var(--hero-container-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}


.hero-title-container {
  position: relative;
  width: 100%;
  max-width: var(--hero-content-max-width);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.hero-title {
  font-family: var(--hero-font-primary);
  font-size: clamp(3rem, 8vw, 15rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--hero-title-color);
  margin: 0;
  padding: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.2s forwards;
}


.hero-logo {
  position: relative;
  margin-top: 1rem;
  width: 58px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInScale 0.8s ease-out 0.5s forwards;
}

.hero-logo svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(var(--hero-shadow));
  transition: var(--hero-transition);
}

.hero-logo:hover svg {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(var(--hero-shadow-hover));
}


.hero-content {
  width: 100%;
  max-width: var(--hero-description-max-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.8s forwards;
}


.hero-description {
  width: 100%;
  padding: 0 1rem;
}

.hero-text {
  font-family: var(--hero-font-secondary);
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.75;
  letter-spacing: 0;
  color: var(--hero-text-color);
  margin: 0;
  text-align: center;
  max-width: 100%;
}


.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}


.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--hero-border-radius);
  font-family: var(--hero-font-secondary);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--hero-transition);
  position: relative;
  overflow: hidden;
  border: none;
  outline: none;
  min-width: 120px;
  box-shadow: var(--hero-shadow);
}

.hero-btn:focus {
  outline: 2px solid var(--hero-gradient-end);
  outline-offset: 2px;
}

.hero-btn span {
  position: relative;
  z-index: 2;
  color: var(--hero-button-text-color);
  transition: var(--hero-transition);
}


.hero-btn-primary,
.hero-btn-secondary {
  background: linear-gradient(
    0deg,
    var(--hero-gradient-start) 0.72%,
    var(--hero-gradient-middle) 49.16%,
    var(--hero-gradient-end) 100.72%
  );
}


.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
  z-index: 1;
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--hero-shadow-hover);
}

.hero-btn:active {
  transform: translateY(0);
}


.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(64, 63, 17, 0.05) 0%,
    rgba(17, 17, 17, 0.02) 50%,
    transparent 100%
  );
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}


@media (prefers-reduced-motion: no-preference) {
  .hero-logo {
    animation: fadeInScale 0.8s ease-out 0.5s forwards, 
               pulse 4s ease-in-out 2s infinite;
  }
}




@media screen and (max-width: 767px) {
  .hero-section {
    min-height: 100vh;
    padding: 1rem 0rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 26vw, 6rem);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
  }

  .hero-logo {
    width: 40px;
    height: 45px;
    margin-top: 0.5rem;
  }

  .hero-content {
    gap: 1rem;
    margin-top: 1rem;
  }

  .hero-text {
    font-size: 0.875rem;
    line-height: 1.6;
    padding: 0 0.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
    padding: 1rem 1.5rem;
    font-size: 0.75rem;
  }
}


@media screen and (min-width: 768px) and (max-width: 1023px) {
  .hero-section {
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    letter-spacing: -0.04em;
  }

  .hero-logo {
    width: 48px;
    height: 54px;
  }

  .hero-text {
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  .hero-buttons {
    gap: 1.25rem;
  }

  .hero-btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.75rem;
    min-width: 140px;
  }
}


@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .hero-title {
    font-size: clamp(6rem, 12vw, 12rem);
    letter-spacing: -0.045em;
  }

  .hero-logo {
    width: 52px;
    height: 58px;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.75;
  }
}


@media screen and (min-width: 1440px) {
  .hero-title {
    font-size: 15rem;
    letter-spacing: -0.05em;
  }

  .hero-logo {
    width: 58px;
    height: 64px;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-btn {
    font-size: 0.6875rem;
  }
}


@media screen and (-webkit-min-device-pixel-ratio: 2),
       screen and (min-resolution: 192dpi) {
  .hero-logo svg {
    filter: drop-shadow(var(--hero-shadow)) contrast(1.1);
  }
}


@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-logo,
  .hero-content {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-btn {
    transition: none;
  }

  .hero-btn:hover {
    transform: none;
  }
}



@media print {
  .hero-section {
    background: none;
    min-height: auto;
    padding: 1rem;
  }

  .hero-background,
  .hero-buttons {
    display: none;
  }

  .hero-title {
    color: #000000;
    font-size: 3rem;
  }

  .hero-text {
    color: #333333;
    font-size: 0.875rem;
  }
}