:root {
  color-scheme: dark;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  background: #263321;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: url("magaza.jpg") 58% center / cover no-repeat;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 18, 11, .88) 0%, rgba(20, 27, 17, .68) 31%, rgba(20, 27, 17, .14) 67%, rgba(8, 10, 7, .08) 100%),
    linear-gradient(0deg, rgba(7, 9, 6, .3), transparent 45%);
}

.content {
  width: min(620px, 88vw);
  margin-left: clamp(28px, 7vw, 110px);
  padding: 48px 0;
  color: #fffdf7;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .28);
  animation: reveal .9s ease-out both;
}

.eyebrow {
  margin: 0 0 14px;
  color: #e3d0a3;
  font-size: clamp(.72rem, 1vw, .88rem);
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(4.2rem, 10vw, 8.5rem);
  font-weight: 300;
  letter-spacing: -.065em;
  line-height: .86;
  text-transform: lowercase;
}

.announcement {
  max-width: 510px;
  margin: 30px 0 0;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-weight: 400;
  letter-spacing: .015em;
  line-height: 1.5;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .35);
}

.contact a {
  color: #fffdf7;
  font-size: clamp(.82rem, 1.2vw, 1rem);
  letter-spacing: .04em;
  text-decoration: none;
  transition: color .2s ease;
}

.contact a:hover,
.contact a:focus-visible {
  color: #f0d79d;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .hero {
    align-items: flex-end;
    background-position: 55% center;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(11, 15, 9, .94) 0%, rgba(15, 20, 12, .7) 46%, rgba(10, 13, 8, .08) 78%),
      linear-gradient(90deg, rgba(13, 17, 10, .18), transparent);
  }

  .content {
    width: auto;
    margin: 0;
    padding: 42px 25px max(38px, env(safe-area-inset-bottom));
  }

  h1 {
    font-size: clamp(4rem, 21vw, 6.1rem);
  }

  .announcement {
    margin-top: 22px;
    font-size: 1rem;
  }

  .contact {
    flex-direction: column;
    margin-top: 24px;
    padding-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .content {
    animation: none;
  }
}
