/* Green LIV holding page — consolidated responsive styles */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500;600&display=swap');

:root {
  color-scheme: light;
  --page-width: 393px;
  --page-height: 852px;
  --layout-padding: 20px;
  --stack-gap: 32px;
  --hero-height: 300px;
  --hero-radius: 18px;
  --title-size: 24px;
  --subtitle-size: 14px;
  --contact-title-size: 22px;
  --contact-body-size: 14px;
  --logo-size: 60px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: #1C583F;
  font-family: 'Bricolage Grotesque', 'Inter', 'Segoe UI', sans-serif;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.landing {
  width: min(100%, var(--page-width));
  min-height: var(--page-height);
  padding: clamp(16px, 6vw, var(--layout-padding));
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 5vh, var(--stack-gap));
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.messaging {
  max-width: 100%;
}

.status {
  margin: 0 0 6px;
  font-size: var(--title-size);
  line-height: 1.25;
  font-weight: 500;
}

.teaser {
  margin: 0;
  font-size: var(--subtitle-size);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-intro {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand {
  margin: 0;
  font-size: var(--contact-title-size);
  line-height: 1.2;
  font-weight: 500;
}

.address {
  margin: 0;
  font-size: var(--contact-body-size);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--contact-body-size);
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.contact-link.secondary {
  opacity: 0.7;
}

.contact-link:hover {
  opacity: 1;
}

.icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
}

.icon svg {
  width: 100%;
  height: 100%;
}

.logo {
  margin: 8px 0 0;
  width: var(--logo-size);
  height: var(--logo-size);
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero {
  position: relative;
  min-height: var(--hero-height);
  border-radius: var(--hero-radius);
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.hero picture,
.hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

@media (min-width: 600px) {
  :root {
    --page-width: 780px;
    --page-height: 1024px;
    --layout-padding: 32px;
    --stack-gap: 40px;
    --hero-height: 420px;
    --hero-radius: 20px;
    --title-size: 28px;
    --subtitle-size: 15px;
    --contact-title-size: 28px;
    --contact-body-size: 15px;
    --logo-size: 68px;
  }

  .landing {
    padding: clamp(20px, 6vw, var(--layout-padding));
  }
}

@media (min-width: 900px) {
  :root {
    --page-width: 1340px;
    --page-height: 780px;
    --layout-padding: 32px;
    --stack-gap: 48px;
    --hero-height: 520px;
    --hero-radius: 22px;
    --title-size: 30px;
    --subtitle-size: 16px;
    --contact-title-size: 30px;
    --contact-body-size: 15px;
    --logo-size: 78px;
  }

  .landing {
    padding: clamp(24px, 4vw, var(--layout-padding));
  }

  .top-bar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    column-gap: 0px;
    row-gap: 32px;
  }

  .messaging {
    flex: 1 1 360px;
    max-width: 420px;
  }

  .contact-card {
    flex: 0 0 310px;
  }

  .contact-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 34px;
  }

  .icon {
    width: 18px;
    height: 18px;
  }

  .logo {
    margin-left: auto;
  }
}

@media (min-width: 1200px) {
  :root {
    --page-width: 1600px;
    --page-height: 900px;
    --layout-padding: 40px;
    --stack-gap: 56px;
    --hero-height: 610px;
    --hero-radius: 24px;
    --title-size: 32px;
    --subtitle-size: 16px;
    --contact-title-size: 32px;
    --contact-body-size: 16px;
    --logo-size: 86px;
  }

  .top-bar {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .messaging {
    max-width: 420px;
  }

  .contact-card {
    max-width: 320px;
    gap: 18px;
  }

  .contact-links {
    gap: 37px;
  }

  .icon {
    width: 20px;
    height: 20px;
  }

  .logo {
    margin-left: auto;
  }

  .hero {
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  }

}

@media (min-width: 1400px) and (min-height: 1000px) {
  :root {
    --page-height: 1200px;
    --layout-padding: 64px;
    --stack-gap: 72px;
    --hero-height: 820px;
    --hero-radius: 28px;
    --title-size: 36px;
    --subtitle-size: 18px;
    --contact-title-size: 34px;
    --contact-body-size: 18px;
    --logo-size: 92px;
  }

  .landing {
    gap: clamp(48px, 6vh, var(--stack-gap));
    padding: clamp(32px, 5vw, var(--layout-padding));
  }

  .top-bar {
    justify-content: flex-start;
  }

  .messaging {
    max-width: 520px;
  }

  .contact-card {
    max-width: 380px;
    gap: 22px;
  }

  .contact-intro {
    gap: 10px;
  }

  .address {
    color: rgba(255, 255, 255, 0.68);
  }

  .contact-links {
    gap: 44px;
  }

  .icon {
    width: 22px;
    height: 22px;
  }

  .logo {
    margin-left: auto;
  }

  .hero {
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  }

}

