/* ANCHOR HEADINGS */
.anchor-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.anchor-heading .anchor-icon {
  font-size: 0.65em;
  color: var(--silver);
  opacity: 0;
  transition: opacity 0.15s;
  font-weight: 400;
  user-select: none;
}

h2:hover .anchor-icon,
.anchor-heading:focus .anchor-icon { opacity: 1; }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 4rem 1.5rem 3.5rem;
}

.page-hero .section-label { color: var(--silver); }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 540px;
}

/* ACTIVE NAV LINK */
nav .active { color: var(--white) !important; }

/* ALTERNATING SECTION BG */
.section-alt { background: var(--off-white); }

/* FLOORING DETAIL CARDS */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid #e0e4ec;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.15s;
}

.service-detail-card:hover {
  box-shadow: 0 6px 24px rgba(27,52,97,0.12);
  transform: translateY(-2px);
}

.sdc-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.sdc-image--placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-icon { font-size: 4rem; }

.sdc-body { padding: 1.5rem; }

.sdc-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.sdc-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }

/* SPLIT LAYOUT (doors, windows, painting) */
.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-split--reverse { direction: rtl; }
.service-split--reverse > * { direction: ltr; }

@media (max-width: 700px) {
  .service-split { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
  .service-split--reverse { direction: ltr; }
}

.service-split-text h2 { margin-top: 0.5rem; }
.service-split-text p { color: var(--text-muted); margin-bottom: 1.25rem; }

.feature-list {
  list-style: none;
  margin-bottom: 1.75rem;
}

.feature-list li {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid #edf0f5;
}

.feature-list li::before {
  content: "✓  ";
  color: var(--navy);
  font-weight: 700;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover { background: var(--navy-light); }

.service-split-image--placeholder {
  height: 340px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

/* CTA BAND */
.cta-band {
  background: var(--navy);
  padding: 4rem 1.5rem;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 { color: var(--white); margin-bottom: 0.25rem; }
.cta-band p { color: var(--silver); }
