:root {
  --accent: #2a7d08;
  --accent-dark: #236a06;
  --green: #38a702;
  --green-bright: #7ddc4e;
  --green-soft: #eaf5e2;
  --ink: #14190f;
  --ink-2: #181e13;
  --text: #1b1f18;
  --muted: #5b6357;
  --line: #e4e8e0;
  --soft: #f4f7f1;
  --sec-y: clamp(4.5rem, 8vw, 7rem);
  --radius-panel: 16px;
  --radius-ctrl: 8px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset, 90px);
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: #ffffff;
  overflow-x: clip;
}

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

body h1,
body h2,
body h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  line-height: 1.12;
  color: var(--ink);
  overflow-wrap: break-word;
}

a {
  color: var(--accent);
}

.wrap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.nowrap {
  white-space: nowrap;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-ctrl);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn--lg {
  padding: 1.05rem 2.1rem;
  font-size: 1.06rem;
}

.btn--accent {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(20, 25, 15, 0.16);
}

.btn--accent:hover {
  background: var(--accent-dark);
}

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.85);
}

.btn--ghost:hover {
  background: #ffffff;
  color: var(--ink);
}

.btn--dark {
  background: var(--ink);
  color: #ffffff;
}

.btn--dark:hover {
  background: #000000;
}

.btn--light {
  background: #ffffff;
  color: var(--ink);
}

.btn--light:hover {
  background: #e8ede4;
  color: var(--ink);
}

.btn--block {
  width: 100%;
}

.topbar {
  background: var(--ink);
  color: #cdd3c7;
  font-size: 0.86rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.topbar__info {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.topbar__info i {
  color: var(--green-bright);
  font-size: 0.8rem;
}

.topbar__sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.topbar__links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.topbar__links i {
  color: var(--green-bright);
  font-size: 0.8rem;
}

.topbar__links a:hover {
  color: var(--green-bright);
}

#nav {
  position: relative;
  z-index: 200;
  background: #ffffff;
  transition: box-shadow 0.2s ease;
}

@media (min-width: 768px) {
  #nav {
    position: sticky;
    top: 0;
  }
}

#nav.scrolled {
  box-shadow: 0 2px 18px rgba(20, 25, 15, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__img {
  height: 54px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.99rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  color: #ffffff;
  margin-left: 0.4rem;
}

.nav-links a.nav-cta {
  color: #ffffff;
  font-weight: 700;
}

.nav-links a.nav-cta:hover {
  color: #ffffff;
}

.nav-drop {
  position: relative;
}

.nav-drop__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.99rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0;
  white-space: nowrap;
}

.nav-drop__toggle:hover {
  color: var(--accent);
}

.nav-drop__toggle i {
  font-size: 0.68rem;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.nav-drop__menu {
  display: none;
}

@media (min-width: 1140px) {
  .nav-drop {
    padding-top: 27px;
    padding-bottom: 27px;
  }

  .nav-drop__menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(20, 25, 15, 0.18);
    padding: 0.55rem;
    min-width: 240px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 300;
  }

  .nav-drop:hover .nav-drop__menu,
  .nav-drop:focus-within .nav-drop__menu,
  .nav-drop.open .nav-drop__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav-drop:hover .nav-drop__toggle i,
  .nav-drop.open .nav-drop__toggle i {
    transform: rotate(180deg);
  }

  .nav-drop__menu a {
    display: block;
    padding: 0.55rem 0.9rem;
    border-radius: 8px;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    white-space: nowrap;
  }

  .nav-drop__menu a:hover {
    background: var(--green-soft);
    color: var(--accent);
  }
}

.mobile-menu-header {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(10, 12, 8, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 150;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  background: var(--ink);
}

.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(11, 14, 8, 0.3);
}

.hero__scrim::after {
  content: "";
  position: absolute;
  top: 25%;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(rgba(11, 14, 8, 0), rgba(11, 14, 8, 0.8));
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(calc(100vh - 118px), 900px);
  padding-top: 8rem;
  padding-bottom: 2.4rem;
}

.hero__content {
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2.9rem, 5.9vw, 4.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.04;
  letter-spacing: -0.015em;
}

.hero__sub {
  margin-top: 1.2rem;
  font-size: 1.2rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 1.5rem;
  margin-top: clamp(2.8rem, 6vh, 4.5rem);
}

.hero__proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.hero__proof-item strong {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.14rem;
  font-weight: 800;
  color: #ffffff;
}

.hero__proof-item > span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding-top: var(--sec-y);
  padding-bottom: var(--sec-y);
  background: #ffffff;
}

.section--soft {
  background: var(--soft);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.2rem, 4.5vw, 3.4rem);
}

.section-head h2 {
  font-size: clamp(2rem, 3.9vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.015em;
}

.section-head p {
  margin-top: 0.9rem;
  font-size: 1.05rem;
  color: var(--muted);
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.feature-panel {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 14px 40px rgba(20, 25, 15, 0.09);
}

.feature-panel--flip {
  grid-template-columns: 0.92fr 1.08fr;
}

.feature-panel--flip .feature-panel__media {
  order: -1;
}

.feature-panel__media {
  position: relative;
  min-height: 420px;
}

.feature-panel__media img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-panel__copy {
  padding: clamp(2rem, 4vw, 3.4rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.feature-panel__copy h3 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
}

.feature-panel__copy > p {
  margin-top: 0.9rem;
  color: #3d4438;
  max-width: 52ch;
}

.check-list {
  list-style: none;
  margin-top: 1.4rem;
  margin-bottom: 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.check-list li {
  position: relative;
  padding-left: 2.3rem;
  font-weight: 500;
  color: var(--ink);
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border-radius: 7px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: var(--radius-panel);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 3px 14px rgba(20, 25, 15, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(20, 25, 15, 0.15);
}

.service-card__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.06);
}

.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.3rem 1.4rem 1.4rem;
}

.service-card__body h3 {
  font-size: 1.22rem;
  font-weight: 800;
}

.service-card__body p {
  margin-top: 0.45rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.service-card__more {
  margin-top: auto;
  padding-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  color: var(--accent);
}

.service-card__more i {
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.service-card:hover .service-card__more i {
  transform: translateX(4px);
}

.process {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

.process__step {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: var(--soft);
  border-radius: var(--radius-panel);
  padding: 1rem 1rem 1.4rem;
}

.process__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 0.9rem;
}

.process__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process__step strong {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
}

.process__step > span {
  font-size: 0.9rem;
  color: var(--muted);
}

.process__line {
  flex: 0 0 40px;
  align-self: center;
  border-top: 2px dashed #9fbb8f;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--soft);
  aspect-ratio: 4 / 3;
  box-shadow: 0 2px 10px rgba(20, 25, 15, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(20, 25, 15, 0.16);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 8 / 3;
}

.gallery--sub {
  grid-template-columns: repeat(3, 1fr);
}

.js-anim .gallery.is-collapsed .gallery-item.is-more {
  display: none;
}

.gallery-actions {
  display: none;
  text-align: center;
  margin-top: 1.8rem;
}

.js-anim .gallery-actions {
  display: block;
}

.galleri-filter {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.galleri-filter__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.galleri-filter a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-ctrl);
  border: 1.5px solid var(--line);
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.galleri-filter a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.galleri-filter a.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.gallery-cat.is-hidden {
  display: none;
}

@media (min-width: 768px) {
  .galleri-filter {
    position: sticky;
    top: var(--scroll-offset, 78px);
    z-index: 140;
  }
}

.projekt-link {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  box-shadow: 0 10px 30px rgba(20, 25, 15, 0.08);
  padding: 1.5rem 1.8rem;
  margin-top: 2.4rem;
}

.projekt-link__thumbs {
  display: flex;
  flex: 0 0 auto;
}

.projekt-link__thumbs img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(20, 25, 15, 0.2);
  margin-left: -16px;
}

.projekt-link__thumbs img:first-child {
  margin-left: 0;
}

.projekt-link__copy {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.projekt-link__copy strong {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--ink);
}

.projekt-link__copy span {
  color: var(--muted);
  font-size: 0.95rem;
}

.projekt-link .btn {
  flex: 0 0 auto;
}

@media (max-width: 680px) {
  .projekt-link {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem 1.2rem;
  }
}

.om-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.om-media {
  position: relative;
}

.om-media > img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}

.om-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  background: var(--accent);
  color: #ffffff;
  border-radius: 10px;
  padding: 0.55rem 0.95rem;
  box-shadow: 0 10px 26px rgba(20, 25, 15, 0.28);
}

.om-badge strong {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.05;
}

.om-badge span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.92);
}

.om-copy h2 {
  font-size: clamp(2rem, 3.9vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.015em;
}

.om-copy > p {
  margin-top: 0.9rem;
  color: var(--muted);
}

.team {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  margin-top: 1.6rem;
}

.team__row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.team__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--accent);
  font-size: 1rem;
  flex: 0 0 auto;
}

.team__icon--dark {
  background: var(--ink);
  color: var(--green-bright);
  box-shadow: none;
}

.team__name {
  display: flex;
  flex-direction: column;
  gap: 0.02rem;
  min-width: 0;
}

.team__name strong {
  font-weight: 600;
  color: var(--ink);
}

.team__name span {
  font-size: 0.82rem;
  color: var(--muted);
}

.om-creds {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dde4d7;
}

.om-cred {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.cta-band {
  position: relative;
  background: var(--ink);
  padding-top: clamp(4.5rem, 9vw, 7rem);
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
}

.cta-band__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.cta-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band__scrim {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(32, 92, 8, 0.85);
}

.cta-band__inner {
  position: relative;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.015em;
}

.cta-band p {
  margin-top: 0.8rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
}

.cta-band__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

.reviews-embed {
  min-height: 140px;
}

.faq-wrap .section-head {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 1rem;
}

.faq-list details {
  background: var(--soft);
  border-radius: var(--radius-panel);
  transition: box-shadow 0.2s ease;
}

.section--soft .faq-list details {
  background: #fff;
}

.faq-list details[open] {
  box-shadow: 0 10px 26px rgba(20, 25, 15, 0.1);
}

.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 3.2rem 1.15rem 1.5rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-list details p {
  padding: 0 1.5rem 1.35rem;
  color: var(--muted);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.6rem;
  align-items: stretch;
}

.kontakt-card {
  background: var(--ink);
  border-radius: 20px;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.kontakt-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.kontakt-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--green-bright);
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.kontakt-block__body {
  flex: 1;
  min-width: 0;
}

.kontakt-block h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.kontakt-block p {
  color: #b9c0b3;
}

.kontakt-block a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.kontakt-block a:hover {
  color: var(--green-bright);
}

.kontakt-tel {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.hours {
  width: 100%;
  border-collapse: collapse;
}

.hours td {
  padding: 0.3rem 0;
  color: #b9c0b3;
}

.hours td:last-child {
  text-align: right;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.kontakt-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  box-shadow: 0 14px 40px rgba(20, 25, 15, 0.1);
}

.kontakt-form-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
}

.kontakt-form-card__sub {
  margin-top: 0.3rem;
  margin-bottom: 1.3rem;
  font-size: 0.92rem;
  color: var(--muted);
}

#contact-form {
  max-width: 100%;
  min-width: 0;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #c7cdc2;
  border-radius: var(--radius-ctrl);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #ffffff;
}

.field select {
  cursor: pointer;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(42, 125, 8, 0.14);
}

.field textarea {
  resize: vertical;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.kontakt-map {
  margin-top: 1.6rem;
}

.kontakt-map iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: 20px;
}

.page-hero {
  position: relative;
  background: var(--ink);
}

.page-hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__scrim {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(11, 14, 8, 0.55);
}

.page-hero__inner {
  position: relative;
  text-align: center;
  padding-top: clamp(5.5rem, 11vw, 8.5rem);
  padding-bottom: clamp(5.5rem, 11vw, 8.5rem);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.015em;
}

.page-hero p {
  margin-top: 1rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.94);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split__copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.015em;
}

.split__copy > p {
  margin-top: 0.9rem;
  color: var(--muted);
}

.split__copy .btn {
  margin-top: 1.7rem;
}

.split__media img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}

.split__media video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(20, 25, 15, 0.16);
}

.steps {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

.steps__item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: #ffffff;
  border-radius: var(--radius-panel);
  padding: 1.5rem 1.5rem 1.6rem;
  box-shadow: 0 3px 14px rgba(20, 25, 15, 0.06);
}

.steps__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.steps__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.steps__item strong {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
}

.steps__item span {
  font-size: 0.9rem;
  color: var(--muted);
}

.steps__line {
  flex: 0 0 34px;
  align-self: center;
  border-top: 2px dashed #9fbb8f;
}

.page-cta {
  background: var(--ink);
  border-radius: 20px;
  padding: clamp(2.4rem, 5vw, 3.8rem);
  text-align: center;
}

.page-cta h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
}

.page-cta p {
  margin-top: 0.7rem;
  color: #c6ccc0;
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.page-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.page-cta__tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  padding: 1.05rem 1.2rem;
}

.page-cta__tel:hover {
  color: var(--green-bright);
}

.footer {
  background: var(--ink);
  color: #bcc2b6;
  padding-top: var(--sec-y);
  padding-bottom: 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1.1fr 1fr 1.3fr;
  gap: 2.5rem;
}

.footer__logo-chip {
  display: inline-flex;
  background: #ffffff;
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
}

.footer__logo {
  width: 128px;
  height: auto;
}

.footer__col--brand p {
  margin-top: 1.1rem;
  max-width: 30ch;
  font-size: 0.95rem;
}

.footer__col h3 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer__col a {
  color: #d5dad0;
  text-decoration: none;
}

.footer__col a:hover {
  color: var(--green-bright);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2.8rem;
  padding-top: 1.4rem;
  font-size: 0.85rem;
  color: #8f968a;
}

.lightbox {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 10, 6, 0.93);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(92vw, 1200px);
  max-height: 84vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.lightbox__close span {
  position: absolute;
  left: 12px;
  top: 23px;
  width: 24px;
  height: 2px;
  background: #ffffff;
}

.lightbox__close span:first-child {
  transform: rotate(45deg);
}

.lightbox__close span:last-child {
  transform: rotate(-45deg);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
}

.lightbox__nav:hover,
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox__nav--prev {
  left: 18px;
}

.lightbox__nav--next {
  right: 18px;
}

.ms-recaptcha-notice {
  text-align: center;
}

.js-anim .fade-in,
.js-anim .fade-in-left,
.js-anim .fade-in-right {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-anim .fade-in-left {
  transform: translateX(-24px) translateY(0);
}

.js-anim .fade-in-right {
  transform: translateX(24px) translateY(0);
}

.js-anim .fade-in.visible,
.js-anim .fade-in-left.visible,
.js-anim .fade-in-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js-anim .fade-in,
  .js-anim .fade-in-left,
  .js-anim .fade-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .service-card,
  .service-card__media img,
  .service-card__more i,
  .gallery-item,
  .gallery-item img,
  .faq-list details,
  .lightbox {
    transition: none;
  }
}

@media (max-width: 1139px) {
  .nav-inner {
    height: 68px;
  }

  .brand__img {
    height: 44px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(360px, 88vw);
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 1.2rem 1.4rem 1.6rem;
    transform: translateX(105%);
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0.6rem;
  }

  .mobile-menu-header__logo {
    height: 40px;
    width: auto;
  }

  .mobile-menu-close {
    position: relative;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .mobile-menu-close span {
    position: absolute;
    left: 10px;
    top: 21px;
    width: 24px;
    height: 2px;
    background: var(--ink);
  }

  .mobile-menu-close span:first-child {
    transform: rotate(45deg);
  }

  .mobile-menu-close span:last-child {
    transform: rotate(-45deg);
  }

  .nav-links a {
    padding: 0.95rem 0.2rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    color: var(--ink);
  }

  .nav-links a:hover {
    color: var(--accent);
  }

  .nav-links a.nav-cta {
    margin-top: 1.4rem;
    margin-left: 0;
    border-bottom: none;
    padding: 0.95rem 1rem;
  }

  .nav-drop {
    width: 100%;
  }

  .nav-drop__toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.95rem 0.2rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .nav-drop.open .nav-drop__toggle i {
    transform: rotate(180deg);
  }

  .nav-drop.open .nav-drop__menu {
    display: block;
    background: var(--soft);
    border-radius: 10px;
    margin-top: 0.5rem;
    margin-bottom: 0.4rem;
    padding: 0.25rem 0.7rem;
  }

  .nav-drop__menu a {
    display: block;
    font-size: 1rem;
  }

  .nav-drop__menu a:last-child {
    border-bottom: none;
  }
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery,
  .gallery--sub {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item--wide {
    aspect-ratio: 4 / 3;
    grid-column: auto;
  }

  .steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .steps__line {
    display: none;
  }

  .kontakt-map iframe {
    height: 260px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .js-anim .fade-in-left,
  .js-anim .fade-in-right {
    transform: translateY(22px);
  }

  .hero__proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
    justify-content: stretch;
  }
}

@media (max-width: 767px) {
  .feature-panel,
  .om-grid,
  .kontakt-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .feature-panel__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
    order: -1;
  }

  .feature-panel__media img {
    position: static;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .process {
    flex-direction: column;
    gap: 1rem;
  }

  .process__line {
    display: none;
  }

  .process__media {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 680px) {
  .topbar__info {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__links a {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .nav-inner {
    height: 62px;
  }

  .hero__inner {
    min-height: calc(100vh - 100px);
    min-height: calc(100svh - 100px);
    padding-top: 6rem;
    padding-bottom: 2.2rem;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero__sub {
    font-size: 1.05rem;
  }

  .hero__proof {
    margin-top: 2.6rem;
    gap: 1rem;
  }

  .hero__proof-item strong {
    font-size: 0.98rem;
  }

  .hero__proof-item > span {
    font-size: 0.77rem;
  }

  .split__media video {
    aspect-ratio: 4 / 3;
  }

  .page-hero h1 {
    font-size: 2.15rem;
  }

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

  .gallery,
  .gallery--sub {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

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

  .steps__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.2rem 1.3rem;
  }

  .steps__icon {
    margin-bottom: 0;
    flex: 0 0 auto;
  }

  .steps__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .team {
    flex-direction: column;
    gap: 0.8rem;
  }

  .om-badge {
    left: 0.9rem;
    bottom: 0.9rem;
    padding: 0.5rem 0.85rem;
  }

  .kontakt-map iframe {
    height: 220px;
  }

  .cta-band__actions,
  .page-cta__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-band__actions .btn,
  .page-cta__actions .btn,
  .page-cta__actions .page-cta__tel {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }

  .footer__col:last-child {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .lightbox__nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }
}
