/* Hero styles migrated to /css/components/hero.css */

/* Full-width brand image below hero */
.about-brand-img-wrap {
  width: 100%;
  height: clamp(280px, 48vw, 580px);
  overflow: hidden;
  position: relative;
  line-height: 0;
}
.about-brand-img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: translateY(0);
  transition: transform 8s ease-out;
}
.about-brand-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 21, 39, 0.72) 0%,
    rgba(7, 21, 39, 0.18) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: clamp(24px, 4vw, 52px) clamp(24px, 6vw, 80px);
}
.about-brand-caption {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: abCaptionIn 0.8s 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes abCaptionIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.about-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(20, 184, 166, 0.18);
  border: 1px solid rgba(20, 184, 166, 0.45);
  backdrop-filter: blur(8px);
  color: #5eead4;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  width: fit-content;
}
.about-brand-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3.2vw, 36px);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.25;
  text-shadow: 0 2px 16px rgba(7,21,39,0.4);
  max-width: 560px;
}
@media (max-width: 640px) {
  .about-brand-overlay { padding: 24px 20px; }
  .about-brand-tagline { font-size: 18px; }
}

/* Hero grid layout */
.ab-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}
@media (max-width: 1024px) {
  .ab-grid { grid-template-columns: 1fr; }
}

/* Hero — kicker, badges, stats, highlight */
.ab-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-teal-light);
  margin-bottom: 0.75rem;
}
.ab-highlight { color: var(--color-teal-light); }
.ab-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
}
.ab-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 0;
  min-width: 0;
}
.ab-stat strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-teal-light);
  line-height: 1;
  white-space: nowrap;
}
.ab-stat span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
  line-height: 1.25;
}

/* Form card header inside ab-grid */
.ab-form-header {
  margin-bottom: 1rem;
}
.ab-form-header h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 0.25rem;
}
.ab-form-header p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}
.ab-form-body { display: flex; flex-direction: column; gap: 0.75rem; }

/* Mobile hero-text: restore padding, darken glass for contrast */
@media (max-width: 768px) {
  .about-page .hero .hero-text {
    padding: 1rem;
    background: rgba(6, 20, 32, 0.78);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .about-page .hero .hero-actions {
    flex-wrap: wrap;
    gap: 8px;
  }
  .about-page .hero-badges {
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0.75rem;
  }
}

/* Reused home values section grid support on About page */
.about-page .values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

@media (max-width: 992px) {
  .about-page .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-page .values-grid {
    grid-template-columns: 1fr;
  }
}
