/* TÜRAUF Schlüsseldienst Köln — style.css */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/montserrat-600.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/montserrat-700.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/montserrat-800.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/fonts/montserrat-900.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/barlow-400.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/barlow-500.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/barlow-600.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/barlow-700.woff2") format("woff2");
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #FAFAF8; }
body {
  font-family: Barlow, Helvetica, Arial, sans-serif;
  color: #16181A;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: #16181A; text-decoration: none; }
a:hover { color: #E8A317; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

@keyframes turauf-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 178, 29, .55); }
  50% { box-shadow: 0 0 0 14px rgba(245, 178, 29, 0); }
}
@keyframes turauf-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.kicker {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #A08A55;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E7E4DC;
}
.site-header .wrap {
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-header .logo-link { display: flex; align-items: center; flex: none; }
.site-header .logo {
  height: 54px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}
.site-header .spacer { flex: 1; }
.site-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
}
.btn-call-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #16181A;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .01em;
  white-space: nowrap;
}
.btn-call-header:hover { background: #F5B21D; color: #16181A; }
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F5B21D;
  animation: turauf-pulse 2s infinite;
}
.btn-call-header:hover .pulse-dot { background: #16181A; }
.btn-whatsapp {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  flex: none;
}
.btn-whatsapp:hover { background: #1DA851; color: #fff; }

/* ---------- Hero ---------- */
.hero {
  background: #FAFAF8;
  border-bottom: 1px solid #E7E4DC;
}
.hero .wrap {
  padding: 76px 28px 84px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
}
.hero-copy { animation: turauf-rise .5s ease both; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFF3D6;
  border: 1px solid #F5D98C;
  color: #8A5E00;
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F5B21D;
}
.hero h1 {
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 68px;
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: 22px 0 0;
  text-wrap: balance;
}
.hero h1 .gold { color: #F5B21D; }
.hero-lead {
  font-size: 20px;
  line-height: 1.55;
  color: #4A4E54;
  max-width: 30em;
  margin: 22px 0 0;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  border-radius: 12px;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 20px;
  min-height: 44px;
}
.btn-primary { background: #F5B21D; color: #16181A; }
.btn-primary:hover { background: #16181A; color: #F5B21D; }
.btn-dark {
  gap: 10px;
  padding: 18px 28px;
  background: #16181A;
  color: #fff;
  font-size: 18px;
}
.btn-dark:hover { background: #25D366; color: #16181A; }
.btn-outline {
  padding: 18px 28px;
  border: 2px solid #16181A;
  font-size: 18px;
}
.btn-outline:hover { background: #16181A; color: #fff; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 34px;
  font-weight: 600;
  color: #4A4E54;
  font-size: 15px;
}
.trust-list li { display: flex; align-items: center; gap: 9px; }
.trust-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #16181A;
  color: #F5B21D;
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex: none;
}

.hero-card {
  background: #fff;
  border: 1px solid #E7E4DC;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 24px 60px -30px rgba(20, 22, 25, .28);
}
.hero-card-title {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 19px;
}
.hero-card hr {
  border: none;
  height: 1px;
  background: #EFEBE2;
  margin: 18px 0;
}
.hero-card-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  font-size: 16px;
}
.hero-card-row dt { color: #6A6F76; font-weight: 400; }
.hero-card-row dd { font-weight: 700; margin: 0; }
.hero-card-note {
  background: #FAF7EF;
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 15px;
  line-height: 1.5;
  color: #4A4E54;
}

/* ---------- Section headings ---------- */
section h2 {
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  letter-spacing: -.02em;
  margin: 0;
}
.h2-lg { font-size: 44px; margin-top: 12px; }
.h2-md { font-size: 40px; }

/* ---------- Services ---------- */
.services-section { padding: 84px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.service-card {
  background: #fff;
  border: 1px solid #E7E4DC;
  border-radius: 16px;
  padding: 26px 24px 28px;
}
.service-card:hover { border-color: #F5B21D; }
.service-bar {
  width: 40px;
  height: 4px;
  background: #F5B21D;
  border-radius: 2px;
}
.service-title {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 21px;
  margin-top: 18px;
}
.service-text {
  color: #5A5F66;
  font-size: 16px;
  line-height: 1.55;
  margin: 10px 0 0;
  text-wrap: pretty;
}

/* ---------- Prices ---------- */
.prices-section {
  background: #fff;
  border-top: 1px solid #E7E4DC;
  border-bottom: 1px solid #E7E4DC;
}
.prices-section .wrap {
  padding: 84px 28px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.prices-intro p {
  color: #5A5F66;
  font-size: 17px;
  line-height: 1.6;
  margin: 16px 0 0;
  text-wrap: pretty;
}
.price-box {
  background: #16181A;
  color: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-top: 26px;
}
.price-box-title {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #F5B21D;
}
.price-box p {
  color: #C3C7CC;
  font-size: 15px;
  line-height: 1.55;
  margin: 10px 0 0;
}
.tariff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tariff-card {
  background: #fff;
  border: 1px solid #E7E4DC;
  border-radius: 16px;
  overflow: hidden;
}
.tariff-head {
  background: #16181A;
  color: #F5B21D;
  padding: 13px 20px;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .01em;
}
.tariff-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid #EFEBE2;
}
.tariff-row:last-child { border-bottom: none; }
.tariff-row .label { font-weight: 600; font-size: 16px; }
.tariff-row .price {
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 24px;
  white-space: nowrap;
}
.extras {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  padding: 16px 20px;
  background: #FAF7EF;
  border: 1px solid #E7E4DC;
  border-radius: 14px;
}
.extras li { font-size: 16px; font-weight: 600; }
.extras .price { font-family: Montserrat, sans-serif; font-weight: 900; }
.price-foot {
  padding: 18px 26px;
  background: #FAF7EF;
  color: #6A6F76;
  font-size: 14px;
}

/* ---------- Steps ---------- */
.steps-section { padding: 84px 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.step { display: flex; flex-direction: column; gap: 14px; }
.step-top { display: flex; align-items: center; gap: 14px; }
.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #F5B21D;
  color: #16181A;
  display: grid;
  place-items: center;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 20px;
  flex: none;
}
.step-line { flex: 1; height: 2px; background: #E7E4DC; }
.step-title { font-family: Montserrat, sans-serif; font-weight: 800; font-size: 22px; }
.step-text { color: #5A5F66; font-size: 16px; line-height: 1.55; margin: 0; text-wrap: pretty; }

/* ---------- Area ---------- */
.area-section { background: #F1EEE6; }
.area-section .wrap { padding: 76px 28px; }
.area-section h2 { font-size: 40px; }
.area-section p {
  color: #5A5F66;
  font-size: 17px;
  line-height: 1.6;
  margin: 14px 0 0;
  max-width: 46em;
}
.district-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.district-list li {
  background: #fff;
  border: 1px solid #E0DCD2;
  border-radius: 999px;
  padding: 9px 17px;
  font-weight: 600;
  font-size: 15px;
}

/* ---------- Reviews ---------- */
.reviews-section { padding: 84px 0; }
.reviews-section h2 { font-size: 40px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.review-card {
  background: #fff;
  border: 1px solid #E7E4DC;
  border-radius: 16px;
  padding: 26px;
}
.review-stars { color: #F5B21D; font-size: 18px; letter-spacing: 3px; }
.review-text { font-size: 17px; line-height: 1.6; margin: 14px 0 0; text-wrap: pretty; }
.review-name { color: #6A6F76; font-size: 15px; margin-top: 16px; font-weight: 600; }

/* ---------- Team / about ---------- */
.team-section { background: #fff; border-top: 1px solid #E7E4DC; }
.team-section .wrap {
  padding: 84px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.team-section h2 { font-size: 40px; margin-top: 12px; }
.team-section p {
  color: #5A5F66;
  font-size: 17px;
  line-height: 1.65;
  margin: 16px 0 0;
  text-wrap: pretty;
}
.team-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
}

/* ---------- FAQ ---------- */
.faq-section { max-width: 900px; margin: 0 auto; padding: 84px 28px; }
.faq-section h2 { font-size: 40px; margin-bottom: 28px; }
.faq-item {
  background: #fff;
  border: 1px solid #E7E4DC;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 12px;
}
.faq-item[open] { border-color: #F5B21D; }
.faq-item summary {
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-question {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 19px;
}
.faq-sign {
  color: #F5B21D;
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  flex: none;
}
.faq-item[open] .faq-sign-plus { display: none; }
.faq-sign-minus { display: none; }
.faq-item[open] .faq-sign-minus { display: inline; }
.faq-answer {
  color: #5A5F66;
  font-size: 17px;
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 52em;
  text-wrap: pretty;
}

/* ---------- Final CTA ---------- */
.final-cta { background: #16181A; color: #fff; }
.final-cta .wrap {
  padding: 72px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.final-cta h2 { font-size: 40px; }
.final-cta p { color: #C3C7CC; font-size: 18px; margin: 12px 0 0; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.btn-ghost:hover { background: #25D366; color: #16181A; border-color: #25D366; }
.btn-call-final {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F5B21D;
  color: #16181A;
  padding: 22px 38px;
  border-radius: 14px;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 26px;
}
.btn-call-final:hover { background: #fff; color: #16181A; }

/* ---------- Footer ---------- */
.site-footer { background: #0F1113; color: #8A9096; padding: 40px 28px; }
.footer-top {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-brand strong {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 16px;
}
.footer-brand a { color: #8A9096; }
.footer-brand a:hover { color: #F5B21D; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: #8A9096; }
.footer-legal {
  max-width: 1220px;
  margin: 22px auto 0;
  font-size: 13px;
  line-height: 1.6;
  color: #6A7076;
}

/* ---------- Sticky mobile call bar ---------- */
.sticky-call-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: #F5B21D;
  color: #16181A;
  transform: translateY(100%);
  transition: transform .25s ease;
}
.sticky-call-bar.is-visible { transform: translateY(0); }
.sticky-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 64px;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #16181A;
}

/* ---------- Simple legal pages ---------- */
.legal-section { max-width: 820px; margin: 0 auto; padding: 64px 28px 96px; }
.legal-section h1 {
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -.02em;
  margin: 0 0 28px;
}
.legal-section h2 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin: 36px 0 12px;
}
.legal-section h3 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 22px 0 10px;
}
.legal-section p, .legal-section li {
  color: #4A4E54;
  font-size: 16px;
  line-height: 1.65;
}
.legal-section ul { margin: 0 0 16px; padding-left: 22px; list-style: disc; }
.legal-section ul li { margin-bottom: 8px; }
.legal-section ul.index {
  list-style: none;
  padding-left: 0;
  background: #FAF7EF;
  border: 1px solid #E7E4DC;
  border-radius: 12px;
  padding: 18px 22px;
}
.legal-section ul.index li { margin-bottom: 6px; }
.legal-section a { color: #A08A55; text-decoration: underline; }
.legal-section p.seal { font-size: 13px; color: #8A8F96; margin-top: 32px; }
.legal-back { display: inline-block; margin-bottom: 24px; font-weight: 600; }

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .wrap { padding-left: 20px; padding-right: 20px; }

  .site-nav { display: none; }
  .btn-call-header span:last-child { display: none; }
  .site-header .wrap { gap: 14px; }

  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px 48px;
  }
  .hero h1 { font-size: clamp(38px, 9vw, 68px); }
  .hero-lead { font-size: 18px; }
  .hero-ctas .btn { flex: 1 1 100%; justify-content: center; }

  section.services-section .wrap,
  .prices-section .wrap,
  .steps-section .wrap,
  .area-section .wrap,
  .reviews-section .wrap,
  .team-section .wrap,
  .final-cta .wrap {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .h2-lg { font-size: 32px; }
  .h2-md { font-size: 28px; }

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

  .prices-section .wrap { grid-template-columns: 1fr; gap: 32px; }
  .tariff-grid { grid-template-columns: 1fr; }

  .team-section .wrap { grid-template-columns: 1fr; }
  .team-section .wrap > img { order: -1; }

  .final-cta .wrap { justify-content: center; text-align: center; }
  .btn-call-final { font-size: 22px; padding: 18px 30px; }

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

  /* Sticky call bar takes over on mobile; hide header call button to avoid duplicate emphasis */
  .sticky-call-bar { display: block; }
  body { padding-bottom: 64px; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: clamp(34px, 10vw, 52px); }
  .badge { font-size: 12px; }
}
