* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background: #020403;
  color: white;
}

.hero {
  min-height: 100vh;
  width: 100%;

  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.10),
      rgba(0, 0, 0, 0.35)
    ),
    url("Blind_Heron_Desktop.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: flex-end;
  justify-content: flex-start;

  padding: 4rem;
}

.panel {
  max-width: 720px;
  padding: 2rem 2.5rem;

  background: rgba(0, 0, 0, 0.55);
  border-left: 4px solid #7fa35a;
  backdrop-filter: blur(6px);
}

h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: 0.08em;
  line-height: 0.9;
}

p {
  margin-top: 1rem;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: #d7e6d0;
}