/* Y4T production UI refinements — 2026-08-25
   Loaded after the base styles so fixes are not blocked by older cached CSS. */

/* Hero typography: keep the statement strong without letting it dominate the viewport. */
.hero .hero-copy h1 {
  max-width: 720px;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

/* Contact alternatives: clearly separate email and WhatsApp into two cards. */
.contact-copy .direct-contact {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 32px !important;
}

.contact-copy .direct-contact-link {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 5px !important;
  min-width: 0;
  padding: 16px 18px !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 14px !important;
  background: rgba(255,255,255,.045) !important;
}

.contact-copy .direct-contact-link strong {
  display: block;
  color: #93ffd9 !important;
  font-size: .72rem !important;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-copy .direct-contact-link span {
  display: block;
  color: #f4f8fb !important;
  font-size: .92rem !important;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

/* Never allow the anti-spam field to become visible, even if an older CSS file is cached. */
.form-honeypot,
.form-honeypot[hidden] {
  display: none !important;
}

/* Override the generic .contact-form input height/width rules for the privacy checkbox. */
.contact-form .privacy-consent {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr) !important;
  gap: 11px !important;
  align-items: start !important;
  margin: 8px 0 22px !important;
  color: #aebed0 !important;
  font-size: .84rem;
  font-weight: 500 !important;
  line-height: 1.5;
}

.contact-form .privacy-consent > input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  display: block;
  width: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  max-height: 18px !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  border-radius: 3px !important;
  box-shadow: none !important;
  accent-color: #2ee6a6;
}

.contact-form .privacy-consent > span {
  display: block;
  min-width: 0;
}

.contact-form .privacy-consent a {
  color: #93ffd9;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 820px) {
  .hero .hero-copy h1 {
    max-width: 650px;
    font-size: clamp(2.7rem, 10vw, 4rem);
  }
}

@media (max-width: 560px) {
  .hero .hero-copy h1 {
    font-size: clamp(2.55rem, 12vw, 3.5rem);
    line-height: 1.03;
  }

  .contact-copy .direct-contact {
    grid-template-columns: 1fr !important;
  }

  .contact-copy .direct-contact-link {
    padding: 15px 16px !important;
  }
}
