/* ─── Hero ─── */

.section-hero {
  background-color: var(--color-bg);
  padding-block: 0;
}

.section-hero__inner {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  min-height: 620px;
  padding-block: clamp(3rem, 8vw, 5rem);
}

.section-hero__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-6);
}

.section-hero__text h1 {
  font-size: clamp(2.5rem, 5vw, var(--text-5xl));
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-brown-dark);
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--color-brown-mid);
  line-height: 1.65;
  max-width: 460px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-2);
}
.hero-trust li {
  font-size: var(--text-sm);
  color: var(--color-brown-mid);
  font-weight: 600;
}

/* right: visual placeholder */
.section-hero__visual {
  flex-shrink: 0;
  width: 400px;
}

.hero-visual-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

@media (max-width: 639px) {
  .section-hero__inner  { flex-direction: column; min-height: auto; gap: var(--space-8); }
  .section-hero__visual { width: 100%; }
  .visual-placeholder   { aspect-ratio: 4/3; }
}
