:root {
  --orange: #E8791D;
  --orange-light: #F5943E;
  --green-dark: #08534F;
  --green: #0A6B60;
  --green-light: #0D7D6E;
  --white: #FFFFFF;
  --dark: #1A1A1A;
  --gray-light: #F5F5F5;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Lato', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section[id] {
  scroll-margin-top: 70px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1000;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1;
  color: var(--orange);
}

.navbar__logo-top {
  font-size: 1.3rem;
  text-transform: uppercase;
}

.navbar__logo-bottom {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.navbar__links {
  display: flex;
  gap: 28px;
}

.navbar__links a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.navbar__links a:hover {
  color: var(--orange);
}

.navbar__link--active {
  background: var(--orange);
  color: var(--white) !important;
  padding: 6px 18px;
  border-radius: 20px;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.navbar__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .navbar__toggle { display: flex; }
  .navbar__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    gap: 16px;
  }
  .navbar__links.active { display: flex; }
}

/* ============================================
   HERO — dwuczęściowy jak w designie
   ============================================ */
.hero {
  padding-top: 0;
}

/* Górna część: wideo w tle z logo */
.hero__top {
  position: relative;
  overflow: hidden;
  height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 58px;
  background: #fafafa;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.hero__logo-large {
  position: relative;
  z-index: 2;
}

.hero__logo-img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.15));
}

/* Dolna część: białe tło ze zdjęciem i tekstem */
.hero__bottom {
  background: var(--white);
  padding: 50px 0 40px;
}

.hero__main {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero__photo {
  flex-shrink: 0;
}

.hero__photo-frame {
  position: relative;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
}

.hero__photo-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 6px solid var(--orange);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  z-index: 2;
}

.hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Dekoracyjne warzywka wokół zdjęcia */
.hero__veggie {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  z-index: 3;
  animation: veggie-float 3s ease-in-out infinite;
}

.hero__veggie--1 {
  width: 52px; height: 52px; font-size: 1.6rem;
  top: -5px; left: 45%;
  animation-delay: 0s;
}
.hero__veggie--2 {
  width: 46px; height: 46px; font-size: 1.4rem;
  top: 15%; right: 2px;
  animation-delay: 0.4s;
}
.hero__veggie--3 {
  width: 50px; height: 50px; font-size: 1.5rem;
  bottom: 18%; right: -5px;
  animation-delay: 0.8s;
}
.hero__veggie--4 {
  width: 40px; height: 40px; font-size: 1.2rem;
  bottom: -2px; right: 25%;
  animation-delay: 1.2s;
}
.hero__veggie--5 {
  width: 48px; height: 48px; font-size: 1.4rem;
  bottom: 2px; left: 18%;
  animation-delay: 1.6s;
}
.hero__veggie--6 {
  width: 44px; height: 44px; font-size: 1.3rem;
  bottom: 22%; left: -5px;
  animation-delay: 2s;
}
.hero__veggie--7 {
  width: 50px; height: 50px; font-size: 1.5rem;
  top: 18%; left: 0;
  animation-delay: 2.4s;
}
.hero__veggie--8 {
  width: 42px; height: 42px; font-size: 1.2rem;
  top: -2px; left: 20%;
  animation-delay: 2.8s;
}

@keyframes veggie-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero__text h1 {
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 14px;
  font-weight: 800;
}

.hero__tagline {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
  line-height: 1.5;
}

.hero__desc {
  font-size: 0.92rem;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.7;
}

.hero__desc:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero__top { height: 380px; }
  .hero__logo-img { width: 180px; }
  .hero__main { flex-direction: column; text-align: center; }
  .hero__photo-frame { width: 220px; height: 220px; }
  .hero__photo-circle { width: 190px; height: 190px; }
  .hero__veggie { transform: scale(0.85); }
  .hero__main { gap: 20px; }
  .hero__bottom { padding: 16px 0 28px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
}

/* ============================================
   WAVE DIVIDERS
   ============================================ */
.wave {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.wave svg {
  display: block;
  width: 100%;
  height: 80px;
  vertical-align: bottom;
  margin: 0;
  padding: 0;
}

.wave--to-orange {
  background: var(--white);
}

.wave--to-orange path {
  fill: var(--orange);
}

.wave--to-green {
  background: var(--orange);
}

.wave--to-green path {
  fill: var(--green-dark);
}

.wave--to-white {
  background: var(--green-dark);
}

.wave--to-white path {
  fill: var(--gray-light);
}

.wave--gray-to-orange {
  background: var(--gray-light);
}

.wave--gray-to-orange path {
  fill: var(--orange);
}

.wave--orange-to-white {
  background: var(--orange);
  margin-top: -1px;
}

.wave--orange-to-white path {
  fill: var(--gray-light);
}

.wave--orange-to-green {
  background: var(--orange);
  margin-top: -1px;
}

.wave--orange-to-green path {
  fill: var(--green-dark);
}


/* ============================================
   DLA KOGO — tekst + ilustracja warzyw
   ============================================ */
.dla-kogo {
  background: var(--orange);
  color: var(--white);
  padding: 40px 0 50px;
}

.dla-kogo h2 {
  text-align: left;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 36px;
  line-height: 1.3;
}

/* Layout: ilustracja + tekst */
.dla-kogo__content {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Zdjęcie w kółku z warzywkami */
.dla-kogo__photo {
  flex-shrink: 0;
}

.dla-kogo__photo-frame {
  position: relative;
  width: 320px;
  height: 320px;
}

.dla-kogo__photo-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 6px solid var(--white);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  z-index: 2;
}

.dla-kogo__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.dla-kogo__veg {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 3px 12px rgba(0,0,0,0.12);
  z-index: 3;
  animation: veggie-float 3s ease-in-out infinite;
}

.dla-kogo__veg--1 {
  width: 52px; height: 52px; font-size: 1.6rem;
  top: -5px; left: 45%;
  animation-delay: 0s;
}
.dla-kogo__veg--2 {
  width: 46px; height: 46px; font-size: 1.4rem;
  top: 15%; right: 2px;
  animation-delay: 0.4s;
}
.dla-kogo__veg--3 {
  width: 50px; height: 50px; font-size: 1.5rem;
  bottom: 18%; right: -5px;
  animation-delay: 0.8s;
}
.dla-kogo__veg--4 {
  width: 40px; height: 40px; font-size: 1.2rem;
  bottom: -2px; right: 25%;
  animation-delay: 1.2s;
}
.dla-kogo__veg--5 {
  width: 48px; height: 48px; font-size: 1.4rem;
  bottom: 2px; left: 18%;
  animation-delay: 1.6s;
}
.dla-kogo__veg--6 {
  width: 44px; height: 44px; font-size: 1.3rem;
  bottom: 22%; left: -5px;
  animation-delay: 2s;
}
.dla-kogo__veg--7 {
  width: 50px; height: 50px; font-size: 1.5rem;
  top: 18%; left: 0;
  animation-delay: 2.4s;
}
.dla-kogo__veg--8 {
  width: 42px; height: 42px; font-size: 1.2rem;
  top: -2px; left: 20%;
  animation-delay: 2.8s;
}

/* Tekst */
.dla-kogo__text p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.dla-kogo__list {
  margin: 20px 0;
}

.dla-kogo__list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.dla-kogo__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  font-weight: 700;
}

.dla-kogo__effect {
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 16px;
}

@media (max-width: 768px) {
  .dla-kogo { padding: 30px 0 40px; }
  .dla-kogo h2 { font-size: 1.4rem; text-align: center; }
  .dla-kogo__content { flex-direction: column; }
  .dla-kogo__photo-frame { width: 260px; height: 260px; }
  .dla-kogo__photo-circle { width: 210px; height: 210px; }
  .dla-kogo__veg { transform: scale(0.85); }
  .wave svg { height: 50px; }
}

/* ============================================
   GDZIE I JAK — dwie kolorowe kolumny
   ============================================ */
.gdzie {
  background: var(--white);
}

.gdzie__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gdzie__col {
  padding: 60px 40px 30px;
}

.gdzie__col--left {
  background: var(--green-dark);
  color: var(--white);
}

.gdzie__col--right {
  background: var(--green-dark);
  color: var(--white);
}

.gdzie__col-inner {
  max-width: 500px;
}

.gdzie__col--left .gdzie__col-inner {
  margin-left: auto;
}

.gdzie h2 {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 6px;
}

.gdzie h3 {
  font-size: 0.95rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 18px;
  font-style: italic;
  text-transform: none;
}

.gdzie li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 12px;
  font-size: 0.93rem;
  line-height: 1.5;
}

.gdzie__col--left li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
}

.gdzie__col--right li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: 400;
}

.gdzie__note {
  margin-top: 20px;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.gdzie__cta-bar {
  text-align: center;
  padding: 0 0 20px;
  background: var(--green-dark);
}

.gdzie__cta-bar .btn {
  margin-top: 0;
}

@media (max-width: 768px) {
  .gdzie__columns { grid-template-columns: 1fr; }
  .gdzie__col { padding: 40px 24px; }
  .gdzie__col-inner { max-width: 100%; }
}

/* ============================================
   O MNIE — zdjęcie z warzywkami + tekst
   ============================================ */
.omnie {
  background: var(--gray-light);
  padding: 60px 0;
}

.omnie__content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.omnie__photo {
  flex-shrink: 0;
}

.omnie__photo-frame {
  position: relative;
  width: 320px;
  height: 320px;
}

.omnie__photo-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 6px solid var(--orange);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  z-index: 2;
}

.omnie__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.omnie__veg {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  z-index: 3;
  animation: veggie-float 3s ease-in-out infinite;
}

.omnie__veg--1 {
  width: 52px; height: 52px; font-size: 1.6rem;
  top: -5px; left: 45%;
  animation-delay: 0s;
}
.omnie__veg--2 {
  width: 46px; height: 46px; font-size: 1.4rem;
  top: 15%; right: 2px;
  animation-delay: 0.4s;
}
.omnie__veg--3 {
  width: 50px; height: 50px; font-size: 1.5rem;
  bottom: 18%; right: -5px;
  animation-delay: 0.8s;
}
.omnie__veg--4 {
  width: 40px; height: 40px; font-size: 1.2rem;
  bottom: -2px; right: 25%;
  animation-delay: 1.2s;
}
.omnie__veg--5 {
  width: 48px; height: 48px; font-size: 1.4rem;
  bottom: 2px; left: 18%;
  animation-delay: 1.6s;
}
.omnie__veg--6 {
  width: 44px; height: 44px; font-size: 1.3rem;
  bottom: 22%; left: -5px;
  animation-delay: 2s;
}
.omnie__veg--7 {
  width: 50px; height: 50px; font-size: 1.5rem;
  top: 18%; left: 0;
  animation-delay: 2.4s;
}
.omnie__veg--8 {
  width: 42px; height: 42px; font-size: 1.2rem;
  top: -2px; left: 20%;
  animation-delay: 2.8s;
}

.omnie h2 {
  font-size: 1.5rem;
  color: var(--green-dark);
  font-weight: 800;
  margin-bottom: 6px;
}

.omnie h3 {
  font-size: 0.95rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: none;
}

.omnie__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--dark);
}

.omnie__text p {
  font-size: 0.93rem;
  margin-bottom: 12px;
  line-height: 1.7;
  color: #444;
}

@media (max-width: 768px) {
  .omnie { padding: 40px 0; }
  .omnie__content { flex-direction: column; text-align: center; }
  .omnie__photo-frame { width: 260px; height: 260px; }
  .omnie__photo-circle { width: 210px; height: 210px; }
  .omnie__veg { transform: scale(0.85); }
}

/* ============================================
   DECLUTTERING — split layout: zdjęcie + tekst
   ============================================ */
.declutter {
  background: var(--orange);
}

.declutter__split {
  display: grid;
  grid-template-columns: 38% 1fr;
  min-height: 480px;
}

.declutter__image-side {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

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

.declutter__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.3) 100%);
}

.declutter__image-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
}

.declutter__image-label span {
  display: inline-block;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.declutter__text-side {
  background: var(--orange);
  display: flex;
  align-items: center;
  padding: 50px 50px 50px 20px;
}

.declutter__text-inner {
  color: var(--white);
  max-width: 480px;
}

.declutter__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.declutter h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}

.declutter__subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 16px;
  font-size: 1rem;
  opacity: 0.9;
}

.declutter__text-inner > p {
  font-size: 0.93rem;
  margin-bottom: 12px;
  line-height: 1.7;
}

.declutter h3 {
  margin: 18px 0 14px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: none;
}

.declutter li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.declutter li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.declutter__closing {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.25);
  font-style: italic;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .declutter__split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .declutter__image-side {
    clip-path: none;
    margin: 28px 24px 0;
    border-radius: 20px;
    height: 200px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  }
  .declutter__image-overlay {
    border-radius: 20px;
  }
  .declutter__image-label {
    bottom: 14px;
    left: 14px;
  }
  .declutter__image-label span {
    font-size: 0.75rem;
    padding: 8px 14px;
  }
  .declutter__text-side {
    padding: 28px 24px 16px;
  }
}

/* ============================================
   KONTAKT — pełna szerokość
   ============================================ */
.kontakt {
  margin-top: 0;
}

.kontakt__wave-top {
  background: var(--orange);
  line-height: 0;
  overflow: hidden;
}

.kontakt__wave-top svg {
  display: block;
  width: 100%;
  height: 80px;
}

.kontakt__wave-top path {
  fill: var(--green-dark);
}

.kontakt__header {
  background: var(--green-dark);
  color: var(--white);
  padding: 50px 0 40px;
}

.kontakt__header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.kontakt__subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.kontakt__desc {
  opacity: 0.8;
  font-size: 0.93rem;
}

.kontakt__body {
  background: var(--gray-light);
  padding: 50px 0 60px;
}

.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.kontakt__info {
  padding-top: 10px;
  font-style: normal;
}

.kontakt__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.kontakt__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 121, 29, 0.1);
  border-radius: 10px;
}

.kontakt__label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.kontakt__form input,
.kontakt__form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  margin-bottom: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}

.kontakt__form input:focus,
.kontakt__form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 121, 29, 0.1);
}

.kontakt__form .btn {
  width: 100%;
  margin-top: 10px;
  padding: 15px;
}

.btn--green {
  background: var(--green-dark);
  color: var(--white);
}

@media (max-width: 768px) {
  .kontakt__header { padding: 36px 0 28px; }
  .kontakt__body { padding: 36px 0 44px; }
  .kontakt__grid { grid-template-columns: 1fr; gap: 28px; }
}

.kontakt__cta-text {
  margin-top: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--green-dark);
  opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo-img {
  height: 50px;
  width: auto;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer__links a:hover {
  color: var(--orange);
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
}
