.services-hero {
  background: linear-gradient(
    180deg,
    rgba(168, 87, 37, 0.95),
    rgba(194, 106, 46, 0.85)
  );
  padding: 72px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.services-hero h1 {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
  text-align: center;
}

.services-shell {
  padding: 64px 0;
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 24px;
  align-items: stretch;
}

/*! LEFT MENU */
.services-menu {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.06);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.svc-item {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 16px 18px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;

  cursor: pointer;
  text-align: left;

  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
}

.svc-label {
  font-weight: 800;
  color: rgba(15, 23, 42, 0.88);
  letter-spacing: 0.01em;
}

.svc-arrow {
  font-size: 22px;
  color: rgba(15, 23, 42, 0.55);
  transition: transform 0.18s ease, color 0.18s ease;
}

.svc-item:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.16);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.08);
}

.svc-item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(194, 106, 46, 0.22),
    0 14px 30px rgba(2, 6, 23, 0.08);
}

.svc-item.is-active {
  background: rgba(194, 106, 46, 0.12);
  border-color: rgba(194, 106, 46, 0.3);
}

.svc-item.is-active .svc-arrow {
  color: var(--primary);
  transform: translateX(2px);
}

/*! RIGHT PANEL */
.services-panel {
  background: rgba(194, 106, 46, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.06);
  padding: 22px;
  overflow: hidden;
}

.svc-stage {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  align-items: center;
  min-height: 360px;
  transition: opacity 220ms ease, transform 220ms ease;
}

.svc-stage.is-swapping {
  opacity: 0;
  transform: translateY(6px);
}

.svc-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.55);
}

.svc-title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: var(--ink);
}

.svc-desc {
  margin: 12px 0 14px;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.65;
  max-width: 60ch;
}

.svc-points {
  margin: 0 0 18px;
  padding-left: 18px;
  color: rgba(15, 23, 42, 0.78);
  line-height: 1.6;
}

.svc-cta {
  margin-top: 4px;
}

.svc-media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.1);
}

.svc-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

/*! 3 TAB SHOWCASE */

.tabs-showcase {
  position: relative;
  padding: 84px 0;
  overflow: hidden;
}

.tabs-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      900px 520px at 20% 20%,
      rgba(194, 106, 46, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(11, 15, 26, 0.72), rgba(11, 15, 26, 0.86)),
    url('assets/reno-bg.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(0.9);
}

.tabs-wrap {
  position: relative;
  z-index: 2;
}

.tabs-head {
  text-align: center;
  max-width: 70ch;
  margin: 0 auto 26px;
}

.tabs-head h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.tabs-head p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
}

.tabs-bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: end;

  padding: 18px 0 14px;
  margin: 26px auto 34px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
}

.tab-btn {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;

  padding: 10px 6px 14px;
  font-weight: 850;
  letter-spacing: -0.01em;
  font-size: clamp(18px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.86);

  transition: color 0.18s ease, transform 0.18s ease;
}

.tab-btn:hover {
  color: rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
}

.tab-btn.is-active {
  color: var(--primary);
}

.tab-underline {
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 4px;
  width: 33.333%;
  background: var(--primary);
  border-radius: 999px;
  transform: translateX(0);
  transition: transform 260ms ease;
}

.tabs-panel {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
  align-items: center;

  background: rgba(15, 23, 42, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 26px;

  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.55);

  transition: opacity 220ms ease, transform 220ms ease;
}

.tabs-panel.is-swapping {
  opacity: 0;
  transform: translateY(8px);
}

.tabs-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.tabs-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.tabs-copy h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.tabs-copy p {
  margin: 12px 0 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-size: 16px;
  max-width: 60ch;
}

.tabs-list {
  margin: 0 0 22px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.tabs-cta {
  height: 52px;
  border-radius: 12px;
}

/*! SERVICES CTA */
.servicespage-simple-cta {
  padding: 64px 0;
}

.servicespage-simple-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;

  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.06);
  padding: 32px;
}

.servicespage-simple-cta-title {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: var(--ink);
}

.servicespage-simple-cta-media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.servicespage-simple-cta-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/*! MOBILE */
@media (max-width: 980px) {
  .servicespage-simple-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .servicespage-simple-cta-media img {
    height: 220px;
  }

  .tabs-bar {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .tab-underline {
    display: none;
  }

  .tabs-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tabs-photo img {
    height: 260px;
  }

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

  .svc-stage {
    grid-template-columns: 1fr;
  }

  .svc-media img {
    height: 240px;
  }
}
