:root {
  --green: #009e46;
  --green-light: #f3faf5;
  --ink: #0b0b0b;
  --muted: #4f4f4f;
  --bg: #ffffff;
  --max-width: 800px;
  --pad: clamp(1.5rem, 6vw, 3rem);
}

body {
  font-family: "Metropolis-Regular", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at center, var(--green-light) 0%, var(--bg) 100%);
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

address {
  font-style: normal;
}

.pre-launch {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; /* Essential for single-screen feel */
}

.site-header {
  width: 100%;
  padding: clamp(2rem, 5vh, 4rem) var(--pad);
  display: flex;
  justify-content: center;
  animation: fadeIn 0.8s ease-out forwards;
}

.logo {
  /* Increased logo size as requested */
  width: clamp(180px, 40vw, 320px);
}

.hero {
  flex: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.headline {
  font-family: "HomepageBaukasten-Bold", Helvetica, Arial, sans-serif;
  font-size: clamp(2.2rem, 8vw, 4rem); /* Slightly smaller for single screen fit */
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--ink);
}

.headline .accent {
  color: var(--green);
}

.headline span {
  display: inline-block;
}

.line {
  width: 60px;
  height: 4px;
  background-color: var(--green);
  margin: 0 auto 1.5rem;
  border: none;
  opacity: 0.8;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin: 0 auto 1rem;
  color: var(--muted);
  max-width: 45ch;
}

.subcopy {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.brand-message {
  width: 100%;
  padding: 1.5rem var(--pad);
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.tagline {
  font-family: "Metropolis-Bold", Helvetica, Arial, sans-serif;
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  color: var(--ink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tagline .accent {
  color: var(--green);
}

.site-footer {
  width: 100%;
  background: var(--green); /* Changed to brand green */
  color: #ffffff;
  padding: clamp(2rem, 5vh, 4rem) var(--pad);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.footer-title {
  font-family: "Metropolis-SemiBold", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
  letter-spacing: 0.02em;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: "Metropolis-SemiBold", Helvetica, Arial, sans-serif;
  color: #ffffff;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
  background: #ffffff;
  color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-item svg {
  flex-shrink: 0;
}

/* Single Screen Desktop Adjustment */
@media (min-width: 1024px) {
  body {
    overflow: hidden; /* Lock scroll on desktop */
  }

  .pre-launch {
    height: 100vh;
    max-height: 100vh;
  }

  .contact-list {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .contact-item {
    width: auto;
  }
}

/* Handle smaller vertical heights (laptops) */
@media (max-height: 700px) and (min-width: 1024px) {
  .site-header { padding: 1.5rem var(--pad); }
  .logo { width: 240px; }
  .headline { font-size: 3rem; }
  .lead { font-size: 1.1rem; }
  .subcopy { margin-bottom: 1rem; }
  .site-footer { padding: 1.5rem var(--pad); }
}
