* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: #0a3342;
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    url("background.png") center center / cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(4, 31, 42, 0.72) 0%,
      rgba(4, 31, 42, 0.82) 100%
    );
}

.content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  text-align: center;
  padding: 48px 24px;
}

.eyebrow {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1;
  font-weight: 400;
}

.intro {
  margin: 18px 0 54px;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 300;
  opacity: 0.94;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.2rem, 11vw, 8.6rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.subtitle {
  margin: 32px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.tagline {
  margin: 30px auto 0;
  max-width: 840px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.015em;
}

.group {
  margin: 56px 0 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  opacity: 0.82;
}


.button {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 34px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .hero {
    background-position: center center;
  }

  .content {
    width: min(100%, calc(100% - 24px));
    padding: 36px 12px;
  }

  .eyebrow {
    font-size: 3rem;
  }

  .intro {
    margin: 18px 0 38px;
    font-size: 1rem;
    line-height: 1.45;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
    line-height: 0.95;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  .subtitle {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .tagline {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .button {
    margin-top: 28px;
    padding: 13px 28px;
    font-size: 0.82rem;
  }

  .group {
    margin-top: 38px;
    font-size: 0.66rem;
    line-height: 1.75;
    letter-spacing: 0.22em;
  }
}
