/* Landmark Experience CTA — keep original banner background */
.landmark-experience {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #0d0d0d;
  background-image: url("../../2026/05/cta-bannertoni.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #f5f0ea;
  padding: 110px 24px 100px;
  text-align: center;
}
.landmark-experience::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: rgba(13, 13, 13, 0.33);
}
.landmark-experience::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.96) 0%,
      rgba(0,0,0,0.82) 22%,
      rgba(0,0,0,0.45) 48%,
      rgba(0,0,0,0.15) 68%,
      rgba(0,0,0,0.82) 100%
    );
}
.landmark-experience__inner {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  margin: 0 auto;
}
.landmark-experience__eyebrow {
  margin: 0 0 16px;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #c6a062;
  text-align: center;
}
.landmark-experience__title {
  margin: 0 0 18px;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 600;
  line-height: 1.1;
  color: #f5f0ea;
}
.landmark-experience__title span {
  color: #c6a062;
}
.landmark-experience__desc {
  margin: 0 auto 48px;
  max-width: 640px;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245, 240, 234, 0.78);
}
.landmark-experience__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
  margin: 0 0 48px;
  padding: 28px 0;
  border-top: 1px solid rgba(198, 160, 98, 0.28);
  border-bottom: 1px solid rgba(198, 160, 98, 0.28);
}
.landmark-experience__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.landmark-experience__stat-value {
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  line-height: 1;
  color: #c6a062;
}
.landmark-experience__stat-label {
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(245, 240, 234, 0.7);
}
.landmark-experience__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.landmark-experience__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.landmark-experience__cta--primary {
  background: #c6a062;
  color: #0d0d0d !important;
  border: 1px solid #c6a062;
}
.landmark-experience__cta--primary:hover {
  background: #b08f52;
  border-color: #b08f52;
  color: #0d0d0d !important;
}
.landmark-experience__cta--secondary {
  background: transparent;
  color: #f5f0ea !important;
  border: 1px solid rgba(245, 240, 234, 0.4);
}
.landmark-experience__cta--secondary:hover {
  border-color: #c6a062;
  color: #c6a062 !important;
}
@media (max-width: 767px) {
  .landmark-experience {
    padding: 72px 16px 64px;
  }
  .landmark-experience__stats {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }
  .landmark-experience__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .landmark-experience__cta {
    width: 100%;
  }
}

/* About page — Years of Experience highlight */
.landmark-about-years {
  margin: 36px 0 8px;
  padding: 28px 32px;
  max-width: 420px;
  border: 1px solid rgba(198, 160, 98, 0.35);
  background: linear-gradient(135deg, rgba(198, 160, 98, 0.08) 0%, rgba(255, 255, 255, 0.6) 100%);
}
.landmark-about-years__value {
  display: block;
  margin: 0 0 8px;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 600;
  line-height: 1;
  color: #c6a062;
}
.landmark-about-years__label {
  display: block;
  font-family: var(--landmark-font, "Inter", sans-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #2c2926;
}
@media (max-width: 767px) {
  .landmark-about-years {
    padding: 22px 20px;
    max-width: 100%;
  }
}
