/* ——— Hero ——— */
.hero {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  max-height: 100dvh;
  margin-top: calc(-1 * var(--header-h, 76px));
  overflow: clip;
  background: var(--white);
  margin-bottom: -1px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--white);
  z-index: 3;
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: transparent;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  display: block;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero-panel {
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 2;
  width: min(600px, 58vw);
  min-height: 62%;
  display: flex;
  align-items: flex-end;
}

.hero-curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: var(--white);
  pointer-events: none;
}

.hero-curve-mobile {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  padding: 3rem 4rem 3.25rem 2.6rem;
  text-align: left;
}

.hero-content h1 {
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.hero-line {
  border: none;
  border-top: 1.5px solid #111;
  margin: 1.2rem 0;
  width: 100%;
  max-width: 380px;
}

.hero-sub {
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
}

.hero-license {
  margin: 0.5rem 0 0;
  font-size: 1.02rem;
  font-weight: 700;
}

.btn-hero {
  margin-top: 0.35rem;
  background: var(--yellow);
  color: var(--white);
  border-radius: 999px;
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: none;
  border: none;
}

.btn-hero:hover {
  opacity: 0.92;
}

.hero-scroll {
  display: none;
}
