/* ══════════════════════════════════════════════════
   LCH City Service Body — scoped layout CSS
   All rules are prefixed with .lch-sb to avoid
   conflicts with the site's global Tailwind styles.
   Covers both HTML template variants (A & B).
   ══════════════════════════════════════════════════ */

/* Base */
.lch-sb {
  color: #f5f5f5;
  font-family:
    'Poppins',
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.55;
}

/* ── Section containers ── */
.lch-sb .section {
  padding: 56px 24px;
}
.lch-sb .section.section--dark {
  background: #0a0a0a;
}

/* Template A: sectionHead + h2 + hint */
.lch-sb .sectionHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.lch-sb h2 {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 700;
  color: #fff;
  font-family: 'Montserrat', system-ui, sans-serif;
}
.lch-sb .hint {
  margin: 0;
  color: #a6a6a0;
  font-size: 13px;
}

/* Template B: sectionLabel + sectionTitle + sectionBody */
.lch-sb .sectionLabel {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #dca725;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.lch-sb .sectionTitle {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 16px;
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', system-ui, sans-serif;
}
.lch-sb .sectionBody {
  color: #999;
  max-width: 760px;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ── Grid layouts ── */
.lch-sb .grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.lch-sb .grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.lch-sb .twoCol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
@media (max-width: 900px) {
  .lch-sb .grid3 {
    grid-template-columns: 1fr;
  }
  .lch-sb .twoCol {
    grid-template-columns: 1fr;
  }
  .lch-sb .grid2 {
    grid-template-columns: 1fr;
  }
}

/* ── Template A: card ── */
.lch-sb .card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.3);
}
.lch-sb .card > h3 {
  margin: 14px 14px 6px;
  font-size: 15px;
  color: #dca725;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
}
.lch-sb .card > p {
  margin: 0 14px 14px;
  color: #a6a6a0;
  font-size: 13px;
  line-height: 1.6;
}
/* Template A: card with .cardImg at the top */
.lch-sb .card .cardImg {
  margin-bottom: 0;
  border-radius: 0;
  border: none;
}

/* ── Template B: card with cardBody / cardTitle / cardText ── */
.lch-sb .card .cardBody,
.lch-sb .whyCard .whyBody,
.lch-sb .stepCard .stepBody {
  padding: 20px;
}
.lch-sb .cardImg {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.lch-sb .cardTitle {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
  font-family: 'Montserrat', system-ui, sans-serif;
}
.lch-sb .cardText {
  color: #999;
  font-size: 0.88rem;
  line-height: 1.6;
}
.lch-sb .cardPrice {
  color: #dca725;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 10px;
}

/* ── Template A: metaRow tags ── */
.lch-sb .metaRow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 14px 14px;
}
.lch-sb .tag {
  font-size: 11px;
  color: rgba(246, 246, 244, 0.9);
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

/* ── Figure / figcaption ── */
.lch-sb figure {
  margin: 0;
}
.lch-sb figcaption {
  font-size: 12px;
  color: #a6a6a0;
  padding: 4px 14px 2px;
  font-style: italic;
  text-align: center;
}

/* ── Why cards ── */
.lch-sb .whyGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.lch-sb .whyCard {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.lch-sb .whyCard:hover {
  border-color: #dca725;
  transform: translateY(-4px);
}
.lch-sb .whyCard img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.lch-sb .whyNum {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dca725;
  color: #000;
  font-weight: 800;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.lch-sb .whyCard h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', system-ui, sans-serif;
}
.lch-sb .whyCard p {
  color: #999;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── Step cards ── */
.lch-sb .stepsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.lch-sb .stepCard {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
}
.lch-sb .stepCard img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.lch-sb .stepNum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dca725;
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 8px;
}
.lch-sb .stepCard h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
}
.lch-sb .stepCard p {
  color: #999;
  font-size: 0.85rem;
  line-height: 1.6;
}
.lch-sb .stepImg {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 12px;
  background: #000;
}

/* ── Pricing cards ── */
.lch-sb .pricingGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.lch-sb .pricingCard {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}
.lch-sb .pricingCard.featured {
  border-color: #dca725;
}
.lch-sb .pcLabel {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.lch-sb .pcPrice {
  font-size: 2rem;
  font-weight: 800;
  color: #dca725;
  display: block;
}
.lch-sb .pcUnit {
  font-size: 0.8rem;
  color: #999;
  display: block;
  margin-bottom: 4px;
}
.lch-sb .pricingCard ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  text-align: left;
}
.lch-sb .pricingCard li {
  font-size: 0.85rem;
  color: #999;
  padding: 5px 0;
  border-bottom: 1px solid #1e1e1e;
}
.lch-sb .pricingCard li::before {
  content: '✓ ';
  color: #dca725;
}

/* ── Review cards ── */
.lch-sb .reviewGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.lch-sb .reviewCard {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 28px;
}
.lch-sb .stars {
  color: #dca725;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.lch-sb .reviewText {
  color: #999;
  font-style: italic;
  line-height: 1.7;
  font-size: 0.92rem;
}
.lch-sb .reviewAuthor {
  margin-top: 12px;
  font-weight: 600;
  color: #fff;
  font-size: 0.88rem;
}

/* ── Brand logos ── */
.lch-sb .logosStrip {
  padding: 28px 24px;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
}
.lch-sb .logosStrip > p {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #999;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 18px;
}
.lch-sb .logosRow {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.lch-sb .logosRow img {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.lch-sb .logosRow img:hover {
  opacity: 1;
}

/* ── Internal links (Template B) ── */
.lch-sb .internalLinks {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.lch-sb .internalLinks a {
  font-size: 0.85rem;
  color: #999;
  border: 1px solid #1e1e1e;
  border-radius: 6px;
  padding: 8px 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.lch-sb .internalLinks a:hover {
  border-color: #dca725;
  color: #dca725;
}

/* ── Suppress elements already handled by the site ── */
/* hero, topbar, breadcrumb, footer, cta-box, coverage — site provides these */
.lch-sb .heroCtas,
.lch-sb .heroBadgeBar,
.lch-sb .badge {
  display: none;
}
