/* ==========================================================================
   Ordnungskommando — City / Location (section-specific styles)
   --------------------------------------------------------------------------
   Reuses the global system (.ord-section, .ord-card, .ord-btn, .ord-icon)
   and only adds what is unique here, scoped by .cs-* classes.

   Inner content width is capped at 1350px (.cs-container) per the design.

   Sections
     cs-hero   1  Hero — dark city photo band + title + highlights checklist
   ========================================================================== */

/* Local container — 1350px max width, shares the global gutter token. */
.cs-container {
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: var(--ord-gutter);
}

/* ==========================================================================
   SECTION 1 — Hero
   ========================================================================== */
.cs-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
}

/* ---- Dark photo band ---------------------------------------------------- */
.cs-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.cs-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 72px;
}

/* ---- Breadcrumb --------------------------------------------------------- */
.cs-hero__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.75);
}
.cs-hero__crumbs a {
  color: rgba(255, 255, 255, 0.75);
}
.cs-hero__crumbs a:hover {
  color: #fff;
}
.cs-hero__crumbs .is-current {
  color: #fff;
  font-weight: var(--ord-fw-medium);
}

/* ---- Title -------------------------------------------------------------- */
.cs-hero__title {
  color: #fff;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: var(--ord-lh-heading);
  max-width: 14ch;
  margin: 0;
}

/* ---- Checklist ---------------------------------------------------------- */
.cs-hero__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cs-hero__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
}
.cs-hero__list .ord-icon {
  color: var(--ord-primary);
  font-size: 22px;
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION 2 — Districts + intro
   ========================================================================== */

/* ---- Row 1: district pills ---------------------------------------------- */
.cs-districts__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.cs-districts__pill {
  padding: 10px 18px;
  border: 1px solid var(--ord-border);
  border-radius: var(--ord-radius-pill);
  font-size: 14px;
  font-weight: var(--ord-fw-medium);
  color: var(--ord-heading);
  background: var(--ord-white);
}
.cs-districts__pill--accent {
  border-color: var(--ord-primary);
  color: var(--ord-primary);
}

/* ---- Row 2: two-column intro -------------------------------------------- */
.cs-help {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 72px;
}
.cs-help__left p {
  color: var(--ord-muted);
  margin: 18px 0 28px;
}
.cs-help__right p {
  color: var(--ord-muted);
  margin-top: 18px;
}

/* ==========================================================================
   SECTION 3 — Services grid
   ========================================================================== */
.cs-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.cs-service {
  padding: 30px 26px;
}
.cs-service .ord-icon-chip {
  margin-bottom: 22px;
}
.cs-service__title {
  font-size: 18px;
  line-height: 1.35;
  color: var(--ord-heading);
  margin: 0 0 12px;
}
.cs-service p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ord-muted);
  margin: 0;
}

/* ==========================================================================
   SECTION 4 — Why You Choose (dark)
   ========================================================================== */
.cs-s4 {
  position: relative;
  overflow: hidden;
}

/* Faint bear-shield watermark anchored to the right edge. */
.cs-why__watermark {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  width: clamp(280px, 38vw, 520px);
  height: auto;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.cs-why__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

/* ---- Left column -------------------------------------------------------- */
.cs-why__title {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: var(--ord-lh-heading);
  color: #fff;
  margin: 0 0 20px;
}
.cs-why__accent {
  color: var(--ord-primary);
}
.cs-why__lead {
  color: var(--ord-on-dark-muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 28px;
  max-width: 46ch;
}

/* Proof — avatars + rating in a white pill on the dark band. */
.cs-why__proof {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  border-radius: var(--ord-radius-pill);
  background: #fff;
}
.cs-why__avatars {
  display: inline-flex;
}
.cs-why__avatars span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-left: -10px;
  border-radius: var(--ord-radius-pill);
  border: 2px solid #fff;
  font-size: 13px;
  font-weight: var(--ord-fw-semibold);
  color: #fff;
}
.cs-why__avatars span:first-child { margin-left: 0; }
.cs-why__avatars span:nth-child(1) { background: #c1272d; }
.cs-why__avatars span:nth-child(2) { background: #7f1718; }
.cs-why__avatars span:nth-child(3) { background: #3a1010; }
.cs-why__avatars span:nth-child(4) { background: #1b1b1b; }

.cs-why__proof-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cs-why__proof-meta .ord-stars {
  font-size: 14px;
}
.cs-why__proof-text {
  font-size: 13px;
  color: var(--ord-muted);
}
.cs-why__proof-text strong {
  color: var(--ord-heading);
  font-weight: var(--ord-fw-semibold);
}

/* ---- Right column: 2×2 dark feature cards ------------------------------- */
.cs-why__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.cs-why__card {
  padding: 28px;
  background: var(--ord-dark-card);
  border: 1px solid var(--ord-border-dark);
  border-radius: var(--ord-radius);
  transition: transform var(--ord-dur) var(--ord-ease),
    border-color var(--ord-dur) var(--ord-ease);
}
.cs-why__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
}
.cs-why__card .ord-icon-chip {
  margin-bottom: 20px;
}
.cs-why__card-title {
  font-size: 18px;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 10px;
}
.cs-why__card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ord-on-dark-muted);
  margin: 0;
}

/* ==========================================================================
   SECTION 5 — Contact (info + inquiry form)
   ========================================================================== */
.cs-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}

/* ---- Left: contact info ------------------------------------------------- */
.cs-contact__title {
  margin: 16px 0 16px;
}
.cs-contact__lead {
  color: var(--ord-muted);
  margin: 0 0 32px;
  max-width: 44ch;
}

.cs-contact__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cs-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--ord-surface-soft);
  border: 1px solid var(--ord-border-soft);
  border-radius: var(--ord-radius);
}
.cs-info__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cs-info__label {
  font-size: 13px;
  font-weight: var(--ord-fw-semibold);
  color: var(--ord-heading);
}
.cs-info__value {
  font-size: 14px;
  color: var(--ord-muted);
}
a.cs-info__value:hover {
  color: var(--ord-primary);
}

/* ---- Right: inquiry form ------------------------------------------------ */
.cs-contact__form-wrap {
  background: var(--ord-surface-soft);
  border: 1px solid var(--ord-border-soft);
  border-radius: var(--ord-radius-lg);
  padding: 36px;
}
.cs-form__title {
  font-size: var(--ord-fs-h4);
  margin: 0 0 8px;
}
.cs-form__note {
  font-size: 14px;
  color: var(--ord-muted);
  margin: 0 0 26px;
}

.cs-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cs-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cs-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-field > label,
.cs-field__label {
  font-size: 14px;
  font-weight: var(--ord-fw-semibold);
  color: var(--ord-heading);
}

.cs-field input,
.cs-field textarea,
.cs-select {
  width: 100%;
  font-family: var(--ord-font-body);
  font-size: 15px;
  color: var(--ord-heading);
  background: var(--ord-white);
  border: 1px solid var(--ord-border);
  border-radius: var(--ord-radius-sm);
  padding: 13px 16px;
  transition: border-color var(--ord-dur) var(--ord-ease),
    box-shadow var(--ord-dur) var(--ord-ease);
}
.cs-field textarea {
  resize: vertical;
  min-height: 110px;
}
.cs-field input::placeholder,
.cs-field textarea::placeholder {
  color: var(--ord-muted-2);
}
.cs-field input:focus,
.cs-field textarea:focus,
.cs-select:focus {
  outline: none;
  border-color: var(--ord-primary);
  box-shadow: 0 0 0 3px var(--ord-primary-soft);
}

/* Native select — chevron via background image. */
.cs-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

/* ---- Project tags (toggle chips) ---------------------------------------- */
.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cs-tag {
  cursor: pointer;
}
.cs-tag input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cs-tag span {
  display: inline-block;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: var(--ord-fw-medium);
  color: var(--ord-heading);
  background: var(--ord-white);
  border: 1px solid var(--ord-border);
  border-radius: var(--ord-radius-pill);
  transition: border-color var(--ord-dur) var(--ord-ease),
    color var(--ord-dur) var(--ord-ease),
    background-color var(--ord-dur) var(--ord-ease);
}
.cs-tag:hover span {
  border-color: var(--ord-primary);
}
.cs-tag input:checked + span {
  color: var(--ord-primary);
  border-color: var(--ord-primary);
  background: var(--ord-primary-soft);
}
.cs-tag input:focus-visible + span {
  box-shadow: 0 0 0 3px var(--ord-primary-soft);
}

.cs-form__submit {
  margin-top: 6px;
}

/* ==========================================================================
   SECTION 6 — Project steps (horizontal numbered timeline)
   ========================================================================== */
.cs-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin-top: 8px;
}

/* Connecting line behind the circles — spans between the first and last
   circle centers (each column is 20% wide → centers sit at 10% / 90%). */
.cs-steps__line {
  position: absolute;
  top: 26px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(193, 39, 45, 0.25);
  z-index: 0;
}

.cs-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cs-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--ord-radius-pill);
  background: var(--ord-primary);
  color: #fff;
  font-weight: var(--ord-fw-bold);
  font-size: 18px;
  margin-bottom: 18px;
  /* Blush ring masks the line so it appears to connect circle-to-circle. */
  box-shadow: 0 0 0 6px var(--ord-blush);
}
.cs-step__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-step__title {
  font-family: var(--ord-font-heading);
  font-size: 16px;
  font-weight: var(--ord-fw-semibold);
  color: var(--ord-heading);
}
.cs-step__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ord-muted);
}

.cs-steps__note {
  text-align: center;
  font-weight: var(--ord-fw-medium);
  color: var(--ord-heading);
  margin: 48px 0 0;
}

/* ==========================================================================
   SECTION 7 — About the team (copy + 3-image collage)
   ========================================================================== */
.cs-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.cs-about__title {
  font-size: clamp(28px, 3vw, 40px);
  line-height: var(--ord-lh-heading);
  margin: 16px 0 18px;
}
.cs-about__content p {
  color: var(--ord-muted);
  margin-bottom: 18px;
}
.cs-about__list {
  margin-top: 26px;
}

/* ---- Collage — two stacked images + one tall image spanning both rows. -- */
.cs-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 440px;
}
.cs-collage__item {
  margin: 0;
  border-radius: var(--ord-radius);
  overflow: hidden;
}
.cs-collage__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cs-collage__item--c {
  grid-column: 2;
  grid-row: 1 / 3;
}

/* ==========================================================================
   SECTION 8 — Berlin coverage (stat cards)
   ========================================================================== */
.cs-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.cs-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 26px;
  background: var(--ord-surface-soft);
  border: 1px solid var(--ord-border-soft);
  border-radius: var(--ord-radius);
}
.cs-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: var(--ord-radius-pill);
  background: var(--ord-white);
  color: var(--ord-primary);
  font-size: 18px;
  box-shadow: var(--ord-shadow-sm);
}
.cs-stat__num {
  font-family: var(--ord-font-heading);
  font-size: 24px;
  font-weight: var(--ord-fw-bold);
  color: var(--ord-heading);
}
.cs-stat__label {
  font-size: 13px;
  color: var(--ord-muted);
}

/* ==========================================================================
   SECTION 10 — Customer reviews
   ========================================================================== */
.cs-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.cs-review {
  position: relative;
  padding: 28px;
  overflow: hidden;
}
.cs-review__mark {
  position: absolute;
  top: 18px;
  right: 26px;
  font-family: var(--ord-font-heading);
  font-size: 64px;
  line-height: 1;
  color: var(--ord-border);
  pointer-events: none;
  user-select: none;
}
.cs-review__stars {
  margin-bottom: 16px;
}
.cs-review__quote {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ord-muted);
  margin: 0 0 22px;
}
.cs-review__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cs-review__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--ord-radius-pill);
  object-fit: cover;
  flex-shrink: 0;
}
.cs-review__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cs-review__meta strong {
  font-size: 15px;
  color: var(--ord-heading);
}
.cs-review__role {
  font-size: 13px;
  color: var(--ord-muted);
}

/* ==========================================================================
   SECTION 13 — Junk removal copy (two text columns)
   ========================================================================== */
.cs-junk__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.cs-junk__title {
  font-size: clamp(28px, 3vw, 40px);
  line-height: var(--ord-lh-heading);
  margin: 0 0 22px;
}
.cs-junk__left p {
  color: var(--ord-muted);
  margin-bottom: 18px;
}
.cs-junk__list {
  margin-bottom: 26px;
}
.cs-junk__right p {
  color: var(--ord-muted);
  margin: 0;
}

.req-btn{
	margin-top:15px !important;
}

/* ==========================================================================
   SECTION 15 — FAQ (reuses the global .ss-faq accordion)
   ========================================================================== */
/* Keep the accordion centered and readable within the wide container. */
.cs-faq__list {
  max-width: 760px;
  margin-inline: auto;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet — checklist drops below the heading column. */
@media (max-width: 991px) {
  .cs-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  /* About team → single column, collage below the copy. */
  .cs-about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Junk removal copy → single column. */
  .cs-junk__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* Coverage stats → 2 columns. */
  .cs-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /* Reviews → 2 columns. */
  .cs-reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /* Steps → vertical list; horizontal line hidden. */
  .cs-steps {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 520px;
    margin-inline: auto;
  }
  .cs-steps__line {
    display: none;
  }
  .cs-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }
  .cs-step__num {
    margin-bottom: 0;
    flex-shrink: 0;
    box-shadow: none;
  }
  .cs-steps__note {
    margin-top: 36px;
  }
  /* Why You Choose → single column. */
  .cs-why__grid {
    grid-template-columns: 1fr;
    gap: 44px;
    align-items: start;
  }
  .cs-why__lead {
    max-width: none;
  }
  /* Contact → single column, info above the form. */
  .cs-contact__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cs-contact__lead {
    max-width: none;
  }
  /* Two-column intro → stacked. */
  .cs-help {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 56px;
  }
  /* Services grid → 2 columns. */
  .cs-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Small tablet — tighter vertical rhythm. */
@media (max-width: 767px) {
  .cs-hero {
    min-height: 0;
  }
  .cs-hero__inner {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .cs-hero__title {
    max-width: none;
  }
  /* Services grid → single column. */
  .cs-services__grid {
    grid-template-columns: 1fr;
  }
  /* Why You Choose cards → single column. */
  .cs-why__cards {
    grid-template-columns: 1fr;
  }
  /* Form name/phone row → stacked. */
  .cs-form__row {
    grid-template-columns: 1fr;
  }
  .cs-contact__form-wrap {
    padding: 26px 22px;
  }
  /* Reviews → single column. */
  .cs-reviews__grid {
    grid-template-columns: 1fr;
  }
}

/* Phone. */
@media (max-width: 480px) {
  .cs-hero__inner {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .cs-hero__list {
    gap: 14px;
  }
}
