@import url("https://fonts.googleapis.com/css2?family=Vendal+Sans:wght@300;400;600;700;800;900&display=swap");

:root{
  --font: "Vendal Sans", "Vend Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --text: #121212;
  --muted: #6b6b6b;
  --line: #e8e8e8;
  --bg: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
}

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

.kontakt-page{
      padding-bottom: 120px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
padding-top: 140px;}


.kontakt-wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.kontakt-header{
  text-align: center;
  margin-bottom: 26px;
}

.kontakt-header h1{
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: .2px;
  margin: 0;
  font-weight: 900;
}

.kontakt-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(18px, 2.5vw, 34px);
  align-items: start;
  margin-top: 18px;
}

.kontakt-card{
  border: 1px solid var(--line);
  border-radius: 0;
  padding: clamp(18px, 2.4vw, 28px);
  background: #fff;
  min-width: 0;
}

.kontakt-subtitle{
  text-align: center;
  font-size: 22px;
  margin: 0 0 18px 0;
  font-weight: 900;
}

.kontakt-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.kontakt-item{
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-width: 0;
}

.kontakt-ico{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #000;
  flex: 0 0 auto;
}

.kontakt-ico svg{
  width: 26px;
  height: 26px;
}

.kontakt-text{
  font-size: 16px;
  line-height: 1.45;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.kontakt-strong{
  font-weight: 900;
  margin-bottom: 2px;
}

.kontakt-muted{
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.kontakt-link{
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.25);
}

.kontakt-link:hover{
  border-bottom-color: rgba(0,0,0,.8);
}

.kontakt-actions{
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.btn-outline{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 2px solid #000;
  text-decoration: none;
  color: #000;
  font-weight: 900;
  min-width: 220px;
  max-width: 100%;
  transition: transform .08s ease, background .15s ease;
}

.btn-outline:hover{
  background: #000;
  color: #fff;
}

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

.btn-solid{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  min-width: 240px;
  max-width: 100%;
  border: 2px solid #000;
  transition: transform .08s ease, filter .15s ease;
}

.btn-solid:hover{ filter: brightness(1.05); }
.btn-solid:active{ transform: translateY(1px); }

.zept-text{
  margin: 6px 0 14px 0;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

.zept-links{
  display: grid;
  gap: 14px;
  justify-items: center;
}

.social-row{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.social{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  text-decoration: none;
  color: #000;
  font-weight: 800;
  max-width: 100%;
}

.social:hover{
  border-color: #000;
}

.social-ico{
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.social-ico svg{
  width: 20px;
  height: 20px;
}

.zept-note{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.zept-note code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
}

.find-us{
  margin-top: clamp(28px, 4vw, 60px);
  border-top: 1px solid var(--line);
  padding-top: clamp(22px, 3vw, 44px);
}

.find-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.find-text,
.find-media{ min-width: 0; }

.find-text h2{
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 0 0 12px 0;
  font-weight: 900;
}

.find-text p{
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 60ch;
}

.find-actions{
  margin-top: 18px;
}

.find-media{
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
  overflow: hidden;
}

.map-embed{
  width: 100%;
  height: 100%;
  background: #fff;
}

.map-embed iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-embed--big{
  height: 440px;
}

@media (max-width: 900px){
  .kontakt-page{     padding-top: 120px; }

  .kontakt-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .kontakt-card{ padding: 20px 16px; }

  .kontakt-item{
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
  }

  .kontakt-ico{ width: 36px; height: 36px; }
  .kontakt-ico svg{ width: 20px; height: 20px; }

  .btn-outline,
  .btn-solid{
    width: 100%;
    min-width: unset;
    padding: 14px;
  }

  .social-row{
    flex-direction: column;
  }

  .social{
    width: 100%;
    justify-content: center;
  }

  .find-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .map-embed--big{
    height: 340px;
  }
}

@media (max-width: 420px){
  .map-embed--big{ height: 280px; }
}

@media (max-width: 768px){
  .kontakt-header h1{
    font-size: clamp(38px, 8vw, 44px);
  }
}
