/* ===========================================================
   ABOUT TEASER STRIP
   =========================================================== */

.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-6);
  align-items: center;
}

.about-teaser__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--blue-600), var(--sage-600));
}

.about-teaser__visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-teaser__copy p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-primary);
}

.about-teaser__copy .em {
  font-style: italic;
  color: var(--blue-600);
}

.about-teaser__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--sp-5);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  border-bottom: 1px solid var(--text-primary);
  padding-bottom: 0.2rem;
  transition: gap var(--dur-fast) var(--ease-out);
}

.about-teaser__link:hover {
  gap: 0.8rem;
}

.about-teaser__link svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 800px) {
  .about-teaser {
    grid-template-columns: 1fr;
  }

  .about-teaser__visual {
    aspect-ratio: 16/9;
  }
}

/* ===========================================================
   FOOTER
   =========================================================== */

.footer {
  background: var(--ink-900);
  color: var(--bone-100);
  padding-top: var(--sp-8);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr 1fr;
  gap: var(--sp-5);
  padding-bottom: var(--sp-7);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: var(--sp-4);
}

.footer__brand img {
  height: 36px;
  width: 36px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.footer__tagline {
  color: var(--text-on-dark-muted);
  font-size: 0.92rem;
  max-width: 30ch;
  line-height: 1.6;
}

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-300);
  margin-bottom: var(--sp-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-size: 0.92rem;
  color: var(--text-on-dark-muted);
  transition: color var(--dur-fast) var(--ease-out);
}

.footer__links a:hover {
  color: var(--bone-100);
}

.footer__newsletter-form {
  display: flex;
  border: 1px solid var(--border-hair-dark);
  border-radius: 999px;
  padding: 0.3rem 0.3rem 0.3rem 1.1rem;
  align-items: center;
  margin-top: var(--sp-3);
}

.footer__newsletter-form input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--bone-100);
  font-size: 0.88rem;
  flex: 1;
  min-width: 0;
}

.footer__newsletter-form input::placeholder {
  color: var(--text-on-dark-muted);
}

.footer__newsletter-form button {
  background: var(--gold-500);
  color: var(--ink-900);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease-out);
}

.footer__newsletter-form button:hover {
  background: var(--gold-300);
}

.footer__newsletter-form button svg {
  width: 14px;
  height: 14px;
}

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--border-hair-dark);
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  gap: var(--sp-3);
}

.footer__socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-hair-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.footer__socials a:hover {
  border-color: var(--bone-100);
  background: rgba(255, 255, 255, 0.06);
}

.footer__socials a svg {
  width: 15px;
  height: 15px;
  stroke: var(--bone-100);
}

.footer__credit {
  text-align: right;
  justify-self: end;
}

.footer__credit a {
  color: var(--text-on-dark-muted);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color var(--dur-fast) var(--ease-out);
}

.footer__credit a:hover {
  color: var(--bone-100);
}

@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: var(--sp-3);
  }

  .footer__credit {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .footer__newsletter-form {
    flex-direction: column;
    border-radius: var(--radius-md);
    padding: 0.8rem 1rem;
    gap: 0.75rem;
    align-items: stretch;
  }

  .footer__newsletter-form button {
    width: 100%;
    height: 40px;
    border-radius: var(--radius-sm);
  }
}