.macturi-hero {
  background: var(--macturi-hero-bg, #faf8f5);
  background-image: var(--macturi-hero-bg-image, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: var(--macturi-hero-padding-top-desktop, 164px) 0 var(--macturi-hero-padding-bottom-desktop, 88px);
  position: relative;
}

.macturi-hero::before {
  background: rgba(26, 23, 20, var(--macturi-hero-overlay-opacity, 0));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.macturi-hero__frame {
  display: none;
}

.macturi-hero__inner {
  max-width: 980px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.macturi-hero__eyebrow {
  color: var(--macturi-hero-eyebrow-color, #8b7355);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.macturi-hero__title {
  color: var(--macturi-hero-title-color, #1a1714);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.macturi-hero__title-main,
.macturi-hero__title-accent {
  display: block;
  font-family: "Tenor Sans", sans-serif !important;
  font-size: var(--macturi-hero-title-size-desktop, 86px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.06;
}

.macturi-hero__title-accent {
  color: var(--macturi-hero-accent-color, #a28666);
  font-style: italic;
}

.macturi-hero__text {
  color: var(--macturi-hero-text-color, #7c756f);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
  margin: 132px auto 0;
  max-width: 800px;
}

.macturi-hero__button {
  align-items: center;
  background: var(--macturi-hero-button-background-color, transparent);
  border: 1px solid var(--macturi-hero-button-border-color, transparent);
  color: var(--macturi-hero-button-color, #9b7d59);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 500;
  gap: 14px;
  letter-spacing: 0.14em;
  margin-top: 46px;
  padding: 0.95rem 1.9rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.macturi-hero__button span {
  transition: color 0.3s ease;
}

.macturi-hero__button svg {
  flex-shrink: 0;
  height: 18px;
  transition: transform 0.3s ease;
  width: 18px;
}

.macturi-hero__button:hover {
  background: var(--macturi-hero-button-hover-background-color, transparent);
  border-color: var(--macturi-hero-button-hover-border-color, #7d6348);
  color: var(--macturi-hero-button-hover-color, #7d6348);
}

.macturi-hero__button:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .macturi-hero {
    padding: calc(var(--macturi-hero-padding-top-desktop, 164px) * 0.9) 0 calc(var(--macturi-hero-padding-bottom-desktop, 88px) * 0.82);
  }
}

@media (max-width: 720px) {
  .macturi-hero {
    padding: var(--macturi-hero-padding-top-mobile, 132px) 0 var(--macturi-hero-padding-bottom-mobile, 52px);
  }

  .macturi-hero__title-main,
  .macturi-hero__title-accent {
    font-size: var(--macturi-hero-title-size-mobile, 56px);
  }

  .macturi-hero__text {
    margin-top: 64px;
    max-width: 520px;
  }

  .macturi-hero__button {
    font-size: 0.8rem;
    gap: 10px;
    margin-top: 34px;
  }
}
