/* HERO STANDARD BUTTON FIX
   Keeps the hero button light by default, while using the same
   standard pill shape and rotating arrow interaction used across the site.
*/
.hero .cta.hero-standard-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
  width: auto;
  min-width: 220px;
  max-width: max-content;
  padding: 16px 22px;
  border: 1px solid rgba(244, 232, 214, 0.72);
  border-radius: 999px;
  background: rgba(244, 232, 214, 0.94);
  color: #17120e;
  text-decoration: none;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  box-shadow: none;
  transition: background-color 280ms ease, color 280ms ease, border-color 280ms ease;
}

.hero .cta.hero-standard-button span {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  transform: rotate(-35deg);
  transform-origin: center;
  transition: transform 280ms ease, opacity 280ms ease;
}

.hero .cta.hero-standard-button:hover,
.hero .cta.hero-standard-button:focus-visible {
  background: #17120e;
  color: var(--color-cream);
  border-color: #17120e;
}

.hero .cta.hero-standard-button:hover span,
.hero .cta.hero-standard-button:focus-visible span {
  transform: rotate(0deg);
}

@media (max-width: 700px) {
  .hero .cta.hero-standard-button {
    width: 100%;
    min-width: 0;
    max-width: none;
    gap: 28px;
    padding: 13px 18px;
    font-size: 9px;
  }
}


/* ALL PROJECTS STANDARD BUTTON FIX
   Replaces the large text link with the Amara Build standard centered button.
*/
.projects-section .all-projects-band {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(150px, 18vw, 230px);
}

.projects-section .all-projects-link.all-projects-standard-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
  width: auto;
  min-width: 220px;
  max-width: max-content;
  padding: 16px 22px;
  border: 1px solid rgba(23, 18, 14, 0.52);
  border-radius: 999px;
  background: transparent;
  color: #17120e;
  text-decoration: none;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  box-shadow: none;
  transition: background-color 280ms ease, color 280ms ease, border-color 280ms ease;
}

.projects-section .all-projects-link.all-projects-standard-button span {
  display: inline-block;
  margin-left: 0;
  font-size: 12px;
  line-height: 1;
  transform: rotate(-35deg);
  transform-origin: center;
  transition: transform 280ms ease, opacity 280ms ease;
}

.projects-section .all-projects-link.all-projects-standard-button:hover,
.projects-section .all-projects-link.all-projects-standard-button:focus-visible {
  background: #17120e;
  color: var(--color-cream);
  border-color: #17120e;
}

.projects-section .all-projects-link.all-projects-standard-button:hover span,
.projects-section .all-projects-link.all-projects-standard-button:focus-visible span {
  transform: rotate(0deg);
}

@media (max-width: 520px) {
  .projects-section .all-projects-link.all-projects-standard-button {
    min-width: 0;
    gap: 28px;
  }
}


@media (max-width: 700px) and (max-height: 680px) {
  .hero .cta.hero-standard-button {
    padding: 11px 15px;
    font-size: 8px;
    gap: 20px;
  }
}
