@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/barlow-condensed-500.ttf") format("truetype");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/barlow-condensed-700.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/manrope-400.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/manrope-600.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/manrope-700.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/manrope-800.ttf") format("truetype");
}

:root {
  --bg: #0d1115;
  --surface: rgba(18, 25, 32, 0.56);
  --surface-border: rgba(180, 214, 94, 0.24);
  --hero-image: url("assets/vos/WaremaKasettenmarkise.jpg");
  --font-body: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Barlow Condensed", "Avenir Next Condensed", "Arial Narrow",
    "Franklin Gothic Medium", "Helvetica Neue", Arial, sans-serif;
  --text: #f1f5f7;
  --muted: #b7c4cc;
  --cendo-green: #93c01f;
  --accent: #b4d65e;
  --accent-strong: #8fb83a;
  --warm: #f3ac6d;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(180, 214, 94, 0.22), transparent 48%),
    radial-gradient(circle at 92% 95%, rgba(243, 172, 109, 0.18), transparent 46%),
    linear-gradient(180deg, #0b1014 0%, #131c24 55%, #0f1418 100%);
  line-height: 1.5;
}

.ambient {
  pointer-events: none;
  position: fixed;
  inset: auto;
  z-index: 0;
  filter: blur(56px);
  opacity: 0.35;
}

.ambient-top {
  width: 320px;
  height: 320px;
  top: -100px;
  left: -70px;
  background: var(--accent);
}

.ambient-bottom {
  width: 280px;
  height: 280px;
  right: -90px;
  bottom: -90px;
  background: var(--warm);
}

.hero-banner,
.topbar,
.page,
.footer {
  position: relative;
  z-index: 1;
}

.hero-banner {
  min-height: clamp(500px, 78vh, 880px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(165deg, rgba(8, 12, 15, 0.24), rgba(8, 12, 15, 0.74)),
    radial-gradient(circle at 82% 18%, rgba(180, 214, 94, 0.36), transparent 34%),
    var(--hero-image),
    linear-gradient(145deg, #161e25, #10161c 50%, #1d2831);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(180, 214, 94, 0.24);
}

.topbar {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.4rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-banner-inner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.4rem 3.4rem;
}

.hero-banner-kicker {
  margin: 0 0 0.65rem;
  color: rgba(241, 245, 247, 0.86);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

.hero-banner-title {
  margin: 0;
  color: var(--cendo-green);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 8.2rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.hero-banner-date {
  margin: 0.5rem 0 0;
  color: rgba(241, 245, 247, 0.92);
  font-size: clamp(0.95rem, 2vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-cta {
  margin-top: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  background: var(--cendo-green);
  color: #11160e;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.94rem;
  border: 1px solid rgba(14, 20, 10, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-1px);
  background: #a8d232;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  text-decoration: none;
}

.brand img {
  display: block;
  width: auto;
  height: clamp(44px, 7vw, 82px);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.22));
}

.page {
  width: min(1160px, calc(100% - 2rem));
  margin: 2.6rem auto 4.5rem;
  display: grid;
  gap: 2rem;
}

.hero,
.panel {
  backdrop-filter: blur(6px);
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.hero {
  padding: clamp(1.25rem, 3vw, 2.1rem);
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 1rem;
  align-items: stretch;
}

.hero-card-copy {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 0.2rem 0.2rem 0.2rem 0.15rem;
}

.hero-card-title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero-card-text {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 58ch;
}

.hero-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 0.1rem;
}

.hero-card-image {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1;
  margin: 0;
}

h1 {
  margin-top: 0.35rem;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  text-transform: uppercase;
  letter-spacing: 0.015em;
}

h1 span {
  color: var(--accent);
}

.panel {
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.panel-highlights {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: stretch;
}

.panel-highlights-copy {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.panel-highlights-copy h2 {
  margin-bottom: 0;
}

.panel-highlights-image {
  margin: 0;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 14, 0.45);
}

.panel-highlights-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery {
  background: rgba(18, 25, 32, 0.45);
}

.gallery-grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gallery-item {
  grid-column: span 6;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  min-height: 240px;
  background: rgba(7, 11, 14, 0.45);
}

.gallery-item-tall {
  min-height: 420px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

h2.hero-card-title {
  margin: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.feature-list-compact {
  margin-top: 0.25rem;
  gap: 0.55rem;
}

.feature-list-compact li {
  padding: 0.72rem 0.9rem 0.72rem 2.2rem;
  background: rgba(13, 19, 25, 0.28);
}

.feature-list li {
  position: relative;
  background: rgba(13, 19, 25, 0.35);
  padding: 1rem 1.15rem 1rem 2.35rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-list li::before {
  content: "*";
  color: var(--accent);
  position: absolute;
  left: 1.05rem;
  top: 0.95rem;
}

.panel-dual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.panel-dual article {
  background: rgba(10, 15, 20, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.3rem 1.4rem;
}

h3 {
  font-size: clamp(1.65rem, 3.6vw, 2.2rem);
  text-transform: uppercase;
  margin-bottom: 0.48rem;
}

.panel-dual p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 50ch;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.links a {
  color: var(--text);
  text-decoration-color: rgba(180, 214, 94, 0.8);
  text-underline-offset: 2px;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #15190f;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.action-button:hover {
  transform: translateY(-1px);
  background: #c8eb72;
}

.action-button-secondary {
  background: rgba(10, 15, 20, 0.32);
  color: var(--text);
  border: 1px solid rgba(180, 214, 94, 0.56);
}

.action-button-secondary:hover {
  transform: translateY(-1px);
  background: rgba(180, 214, 94, 0.18);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 0.85rem;
}

.footer {
  text-align: center;
  padding: 0 1rem 2.2rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer a {
  color: var(--muted);
  text-decoration-color: rgba(180, 214, 94, 0.7);
  text-underline-offset: 2px;
}

.footer a:hover {
  color: #e8f1f7;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-banner {
    min-height: clamp(400px, 70vh, 620px);
  }

  .hero-banner-inner {
    padding-bottom: 2rem;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-card-image {
    min-height: 320px;
  }

  .gallery-item {
    grid-column: span 12;
    min-height: 300px;
  }

  .gallery-item-tall {
    min-height: 380px;
  }

  .panel-highlights {
    grid-template-columns: 1fr;
  }

  .panel-highlights-image {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .topbar {
    padding: 0 1rem 0.8rem;
  }

  .hero-banner-inner {
    padding: 0 1rem 1.4rem;
  }

  .hero-banner-title {
    font-size: clamp(2.4rem, 13vw, 4.6rem);
  }

  .hero-banner-date {
    font-size: 0.9rem;
  }

  .hero-cta {
    margin-top: 0.75rem;
    padding: 0.64rem 1.05rem;
    font-size: 0.9rem;
  }

  .hero-card-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero-card-image {
    min-height: 230px;
  }

  .page {
    width: min(1160px, calc(100% - 1rem));
    margin-top: 1.2rem;
    gap: 1.1rem;
  }

  .panel-dual {
    grid-template-columns: 1fr;
  }
}
