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

@font-face {
  font-family: "MADESunflower";
  src: url("assets/fonts/MADESunflower.woff2") format("woff2"), url("assets/fonts/MADESunflower.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gordita";
  src: url("assets/fonts/GorditaRegular.woff2") format("woff2"), url("assets/fonts/GorditaRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gordita";
  src: url("assets/fonts/GorditaBold.woff2") format("woff2"), url("assets/fonts/GorditaBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  position: relative;
  min-height: 100vh;
  background: #1a1206;
  color: #ffffff;
  font-family: "Gordita", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #ed683b;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #ffffff;
}

.background {
  position: fixed;
  inset: 0;
  z-index: 0;
}
.background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 6, 0.6);
}

.wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 4rem;
}
.header .logo img {
  height: 50px;
  width: auto;
}
.header .badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 100px;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.hero .title {
  font-family: "MADESunflower", serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 4vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #ca9e67;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.hero .tagline {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 400;
  text-wrap: balance;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 600px;
}
.hero .tagline::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 0.5rem auto 0;
  background: linear-gradient(to right, #002395 33%, #ffffff 33%, #ffffff 66%, #ED2939 66%);
  border-radius: 2px;
}

.footer {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-heading {
  font-family: "MADESunflower", serif;
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ed683b;
}
.footer .contact {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}
.footer .contact .contact-link {
  margin-top: 0.25rem;
}
.footer .contact a {
  font-weight: 700;
}

@media (max-width: 600px) {
  .header {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 2rem;
  }
  .hero {
    padding: 3rem 1.5rem;
  }
  .footer {
    padding: 2rem 1.5rem;
  }
}
