:root {
  --ink: #1a1c1f;
  --ink-soft: #3d424a;
  --muted: #6b717a;
  --line: #e4e1db;
  --paper: #f6f4f0;
  --white: #ffffff;
  --orange: #e85d04;
  --orange-dark: #c44c00;
  --orange-soft: #fff1e6;
  --steel: #2c333c;
  --shadow: 0 18px 50px rgba(26, 28, 31, 0.08);
  --radius: 1.1rem;
  --header-h: 84px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
.navbar-brand,
.display-font {
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: -0.03em;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--orange);
}

a:hover {
  color: var(--orange-dark);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0.4rem;
}

.skip-link:focus {
  top: 1rem;
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #f7f7f7;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  min-height: var(--header-h);
}

.navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
  white-space: normal;
  min-width: 0;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: inherit;
}

.brand-logo {
  height: auto;
  width: 10rem;
  display: block;
  flex-shrink: 0;
}

.brand-name {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #8b1e10;
  white-space: normal;
  max-width: 20rem;
}
.navbar-nav {
  gap: 10px;
}
.navbar-nav .nav-link {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 0.85rem !important;
  border-radius: 999px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--orange);
  background: var(--orange-soft);
}

.navbar-toggler {
  border: 1px solid var(--line);
  padding: 0.4rem 0.55rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
  padding: 0.18rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1;
  min-width: 2.15rem;
  padding: 0.42rem 0.55rem;
  border-radius: 999px;
  cursor: pointer;
}

.lang-btn:hover {
  color: var(--orange);
}

.lang-btn.is-active {
  background: var(--orange);
  color: #fff;
}

.lang-btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(92vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(to top, #fff, transparent);
  pointer-events: none;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
  color: #ffd3b0;
  margin-bottom: 1.25rem;
}

.hero-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  max-width: 16ch;
  margin-bottom: 1.25rem;
}

.hero-lead {
  max-width: 42rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
}

.btn-accent {
  --bs-btn-bg: var(--orange);
  --bs-btn-border-color: var(--orange);
  --bs-btn-hover-bg: var(--orange-dark);
  --bs-btn-hover-border-color: var(--orange-dark);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: var(--orange-dark);
  --bs-btn-active-color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
}

.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}

.btn-outline-ink {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  line-height: 2;
}

.btn-outline-ink:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: #cfcbc3;
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-muted {
  background: var(--paper);
}

.section-label {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-bottom: 0.7rem;
}

.section-title {
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--ink-soft);
  max-width: 46rem;
}

/* About */
.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: #fff;
  border-radius: 1rem;
  padding: 0.95rem 1.1rem;
  box-shadow: var(--shadow);
  max-width: 260px;
}

.about-badge strong {
  display: block;
  font-family: Manrope, sans-serif;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
}

.about-list li {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  color: var(--ink-soft);
}

.about-list i {
  color: var(--orange);
  margin-top: 0.2rem;
}

/* Cards */
.plant-card,
.offer-card,
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.plant-card:hover,
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #d8d3cb;
}

.plant-card {
  overflow: hidden;
}

.plant-card-image,
.plant-modal-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  background: #d8d3cb;
}

.plant-modal-image {
  height: 280px;
  border-radius: 0.75rem;
}

.plant-card .card-body,
.offer-card .card-body {
  padding: 1.5rem;
}

.plant-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.meta-chip {
  background: var(--paper);
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
}

.plant-card h3,
.offer-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.spec-table {
  width: 100%;
  font-size: 0.92rem;
}

.spec-table th {
  color: var(--muted);
  font-weight: 500;
  width: 1.6rem;
  padding: 0.08rem 0.55rem 0.08rem 0;
  vertical-align: middle;
}

.spec-table th i {
  font-size: 0.95rem;
  line-height: 1;
}

.spec-table td {
  font-weight: 600;
  padding: 0.08rem 0;
  vertical-align: middle;
}

.plant-actions,
.offer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
}

.offer-row .offer-actions {
  margin-top: 0;
  flex-shrink: 0;
}

.btn-icon-pdf {
  width: 38px;
  height: 38px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

/* Offers */
.offers-section.section {
  padding: 3.25rem 0;
}

.offers-heading {
  margin-bottom: 1.15rem;
}

.offers-heading .section-title {
  margin-bottom: 0.35rem;
}

.offers-heading .section-intro {
  margin-bottom: 0;
}

.offers-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.offer-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 0.7rem 0.85rem;
}

.offer-row-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--orange-soft);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.offer-row-text h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.12rem;
}

.offer-row-text p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.35;
}

/* Contact */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.contact-list i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--orange-soft);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-control,
.form-control:focus {
  border-radius: 0.75rem;
  border-color: var(--line);
  padding: 0.8rem 0.95rem;
  box-shadow: none;
}

.form-control:focus {
  border-color: var(--orange);
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.4rem;
  font-size: 0.92rem;
}

/* Imprint */
.imprint-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}

.imprint-box h3 {
  font-size: 1.05rem;
  margin-top: 1.6rem;
}

.legal-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 1.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-logo {
  height: 48px;
  background: #fff;
  border-radius: 10px;
  padding: 0.35rem 0.55rem;
}

.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  font-size: 0.9rem;
}

.modal-content {
  border: 0;
  border-radius: var(--radius);
}

.modal-header,
.modal-footer {
  border-color: var(--line);
}

@media (max-width: 991.98px) {
  :root {
    --header-h: 72px;
  }

  .navbar > .container {
    flex-wrap: wrap;
    align-items: center;
  }

  .navbar-brand {
    flex: 1 1 auto;
    max-width: calc(100% - 3.5rem);
    margin-right: 0;
    padding-right: 0.5rem;
  }

  .navbar-toggler {
    flex: 0 0 auto;
    margin-left: auto;
    position: relative;
    z-index: 2;
  }

  .brand-logo {
    height: 40px;
  }

  .brand-name {
    font-size: 0.72rem;
    max-width: none;
    line-height: 1.25;
  }

  .brand-break {
    display: block;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1030;
    flex: 1 0 100%;
    width: 100%;
    max-width: 100%;
    background: #fff;
    padding: 0.75rem;
    border: 1px solid var(--line);
  }

  .navbar-toggler{
    padding: 0 !important;
    border: unset !important;
    margin: 0 !important;
  }

  .lang-switch {
    margin: 0.65rem 0 0.15rem;
  }

  .about-image {
    min-height: 320px;
    margin-bottom: 1.5rem;
  }

  .hero {
    min-height: calc(60vh - var(--header-h));
  }

  .hero::after {
    height: 70px;
  }
}

@media (max-width: 575.98px) {
  .brand-name {
    font-size: 0.66rem;
  }

  .navbar-brand {
    gap: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .offer-row {
    grid-template-columns: auto 1fr;
  }

  .offer-row .offer-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}
