:root{
      --brand:#c98b69;
      --text:#111827;
    }

    body{ color: var(--text); }

    /* ===== Header ===== */
    .site-header{ background:#fff; }

    .brand-pill{
      padding: .55rem .85rem;
      text-decoration: none;
      white-space: nowrap;
    }
    .brand-logo{
      width: 80px;
      object-fit: cover;
    }
    .brand-text{ line-height: 1.05; }
    .brand-title{
      display:block;
      font-weight: 800;
      font-size: .95rem;
      color: var(--text);
      letter-spacing: .2px;
    }
    .brand-sub{
      font-weight: 700;
      font-size: .82rem;
      opacity: .9;
    }
    .brand-desc{
      display:block;
      font-weight: 600;
      font-size: .62rem;
      opacity: .75;
      color: var(--text);
      letter-spacing: .22px;
    }

    .nav-pill{ gap: .9rem; align-items: center; }
    .nav-pill .nav-link{
      color:#0b0f17;
      font-weight: 600;
      padding: .55rem 1.05rem;
      border-radius: 999px;
      transition: background .15s ease, transform .15s ease, opacity .15s ease;
    }
    .nav-pill .nav-link:hover{ background: rgba(245, 164, 59, 0.25); }
    .nav-pill .nav-link.is-active{
      background: var(--brand);
      color:#0b2233;
      box-shadow: 0 10px 18px rgba(17,24,39,.08);
    }

    @media (max-width: 991.98px){
      .nav-pill{ gap:.35rem; align-items:flex-start; }
      .nav-pill .nav-link{ width:100%; }
    }

    /* ===== Hero ===== */
    .hero{
      padding: clamp(2.5rem, 4vw, 4rem) 0;
      background:#fff;
    }
    .hero-kicker{
      color: var(--brand);
      font-weight: 600;
      font-size: .9rem;
      letter-spacing: .2px;
      margin-bottom: .75rem;
    }
    .hero-title{
      font-weight: 800;
      line-height: 1.03;
      margin-bottom: 1rem;
      font-size: clamp(2.1rem, 2.5vw, 2.6rem);
    }
    .hero-text{
      color:#4b5563;
      line-height: 1.9;
      font-size: 1.02rem;
      max-width: 46ch;
      margin-bottom: 1.25rem;
    }
    .hero-btn{
      background: var(--brand);
      border-color: transparent;
      color:#0b2233;
      font-weight: 600;
      padding: .75rem 1.25rem;
      border-radius: .6rem;
      box-shadow: 0 10px 20px rgba(31,41,55,.12);
    }
    .hero-btn:hover{
      background:#6bbff5;
      color:#0b2233;
    }

    .hero-media{
      width:100%;
      max-width: 820px;
      margin-left:auto;
      overflow:hidden;
      background:#f3f4f6;
      border-radius: clamp(2.25rem, 5vw, 5.25rem) 1rem 1rem clamp(2.25rem, 5vw, 5.25rem);
      box-shadow: 0 18px 40px rgba(17,24,39,.10);
      aspect-ratio: 16 / 10;
    }
    .hero-media img{
      width:100%;
      height:100%;
      display:block;
      object-fit: cover;
    }

    @media (max-width: 575.98px){
      .hero-text{ max-width: 100%; }
      .hero-media{
        border-radius: 2rem 1rem 1rem 2rem;
        aspect-ratio: 4 / 3;
      }
    }
    
    

  .py-lg-6{ padding-top: 4rem; padding-bottom: 4rem; } /* маленький бонус, если нет в BS */

  .details-title{
    color: var(--brand);
    font-weight: 800;
    letter-spacing: .2px;
    font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  }

  .details-subtitle{
    color: var(--brand);
    font-weight: 800;
    font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  }

  .details-text{
    color:#374151;
    line-height: 1.85;
    font-size: 1.02rem;
    max-width: 60ch;
  }

  .media-card{
    overflow:hidden;
    background:#f3f4f6;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(17,24,39,.10);
  }
  .media-card img{
    width:100%;
    height:auto;
    display:block;
    object-fit: cover;
    aspect-ratio: 16 / 7;
  }

  /* ===== Reveal animations ===== */
  .reveal{
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity .7s ease,
      transform .75s cubic-bezier(.2,.8,.2,1);
    will-change: opacity, transform;
  }
  .reveal[data-reveal="left"]{ transform: translateX(-64px); }
  .reveal[data-reveal="right"]{ transform: translateX(64px); }

  .reveal.in-view{
    opacity: 1;
    transform: translateX(0) translateY(0);
  }

  /* На мобилке лучше “снизу вверх”, без бокового уезда */
  @media (max-width: 991.98px){
    .reveal[data-reveal="left"],
    .reveal[data-reveal="right"]{
      transform: translateY(18px);
    }
    .media-card img{ aspect-ratio: 16 / 9; }
  }

  /* Чуть воздуха как на скрине */
  .details-section{ background:#fff; }
  
  .gallery-wrap{
    width: 100%;
  }

  .gallery-viewport{
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #f3f4f6;
    box-shadow: 0 18px 40px rgba(17,24,39,.10);
  }

  /* height close to screenshot */
  .gallery-viewport{
    aspect-ratio: 21 / 9;
  }
  @media (max-width: 991.98px){
    .gallery-viewport{ aspect-ratio: 16 / 9; }
  }

  .gallery-track{
    display: flex;
    width: 100%;
    transform: translateX(0);
    transition: transform .45s cubic-bezier(.2,.8,.2,1);
    will-change: transform;
  }

  .gallery-slide{
    flex: 0 0 100%;
    position: relative;
  }

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

  /* arrows */
  .gallery-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: #e5f4ff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, opacity .15s ease;
    opacity: .95;
    user-select: none;
  }
  .gallery-arrow span{
    font-size: 42px;
    line-height: 1;
    transform: translateY(-2px);
    text-shadow: 0 8px 18px rgba(0,0,0,.45);
  }
  .gallery-arrow:hover{
    background: rgba(0,0,0,.14);
    transform: translateY(-50%) scale(1.05);
  }
  .gallery-prev{ left: 14px; }
  .gallery-next{ right: 14px; }

  /* dots */
  .gallery-dots{
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-top: 16px;
  }
  .gallery-dot{
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 0;
    background: #d1d5db;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, opacity .15s ease;
  }
  .gallery-dot:hover{ transform: scale(1.08); }
  .gallery-dot.is-active{
    background: var(--brand);
  }

  @media (prefers-reduced-motion: reduce){
    .gallery-track{ transition: none; }
    .gallery-arrow, .gallery-dot{ transition: none; }
  }
  
  .gallery-viewport{
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #f3f4f6;
  box-shadow: 0 18px 40px rgba(17,24,39,.10);
  aspect-ratio: 21 / 9;
}
@media (max-width: 991.98px){
  .gallery-viewport{ aspect-ratio: 16 / 9; }
}

.gallery-track{
  display:flex;
  width:100%;
  transform: translateX(0);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

.gallery-slide{ flex:0 0 100%; }
.gallery-slide img{ width:100%; height:100%; display:block; object-fit:cover; }

/* Стрелки как на скрине */
.gallery-arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  border:0;
  background: transparent;
  padding: 0;
  width: 60px;
  height: 60px;
  display:grid;
  place-items:center;
  cursor:pointer;

  color: var(--brand);
  font-size: 56px;
  line-height: 1;

  z-index: 10;          /* ВАЖНО: поверх слайдов */
  user-select:none;
  -webkit-tap-highlight-color: transparent;
}
.gallery-arrow:hover{ filter: brightness(.95); }
.gallery-prev{ left: 12px; }
.gallery-next{ right: 12px; }

/* чтобы клик был “точно” по стрелке */
.gallery-arrow span{
  display:block;
  transform: translateY(-2px);
  text-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.gallery-dots{
  display:flex;
  gap:10px;
  justify-content:center;
  padding-top: 16px;
}
.gallery-dot{
  width:14px; height:14px;
  border-radius:999px;
  border:0;
  background:#d1d5db;
  cursor:pointer;
}
.gallery-dot.is-active{ background: var(--brand); }

.site-footer{
    background:#fff;
  }

  .footer-title{
    color: var(--brand);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: .8rem;
  }

  .footer-text{
    color:#111827;
    opacity:.9;
    line-height: 1.75;
    font-size: .98rem;
  }

  .footer-contact .footer-link{
    color:#111827;
    text-decoration:none;
    font-weight: 600;
    opacity:.9;
  }
  .footer-contact .footer-link:hover{
    color:#111827;
    opacity:1;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .footer-ico{
    color: var(--brand);
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  /* обертка — толкаем адрес вправо на lg+ */
.footer-addr-wrap{ display:flex; }
@media (min-width: 992px){
  .footer-addr-wrap{ justify-content: flex-end; }
}

/* сам адрес — иконка рядом с текстом, компактно */
.footer-addr{
  display:flex;
  align-items:flex-start;
  gap:.6rem;
  text-align: left;      /* важно: текст внутри не “вправо”, иначе снова разнесет */
  max-width: 320px;
}

  .footer-mid-link{
    color:#374151;
    text-decoration:none;
    font-weight: 600;
    font-size: .95rem;
  }
  .footer-mid-link:hover{
    color:#111827;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .footer-mid-sep{
    margin: 0 .2rem;
    color:#374151;
    opacity:.8;
    font-weight: 600;
  }

  .footer-mid-line{
    width: 280px;
    height: 1px;
    background:#111827;
    opacity: .25;
  }

  .footer-copy{
    color:#111827;
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .15rem;
  }
  .footer-dev{
    color:#111827;
    opacity:.9;
    font-size: .95rem;
  }
  .footer-dev-link{
    color: var(--brand);
    font-weight: 800;
    text-decoration:none;
  }
  .footer-dev-link:hover{
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* spacing like screenshot */
  .footer-top{ padding-top: .25rem; }
  
  .section-title{
    color: var(--brand);
    font-weight: 800;
    letter-spacing: .2px;
    font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  }

  /* общая анимация подъёма */
  .svc-hover{
    transform: translateY(0);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    will-change: transform;
    -webkit-tap-highlight-color: transparent;
  }
  .svc-hover:hover{
    transform: translateY(-6px);
  }
  /* на телефоне при тапе/фокусе тоже поднимаем */
  .svc-hover:active,
  .svc-hover:focus-visible{
    transform: translateY(-6px);
  }

  /* большие карточки */
  .svc-card{
    display:block;
    text-decoration:none;
    background: #fff4eaa1;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 10px 18px rgba(17,24,39,.08);
    height: 100%;
  }
  .svc-card:hover{ box-shadow: 0 14px 24px rgba(17,24,39,.12); }

  .svc-img{
    overflow:hidden;
    border-radius: 10px;
    background:#e5e7eb;
    aspect-ratio: 16 / 9;
  }
  .svc-img img{
    width:100%;
    height:100%;
    object-fit: cover;
    display:block;
  }

  .svc-body{ padding: 14px 6px 2px; }
  .svc-title{
    color: #111827;
    font-weight: 800;
    font-size: 1.05rem;
  }

  /* мини карточки */
  .svc-mini{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
    gap: 14px;
    text-decoration:none;
    background: #fff4eaa1;
    border-radius: 10px;
    padding: 26px 18px;
    box-shadow: 0 10px 18px rgba(17,24,39,.08);
    text-align:center;
    height: 100%;
    min-height: 140px;
  }
  .svc-mini:hover{ box-shadow: 0 14px 24px rgba(17,24,39,.12); }

  .svc-ico{ color: var(--brand); opacity: .95; }
  .svc-mini-title{
    color:#111827;
    font-weight: 800;
    font-size: 1.04rem;
  }

  @media (prefers-reduced-motion: reduce){
    .svc-hover{ transition:none; }
  }
  
  .section-title{
    color: var(--brand);
    font-weight: 800;
    letter-spacing: .2px;
    font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  }

  /* та же анимация "легкий подъем" */
  .svc-hover{
    transform: translateY(0);
    transition: transform .18s ease, box-shadow .18s ease;
    will-change: transform;
    -webkit-tap-highlight-color: transparent;
  }
  .svc-hover:hover{ transform: translateY(-6px); }
  .svc-hover:active,
  .svc-hover:focus-visible{ transform: translateY(-6px); }

  /* карточки как на скрине */
  .svc-mini{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
    gap: 14px;
    text-decoration:none;
    background: #fff4eaa1;
    border-radius: 10px;
    padding: 28px 18px;
    box-shadow: 0 10px 18px rgba(17,24,39,.08);
    text-align:center;
    height: 100%;
    min-height: 140px;
  }
  .svc-mini:hover{ box-shadow: 0 14px 24px rgba(17,24,39,.12); }

  .svc-ico{ color: var(--brand); opacity: .95; }
  .svc-mini-title{
    color:#111827;
    font-weight: 800;
    font-size: 1.05rem;
    max-width: 30ch;
  }

  /* большой текстовый блок */
  .svc-note{
    background: #fff4eaa1;
    border-radius: 10px;
    padding: 22px 22px;
    box-shadow: 0 10px 18px rgba(17,24,39,.08);
    text-align:center;
  }
  .svc-note:hover{ box-shadow: 0 14px 24px rgba(17,24,39,.12); }

  .svc-note-text{
    color:#374151;
    line-height: 1.95;
    font-size: 1.02rem;
    margin: 0 auto;
    max-width: 120ch;
  }

  @media (prefers-reduced-motion: reduce){
    .svc-hover{ transition:none; }
  }


  .branchen-box{
    background:#fff4eaa1;
    border-radius: 10px;
    box-shadow: 0 10px 18px rgba(17,24,39,.08);
    padding: 26px 20px;
  }

  .branchen-list{
    margin: 0;
    padding-left: 1.8rem; /* чтобы маркеры как на скрине */
  }

  .branchen-list li{
    margin: 8px 0;
  }

  .branchen-item{
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    transition: background .15s ease, color .15s ease, transform .15s ease;
  }

  /* hover как на 2-м скрине */
  .branchen-item:hover,
  .branchen-item:focus-visible{
    background: #86d2ff;
    color: #ffffff;
    transform: translateX(2px);
  }

  /* на телефоне при тапе тоже подсветка */
  .branchen-item:active{
    background: #86d2ff;
    color: #ffffff;
  }
  
  /* Jobs block */
.jobs-title{
  font-weight: 800;
  color: #c98b69; /* как на примере */
  letter-spacing: .2px;
}

/* Card */
.job-card{
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(20, 60, 90, .10);
  transition: transform .22s ease, box-shadow .22s ease;
  will-change: transform;
}

/* Hover lift */
.job-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(20, 60, 90, .16);
}

.job-card-img{
  height: 230px;
  background: #f2f6fb;
}

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

/* Body */
.job-card-body{
  background: #fff4eaa1;     /* нежный голубой */
  padding: 26px 22px 28px;
  text-align: center;
}

.job-card-name{
  font-size: 26px;
  font-weight: 800;
  color: #1f2b3a;
  margin-bottom: 10px;
}

.job-card-text{
  color: #4c5a6a;
  line-height: 1.5;
  margin: 0 auto 18px;
  max-width: 28ch;
}

/* Button */
.job-card-btn{
  background: #c98b69;
  color: #08324a;
  font-weight: 700;
  border-radius: 12px;
  padding: 10px 22px;
  border: 0;
  box-shadow: 0 8px 16px rgba(20, 60, 90, .12);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.job-card-btn:hover{
  filter: brightness(0.98);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(20, 60, 90, .16);
}

/* ========== BENEFITS ========== */
.benefits .section-title{
  color: #c98b69;
  font-weight: 800;
}

.benefit-card{
  background: #fff4eaa1;
  border-radius: 16px;
  padding: 34px 26px;
  text-align: center;
  border: 1px solid rgba(140, 215, 255, .35);
  box-shadow: 0 10px 26px rgba(20, 60, 90, .10);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
  will-change: transform;
}

.benefit-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(20, 60, 90, .16);
  filter: brightness(0.995);
}

.benefit-ico{
  width: 74px;
  height: 74px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: #c98b69;
}

.benefit-ico svg{
  width: 44px;
  height: 44px;
  stroke: currentColor;
}

.benefit-title{
  font-size: 24px;
  font-weight: 800;
  color: #1f2b3a;
  margin: 0 0 12px;
}

.benefit-text{
  color: #4c5a6a;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 46ch;
}

/* ===== Werkvertrag CTA + AGB ===== */
.contract-cta{
  background: #fff;
}

.cta-head{
  max-width: 980px;
  margin: 0 auto;
}

.cta-title{
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 46px);
  color: #1f2b3a;
  margin-bottom: 10px;
}

.cta-subtitle{
  font-size: clamp(16px, 1.2vw, 22px);
  color: #5a6a7a;
  line-height: 1.6;
  margin: 0 auto 22px;
  max-width: 900px;
}

/* button */
.cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  border-radius: 12px;
  background: #c98b69;
  color: #0b2f43;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(20, 60, 90, .14);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.cta-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(20, 60, 90, .18);
  filter: brightness(0.99);
  text-decoration: none;
  color: #0b2f43;
}

.cta-btn-ico{
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,.35);
  color: #0b2f43;
}

/* AGB title */
.agb-title{
  font-weight: 900;
  color: #c98b69;
  font-size: clamp(30px, 3vw, 44px);
  margin-bottom: 18px;
}

/* AGB box */
.agb-box{
  background: #f3f4f6;
  border-radius: 14px;
  padding: 26px 28px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 14px 40px rgba(20, 60, 90, .10);
}

.agb-h{
  font-weight: 900;
  font-size: 26px;
  color: #0f1720;
  margin: 0 0 12px;
}

.agb-p{
  font-size: 18px;
  color: #0f1720;
  line-height: 1.75;
  margin: 0 0 12px;
}

.agb-p:last-child{
  margin-bottom: 0;
}

/* ===== CONTACT BLOCK ===== */
.contact-title{
  font-weight: 900;
  color: #c98b69;
  font-size: clamp(44px, 5vw, 64px);
  margin-bottom: 10px;
}

.contact-subtitle{
  color: #5a6a7a;
  font-size: clamp(16px, 1.25vw, 22px);
  line-height: 1.6;
  max-width: 980px;
  margin: 0 auto;
}

/* left info */
.contact-info{
  display: grid;
  gap: 26px;
  padding-top: 12px;
}

.contact-item{
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-ico{
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: #c98b69;
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(20, 60, 90, .12);
  flex: 0 0 64px;
}

.contact-label{
  font-weight: 900;
  font-size: 24px;
  color: #1f2b3a;
  margin-bottom: 6px;
}

.contact-text{
  color: #5a6a7a;
  font-size: 18px;
  line-height: 1.55;
}

.contact-link{
  color: #5a6a7a;
  text-decoration: none;
}

.contact-link:hover{
  text-decoration: underline;
}

/* right card */
.contact-card{
  background: #ffffff;
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 18px 55px rgba(20, 60, 90, .10);
}

.contact-card-title{
  font-weight: 900;
  font-size: 34px;
  color: #1f2b3a;
  margin-bottom: 22px;
}

/* inputs */
.contact-input{
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 18px;
  border: 1px solid #d6dde7;
  box-shadow: none !important;
}

.contact-input:focus{
  border-color: rgba(129, 211, 255, .9);
  box-shadow: 0 0 0 .2rem rgba(129, 211, 255, .25) !important;
}

.contact-textarea{
  min-height: 170px;
  resize: vertical;
}

/* button */
.contact-send{
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 20px;
  font-weight: 900;
  background: #c98b69;
  color: #0b2f43;
  box-shadow: 0 14px 30px rgba(20, 60, 90, .14);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.contact-send:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(20, 60, 90, .18);
  filter: brightness(.99);
}

/* mobile spacing */
@media (max-width: 991.98px){
  .contact-card{ padding: 26px; }
  .contact-card-title{ font-size: 28px; }
}

/* ===== OUR SERVICES GRID ===== */
.services-grid-title{
  color: #c98b69;
  font-weight: 900;
  font-size: clamp(34px, 3.6vw, 56px);
}

/* card */
.service-box{
  display: block;
  text-decoration: none;
  background: #fff4eaa1;
  border-radius: 18px;
  padding: 18px 18px 26px;
  box-shadow: 0 10px 26px rgba(20, 60, 90, .10);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
  will-change: transform;
  height: 100%;
}

.service-box:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(20, 60, 90, .16);
  filter: brightness(0.995);
}

.service-img{
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(140, 215, 255, .9); /* голубая рамка как на скрине */
  background: #fff;
  height: 190px;
}

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

/* title + text */
.service-name{
  margin: 22px 0 10px;
  font-weight: 900;
  font-size: 26px;
  color: #1f2b3a;
  text-align: center;
}

.service-text{
  margin: 0 auto;
  max-width: 40ch;
  color: #4c5a6a;
  font-size: 18px;
  line-height: 1.65;
  text-align: center;
}

/* keep hover color stable */
.service-box:hover .service-name,
.service-box:hover .service-text{
  color: inherit;
}

/* ===== Contact hero top ===== */
.contact-hero-title{
  font-weight: 900;
  color: #1f2b3a;
  font-size: clamp(34px, 3.4vw, 54px);
  margin-bottom: 8px;
}

.contact-hero-sub{
  color: #5a6a7a;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1.6;
  max-width: 980px;
  margin: 0 auto 18px;
}

/* button (если уже есть — можно оставить один общий стиль) */
.cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  border-radius: 12px;
  background: #c98b69;
  color: #0b2f43;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(20, 60, 90, .14);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.cta-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(20, 60, 90, .18);
  filter: brightness(0.99);
  color: #0b2f43;
  text-decoration: none;
}
.cta-btn-ico{
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,.35);
  color: #0b2f43;
}

/* ===== Big person block ===== */
.contact-person{
  background: #fff4eaa1;
  border-radius: 14px;
  padding: 46px 26px 44px;
  text-align: center;
  box-shadow: 0 18px 55px rgba(20, 60, 90, .12);
}

/* avatar circle */
.person-avatar{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 3px solid rgba(140, 215, 255, .95);
  box-shadow: 0 10px 26px rgba(20, 60, 90, .14);
  background: #fff;
}
.person-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.person-title{
  font-weight: 900;
  font-size: 26px;
  color: #1f2b3a;
  margin-bottom: 2px;
}

.person-name{
  font-weight: 800;
  font-size: 22px;
  color: #5a6a7a;
  margin-bottom: 18px;
}

.person-text{
  color: #4c5a6a;
  font-size: 18px;
  line-height: 1.75;
  max-width: 1200px;
  margin: 0 auto;
}

/* mobile */
@media (max-width: 575.98px){
  .contact-person{ padding: 34px 18px 34px; }
  .person-title{ font-size: 22px; }
  .person-name{ font-size: 20px; }
  .person-text{ font-size: 16.5px; }
}

/* ===== MAP BLOCK (free OSM) ===== */
.map-wrap{
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 55px rgba(20, 60, 90, .12);
}

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

.map-link{
  color: #5a6a7a;
  text-decoration: none;
  font-weight: 700;
}
.map-link:hover{ text-decoration: underline; }

@media (max-width: 575.98px){
  .map-iframe{ height: 360px; }
}

/* ===== IMPRESSUM ===== */
.impressum-title{
  color: #c98b69;
  font-weight: 900;
  font-size: clamp(40px, 4.5vw, 64px);
  margin: 0;
}

.impressum-wrap{
  max-width: 980px;   /* ширина центральной колонки */
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

/* cards */
.im-card{
  background: #fff4eaa1;
  border-radius: 18px;
  padding: 28px 30px;
  box-shadow: 0 18px 55px rgba(20, 60, 90, .12);
}

.im-h{
  font-weight: 900;
  font-size: 26px;
  color: #0f1720;
  margin: 0 0 10px;
}

.im-p{
  color: #1f2b3a;
  font-size: 18px;
  line-height: 1.65;
}

/* mobile */
@media (max-width: 575.98px){
  .im-card{ padding: 22px 18px; }
  .im-h{ font-size: 22px; }
  .im-p{ font-size: 16.5px; }
}

/* ===== DATENSCHUTZ ===== */
.privacy-title{
  color: #c98b69;
  font-weight: 900;
  font-size: clamp(38px, 4.3vw, 62px);
  margin: 0;
}

.privacy-wrap{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.privacy-card{
  background: #fff4eaa1;
  border-radius: 18px;
  padding: 28px 34px;
  box-shadow: 0 18px 55px rgba(20, 60, 90, .12);
}

.privacy-h{
  font-weight: 900;
  font-size: 28px;
  color: #0f1720;
  margin: 0 0 10px;
}

.privacy-p{
  color: #2f3a4a;
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
}

.privacy-p strong{
  font-weight: 900;
  color: #0f1720;
}

/* mobile */
@media (max-width: 575.98px){
  .privacy-card{ padding: 22px 18px; }
  .privacy-h{ font-size: 22px; }
  .privacy-p{ font-size: 16.5px; }
}

