html {
  scroll-behavior: smooth;
}

.hero-apropos-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: center;
  position: relative;
}

.hero-apropos-invitation {
  max-width: 640px;
  margin-inline: auto;
}

.hero-apropos-title {
  letter-spacing: -0.04em;
}

.hero-apropos-subtitle {
  font-size: var(--text-lg);
}

.hero-apropos-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero-apropos-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  font-size: var(--text-xs);
}

.hero-apropos-meta-item dt {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.hero-apropos-meta-item dd {
  margin: 0;
}

.hero-apropos-visual {
  display: flex;
  justify-content: center;
}

.hero-apropos-figure {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.hero-apropos-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-apropos-figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-radius: 20px;
  padding: 0.75rem 1rem;
  background: rgba(15, 23, 42, 0.75);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero-apropos-figcaption-text {
  font-size: var(--text-xs);
}

.team-figure {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.team-figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-radius: 20px;
  padding: 0.75rem 1rem;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  backdrop-filter: blur(10px);
}

.team-figcaption-text {
  font-size: var(--text-xs);
}

.team-values-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.team-values-list {
  display: grid;
  gap: var(--space-3);
}

.team-values-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-2);
  align-items: flex-start;
  font-size: var(--text-sm);
}

.team-values-list .badge {
  margin-top: 0.15rem;
}

.apropos-list {
  display: grid;
  gap: 0.65rem;
  font-size: var(--text-sm);
}

.apropos-list li::before {
  content: "•";
  margin-right: 0.4rem;
  color: var(--color-accent-coral);
}

.apropos-list li {
  display: flex;
  align-items: flex-start;
}

.apropos-list li span {
  display: inline-block;
}

.intro-text {
  max-width: 720px;
  margin-inline: auto;
}

.experience-figure {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.strip-gallery-item--type-1 {
  background-image: linear-gradient(135deg, rgba(226,237,248,0.25), rgba(247,227,201,0.8));
}

.strip-gallery-item--type-2 {
  background-image: linear-gradient(135deg, rgba(38,67,111,0.85), rgba(242,156,143,0.8));
}

.strip-gallery-item--type-3 {
  background-image: linear-gradient(135deg, rgba(247,227,201,0.9), rgba(226,237,248,0.9));
}

.strip-gallery-item--type-4 {
  background-image: linear-gradient(135deg, rgba(15,23,42,0.9), rgba(148,163,184,0.9));
}

.contact-card .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1024px) {
  .hero-apropos-meta {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 960px) {
  .hero-apropos-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-apropos-layout {
    row-gap: var(--space-6);
  }

  .hero-apropos-invitation {
    order: 2;
  }

  .hero-apropos-visual {
    order: 1;
  }

  .hero-floating-card {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-apropos-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .team-values-list li {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer .container {
    padding-inline: var(--space-4);
  }
}
